:root {
  --blue-950: #06102a;
  --blue-900: #0b1d4e;
  --blue-800: #123178;
  --blue-700: #1740a0;
  --blue-600: #1d50ca;
  --blue-500: #2563eb;
  --blue-400: #4f83f1;
  --blue-300: #93b4f8;
  --blue-200: #c7d9fc;
  --blue-100: #e8f0fe;
  --blue-50:  #f0f5ff;
  --white:    #ffffff;
  --off:      #f7f9ff;
  --ink:      #0d1526;
  --ink-2:    #2c3e5c;
  --ink-3:    #5a718c;
  --ink-4:    #8da3bc;
  --border:   #dce6f5;
  --border-s: #edf2fb;

  --f-display: 'Playfair Display', Georgia, serif;
  --f-sans:    'Inter', system-ui, sans-serif;
  --f-mono:    'JetBrains Mono', monospace;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--f-sans); background: var(--white); color: var(--ink); -webkit-font-smoothing: antialiased; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }

/* ── NAV ───────────────────────────────── */
body > nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-row {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 4rem;
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}

.logo-img {
  width: 2rem;
  height: 2rem;
  border-radius: 8px;
  background: #fff;
  object-fit: contain;
  flex-shrink: 0;
}

.logo-name {
  font-family: var(--f-sans);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.05rem;
  flex: 1;
}

.nav-links a {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--ink-2);
  padding: 0.38rem 0.65rem;
  border-radius: 6px;
  transition: background 0.14s, color 0.14s;
}

.nav-links a:hover { background: var(--blue-50); color: var(--blue-600); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-shrink: 0;
}

.nav-avatar {
  display: inline-flex;
  width: 2.05rem;
  height: 2.05rem;
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--white);
  transition: border-color 0.16s, transform 0.16s;
}

.nav-avatar:hover {
  border-color: var(--blue-300);
  transform: translateY(-1px);
}

.nav-avatar-core {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}

.nav-avatar-fallback {
  position: absolute;
  inset: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--blue-500), var(--blue-700));
  color: #fff;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.nav-avatar img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── BUTTONS ───────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--f-sans);
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 7px;
  padding: 0.5rem 0.95rem;
  border: 1px solid transparent;
  transition: all 0.16s;
  white-space: nowrap;
  cursor: pointer;
  line-height: 1;
}

.btn-ghost { border-color: var(--border); color: var(--ink-2); }
.btn-ghost:hover { background: var(--blue-50); border-color: var(--blue-200); color: var(--blue-600); }

.btn-blue { background: var(--blue-600); color: #fff; border-color: var(--blue-600); }
.btn-blue:hover { background: var(--blue-700); box-shadow: 0 4px 14px rgba(29,80,202,0.35); }

.btn-white { background: #fff; color: var(--blue-700); border-color: rgba(255,255,255,0.3); }
.btn-white:hover { background: var(--blue-50); }

.btn-outline-white { border-color: rgba(255,255,255,0.25); color: rgba(255,255,255,0.8); }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); color: #fff; }

.btn-lg { font-size: 0.88rem; padding: 0.65rem 1.25rem; border-radius: 8px; }
.btn-xl { font-size: 0.95rem; padding: 0.78rem 1.5rem; border-radius: 9px; }

/* ── HERO ───────────────────────────────── */
.hero-wrap {
  background: linear-gradient(160deg, var(--blue-950) 0%, var(--blue-900) 55%, var(--blue-800) 100%);
  position: relative;
  overflow: hidden;
}

/* grid lines bg */
.hero-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

/* blue radial glow */
.hero-wrap::after {
  content: '';
  position: absolute;
  top: -10rem;
  left: 50%;
  transform: translateX(-50%);
  width: 80rem;
  height: 40rem;
  background: radial-gradient(ellipse, rgba(59,130,246,0.18) 0%, transparent 65%);
  pointer-events: none;
}

.hero {
  max-width: 1240px;
  margin: 0 auto;
  padding: 4rem 2rem 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: end;
  position: relative;
  z-index: 1;
}

.hero-left { padding-bottom: 4rem; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--f-mono);
  font-size: 0.66rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--blue-300);
  margin-bottom: 1.3rem;
}

.hero-eyebrow span {
  display: block;
  width: 1.5rem;
  height: 1.5px;
  background: var(--blue-400);
}

.hero-h1 {
  font-family: var(--f-display);
  font-size: clamp(2.8rem, 5.5vw, 4.8rem);
  font-weight: 900;
  line-height: 0.97;
  letter-spacing: -0.03em;
  color: #fff;
}

.hero-h1 em {
  font-style: italic;
  color: var(--blue-300);
}

.hero-h1 .dim {
  color: rgba(255,255,255,0.35);
}

.hero-sub {
  margin-top: 1.2rem;
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.6);
  max-width: 46ch;
}

.hero-ctas {
  margin-top: 1.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* proof row */
.hero-proof {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  gap: 2rem;
}

.pstat strong {
  display: block;
  font-family: var(--f-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.025em;
  line-height: 1;
}

.pstat span {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.4);
  margin-top: 3px;
}

/* ── HERO RIGHT: platform preview ───────── */
.hero-right {
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: flex-end;
}

.platform-preview {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-bottom: none;
  border-radius: 16px 16px 0 0;
  padding: 1.2rem;
  backdrop-filter: blur(6px);
}

/* browser chrome */
.browser-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.browser-dots {
  display: flex;
  gap: 5px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.dot-r { background: #ff5f57; }
.dot-y { background: #febc2e; }
.dot-g { background: #28c840; }

.browser-url {
  flex: 1;
  height: 1.6rem;
  background: rgba(255,255,255,0.07);
  border-radius: 6px;
  display: flex;
  align-items: center;
  padding: 0 0.65rem;
  font-family: var(--f-mono);
  font-size: 0.65rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.02em;
}

/* mini ui inside preview */
.preview-search {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 0.6rem 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.preview-search-icon {
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.25);
  flex-shrink: 0;
}

.preview-search-text {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.35);
  font-family: var(--f-mono);
}

.preview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.preview-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 0.7rem;
}

.preview-card-tag {
  font-size: 0.58rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--blue-300);
  margin-bottom: 0.3rem;
}

.preview-card-title {
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  line-height: 1.35;
  margin-bottom: 0.25rem;
}

.preview-card-sub {
  font-size: 0.62rem;
  color: rgba(255,255,255,0.35);
}

.preview-bar {
  height: 3px;
  border-radius: 99px;
  margin-top: 0.55rem;
}

.preview-bar.full { background: var(--blue-400); width: 100%; }
.preview-bar.part { background: rgba(255,255,255,0.15); width: 100%; }
.preview-bar.part::before {
  content: '';
  display: block;
  height: 100%;
  border-radius: 99px;
  background: var(--blue-400);
}
.w-70::before { width: 70%; }
.w-45::before { width: 45%; }
.w-85::before { width: 85%; }

.preview-wide {
  grid-column: span 2;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 0.7rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.preview-wide-icon {
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 6px;
  background: rgba(37,99,235,0.3);
  border: 1px solid rgba(37,99,235,0.5);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.preview-wide-icon svg { width: 0.9rem; height: 0.9rem; }

.preview-wide-title {
  font-size: 0.73rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

.preview-wide-sub {
  font-size: 0.62rem;
  color: rgba(255,255,255,0.35);
  margin-top: 1px;
}

.preview-badge {
  margin-left: auto;
  background: rgba(37,99,235,0.25);
  border: 1px solid rgba(37,99,235,0.4);
  border-radius: 999px;
  padding: 0.18rem 0.5rem;
  font-size: 0.58rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--blue-300);
  flex-shrink: 0;
}

/* ── SECTION SHARED ───────────────────────────────── */
.section {
  max-width: 1240px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.section-eyebrow {
  font-family: var(--f-mono);
  font-size: 0.67rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--blue-500);
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.section-eyebrow::before {
  content: '';
  display: block;
  width: 1rem;
  height: 1.5px;
  background: var(--blue-400);
}

.section-h {
  font-family: var(--f-display);
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--ink);
}

.section-h em { font-style: italic; color: var(--blue-600); }

.section-p {
  margin-top: 0.6rem;
  font-size: 0.9rem;
  color: var(--ink-3);
  line-height: 1.65;
  max-width: 52ch;
}

.section-head-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

/* ── TICKER ───────────────────────────────── */
.ticker-wrap {
  background: var(--blue-50);
  border-bottom: 1px solid var(--blue-100);
  overflow: hidden;
  height: 2.5rem;
  display: flex;
  align-items: center;
}

.ticker-track {
  display: flex;
  animation: ticker 28s linear infinite;
  white-space: nowrap;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0 2.2rem;
  font-family: var(--f-mono);
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--blue-700);
  letter-spacing: 0.02em;
}

.ticker-sep {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--blue-400);
  flex-shrink: 0;
}

@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── BENTO ───────────────────────────────── */
.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 0.7rem;
}

.b { grid-column: span 4; }
.b-3 { grid-column: span 3; }
.b-4 { grid-column: span 4; }
.b-5 { grid-column: span 5; }
.b-6 { grid-column: span 6; }
.b-7 { grid-column: span 7; }
.b-8 { grid-column: span 8; }
.b-9 { grid-column: span 9; }
.b-12 { grid-column: span 12; }

.cell {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.4rem;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}

.cell:hover { box-shadow: 0 8px 30px rgba(29,80,202,0.1); transform: translateY(-2px); }

.cell.bg-blue { background: var(--blue-600); border-color: transparent; }
.cell.bg-deep { background: var(--blue-950); border-color: transparent; }
.cell.bg-soft { background: var(--blue-50); border-color: var(--blue-100); }
.cell.bg-mid  { background: var(--blue-800); border-color: transparent; }

.cell-tag {
  font-family: var(--f-mono);
  font-size: 0.63rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-3);
  margin-bottom: 0.6rem;
  display: block;
}

.cell.bg-blue .cell-tag,
.cell.bg-deep .cell-tag,
.cell.bg-mid  .cell-tag { color: rgba(255,255,255,0.45); }

.cell-num {
  font-family: var(--f-display);
  font-size: 3.8rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--ink);
}

.cell.bg-blue .cell-num,
.cell.bg-deep .cell-num,
.cell.bg-mid  .cell-num { color: #fff; }
.cell.bg-soft .cell-num { color: var(--blue-600); }

.cell-num-label {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--ink-3);
  margin-top: 0.2rem;
}

.cell.bg-blue .cell-num-label,
.cell.bg-deep .cell-num-label,
.cell.bg-mid  .cell-num-label { color: rgba(255,255,255,0.45); }

.cell-title {
  font-family: var(--f-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 0.35rem;
  letter-spacing: -0.01em;
}

.cell.bg-blue .cell-title,
.cell.bg-deep .cell-title,
.cell.bg-mid  .cell-title { color: #fff; }

.cell-body {
  font-size: 0.78rem;
  color: var(--ink-3);
  line-height: 1.55;
}

.cell.bg-blue .cell-body,
.cell.bg-deep .cell-body,
.cell.bg-mid  .cell-body { color: rgba(255,255,255,0.5); }

.cell-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--blue-600);
  margin-top: 0.7rem;
  transition: gap 0.15s;
}

.cell-link:hover { gap: 0.4rem; }

.cell.bg-blue .cell-link,
.cell.bg-deep .cell-link,
.cell.bg-mid  .cell-link { color: var(--blue-200); }

/* horizontal cell */
.cell.horiz {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.horiz-left { flex: 1; }

/* big stat horiz */
.big-stat-horiz {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.big-stat-horiz strong {
  font-family: var(--f-display);
  font-size: 3.5rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  color: #fff;
}

.big-stat-horiz span {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.45);
}

/* decorative bar chart inside cell */
.mini-chart {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 2.5rem;
  margin-top: 0.8rem;
}

.bar {
  flex: 1;
  border-radius: 3px 3px 0 0;
  background: rgba(255,255,255,0.15);
}

.bar.active { background: rgba(255,255,255,0.7); }

/* ── PERSONAS ───────────────────────────────── */
.persona-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
  margin-top: 2rem;
}

.persona {
  border-radius: 18px;
  padding: 2.2rem;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.persona.students {
  background: var(--off);
}

.persona.committees {
  background: var(--blue-950);
  border-color: transparent;
}

/* large number watermark */
.persona::before {
  content: attr(data-mark);
  position: absolute;
  right: -1rem;
  bottom: -2.5rem;
  font-family: var(--f-display);
  font-size: 11rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.05em;
  pointer-events: none;
}

.persona.students::before { color: rgba(29,80,202,0.05); }
.persona.committees::before { color: rgba(255,255,255,0.04); }

.persona-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border-radius: 999px;
  padding: 0.28rem 0.65rem;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 1.1rem;
}

.badge-blue { background: var(--blue-100); color: var(--blue-700); }
.badge-light { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.7); }

.persona h3 {
  font-family: var(--f-display);
  font-size: 1.65rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 0.6rem;
}

.persona.committees h3 { color: #fff; }

.persona > p {
  font-size: 0.85rem;
  color: var(--ink-3);
  line-height: 1.65;
  margin-bottom: 1.2rem;
  max-width: 40ch;
}

.persona.committees > p { color: rgba(255,255,255,0.5); }

.feat-list {
  list-style: none;
  display: grid;
  gap: 0.45rem;
  margin-bottom: 1.6rem;
}

.feat-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.83rem;
  color: var(--ink-2);
}

.persona.committees .feat-list li { color: rgba(255,255,255,0.6); }

.feat-list li::before {
  content: '';
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--blue-500);
  margin-top: 0.52rem;
  flex-shrink: 0;
}

.persona.committees .feat-list li::before { background: var(--blue-300); }

/* ── COVERAGE ───────────────────────────────── */
.coverage-band {
  background: var(--blue-50);
  border-top: 1px solid var(--blue-100);
  border-bottom: 1px solid var(--blue-100);
}

.coverage-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 3.5rem 2rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
}

.stream-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 1rem;
}

.stag {
  border-radius: 7px;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--ink-2);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.32rem 0.7rem;
  transition: all 0.15s;
}

.stag:hover { border-color: var(--blue-400); color: var(--blue-600); background: var(--blue-50); }

.cov-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  background: var(--white);
  flex-shrink: 0;
  min-width: 380px;
}

.cov-stat {
  padding: 1.4rem 1.5rem;
  border-right: 1px solid var(--border);
}

.cov-stat:last-child { border-right: none; }

.cov-stat strong {
  display: block;
  font-family: var(--f-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--blue-700);
  letter-spacing: -0.025em;
  line-height: 1;
}

.cov-stat span {
  display: block;
  font-size: 0.67rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--ink-4);
  margin-top: 4px;
}

/* ── HOW ───────────────────────────────── */
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem;
  margin-top: 2rem;
}

.how-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.5rem;
  transition: box-shadow 0.2s, transform 0.2s;
  position: relative;
}

.how-card:hover { box-shadow: 0 6px 24px rgba(29,80,202,0.1); transform: translateY(-2px); }

.how-n {
  font-family: var(--f-display);
  font-size: 5rem;
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 0.9;
  color: var(--blue-100);
  position: absolute;
  top: 0.6rem;
  right: 1rem;
  pointer-events: none;
}

.how-card h4 {
  font-family: var(--f-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-bottom: 0.45rem;
  position: relative;
}

.how-card p {
  font-size: 0.81rem;
  color: var(--ink-3);
  line-height: 1.6;
  position: relative;
}

/* ── CTA FINAL ───────────────────────────────── */
.cta-section {
  background: linear-gradient(140deg, var(--blue-900) 0%, var(--blue-700) 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}

.cta-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 4rem 2rem;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 3rem;
  position: relative;
  z-index: 1;
}

/* large serif watermark */
.cta-section::after {
  content: 'MU';
  position: absolute;
  right: 2rem;
  bottom: -2rem;
  font-family: var(--f-display);
  font-size: 16rem;
  font-weight: 900;
  font-style: italic;
  color: rgba(255,255,255,0.03);
  line-height: 1;
  pointer-events: none;
}

.cta-inner h2 {
  font-family: var(--f-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 0.65rem;
}

.cta-inner h2 em { font-style: italic; color: var(--blue-200); }

.cta-inner p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
  max-width: 48ch;
}

.cta-btns {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  flex-shrink: 0;
  min-width: 180px;
}

/* ── FOOTER ───────────────────────────────── */
.footer-wrap {
  background: var(--off);
  border-top: 1px solid var(--border);
}

.footer {
  max-width: 1240px;
  margin: 0 auto;
  padding: 3rem 2rem 2rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.f-brand h3 {
  font-family: var(--f-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.015em;
  margin-bottom: 0.4rem;
}

.f-brand p {
  font-size: 0.79rem;
  color: var(--ink-3);
  line-height: 1.65;
  max-width: 28ch;
  margin-bottom: 0.9rem;
}

.f-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.f-chip {
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0.22rem 0.52rem;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--ink-2);
  background: var(--white);
  transition: all 0.14s;
}

.f-chip:hover { border-color: var(--blue-300); color: var(--blue-600); }

.f-col h4 {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink);
  margin-bottom: 0.75rem;
}

.f-col ul { list-style: none; display: grid; gap: 0.45rem; }

.f-col a {
  font-size: 0.8rem;
  color: var(--ink-3);
  transition: color 0.14s;
}

.f-col a:hover { color: var(--blue-600); }

.footer-bot {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.74rem;
  color: var(--ink-3);
}

.footer-bot a { color: var(--ink-2); font-weight: 600; }
.footer-bot a:hover { color: var(--blue-600); }

.f-bot-links { display: flex; flex-wrap: wrap; gap: 0.2rem 0.9rem; }

/* ── SCROLL REVEAL ───────────────────────────────── */
.sr { opacity: 0; transform: translateY(24px); transition: opacity 0.55s cubic-bezier(.16,1,.3,1), transform 0.55s cubic-bezier(.16,1,.3,1); }
.sr.in { opacity: 1; transform: none; }
.d1 { transition-delay: 0.07s; }
.d2 { transition-delay: 0.14s; }
.d3 { transition-delay: 0.21s; }

/* ── RESPONSIVE ───────────────────────────────── */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .bento .b-7, .bento .b-8, .bento .b-9 { grid-column: span 12; }
  .bento .b-5, .bento .b-4, .bento .b-3 { grid-column: span 6; }
  .cta-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .cta-btns { flex-direction: row; flex-wrap: wrap; }
  .coverage-inner { grid-template-columns: 1fr; gap: 2rem; }
  .cov-stats { min-width: auto; width: 100%; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .persona-grid { grid-template-columns: 1fr; }
  .how-grid { grid-template-columns: 1fr; }
  .section-head-row { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 600px) {
  .hero { padding: 2rem 1rem 0; }
  .hero-left { padding-bottom: 2rem; }
  .section { padding: 2.5rem 1rem; }
  .bento .b, .bento .b-6, .bento .b-5, .bento .b-4, .bento .b-3 { grid-column: span 12; }
  .bento .b-7, .bento .b-8, .bento .b-9 { grid-column: span 12; }
  .coverage-inner { padding: 2rem 1rem; }
  .cov-stats { grid-template-columns: 1fr; }
  .cov-stat { border-right: none; border-bottom: 1px solid var(--border); }
  .cov-stat:last-child { border-bottom: none; }
  .footer { padding: 2rem 1rem; }
  .footer-top { grid-template-columns: 1fr; gap: 1.5rem; }
  .cta-inner { padding: 2rem 1rem; }
  .persona { padding: 1.4rem; }
}
