/* ═══════════════════════════════════════════════════════
   FACELESS.SHOW — Design System v3
   Theme: Refined dark SaaS (AI/creator tools — Linear, Runway pattern)
   Primary: logo gold · Accent: soft violet · Body: DM Sans
═══════════════════════════════════════════════════════ */

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

:root {
  color-scheme: dark;

  /* Surfaces — layered depth, not flat black */
  --bg:        #090c14;
  --bg2:       #0f131c;
  --bg3:       #161b27;
  --bg-elevated: #1c2230;
  --border:    rgba(255,255,255,.08);
  --border2:   rgba(255,255,255,.14);

  /* Brand — gold from logo (primary CTA + highlights only) */
  --gold:      #c9a44c;
  --gold2:     #dbb96a;
  --gold-dim:  rgba(201,164,76,.12);
  --gold-glow: rgba(201,164,76,.22);

  /* Secondary accent — restrained violet for links/focus */
  --violet:    #8b6cf6;
  --violet2:   #a78bfa;
  --violet-dim: rgba(139,108,246,.12);
  --violet-glow: rgba(167,139,250,.18);

  /* Functional colors — badges/status only */
  --cyan:      #38bdf8;
  --cyan2:     #7dd3fc;
  --cyan-dim:  rgba(56,189,248,.1);
  --rose:      #f43f5e;
  --rose2:     #fb7185;
  --rose-dim:  rgba(244,63,94,.1);
  --emerald:   #34d399;
  --emerald2:  #6ee7b7;
  --emerald-dim: rgba(52,211,153,.1);

  /* Text — WCAG-friendly on dark (4.5:1+ for body) */
  --white:     #f4f6fb;
  --gray1:     #e2e8f4;
  --gray2:     #9aa3b5;
  --gray3:     #6b7589;
  --green:     #34d399;
  --green-bg:  rgba(52,211,153,.1);
  --red:       #f87171;

  --radius:    12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow-sm: 0 1px 0 rgba(255,255,255,.04) inset, 0 8px 32px rgba(0,0,0,.35);
  --shadow-md: 0 1px 0 rgba(255,255,255,.05) inset, 0 16px 48px rgba(0,0,0,.45);
  font-size: 16px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--gray1);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

h1, h2, h3, .serif, .display, .headline, .logo { font-family: 'Playfair Display', Georgia, serif; }
a { color: inherit; text-decoration: none; }
img, video { display: block; max-width: 100%; }
button { font-family: 'DM Sans', system-ui, sans-serif; cursor: pointer; border: none; background: none; }

/* ── SCROLLBAR ──────────────────────────────────────── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(124,58,237,.4); border-radius: 4px; }

/* ── TYPOGRAPHY ─────────────────────────────────────── */
.display {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 10vw, 5.5rem);
  line-height: 1.05;
  letter-spacing: -.03em;
  color: var(--white);
}
.display em {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold2) 55%, #f0dfa8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 6vw, 3.2rem);
  line-height: 1.12;
  letter-spacing: -.025em;
  color: var(--white);
}
.headline em {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.subhead { font-size: clamp(.95rem, 3vw, 1.125rem); line-height: 1.75; color: var(--gray2); max-width: 56ch; }

/* Section labels — color variants */
.label {
  font-size: .75rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold);
}
.label.lv  { color: var(--violet2); }
.label.lc  { color: var(--cyan2); }
.label.lr  { color: var(--rose2); }
.label.le  { color: var(--emerald2); }

/* ── HEADER ─────────────────────────────────────────── */
#site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(9,12,20,.82);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  backdrop-filter: blur(16px) saturate(150%);
  border-bottom: 1px solid var(--border);
  height: 72px;
  transition: box-shadow .3s, border-color .3s, background .3s;
}
#site-header.scrolled {
  background: rgba(9,12,20,.94);
  box-shadow: var(--shadow-sm);
  border-bottom-color: var(--border2);
}
.header-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 0 20px; height: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem; font-weight: 700;
  color: var(--white);
  display: flex; align-items: center; gap: 8px;
}
.logo span { color: var(--gold); }
.logo-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold); flex-shrink: 0;
  box-shadow: 0 0 8px var(--gold);
  animation: glow 2s ease-in-out infinite;
}
@keyframes glow {
  0%,100% { box-shadow: 0 0 6px var(--gold); }
  50% { box-shadow: 0 0 16px var(--gold2), 0 0 30px var(--gold-glow); }
}

.desk-nav { display: none; align-items: center; gap: 1.75rem; }
.desk-nav a { font-size: .85rem; font-weight: 500; color: var(--gray2); transition: color .2s; }
.desk-nav a:hover, .desk-nav a.active { color: var(--white); }

.header-right { display: flex; align-items: center; gap: 10px; }
.btn-ghost {
  font-size: .85rem; color: var(--gray2);
  padding: .45rem .9rem;
  border: 1px solid var(--border2);
  border-radius: 8px; transition: all .2s; white-space: nowrap;
}
.btn-ghost:hover { color: var(--white); border-color: rgba(201,164,76,.35); background: rgba(255,255,255,.03); }

.btn-gold {
  font-size: .85rem; font-weight: 600;
  background: linear-gradient(180deg, var(--gold2), var(--gold));
  color: #0a0c12;
  padding: .55rem 1.15rem; border-radius: 9px;
  transition: all .15s; white-space: nowrap;
  display: none;
  box-shadow: 0 1px 0 rgba(255,255,255,.2) inset, 0 4px 14px var(--gold-dim);
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold2), var(--gold));
  transform: translateY(-1px);
  box-shadow: 0 6px 20px var(--gold-glow);
}

/* MOBILE TOGGLE */
.mob-toggle {
  display: flex; flex-direction: column; gap: 5px;
  padding: 10px; background: none;
  min-width: 44px; min-height: 44px;
  justify-content: center; align-items: center;
}
.mob-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--gray1); border-radius: 2px; transition: all .25s;
}

/* MOBILE MENU */
#mob-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,.75); z-index: 198;
  -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
}
#mob-menu {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 199;
  width: min(320px, 90vw);
  background: var(--bg2);
  border-left: 1px solid rgba(124,58,237,.2);
  padding: 20px;
  transform: translateX(100%);
  transition: transform .32s cubic-bezier(.4,0,.2,1);
  display: flex; flex-direction: column; gap: 0;
}
#mob-menu.open { transform: translateX(0); }
#mob-overlay.open { display: block; }
.mob-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 2rem; }
.mob-head button { font-size: 1.2rem; color: var(--gray2); }
.mob-nav { display: flex; flex-direction: column; gap: 0; flex: 1; }
.mob-nav a {
  display: block; padding: 1rem 0;
  font-size: 1.05rem; font-weight: 500; color: var(--gray1);
  border-bottom: 1px solid var(--border); transition: color .2s;
}
.mob-nav a:hover { color: var(--violet2); }
.mob-cta {
  display: block; margin-top: 2rem;
  background: linear-gradient(135deg, var(--gold), #d4aa50);
  color: #0c0f1a; font-weight: 700; font-size: .95rem;
  padding: 1rem; border-radius: 10px; text-align: center;
}

/* ── BUTTONS ─────────────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: linear-gradient(180deg, var(--gold2) 0%, var(--gold) 100%);
  color: #0a0c12;
  font-family: 'DM Sans', system-ui, sans-serif; font-size: .95rem; font-weight: 700;
  padding: .9rem 1.75rem; border-radius: 10px;
  cursor: pointer; transition: all .2s; border: none; text-decoration: none;
  box-shadow: 0 1px 0 rgba(255,255,255,.25) inset, 0 6px 20px var(--gold-dim);
}
.btn-primary:hover {
  background: linear-gradient(180deg, #e8cc7a, var(--gold2));
  transform: translateY(-1px);
  box-shadow: 0 1px 0 rgba(255,255,255,.3) inset, 0 10px 28px var(--gold-glow);
}
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--border2); color: var(--gray1);
  background: rgba(255,255,255,.02);
  font-family: 'DM Sans', system-ui, sans-serif; font-size: .95rem; font-weight: 500;
  padding: .85rem 1.6rem; border-radius: 10px;
  cursor: pointer; transition: all .2s;
}
.btn-outline:hover { border-color: rgba(201,164,76,.4); color: var(--white); background: rgba(201,164,76,.06); }
.btn-violet {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: linear-gradient(135deg, var(--violet), #6d28d9);
  color: #fff;
  font-family: 'DM Sans', system-ui, sans-serif; font-size: .95rem; font-weight: 700;
  padding: .9rem 2rem; border-radius: 10px;
  cursor: pointer; transition: all .2s; border: none; text-decoration: none;
  box-shadow: 0 4px 16px var(--violet-dim);
}
.btn-violet:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px var(--violet-glow);
}
.btn-gold-lg {
  width: 100%; padding: 1rem 1.5rem;
  background: linear-gradient(135deg, var(--gold), #c99a3a);
  color: #0c0f1a;
  font-family: 'DM Sans', system-ui, sans-serif; font-size: 1rem; font-weight: 700;
  border-radius: 10px; border: none; cursor: pointer; transition: all .2s;
}
.btn-gold-lg:hover { background: linear-gradient(135deg, var(--gold2), var(--gold)); transform: translateY(-1px); }
.btn-gold-lg:disabled { opacity: .6; cursor: not-allowed; transform: none; }

/* ── PAGE WRAPPER ────────────────────────────────────── */
.page-wrap { padding-top: 72px; }
section { padding: 64px 20px; max-width: 1280px; margin: 0 auto; }
.section-head { margin-bottom: 40px; }
.section-head .label { margin-bottom: .5rem; }
.section-head .headline { margin-bottom: .75rem; }

/* ── HERO ────────────────────────────────────────────── */
.hero {
  position: relative; overflow: hidden;
  min-height: 100svh;
  display: flex; flex-direction: column;
  background: var(--bg);
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% -10%, rgba(201,164,76,.14) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 90% 20%, rgba(139,108,246,.10) 0%, transparent 50%),
    radial-gradient(ellipse 100% 80% at 50% 100%, rgba(15,19,28,.9) 0%, transparent 70%),
    var(--bg);
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.018'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-inner {
  position: relative; z-index: 1; flex: 1;
  display: flex; flex-direction: column; justify-content: center;
  padding: 80px 20px 60px; max-width: 1280px; margin: 0 auto; width: 100%;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold-dim);
  border: 1px solid rgba(201,164,76,.28);
  color: var(--gold2);
  font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: .4rem 1rem; border-radius: 999px; margin-bottom: 1.5rem; width: fit-content;
}
.hero-badge .pulse {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--emerald); animation: beat .9s ease-in-out infinite;
}
@keyframes beat { 0%,100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.4); opacity: .6; } }

.hero .display { margin-bottom: 1.25rem; }
.hero .subhead { max-width: 540px; margin-bottom: 2rem; font-size: 1.05rem; }
.hero-actions { display: flex; flex-direction: column; gap: 12px; margin-bottom: 2.5rem; }
.hero-trust { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 16px; font-size: .78rem; color: var(--gray3); }

/* ── HERO TRUST PILLS ──────────────────────────────── */
.trust-pill {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: .72rem; font-weight: 600;
  padding: .25rem .7rem; border-radius: 999px;
}
.trust-pill.gold  { background: var(--gold-dim); color: var(--gold); border: 1px solid rgba(201,164,76,.25); }
.trust-pill.violet{ background: var(--violet-dim); color: var(--violet2); border: 1px solid rgba(167,139,250,.25); }
.trust-pill.cyan  { background: var(--cyan-dim); color: var(--cyan2); border: 1px solid rgba(6,182,212,.25); }
.trust-pill.emerald{ background: var(--emerald-dim); color: var(--emerald2); border: 1px solid rgba(16,185,129,.25); }

/* HERO VIDEO REEL MOCKUPS */
.hero-reels {
  position: relative; padding: 20px 0;
  display: flex; gap: 12px; justify-content: center; overflow: visible;
}
.reel-card {
  position: relative; border-radius: 16px; overflow: hidden;
  border: 1px solid var(--border2); flex-shrink: 0;
  box-shadow: 0 16px 64px rgba(0,0,0,.6); transition: transform .3s;
}
.reel-card:hover { transform: translateY(-4px); }
.reel-card.main { width: 160px; }
.reel-card.side { width: 130px; opacity: .65; transform: scale(.95) translateY(16px); }
.reel-thumb-placeholder {
  width: 100%; aspect-ratio: 9/16;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 8px;
}
.reel-play-icon {
  font-size: 1.5rem; opacity: .7;
  background: rgba(255,255,255,.15);
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  padding-left: 3px;
}
.reel-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.88) 0%, transparent 50%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 12px;
}
.reel-niche { font-size: .62rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.reel-views { font-size: .72rem; color: rgba(255,255,255,.8); }
.reel-badges { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; margin-top: 12px; }
.reel-badge-live {
  font-size: .72rem; font-weight: 700;
  background: var(--emerald-dim); color: var(--emerald2);
  border: 1px solid rgba(16,185,129,.3);
  padding: .28rem .8rem; border-radius: 999px;
}
.reel-badge-info {
  font-size: .72rem; font-weight: 700;
  background: var(--violet-dim); color: var(--violet2);
  border: 1px solid rgba(167,139,250,.3);
  padding: .28rem .8rem; border-radius: 999px;
}

/* ── PROOF STRIP ─────────────────────────────────────── */
.proof-strip {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px; text-align: center;
}
.proof-strip p {
  font-size: .72rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--gray3); margin-bottom: 14px;
}
.proof-logos { display: flex; align-items: center; justify-content: center; gap: 20px; flex-wrap: wrap; }
.proof-logo {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: .9rem; font-weight: 600;
  padding: .35rem .85rem; border-radius: 8px;
  border: 1px solid var(--border);
  color: var(--gray2);
  background: rgba(255,255,255,.02);
  transition: all .2s;
}
.proof-logo:hover { color: var(--gold2); border-color: rgba(201,164,76,.3); background: var(--gold-dim); }

/* ── STATS BAND ──────────────────────────────────────── */
.stats-band {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 20px;
}
.stats-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 24px; text-align: center;
}
.stat-n {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.2rem; font-weight: 900;
  line-height: 1; margin-bottom: 4px;
  color: var(--white);
}
.stat-l { font-size: .82rem; color: var(--gray2); }
.stats-inner > *:nth-child(1) .stat-n { color: var(--gold2); }
.stats-inner > *:nth-child(2) .stat-n { color: var(--white); }
.stats-inner > *:nth-child(3) .stat-n { color: var(--gold); }
.stats-inner > *:nth-child(4) .stat-n { color: var(--gray1); }

/* ── CARDS ───────────────────────────────────────────── */
.card {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.card:hover {
  border-color: var(--border2);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

/* ── STEPS GRID ──────────────────────────────────────── */
.steps-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 1px; background: var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
}
.step-item { background: var(--bg2); padding: 28px 24px; display: flex; gap: 16px; transition: background .2s; }
.step-item:hover { background: var(--bg3); }
.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem; font-weight: 900;
  line-height: 1; flex-shrink: 0; width: 44px;
}
.step-item:nth-child(1) .step-num,
.step-item:nth-child(3) .step-num { color: rgba(201,164,76,.35); }
.step-item:nth-child(2) .step-num,
.step-item:nth-child(4) .step-num { color: rgba(255,255,255,.12); }
.step-body h3 { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: .4rem; }
.step-body p { font-size: .875rem; color: var(--gray2); line-height: 1.65; }

/* ── FEATURES ────────────────────────────────────────── */
.features-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
.feat {
  background: var(--bg2); border: 1px solid var(--border);
  border-left: 3px solid transparent;
  border-radius: var(--radius-lg); padding: 24px;
  transition: all .25s;
}
.feat:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.feat:nth-child(odd)  { border-left-color: var(--gold); }
.feat:nth-child(even) { border-left-color: rgba(255,255,255,.15); }
.feat:nth-child(odd):hover  { background: rgba(201,164,76,.04); }
.feat:nth-child(even):hover { background: rgba(255,255,255,.02); }
.feat-icon { font-size: 1.8rem; margin-bottom: 12px; }
.feat h3 { font-size: .95rem; font-weight: 700; color: var(--white); margin-bottom: .4rem; }
.feat p { font-size: .85rem; color: var(--gray2); line-height: 1.65; }

/* ── COMPARISON TABLE ────────────────────────────────── */
.compare-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px; max-width: 820px; margin: 0 auto;
}
.compare-col { border-radius: var(--radius-lg); overflow: hidden; }
.compare-head {
  padding: 16px 20px; font-weight: 700; font-size: .9rem;
  display: flex; align-items: center; gap: 8px;
}
.compare-col.bad  .compare-head { background: rgba(239,68,68,.1); color: var(--red); border: 1px solid rgba(239,68,68,.2); border-bottom: none; }
.compare-col.good .compare-head { background: rgba(16,185,129,.1); color: var(--emerald2); border: 1px solid rgba(16,185,129,.2); border-bottom: none; }
.compare-items { border: 1px solid var(--border); border-top: none; border-radius: 0 0 var(--radius-lg) var(--radius-lg); }
.compare-item {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 18px; border-bottom: 1px solid var(--border);
  font-size: .875rem;
}
.compare-item:last-child { border-bottom: none; }
.compare-col.bad  .compare-item { color: var(--gray3); }
.compare-col.good .compare-item { color: var(--gray1); }
.compare-icon { font-size: 1rem; flex-shrink: 0; }

/* ── NICHES ──────────────────────────────────────────── */
.niches-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.niche-card {
  position: relative; border-radius: var(--radius-lg);
  overflow: hidden; aspect-ratio: 3/4; cursor: pointer;
  transition: transform .3s, box-shadow .3s;
}
.niche-card:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 16px 48px rgba(0,0,0,.6);
}
.niche-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.92) 0%, rgba(0,0,0,.2) 60%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 16px;
}
.niche-tag { font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.niche-name { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--white); font-weight: 700; margin-bottom: 4px; }
.niche-stat { font-size: .75rem; color: rgba(255,255,255,.6); }

/* ── PROCESS / PIPELINE ──────────────────────────────── */
.pipeline-wrap {
  display: flex; flex-direction: column; gap: 0;
  max-width: 680px; margin: 0 auto;
  border: 1px solid var(--border); border-radius: var(--radius-xl);
  overflow: hidden;
}
.pipe-step {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 22px 24px;
  border-bottom: 1px solid var(--border);
  background: var(--bg2);
  transition: background .2s;
}
.pipe-step:last-child { border-bottom: none; }
.pipe-step:hover { background: var(--bg3); }
.pipe-dot {
  width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .78rem; font-weight: 700; flex-shrink: 0; margin-top: 2px;
}
.pipe-dot.gold    { background: var(--gold-dim); color: var(--gold); border: 1.5px solid rgba(201,164,76,.3); }
.pipe-dot.violet  { background: var(--violet-dim); color: var(--violet2); border: 1.5px solid rgba(167,139,250,.3); }
.pipe-dot.cyan    { background: var(--cyan-dim); color: var(--cyan2); border: 1.5px solid rgba(6,182,212,.3); }
.pipe-dot.rose    { background: var(--rose-dim); color: var(--rose2); border: 1.5px solid rgba(244,63,94,.3); }
.pipe-dot.emerald { background: var(--emerald-dim); color: var(--emerald2); border: 1.5px solid rgba(16,185,129,.3); }
.pipe-body h4 { font-size: .95rem; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.pipe-body p { font-size: .85rem; color: var(--gray2); line-height: 1.6; }

/* ── FAQ ─────────────────────────────────────────────── */
.faq { border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; text-align: left; padding: 20px 0;
  display: flex; justify-content: space-between; align-items: center;
  font-family: 'DM Sans', system-ui, sans-serif; font-size: .95rem; font-weight: 500;
  color: var(--white); background: none; border: none; cursor: pointer; gap: 12px;
}
.faq-q .icon { font-size: 1.25rem; color: var(--gray3); transition: transform .25s; flex-shrink: 0; }
.faq-item.open .faq-q .icon { transform: rotate(45deg); color: var(--violet2); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-item.open .faq-a { max-height: 500px; }
.faq-a p { padding-bottom: 20px; font-size: .9rem; color: var(--gray2); line-height: 1.8; }
.faq-a a { color: var(--violet2); text-decoration: underline; }

/* ── PRICING ─────────────────────────────────────────── */
.pricing-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
.plan {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 28px 24px; position: relative;
  transition: all .25s;
}
.plan:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0,0,0,.4); }
.plan.featured { border-color: var(--gold); box-shadow: 0 0 0 1px var(--gold), 0 16px 48px rgba(201,164,76,.12); }
.plan-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), #d4aa50);
  color: #0c0f1a; font-size: .72rem; font-weight: 800;
  padding: .3rem 1rem; border-radius: 999px;
  white-space: nowrap; letter-spacing: .05em; text-transform: uppercase;
}
.plan-tier { font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gray3); margin-bottom: 8px; }
.plan-price { font-family: 'Playfair Display', serif; font-size: 3rem; line-height: 1; color: var(--white); margin-bottom: 4px; }
.plan-price sup { font-size: 1.25rem; vertical-align: top; margin-top: .5rem; display: inline-block; color: var(--gray2); }
.plan-price sub { font-size: .85rem; font-family: 'DM Sans', system-ui, sans-serif; font-weight: 400; color: var(--gray2); }
.plan-desc { font-size: .85rem; color: var(--gray2); line-height: 1.6; margin-bottom: 20px; }
.plan-divider { border: none; border-top: 1px solid var(--border); margin-bottom: 20px; }
.plan-feats { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.plan-feats li { font-size: .875rem; color: var(--gray1); display: flex; align-items: flex-start; gap: 8px; line-height: 1.5; }
.plan-feats li::before { content: '✓'; color: var(--emerald); font-weight: 900; flex-shrink: 0; }
.plan-feats li.no::before { content: '✗'; color: var(--gray3); }
.plan-feats li.no { color: var(--gray3); }
.plan-btn {
  display: block; width: 100%; padding: .9rem;
  border-radius: 10px; font-family: 'DM Sans', system-ui, sans-serif;
  font-size: .95rem; font-weight: 700;
  text-align: center; cursor: pointer; transition: all .2s;
  border: 1.5px solid var(--border2); color: var(--white); background: none;
}
.plan-btn.gold { background: linear-gradient(135deg, var(--gold), #c99a3a); color: #0c0f1a; border-color: transparent; }
.plan-btn.gold:hover { background: linear-gradient(135deg, var(--gold2), var(--gold)); }
.plan-btn:not(.gold):hover { border-color: var(--violet2); color: var(--violet2); }

/* ── CTA BANNER ──────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(180deg, var(--bg2), var(--bg3));
  border: 1px solid var(--border2);
  border-radius: var(--radius-xl);
  padding: 48px 28px; text-align: center;
  margin: 0 20px 64px;
  box-shadow: var(--shadow-md);
}
.cta-banner .headline { margin-bottom: .75rem; }
.cta-banner .subhead { max-width: 420px; margin: 0 auto 2rem; }

/* ── INLINE SIGNUP ───────────────────────────────────── */
.inline-signup { display: flex; flex-direction: column; gap: 10px; }
.inline-signup input {
  background: var(--bg3); border: 1px solid var(--border2);
  border-radius: 10px; padding: .9rem 1.1rem;
  font-family: 'DM Sans', system-ui, sans-serif; font-size: .95rem;
  color: var(--white); outline: none; transition: border-color .2s;
}
.inline-signup input::placeholder { color: var(--gray3); }
.inline-signup input:focus { border-color: var(--violet2); box-shadow: 0 0 0 3px rgba(124,58,237,.15); }

/* ── MODAL ───────────────────────────────────────────── */
#modal-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,.88); z-index: 300;
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
}
#lead-modal {
  display: none; position: fixed; z-index: 301;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(.95);
  width: min(480px, 94vw);
  background: var(--bg2);
  border: 1px solid rgba(167,139,250,.25);
  border-radius: var(--radius-xl);
  padding: 40px 28px; text-align: center;
  transition: transform .3s cubic-bezier(.175,.885,.32,1.275), opacity .3s;
  opacity: 0;
}
#lead-modal.open { display: block; }
#lead-modal.visible { transform: translate(-50%, -50%) scale(1); opacity: 1; }
.modal-close {
  position: absolute; top: 16px; right: 16px;
  background: var(--bg3); border: 1px solid var(--border);
  color: var(--gray2); border-radius: 50%;
  width: 32px; height: 32px; font-size: .9rem;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
}
.modal-badge {
  display: inline-block;
  background: var(--violet-dim); border: 1px solid rgba(167,139,250,.3);
  color: var(--violet2);
  font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: .35rem .9rem; border-radius: 999px; margin-bottom: 1rem;
}
#lead-modal h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 5vw, 2rem);
  color: var(--white); line-height: 1.15; margin-bottom: .75rem;
}
#lead-modal h2 em { color: var(--gold); font-style: italic; }
.modal-sub { font-size: .88rem; color: var(--gray2); line-height: 1.65; margin-bottom: 1.5rem; }
#modal-form { display: flex; flex-direction: column; gap: 10px; text-align: left; }
#modal-form input {
  background: var(--bg3); border: 1px solid var(--border2);
  border-radius: 10px; padding: .85rem 1rem;
  font-family: 'DM Sans', system-ui, sans-serif; font-size: .9rem;
  color: var(--white); outline: none; transition: border-color .2s;
}
#modal-form input:focus { border-color: var(--violet2); }
#modal-form input::placeholder { color: var(--gray3); }
.modal-trust {
  display: flex; justify-content: center; align-items: center;
  gap: 8px; flex-wrap: wrap; font-size: .72rem; color: var(--gray3); margin-top: .75rem;
}
.form-msg { margin-top: .75rem; font-size: .85rem; border-radius: 8px; padding: .6rem .75rem; display: none; }
.form-msg.ok  { background: var(--green-bg); color: var(--green); display: block; }
.form-msg.err { background: rgba(239,68,68,.1); color: var(--red); display: block; }

/* ── TOAST ───────────────────────────────────────────── */
#toast-container {
  position: fixed; bottom: 20px; left: 16px; z-index: 500;
  display: flex; flex-direction: column; gap: 8px;
  pointer-events: none; max-width: calc(100vw - 32px);
}
.toast {
  background: var(--bg2); border: 1px solid rgba(167,139,250,.2);
  border-radius: 14px; padding: 12px 14px;
  display: flex; align-items: center; gap: 10px;
  pointer-events: auto; max-width: 300px;
  box-shadow: 0 8px 32px rgba(0,0,0,.6);
  animation: toastIn .4s cubic-bezier(.175,.885,.32,1.275) both;
}
@keyframes toastIn { from { opacity: 0; transform: translateY(16px) scale(.95); } to { opacity: 1; transform: translateY(0) scale(1); } }
.toast.out { animation: toastOut .3s ease forwards; }
@keyframes toastOut { to { opacity: 0; transform: translateY(8px) scale(.97); } }
.t-avi { width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: .7rem; color: #fff; flex-shrink: 0; }
.t-body { flex: 1; min-width: 0; }
.t-name { font-weight: 700; font-size: .82rem; color: var(--white); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.t-line { font-size: .74rem; color: var(--gray2); display: flex; align-items: center; gap: 4px; margin-top: 1px; }
.t-plan { background: var(--gold); color: #0c0f1a; font-size: .64rem; font-weight: 800; padding: .1rem .4rem; border-radius: 4px; }

/* ── CONTACT FORM ────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 40px; padding: 0 20px; max-width: 1280px; margin: 0 auto 80px; }
.contact-form { display: flex; flex-direction: column; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: .78rem; font-weight: 600; color: var(--gray2); }
.form-group input, .form-group textarea, .form-group select {
  background: var(--bg2); border: 1px solid var(--border2);
  border-radius: 10px; padding: .8rem 1rem;
  font-family: 'DM Sans', system-ui, sans-serif; font-size: .9rem;
  color: var(--white); outline: none; transition: border-color .2s;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--violet2); }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--gray3); }
.form-group select option { background: var(--bg2); }
.form-group textarea { min-height: 130px; resize: vertical; }
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.ci { display: flex; gap: 14px; align-items: flex-start; }
.ci-icon { width: 44px; height: 44px; border-radius: 10px; background: var(--bg3); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.ci-label { font-size: .75rem; color: var(--gray3); margin-bottom: 2px; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; }
.ci-val { font-size: .9rem; color: var(--white); font-weight: 500; }

/* ── SIMPLE CONTENT PAGES ────────────────────────────── */
.prose { max-width: 720px; margin: 0 auto; padding: 0 20px 80px; }
.prose h2 { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--white); margin: 2rem 0 .6rem; }
.prose p, .prose li { font-size: .95rem; color: var(--gray2); line-height: 1.8; }
.prose ul { padding-left: 1.25rem; display: flex; flex-direction: column; gap: .35rem; margin-bottom: 1rem; }

/* ── FOOTER ──────────────────────────────────────────── */
footer { background: var(--bg2); border-top: 1px solid rgba(124,58,237,.12); }
.footer-inner { max-width: 1280px; margin: 0 auto; padding: 56px 20px 24px; }
.footer-top { display: grid; grid-template-columns: 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand p { font-size: .875rem; color: var(--gray2); line-height: 1.7; margin-top: .75rem; max-width: 280px; }
.footer-social { display: flex; gap: 12px; margin-top: 1rem; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 8px;
  border: 1px solid var(--border2);
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; color: var(--gray2); transition: all .2s;
}
.footer-social a:nth-child(1):hover { border-color: var(--gold); color: var(--gold); }
.footer-social a:nth-child(2):hover { border-color: var(--violet2); color: var(--violet2); }
.footer-social a:nth-child(3):hover { border-color: var(--cyan2); color: var(--cyan2); }
.footer-links-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.footer-links-grid h4 { font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--white); margin-bottom: 14px; }
.footer-links-grid ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links-grid ul li a { font-size: .85rem; color: var(--gray3); transition: color .2s; }
.footer-links-grid ul li a:hover { color: var(--violet2); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 20px; display: flex; flex-direction: column; gap: 8px; }
.footer-bottom p { font-size: .78rem; color: var(--gray3); }
.footer-bottom strong { color: var(--gold); font-weight: 600; }

/* ── NICHE DETAIL HERO ───────────────────────────────── */
.niche-hero { position: relative; min-height: 60vh; display: flex; align-items: flex-end; overflow: hidden; border-radius: 0 0 var(--radius-xl) var(--radius-xl); }
.niche-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.niche-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.95) 0%, rgba(0,0,0,.5) 50%, transparent 100%); }
.niche-hero-content { position: relative; z-index: 1; padding: 40px 20px; }

/* ════════════════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════════════ */
@media (min-width: 480px) {
  .hero-actions { flex-direction: row; }
  .niches-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-inner { grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 640px) {
  section { padding: 80px 40px; }
  .hero-inner { padding: 100px 40px 80px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .niches-grid { grid-template-columns: repeat(3, 1fr); }
  .pricing-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-grid { grid-template-columns: 3fr 2fr; }
  .footer-top { grid-template-columns: 1fr 2fr; }
  .footer-links-grid { grid-template-columns: repeat(4, 1fr); }
  .form-row { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 768px) {
  .desk-nav { display: flex; }
  .btn-gold { display: inline-flex; }
  .mob-toggle { display: none; }
  .hero-inner { flex-direction: row; align-items: center; gap: 60px; }
  .hero-content { flex: 1; }
  .hero-visual { flex-shrink: 0; }
  .features-grid { grid-template-columns: repeat(3, 1fr); }
  .steps-grid { grid-template-columns: repeat(4, 1fr); }
  .niches-grid { grid-template-columns: repeat(4, 1fr); }
  .stat-n { font-size: 3rem; }
  .compare-grid { gap: 24px; }
}
@media (min-width: 1024px) {
  .hero-inner { padding: 120px 60px 100px; }
  section { padding: 100px 60px; }
  .cta-banner { margin: 0 60px 80px; }
  .contact-grid { padding: 0 60px; }
}

/* ANIMATIONS */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── SMALL SCREEN ────────────────────────────────────── */
@media (max-width: 479px) {
  .form-row { grid-template-columns: 1fr; }
  .niches-grid { grid-template-columns: 1fr 1fr; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-outline, .btn-violet { width: 100%; justify-content: center; }
  .compare-grid { grid-template-columns: 1fr; }
}

/* ── FOCUS STYLES ────────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px; border-radius: 4px;
}
.btn-primary:focus-visible,
.btn-outline:focus-visible,
.btn-violet:focus-visible,
.btn-gold-lg:focus-visible,
.plan-btn:focus-visible { outline-offset: 4px; }

/* ── SKIP LINK ───────────────────────────────────────── */
.skip-link {
  position: absolute; left: -9999px; top: 8px; z-index: 9999;
  background: var(--violet); color: #fff;
  font-weight: 700; padding: .5rem 1rem; border-radius: 8px; font-size: .9rem;
}
.skip-link:focus { left: 8px; }

/* ── REDUCED MOTION ──────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  html { scroll-behavior: auto; }
  .fade-up { opacity: 1; transform: none; transition: none; }
}

/* ── PRINT ───────────────────────────────────────────── */
@media print {
  #site-header, footer, .cta-banner, #lead-modal, #modal-overlay, #toast-container { display: none !important; }
  body { background: #fff; color: #000; }
  a { color: #000; }
}
