/* ════════════════════════════════════════════════
   DAYKO · v3 · Editorial × Mystery
   Brand Manual: Mairaj — Coral system
══════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,200;12..96,300;12..96,400;12..96,500;12..96,600;12..96,700;12..96,800&family=Geist:wght@300;400;500;600;700&family=Geist+Mono:wght@400;500&family=Caveat:wght@400;500;600&display=swap');

:root {
  --coral:        #F87171;
  --coral-deep:   #E85A5A;
  --coral-soft:   #FBA5A5;
  --coral-tint:   #FDD8D8;
  --cream:        #FFF7F4;
  --ink:          #18191D;
  --ink-deep:     #0E0F12;
  --muted:        #6B6C72;
  --stone:        #B2B2B2;
  --fog:          #ECECEC;
  --paper:        #FFFFFF;

  --font-display: 'Bricolage Grotesque', sans-serif;
  --font-body:    'Geist', sans-serif;
  --font-mono:    'Geist Mono', monospace;
  --font-script:  'Caveat', cursive;

  --max:    1240px;
  --gutter: clamp(20px, 5vw, 64px);

  --ease-expo:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-quart: cubic-bezier(0.25, 1, 0.5, 1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  line-height: 1.5;
}

::selection { background: var(--coral); color: var(--paper); }

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* ─── ANNOUNCEMENT BAR ─────────────────────── */
.annc-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 101;
  background: var(--ink);
  color: var(--paper);
  padding: 9px 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.annc-track {
  display: flex;
  gap: 28px;
  animation: marquee 36s linear infinite;
  white-space: nowrap;
  width: max-content;
  align-items: center;
}

.annc-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 400;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.06em;
}

.annc-item strong {
  color: var(--coral);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

.annc-sep {
  color: rgba(255,255,255,0.15);
  font-family: var(--font-mono);
  font-size: 12px;
}

.annc-dot {
  width: 6px;
  height: 6px;
  background: var(--coral);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

/* ─── NAV ──────────────────────────────────── */
.nav {
  position: fixed;
  top: 36px; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px var(--gutter);
  background: transparent;
  transition: background 0.4s var(--ease-quart), padding 0.4s var(--ease-quart), border-color 0.4s, top 0.3s;
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(255, 247, 244, 0.85);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom-color: rgba(0,0,0,0.05);
  padding: 14px var(--gutter);
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo img {
  height: 30px;
  width: auto;
  display: block;
}

.nav-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-meta-dot {
  width: 6px;
  height: 6px;
  background: var(--coral);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 100px;
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.nav-cta:hover {
  background: var(--coral);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(248,113,113,0.35);
}

@media (max-width: 640px) {
  .nav-meta { display: none; }
}

/* ─── HERO ─────────────────────────────────── */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px var(--gutter) 80px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.hero-orb-1 {
  width: 420px; height: 420px;
  background: var(--coral-soft);
  top: 10%; left: -8%;
  opacity: 0.45;
  animation: orbFloat 14s ease-in-out infinite;
}

.hero-orb-2 {
  width: 320px; height: 320px;
  background: var(--coral-tint);
  bottom: 8%; right: -6%;
  opacity: 0.55;
  animation: orbFloat 18s ease-in-out infinite reverse;
}

.hero-orb-3 {
  width: 220px; height: 220px;
  background: var(--coral);
  top: 50%; right: 28%;
  filter: blur(140px);
  opacity: 0.18;
  animation: orbFloat 22s ease-in-out infinite;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(40px, -30px); }
  66% { transform: translate(-30px, 40px); }
}

.hero-issue {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 56px;
  position: relative;
  z-index: 2;
  opacity: 0;
  transform: translateY(12px);
  animation: fadeUp 0.8s var(--ease-expo) 0.1s forwards;
}

.hero-issue-line {
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--stone);
}

.hero-issue strong {
  color: var(--coral);
  font-weight: 500;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(48px, 9.5vw, 144px);
  font-weight: 800;
  line-height: 0.93;
  letter-spacing: -0.045em;
  color: var(--ink);
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.hero-headline > span {
  display: block;
  opacity: 0;
  transform: translateY(40px);
  animation: lineIn 1s var(--ease-expo) forwards;
}

.hero-headline > span:nth-child(1) { animation-delay: 0.25s; }
.hero-headline > span:nth-child(2) { animation-delay: 0.4s; }
.hero-headline > span:nth-child(3) { animation-delay: 0.55s; }

.hero-headline em {
  font-style: normal;
  color: var(--coral);
  position: relative;
  display: inline-block;
}

.hero-headline em::after {
  content: '';
  position: absolute;
  left: -2%; right: -2%;
  bottom: 8%;
  height: 6%;
  background: var(--coral);
  opacity: 0.16;
  z-index: -1;
  border-radius: 4px;
  transform: scaleX(0);
  transform-origin: left;
  animation: highlight 0.8s var(--ease-expo) 1.4s forwards;
}

@keyframes highlight {
  to { transform: scaleX(1); }
}

@keyframes lineIn {
  to { opacity: 1; transform: translateY(0); }
}

.hero-sub {
  font-size: clamp(15px, 1.6vw, 19px);
  font-weight: 400;
  line-height: 1.65;
  color: var(--muted);
  max-width: 540px;
  margin: 0 auto 48px;
  position: relative;
  z-index: 2;
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 0.9s var(--ease-expo) 1.0s forwards;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 0.9s var(--ease-expo) 1.2s forwards;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 30px;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 100px;
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
  letter-spacing: -0.01em;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--coral);
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(248,113,113,0.32);
}

.btn-primary svg { transition: transform 0.25s; }
.btn-primary:hover svg { transform: translateX(4px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  background: transparent;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid var(--fog);
  border-radius: 100px;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.btn-ghost:hover {
  border-color: var(--ink);
  color: var(--ink);
  background: var(--paper);
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

.scroll-cue {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--stone);
  z-index: 2;
  opacity: 0;
  animation: fadeUp 1s var(--ease-expo) 1.6s forwards;
}

.scroll-cue-line {
  width: 1px;
  height: 32px;
  background: rgba(0,0,0,0.1);
  position: relative;
  overflow: hidden;
}

.scroll-cue-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 12px;
  background: var(--coral);
  animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
  0% { transform: translateY(-12px); }
  100% { transform: translateY(32px); }
}

/* ─── MARQUEE ──────────────────────────────── */
.marquee {
  background: var(--ink);
  color: var(--paper);
  padding: 28px 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 60px;
  animation: marquee 50s linear infinite;
  white-space: nowrap;
  width: max-content;
}

.marquee-item {
  font-family: var(--font-display);
  font-size: clamp(20px, 3vw, 38px);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: rgba(255,255,255,0.35);
  text-decoration: line-through;
  text-decoration-color: var(--coral);
  text-decoration-thickness: 3px;
}

.marquee-item.kept {
  color: var(--coral);
  text-decoration: none;
  font-style: italic;
}

.marquee-logo {
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
}

.marquee-logo img {
  height: 38px;
  width: auto;
  display: block;
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ─── CHAPTER (Big section labels) ─────────── */
.chapter {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 56px;
}

.chapter-num {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--coral);
  font-variant-numeric: tabular-nums;
}

.chapter-line {
  flex: 0 0 60px;
  height: 1px;
  background: var(--ink);
}

.chapter-name {
  font-family: var(--font-mono);
  font-size: clamp(13px, 1.3vw, 15px);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
}

.chapter-dark .chapter-num { color: var(--coral); }
.chapter-dark .chapter-line { background: rgba(255,255,255,0.2); }
.chapter-dark .chapter-name { color: var(--paper); }

@media (max-width: 540px) {
  .chapter-line { flex: 0 0 32px; }
}

/* ─── SECTION LABELS ───────────────────────── */
.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 56px;
}

.section-label::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--stone);
}

.section-label-num {
  color: var(--coral);
  font-weight: 600;
}

/* ─── STATS ────────────────────────────────── */
.stats {
  padding: clamp(80px, 12vw, 160px) var(--gutter);
  max-width: var(--max);
  margin: 0 auto;
}

.stats-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 80px;
}

.stats-headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--ink);
}

.stats-headline em {
  font-style: italic;
  color: var(--coral);
}

.stats-desc {
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 460px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.stat-cell {
  padding: 48px 32px;
  border-right: 1px solid var(--fog);
  position: relative;
  background: var(--cream);
}

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

.stat-cell-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 20px;
}

.stat-cell-num {
  font-family: var(--font-display);
  font-size: clamp(48px, 6.5vw, 88px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.045em;
  color: var(--ink);
  margin-bottom: 16px;
  font-variant-numeric: tabular-nums;
}

.stat-cell-num em {
  font-style: normal;
  color: var(--coral);
}

.stat-cell-label {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
}

.stat-cell-label strong {
  color: var(--ink);
  font-weight: 500;
}

@media (max-width: 900px) {
  .stats-intro { grid-template-columns: 1fr; gap: 32px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-cell { border-right: none; border-bottom: 1px solid var(--fog); }
  .stat-cell:nth-child(odd) { border-right: 1px solid var(--fog); }
  .stat-cell:nth-last-child(-n+2) { border-bottom: none; }
}

@media (max-width: 560px) {
  .stats-grid { grid-template-columns: 1fr; }
  .stat-cell { border-right: none !important; border-bottom: 1px solid var(--fog); padding: 36px 0; }
  .stat-cell:last-child { border-bottom: none; }
}

/* ─── TRUTH ────────────────────────────────── */
.truth {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(80px, 12vw, 160px) var(--gutter);
  position: relative;
  overflow: hidden;
}

.truth::before {
  content: '';
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(248,113,113,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.truth-inner {
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.truth .section-label { color: rgba(255,255,255,0.4); }
.truth .section-label::before { background: rgba(255,255,255,0.3); }
.truth .section-label .section-label-num { color: var(--coral-soft); }

.truth-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 5.5vw, 76px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: var(--paper);
  margin-bottom: 80px;
  max-width: 880px;
}

.truth-headline em {
  font-style: italic;
  color: var(--coral);
}

.truth-list {
  display: flex;
  flex-direction: column;
}

.truth-line {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  padding: 36px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  align-items: baseline;
  cursor: default;
  transition: padding-left 0.3s var(--ease-quart);
}

.truth-line:hover { padding-left: 12px; }
.truth-line:hover .truth-line-text { color: var(--paper); }

.truth-line-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.08em;
}

.truth-line-text {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.6vw, 32px);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.03em;
  color: rgba(255,255,255,0.78);
  transition: color 0.3s;
}

.truth-line-text strong {
  color: var(--coral-soft);
  font-weight: 600;
}

@media (max-width: 640px) {
  .truth-line { grid-template-columns: 1fr; gap: 8px; }
  .truth-line:hover { padding-left: 0; }
}

/* ─── PROVOKE ──────────────────────────────── */
.provoke {
  padding: clamp(100px, 14vw, 200px) var(--gutter);
  max-width: var(--max);
  margin: 0 auto;
  text-align: center;
}

.provoke-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 32px;
}

.provoke-questions {
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 4vw, 48px);
  max-width: 1000px;
  margin: 0 auto;
}

.provoke-q {
  font-family: var(--font-display);
  font-size: clamp(28px, 5.5vw, 76px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--ink);
}

.provoke-q em {
  font-style: italic;
  color: var(--coral);
  font-weight: 700;
}

.provoke-q.faded { color: var(--stone); }

.provoke-tail {
  margin-top: clamp(48px, 8vw, 100px);
  padding-top: 48px;
  border-top: 1px solid var(--fog);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: var(--font-script);
  font-size: clamp(28px, 4vw, 44px);
  color: var(--ink);
  letter-spacing: -0.01em;
  flex-wrap: wrap;
}

.provoke-tail-coral { color: var(--coral); }

/* ─── LETTER ───────────────────────────────── */
.letter {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(80px, 12vw, 160px) var(--gutter);
  position: relative;
  overflow: hidden;
}

.letter::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(248,113,113,0.08) 0%, transparent 50%);
  pointer-events: none;
}

.letter-inner {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.letter-from {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 24px;
}

.letter-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 4.2vw, 56px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.15;
  color: var(--paper);
  margin-bottom: 40px;
}

.letter-body {
  font-family: var(--font-display);
  font-size: clamp(17px, 1.7vw, 22px);
  line-height: 1.65;
  font-weight: 400;
  color: rgba(255,255,255,0.78);
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}

.letter-body em {
  color: var(--coral-soft);
  font-style: italic;
}

.letter-sig {
  margin-top: 56px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.letter-sig-name {
  font-family: var(--font-script);
  font-size: 30px;
  color: var(--coral);
  font-weight: 600;
  line-height: 1;
}

.letter-sig-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-left: 16px;
  border-left: 1px solid rgba(255,255,255,0.15);
}

.letter-sig-meta strong {
  font-size: 14px;
  font-weight: 500;
  color: var(--paper);
  letter-spacing: -0.01em;
}

.letter-sig-meta span {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

/* ─── CLUSTERS ─────────────────────────────── */
.clusters {
  padding: clamp(80px, 12vw, 160px) var(--gutter);
  max-width: var(--max);
  margin: 0 auto;
}

.clusters-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 64px;
}

.clusters-headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 60px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--ink);
  max-width: 720px;
}

.clusters-headline em {
  font-style: italic;
  color: var(--coral);
}

.clusters-meta {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--stone);
  text-align: right;
}

.clusters-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--fog);
  border: 1px solid var(--fog);
}

.cluster-card {
  padding: 36px 32px;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  gap: 16px;
  cursor: default;
  transition: background 0.3s;
  position: relative;
  overflow: hidden;
  min-height: 240px;
}

.cluster-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 0;
  background: var(--coral);
  transition: height 0.4s var(--ease-quart);
}

.cluster-card:hover { background: var(--paper); }
.cluster-card:hover::before { height: 100%; }
.cluster-card:hover .cluster-count { color: var(--coral); }

.cluster-tag {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.cluster-name {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--stone);
}

.cluster-count {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink);
  font-weight: 600;
  transition: color 0.3s;
}

.cluster-headline {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--ink);
}

.cluster-headline em {
  font-style: italic;
  color: var(--coral);
}

.cluster-desc {
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
  margin-top: auto;
}

@media (max-width: 900px) { .clusters-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) {
  .clusters-grid { grid-template-columns: 1fr; }
  .clusters-meta { text-align: left; }
}

/* ─── COUNTDOWN ────────────────────────────── */
.countdown {
  padding: clamp(80px, 10vw, 140px) var(--gutter);
  max-width: var(--max);
  margin: 0 auto;
  text-align: center;
}

.countdown-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 24px;
}

.countdown-headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 56px;
}

.countdown-clock {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  max-width: 720px;
  margin: 0 auto;
  background: var(--ink);
  padding: 1px;
  border-radius: 16px;
  overflow: hidden;
}

.countdown-cell {
  padding: 32px 16px;
  background: var(--cream);
}

.countdown-num {
  font-family: var(--font-display);
  font-size: clamp(36px, 5.5vw, 72px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--ink);
  margin-bottom: 8px;
  font-variant-numeric: tabular-nums;
}

.countdown-num em {
  font-style: normal;
  color: var(--coral);
}

.countdown-unit {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

@media (max-width: 600px) { .countdown-clock { grid-template-columns: 1fr 1fr; } }

/* ─── PROMISE ──────────────────────────────── */
.promise {
  padding: clamp(80px, 12vw, 160px) var(--gutter);
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.promise-side .section-label { margin-bottom: 32px; }

.promise-headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: 24px;
}

.promise-headline em {
  font-style: italic;
  color: var(--coral);
}

.promise-body {
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 380px;
}

.promise-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.promise-item {
  display: grid;
  grid-template-columns: 32px 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 24px 28px;
  background: var(--paper);
  border: 1px solid var(--fog);
  border-radius: 8px;
  transition: border-color 0.25s, background 0.25s, transform 0.25s var(--ease-quart);
}

.promise-item:hover {
  border-color: var(--coral-soft);
  background: #FFFCFA;
  transform: translateX(4px);
}

.promise-item-icon {
  width: 32px;
  height: 32px;
  background: var(--coral-tint);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--coral-deep);
  flex-shrink: 0;
}

.promise-item-icon svg { width: 14px; height: 14px; }

.promise-item-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.promise-item-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.015em;
}

.promise-item-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

.promise-item-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--coral);
  text-transform: uppercase;
  font-weight: 600;
  white-space: nowrap;
}

@media (max-width: 900px) {
  .promise { grid-template-columns: 1fr; gap: 48px; }
  .promise-item-tag { display: none; }
  .promise-item { grid-template-columns: 32px 1fr; }
}

/* ─── WAITLIST ─────────────────────────────── */
.waitlist {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(80px, 12vw, 140px) var(--gutter);
  position: relative;
  overflow: hidden;
}

.waitlist::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(248,113,113,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.waitlist-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.waitlist-counter {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px;
  background: rgba(248,113,113,0.1);
  border: 1px solid rgba(248,113,113,0.25);
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--coral-soft);
  margin-bottom: 32px;
}

.waitlist-counter strong {
  color: var(--coral);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

.waitlist-counter-dot {
  width: 6px;
  height: 6px;
  background: var(--coral);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

.waitlist-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 5.5vw, 76px);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1;
  color: var(--paper);
  margin-bottom: 24px;
}

.waitlist-headline em {
  font-style: italic;
  color: var(--coral);
}

.waitlist-sub {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255,255,255,0.55);
  margin-bottom: 48px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.seat-meter {
  margin-bottom: 40px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.seat-meter-label {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 10px;
}

.seat-meter-label strong {
  color: var(--coral);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

.seat-meter-bar {
  height: 4px;
  background: rgba(255,255,255,0.08);
  border-radius: 100px;
  overflow: hidden;
}

.seat-meter-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--coral-soft), var(--coral));
  border-radius: 100px;
  width: 0;
  transition: width 1.6s var(--ease-expo);
  box-shadow: 0 0 12px rgba(248,113,113,0.5);
}

.form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: left;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

.form-input,
.form-select {
  padding: 14px 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--paper);
  outline: none;
  transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
  -webkit-appearance: none;
  appearance: none;
}

.form-input::placeholder { color: rgba(255,255,255,0.25); }

.form-input:focus,
.form-select:focus {
  border-color: var(--coral);
  background: rgba(248,113,113,0.06);
  box-shadow: 0 0 0 4px rgba(248,113,113,0.08);
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 4l4 4 4-4' stroke='rgba(255,255,255,0.4)' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-select option {
  background: var(--ink-deep);
  color: var(--paper);
}

.form-submit {
  margin-top: 12px;
  padding: 18px 40px;
  background: var(--coral);
  color: var(--paper);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  width: 100%;
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.form-submit:hover {
  background: var(--coral-deep);
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(248,113,113,0.4);
}

.form-submit:disabled {
  opacity: 0.6;
  cursor: default;
  transform: none;
  box-shadow: none;
}

.form-note {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  margin-top: 16px;
  line-height: 1.5;
  text-align: center;
}

.form-success {
  display: none;
  text-align: center;
  padding: 48px 0;
}

.form-success.shown {
  display: block;
  animation: successFade 0.5s var(--ease-expo);
}

@keyframes successFade {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.form-success-mark {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  background: var(--coral);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--paper);
}

.form-success-mark svg { width: 24px; height: 24px; }

.form-success-headline {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--paper);
  margin-bottom: 12px;
}

.form-success-text {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  max-width: 380px;
  margin: 0 auto;
}

@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }

/* ─── CLOSING ──────────────────────────────── */
.closing {
  padding: clamp(120px, 18vw, 200px) var(--gutter);
  max-width: var(--max);
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.closing-comma {
  font-family: var(--font-display);
  font-size: clamp(120px, 24vw, 320px);
  line-height: 0.7;
  font-weight: 800;
  color: var(--coral);
  margin-bottom: 32px;
  letter-spacing: -0.05em;
  display: inline-block;
}

.closing-text {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 12px;
}

.closing-text em {
  font-style: italic;
  color: var(--coral);
}

.closing-meta {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--stone);
  margin-top: 24px;
}

/* ─── FOOTER ───────────────────────────────── */
.footer {
  border-top: 1px solid var(--fog);
  padding: 32px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  background: var(--paper);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-brand img {
  height: 22px;
  width: auto;
}

.footer-copy {
  font-size: 13px;
  color: var(--stone);
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--coral); }

/* ─── SCROLL REVEAL ────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease-expo), transform 0.8s var(--ease-expo);
  will-change: opacity, transform;
}

[data-reveal].visible {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal][data-delay="1"] { transition-delay: 0.08s; }
[data-reveal][data-delay="2"] { transition-delay: 0.16s; }
[data-reveal][data-delay="3"] { transition-delay: 0.24s; }
[data-reveal][data-delay="4"] { transition-delay: 0.32s; }
[data-reveal][data-delay="5"] { transition-delay: 0.40s; }
[data-reveal][data-delay="6"] { transition-delay: 0.48s; }

/* ─── LEGAL PAGES ──────────────────────────── */
.legal-page {
  padding: 120px var(--gutter) 80px;
  max-width: 800px;
  margin: 0 auto;
}

.legal-page h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--ink);
  margin-bottom: 12px;
}

.legal-meta {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--stone);
  letter-spacing: 0.06em;
  margin-bottom: 60px;
}

.legal-page h2 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin: 48px 0 16px;
}

.legal-page h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  margin: 28px 0 10px;
}

.legal-page p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 16px;
}

.legal-page ul, .legal-page ol {
  padding-left: 24px;
  margin-bottom: 16px;
}

.legal-page li {
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 6px;
}

.legal-page a { color: var(--coral); text-decoration: none; }
.legal-page a:hover { text-decoration: underline; }

.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 14px;
}

.legal-table th {
  text-align: left;
  padding: 12px 16px;
  background: var(--fog);
  font-weight: 600;
  color: var(--ink);
  font-size: 13px;
  letter-spacing: -0.01em;
}

.legal-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--fog);
  color: var(--muted);
  line-height: 1.5;
  vertical-align: top;
}

.legal-table tr:last-child td { border-bottom: none; }

.legal-divider {
  height: 1px;
  background: var(--fog);
  margin: 48px 0;
}

.contact-card {
  padding: 32px;
  background: var(--paper);
  border: 1px solid var(--fog);
  border-radius: 12px;
  margin-top: 32px;
}

.contact-card h3 { margin-top: 0; }
.contact-card p { margin-bottom: 8px; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}
