/* ============================================================
   AI PROPERTY LEAD — NIGHT EDITION
   "We work while you sleep."
   Clash Display + Satoshi (Fontshare) · Instrument Serif accents
   ============================================================ */

@import url('https://api.fontshare.com/v2/css?f[]=clash-display@500,600&f[]=satoshi@400,500,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@1&display=swap');

/* ---- TOKENS ---- */
:root {
  --bg:        #060a14;
  --bg-2:      #0a1020;
  --bg-3:      #0e1628;
  --ink:       #eef2fa;
  --muted:     #8a96ad;
  --faint:     #5a6680;
  --border:    rgba(235, 240, 255, 0.08);
  --border-2:  rgba(235, 240, 255, 0.14);
  --amber:     #ffb454;
  --amber-deep:#e89b33;
  --amber-glow:rgba(255, 180, 84, 0.16);
  --radius:    16px;
  --pad-x:     clamp(1.25rem, 4vw, 3rem);
  --ease-out:  cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { font-size: 16px; scroll-behavior: auto; }

body {
  font-family: 'Satoshi', 'Inter', sans-serif;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  min-height: 100vh;
}

::selection { background: var(--amber); color: var(--bg); }

img { max-width: 100%; display: block; }
a { color: inherit; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }

/* ---- TYPE SYSTEM ---- */
h1, h2, h3, .display {
  font-family: 'Clash Display', sans-serif;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

h1 em, h2 em, .footer-headline em, .page-hero em {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 1.04em;
  letter-spacing: 0;
  color: var(--amber);
}

.section-label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.4rem;
}
.section-label::before {
  content: '';
  width: 7px; height: 7px;
  background: var(--amber);
  border-radius: 1px;
  transform: rotate(45deg);
  flex: none;
}
.section-label.center { justify-content: center; }

/* masked headline lines — revealed by GSAP; padding/margin pair keeps
   descenders (g, y, p) inside the mask without adding visual space */
.mask-line { display: block; overflow: hidden; padding-bottom: 0.1em; margin-bottom: -0.1em; }
.mask-line-inner { display: block; will-change: transform; }

section { position: relative; }
.container { max-width: 1200px; margin: 0 auto; padding-inline: var(--pad-x); }

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--amber);
  color: #100a02;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 1rem 1.9rem;
  border-radius: 100px;
  text-decoration: none;
  white-space: nowrap;
  transition: box-shadow 0.35s var(--ease-out), background 0.25s;
  will-change: transform;
}
.btn-primary:hover {
  background: #ffc476;
  box-shadow: 0 0 0 1px var(--amber), 0 8px 40px var(--amber-glow), 0 2px 16px rgba(255,180,84,0.35);
}
.btn-primary .btn-arrow { transition: transform 0.3s var(--ease-out); }
.btn-primary:hover .btn-arrow { transform: translateX(4px); }
.btn-lg { padding: 1.15rem 2.4rem; font-size: 1rem; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--ink);
  font-weight: 500;
  font-size: 0.92rem;
  padding: 1rem 1.9rem;
  border: 1px solid var(--border-2);
  border-radius: 100px;
  text-decoration: none;
  white-space: nowrap;
  transition: border-color 0.3s, color 0.3s, background 0.3s;
  will-change: transform;
}
.btn-ghost:hover { border-color: var(--amber); color: var(--amber); background: rgba(255,180,84,0.05); }

/* ============================================================
   NAV
   ============================================================ */
nav.site-nav {
  position: fixed; top: 0; left: 0; right: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 1.1rem var(--pad-x);
  z-index: 300;
  transition: transform 0.45s var(--ease-out), background 0.35s, border-color 0.35s, padding 0.35s;
  border-bottom: 1px solid transparent;
}
nav.site-nav.scrolled {
  background: rgba(6, 10, 20, 0.72);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border-bottom-color: var(--border);
  padding-block: 0.8rem;
}
nav.site-nav.nav-hidden { transform: translateY(-110%); }
body.menu-open nav.site-nav { transform: none; background: transparent; border-bottom-color: transparent; -webkit-backdrop-filter: none; backdrop-filter: none; }

.nav-logo { justify-self: start; display: flex; align-items: center; text-decoration: none; position: relative; z-index: 320; }
.nav-logo img { height: 34px; width: auto; opacity: 0.95; transition: opacity 0.25s; }
.nav-logo:hover img { opacity: 1; }

.nav-links { justify-self: center; display: flex; gap: 2.6rem; align-items: center; }
.nav-link {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  position: relative;
  padding-block: 0.3rem;
  transition: color 0.25s;
}
.nav-link::after {
  content: '';
  position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease-out);
}
.nav-link:hover { color: var(--ink); }
.nav-link:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-link.active { color: var(--ink); }
.nav-link.active::after { transform: scaleX(1); }

.nav-right { justify-self: end; display: flex; align-items: center; gap: 1rem; }
.nav-cta {
  font-size: 0.84rem;
  font-weight: 700;
  color: #100a02;
  background: var(--amber);
  padding: 0.65rem 1.4rem;
  border-radius: 100px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.25s, box-shadow 0.3s;
}
.nav-cta:hover { background: #ffc476; box-shadow: 0 4px 24px var(--amber-glow); }

/* burger */
.nav-burger {
  display: none;
  position: relative; z-index: 320;
  width: 40px; height: 40px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.nav-burger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--ink);
  transition: transform 0.35s var(--ease-out), opacity 0.25s;
}
body.menu-open .nav-burger span:nth-child(1) { transform: translateY(3.75px) rotate(45deg); }
body.menu-open .nav-burger span:nth-child(2) { transform: translateY(-3.75px) rotate(-45deg); }

/* mobile menu overlay */
.mobile-menu {
  position: fixed; inset: 0;
  background: rgba(6, 10, 20, 0.96);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  z-index: 310;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--pad-x);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease-out), visibility 0.4s;
}
body.menu-open .mobile-menu { opacity: 1; visibility: visible; }
.mobile-menu a.mm-link {
  font-family: 'Clash Display', sans-serif;
  font-size: clamp(2.2rem, 9vw, 3.2rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-decoration: none;
  padding-block: 0.55rem;
  display: flex;
  align-items: baseline;
  gap: 1rem;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out), color 0.25s;
}
.mobile-menu a.mm-link sup { font-size: 0.85rem; color: var(--amber); font-family: 'Satoshi', sans-serif; }
.mobile-menu a.mm-link:hover, .mobile-menu a.mm-link.active { color: var(--amber); }
body.menu-open .mm-link { opacity: 1; transform: none; }
body.menu-open .mm-link:nth-child(1) { transition-delay: 0.08s; }
body.menu-open .mm-link:nth-child(2) { transition-delay: 0.16s; }
body.menu-open .mm-link:nth-child(3) { transition-delay: 0.24s; }
.mobile-menu .mm-foot {
  margin-top: 3rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s var(--ease-out) 0.32s, transform 0.5s var(--ease-out) 0.32s;
}
body.menu-open .mm-foot { opacity: 1; transform: none; }

/* ============================================================
   HERO (home)
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 8rem var(--pad-x) 5rem;
  overflow: clip;
}
#stars {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  z-index: 0;
}
.hero-atmosphere {
  position: absolute; inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 45% at 72% 18%, rgba(255, 180, 84, 0.07), transparent 65%),
    radial-gradient(ellipse 70% 55% at 20% 85%, rgba(26, 60, 130, 0.16), transparent 70%),
    radial-gradient(ellipse 90% 70% at 50% 110%, rgba(10, 18, 38, 0.9), transparent 75%);
}
.hero-content { position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; width: 100%; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--border-2);
  padding: 0.5rem 1.1rem;
  border-radius: 100px;
  margin-bottom: 2.2rem;
}
.hero-eyebrow::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 12px 2px var(--amber-glow);
  animation: pulse 2.6s ease-in-out infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }

.hero h1 {
  font-size: clamp(2.7rem, 7vw, 5.6rem);
  margin-bottom: 2rem;
  max-width: 18ch;
}
.hero h1 .line { display: block; overflow: hidden; padding-bottom: 0.08em; margin-bottom: -0.08em; }
.hero h1 .line-inner { display: block; will-change: transform; }

.hero-sub {
  font-size: clamp(1rem, 1.4vw, 1.13rem);
  color: #aab6ca;
  line-height: 1.7;
  max-width: 580px;
  margin-bottom: 2.6rem;
}
.hero-sub strong { color: var(--ink); font-weight: 500; }

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-cue {
  position: absolute;
  bottom: 2.2rem; left: var(--pad-x);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--faint);
}
.hero-cue .cue-line {
  width: 56px; height: 1px;
  background: var(--border-2);
  position: relative;
  overflow: hidden;
}
.hero-cue .cue-line::after {
  content: '';
  position: absolute; inset: 0;
  background: var(--amber);
  transform: translateX(-100%);
  animation: cue 2.4s var(--ease-out) infinite;
}
@keyframes cue { 0% { transform: translateX(-100%); } 55% { transform: translateX(0); } 100% { transform: translateX(102%); } }

/* ---- PAGE HERO (pricing / contact) ---- */
.page-hero {
  position: relative;
  padding: 11rem var(--pad-x) 5rem;
  max-width: 1200px;
  margin: 0 auto;
  overflow: clip;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -40%; right: -10%;
  width: 60%; height: 120%;
  background: radial-gradient(ellipse 55% 45% at 60% 35%, rgba(255, 180, 84, 0.06), transparent 65%);
  pointer-events: none;
}
.page-hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.6rem);
  margin-bottom: 1.6rem;
  position: relative;
}
.page-hero h1 .line { display: block; overflow: hidden; padding-bottom: 0.1em; margin-bottom: -0.1em; }
.page-hero h1 .line-inner { display: block; will-change: transform; }
.page-hero > p {
  font-size: 1.05rem;
  color: #aab6ca;
  line-height: 1.7;
  max-width: 620px;
  position: relative;
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding-block: 1.3rem;
  overflow: clip;
  background: var(--bg-2);
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 3rem;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}
.marquee-track i {
  font-style: normal;
  color: var(--amber);
  font-size: 0.7rem;
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============================================================
   STATS — "the numbers behind a silent evening"
   ============================================================ */
.pain {
  padding: clamp(5.5rem, 11vw, 9.5rem) var(--pad-x);
  max-width: 1200px;
  margin: 0 auto;
}
.pain h2 { font-size: clamp(2.1rem, 4.6vw, 3.7rem); margin-bottom: 1.4rem; max-width: 16ch; }
.pain p { color: var(--muted); line-height: 1.7; max-width: 560px; margin-bottom: 3.5rem; }

.pain-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.stat {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.4rem 2rem 2.2rem;
  position: relative;
  overflow: hidden;
  transition: border-color 0.35s, transform 0.45s var(--ease-out);
}
.stat::before {
  content: '';
  position: absolute; top: 0; left: 2rem; right: 2rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--amber), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}
.stat:hover { border-color: var(--border-2); transform: translateY(-4px); }
.stat:hover::before { opacity: 0.7; }
.stat-number {
  display: block;
  font-family: 'Clash Display', sans-serif;
  font-weight: 600;
  font-size: clamp(2.6rem, 4.5vw, 3.9rem);
  letter-spacing: -0.02em;
  color: var(--amber);
  margin-bottom: 0.8rem;
  font-variant-numeric: tabular-nums;
}
.stat-label { display: block; font-size: 0.9rem; color: var(--muted); line-height: 1.6; }

/* ============================================================
   HOW IT WORKS — pinned scroll sequence
   ============================================================ */
.how { background: var(--bg); }
.how-track { height: 340vh; position: relative; }
.how-stage {
  position: sticky; top: 0;
  height: 100vh; height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 6rem var(--pad-x) 4rem;
  overflow: clip;
}
.how-head h2 { font-size: clamp(1.9rem, 4vw, 3.2rem); max-width: 18ch; }
.how-panels { position: relative; flex: 0 0 auto; min-height: 320px; margin-block: 3rem 2.5rem; }
.how-panel {
  position: absolute; inset: 0;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(1.5rem, 5vw, 4.5rem);
  align-items: start;
}
.how-num {
  font-family: 'Clash Display', sans-serif;
  font-weight: 600;
  font-size: clamp(5rem, 11vw, 9.5rem);
  line-height: 0.9;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 180, 84, 0.55);
  user-select: none;
}
@supports not (-webkit-text-stroke: 1px black) { .how-num { color: rgba(255,180,84,0.4); } }
.how-panel h3 { font-size: clamp(1.4rem, 2.4vw, 2rem); margin-bottom: 1rem; margin-top: 0.6rem; }
.how-panel p { color: var(--muted); line-height: 1.75; max-width: 540px; font-size: 1.02rem; }

.how-progress { display: flex; align-items: center; gap: 1.5rem; }
.how-progress .ticks { display: flex; gap: 1.5rem; }
.how-progress .tick {
  font-size: 0.74rem;
  letter-spacing: 0.15em;
  color: var(--faint);
  font-variant-numeric: tabular-nums;
  transition: color 0.3s;
}
.how-progress .tick.active { color: var(--amber); }
.how-progress .bar {
  flex: 1;
  height: 1px;
  background: var(--border);
  position: relative;
  overflow: hidden;
}
.how-progress .bar i {
  position: absolute; inset: 0;
  background: var(--amber);
  transform-origin: left;
  transform: scaleX(0);
}

/* static fallback: mobile + no-motion get stacked steps */
@media (max-width: 860px), (prefers-reduced-motion: reduce) {
  .how-track { height: auto; }
  .how-stage { position: static; height: auto; padding-block: clamp(5rem, 10vw, 8rem); }
  .how-panels { min-height: 0; margin-block: 2.5rem 0; display: flex; flex-direction: column; gap: 3rem; }
  .how-panel { position: static; opacity: 1 !important; transform: none !important; visibility: visible !important; }
  .how-progress { display: none; }
}

/* ============================================================
   CAPABILITIES
   ============================================================ */
.handles {
  padding: clamp(5.5rem, 11vw, 9.5rem) var(--pad-x);
  border-top: 1px solid var(--border);
  background: var(--bg-2);
}
.handles-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}
.handles h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); margin-bottom: 1.2rem; max-width: 16ch; }
.handles-desc { color: var(--muted); line-height: 1.7; max-width: 480px; margin-bottom: 2.6rem; }

.handle-list { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.handle-item {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  padding: 1.05rem 1.2rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: border-color 0.3s, transform 0.4s var(--ease-out), background 0.3s;
}
.handle-item:hover { border-color: rgba(255, 180, 84, 0.35); transform: translateX(6px); }
.handle-icon {
  flex: none;
  width: 44px; height: 44px;
  display: grid;
  place-items: center;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--amber);
}
.handle-icon svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.handle-text { display: flex; flex-direction: column; gap: 0.18rem; }
.handle-text strong { font-size: 0.95rem; font-weight: 700; }
.handle-text span { font-size: 0.84rem; color: var(--muted); line-height: 1.5; }

.handles-right .why-list { display: flex; flex-direction: column; gap: 0; }
.why-item {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  padding-block: 1.35rem;
  border-bottom: 1px solid var(--border);
}
.why-item:first-child { padding-top: 0.4rem; }
.why-check {
  flex: none;
  width: 24px; height: 24px;
  border-radius: 50%;
  border: 1px solid rgba(255, 180, 84, 0.5);
  color: var(--amber);
  font-size: 0.7rem;
  display: grid;
  place-items: center;
  margin-top: 0.1rem;
}
.why-item p { font-size: 0.93rem; color: var(--muted); line-height: 1.65; }
.why-item p strong { color: var(--ink); font-weight: 700; }

/* ============================================================
   GUARANTEE
   ============================================================ */
.guarantee {
  padding: clamp(6rem, 12vw, 10rem) var(--pad-x);
  text-align: center;
  border-top: 1px solid var(--border);
  position: relative;
  overflow: clip;
}
.guarantee::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 60% at 50% 50%, rgba(255, 180, 84, 0.05), transparent 70%);
  pointer-events: none;
}
.guarantee h2 {
  font-size: clamp(1.9rem, 4.2vw, 3.4rem);
  max-width: 24ch;
  margin: 0 auto 1.6rem;
  position: relative;
}
.guarantee .gtee-underline {
  position: relative;
  display: inline-block;
  white-space: nowrap;
}
.guarantee .gtee-underline svg {
  position: absolute;
  left: 0; bottom: -0.18em;
  width: 100%; height: 0.32em;
  overflow: visible;
}
.guarantee .gtee-underline svg path {
  stroke: var(--amber);
  stroke-width: 2.5;
  fill: none;
  stroke-linecap: round;
}
.guarantee > p { color: var(--muted); line-height: 1.7; max-width: 600px; margin: 0 auto; position: relative; }

/* ============================================================
   SAMPLE LEAD
   ============================================================ */
.sample-lead {
  padding: clamp(6rem, 12vw, 10rem) var(--pad-x);
  text-align: center;
  border-top: 1px solid var(--border);
}
.sample-lead h2 {
  font-size: clamp(1.9rem, 4.2vw, 3.4rem);
  max-width: 24ch;
  margin: 0 auto 1rem;
}
.sample-lead-sub {
  color: var(--muted);
  line-height: 1.7;
  max-width: 480px;
  margin: 0 auto 3rem;
}
.lead-card {
  max-width: 560px;
  margin: 0 auto;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  text-align: left;
}
.lead-card-header {
  padding: 1.2rem 1.6rem;
  border-bottom: 1px solid var(--border);
  background: var(--bg-3);
}
.lead-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}
.lead-badge {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--amber);
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.lead-time { font-size: 0.78rem; color: var(--muted); }
.lead-subject { font-size: 0.95rem; font-weight: 600; color: var(--text); }
.lead-card-body { padding: 0.4rem 0; }
.lead-field {
  display: grid;
  grid-template-columns: 8rem 1fr;
  gap: 0.8rem;
  padding: 0.75rem 1.6rem;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.lead-field:last-child { border-bottom: none; }
.lead-label { font-size: 0.78rem; color: var(--muted); padding-top: 0.1em; white-space: nowrap; }
.lead-value { font-size: 0.88rem; color: var(--text); font-weight: 500; }

/* ============================================================
   FAQ
   ============================================================ */
.objections {
  padding: clamp(5.5rem, 11vw, 9rem) var(--pad-x);
  border-top: 1px solid var(--border);
}
.objections-inner { max-width: 820px; margin: 0 auto; }
.objections h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); margin-bottom: 3rem; }

.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  text-align: left;
  padding: 1.5rem 0.25rem;
  font-family: 'Clash Display', sans-serif;
  font-size: 1.13rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  transition: color 0.25s;
}
.faq-q:hover { color: var(--amber); }
.faq-q .faq-x {
  flex: none;
  width: 30px; height: 30px;
  border: 1px solid var(--border-2);
  border-radius: 50%;
  display: grid;
  place-items: center;
  position: relative;
  transition: border-color 0.3s, background 0.3s, transform 0.45s var(--ease-out);
}
.faq-q .faq-x::before, .faq-q .faq-x::after {
  content: '';
  position: absolute;
  background: currentColor;
  transition: transform 0.4s var(--ease-out);
}
.faq-q .faq-x::before { width: 11px; height: 1.5px; }
.faq-q .faq-x::after { width: 1.5px; height: 11px; }
.faq-q.open .faq-x { border-color: var(--amber); background: var(--amber-glow); transform: rotate(90deg); }
.faq-q.open .faq-x::after { transform: scaleY(0); }

.faq-a {
  display: grid;
  grid-template-rows: 1fr;
  transition: grid-template-rows 0.5s var(--ease-out);
}
.js .faq-a { grid-template-rows: 0fr; }
.js .faq-a.open { grid-template-rows: 1fr; }
.faq-a-inner { overflow: hidden; min-height: 0; }
.faq-a-inner p {
  padding: 0.2rem 0.25rem 1.6rem;
  color: var(--muted);
  line-height: 1.75;
  font-size: 0.95rem;
  max-width: 680px;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  padding: clamp(6rem, 13vw, 11rem) var(--pad-x);
  text-align: center;
  border-top: 1px solid var(--border);
  position: relative;
  overflow: clip;
  background: var(--bg-2);
}
.cta-section::before {
  content: '';
  position: absolute;
  left: 50%; top: 50%;
  width: 70vw; height: 70vw;
  max-width: 900px; max-height: 900px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(255, 180, 84, 0.07), transparent 60%);
  pointer-events: none;
}
.cta-section h2 {
  font-size: clamp(2.4rem, 5.5vw, 4.4rem);
  margin-bottom: 1.4rem;
  position: relative;
}
.cta-section > p { color: var(--muted); line-height: 1.7; max-width: 480px; margin: 0 auto 2.6rem; position: relative; }
.cta-section .btn-primary { position: relative; }
.cta-note { margin-top: 1.4rem; font-size: 0.8rem; color: var(--faint); position: relative; }

/* ============================================================
   FOOTER — big type
   ============================================================ */
footer.site-footer {
  border-top: 1px solid var(--border);
  padding: clamp(4.5rem, 9vw, 8rem) var(--pad-x) 2.5rem;
  position: relative;
  overflow: clip;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-eyebrow {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 1.6rem;
  text-align: center;
}
.footer-headline {
  font-family: 'Clash Display', sans-serif;
  font-weight: 600;
  font-size: clamp(3rem, 10vw, 8rem);
  letter-spacing: -0.03em;
  line-height: 0.98;
  margin-bottom: 2.8rem;
  text-align: center;
}
.footer-cta-row { display: flex; align-items: center; justify-content: center; gap: 1.6rem; flex-wrap: wrap; margin-bottom: clamp(4rem, 8vw, 6.5rem); }
.footer-cta-row .footer-note { font-size: 0.84rem; color: var(--faint); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  padding-top: 2.2rem;
  border-top: 1px solid var(--border);
}
.footer-logo img { height: 30px; width: auto; opacity: 0.85; }
.footer-nav { display: flex; gap: 2rem; }
.footer-nav a {
  font-size: 0.84rem;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.25s;
}
.footer-nav a:hover { color: var(--amber); }
.footer-bottom > p { font-size: 0.78rem; color: var(--faint); }

/* ============================================================
   PRICING PAGE
   ============================================================ */
.roi-band {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--pad-x) 4rem;
}
.roi-band-card {
  background: linear-gradient(135deg, var(--bg-3), var(--bg-2));
  border: 1px solid rgba(255, 180, 84, 0.25);
  border-radius: var(--radius);
  padding: 2.2rem clamp(1.5rem, 4vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.roi-band-card::before {
  content: '';
  position: absolute; top: -60%; right: -10%;
  width: 50%; height: 220%;
  background: radial-gradient(ellipse, rgba(255, 180, 84, 0.08), transparent 65%);
  pointer-events: none;
}
.roi-band-card > p { color: var(--muted); line-height: 1.7; max-width: 540px; font-size: 0.98rem; position: relative; }
.roi-band-card > p strong { color: var(--amber); font-weight: 700; white-space: nowrap; }
.roi-calc {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex-wrap: wrap;
  font-family: 'Clash Display', sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--ink);
  position: relative;
}
.roi-calc span {
  background: var(--bg);
  border: 1px solid var(--border-2);
  border-radius: 10px;
  padding: 0.7rem 1.1rem;
  white-space: nowrap;
}
.roi-calc span:last-child { border-color: rgba(255, 180, 84, 0.5); color: var(--amber); }

.roi-embed-section {
  padding: clamp(4rem, 8vw, 6.5rem) var(--pad-x);
  border-top: 1px solid var(--border);
  background: var(--bg-2);
  text-align: center;
}
.roi-embed-section h2 { font-size: clamp(1.9rem, 3.8vw, 3rem); margin-bottom: 1rem; }
.roi-sub { color: var(--muted); margin-bottom: 3rem; }
.roi-iframe-wrap {
  max-width: 1020px;
  margin: 0 auto;
  border: 1px solid var(--border-2);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-2);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}
.roi-iframe-wrap iframe { width: 100%; height: 870px; display: block; border: 0; }
@media (max-width: 720px) { .roi-iframe-wrap iframe { height: 1500px; } }

.pricing {
  padding: clamp(5.5rem, 11vw, 9rem) var(--pad-x);
  text-align: center;
}
.pricing h2 { font-size: clamp(2rem, 4.2vw, 3.4rem); margin-bottom: 1rem; }
.pricing-sub { color: var(--muted); margin-bottom: 3.5rem; }
.plans {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  max-width: 920px;
  margin: 0 auto;
  text-align: left;
}
.plan {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.4rem 2.2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.45s var(--ease-out), border-color 0.35s, box-shadow 0.45s;
}
.plan:hover { transform: translateY(-6px); border-color: var(--border-2); }
.plan.featured { border-color: rgba(255, 180, 84, 0.45); background: linear-gradient(160deg, rgba(255, 180, 84, 0.05), var(--bg-2) 45%); }
.plan.featured:hover { box-shadow: 0 24px 70px rgba(255, 180, 84, 0.09); border-color: rgba(255, 180, 84, 0.7); }
.plan-badge {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  background: var(--amber-glow);
  border: 1px solid rgba(255, 180, 84, 0.3);
  padding: 0.4rem 0.9rem;
  border-radius: 100px;
  margin-bottom: 1.8rem;
}
.plan-name { font-family: 'Clash Display', sans-serif; font-size: 1.15rem; font-weight: 500; color: var(--muted); margin-bottom: 0.5rem; }
.plan-price {
  font-family: 'Clash Display', sans-serif;
  font-size: clamp(3rem, 5vw, 4rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1;
}
.plan-period { font-size: 0.85rem; color: var(--faint); margin: 0.5rem 0 1.8rem; }
.plan-features { list-style: none; display: flex; flex-direction: column; gap: 0.8rem; margin-bottom: 2.2rem; }
.plan-features li {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.55;
  padding-left: 1.5rem;
  position: relative;
}
.plan-features li::before {
  content: '✓';
  position: absolute; left: 0;
  color: var(--amber);
  font-size: 0.8rem;
}
.plan-cta {
  margin-top: auto;
  display: block;
  text-align: center;
  padding: 0.95rem 1.5rem;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid var(--border-2);
  color: var(--ink);
  transition: background 0.3s, color 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.plan-cta:hover { border-color: var(--amber); color: var(--amber); }
.plan.featured .plan-cta { background: var(--amber); border-color: var(--amber); color: #100a02; }
.plan.featured .plan-cta:hover { background: #ffc476; box-shadow: 0 8px 32px var(--amber-glow); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem var(--pad-x) clamp(5rem, 10vw, 8rem);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: start;
}
.contact-what h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); margin-bottom: 2.4rem; max-width: 18ch; }
.contact-steps { display: flex; flex-direction: column; gap: 0; margin-bottom: 2.2rem; }
.contact-step {
  display: flex;
  gap: 1.5rem;
  padding-block: 1.7rem;
  border-bottom: 1px solid var(--border);
}
.contact-step:first-child { border-top: 1px solid var(--border); }
.contact-step-num {
  flex: none;
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 180, 84, 0.5);
  color: var(--amber);
  font-family: 'Clash Display', sans-serif;
  font-weight: 500;
  display: grid;
  place-items: center;
  font-size: 0.95rem;
}
.contact-step-text { font-size: 0.93rem; color: var(--muted); line-height: 1.7; }
.contact-step-text strong { display: block; color: var(--ink); font-weight: 700; font-size: 1.02rem; margin-bottom: 0.35rem; }
.contact-aside-note { font-size: 0.88rem; color: var(--faint); line-height: 1.65; }

.contact-book {
  position: sticky;
  top: 110px;
  background: linear-gradient(160deg, rgba(255, 180, 84, 0.06), var(--bg-2) 50%);
  border: 1px solid rgba(255, 180, 84, 0.3);
  border-radius: var(--radius);
  padding: 2.4rem 2.2rem;
}
.contact-book h3 { font-size: 1.5rem; margin-bottom: 0.7rem; }
.contact-book > p { font-size: 0.92rem; color: var(--muted); line-height: 1.65; margin-bottom: 1.8rem; }
.contact-book .btn-primary { width: 100%; justify-content: center; }
.contact-email { margin-top: 2rem; padding-top: 1.8rem; border-top: 1px solid var(--border); }
.contact-email p { font-size: 0.86rem; color: var(--muted); line-height: 1.6; }
.contact-email a { color: var(--amber); text-decoration: none; font-weight: 500; }
.contact-email a:hover { text-decoration: underline; }

/* ============================================================
   MOTION INITIAL STATES (only when JS + motion OK)
   ============================================================ */
@media (prefers-reduced-motion: no-preference) {
  /* transition: none while un-revealed — hover rules on .stat/.handle-item/.plan
     declare CSS transitions on transform; if they stay live they fight GSAP's
     reveal tween frame-by-frame and the element visibly snaps into place.
     JS adds .is-revealed and clears inline styles once the tween settles. */
  html.motion [data-reveal]:not(.is-revealed) { opacity: 0; transform: translateY(26px); transition: none; }
  html.motion [data-reveal-group]:not(.is-revealed) > * { opacity: 0; transform: translateY(22px); transition: none; }
  html.motion .mask-line-inner { transform: translateY(115%); }
  html.motion .hero h1 .line-inner,
  html.motion .page-hero h1 .line-inner { transform: translateY(115%); }
  html.motion .hero-eyebrow,
  html.motion .hero-sub,
  html.motion .hero-actions,
  html.motion .hero-cue,
  html.motion .page-hero > p { opacity: 0; }
  .hero-atmosphere { animation: atmosphere-breathe 18s ease-in-out infinite alternate; }
}
@keyframes atmosphere-breathe {
  from { opacity: 0.82; transform: scale(1); }
  to   { opacity: 1;    transform: scale(1.05); }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; flex-wrap: wrap; width: auto; }
  .marquee-track + .marquee-track { display: none; }
  .hero-cue .cue-line::after, .hero-eyebrow::before { animation: none; }
  *, *::before, *::after { transition-duration: 0.01ms !important; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .handles-inner { gap: 3rem; }
}

@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  nav.site-nav { grid-template-columns: auto 1fr auto; }
  .nav-right { gap: 0.6rem; }

  .handles-inner { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-book { position: static; }
  .how-panel { grid-template-columns: 1fr; gap: 1rem; }
  .how-num { font-size: 4.5rem; }
}

@media (max-width: 760px) {
  .plans { grid-template-columns: 1fr; }
  .pain-stats { grid-template-columns: 1fr; }
  .roi-band-card { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 560px) {
  .nav-cta { padding: 0.55rem 1rem; font-size: 0.78rem; }
  .hero { padding-top: 7rem; }
  .hero-actions .btn-primary, .hero-actions .btn-ghost { width: 100%; justify-content: center; }
  .hero-cue { display: none; }
  .footer-cta-row .btn-primary { width: 100%; justify-content: center; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 1.2rem; }
}

/* ---- VOICEFLOW WIDGET ----
   The widget renders inside a shadow DOM, so rules here cannot reach it.
   Colour overrides are injected into the shadow root from index.html. */
