/* ============================================================
   CONTENT LEAGUE — global styles
   Dark, premium, type-led. One accent color. No stock-photo energy.
   ============================================================ */

:root {
  /* Crimson — the permanent Content League palette. Aggressive red, gym energy. */
  --bg: #0b0709;
  --bg-raised: #140d10;
  --bg-card: #191014;
  --line: #2e2026;
  --line-soft: #24181d;
  --text: #f6eef1;
  --text-dim: #ab99a0;
  --text-faint: #705f66;
  --accent: #ff4d5e;
  --accent-dim: #e33748;
  --accent-ink: #ffffff;
  --good: #5ad19b;
  --red: #ff6b5e;
  --radius: 14px;
  --radius-lg: 22px;
  --font-display: "Space Grotesk", "Inter", -apple-system, sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --maxw: 1120px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--accent); color: var(--accent-ink); }

img { max-width: 100%; display: block; }
a { color: inherit; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.wrap-narrow { max-width: 780px; margin: 0 auto; padding: 0 24px; }

/* ---------- typography ---------- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; letter-spacing: -0.02em; line-height: 1.08; }
h1 { font-size: clamp(2.4rem, 6vw, 4.3rem); }
h2 { font-size: clamp(1.9rem, 4.2vw, 3rem); }
h3 { font-size: clamp(1.15rem, 2.2vw, 1.45rem); line-height: 1.25; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.lead { font-size: clamp(1.05rem, 2vw, 1.25rem); color: var(--text-dim); }
.dim { color: var(--text-dim); }
.faint { color: var(--text-faint); }
.accent { color: var(--accent); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  padding: 16px 30px;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}
.btn:active { transform: scale(0.98); }
.btn-primary {
  background: var(--accent);
  color: var(--accent-ink);
  box-shadow: 0 0 0 0 rgba(215, 255, 63, 0);
}
.btn-primary:hover { background: var(--accent-dim); box-shadow: 0 8px 40px -8px color-mix(in srgb, var(--accent) 45%, transparent); transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--text-faint); background: var(--bg-raised); }
.btn-lg { padding: 19px 38px; font-size: 1.08rem; }
.btn-note { display: block; margin-top: 12px; font-size: 0.85rem; color: var(--text-faint); }

/* ---------- nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
}
.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.02rem;
  letter-spacing: 0.06em;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo .tick { color: var(--accent); }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  text-decoration: none;
  font-size: 0.92rem;
  color: var(--text-dim);
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--text); }
.nav .btn { padding: 10px 22px; font-size: 0.9rem; }
.nav-burger {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.6rem;
  cursor: pointer;
  line-height: 1;
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  padding: 100px 0 80px;
  text-align: center;
}
.hero::before {
  content: "";
  position: absolute;
  inset: -200px 0 auto 0;
  height: 560px;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, color-mix(in srgb, var(--accent) 9%, transparent), transparent 70%);
  pointer-events: none;
}
.hero h1 { max-width: 900px; margin: 0 auto 28px; }
.hero .eyebrow { display: block; }
.hero-id {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 auto 26px;
  padding: 8px 18px 8px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--bg-raised);
  font-size: 0.92rem;
  color: var(--text-dim);
}
.hero-id strong { color: var(--text); font-weight: 600; }
.hero-id img { width: 34px; height: 34px; border-radius: 50%; object-fit: cover; border: 2px solid var(--accent); }

/* ---------- real photos ---------- */
/* ---------- video wall (biggest reels) ---------- */
.vidwall-head { text-align: center; margin: 8px auto 24px; max-width: 720px; }
.vidwall-head h3 { font-size: clamp(1.4rem, 3.2vw, 2rem); margin-bottom: 10px; }
.vidwall-head p { color: var(--text-dim); font-size: 0.98rem; }
.vidwall {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(150px, 1fr);
  gap: 14px;
  margin-bottom: 40px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 8px;
  -webkit-overflow-scrolling: touch;
}
.vw-card { scroll-snap-align: start; text-decoration: none; color: inherit; display: block; }
.vw-thumb {
  position: relative;
  aspect-ratio: 9 / 16;
  border-radius: 14px;
  border: 1px solid var(--line);
  overflow: hidden;
  background-color: var(--bg-card);
  background-size: cover;
  background-position: center;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}
/* dark scrim so the overlaid stats stay legible over any cover */
.vw-thumb::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 42%;
  background: linear-gradient(to top, rgba(0,0,0,0.82), rgba(0,0,0,0.35) 55%, transparent);
  pointer-events: none;
}
.vw-card:hover .vw-thumb {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: 0 12px 30px -12px color-mix(in srgb, var(--accent) 55%, transparent);
}
/* stats overlaid on the cover (Jun Yuh style) */
.vw-stats {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  display: flex; flex-direction: column; gap: 3px;
  padding: 10px 12px;
}
.vw-stat {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.85);
  white-space: nowrap;
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}
.vw-stat b {
  font-family: var(--font-display);
  font-weight: 700;
  color: #fff;
  font-size: 0.92rem;
}
/* new-followers stat — green so growth reads as "good", not brand-red */
.vw-stat.vw-gain { color: var(--good); }
.vw-stat.vw-gain b { color: var(--good); }

.receipts-layout { display: grid; grid-template-columns: 1fr; gap: 20px; }
.receipts-layout.with-photo { grid-template-columns: 380px 1fr; align-items: stretch; }
.receipt-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  position: relative;
  min-height: 320px;
}
.receipt-photo img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.receipt-photo .ph-cap {
  position: absolute;
  left: 14px; bottom: 14px; right: 14px;
  z-index: 2;
  font-family: var(--font-display);
  font-size: 0.8rem;
  color: var(--text);
  background: color-mix(in srgb, var(--bg) 72%, transparent);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 8px 12px;
}
.stat-grid-receipts { margin-top: 0; }

.photo-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 44px 0 8px; }
.photo-strip figure {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-card);
  margin: 0;
}
.photo-strip img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; transition: transform 0.3s ease; }
.photo-strip figure:hover img { transform: scale(1.03); }
.photo-strip figcaption { padding: 12px 16px; font-size: 0.85rem; color: var(--text-faint); }

@media (max-width: 900px) {
  .receipts-layout.with-photo { grid-template-columns: 1fr; }
  .photo-strip { grid-template-columns: 1fr; }
}
.hero .lead { max-width: 720px; margin: 0 auto 40px; }
.hero-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.proof-strip {
  margin-top: 72px;
  padding-top: 36px;
  border-top: 1px solid var(--line-soft);
  display: flex;
  justify-content: center;
  gap: clamp(24px, 6vw, 80px);
  flex-wrap: wrap;
}
.proof-item { text-align: center; }
.proof-item .num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  letter-spacing: -0.02em;
}
.proof-item .lbl { font-size: 0.82rem; color: var(--text-faint); margin-top: 2px; letter-spacing: 0.04em; text-transform: uppercase; }

/* ---------- sections ---------- */
section { padding: 96px 0; }
section.tight { padding: 72px 0; }
.section-head { max-width: 760px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { margin-bottom: 18px; }

.band { background: var(--bg-raised); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }

/* ---------- receipts / chart ---------- */
.chart-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(20px, 4vw, 44px);
  overflow: hidden;
}
.chart-title { display: flex; justify-content: space-between; align-items: baseline; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.chart-title h3 { font-size: 1.1rem; }
.chart-title span { font-size: 0.82rem; color: var(--text-faint); }
.chart-svg { width: 100%; height: auto; display: block; }
.chart-legend { display: flex; justify-content: space-between; margin-top: 10px; font-size: 0.78rem; color: var(--text-faint); font-family: var(--font-display); letter-spacing: 0.05em; }

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 16px;
}
.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
}
.stat-card .num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  letter-spacing: -0.02em;
  color: var(--accent);
}
.stat-card .lbl { font-size: 0.9rem; color: var(--text-dim); margin-top: 6px; line-height: 1.45; }

.disclaimer-inline {
  margin-top: 28px;
  font-size: 0.88rem;
  color: var(--text-faint);
  border-left: 2px solid var(--line);
  padding-left: 16px;
  max-width: 720px;
}

/* ---------- story ---------- */
.story p { margin-bottom: 24px; font-size: clamp(1.02rem, 1.8vw, 1.15rem); color: var(--text-dim); }
.story p strong { color: var(--text); font-weight: 600; }
.story .big-quote {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
  margin: 40px 0;
  letter-spacing: -0.01em;
}

/* ---------- for / not-for ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.fit-card {
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--line);
  background: var(--bg-card);
}
.fit-card.yes { border-color: color-mix(in srgb, var(--accent) 25%, transparent); }
.fit-card h3 { margin-bottom: 22px; }
.fit-card ul { list-style: none; }
.fit-card li { padding: 10px 0; display: flex; gap: 14px; color: var(--text-dim); border-top: 1px solid var(--line-soft); }
.fit-card li:first-child { border-top: none; }
.fit-card .mark { flex-shrink: 0; font-weight: 700; font-family: var(--font-display); }
.fit-card.yes .mark { color: var(--accent); }
.fit-card.no .mark { color: var(--red); }

/* ---------- inside cards ---------- */
.grid-4 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.inside-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: border-color 0.2s, transform 0.2s;
}
.inside-card:hover { border-color: color-mix(in srgb, var(--accent) 30%, transparent); transform: translateY(-2px); }
.inside-card .icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: color-mix(in srgb, var(--accent) 10%, transparent);
  border: 1px solid color-mix(in srgb, var(--accent) 25%, transparent);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 20px;
}
.inside-card h3 { margin-bottom: 12px; }
.inside-card p { color: var(--text-dim); font-size: 0.98rem; }
.inside-card .tag {
  display: inline-block;
  margin-top: 16px;
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid color-mix(in srgb, var(--accent) 30%, transparent);
  padding: 5px 12px;
  border-radius: 999px;
}

/* ---------- studio mock ---------- */
.studio-shell {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 40px 100px -40px rgba(0, 0, 0, 0.8);
}
.studio-bar {
  display: flex; align-items: center; gap: 8px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  background: var(--bg-raised);
}
.studio-bar .dot { width: 11px; height: 11px; border-radius: 50%; background: var(--line); }
.studio-bar .dot:nth-child(1) { background: #ff5f57; }
.studio-bar .dot:nth-child(2) { background: #febc2e; }
.studio-bar .dot:nth-child(3) { background: #28c840; }
.studio-bar .addr {
  margin-left: 14px;
  font-size: 0.78rem;
  color: var(--text-faint);
  background: var(--bg);
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  padding: 5px 14px;
  font-family: var(--font-display);
  letter-spacing: 0.03em;
}
.studio-body { display: grid; grid-template-columns: 200px 1fr; min-height: 420px; }
.studio-side {
  border-right: 1px solid var(--line);
  padding: 22px 14px;
  background: var(--bg-raised);
  display: flex; flex-direction: column; gap: 4px;
}
.studio-side .s-item {
  font-size: 0.88rem;
  color: var(--text-dim);
  padding: 9px 14px;
  border-radius: 9px;
  font-family: var(--font-display);
}
.studio-side .s-item.active { background: color-mix(in srgb, var(--accent) 10%, transparent); color: var(--accent); font-weight: 600; }
.studio-main { padding: 24px; }
/* identity bar — mirrors the real dashboard header */
.sd-id { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.sd-id .sd-avatar { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.sd-id-text { display: flex; flex-direction: column; line-height: 1.25; }
.sd-id-text strong { font-family: var(--font-display); font-size: 1rem; }
.sd-id-text span { font-size: 0.8rem; color: var(--text-faint); }
.sd-id-foll { margin-left: auto; text-align: right; }
.sd-foll-num { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; letter-spacing: -0.02em; }
.sd-foll-lbl { font-size: 0.72rem; color: var(--text-faint); }
/* dashboard card grid */
.sd-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 12px; }
.sd-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px 18px;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sd-card-chart { grid-row: span 2; }
.sd-card-top { display: flex; justify-content: space-between; align-items: center; font-size: 0.8rem; color: var(--text-dim); font-family: var(--font-display); }
.sd-range { font-size: 0.68rem; color: var(--accent); border: 1px solid color-mix(in srgb, var(--accent) 30%, transparent); border-radius: 999px; padding: 2px 9px; }
.sd-spark { width: 100%; height: 88px; margin: auto 0; }
.sd-big { font-family: var(--font-display); font-size: 2rem; font-weight: 700; letter-spacing: -0.02em; }
.sd-up { font-size: 0.85rem; color: #5ad19b; font-weight: 600; }
.sd-card-foot { font-size: 0.72rem; color: var(--text-faint); margin-top: auto; }
.sd-post-stats { display: flex; gap: 16px; font-size: 0.82rem; color: var(--text-dim); }
.sd-post-stats b { font-family: var(--font-display); font-size: 1.1rem; color: var(--text); display: block; }
.studio-caption { text-align: center; margin-top: 20px; font-size: 0.88rem; color: var(--text-faint); max-width: 620px; margin-left: auto; margin-right: auto; }

.studio-features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 48px; }
.sf { border: 1px solid var(--line); border-radius: var(--radius); padding: 24px 22px; background: var(--bg-card); }
.sf h4 { font-family: var(--font-display); font-size: 1rem; margin-bottom: 8px; }
.sf p { font-size: 0.88rem; color: var(--text-dim); }

/* ---------- curriculum accordion ---------- */
.acc { border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; background: var(--bg-card); }
.acc-item + .acc-item { border-top: 1px solid var(--line); }
.acc-btn {
  width: 100%;
  background: none;
  border: none;
  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 700;
  text-align: left;
  padding: 26px 30px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  transition: background 0.15s;
}
.acc-btn:hover { background: var(--bg-raised); }
.acc-btn .ph {
  color: var(--accent);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 6px;
}
.acc-btn .chev { transition: transform 0.25s; color: var(--text-faint); flex-shrink: 0; }
.acc-item.open .acc-btn .chev { transform: rotate(180deg); }
.acc-panel { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.acc-panel-inner { padding: 0 30px 28px; color: var(--text-dim); font-size: 0.98rem; }
.acc-panel-inner ul { margin-top: 10px; padding-left: 20px; }
.acc-panel-inner li { margin-bottom: 6px; }

/* ---------- pricing ---------- */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
.price-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px 34px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.price-card.featured {
  border-color: var(--accent);
  box-shadow: 0 0 60px -20px color-mix(in srgb, var(--accent) 25%, transparent);
}
.price-card .badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--accent-ink);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 999px;
  white-space: nowrap;
}
.price-card h3 { margin-bottom: 6px; }
.price-card .who { font-size: 0.88rem; color: var(--text-faint); margin-bottom: 24px; }
.price-line { display: flex; align-items: baseline; gap: 10px; margin-bottom: 4px; flex-wrap: wrap; }
.price-line .amt { font-family: var(--font-display); font-weight: 700; font-size: 2.6rem; letter-spacing: -0.03em; }
.price-line .was { color: var(--text-faint); text-decoration: line-through; font-size: 1.2rem; }
.price-line .per { color: var(--text-faint); font-size: 0.95rem; }
.price-sub { font-size: 0.85rem; color: var(--text-faint); margin-bottom: 26px; }
.price-card ul { list-style: none; margin-bottom: 32px; flex-grow: 1; }
.price-card li { padding: 9px 0; font-size: 0.94rem; color: var(--text-dim); display: flex; gap: 12px; border-top: 1px solid var(--line-soft); }
.price-card li:first-child { border-top: none; }
.price-card li .mark { color: var(--accent); font-weight: 700; flex-shrink: 0; }
.price-card .btn { width: 100%; }

/* ---------- faq ---------- */
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%;
  background: none; border: none;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 600;
  text-align: left;
  padding: 26px 40px 26px 0;
  cursor: pointer;
  position: relative;
}
.faq-q::after {
  content: "+";
  position: absolute; right: 4px; top: 50%;
  transform: translateY(-50%);
  color: var(--accent);
  font-size: 1.5rem;
  font-weight: 400;
  transition: transform 0.25s;
}
.faq-item.open .faq-q::after { transform: translateY(-50%) rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-a-inner { padding: 0 0 26px; color: var(--text-dim); max-width: 700px; }

/* ---------- final cta ---------- */
.final-cta { text-align: center; padding: 120px 0; position: relative; }
.final-cta::before {
  content: "";
  position: absolute; inset: auto 0 -100px 0; height: 400px;
  background: radial-gradient(ellipse 55% 60% at 50% 100%, color-mix(in srgb, var(--accent) 8%, transparent), transparent 70%);
  pointer-events: none;
}
.final-cta h2 { max-width: 760px; margin: 0 auto 20px; }
.final-cta .lead { max-width: 620px; margin: 0 auto 40px; }

/* ---------- footer ---------- */
footer {
  border-top: 1px solid var(--line-soft);
  padding: 56px 0 40px;
  font-size: 0.85rem;
  color: var(--text-faint);
}
.footer-grid { display: flex; justify-content: space-between; gap: 32px; flex-wrap: wrap; margin-bottom: 36px; }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a { color: var(--text-dim); text-decoration: none; }
.footer-links a:hover { color: var(--text); }
.footer-legal { line-height: 1.7; max-width: 900px; }

/* ---------- forms (playbook / engine) ---------- */
.form-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 48px);
}
.field { margin-bottom: 22px; }
.field label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.86rem;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.field .hint { font-size: 0.8rem; color: var(--text-faint); margin-top: 6px; }
.field input, .field textarea, .field select {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.15s;
}
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--accent); }
.field textarea { min-height: 120px; resize: vertical; }

.page-hero { padding: 90px 0 56px; text-align: center; }
.page-hero h1 { font-size: clamp(2rem, 5vw, 3.2rem); max-width: 820px; margin: 0 auto 22px; }
.page-hero .lead { max-width: 660px; margin: 0 auto; }

/* legal pages */
.legal-body { padding: 40px 0 100px; }
.legal-body h2 { font-size: 1.4rem; margin: 44px 0 14px; }
.legal-body p, .legal-body li { color: var(--text-dim); margin-bottom: 14px; font-size: 0.97rem; }
.legal-body ul { padding-left: 22px; }
.legal-updated { color: var(--text-faint); font-size: 0.85rem; }

/* ---------- reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .studio-features { grid-template-columns: repeat(2, 1fr); }
  .price-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .price-card.featured { order: -1; }
  .split { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .studio-body { grid-template-columns: 1fr; }
  .studio-side { flex-direction: row; overflow-x: auto; border-right: none; border-bottom: 1px solid var(--line); }
  .sd-grid { grid-template-columns: 1fr; }
  .sd-card-chart { grid-row: auto; }
  .sd-id-foll { display: none; }
  .nav-links {
    display: none;
    position: absolute;
    top: 68px; left: 0; right: 0;
    background: var(--bg-raised);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    padding: 20px 24px;
    gap: 18px;
    align-items: flex-start;
  }
  .nav-links.open { display: flex; }
  .nav-burger { display: block; }
  section { padding: 68px 0; }
  .hero { padding: 70px 0 56px; }
}

/* ============================================================
   NEW: hero canvas background (cursor-reactive)
   ============================================================ */
.hero { overflow: hidden; }
#hero-fx {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}
.hero-content { position: relative; z-index: 1; }
.h1-accent { color: var(--accent); }

/* ============================================================
   NEW: walkthrough video + slideshow
   ============================================================ */
.vsl {
  margin: 64px auto 0;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 0;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-align: left;
  box-shadow: 0 40px 100px -40px rgba(0, 0, 0, 0.6);
}
.vsl-video {
  position: relative;
  background: var(--bg-raised);
  min-height: 340px;
  border-right: 1px solid var(--line);
}
.vsl-video iframe, .vsl-video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.vsl-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background:
    radial-gradient(ellipse 70% 60% at 50% 40%, color-mix(in srgb, var(--accent) 7%, transparent), transparent 70%),
    var(--bg-raised);
}
.vsl-avatar {
  width: 74px; height: 74px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent);
}
.vsl-play {
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--accent-ink);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
  padding-left: 4px;
}
.vsl-ph-text {
  font-family: var(--font-display);
  font-size: 0.92rem;
  color: var(--text-dim);
  max-width: 260px;
  text-align: center;
}
.vsl-side {
  padding: 32px 30px 26px;
  display: flex;
  flex-direction: column;
}
.vsl-side-head {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}
.vsl-slides { position: relative; flex-grow: 1; min-height: 190px; }
.vsl-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  pointer-events: none;
}
.vsl-slide.active { opacity: 1; transform: none; pointer-events: auto; }
.vsl-slide h4 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}
.vsl-slide p { color: var(--text-dim); font-size: 0.95rem; }
.vsl-dots { display: flex; gap: 8px; margin-top: 20px; }
.vsl-dots button {
  width: 26px; height: 5px;
  border-radius: 999px;
  border: none;
  background: var(--line);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s;
}
.vsl-dots button.active { background: var(--accent); }

@media (max-width: 900px) {
  .vsl { grid-template-columns: 1fr; }
  .vsl-video { min-height: 240px; border-right: none; border-bottom: 1px solid var(--line); }
  .vsl-slides { min-height: 230px; }
}

