/* ============================================================
   LEVERAGED CREATOR — Design System v4
   Corporate / institutional. Dark, authoritative, no info-offer energy.
   Reference: Palantir, Linear, Vercel, serious tech firms.
   ============================================================ */

:root {
  /* Retuned to match the webinar landing page (w/sign-up-ai):
     near-black blue-undertone bg, Apple system type, violet→magenta accent. */
  --bg:         #050608;
  --bg-1:       #0a0c10;
  --bg-2:       #101218;
  --bg-3:       #16181f;
  --surface:    rgba(255,255,255,0.03);
  --surface-2:  rgba(255,255,255,0.05);

  --ink:        #f5f7fa;
  --ink-2:      rgba(245,247,250,0.62);
  --ink-3:      rgba(245,247,250,0.38);
  --ink-4:      rgba(245,247,250,0.24);

  --hair:       rgba(255,255,255,0.08);
  --hair-2:     rgba(255,255,255,0.14);
  --hair-3:     rgba(255,255,255,0.20);

  --accent:        #c084fc;
  --accent-2:      #a78bfa;
  --accent-3:      #c4b5fd;
  --accent-glow:   rgba(167,139,250,0.45);
  --accent-tint:   rgba(167,139,250,0.10);
  --accent-ink:    #ffffff;

  --sans:    -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'SF Pro Display', 'Helvetica Neue', Helvetica, system-ui, sans-serif;
  --display: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Helvetica Neue', Helvetica, system-ui, sans-serif;
  --mono:    'SF Mono', ui-monospace, 'JetBrains Mono', 'Roboto Mono', monospace;

  --grad:      linear-gradient(95deg, #a78bfa 0%, #c084fc 50%, #ec4899 100%);
  --grad-soft: linear-gradient(95deg, #b8a0f0 0%, #d4a8e8 50%, #e8a8c8 100%);
  /* text-only accent: very slightly less pink on the right than --grad */
  --grad-text: linear-gradient(95deg, #a78bfa 0%, #c084fc 52%, #e570a6 100%);

  --max:        1280px;
  --max-tight:  900px;
  --max-narrow: 720px;
  --radius:     12px;
  --radius-lg:  22px;
}

/* ── RESET ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; background: var(--bg); overflow-x: hidden; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  font-feature-settings: 'ss01', 'cv11';
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
::selection { background: rgba(192,132,252,0.30); color: #fff; }
p + p { margin-top: 1.1em; }

/* Keyboard focus — branded, never on mouse */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Faint film grain over the backdrop (sits below content, adds depth) */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.04;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ── AMBIENT BG ────────────────────────────────────────── */
/* Funnel-style atmosphere: soft dual-radial page wash + drifting
   aurora blobs. No grid (matches the landing page). */
.bg-grid {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(167,139,250,0.16), transparent 60%),
    radial-gradient(ellipse 60% 50% at 50% 110%, rgba(236,72,153,0.09), transparent 60%);
}
.bg-glow {
  position: fixed;
  pointer-events: none;
  z-index: 0;
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.5;
  mix-blend-mode: screen;
}
.bg-glow.top {
  width: 620px; height: 620px;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, #a78bfa 0%, rgba(167,139,250,0) 65%);
  animation: drift-a 20s ease-in-out infinite alternate;
}
.bg-glow.bottom {
  width: 560px; height: 560px;
  bottom: -240px; left: 8%;
  background: radial-gradient(circle, #ec4899 0%, rgba(236,72,153,0) 65%);
  animation: drift-b 26s ease-in-out infinite alternate;
}
@keyframes drift-a { from { transform: translate(-50%, 0); } to { transform: translate(-46%, 30px); } }
@keyframes drift-b { from { transform: translate(0, 0); } to { transform: translate(50px, -20px); } }
@media (prefers-reduced-motion: reduce) {
  .bg-glow.top, .bg-glow.bottom { animation: none; }
}

main, footer, nav { position: relative; z-index: 2; }

/* Gradient text utility */
.grad-text {
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* ── LAYOUT ────────────────────────────────────────────── */
.wrap        { max-width: var(--max);        margin: 0 auto; padding: 0 48px; }
.wrap-tight  { max-width: var(--max-tight);  margin: 0 auto; padding: 0 48px; }
.wrap-narrow { max-width: var(--max-narrow); margin: 0 auto; padding: 0 48px; }

.section    { padding: 120px 0; }
.section-sm { padding: 72px 0; }
.section-lg { padding: 180px 0; }

/* ── TYPE ──────────────────────────────────────────────── */
.overline {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.overline-accent { color: var(--accent-2); }

.kicker {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--accent-2);
}

h1, h2, h3, h4, h5 {
  font-family: var(--display);
  font-weight: 600;
  margin: 0;
  color: var(--ink);
  text-wrap: balance;
  line-height: 1.04;
}

.h-display {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(48px, 6.2vw, 88px);
  letter-spacing: -0.035em;
  line-height: 0.98;
}
.h-display em {
  font-style: normal;
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.h-1 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(34px, 4vw, 54px);
  letter-spacing: -0.03em;
  line-height: 1.06;
}
.h-1 em {
  font-style: normal;
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.h-2 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(26px, 2.8vw, 36px);
  letter-spacing: -0.022em;
  line-height: 1.12;
}
.h-3 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 21px;
  letter-spacing: -0.018em;
  line-height: 1.25;
}

.accent {
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.accent-solid { color: var(--accent-2); }
.accent-dim  { color: var(--accent); }

.lead {
  font-size: clamp(16px, 1.2vw, 19px);
  color: var(--ink-2);
  line-height: 1.6;
  text-wrap: pretty;
  margin: 0;
}
.body {
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}
.body-lg {
  color: var(--ink-2);
  font-size: 17px;
  line-height: 1.65;
  margin: 0;
}
.fine {
  font-family: var(--mono);
  font-size: 11.5px;
  color: var(--ink-3);
  letter-spacing: 0.03em;
  line-height: 1.6;
}

/* ── NAV — full-width institutional ──────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(5,6,8,0.45);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid transparent;
  border-image: linear-gradient(90deg, transparent, var(--hair) 50%, transparent) 1;
  transition: background .35s ease, backdrop-filter .35s ease;
}
.nav.scrolled {
  background: rgba(5,6,8,0.82);
  border-image: linear-gradient(90deg, transparent, var(--hair-2) 50%, transparent) 1;
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 48px;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 0;
}
.brand img { filter: drop-shadow(0 4px 14px rgba(167,139,250,0.45)); }
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-right: 48px;
  flex-shrink: 0;
  white-space: nowrap;
}
.nav-links {
  display: flex;
  gap: 0;
  flex: 1;
  list-style: none;
  padding: 0;
  margin: 0;
}
.nav-links a {
  position: relative;
  display: block;
  padding: 0 18px;
  height: 64px;
  line-height: 64px;
  font-size: 14px;
  color: var(--ink-2);
  transition: color .2s;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a.active { color: var(--ink); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  left: 18px; right: 18px;
  bottom: 0;
  height: 2px;
  border-radius: 2px 2px 0 0;
  background: var(--grad);
}
.nav-actions { display: flex; gap: 10px; align-items: center; }
.nav-cta {
  font-size: 13px;
  font-weight: 600;
  color: #0a0a0a;
  background: var(--grad);
  padding: 9px 20px;
  border-radius: 999px;
  letter-spacing: -0.005em;
  font-family: var(--display);
  transition: filter .2s ease, transform .15s ease, box-shadow .2s ease;
  box-shadow: 0 8px 24px -10px rgba(167,139,250,0.65), inset 0 0 0 1px rgba(255,255,255,0.12);
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 12px 30px -10px rgba(167,139,250,0.85), inset 0 0 0 1px rgba(255,255,255,0.18); }
.nav-sub {
  font-size: 14px;
  color: var(--ink-2);
  padding: 8px 12px;
  border-radius: 6px;
  transition: color .2s, background .2s;
}
.nav-sub:hover { color: var(--ink); background: var(--surface); }

/* ── BUTTONS ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 15px 28px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform .22s cubic-bezier(.2,.7,.2,1), box-shadow .22s, background .22s, border-color .22s;
  white-space: nowrap;
  font-family: var(--display);
  letter-spacing: -0.01em;
}
.btn-primary {
  background: var(--grad);
  background-size: 200% 100%;
  background-position: 0% 50%;
  color: #0a0a0a;
  position: relative;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.10) inset,
    0 20px 56px -16px rgba(167,139,250,0.70),
    0 8px 24px -8px rgba(236,72,153,0.45);
  transition: background-position .6s ease, transform .22s, box-shadow .22s;
}
.btn-primary:hover {
  transform: translateY(-1px);
  background-position: 100% 50%;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.16) inset,
    0 26px 64px -12px rgba(167,139,250,0.85),
    0 10px 28px -6px rgba(236,72,153,0.60);
}
.btn-ghost {
  background: rgba(255,255,255,0.04);
  color: var(--ink);
  border-color: var(--hair-2);
  backdrop-filter: blur(12px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.07); border-color: var(--hair-3); transform: translateY(-1px); }
.btn .arrow { transition: transform .2s ease; display: inline-block; }
.btn:hover .arrow { transform: translateX(3px); }

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  color: var(--accent-2);
  font-weight: 500;
  transition: color .2s;
}
.btn-link:hover { color: var(--accent-3); }
.btn-link .arrow { transition: transform .2s ease; }
.btn-link:hover .arrow { transform: translateX(3px); }

/* ── HERO ──────────────────────────────────────────────── */
.hero {
  padding: 100px 0 80px;
  position: relative;
}
.hero .wrap { display: flex; flex-direction: column; align-items: center; text-align: center; }
.hero.left .wrap { align-items: flex-start; text-align: left; }
.hero-eyeline {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}
.hero-eyeline .status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.hero-eyeline .dot {
  width: 5px; height: 5px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 6px #22c55e;
  animation: pulse-green 2.4s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulse-green {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero-eyeline .sep {
  width: 1px; height: 14px;
  background: var(--hair-2);
}
.hero-eyeline .tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 40px;
}
.hero.center .hero-actions { justify-content: center; }

/* ── STAT BAND ─────────────────────────────────────────── */
.stat-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--hair-2);
  border-bottom: 1px solid var(--hair-2);
}
.stat-cell {
  padding: 36px 32px;
  border-left: 1px solid var(--hair);
}
.stat-cell:first-child { border-left: none; }
.stat-cell .val {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(30px, 3vw, 42px);
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--ink);
  margin-bottom: 10px;
}
.stat-cell .val em {
  font-family: var(--mono);
  font-style: normal;
  font-size: 0.45em;
  color: var(--accent-2);
  margin-left: 2px;
  letter-spacing: 0;
  font-weight: 500;
  vertical-align: middle;
}
.stat-cell .lbl {
  font-size: 13px;
  color: var(--ink-3);
  line-height: 1.4;
}

/* ── SECTION HEAD ──────────────────────────────────────── */
.section-head {
  margin-bottom: 64px;
}
.section-head .kicker { margin-bottom: 16px; display: block; }
.section-head h2 { max-width: 22ch; }
.section-head .lead { margin-top: 20px; max-width: 52ch; }
.section-head.center { text-align: center; }
.section-head.center h2 { margin-left: auto; margin-right: auto; }
.section-head.center .lead { margin-left: auto; margin-right: auto; }

/* ── CARDS ─────────────────────────────────────────────── */
.card {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0)) ,
    var(--bg-1);
  border: 1px solid var(--hair);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: border-color .25s ease, transform .25s cubic-bezier(.2,.7,.2,1), box-shadow .25s ease;
}
.card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: var(--grad);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity .3s ease;
  pointer-events: none;
}
.card:hover {
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 24px 50px -30px rgba(167,139,250,0.55);
}
.card:hover::before { opacity: 0.9; }
.card-tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 20px;
  display: block;
}

/* ── GRID ──────────────────────────────────────────────── */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }

/* Split: left column narrower headline, right is content */
.split {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}
.split-even {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

/* ── DIVIDER ───────────────────────────────────────────── */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--hair-2) 50%, transparent);
  border: none;
  margin: 0;
}

/* ── LOGO BAND ─────────────────────────────────────────── */
.logo-band {
  padding: 56px 0;
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
}
.logo-band .label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-4);
  margin-bottom: 36px;
  text-align: center;
}
.logo-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.logo-item {
  padding: 12px 32px;
  font-family: var(--display);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.01em;
  color: var(--ink-4);
  border-right: 1px solid var(--hair);
  transition: color .2s;
  white-space: nowrap;
}
.logo-item:last-child { border-right: none; }

/* ── PULL QUOTE ───────────────────────────────────────── */
.pull-quote {
  border-top: 1px solid var(--hair-2);
  border-bottom: 1px solid var(--hair-2);
  padding: 96px 0;
  text-align: center;
  position: relative;
}
.pull-quote::before {
  content: '"';
  position: absolute;
  top: 40px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--display);
  font-size: 80px;
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
  opacity: 0.5;
}
.pull-quote .pq-text {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(22px, 2.6vw, 32px);
  letter-spacing: -0.018em;
  line-height: 1.35;
  margin: 40px 0 36px;
  text-wrap: balance;
  color: var(--ink);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.pull-quote .pq-text .accent { color: var(--accent-2); }
.pull-quote .pq-author {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.pull-quote .pq-author strong { color: var(--ink-2); font-weight: 500; }

/* ── COMPARE TABLE ─────────────────────────────────────── */
.compare {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  border: 1px solid var(--hair);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-1);
}
.compare > * {
  padding: 20px 28px;
  border-bottom: 1px solid var(--hair);
  border-right: 1px solid var(--hair);
  font-size: 14px;
}
.compare > *:nth-child(3n) { border-right: none; }
.compare > *:nth-last-child(-n+3) { border-bottom: none; }
.compare .head {
  font-family: var(--display);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.01em;
  color: var(--ink-3);
  background: var(--bg-2);
}
.compare .head.us { background: rgba(167,139,250,0.10); color: var(--accent-2); }
.compare .row-label {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.08em;
  color: var(--ink-3);
  display: flex;
  align-items: center;
}
.compare .val { color: var(--ink-2); display: flex; align-items: center; }
.compare .val.us { color: var(--accent-2); font-weight: 500; }
@media (max-width: 720px) {
  .compare { grid-template-columns: 1fr; }
  .compare > * { border-right: none; }
}

/* ── FAQ ───────────────────────────────────────────────── */
.faq-list { border-top: 1px solid var(--hair); }
.faq-item {
  border-bottom: 1px solid var(--hair);
  padding: 28px 0;
  cursor: pointer;
}
.faq-item .q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-family: var(--display);
  font-weight: 500;
  font-size: 18px;
  letter-spacing: -0.012em;
  color: var(--ink);
  line-height: 1.3;
}
.faq-item .plus {
  flex-shrink: 0;
  width: 26px; height: 26px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--hair-2);
  color: var(--ink-3);
  font-size: 15px;
  transition: all .25s ease;
}
.faq-item:hover .plus { border-color: var(--hair-3); color: var(--ink-2); }
.faq-item.open .plus {
  transform: rotate(45deg);
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.faq-item .a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
  color: var(--ink-2);
  line-height: 1.7;
  font-size: 15px;
  max-width: 760px;
}
.faq-item.open .a { max-height: 500px; margin-top: 18px; }
.faq-item .a a { color: var(--accent-2); }

/* ── MEMBER TABLE ──────────────────────────────────────── */
.member-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 0;
  padding: 24px 0;
  border-top: 1px solid var(--hair);
  align-items: center;
}
.member-row:last-child { border-bottom: 1px solid var(--hair); }
.member-row .who {
  font-family: var(--display);
  font-weight: 500;
  font-size: 17px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.member-row .who .sub {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 5px;
  font-weight: 400;
}
.member-row .cell-lbl {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.member-row .cell-val {
  font-family: var(--display);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: var(--accent-2);
}
@media (max-width: 880px) {
  .member-row { grid-template-columns: 1fr; gap: 12px; }
}

/* ── POSTS ─────────────────────────────────────────────── */
.posts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 880px) { .posts { grid-template-columns: 1fr; } }
.post-card {
  display: flex; flex-direction: column;
  background: var(--bg-1);
  border: 1px solid var(--hair);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color .25s, transform .25s cubic-bezier(.2,.7,.2,1), box-shadow .25s;
}
.post-card:hover {
  border-color: var(--hair-2);
  transform: translateY(-3px);
  box-shadow: 0 24px 50px -30px rgba(167,139,250,0.5);
}
.post-cover {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--bg-2) 0%, var(--bg-3) 100%);
  position: relative;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.post-cover .sigil {
  font-family: var(--display);
  font-weight: 700;
  font-size: 60px;
  color: var(--accent);
  letter-spacing: -0.04em;
  opacity: 0.3;
}
.post-cover .tag {
  position: absolute;
  top: 14px; left: 14px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-2);
  background: rgba(8,8,10,0.8);
  padding: 4px 8px;
  border-radius: 4px;
}
.post-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.post-body h3 {
  font-family: var(--display);
  font-weight: 500;
  font-size: 17px;
  letter-spacing: -0.012em;
  line-height: 1.3;
  margin: 0 0 10px;
}
.post-body p { flex: 1; color: var(--ink-3); font-size: 14px; line-height: 1.6; }
.post-meta {
  display: flex; gap: 14px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-4);
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--hair);
}

/* ── ROLES ─────────────────────────────────────────────── */
.role {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 32px;
  align-items: center;
  padding: 28px 0;
  border-top: 1px solid var(--hair);
}
.role:last-child { border-bottom: 1px solid var(--hair); }
.role .who {
  font-family: var(--display);
  font-weight: 500;
  font-size: 20px;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.role .who .sub {
  display: block;
  font-family: var(--mono);
  font-size: 11.5px;
  color: var(--ink-3);
  margin-top: 5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 400;
}
.role .meta {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.role-cta {
  font-size: 13px;
  font-weight: 500;
  color: var(--accent-2);
  display: inline-flex;
  gap: 6px;
  align-items: center;
}
.role-cta .arrow { transition: transform .2s; }
.role-cta:hover .arrow { transform: translateX(3px); }
@media (max-width: 720px) { .role { grid-template-columns: 1fr; gap: 10px; } }

/* ── ROADMAP ───────────────────────────────────────────── */
.phase {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 56px;
  padding: 56px 0;
  border-top: 1px solid var(--hair);
  align-items: start;
}
.phase:last-child { border-bottom: 1px solid var(--hair); }
.phase-label { position: sticky; top: 80px; }
.phase-label .timeframe {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 8px;
  display: block;
}
.phase-label .mrr {
  font-family: var(--display);
  font-weight: 600;
  font-size: 26px;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 6px;
}
.phase-label .mrr-label {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.phase-content h3 {
  font-family: var(--display);
  font-weight: 500;
  font-size: 20px;
  letter-spacing: -0.014em;
  margin: 0 0 14px;
}
.phase-content p { font-size: 15px; color: var(--ink-2); line-height: 1.7; margin: 0 0 28px; }
.phase-tasks { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.task {
  background: var(--bg-1);
  border: 1px solid var(--hair);
  border-radius: 8px;
  padding: 14px 16px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.task .check {
  width: 17px; height: 17px;
  border-radius: 4px;
  background: var(--accent-tint);
  border: 1px solid rgba(167,139,250,0.28);
  flex-shrink: 0;
  margin-top: 1px;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; color: var(--accent-2);
}
.task .text { font-size: 13px; color: var(--ink-2); line-height: 1.5; }
.task .text strong { color: var(--ink); font-weight: 500; display: block; margin-bottom: 2px; }
@media (max-width: 880px) {
  .phase { grid-template-columns: 1fr; gap: 20px; padding: 40px 0; }
  .phase-label { position: static; }
  .phase-tasks { grid-template-columns: 1fr; }
}

/* ── FOOTER ────────────────────────────────────────────── */
footer {
  padding: 80px 0 32px;
  border-top: 1px solid var(--hair);
  background: var(--bg-1);
  position: relative;
  z-index: 2;
}
.footer-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 2.4fr 1fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 56px;
}
.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 18px;
}
.footer-brand p {
  font-size: 13.5px;
  max-width: 300px;
  color: var(--ink-3);
  line-height: 1.65;
  margin: 0;
}
.footer-col h5 {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-4);
  margin: 0 0 18px;
  font-weight: 500;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 11px; }
.footer-col a { color: var(--ink-3); font-size: 13.5px; transition: color .2s; }
.footer-col a:hover { color: var(--ink); }
.footer-bottom {
  max-width: var(--max);
  margin: 0 auto;
  padding: 24px 48px 0;
  border-top: 1px solid var(--hair);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--ink-4);
  text-transform: uppercase;
}

/* ── REVEAL ANIMATION ──────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity .8s cubic-bezier(.2,.8,.2,1),
    transform .8s cubic-bezier(.2,.8,.2,1);
  transition-delay: var(--d, 0ms);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: translateY(0); }
/* Fallback: if JS hasn't fired within 1s, show everything */
@keyframes reveal-fallback {
  to { opacity: 1; transform: translateY(0); }
}
.reveal { animation: reveal-fallback 0s 1.2s forwards; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; animation: none; }
}

/* ── HELPERS ──────────────────────────────────────────── */
.center { text-align: center; }
.mt-sm  { margin-top: 16px; }
.mt-md  { margin-top: 28px; }
.mt-lg  { margin-top: 56px; }
.mt-xl  { margin-top: 96px; }

/* ── RESPONSIVE ────────────────────────────────────────── */
@media (max-width: 1024px) {
  .wrap, .wrap-tight, .wrap-narrow { padding: 0 32px; }
  .nav-inner { padding: 0 32px; }
  .footer-grid { padding: 0 32px; padding-bottom: 56px; }
  .footer-bottom { padding: 24px 32px 0; }
}
@media (max-width: 820px) {
  .nav-links { display: none; }
  .nav-sub { display: none; }
}
@media (max-width: 880px) {
  .section    { padding: 80px 0; }
  .section-lg { padding: 120px 0; }
  .grid-3     { grid-template-columns: 1fr; }
  .grid-2     { grid-template-columns: 1fr; }
  .grid-4     { grid-template-columns: 1fr 1fr; }
  .split, .split-even { grid-template-columns: 1fr; gap: 32px; }
  .stat-band  { grid-template-columns: 1fr 1fr; }
  .stat-cell:nth-child(odd) { border-left: none; }
  .stat-cell:nth-child(n+3) { border-top: 1px solid var(--hair); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 12px; align-items: flex-start; }
  .posts      { grid-template-columns: 1fr; }
  .logo-row   { gap: 0; }
  .logo-item  { padding: 10px 20px; }
}
@media (max-width: 560px) {
  .wrap, .wrap-tight, .wrap-narrow,
  .nav-inner, .footer-grid, .footer-bottom { padding-left: 20px; padding-right: 20px; }
  .h-display  { font-size: clamp(38px, 10vw, 56px); }
  .grid-4     { grid-template-columns: 1fr; }
  .logo-item  { font-size: 13px; padding: 8px 14px; }
}

/* ============================================================
   Trustpilot review cards + student name labels (shared)
   ============================================================ */
.tp-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.tp-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0)), var(--bg-1);
  border: 1px solid var(--hair); border-radius: 16px; padding: 22px 22px 20px;
  transition: border-color .25s ease, transform .25s cubic-bezier(.2,.7,.2,1);
}
.tp-card:hover { border-color: var(--hair-2); transform: translateY(-2px); }
.tp-card.fixed { height: 340px; display: flex; flex-direction: column; }
.tp-card.fixed .tp-body { flex: 1 1 auto; overflow: hidden; display: -webkit-box; -webkit-line-clamp: 5; -webkit-box-orient: vertical; }
.tp-card.fixed .tp-tag { margin-top: 14px; align-self: flex-start; }
.tp-head { display: flex; align-items: center; gap: 11px; margin-bottom: 14px; }
.tp-av { width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-family: var(--display); font-weight: 600; font-size: 13px; color: #fff; }
.tp-id { display: flex; flex-direction: column; min-width: 0; }
.tp-name { font-size: 14px; font-weight: 600; color: var(--ink); line-height: 1.2; }
.tp-meta { font-size: 11.5px; color: var(--ink-3); margin-top: 2px; }
.tp-date { margin-left: auto; font-size: 11.5px; color: var(--ink-3); white-space: nowrap; align-self: flex-start; }
.tp-stars { display: inline-flex; gap: 3px; margin-bottom: 12px; }
.tp-star { width: 18px; height: 18px; border-radius: 3px; background: #00b67a url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M8 2.4l1.42 3.07 3.38.34-2.55 2.27.74 3.32L8 9.78l-3 1.62.74-3.32L3.2 5.81l3.38-.34z' fill='white'/%3E%3C/svg%3E") center/12px no-repeat; }
.tp-title { font-size: 15px; font-weight: 600; color: var(--ink); margin-bottom: 8px; letter-spacing: -0.01em; line-height: 1.3; }
.tp-body { font-size: 13.5px; line-height: 1.62; color: var(--ink-2); }
.tp-tag { display: inline-block; margin-top: 14px; font-size: 10.5px; letter-spacing: 0.04em; color: var(--ink-3); background: var(--surface); border: 1px solid var(--hair); padding: 4px 9px; border-radius: 6px; }
/* transparent variant (home): no card, fades into the background */
.tp-card.bare { background: none; border: none; padding: 4px 4px 4px 0; }
.tp-card.bare:hover { transform: none; border-color: transparent; }
@media (max-width: 720px) { .tp-row { grid-template-columns: 1fr; } .tp-card.fixed { height: auto; } .tp-card.fixed .tp-body { -webkit-line-clamp: unset; } }

/* Student name label (gradient display) */
.ssc-name { font-family: var(--display); font-weight: 700; font-size: clamp(30px, 4vw, 52px); letter-spacing: -0.035em; line-height: 1; text-align: center; margin-bottom: 22px;
  background: var(--grad-text); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }

/* ============================================================
   Legal pages (privacy / terms / earnings disclosure)
   ============================================================ */
.legal-head { text-align: center; padding: clamp(96px,12vh,140px) 0 0; }
.legal-head h1 { margin: 0 auto; max-width: 20ch; }
.legal-eff { font-family: var(--mono); font-size: 12px; letter-spacing: 0.06em; color: var(--ink-3); margin-top: 16px; }
.legal { max-width: 760px; margin: 0 auto; padding: 44px 32px 56px; }
.legal h2 { font-family: var(--display); font-weight: 600; font-size: 14px; letter-spacing: 0.06em; color: var(--accent-2); text-transform: uppercase; margin: 42px 0 14px; }
.legal h2:first-child { margin-top: 0; }
.legal h3 { font-size: 16px; font-weight: 600; color: var(--ink); margin: 24px 0 10px; }
.legal p { font-size: 14.5px; line-height: 1.75; color: var(--ink-2); margin: 0 0 16px; }
.legal p strong { color: var(--ink); font-weight: 600; }
.legal a { color: var(--accent-2); }
@media (max-width: 640px) { .legal { padding: 32px 20px; } }

/* ============================================================
   Mobile hamburger menu (replaces the brand logo on small screens)
   ============================================================ */
.nav-burger { display: none; align-items: center; justify-content: center; flex-direction: column; gap: 5px; width: 42px; height: 42px; border-radius: 10px; margin-right: auto; }
.nav-burger span { display: block; width: 20px; height: 2px; border-radius: 2px; background: var(--ink); transition: transform .3s ease, opacity .25s ease; }
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.navmenu { position: fixed; inset: 0; z-index: 150; display: flex; align-items: center; justify-content: center; background: rgba(5,6,8,0.94); backdrop-filter: blur(16px); opacity: 0; visibility: hidden; transition: opacity .3s ease, visibility .3s ease; }
.navmenu.open { opacity: 1; visibility: visible; }
.navmenu-inner { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.navmenu-inner a { font-family: var(--display); font-weight: 600; font-size: 26px; letter-spacing: -0.025em; color: var(--ink-2); padding: 12px 16px; transition: color .2s; }
.navmenu-inner a:hover, .navmenu-inner a.active { color: var(--ink); }
.navmenu-cta { margin-top: 20px; color: #0a0a0a !important; background: var(--grad); border-radius: 999px; padding: 14px 30px !important; font-size: 17px !important; box-shadow: 0 16px 40px -12px rgba(167,139,250,0.7); }
@media (max-width: 820px) {
  .nav-burger { display: flex; }
  .nav .brand { display: none; }
}

/* Mobile: pull page headers up + smaller (success/legal/roadmap match home) */
@media (max-width: 760px) {
  .legal-head { padding-top: 30px; }
  .legal-head h1 { font-size: clamp(26px, 7vw, 34px); }
}
