/* AI CREATOR LAB funnel — shared design system.
   Modeled on the Eros Management funnel structure (5x ROAS reference), rebuilt to a
   premium standard. Handoff note for Fanvue: swap CSS vars for brand tokens;
   layout, hierarchy, and tracking map stay as-is.

   Type: Clash Display (display) + Satoshi (text/UI) via Fontshare — loaded in each page head.
   Radius rule: CTAs are full-pill · cards 20px · inputs 12px. Applied everywhere, no exceptions.
   Accent rule: one accent per page — Fanvue green. dq.html overrides to Bopgpt pink. */

:root {
  --bg: #0a0c0a;
  --bg-2: #0e110e;
  --panel: #131713;
  --panel-2: #1a1f1a;
  --text: #f4f6f1;
  --muted: #a3aca1;
  --faint: #6d756c;
  --accent: #3df56e;          /* Fanvue green — matches partner badge */
  --accent-soft: rgba(61, 245, 110, 0.12);
  --accent-ink: #05130a;
  --border: rgba(255, 255, 255, 0.09);
  --border-strong: rgba(255, 255, 255, 0.16);
  --danger: #ffb04d;          /* amber = unfilled asset, nothing ships amber */
  --max: 1080px;
  --max-copy: 640px;
}

* { box-sizing: border-box; margin: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font: 500 17px/1.65 "Satoshi", -apple-system, "SF Pro Text", sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, video { max-width: 100%; display: block; }
a { color: var(--accent); }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 22px; }
.copy { max-width: var(--max-copy); }
.center { text-align: center; }
.center .copy { margin-inline: auto; }
.accent { color: var(--accent); }

/* ── Header ─────────────────────────────────────────────── */
header.bar {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
header.bar .wrap {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.brand-lockup { display: flex; align-items: center; gap: 12px; }
.brand-lockup img { height: 26px; width: auto; }
.brand-lockup .x { color: var(--faint); font-size: 13px; font-weight: 700; }
.bar .cta { margin: 0; width: auto; padding: 11px 22px; font-size: 13px; }
@media (max-width: 560px) { .bar .cta { display: none; } }

/* ── Typography ─────────────────────────────────────────── */
h1, h2, .display {
  font-family: "Clash Display", "Satoshi", sans-serif;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.06;
  text-wrap: balance;
}
h1 { font-size: clamp(33px, 5.6vw, 54px); }
h2 { font-size: clamp(27px, 4.6vw, 42px); }
h3 { font-family: "Satoshi", sans-serif; font-weight: 700; font-size: 19px; line-height: 1.3; }
p.sub { color: var(--muted); font-size: clamp(17px, 2.2vw, 19.5px); margin-top: 16px; line-height: 1.6; }
.kicker {
  display: inline-block; font-size: 13.5px; font-weight: 700;
  color: var(--accent); margin-bottom: 16px;
}

section { padding: clamp(56px, 9vw, 104px) 0; position: relative; }
section.tight { padding-top: 0; }
.section-head { margin-bottom: clamp(28px, 5vw, 48px); }

/* ── CTA — one style, one label, one job ────────────────── */
.cta {
  display: inline-block; padding: 18px 46px;
  background: var(--accent); color: var(--accent-ink);
  border: 0; border-radius: 999px;
  font-family: "Satoshi", sans-serif; font-size: 17px; font-weight: 900;
  letter-spacing: 0.04em; text-align: center; text-decoration: none; cursor: pointer;
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--accent) 45%, transparent),
              0 12px 40px -12px color-mix(in srgb, var(--accent) 55%, transparent);
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}
.cta:hover { transform: translateY(-1px);
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--accent) 60%, transparent),
              0 18px 52px -12px color-mix(in srgb, var(--accent) 65%, transparent); }
.cta:active { transform: translateY(1px) scale(0.99); }
.cta-note { color: var(--muted); font-size: 13.5px; margin-top: 14px; }
.cta-row { margin-top: 30px; }

/* ── Hero ───────────────────────────────────────────────── */
.hero { padding: clamp(48px, 8vw, 96px) 0 clamp(56px, 8vw, 96px); }
.hero-grid {
  display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(32px, 5vw, 64px); align-items: center;
}
@media (max-width: 880px) { .hero-grid { grid-template-columns: 1fr; } }
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(52% 42% at 78% 18%, color-mix(in srgb, var(--accent) 9%, transparent), transparent 70%),
    radial-gradient(40% 34% at 8% 82%, color-mix(in srgb, var(--accent) 5%, transparent), transparent 70%);
}
.hero .wrap { position: relative; }

/* Video frame — real player chrome; amber tag inside until the file exists */
.vsl-frame {
  aspect-ratio: 9 / 16; max-width: 340px; width: 100%;
  margin-inline: auto;
  border-radius: 24px; overflow: hidden; position: relative;
  background:
    radial-gradient(120% 80% at 50% 0%, #1c231c 0%, #0d100d 60%),
    var(--panel);
  border: 1px solid var(--border-strong);
  box-shadow: 0 40px 80px -30px rgba(0, 0, 0, 0.8),
              inset 0 1px 0 rgba(255, 255, 255, 0.08);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 14px; text-align: center; padding: 24px;
}
.vsl-frame .play {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--accent); color: var(--accent-ink);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 12px var(--accent-soft);
}
.vsl-frame .play svg { margin-left: 4px; }
.vsl-frame video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.asset-tag {
  font-size: 12px; font-weight: 700; color: var(--danger);
  border: 1px dashed var(--danger); border-radius: 8px; padding: 6px 10px;
  background: rgba(255, 176, 77, 0.07);
}

/* ── Monetize grid (6 ways) ─────────────────────────────── */
.ways { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
@media (max-width: 940px) { .ways { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .ways { grid-template-columns: 1fr; } }
.way {
  background: var(--panel); border: 1px solid var(--border); border-radius: 20px;
  padding: 26px 24px; display: flex; flex-direction: column; gap: 10px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.way:hover { border-color: var(--border-strong); transform: translateY(-2px); }
.way.lead {
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent) 14%, var(--panel)) 0%, var(--panel) 55%);
  border-color: color-mix(in srgb, var(--accent) 35%, transparent);
}
.way .icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--accent-soft); color: var(--accent);
  display: flex; align-items: center; justify-content: center;
}
.way p { color: var(--muted); font-size: 15.5px; line-height: 1.6; }
.way .tag {
  align-self: flex-start; font-size: 12px; font-weight: 800; letter-spacing: 0.06em;
  color: var(--accent); background: var(--accent-soft);
  padding: 4px 10px; border-radius: 999px;
}

/* ── Proof (earnings screenshots) ───────────────────────── */
.proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 880px) { .proof-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) {
  .proof-grid { display: flex; overflow-x: auto; scroll-snap-type: x mandatory;
    gap: 12px; margin: 0 -22px; padding: 0 22px 8px; }
  .proof-grid > * { flex: 0 0 78%; scroll-snap-align: center; }
}
.shot {
  border-radius: 20px; overflow: hidden;
  border: 1px solid var(--border-strong);
  background: var(--panel);
  box-shadow: 0 24px 60px -28px rgba(0, 0, 0, 0.85);
}
.shot img { width: 100%; height: auto; }
.proof-note { color: var(--faint); font-size: 12.5px; margin-top: 18px; }

/* ── Roadmap (8 steps) ──────────────────────────────────── */
.roadmap { list-style: none; margin-top: 8px; position: relative; padding-left: 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 760px) { .roadmap { grid-template-columns: 1fr; } }
.roadmap li {
  background: var(--panel); border: 1px solid var(--border); border-radius: 20px;
  padding: 22px 24px; display: flex; gap: 18px; align-items: flex-start;
}
.roadmap .num {
  font-family: "Clash Display", sans-serif; font-weight: 600; font-size: 26px;
  color: var(--accent); flex: 0 0 44px; line-height: 1.15;
}
.roadmap p { color: var(--muted); font-size: 15px; margin-top: 5px; line-height: 1.55; }

/* ── FAQ ────────────────────────────────────────────────── */
.faq { max-width: 760px; margin-inline: auto; }
details {
  border: 1px solid var(--border); border-radius: 16px;
  padding: 0; margin-top: 10px; background: var(--panel);
  transition: border-color 0.2s ease;
}
details[open] { border-color: var(--border-strong); }
details summary {
  cursor: pointer; font-weight: 700; font-size: 16.5px; list-style: none;
  padding: 18px 52px 18px 20px; position: relative;
}
details summary::-webkit-details-marker { display: none; }
details summary::after {
  content: "+"; position: absolute; right: 20px; top: 50%; translate: 0 -50%;
  color: var(--accent); font-size: 22px; font-weight: 500;
}
details[open] summary::after { content: "–"; }
details .a { color: var(--muted); padding: 0 20px 18px; font-size: 15.5px; line-height: 1.65; }

/* ── Final CTA band ─────────────────────────────────────── */
.band .copy { margin-inline: auto; }
.band {
  border-radius: 28px; padding: clamp(40px, 6vw, 72px) clamp(24px, 5vw, 64px);
  background:
    radial-gradient(80% 120% at 50% 0%, color-mix(in srgb, var(--accent) 16%, var(--panel)) 0%, var(--panel) 70%);
  border: 1px solid color-mix(in srgb, var(--accent) 30%, transparent);
  text-align: center;
}

/* ── Cards / lists (shared) ─────────────────────────────── */
.card { background: var(--panel); border: 1px solid var(--border); border-radius: 20px;
  padding: 26px; margin-top: 18px; }
.check { list-style: none; margin-top: 10px; padding-left: 0; }
.check li { padding: 9px 0 9px 32px; position: relative; }
.check li::before { content: "✓"; position: absolute; left: 4px; color: var(--accent); font-weight: 900; }
.x li::before { content: "✕"; color: var(--faint); }
hr.soft { border: 0; border-top: 1px solid var(--border); margin: 14px 0; }

/* Legacy amber placeholder blocks — visibly unfinished so nothing ships unfilled */
.placeholder { border: 2px dashed var(--danger); background: rgba(255, 176, 77, 0.06);
  color: var(--danger); border-radius: 16px; padding: 22px; text-align: center;
  font-size: 14px; font-weight: 600; }
.placeholder small { display: block; font-weight: 400; margin-top: 6px; color: var(--muted); }

/* ── Compliance / footer ────────────────────────────────── */
.disclaimer { color: var(--faint); font-size: 12.5px; line-height: 1.6; margin-top: 12px; }
footer { border-top: 1px solid var(--border); padding: 40px 0 72px; margin-top: 24px;
  background: var(--bg-2); }
footer .wrap { color: var(--muted); font-size: 13px; }
footer .brand-lockup { margin-bottom: 18px; }
footer a { color: var(--muted); }
footer h4 { font-size: 13.5px; color: var(--muted); margin: 18px 0 6px; }

/* ── Motion — one hero entrance + quiet section reveals ── */
@keyframes rise { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
.hero .rise { animation: rise 0.7s cubic-bezier(0.2, 0.7, 0.2, 1) both; }
.hero .rise:nth-child(2) { animation-delay: 0.08s; }
.hero .rise:nth-child(3) { animation-delay: 0.16s; }
.hero .rise:nth-child(4) { animation-delay: 0.24s; }
.hero .rise:nth-child(5) { animation-delay: 0.32s; }
.reveal { opacity: 0; transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.2, 0.7, 0.2, 1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .hero .rise { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ── Forms (application page) ───────────────────────────── */
.field { margin-top: 22px; text-align: left; }
.field > label { display: block; font-weight: 700; font-size: 16px; margin-bottom: 8px; }
.field input[type="text"], .field input[type="tel"], .field input[type="email"], .field textarea {
  width: 100%; padding: 15px 16px; font: 500 16.5px "Satoshi", sans-serif;
  background: var(--panel-2); color: var(--text);
  border: 1px solid var(--border-strong); border-radius: 12px; outline: none;
  transition: border-color 0.15s ease;
}
.field input:focus, .field textarea:focus { border-color: var(--accent); }
.field input::placeholder, .field textarea::placeholder { color: var(--faint); }
.opts { display: grid; gap: 10px; margin-top: 4px; }
.opt {
  display: block; width: 100%; text-align: left; padding: 15px 16px; font: 500 16.5px "Satoshi", sans-serif;
  background: var(--panel-2); color: var(--text);
  border: 1px solid var(--border-strong); border-radius: 12px; cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.opt:hover { border-color: var(--accent); }
.opt.sel { border-color: var(--accent); background: var(--accent-soft); }
.consent { display: flex; gap: 10px; align-items: flex-start; margin-top: 12px;
  font-size: 13.5px; color: var(--muted); }
.consent input { margin-top: 3px; accent-color: var(--accent); }
.err { color: var(--danger); font-size: 14px; margin-top: 8px; display: none; }
