/* ============================================================
   You Can Automate This — The Creator Content Engine
   Palette: Jet Black #000 · Signal Yellow #FCEB00 · White #FFF
   Flat. Sharp (not pill). Big type, generous whitespace.
   One typeface: Inter.
   ============================================================ */

:root {
  --black:#000; --yellow:#FCEB00; --white:#fff;
  --panel:#0c0c0c; --card:#121212; --card-2:#181818;
  --line:#222; --line-2:#2e2e2e;
  --muted:#b0b0b0; --dim:#7c7c7c;

  --font:'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  --maxw:1200px;
  --radius:10px; --radius-sm:7px;
  --pad:118px;
}

* { box-sizing:border-box; margin:0; padding:0; }
html { scroll-behavior:smooth; scroll-padding-top:84px; }
body {
  font-family:var(--font);
  background:var(--black); color:#d8d8d8;
  font-size:17px; line-height:1.7;
  -webkit-font-smoothing:antialiased; text-rendering:optimizeLegibility;
}
img { max-width:100%; display:block; }
a { color:inherit; text-decoration:none; }

.container { width:100%; max-width:var(--maxw); margin:0 auto; padding:0 28px; }
.narrow { max-width:740px; }
.center { text-align:center; }
section { padding:var(--pad) 0; }

/* ---------- Type helpers ---------- */
.eyebrow {
  text-transform:uppercase; font-size:12px; letter-spacing:0.2em; font-weight:700; color:var(--yellow);
  display:flex; align-items:center; gap:13px; margin-bottom:24px;
}
.center .eyebrow { justify-content:center; }
.eyebrow::before { content:""; width:26px; height:2px; background:var(--yellow); flex:none; }
.center .eyebrow::after { content:""; width:26px; height:2px; background:var(--yellow); flex:none; }

.section-title {
  font-weight:800; font-size:clamp(30px, 4.6vw, 50px); line-height:1.08; letter-spacing:-0.025em;
  color:var(--white); margin-bottom:22px; text-wrap:balance;
}
.section-intro { color:var(--muted); max-width:620px; margin-bottom:52px; font-size:17px; }
.center .section-intro { margin-left:auto; margin-right:auto; }
.lead { font-size:clamp(18px,2.1vw,21px); color:#dcdcdc; margin-bottom:18px; }
.lead strong { color:var(--white); font-weight:600; }
.hl { color:var(--yellow); }

/* ---------- Buttons ---------- */
.btn {
  display:inline-flex; align-items:center; justify-content:center; text-align:center;
  font-weight:600; font-size:16px; padding:14px 24px; border-radius:var(--radius-sm);
  border:1.5px solid transparent; cursor:pointer;
  transition:background-color .15s, color .15s, border-color .15s, transform .04s;
}
.btn:active { transform:translateY(1px); }
.btn-cta { background:var(--yellow); color:#000; border-color:var(--yellow); }
.btn-cta:hover { background:var(--white); border-color:var(--white); }
.btn-ghost { background:transparent; color:var(--white); border-color:#383838; }
.btn-ghost:hover { border-color:var(--yellow); color:var(--yellow); }
.btn-lg { padding:16px 28px; }
.btn-block { display:flex; width:100%; margin-top:auto; }

/* ---------- Header / Nav ---------- */
.site-header { position:sticky; top:0; z-index:100; background:rgba(0,0,0,0.94); border-bottom:1px solid var(--line); }
.header-inner { display:flex; align-items:center; justify-content:space-between; height:72px; gap:24px; }
.brand { flex:none; }
.brand-logo { height:30px; width:auto; flex:none; }
.nav { display:flex; gap:24px; margin-left:auto; }
.nav a { font-size:15px; font-weight:500; color:#d2d2d2; white-space:nowrap; transition:color .15s; }
.nav a:hover { color:var(--yellow); }
.nav-cta { padding:10px 18px; font-size:14px; }
.nav-toggle { display:none; flex-direction:column; gap:5px; background:none; border:0; cursor:pointer; padding:8px; }
.nav-toggle span { width:24px; height:2px; background:var(--white); transform-origin:center; transition:transform .3s cubic-bezier(.2,.7,.2,1), opacity .2s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform:translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity:0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform:translateY(-7px) rotate(-45deg); }
/* Smooth open/close via max-height + fade (eases to ~content height; 460px clears the 7-item menu). */
.mobile-nav { overflow:hidden; max-height:0; opacity:0; visibility:hidden; border-bottom:1px solid transparent; transition:max-height .4s cubic-bezier(.2,.7,.2,1), opacity .3s ease, visibility .4s linear, border-color .4s ease; }
.mobile-nav.open { max-height:460px; opacity:1; visibility:visible; border-bottom-color:var(--line); }
.mobile-nav-inner { display:flex; flex-direction:column; gap:4px; padding:14px 28px 24px; }
.mobile-nav a { font-size:15px; font-weight:500; padding:13px 0; color:#e2e2e2; border-bottom:1px solid var(--line); }
.mobile-nav a:last-child { border:0; margin-top:12px; color:#000; }

/* ---------- Hero ---------- */
.hero { position:relative; overflow:hidden; padding:108px 0 104px; }
.hero-grid-bg {
  position:absolute; inset:0; z-index:0; pointer-events:none; opacity:.5;
  background-image:linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
                   linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size:50px 50px;
  -webkit-mask-image:linear-gradient(to bottom, #000 42%, transparent 94%);
          mask-image:linear-gradient(to bottom, #000 42%, transparent 94%);
}
.hero-grid { position:relative; z-index:1; display:grid; grid-template-columns:1.15fr 0.85fr; gap:56px; align-items:center; }
.hero-headline { font-weight:900; font-size:clamp(44px, 6.9vw, 86px); line-height:1.0; letter-spacing:-0.04em; color:var(--white); margin-bottom:24px; text-wrap:balance; }
.hero-sub { font-size:clamp(17px,1.9vw,20px); color:#d6d6d6; max-width:560px; margin-bottom:32px; }
.hero-actions { display:flex; flex-wrap:wrap; gap:14px; margin-bottom:24px; }
.hero-note { font-size:13.5px; color:var(--dim); }

/* Hero visual — six short-windows */
.hero-visual { padding:0; }
.hv-diagram { width:100%; height:auto; display:block; }
.hv-source { border:1px solid var(--line-2); border-radius:var(--radius-sm); background:var(--black); padding:14px 18px; text-align:center; margin-bottom:12px; }
.hv-source-label { font-weight:700; font-size:15px; color:var(--white); }
.hv-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:10px; }
.hv-card { aspect-ratio:9/16; border:1px solid var(--line-2); border-radius:var(--radius-sm); background:var(--black); position:relative; display:flex; align-items:flex-end; padding:10px; }
.hv-tag { font-size:11px; font-weight:700; text-transform:uppercase; letter-spacing:.04em; color:var(--dim); }
.hv-play { position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); width:0; height:0; border-top:8px solid transparent; border-bottom:8px solid transparent; border-left:13px solid var(--yellow); margin-left:3px; }
.hv-card-more { background:var(--yellow); align-items:center; justify-content:center; flex-direction:column; }
.hv-more { color:#000; font-weight:900; font-size:30px; line-height:1; }
.hv-more-sub { color:#000; font-weight:700; font-size:11px; text-transform:uppercase; letter-spacing:.05em; }

/* ---------- Hero motion (staggered load) ---------- */
@keyframes heroUp { from { opacity:0; transform:translateY(22px); } to { opacity:1; transform:none; } }
.hero-copy > * { animation:heroUp .7s cubic-bezier(.2,.7,.2,1) both; }
.hero-copy .eyebrow { animation-delay:.04s; }
.hero-headline { animation-delay:.12s; }
.hero-sub { animation-delay:.22s; }
.hero-actions { animation-delay:.32s; }
.hero-note { animation-delay:.40s; }
.hero-visual { animation:heroUp .85s cubic-bezier(.2,.7,.2,1) both; animation-delay:.28s; }

/* ---------- Showcase strip (auto-scroll + drag) ---------- */
.showcase { background:var(--black); padding-bottom:calc(var(--pad) - 24px); }
.showcase .section-title { margin-bottom:36px; }
.showcase-viewport { position:relative; overflow:hidden; cursor:grab; touch-action:pan-y; user-select:none; -webkit-user-select:none; }
.showcase-viewport.grabbing { cursor:grabbing; }
.showcase-track { display:flex; gap:22px; width:max-content; padding:48px 28px; will-change:transform; }
.clip { flex:none; width:158px; aspect-ratio:9/16; border:1px solid var(--line-2); border-radius:var(--radius); background:var(--card); position:relative; display:flex; align-items:flex-end; padding:12px; overflow:hidden; transform-origin:center center; }
.clip-play { position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); width:0; height:0; border-top:10px solid transparent; border-bottom:10px solid transparent; border-left:17px solid var(--yellow); margin-left:3px; }
.clip-tag { font-size:11px; font-weight:700; color:var(--dim); font-variant-numeric:tabular-nums; }
/* Real media drops straight into a card and fills it (shorts = video, posters/thumbs = img). */
.clip > video, .clip > img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }

/* ---------- Thumbnails grid (16:9) — second half of "Our work" ---------- */
.work-subhead { margin-top:54px; margin-bottom:22px; font-size:clamp(19px,2.2vw,24px); font-weight:700; color:#dcdcdc; text-align:center; }
.thumb-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:18px; }
.thumb-card { aspect-ratio:16/9; border:1px solid var(--line-2); border-radius:var(--radius); background:var(--card); position:relative; overflow:hidden; display:flex; align-items:center; justify-content:center; }
.thumb-card > img, .thumb-card > video { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.thumb-ph { color:var(--dim); font-size:11px; font-weight:700; letter-spacing:.1em; }
/* Rotator crossfade: two stacked layers per slot, opacity blended in script.js. */
.thumb-card .tl { opacity:1; transition:opacity .7s ease; will-change:opacity; backface-visibility:hidden; }
/* The centre highlight is now drawn per-clip in script.js — a travelling grey→yellow
   border + soft glow that peaks at centre and dissolves as the clip drifts past,
   instead of a fixed viewfinder frame. */

/* ---------- Section bg rhythm ---------- */
.how, .proof, .packages, .faq {
  background-color:var(--panel);
  background-image:linear-gradient(rgba(255,255,255,.022) 1px, transparent 1px),
                   linear-gradient(90deg, rgba(255,255,255,.022) 1px, transparent 1px);
  background-size:50px 50px;
}
.problem, .why, .start, .final-cta { background:var(--black); }

/* ---------- Problem ---------- */
.problem .lead { font-size:clamp(19px,2.3vw,24px); color:#e6e6e6; }

/* ---------- How it works ---------- */
.steps { display:grid; grid-template-columns:repeat(3,1fr); gap:26px; }
.step { background:var(--card); border:1px solid var(--line); border-radius:var(--radius); padding:34px 30px; }
.step-num { font-weight:900; font-size:50px; line-height:1; color:var(--yellow); display:block; margin-bottom:16px; letter-spacing:-0.03em; }
.step h3 { font-size:22px; font-weight:700; color:var(--white); margin-bottom:10px; }
.step p { color:var(--muted); font-size:16px; }
.how-close { text-align:center; margin-top:44px; font-size:21px; color:#dcdcdc; font-weight:600; }

/* ---------- Why us (editorial, no boxes) ---------- */
.reasons { display:grid; grid-template-columns:repeat(3,1fr); gap:40px; }
.reason { padding-top:22px; border-top:1px solid var(--line-2); }
.reason h3 { font-size:21px; font-weight:700; color:var(--white); margin-bottom:12px; }
.reason p { color:var(--muted); font-size:16px; }

/* ---------- Proof ---------- */
.placeholder { border:2px dashed #383838; background:var(--black); display:flex; flex-direction:column; align-items:center; justify-content:center; text-align:center; gap:12px; color:var(--muted); }
.placeholder-tag { text-transform:uppercase; font-size:11px; letter-spacing:.08em; font-weight:700; color:var(--yellow); }
.reel-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
.reel-card { aspect-ratio:9/16; border-radius:var(--radius); position:relative; padding:16px; }
.reel-play { width:0; height:0; border-top:11px solid transparent; border-bottom:11px solid transparent; border-left:19px solid var(--yellow); margin-left:5px; }
.reel-note { margin-top:22px; color:#dcdcdc; font-size:16px; }
.stat-strip { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; margin-top:42px; }
.stat-strip-4 { grid-template-columns:repeat(4,1fr); }
.stat-card { background:var(--card); border:1px solid var(--line); border-radius:var(--radius); min-height:118px; padding:52px 22px 24px; position:relative; overflow:visible; display:flex; flex-direction:column; align-items:flex-start; justify-content:flex-end; }
.stat-num { position:absolute; top:-24px; left:20px; font-weight:900; font-size:clamp(48px,5.6vw,72px); color:var(--yellow); letter-spacing:-0.035em; line-height:1; }
.stat-label { font-size:15px; color:var(--muted); line-height:1.4; }
.stat-label em { color:#dcdcdc; font-style:normal; font-weight:600; }
.proof-disclaimer { margin-top:24px; color:var(--dim); font-size:13.5px; }

/* ---------- Founder ---------- */
.founder-grid { display:grid; grid-template-columns:0.8fr 1.2fr; gap:56px; align-items:center; }
.founder-photo { aspect-ratio:4/5; max-width:360px; width:100%; border-radius:var(--radius); }
.founder-links { display:flex; flex-wrap:wrap; gap:14px; margin-top:26px; }

/* ---------- Packages ---------- */
.tiers { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; align-items:start; }
.tier { background:var(--card); border:1px solid var(--line); border-radius:var(--radius); padding:34px 28px; position:relative; display:flex; flex-direction:column; height:100%; }
.tier-featured { background:var(--card-2); border:1.5px solid var(--yellow); }
.tier-badge { position:absolute; top:-12px; left:28px; background:var(--yellow); color:#000; font-size:11px; font-weight:800; text-transform:uppercase; letter-spacing:.06em; padding:5px 12px; border-radius:5px; }
.tier-badge-scarce { background:var(--white); }
.tier-name { font-size:23px; font-weight:800; color:var(--white); margin-bottom:8px; }
.tier-price { margin-bottom:12px; }
.tier-price .price { font-size:40px; font-weight:900; color:var(--white); letter-spacing:-0.03em; }
.tier-price .per { font-size:14px; color:var(--muted); font-weight:500; }
.tier-desc { color:#cfcfcf; font-size:15.5px; margin-bottom:22px; }
.tier-list { list-style:none; margin-bottom:22px; display:flex; flex-direction:column; gap:10px; }
.tier-list li { position:relative; padding-left:24px; font-size:15px; color:#e0e0e0; line-height:1.5; }
.tier-list li strong { color:var(--white); }
.tier-list li::before { content:""; position:absolute; left:0; top:8px; width:7px; height:7px; background:var(--yellow); }
.tier-anchor { font-size:13.5px; color:var(--muted); margin-bottom:20px; padding-top:16px; border-top:1px solid var(--line-2); }
.anchor-strike { color:var(--dim); text-decoration:line-through; }

/* ---------- Guarantee band ---------- */
.guarantee-band { background:var(--yellow); color:#000; padding:84px 0; }
.guarantee-headline { font-size:clamp(27px,3.8vw,42px); font-weight:800; line-height:1.16; letter-spacing:-0.025em; color:#000; }
.guarantee-sub { text-transform:uppercase; letter-spacing:.12em; font-size:13px; font-weight:700; color:#1a1a1a; margin-top:16px; }

/* ---------- How we start (timeline) ---------- */
.timeline { list-style:none; display:grid; grid-template-columns:repeat(4,1fr); gap:24px; position:relative; margin-top:50px; }
.timeline::before { content:""; position:absolute; top:21px; left:8%; right:8%; height:2px; background:var(--line-2); }
.tl-step { position:relative; text-align:center; padding:0 8px; }
.tl-dot { width:44px; height:44px; border-radius:50%; background:var(--yellow); color:#000; font-weight:900; font-size:19px; display:flex; align-items:center; justify-content:center; margin:0 auto 16px; position:relative; z-index:1; }
.tl-step h3 { font-size:18px; font-weight:700; color:var(--white); margin-bottom:8px; }
.tl-step p { color:var(--muted); font-size:14.5px; }

/* ---------- FAQ ---------- */
.faq-list { display:flex; flex-direction:column; gap:12px; }
.faq-item { background:var(--card); border:1px solid var(--line); border-radius:var(--radius); padding:4px 24px; }
.faq-item summary { list-style:none; cursor:pointer; font-weight:700; font-size:18px; color:var(--white); padding:20px 38px 20px 0; position:relative; }
.faq-item summary::-webkit-details-marker { display:none; }
.faq-item summary::after { content:"+"; position:absolute; right:0; top:50%; transform:translateY(-50%); font-size:26px; font-weight:400; color:var(--yellow); }
.faq-item[open] summary::after { content:"\2013"; }
.faq-body { padding:0 0 22px; }
.faq-body p { color:var(--muted); font-size:16px; }

/* ---------- Final CTA ---------- */
.final-headline { font-size:clamp(32px,5.2vw,56px); font-weight:900; line-height:1.06; letter-spacing:-0.03em; color:var(--white); margin-bottom:18px; }
.final-cta .lead { color:#d6d6d6; max-width:560px; margin-left:auto; margin-right:auto; }
.final-note { font-size:14px; color:var(--dim); margin-top:24px; }
.final-note a { color:var(--muted); text-decoration:underline; }
.final-note a:hover { color:var(--yellow); }

/* ---------- Footer ---------- */
.site-footer { position:relative; overflow:hidden; background:var(--black); border-top:1px solid var(--line); padding:64px 0 28px; }
.footer-stamp { position:absolute; left:-1.2%; bottom:-1.4rem; z-index:0; pointer-events:none; user-select:none; font-weight:900; font-size:clamp(64px,9vw,128px); letter-spacing:-0.05em; line-height:.8; color:#0d0d0d; white-space:nowrap; }
.footer-inner { position:relative; z-index:1; display:grid; grid-template-columns:1.6fr 1fr 1fr 1.4fr; gap:32px; padding-bottom:40px; border-bottom:1px solid var(--line); }
.footer-logo { height:26px; width:auto; margin-bottom:16px; }
.footer-tag { color:var(--muted); font-size:14px; }
.footer-col { display:flex; flex-direction:column; gap:12px; }
.footer-col-title { text-transform:uppercase; font-size:11px; letter-spacing:.12em; font-weight:700; color:var(--dim); margin-bottom:4px; }
.footer-col a { font-size:14.5px; color:#cfcfcf; }
.footer-col a:hover { color:var(--yellow); }
.footer-bottom { position:relative; z-index:1; display:flex; justify-content:space-between; flex-wrap:wrap; gap:10px; padding-top:22px; }
.footer-bottom p { font-size:13px; color:#777; }
.footer-legal-name { text-transform:uppercase; letter-spacing:.08em; font-size:11px; color:#5a5a5a; }

/* ---------- Scroll reveal (directional + stagger) ---------- */
.js [data-rv] { opacity:0; transition:opacity .65s ease, transform .65s cubic-bezier(.2,.7,.2,1); }
.js [data-rv="up"]    { transform:translateY(34px); }
.js [data-rv="down"]  { transform:translateY(-34px); }
.js [data-rv="left"]  { transform:translateX(-50px); }
.js [data-rv="right"] { transform:translateX(50px); }
.js [data-rv].rv-in   { opacity:1; transform:none; }

/* ---------- Legal pages ---------- */
.legal-main { max-width:780px; margin:0 auto; padding:72px 28px 96px; }
.legal-main h1 { font-size:clamp(32px,4vw,46px); font-weight:900; letter-spacing:-0.025em; color:var(--white); margin-bottom:10px; }
.legal-updated { text-transform:uppercase; font-size:11px; letter-spacing:.1em; color:var(--dim); margin-bottom:40px; }
.legal-main h2 { font-size:21px; font-weight:800; color:var(--white); margin:36px 0 12px; }
.legal-main h3 { font-size:16px; font-weight:700; color:#e6e6e6; margin:24px 0 8px; }
.legal-main p, .legal-main li { color:var(--muted); font-size:15.5px; line-height:1.7; margin-bottom:12px; }
.legal-main ul { padding-left:22px; margin-bottom:16px; }
.legal-main a { color:var(--yellow); text-decoration:underline; }
.legal-main strong { color:#e6e6e6; }
.legal-back { text-transform:uppercase; font-size:12px; letter-spacing:.1em; font-weight:700; color:var(--yellow); display:inline-block; margin-bottom:40px; }

/* ============================================================ Responsive ============================================================ */
@media (max-width:1024px) {
  /* Switch to the hamburger before the wide wordmark + 6 links + CTA crowd the row (needs ~1025px). */
  .nav, .nav-cta { display:none; }
  .nav-toggle { display:flex; }
}
@media (max-width:980px) {
  :root { --pad:84px; }
  .hero-grid { grid-template-columns:1fr; gap:42px; text-align:center; }
  /* Once the hero stacks, the diagram would just sit below the copy — drop it so the strip follows directly. */
  .hero-visual { display:none; }
  .hero-copy .eyebrow { justify-content:center; }
  .hero-copy .eyebrow::after { content:""; width:26px; height:2px; background:var(--yellow); flex:none; }
  .hero-sub { margin-inline:auto; }
  .hero-actions { justify-content:center; }
  /* Stat numbers go in-flow below desktop — the overhang only reads well on wide 3-up cards. */
  .stat-strip-4 { grid-template-columns:repeat(2,1fr); }
  .stat-card { padding:28px 24px; min-height:0; justify-content:flex-start; }
  .stat-num { position:relative; top:auto; left:auto; margin-bottom:8px; }
  .founder-grid { grid-template-columns:1fr; gap:34px; }
  .founder-photo { max-width:300px; }
  .steps, .reasons { grid-template-columns:1fr; }
  .reasons { gap:0; }
  .reason { border-top:1px solid var(--line-2); padding:22px 0; }
  .reel-grid { grid-template-columns:repeat(2,1fr); }
  .timeline { grid-template-columns:repeat(2,1fr); gap:32px 24px; }
  .timeline::before { display:none; }
  .footer-inner { grid-template-columns:1fr 1fr; gap:30px; }
}
@media (max-width:760px) {
  .tiers, .stat-strip, .stat-strip-4 { grid-template-columns:1fr; }
  .thumb-grid { grid-template-columns:repeat(2,1fr); }
  /* Single-column: each card is full-width, so the number can grow. (In-flow already set at ≤980.) */
  .stat-num { font-size:clamp(46px,13vw,60px); }
}
@media (max-width:560px) {
  body { font-size:16px; }
  .container { padding:0 20px; }
  .hero-actions .btn { width:100%; }
  .reel-grid { grid-template-columns:repeat(2,1fr); gap:14px; }
  .timeline { grid-template-columns:1fr; }
  .footer-inner { grid-template-columns:1fr; }
  .clip { width:132px; }
  .showcase-track { gap:14px; padding:40px 18px; }
}

/* ---------- A11y ---------- */
a:focus-visible, button:focus-visible, summary:focus-visible { outline:3px solid var(--yellow); outline-offset:3px; border-radius:3px; }
@media (prefers-reduced-motion:reduce) {
  * { scroll-behavior:auto; }
  [data-rv] { opacity:1 !important; transform:none !important; transition:none !important; }
  .hero-copy > *, .hero-visual { animation:none; }
  .btn, .nav a { transition:none; }
  .mobile-nav, .mobile-nav-inner, .nav-toggle span { transition:none; }
}
