/* ============================================================
   NON MAGIC — Design System
   Background #0a0a0a | Clinical-clean | Premium health tool
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Space+Grotesk:wght@300;400;500;600;700&family=Space+Mono:ital,wght@0,400;0,700;1,400&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --bg:           #0a0a0a;
  --bg-alt:       #0d0d0d;
  --card:         #111111;
  --card-hover:   #161616;
  --border:       #1e1e1e;
  --border-mid:   #2a2a2a;
  --border-light: #333333;
  --text:         #ffffff;
  --text-2:       #aaaaaa;
  --text-3:       #666666;
  --text-4:       #3a3a3a;

  /* Frequency band colors */
  --delta:      #E74C3C;
  --theta:      #9B59B6;
  --alpha:      #27AE60;
  --beta:       #3498DB;
  --gamma:      #E67E22;
  --solfeggio:  #F1C40F;
  --planetary:  #D4AF37;

  --radius:   8px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --font-serif: 'DM Serif Display', Georgia, 'Times New Roman', serif;
  --font-sans:  'Space Grotesk', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono:  'Space Mono', 'SF Mono', 'Fira Code', 'Cascadia Code', monospace;

  --max-w: 1200px;
  --max-w-text: 720px;
}

/* ── Reset ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, textarea { font: inherit; }

/* ── Typography ──────────────────────────────────────── */
.serif { font-family: var(--font-serif); }
.mono  { font-family: var(--font-mono); }

h1, h2, h3 { font-family: var(--font-serif); font-weight: 400; line-height: 1.15; }
h4, h5, h6 { font-weight: 500; line-height: 1.3; }

.display { font-family: var(--font-serif); font-size: clamp(48px, 7vw, 96px); font-weight: 400; line-height: 1.05; letter-spacing: -0.02em; }
.headline { font-family: var(--font-serif); font-size: clamp(32px, 4vw, 56px); font-weight: 400; line-height: 1.1; }
.title { font-family: var(--font-serif); font-size: clamp(22px, 3vw, 36px); font-weight: 400; }
.label { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-3); }
.hz-value { font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.05em; }

/* ── Layout ──────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.container-text { max-width: var(--max-w-text); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section-lg { padding: 128px 0; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-8 { gap: 8px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }

/* ── Navigation ──────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: 64px;
  display: flex; align-items: center;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: border-color 0.3s;
}
.nav__inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  width: 100%;
}
.nav__logo {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--text);
}
.nav__logo span { color: var(--text-3); }
.nav__links {
  display: flex; align-items: center; gap: 4px;
  list-style: none;
}
.nav__links a {
  display: block;
  padding: 6px 14px;
  font-size: 13px;
  color: var(--text-3);
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}
.nav__links a:hover,
.nav__links a.active { color: var(--text); background: var(--card); }
.nav__cta {
  display: flex; align-items: center; gap: 12px;
}
.nav__burger {
  display: none;
  width: 32px; height: 32px;
  flex-direction: column; justify-content: center; gap: 5px;
}
.nav__burger span {
  display: block; height: 1px; background: var(--text-2);
  transition: transform 0.2s;
}

/* ── Buttons ─────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-size: 14px; font-weight: 500;
  transition: all 0.2s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--text);
  color: var(--bg);
}
.btn-primary:hover { background: #e0e0e0; transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  border: 1px solid var(--border-light);
  color: var(--text);
}
.btn-outline:hover { border-color: var(--text-2); background: var(--card); }
.btn-ghost {
  background: transparent;
  color: var(--text-3);
}
.btn-ghost:hover { color: var(--text); background: var(--card); }
.btn-lg { padding: 16px 32px; font-size: 16px; border-radius: 10px; }
.btn-sm { padding: 8px 16px; font-size: 12px; }

/* Frequency colored buttons */
.btn-delta    { background: var(--delta);     color: #fff; }
.btn-theta    { background: var(--theta);     color: #fff; }
.btn-alpha    { background: var(--alpha);     color: #fff; }
.btn-beta     { background: var(--beta);      color: #fff; }
.btn-gamma    { background: var(--gamma);     color: #fff; }
.btn-solfeggio { background: var(--solfeggio); color: #000; }

/* ── Cards ───────────────────────────────────────────── */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}
.card:hover {
  border-color: var(--border-light);
  background: var(--card-hover);
}
.card-sm { padding: 20px; border-radius: var(--radius); }
.card-interactive:hover { transform: translateY(-2px); }

/* Freq card accent */
.card[data-band="delta"]     { --accent: var(--delta); }
.card[data-band="theta"]     { --accent: var(--theta); }
.card[data-band="alpha"]     { --accent: var(--alpha); }
.card[data-band="beta"]      { --accent: var(--beta); }
.card[data-band="gamma"]     { --accent: var(--gamma); }
.card[data-band="solfeggio"] { --accent: var(--solfeggio); }
.card[data-band="planetary"] { --accent: var(--planetary); }
.card-accent-top { border-top: 2px solid var(--accent, var(--border-light)); }

/* ── Badges & Chips ──────────────────────────────────── */
.badge {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 4px 10px;
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.05em;
  text-transform: uppercase;
}
.badge-delta     { background: rgba(231,76,60,0.15);   color: var(--delta);     border: 1px solid rgba(231,76,60,0.3); }
.badge-theta     { background: rgba(155,89,182,0.15);  color: var(--theta);     border: 1px solid rgba(155,89,182,0.3); }
.badge-alpha     { background: rgba(39,174,96,0.15);   color: var(--alpha);     border: 1px solid rgba(39,174,96,0.3); }
.badge-beta      { background: rgba(52,152,219,0.15);  color: var(--beta);      border: 1px solid rgba(52,152,219,0.3); }
.badge-gamma     { background: rgba(230,126,34,0.15);  color: var(--gamma);     border: 1px solid rgba(230,126,34,0.3); }
.badge-solfeggio { background: rgba(241,196,15,0.15);  color: var(--solfeggio); border: 1px solid rgba(241,196,15,0.3); }
.badge-planetary { background: rgba(212,175,55,0.15);  color: var(--planetary); border: 1px solid rgba(212,175,55,0.3); }

.chip {
  display: inline-block;
  padding: 3px 8px;
  border-radius: 4px;
  background: var(--card-hover);
  border: 1px solid var(--border-mid);
  font-size: 11px; color: var(--text-3);
  font-family: var(--font-mono);
}

/* ── Hero ────────────────────────────────────────────── */
.hero {
  padding: 160px 0 96px;
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
}
.hero__eyebrow {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--text-3); margin-bottom: 24px;
}
.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(52px, 8vw, 112px);
  font-weight: 400;
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: 32px;
}
.hero__sub {
  font-size: 18px; color: var(--text-2); line-height: 1.6;
  max-width: 520px; margin-bottom: 48px;
}
.hero__ctas { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── Section headers ─────────────────────────────────── */
.section-header { text-align: center; margin-bottom: 64px; }
.section-header .label { margin-bottom: 16px; }
.section-header h2 { margin-bottom: 20px; }
.section-header p { color: var(--text-2); font-size: 18px; max-width: 560px; margin: 0 auto; }

/* ── Dividers ────────────────────────────────────────── */
.divider { height: 1px; background: var(--border); margin: 0; }

/* ── Stat blocks ─────────────────────────────────────── */
.stat { padding: 24px 0; border-top: 1px solid var(--border); }
.stat__num {
  font-family: var(--font-serif);
  font-size: 48px; font-weight: 400;
  line-height: 1; margin-bottom: 4px;
}
.stat__label { color: var(--text-3); font-size: 13px; }

/* ── Frequency color dots ────────────────────────────── */
.dot {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
}
.dot-delta     { background: var(--delta); }
.dot-theta     { background: var(--theta); }
.dot-alpha     { background: var(--alpha); }
.dot-beta      { background: var(--beta); }
.dot-gamma     { background: var(--gamma); }
.dot-solfeggio { background: var(--solfeggio); }

/* ── Forms ───────────────────────────────────────────── */
.input {
  display: block; width: 100%;
  background: var(--card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 12px 16px;
  color: var(--text); font-size: 15px;
  transition: border-color 0.2s;
  outline: none;
}
.input:focus { border-color: var(--text-3); }
.input::placeholder { color: var(--text-4); }
.input-group { display: flex; gap: 8px; }
.input-group .input { flex: 1; }

/* ── Progress / Bars ─────────────────────────────────── */
.progress-bar {
  height: 2px; background: var(--border); border-radius: 1px; overflow: hidden;
}
.progress-fill {
  height: 100%; border-radius: 1px;
  background: var(--text);
  transition: width 0.5s ease;
}

/* ── Canvas container ────────────────────────────────── */
.matrix-canvas-wrap {
  position: relative;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.matrix-canvas-wrap canvas {
  display: block; width: 100%; height: 100%;
}

/* ── Tags list ───────────────────────────────────────── */
.tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 12px; }

/* ── Tables ──────────────────────────────────────────── */
.table { width: 100%; border-collapse: collapse; }
.table th {
  text-align: left; padding: 10px 16px;
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-3); border-bottom: 1px solid var(--border);
}
.table td {
  padding: 14px 16px; border-bottom: 1px solid var(--border);
  font-size: 14px; color: var(--text-2);
}
.table tr:last-child td { border-bottom: none; }
.table tr:hover td { background: var(--card); }

/* ── Scroll animations ───────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ── Footer ──────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--border);
  padding: 64px 0 40px;
  color: var(--text-3);
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer__brand { font-family: var(--font-serif); font-size: 20px; color: var(--text); margin-bottom: 12px; }
.footer__tagline { font-size: 13px; color: var(--text-3); line-height: 1.6; max-width: 260px; }
.footer__col h4 { font-size: 11px; font-family: var(--font-mono); letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-3); margin-bottom: 16px; }
.footer__col ul { list-style: none; }
.footer__col ul li { margin-bottom: 10px; }
.footer__col ul a { font-size: 14px; color: var(--text-3); transition: color 0.2s; }
.footer__col ul a:hover { color: var(--text); }
.footer__bottom { padding-top: 24px; border-top: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; font-size: 12px; }

/* ── Pulse animation ─────────────────────────────────── */
@keyframes pulse-glow {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.05); }
}
@keyframes breathe-in {
  0% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.35); opacity: 1; }
  100% { transform: scale(1); opacity: 0.6; }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes spin-slow {
  to { transform: rotate(360deg); }
}
@keyframes fade-in-up {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Ticker / marquee ────────────────────────────────── */
.ticker {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  background: var(--bg-alt);
}
.ticker__track {
  display: flex; gap: 48px;
  width: max-content;
  animation: ticker-scroll 40s linear infinite;
  white-space: nowrap;
}
.ticker__track:hover { animation-play-state: paused; }
.ticker__item {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-mono); font-size: 12px; color: var(--text-3);
}
.ticker__item .dot { width: 6px; height: 6px; }

/* ── Modal / overlay ─────────────────────────────────── */
.overlay {
  position: fixed; inset: 0; z-index: 999;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
.overlay.open { opacity: 1; pointer-events: all; }
.modal {
  background: var(--card);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-xl);
  padding: 40px;
  max-width: 600px; width: 100%; margin: 24px;
  transform: translateY(16px);
  transition: transform 0.3s;
  max-height: 90vh; overflow-y: auto;
}
.overlay.open .modal { transform: none; }
.modal__close {
  position: absolute; top: 16px; right: 16px;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; background: var(--card-hover);
  color: var(--text-3); font-size: 18px; cursor: pointer;
  transition: background 0.2s;
}
.modal__close:hover { background: var(--border-light); color: var(--text); }

/* ── Frequency filter bar ────────────────────────────── */
.filter-bar {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-bottom: 32px;
}
.filter-btn {
  padding: 7px 14px;
  border-radius: 100px;
  font-size: 12px; font-family: var(--font-mono);
  letter-spacing: 0.04em; text-transform: uppercase;
  border: 1px solid var(--border-mid);
  color: var(--text-3); background: transparent;
  cursor: pointer; transition: all 0.15s;
}
.filter-btn:hover { border-color: var(--text-3); color: var(--text); }
.filter-btn.active { color: var(--bg); }
.filter-btn[data-band="all"].active    { background: var(--text); border-color: var(--text); }
.filter-btn[data-band="delta"].active  { background: var(--delta);     border-color: var(--delta); }
.filter-btn[data-band="theta"].active  { background: var(--theta);     border-color: var(--theta); }
.filter-btn[data-band="alpha"].active  { background: var(--alpha);     border-color: var(--alpha); }
.filter-btn[data-band="beta"].active   { background: var(--beta);      border-color: var(--beta); }
.filter-btn[data-band="gamma"].active  { background: var(--gamma);     border-color: var(--gamma); }
.filter-btn[data-band="solfeggio"].active { background: var(--solfeggio); border-color: var(--solfeggio); color: #000; }
.filter-btn[data-band="planetary"].active { background: var(--planetary); border-color: var(--planetary); color: #000; }

/* ── Countdown ───────────────────────────────────────── */
.countdown {
  display: flex; gap: 24px;
  font-family: var(--font-serif);
}
.countdown__unit { text-align: center; }
.countdown__num { font-size: clamp(48px, 8vw, 80px); font-weight: 400; line-height: 1; }
.countdown__label { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-3); margin-top: 8px; }

/* ── Pricing cards ───────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  align-items: end;
}
.price-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  position: relative; overflow: hidden;
  transition: border-color 0.2s;
}
.price-card.featured {
  border-color: var(--text-2);
  background: var(--card-hover);
}
.price-card.decoy {
  opacity: 0.5;
}
.price-card__badge {
  position: absolute; top: -1px; right: 24px;
  background: var(--text);
  color: var(--bg);
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 0 0 6px 6px;
}
.price-card__plan { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-3); margin-bottom: 16px; }
.price-card__price { font-family: var(--font-serif); font-size: 48px; font-weight: 400; line-height: 1; margin-bottom: 4px; }
.price-card__period { font-size: 13px; color: var(--text-3); margin-bottom: 24px; }
.price-card__savings { font-family: var(--font-mono); font-size: 11px; color: var(--alpha); background: rgba(39,174,96,0.1); border: 1px solid rgba(39,174,96,0.2); padding: 4px 8px; border-radius: 4px; display: inline-block; margin-bottom: 16px; }
.price-card__features { list-style: none; margin-bottom: 28px; }
.price-card__features li {
  padding: 8px 0; border-bottom: 1px solid var(--border);
  font-size: 13px; color: var(--text-2);
  display: flex; align-items: center; gap: 10px;
}
.price-card__features li:last-child { border-bottom: none; }
.price-card__features li::before { content: '✓'; color: var(--alpha); font-size: 12px; flex-shrink: 0; }

/* ── Breathing circle ────────────────────────────────── */
.breath-circle-wrap {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  width: 320px; height: 320px; margin: 0 auto;
}
.breath-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid currentColor;
  transition: transform 0.1s, opacity 0.1s;
}
.breath-ring-outer { width: 100%; height: 100%; opacity: 0.15; }
.breath-ring-mid   { width: 75%; height: 75%; opacity: 0.25; }
.breath-ring-inner { width: 50%; height: 50%; opacity: 0.4; }
.breath-ring-core  { width: 25%; height: 25%; opacity: 0.8; background: currentColor; }
.breath-text {
  position: absolute;
  text-align: center;
}
.breath-phase {
  font-family: var(--font-mono); font-size: 12px;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--text-3); margin-bottom: 4px;
}
.breath-count { font-family: var(--font-serif); font-size: 48px; font-weight: 400; }

/* ── Social feed ─────────────────────────────────────── */
.feed-item {
  display: flex; gap: 16px;
  padding: 20px 0; border-bottom: 1px solid var(--border);
}
.feed-item:last-child { border-bottom: none; }
.feed-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--card-hover); border: 1px solid var(--border-mid);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-size: 13px; color: var(--text-3);
  flex-shrink: 0;
}
.feed-body { flex: 1; min-width: 0; }
.feed-name { font-size: 14px; font-weight: 500; margin-bottom: 2px; }
.feed-detail { font-size: 13px; color: var(--text-3); }
.feed-time { font-family: var(--font-mono); font-size: 11px; color: var(--text-4); margin-top: 4px; }
.feed-meta { display: flex; gap: 16px; margin-top: 8px; }
.feed-stat { display: flex; align-items: center; gap: 5px; font-family: var(--font-mono); font-size: 11px; color: var(--text-3); }

/* ── Leaderboard ─────────────────────────────────────── */
.lb-row {
  display: flex; align-items: center; gap: 16px;
  padding: 14px 20px;
  border-radius: var(--radius);
  transition: background 0.15s;
}
.lb-row:hover { background: var(--card); }
.lb-rank { font-family: var(--font-mono); font-size: 12px; color: var(--text-4); width: 24px; text-align: center; }
.lb-rank.gold   { color: var(--solfeggio); }
.lb-rank.silver { color: #aaa; }
.lb-rank.bronze { color: #CD7F32; }
.lb-user { flex: 1; }
.lb-name { font-size: 14px; }
.lb-streak { font-family: var(--font-mono); font-size: 11px; color: var(--text-3); }
.lb-score { font-family: var(--font-mono); font-size: 14px; font-weight: 500; }

/* ── Science / research ──────────────────────────────── */
.citation {
  padding: 16px 20px; margin-bottom: 12px;
  background: var(--card); border-left: 2px solid var(--beta);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 13px; color: var(--text-3); font-style: italic;
}
.citation strong { color: var(--text-2); font-style: normal; }

/* ── Story blocks ────────────────────────────────────── */
.story-block {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: center; padding: 80px 0;
  border-bottom: 1px solid var(--border);
}
.story-block:last-child { border-bottom: none; }
.story-block.reverse { direction: rtl; }
.story-block.reverse > * { direction: ltr; }
.story-eyebrow {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-4); margin-bottom: 16px;
}
.story-content h2 { margin-bottom: 20px; }
.story-content p { color: var(--text-2); line-height: 1.8; margin-bottom: 16px; }
.story-visual {
  aspect-ratio: 4/5;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; position: relative;
}

/* ── Responsive ──────────────────────────────────────── */
@media (max-width: 1024px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav__links, .nav__cta .btn:first-child { display: none; }
  .nav__burger { display: flex; }
  .hero { padding: 120px 0 64px; }
  .hero__title { font-size: clamp(40px, 10vw, 64px); }
  .section { padding: 64px 0; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .story-block { grid-template-columns: 1fr; gap: 32px; }
  .story-block.reverse { direction: ltr; }
  .footer__grid { grid-template-columns: 1fr; }
  .countdown { gap: 12px; }
}

/* ── Mobile nav drawer ───────────────────────────────── */
.nav-drawer {
  position: fixed; inset: 0; z-index: 999;
  background: var(--bg);
  display: flex; flex-direction: column;
  padding: 80px 32px 32px;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}
.nav-drawer.open { transform: none; }
.nav-drawer__links { list-style: none; }
.nav-drawer__links li { border-bottom: 1px solid var(--border); }
.nav-drawer__links a {
  display: block; padding: 16px 0;
  font-family: var(--font-serif); font-size: 24px;
  color: var(--text-2);
}

/* ── Misc utility ────────────────────────────────────── */
.text-center { text-align: center; }
.text-right { text-align: right; }
.mt-4 { margin-top: 4px; }
.mt-8 { margin-top: 8px; }
.mt-12 { margin-top: 12px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mt-64 { margin-top: 64px; }
.mb-4 { margin-bottom: 4px; }
.mb-8 { margin-bottom: 8px; }
.mb-12 { margin-bottom: 12px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.text-2 { color: var(--text-2); }
.text-3 { color: var(--text-3); }
.hidden { display: none; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
