:root {
  --black: #000000;
  --surface: #0a0805;
  --gold: #ca822c;
  --gold-bright: #d8923a;
  --grey: #6f6f77;
  --bone: #c7c5bf;
  --bone-bright: #f3eee5;
  --bone-dim: #8d877d;
  --line: #221b12;
  --maxw: 1140px;
  --font-display: 'Prata', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

body {
  background: var(--black);
  color: var(--bone);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img,
svg {
  display: block;
  max-width: 100%;
}

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

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--bone-bright);
  line-height: 1.18;
}

h1 {
  font-size: clamp(28px, 5vw, 52px);
}

h2 {
  font-size: clamp(24px, 3.5vw, 38px);
}

h3 {
  font-size: clamp(18px, 2vw, 22px);
}

.container {
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 24px;
}

.section {
  padding-block: clamp(56px, 9vw, 104px);
  position: relative;
}

.kicker {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
}

.muted {
  color: var(--grey);
}

.hairline {
  height: 1px;
  background: var(--line);
  border: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .4px;
  padding: 14px 24px;
  border-radius: 5px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .15s ease, opacity .15s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-gold {
  background: linear-gradient(180deg, var(--gold-bright), var(--gold));
  color: #160d02;
}

.btn-ghost {
  border-color: #3a352d;
  color: var(--bone);
}

/* ─── Grain overlay ──────────────────────────────────────────── */

.grain {
  position: relative;
}

.grain::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .06;
  mix-blend-mode: overlay;
  z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ─── Hero ───────────────────────────────────────────────────── */

.hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(90% 130% at 85% 0%, #2a1c0c 0%, #0a0805 45%, #000 80%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding-block: clamp(56px, 8vw, 104px);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 40px;
}

.hero-text,
.hero-art {
  position: relative;
  z-index: 2;
}

.hero-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
}

.hero-text h1 {
  font-size: clamp(32px, 4.4vw, 56px);
  line-height: 1.12;
  letter-spacing: -.3px;
  overflow-wrap: break-word;
}

.hero-text h1 em {
  font-style: normal;
  color: var(--gold-bright);
  white-space: nowrap;
}

.hero-sub {
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.65;
  max-width: 46ch;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 4px;
}

/* Single prominent CTA below the VSL */

.hero-cta .btn {
  padding: 20px 48px;
  font-size: 18px;
  letter-spacing: .5px;
  border-radius: 8px;
  box-shadow: 0 0 0 1px rgba(243, 238, 229, .08), 0 10px 34px rgba(202, 130, 44, .3);
}

.hero-cta .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 0 1px rgba(243, 238, 229, .12), 0 14px 42px rgba(202, 130, 44, .4);
}

/* ─── Home image hero — Creation of Adam background ──────────── */

.hero--image {
  min-height: clamp(560px, 86vh, 820px);
  display: flex;
  align-items: center;
  background: #000;
}

/* Full-bleed painting background */

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("../../public/image.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Lower-ticket (founders-fasttrack) hero uses the soa222 artwork */

.hero-bg--soa222 {
  background-image: url("../../public/soa222.png");
}

/* Premium dark scrim + vignette — keeps the touching hands readable */

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(125% 100% at 50% 48%, transparent 34%, rgba(0, 0, 0, .55) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, .8) 0%, rgba(0, 0, 0, .46) 44%, rgba(0, 0, 0, .84) 100%);
}

.hero--image .hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 26px;
  max-width: 760px;
}

.hero--image .kicker {
  text-shadow: 0 1px 12px rgba(0, 0, 0, .6);
}

.hero-title {
  font-size: clamp(28px, 3.8vw, 44px);
  line-height: 1.22;
  letter-spacing: -.2px;
  font-weight: 400;
  max-width: 640px;
  color: var(--bone-bright);
  text-shadow: 0 2px 18px rgba(0, 0, 0, .7);
  overflow-wrap: break-word;
}

.hero-title em {
  font-style: normal;
  color: var(--gold-bright);
  white-space: nowrap;
}

.hero--image .hero-cta {
  justify-content: center;
  margin-top: 2px;
}

/* ─── VSL video placeholder ──────────────────────────────────── */

.vsl-video {
  position: relative;
  z-index: 2;
  aspect-ratio: 16 / 9;
  width: 100%;
  max-width: 640px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  background: rgba(10, 8, 5, .72);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  border: 1px solid rgba(202, 130, 44, .38);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .55), 0 0 0 1px rgba(0, 0, 0, .4);
}

/* Wistia player fills the framed container */
.vsl-video wistia-player {
  width: 100%;
  height: 100%;
}

/* Blurred poster swatch while the web component is still loading.
   Each VSL has its own swatch, keyed by media-id. */
.vsl-video wistia-player:not(:defined) {
  display: block;
  background: center / contain no-repeat;
  filter: blur(5px);
}
wistia-player[media-id='2mleqhug5c']:not(:defined) {
  background-image: url('https://fast.wistia.com/embed/medias/2mleqhug5c/swatch');
}
wistia-player[media-id='yk8gs8dhql']:not(:defined) {
  background-image: url('https://fast.wistia.com/embed/medias/yk8gs8dhql/swatch');
}

.vsl-play {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 78px;
  height: 78px;
  padding: 0;
  border-radius: 50%;
  cursor: pointer;
  background: linear-gradient(180deg, var(--gold-bright), var(--gold));
  border: 1px solid rgba(243, 238, 229, .15);
  box-shadow: 0 0 0 8px rgba(202, 130, 44, .12), 0 0 0 16px rgba(202, 130, 44, .06);
  transition: transform .15s ease, box-shadow .15s ease;
}

.vsl-play::before {
  content: "";
  margin-left: 5px;
  border-style: solid;
  border-width: 13px 0 13px 22px;
  border-color: transparent transparent transparent #160d02;
}

.vsl-play:hover {
  transform: scale(1.06);
  box-shadow: 0 0 0 8px rgba(202, 130, 44, .18), 0 0 0 18px rgba(202, 130, 44, .08);
}

.vsl-caption {
  position: relative;
  font-size: 13px;
  letter-spacing: .4px;
}

/* ─── Responsive — hero stack (≤ 900px) ──────────────────────── */

@media (max-width: 900px) {

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero--image {
    min-height: clamp(520px, 90vh, 720px);
  }

  .hero--image .hero-inner {
    gap: 22px;
  }

  .hero-title {
    font-size: clamp(26px, 7.5vw, 34px);
  }

}

/* ─── Header ─────────────────────────────────────────────────── */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(0, 0, 0, .85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 32px;
}

/* Brand */

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  text-decoration: none;
}

.brand-mark {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  object-fit: contain;
  border-radius: 4px;
}

.brand-wordmark {
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: 1px;
  color: var(--bone-bright);
  line-height: 1;
  white-space: nowrap;
}

/* Nav links */

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  flex: 1;
}

.nav-links a {
  font-size: 13px;
  letter-spacing: .4px;
  color: var(--bone-dim);
  transition: color .15s ease;
  white-space: nowrap;
}

.nav-links a:hover {
  color: var(--gold-bright);
}

/* Nav CTA */

.nav-cta {
  flex-shrink: 0;
}

.nav-cta .btn {
  padding: 10px 20px;
  font-size: 13px;
}

/* Hamburger toggle — hidden on desktop */

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 4px;
  cursor: pointer;
  color: var(--bone);
  flex-shrink: 0;
  transition: border-color .15s ease, color .15s ease;
}

.nav-toggle:hover {
  border-color: var(--gold);
  color: var(--gold-bright);
}

.nav-toggle svg {
  width: 18px;
  height: 18px;
}

/* ─── Responsive — mobile nav (≤ 900px) ──────────────────────── */

@media (max-width: 900px) {

  .nav-toggle {
    display: flex;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  /* Mobile dropdown panel */

  .site-header.open .nav-links,
  .site-header.open .nav-cta {
    display: flex;
  }

  .header-inner {
    flex-wrap: wrap;
    height: auto;
    padding-block: 0;
    row-gap: 0;
  }

  /* Row 1: brand + toggle */

  .brand {
    height: 64px;
  }

  .nav-toggle {
    order: 3;
    margin-left: auto;
    align-self: center;
  }

  /* Row 2 (panel): links + CTA — revealed when .open */

  .nav-links {
    order: 4;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: 100%;
    border-top: 1px solid var(--line);
    background: var(--surface);
    padding: 8px 0;
  }

  .nav-links a {
    display: block;
    width: 100%;
    padding: 14px 24px;
    font-size: 14px;
    border-bottom: 1px solid var(--line);
  }

  .nav-links a:last-child {
    border-bottom: 0;
  }

  .nav-cta {
    order: 5;
    width: 100%;
    background: var(--surface);
    padding: 16px 24px 20px;
    border-top: 1px solid var(--line);
  }

  .nav-cta .btn {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
    font-size: 14px;
  }

}

/* ─── Steps ──────────────────────────────────────────────────── */

.steps-intro {
  max-width: 60ch;
  margin-bottom: 64px;
}

.steps-intro .method-headline {
  max-width: 24ch;
  margin-top: 18px;
}

.steps-intro__sub {
  margin-top: 20px;
  font-size: 15px;
  line-height: 1.7;
}

.steps-intro .btn {
  margin-top: 32px;
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.step-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 32px 28px;
  text-decoration: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.step-card:hover {
  border-color: rgba(202, 130, 44, .45);
  box-shadow: 0 0 0 1px rgba(202, 130, 44, .1) inset;
}

.step-numeral {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 64px);
  line-height: 1;
  color: var(--gold);
  font-weight: 400;
}

.step-title {
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 20px);
  font-weight: 400;
  color: var(--bone-bright);
  line-height: 1.25;
}

.step-sub {
  font-size: 14px;
  line-height: 1.65;
}

@media (max-width: 700px) {

  .steps-grid {
    grid-template-columns: 1fr;
  }

}

/* ─── Method ─────────────────────────────────────────────────── */

.method {
  background: var(--black);
}

.method-headline {
  margin-top: 14px;
  max-width: 22ch;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 48px;
}

.benefit-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 28px;
  transition: border-color .22s ease, box-shadow .22s ease;
}

.benefit-card:hover {
  border-color: rgba(202, 130, 44, .5);
  box-shadow: 0 0 0 1px rgba(202, 130, 44, .08) inset, 0 4px 24px rgba(0, 0, 0, .35);
}

.benefit-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.benefit-numeral {
  display: block;
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1;
  color: var(--gold);
  font-weight: 400;
}

.benefit-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  color: var(--bone-bright);
  line-height: 1.2;
}

.benefit-card .muted {
  font-size: 14px;
  line-height: 1.68;
}

.method-closing {
  text-align: center;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 400;
  line-height: 1.5;
  margin-top: 52px;
  max-width: 56ch;
  margin-inline: auto;
}

@media (max-width: 900px) {

  .benefit-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media (max-width: 600px) {

  .benefit-grid {
    grid-template-columns: 1fr;
  }

  .method-closing {
    font-size: 17px;
  }

}

/* ─── Results ────────────────────────────────────────────────── */

.results {
  background: var(--black);
}

.results-headline {
  margin-top: 14px;
}

/* Embedded testimonial wall (Testimonial.to) */

.testimonial-embed {
  margin-top: 48px;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.result-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
  cursor: default;
}

.result-card:hover {
  transform: scale(1.02);
  border-color: var(--gold);
  box-shadow: 0 8px 40px rgba(0, 0, 0, .5), 0 0 0 1px rgba(202, 130, 44, .15) inset;
}

.result-card__media {
  position: relative;
  aspect-ratio: 16 / 9;
  background:
    radial-gradient(ellipse 80% 70% at 38% 30%, #3a2208 0%, #2a1c0c 30%, #0a0805 65%, #000 100%),
    linear-gradient(160deg, #1e1208 0%, #0a0805 60%, #000 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.result-card__glyph {
  width: 52px;
  height: 52px;
  color: var(--gold);
  opacity: .22;
  flex-shrink: 0;
}

.result-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.result-card__body {
  padding: 18px;
  background: var(--surface);
  border-top: 1px solid var(--line);
}

.result-card__line {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.2;
  color: var(--bone-bright);
  letter-spacing: -.1px;
}

.result-card__name {
  margin-top: 6px;
  font-size: 12px;
  letter-spacing: .6px;
  color: var(--grey);
}

/* Three-card proof grid (AI Andro social proof — 3 items) */

.results-grid--three {
  grid-template-columns: repeat(3, 1fr);
  justify-content: center;
}

@media (max-width: 900px) {

  .results-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .results-grid--three {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media (max-width: 560px) {

  .results-grid {
    grid-template-columns: 1fr;
  }

  .results-grid--three {
    grid-template-columns: 1fr;
  }

}

/* ─── FAQ ───────────────────────────────────────────────────── */

.faq-section h2 {
  margin-top: 14px;
}

.faq {
  max-width: 760px;
  margin-inline: auto;
  margin-top: 48px;
}

.faq-item {
  border-top: 1px solid var(--line);
}

.faq-item:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 0;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
  color: var(--bone-bright);
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.4;
  gap: 16px;
  transition: color .18s ease;
}

.faq-q:hover {
  color: var(--gold-bright);
}

.faq-q:hover .faq-icon {
  color: var(--gold-bright);
}

.faq-icon {
  color: var(--gold);
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
  flex-shrink: 0;
  transition: transform .3s ease, color .18s ease;
  display: inline-block;
  width: 20px;
  text-align: center;
  font-family: var(--font-body);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}

.faq-a p {
  color: var(--grey);
  font-size: 15px;
  line-height: 1.72;
  padding-bottom: 20px;
  max-width: 64ch;
}

/* ─── Footer ─────────────────────────────────────────────────── */

.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  gap: 48px;
  padding-block: 56px;
}

/* Brand block */

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
  min-width: 0;
}

.footer-mark {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  object-fit: contain;
  border-radius: 4px;
}

.footer-wordmark {
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: .5px;
  color: var(--bone-bright);
  line-height: 1;
}

.footer-blurb {
  font-size: 13px;
  color: var(--grey);
  line-height: 1.5;
  max-width: 260px;
}

/* Links column */

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex-shrink: 0;
}

.footer-links a {
  font-size: 13px;
  letter-spacing: .3px;
  color: var(--grey);
  transition: color .15s ease;
  white-space: nowrap;
}

.footer-links a:hover {
  color: var(--gold-bright);
}

/* Socials */

.footer-socials {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex-shrink: 0;
}

.footer-social-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--grey);
  transition: color .15s ease;
}

.footer-social-link:hover {
  color: var(--gold-bright);
}

.footer-social-link svg {
  flex-shrink: 0;
}

/* Bottom copyright line */

.footer-bottom {
  border-top: 1px solid var(--line);
  padding-block: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 12px;
  color: var(--grey);
  letter-spacing: .2px;
}

/* Founders Accelerator attribution */

.footer-fa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--grey);
  letter-spacing: .2px;
  text-decoration: none;
  transition: color .15s ease;
  flex-shrink: 0;
}

.footer-fa:hover {
  color: var(--gold-bright);
}

.footer-fa img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  border-radius: 3px;
  opacity: .85;
  transition: opacity .15s ease;
  flex-shrink: 0;
}

.footer-fa:hover img {
  opacity: 1;
}

@media (max-width: 600px) {

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

}

/* ─── Responsive — footer stack (≤ 700px) ────────────────────── */

@media (max-width: 700px) {

  .footer-inner {
    flex-direction: column;
    gap: 36px;
    padding-block: 40px;
  }

  .footer-brand {
    flex: unset;
  }

  .footer-blurb {
    max-width: 100%;
  }

}

/* ─── CTA band ───────────────────────────────────────────────── */

.cta-band {
  background: linear-gradient(120deg, #3a2710, #1a1206);
  border-top: 1px solid var(--line);
  border-radius: 16px 16px 0 0;
  padding-block: clamp(72px, 11vw, 128px);
  overflow: hidden;
}

.cta-band__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}

.cta-band__heading {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 400;
  color: var(--bone-bright);
  line-height: 1.14;
  max-width: 18ch;
}

.cta-band__sub {
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.65;
  max-width: 50ch;
}

.cta-band .btn-gold {
  margin-top: 12px;
  padding: 16px 36px;
  font-size: 15px;
  letter-spacing: .4px;
  box-shadow: 0 0 0 1px rgba(243, 238, 229, .08), 0 8px 32px rgba(202, 130, 44, .28);
}

.cta-band .btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 0 1px rgba(243, 238, 229, .12), 0 12px 40px rgba(202, 130, 44, .38);
}

/* ─── Scroll reveal ───────────────────────────────────────────── */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s ease, transform .6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ─── AI Andro steps modifier — 3-up on desktop ─────────────── */

.steps-grid--three {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 700px) {

  .steps-grid--three {
    grid-template-columns: 1fr;
  }

}

/* ─── AI Andro hero ──────────────────────────────────────────── */

.andro-hero {
  background: radial-gradient(85% 120% at 78% 5%, #2a1c0c 0%, #0a0805 46%, #000 82%);
}

.andro-visual {
  position: relative;
  min-height: 440px;
  align-items: center;
}

.andro-visual::before {
  content: "";
  position: absolute;
  inset: -8% -4%;
  background: radial-gradient(48% 46% at 40% 38%, rgba(202, 130, 44, .16) 0%, transparent 72%);
  pointer-events: none;
  z-index: 0;
}

.andro-robot {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: -2%;
  transform: translateY(-50%);
  width: 60%;
  max-width: 300px;
}

.andro-svg {
  width: 100%;
  height: auto;
  display: block;
  overflow: visible;
  filter: drop-shadow(0 8px 26px rgba(0, 0, 0, .55));
  opacity: .92;
}

/* ─── Chat mock ──────────────────────────────────────────────── */

.chat-mock {
  position: relative;
  z-index: 2;
  width: 78%;
  max-width: 340px;
  margin-left: auto;
  background: linear-gradient(180deg, #100c07, var(--surface));
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 16px 16px 20px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .6), 0 0 0 1px rgba(202, 130, 44, .08) inset;
}

.chat-head {
  display: flex;
  align-items: center;
  gap: 11px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.chat-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--gold-bright), var(--gold));
  box-shadow: 0 0 0 3px rgba(202, 130, 44, .14);
}

.chat-avatar svg {
  width: 22px;
  height: 22px;
}

.chat-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.1;
}

.chat-name {
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--bone-bright);
}

.chat-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  letter-spacing: .4px;
  color: var(--gold-bright);
}

.chat-status::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #5fbf6a;
  box-shadow: 0 0 6px rgba(95, 191, 106, .7);
}

.chat-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 16px;
}

.chat-bubble {
  max-width: 84%;
  font-size: 13.5px;
  line-height: 1.5;
  padding: 11px 14px;
  border-radius: 16px;
}

.chat-bubble.in {
  align-self: flex-start;
  background: #1c1812;
  border: 1px solid var(--line);
  color: var(--bone);
  border-bottom-left-radius: 5px;
}

.chat-bubble.out {
  align-self: flex-end;
  background: linear-gradient(180deg, #e09a3e, var(--gold));
  color: #160d02;
  border-bottom-right-radius: 5px;
  box-shadow: 0 6px 18px rgba(202, 130, 44, .28);
}

/* ─── Responsive — AI Andro hero (≤ 900px) ───────────────────── */

@media (max-width: 900px) {

  .andro-visual {
    order: 2;
    min-height: 0;
    flex-direction: column;
    gap: 28px;
  }

  .andro-robot {
    position: static;
    transform: none;
    width: 200px;
    max-width: 200px;
    margin-inline: auto;
  }

  .chat-mock {
    width: 100%;
    max-width: 360px;
    margin-inline: auto;
  }

}

/* ─── Quiz ───────────────────────────────────────────────────── */

.quiz-section {
  min-height: calc(100vh - 64px);
  display: flex;
  align-items: center;
  padding-block: clamp(32px, 6vw, 64px);
  background: radial-gradient(90% 130% at 50% 0%, #2a1c0c 0%, #0a0805 45%, #000 80%);
}

.quiz-shell {
  width: 100%;
  max-width: 680px;
  margin-inline: auto;
}

.quiz-progress {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.quiz-card {
  transition: opacity .18s ease, transform .18s ease;
}

.quiz-card.is-leaving {
  opacity: 0;
  transform: translateY(10px);
}

.quiz-progress[hidden] {
  display: none;
}

.quiz-card[hidden] {
  display: none;
}

.quiz-prompt {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--bone-bright);
  font-size: clamp(22px, 3.2vw, 34px);
  line-height: 1.25;
  outline: none;
}

.quiz-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
}

.quiz-option {
  width: 100%;
  text-align: left;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.5;
  color: var(--bone);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 18px 20px;
  cursor: pointer;
  transition: border-color .18s ease, background .18s ease, transform .12s ease;
}

.quiz-option:hover {
  border-color: rgba(202, 130, 44, .55);
  background: #120d07;
  transform: translateY(-1px);
}

.quiz-option.is-selected {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px rgba(202, 130, 44, .25) inset;
}

.quiz-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 26px;
  background: transparent;
  border: 0;
  color: var(--grey);
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: .4px;
  cursor: pointer;
  transition: color .15s ease;
}

.quiz-back:hover {
  color: var(--gold-bright);
}

.quiz-back[hidden] {
  display: none;
}

.quiz-status {
  text-align: center;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: clamp(20px, 3vw, 28px);
}

.quiz-status[hidden] {
  display: none;
}

/* ─── Lead capture form ──────────────────────────────────────── */

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.lead-form[hidden] {
  display: none;
}

.lead-row {
  display: flex;
  gap: 14px;
}

.lead-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
  flex: 1;
}

.lead-field label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
}

.lead-input {
  width: 100%;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--bone);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px 16px;
  transition: border-color .18s ease, box-shadow .18s ease;
}

.lead-input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 1px rgba(202, 130, 44, .25) inset;
}

.lead-error {
  color: #e0794b;
  font-size: 13px;
  margin: 0;
}

.lead-error[hidden] {
  display: none;
}

.lead-form .btn-gold {
  align-self: flex-start;
  margin-top: 4px;
}

@media (max-width: 520px) {
  .lead-row { flex-direction: column; }
}

/* Embedded GHL booking calendar shown to qualified visitors. */
.booking-embed {
  width: 100%;
  margin-top: 28px;
}

.booking-embed iframe {
  width: 100%;
  min-height: 700px;
  border: none;
  overflow: hidden;
}

/* ─── Checkout ───────────────────────────────────────────────── */

.checkout {
  background: var(--black);
}

.checkout-inner {
  max-width: 640px;
  margin-inline: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.checkout-headline {
  margin-top: 6px;
}

.checkout-sub {
  font-size: clamp(14px, 1.4vw, 16px);
  line-height: 1.65;
  max-width: 52ch;
}

.checkout-cta {
  width: 100%;
  margin-top: 24px;
}
