:root {
  --ink: #0c0f12;
  --steel-900: #151a1f;
  --steel-800: #20262d;
  --steel-700: #323a43;
  --steel-500: #69727c;
  --steel-200: #d9dde0;
  --paper: #f6f6f4;
  --white: #ffffff;
  --gold: #b08a5e;
  --gold-2: #d6b98f;
  --line-dark: rgba(255, 255, 255, 0.14);
  --line-light: rgba(12, 15, 18, 0.12);
  --shadow: 0 26px 80px rgba(12, 15, 18, 0.22);
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(135deg, rgba(176, 138, 94, 0.08), transparent 34%),
    linear-gradient(180deg, var(--white), var(--paper));
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 16px clamp(18px, 4vw, 52px);
  color: var(--white);
  background: rgba(12, 15, 18, 0.88);
  border-bottom: 1px solid var(--line-dark);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand__mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--white);
  border: 1px solid rgba(214, 185, 143, 0.4);
  font-weight: 900;
}

.brand__mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 34%;
  transform: scale(2.25);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.74rem;
}

.nav {
  display: flex;
  gap: 24px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nav a:hover {
  color: var(--white);
}

.nav-cta,
.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 4px;
  font-weight: 850;
  cursor: pointer;
}

.nav-cta {
  min-width: max-content;
  padding: 0 18px;
  color: var(--ink);
  background: var(--white);
}

.button {
  padding: 0 22px;
}

.button--primary {
  color: var(--ink);
  background: linear-gradient(135deg, #fff7e9, var(--gold-2) 48%, var(--gold));
  box-shadow: 0 18px 40px rgba(176, 138, 94, 0.28);
}

.button--secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.22);
}

.section-pad {
  padding: clamp(76px, 10vw, 130px) max(20px, calc((100vw - var(--max)) / 2));
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  letter-spacing: 0;
}

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
  padding-top: 130px;
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(12, 15, 18, 0.96), rgba(12, 15, 18, 0.82)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 22px),
    var(--ink);
}

.hero h1 {
  max-width: 820px;
  margin-bottom: 24px;
  font-size: clamp(3.4rem, 7vw, 7.2rem);
  line-height: 0.9;
}

.hero__lede {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1.1rem, 1.8vw, 1.38rem);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero__visual {
  display: grid;
  gap: 16px;
}

.asset-slot {
  min-height: 360px;
  display: grid;
  place-items: center;
  padding: 28px;
  color: rgba(255, 255, 255, 0.72);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    linear-gradient(135deg, rgba(176, 138, 94, 0.14), transparent 48%);
  border: 1px dashed rgba(255, 255, 255, 0.28);
  text-align: center;
}

.hero-image-card {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  background:
    radial-gradient(circle at center, rgba(176, 138, 94, 0.16), transparent 46%),
    #05070a;
  border: 1px solid var(--line-dark);
  box-shadow: var(--shadow);
}

.hero-image-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, transparent 58%, rgba(5, 7, 10, 0.74)),
    linear-gradient(90deg, rgba(5, 7, 10, 0.1), transparent 42%, rgba(5, 7, 10, 0.24));
  pointer-events: none;
}

.hero-image-card img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  object-position: center;
}

.asset-slot span,
.asset-slot strong {
  display: block;
}

.asset-slot strong {
  margin-top: 8px;
  color: var(--white);
  font-size: 1.25rem;
}

.asset-slot--small {
  min-height: 190px;
  color: var(--steel-500);
  background: linear-gradient(145deg, #fdfdfb, #e9e9e5);
  border-color: rgba(12, 15, 18, 0.22);
}

.agent-card {
  padding: 28px;
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.agent-card p {
  margin-bottom: 10px;
  color: var(--gold);
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.agent-card h2 {
  margin-bottom: 8px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 0.96;
}

.agent-card span {
  color: var(--steel-500);
  font-weight: 800;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2,
.proof__copy h2,
.demo__copy h2 {
  margin-bottom: 0;
  font-size: clamp(2.25rem, 5vw, 4.8rem);
  line-height: 0.98;
}

.section-heading p:not(.eyebrow),
.proof__copy p,
.demo__copy p {
  color: rgba(12, 15, 18, 0.68);
  font-size: 1.08rem;
}

.pain-grid,
.who-grid,
.comparison {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.pain-grid article,
.who-grid article,
.comparison article,
.demo-form {
  background: var(--white);
  border: 1px solid var(--line-light);
  box-shadow: 0 18px 50px rgba(12, 15, 18, 0.08);
}

.pain-grid article,
.who-grid article,
.comparison article {
  padding: 28px;
}

.image-panel {
  aspect-ratio: 3 / 2;
  margin: -28px -28px 24px;
  overflow: hidden;
  background: var(--steel-800);
}

.image-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.pain-grid h3,
.who-grid h3,
.comparison h3 {
  margin-bottom: 10px;
  font-size: 1.35rem;
}

.pain-grid p,
.who-grid p,
.comparison p {
  margin-bottom: 0;
  color: rgba(12, 15, 18, 0.66);
}

.product {
  color: var(--white);
  background: var(--steel-900);
}

.product .section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.7);
}

.cycle-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(170px, 1fr));
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  overflow-x: auto;
}

.cycle-flow li {
  min-height: 245px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid var(--line-dark);
}

.cycle-flow span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
}

.cycle-flow strong {
  display: block;
  margin-top: 20px;
  color: var(--white);
  font-size: 1.28rem;
}

.cycle-flow p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.66);
}

.cycle-flow__moat,
.cycle-flow__repeat {
  background: linear-gradient(145deg, rgba(176, 138, 94, 0.28), rgba(255, 255, 255, 0.06)) !important;
  border-color: rgba(214, 185, 143, 0.48) !important;
}

.loop-callout {
  max-width: 760px;
  margin: 28px auto 0;
  padding: 26px;
  text-align: center;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(214, 185, 143, 0.36);
}

.loop-callout h3 {
  margin-bottom: 0;
  font-size: clamp(1.5rem, 3vw, 2.45rem);
  line-height: 1.06;
}

.process-visual {
  margin: 38px 0 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(214, 185, 143, 0.34);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.process-visual img {
  width: 100%;
  height: auto;
  background: #0f172a;
}

.process-visual figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 22px;
  background: rgba(12, 15, 18, 0.74);
  border-top: 1px solid rgba(214, 185, 143, 0.22);
}

.process-visual figcaption span {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.process-visual figcaption strong {
  display: block;
  color: var(--white);
  font-size: clamp(1rem, 2vw, 1.35rem);
  line-height: 1.08;
  text-align: right;
}

.proof {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(32px, 6vw, 76px);
  align-items: center;
}

.proof__number {
  padding: clamp(30px, 5vw, 54px);
  color: var(--white);
  background: linear-gradient(145deg, var(--steel-800), var(--ink));
  box-shadow: var(--shadow);
}

.proof__number span {
  display: block;
  color: var(--gold-2);
  font-size: clamp(5rem, 12vw, 9.6rem);
  font-weight: 950;
  line-height: 0.86;
}

.proof__number p {
  max-width: 390px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.2rem;
  font-weight: 800;
}

.who {
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.comparison__featured {
  color: var(--white);
  background: linear-gradient(145deg, var(--steel-800), var(--ink)) !important;
}

.comparison span {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.comparison__featured p {
  color: rgba(255, 255, 255, 0.72);
}

.demo {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 1.05fr);
  gap: clamp(30px, 6vw, 80px);
  align-items: start;
  color: var(--white);
  background: var(--ink);
}

.demo__copy p {
  color: rgba(255, 255, 255, 0.72);
}

.demo-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  color: var(--ink);
}

.field {
  display: grid;
  gap: 8px;
}

label {
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

input {
  width: 100%;
  min-height: 50px;
  padding: 0 14px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line-light);
  border-radius: 3px;
}

input:focus {
  outline: 3px solid rgba(176, 138, 94, 0.28);
  border-color: var(--gold);
}

.error {
  min-height: 18px;
  margin: 0;
  color: #9f2e24;
  font-size: 0.86rem;
}

.form-status {
  margin: 0;
  color: var(--steel-700);
  font-weight: 800;
}

.footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  padding: 34px max(20px, calc((100vw - var(--max)) / 2));
  color: var(--white);
  background: var(--steel-900);
  border-top: 1px solid var(--line-dark);
}

.footer strong {
  display: block;
  margin-bottom: 6px;
}

.footer p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.62);
}

address {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-style: normal;
}

address a {
  color: var(--gold-2);
}

@media (max-width: 980px) {
  .nav,
  .nav-cta {
    display: none;
  }

  .hero,
  .proof,
  .demo {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .pain-grid,
  .who-grid,
  .comparison {
    grid-template-columns: 1fr;
  }

  .asset-slot {
    min-height: 280px;
  }

  .hero-image-card,
  .hero-image-card img {
    min-height: 340px;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 12px 14px;
  }

  .brand__mark {
    width: 38px;
    height: 38px;
  }

  .brand small {
    display: none;
  }

  .section-pad {
    padding: 68px 16px;
  }

  .hero {
    padding-top: 110px;
  }

  .hero h1 {
    font-size: clamp(3rem, 15vw, 4.3rem);
  }

  .hero__actions {
    display: grid;
  }

  .cycle-flow {
    grid-template-columns: 1fr;
    overflow: visible;
  }

  .cycle-flow li {
    min-height: auto;
  }

  .process-visual {
    overflow-x: auto;
  }

  .process-visual img {
    min-width: 760px;
  }

  .process-visual figcaption {
    display: grid;
    padding: 16px;
  }

  .process-visual figcaption strong {
    text-align: left;
  }

  .footer {
    display: grid;
    padding-inline: 16px;
  }
}
