/* ============ SOUND WAVE — step 3 ============ */
/* GPU-only: animates transform:scaleY, never triggers layout reflow */
.sound-wave-wrap {
  width: 108px; height: 72px; border-radius: 12px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: flex-end; justify-content: center;
  gap: 4px; padding: 0 14px; margin: 0 auto; overflow: hidden;
}
.sound-bar {
  flex: 1; max-width: 4px; min-width: 3px; height: 100%; border-radius: 2px 2px 1px 1px;
  transform: scaleY(var(--min, 0.12)); transform-origin: bottom;
  transition: transform 0.5s ease;
  will-change: transform;
}
.sound-bar.playing {
  animation: soundWave var(--dur, 0.9s) ease-in-out var(--delay, 0s) infinite alternate;
  transition: none;
}
@keyframes soundWave {
  from { transform: scaleY(var(--min, 0.1)); }
  to   { transform: scaleY(var(--max, 0.9)); }
}
/* Micallai marketing — editorial premium · mobile-first · motion-rich */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,300;9..144,400;9..144,500;9..144,600;9..144,700&family=Inter:wght@300;400;450;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  --bg: #F4F2EC;
  --paper: #FBFAF6;
  --ink: #14140F;
  --ink-soft: #2B2A24;
  --ink-muted: #6B6A60;
  --rule: #1414140F;
  --rule-strong: #14141422;
  --teal: #0D9488;
  --teal-deep: #0B6F66;
  --teal-tint: #E6F4F2;
  --amber: #B45309;
  --amber-tint: #FFF7E6;
  --night: #0E1110;
  --night-2: #15191A;
  --paper-warm: #EDE8DC;
  --shadow-sm: 0 1px 2px rgba(20,20,15,0.05);
  --shadow-md: 0 8px 32px rgba(20,20,15,0.08), 0 2px 4px rgba(20,20,15,0.04);
  --shadow-lg: 0 24px 60px rgba(20,20,15,0.12), 0 4px 12px rgba(20,20,15,0.06);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --pad-x: 20px;
}
@media (min-width: 720px) { :root { --pad-x: 32px; } }

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { background: var(--bg); color: var(--ink); font-family: 'Inter', system-ui, sans-serif; font-weight: 450; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
body { overflow-x: hidden; }
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font-family: inherit; }
a { color: inherit; text-decoration: none; }

.serif { font-family: 'Fraunces', Georgia, serif; }
.mono { font-family: 'JetBrains Mono', ui-monospace, monospace; }

/* ============ MOTION PRIMITIVES ============ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.96); }
  to { opacity: 1; transform: scale(1); }
}

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

/* ============ NAV ============ */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(244,242,236,0.78);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--rule);
  transition: padding 0.3s var(--ease-out);
}
.nav-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 14px var(--pad-x);
}
@media (min-width: 960px) {
  .nav-inner { display: grid; grid-template-columns: auto 1fr auto; gap: 32px; padding: 18px var(--pad-x); }
}
.logo {
  display: flex; align-items: center;
}
.logo-mark {
  height: 44px; width: auto;
  display: block;
  transition: transform 0.4s var(--ease-spring);
}
@media (min-width: 720px) { .logo-mark { height: 52px; } }
.logo-mark img { height: 100%; width: auto; display: block; object-fit: contain; }
.logo:hover .logo-mark { transform: scale(1.04); }
.nav-links {
  display: none;
}
@media (min-width: 960px) {
  .nav-links {
    display: flex; gap: 28px; align-items: center; justify-content: center;
    font-size: 14px; color: var(--ink-soft); font-weight: 500;
  }
}
.nav-links button { font-size: 14px; font-weight: 500; color: var(--ink-soft); position: relative; padding: 4px 0; transition: color 0.2s; }
.nav-links button::after {
  content: ""; position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: currentColor; transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}
.nav-links button:hover { color: var(--teal); }
.nav-links button:hover::after { transform: scaleX(1); }
.nav-right { display: flex; gap: 8px; align-items: center; }
@media (min-width: 720px) { .nav-right { gap: 12px; } }
.lang-toggle {
  display: flex; gap: 2px; padding: 3px;
  background: rgba(20,20,15,0.05); border-radius: 999px; font-size: 11px; font-weight: 600;
}
.lang-toggle button { padding: 5px 10px; border-radius: 999px; color: var(--ink-muted); transition: all 0.2s; }
.lang-toggle button.active { background: var(--paper); color: var(--ink); box-shadow: var(--shadow-sm); }
.nav-signin { display: none; }
@media (min-width: 960px) { .nav-signin { display: inline-flex; } }
.nav .lang-toggle, .nav .btn-primary { display: none; }
@media (min-width: 720px) { .nav .lang-toggle { display: flex; } }
@media (min-width: 960px) { .nav .btn-primary { display: inline-flex; } }
.nav-mobile-menu {
  display: grid; place-items: center; width: 36px; height: 36px; border-radius: 999px;
  background: rgba(20,20,15,0.05);
  transition: background 0.2s;
}
.nav-mobile-menu:hover { background: rgba(20,20,15,0.1); }
@media (min-width: 960px) { .nav-mobile-menu { display: none; } }

/* mobile nav drawer */
.mobile-drawer {
  position: fixed; inset: 0; z-index: 200;
  background: var(--bg);
  display: flex; flex-direction: column;
  animation: fadeIn 0.3s var(--ease-out);
}
.mobile-drawer-head { display: flex; justify-content: space-between; align-items: center; padding: 14px var(--pad-x); border-bottom: 1px solid var(--rule); }
.mobile-drawer-links { padding: 32px var(--pad-x); display: flex; flex-direction: column; gap: 4px; flex: 1; }
.mobile-drawer-links button {
  padding: 16px 0; text-align: left; font-family: 'Fraunces', serif; font-weight: 400;
  font-size: 32px; letter-spacing: -0.025em; border-bottom: 1px solid var(--rule);
  animation: fadeUp 0.5s var(--ease-out) backwards;
}
.mobile-drawer-foot { padding: var(--pad-x); display: flex; flex-direction: column; gap: 12px; border-top: 1px solid var(--rule); }
.mobile-drawer-foot .lang-toggle { align-self: center; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 18px; border-radius: 999px;
  font-size: 14px; font-weight: 600; letter-spacing: -0.1px;
  transition: transform 0.2s var(--ease-spring), box-shadow 0.3s, background 0.25s, color 0.25s;
  position: relative; overflow: hidden;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0) scale(0.98); }
.btn-primary { background: var(--ink); color: var(--paper); }
.btn-primary:hover { background: var(--teal); box-shadow: 0 8px 20px rgba(13,148,136,0.3); }
.btn-teal { background: var(--teal); color: white; box-shadow: 0 4px 14px rgba(13,148,136,0.35); }
.btn-teal:hover { background: var(--teal-deep); box-shadow: 0 10px 24px rgba(13,148,136,0.4); }
.btn-ghost { background: transparent; color: var(--ink); }
.btn-ghost:hover { background: rgba(20,20,15,0.05); }
.btn-outline { border: 1px solid var(--ink); background: transparent; color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--paper); }
.btn-lg { padding: 14px 24px; font-size: 15px; }
@media (min-width: 720px) { .btn-lg { padding: 14px 26px; } }

.btn-arrow { display: inline-block; transition: transform 0.4s var(--ease-out); }
.btn:hover .btn-arrow { transform: translateX(4px); }

/* ============ TYPE ============ */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--ink-muted);
}
.eyebrow::before { content: ""; width: 24px; height: 1px; background: currentColor; }
.eyebrow.no-rule::before { display: none; }
h2.section-title {
  font-family: 'Fraunces', serif; font-weight: 400;
  font-size: clamp(34px, 6vw, 64px); letter-spacing: -0.025em; line-height: 1.0;
}
h2.section-title em { font-style: italic; color: var(--teal-deep); font-weight: 400; display: inline-block; padding-inline-start: 0.18em; }

/* ============ HERO ============ */
.hero {
  position: relative; padding: 32px var(--pad-x) 56px; max-width: 1280px; margin: 0 auto;
}
@media (min-width: 720px) { .hero { padding: 48px var(--pad-x) 72px; } }
@media (min-width: 960px) { .hero { padding: 60px var(--pad-x) 80px; } }
.hero-grid {
  display: flex; flex-direction: column; gap: 32px; align-items: stretch;
}
@media (min-width: 960px) {
  .hero-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px; align-items: center; }
}
.hero-eyebrow { margin-bottom: 20px; animation: fadeUp 0.7s var(--ease-out) both; }
@media (min-width: 720px) { .hero-eyebrow { margin-bottom: 28px; } }
.hero h1 {
  font-family: 'Fraunces', serif; font-weight: 380;
  font-size: clamp(44px, 11vw, 92px); letter-spacing: -0.035em; line-height: 0.96;
  color: var(--ink);
}
.hero h1 em { font-style: italic; font-weight: 320; display: inline-block; padding-inline-start: 0.12em; }
.hero h1 .accent { color: var(--teal-deep); font-style: italic; font-weight: 400; }
.hero h1 .word + .word { padding-inline-start: 0.18em; }
.hero h1 .word { display: inline-block; animation: fadeUp 0.9s var(--ease-out) both; }
.hero h1 .word:nth-child(1) { animation-delay: 0.1s; }
.hero h1 .word:nth-child(2) { animation-delay: 0.18s; }
.hero h1 .word:nth-child(3) { animation-delay: 0.26s; }
.hero-lede {
  margin-top: 20px; max-width: 480px;
  font-size: 16px; line-height: 1.55; color: var(--ink-soft); font-weight: 450;
  animation: fadeUp 0.9s var(--ease-out) 0.4s both;
}
@media (min-width: 720px) { .hero-lede { margin-top: 28px; font-size: 18px; } }
.hero-cta-row { margin-top: 28px; display: flex; gap: 10px; align-items: center; flex-wrap: wrap; animation: fadeUp 0.9s var(--ease-out) 0.5s both; }
@media (min-width: 720px) { .hero-cta-row { margin-top: 36px; gap: 14px; } }
.hero-meta {
  margin-top: 24px; display: flex; gap: 16px; font-size: 12px; color: var(--ink-muted); flex-wrap: wrap;
  animation: fadeUp 0.9s var(--ease-out) 0.6s both;
}
@media (min-width: 720px) { .hero-meta { margin-top: 28px; gap: 24px; font-size: 13px; } }
.hero-meta span { display: flex; align-items: center; gap: 6px; }
.dot { width: 6px; height: 6px; border-radius: 50%; background: var(--teal); }

/* hero portrait */
.portrait-wrap { animation: fadeUp 1s var(--ease-out) 0.3s both; }
.portrait-stage {
  position: relative; aspect-ratio: 1/1.05;
  background: var(--portrait-bg, var(--teal));
  border-radius: 8px; overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: background 0.8s var(--ease-out);
}
@media (min-width: 720px) { .portrait-stage { aspect-ratio: 1/1.1; } }
.portrait-stage::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(120% 80% at 50% 0%, transparent 60%, rgba(0,0,0,0.18));
  pointer-events: none;
}
.portrait-img-wrap {
  position: absolute; inset: 0; overflow: hidden;
}
.portrait-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  animation: portraitIn 0.7s var(--ease-out);
}
@keyframes portraitIn {
  from { opacity: 0; transform: scale(1.04); filter: blur(6px); }
  to { opacity: 1; transform: scale(1); filter: blur(0); }
}
.portrait-meta {
  position: absolute; left: 16px; bottom: 16px; right: 16px; z-index: 2;
  display: flex; justify-content: space-between; align-items: flex-end;
  color: white;
}
@media (min-width: 720px) { .portrait-meta { left: 20px; bottom: 20px; right: 20px; } }
.portrait-meta .name { font-family: 'Fraunces', serif; font-size: 22px; font-weight: 500; letter-spacing: -0.02em; }
@media (min-width: 720px) { .portrait-meta .name { font-size: 28px; } }
.portrait-meta .role { font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; opacity: 0.85; }
.portrait-meta .num { font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 0.12em; opacity: 0.7; }
.portrait-controls {
  position: absolute; top: 14px; right: 14px; z-index: 3;
  display: flex; gap: 6px;
}
.portrait-controls button {
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,0.9); color: var(--ink);
  display: grid; place-items: center; font-size: 16px;
  backdrop-filter: blur(8px);
  transition: transform 0.3s var(--ease-spring), background 0.2s;
}
.portrait-controls button:hover { transform: scale(1.1); background: white; }
.portrait-controls button:active { transform: scale(0.95); }
.portrait-play {
  position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%);
  z-index: 3;
  background: rgba(255,255,255,0.95); color: var(--ink);
  border-radius: 999px; padding: 8px 14px 8px 10px;
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600; letter-spacing: -0.1px;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s;
}
.portrait-play:hover { transform: translateX(-50%) translateY(-2px); box-shadow: var(--shadow-lg); }
.portrait-play .play-icon { width: 16px; height: 16px; border-radius: 50%; background: var(--teal); display: grid; place-items: center; color: white; font-size: 8px; }
.wave-bars { display: inline-flex; align-items: center; gap: 2px; height: 14px; }
.wave-bars span { width: 2px; background: var(--teal); border-radius: 1px; animation: wave 0.9s ease-in-out infinite alternate; }
.wave-bars span:nth-child(1) { animation-delay: 0s; height: 50%; }
.wave-bars span:nth-child(2) { animation-delay: 0.1s; height: 80%; }
.wave-bars span:nth-child(3) { animation-delay: 0.2s; height: 60%; }
.wave-bars span:nth-child(4) { animation-delay: 0.3s; height: 90%; }
.wave-bars span:nth-child(5) { animation-delay: 0.15s; height: 40%; }
@keyframes wave { from { transform: scaleY(0.3); } to { transform: scaleY(1); } }

/* voice strip indicator (mobile + desktop): tiny progress dots */
.voice-strip {
  position: absolute; top: 14px; left: 14px; z-index: 3;
  display: flex; gap: 3px; padding: 4px 8px;
  background: rgba(0,0,0,0.25); border-radius: 999px; backdrop-filter: blur(8px);
}
.voice-strip span { width: 4px; height: 4px; border-radius: 50%; background: rgba(255,255,255,0.4); transition: all 0.3s; }
.voice-strip span.active { background: white; width: 12px; border-radius: 4px; }

/* ============ TICKER ============ */
.ticker {
  border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule);
  padding: 16px 0; overflow: hidden; background: var(--paper);
}
.ticker-track {
  display: flex; gap: 32px; align-items: center; white-space: nowrap;
  animation: ticker 35s linear infinite;
  font-family: 'Fraunces', serif; font-style: italic; font-weight: 400;
  font-size: 16px; color: var(--ink-soft);
}
@media (min-width: 720px) { .ticker-track { gap: 48px; font-size: 18px; } }
.ticker-track span { display: inline-flex; align-items: center; gap: 32px; }
@media (min-width: 720px) { .ticker-track span { gap: 48px; } }
.ticker-track .star { color: var(--teal); font-size: 12px; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============ SECTION GENERIC ============ */
section { max-width: 1280px; margin: 0 auto; padding: 64px var(--pad-x); }
@media (min-width: 720px) { section { padding: 80px var(--pad-x); } }
@media (min-width: 960px) { section { padding: 96px var(--pad-x); } }
section.section-dark { max-width: none; padding: 0; }
.section-head {
  display: grid; grid-template-columns: auto 1fr; gap: 16px; align-items: end;
  margin-bottom: 36px; padding-bottom: 20px; border-bottom: 1px solid var(--rule);
}
@media (min-width: 720px) { .section-head { gap: 24px; margin-bottom: 56px; padding-bottom: 24px; } }
.section-head .num { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--ink-muted); letter-spacing: 0.12em; padding-top: 8px; }
@media (min-width: 720px) { .section-head .num { font-size: 12px; } }
.section-head .meta { text-align: right; font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--ink-muted); letter-spacing: 0.12em; text-transform: uppercase; align-self: end; display: none; }
@media (min-width: 720px) { .section-head .meta { display: block; } }
.section-lede { max-width: 540px; color: var(--ink-soft); font-size: 15px; line-height: 1.6; margin-bottom: 28px; margin-top: -16px; }
@media (min-width: 720px) { .section-lede { font-size: 16px; margin-bottom: 40px; margin-top: -32px; } }

/* ============ STATS ============ */
.stats-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink);
}
@media (min-width: 960px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-cell {
  padding: 28px 16px; border-right: 1px solid var(--rule-strong); border-bottom: 1px solid var(--rule-strong);
  position: relative; overflow: hidden;
}
@media (min-width: 720px) { .stat-cell { padding: 40px 24px; } }
@media (min-width: 960px) {
  .stat-cell { border-bottom: none; }
  .stat-cell:last-child { border-right: none; }
}
@media (max-width: 959px) {
  .stat-cell:nth-child(2n) { border-right: none; }
  .stat-cell:nth-child(n+3) { border-bottom: none; }
}
.stat-num { font-family: 'Fraunces', serif; font-size: clamp(56px, 14vw, 80px); font-weight: 380; letter-spacing: -0.04em; line-height: 1; color: var(--teal-deep); }
.stat-num em { font-style: italic; }
.stat-num .pct { font-size: 0.45em; vertical-align: top; margin-left: 2px; }
.stat-label { margin-top: 12px; font-size: 12.5px; color: var(--ink-soft); line-height: 1.5; max-width: 220px; }
@media (min-width: 720px) { .stat-label { margin-top: 16px; font-size: 13px; } }

/* ============ HOW IT WORKS ============ */
.section-dark.how {
  background: var(--night);
  color: #F2EFE6;
  padding: 64px 0;
}
@media (min-width: 720px) { .section-dark.how { padding: 96px 0; } }
@media (min-width: 960px) { .section-dark.how { padding: 120px 0; } }
.how-inner { max-width: 1280px; margin: 0 auto; padding: 0 var(--pad-x); }
.how-head { display: grid; grid-template-columns: auto 1fr; gap: 16px; align-items: end; margin-bottom: 40px; padding-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,0.12); }
@media (min-width: 720px) { .how-head { gap: 24px; margin-bottom: 80px; padding-bottom: 24px; } }
.how-head .num { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: rgba(255,255,255,0.5); letter-spacing: 0.12em; padding-top: 8px; }
.how-head h2 { font-family: 'Fraunces', serif; font-weight: 380; font-size: clamp(34px, 6vw, 64px); letter-spacing: -0.025em; line-height: 1.0; color: white; }
.how-head h2 em { font-style: italic; color: #5EEAD4; display: inline-block; padding-inline-start: 0.18em; }

.how-stage {
  position: relative; padding: 16px;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0));
  border: 1px solid rgba(255,255,255,0.1); border-radius: 16px;
  overflow: hidden;
}
@media (min-width: 720px) { .how-stage { padding: 32px; border-radius: 24px; } }

.how-anim {
  position: relative;
  display: grid; grid-template-columns: 1fr; gap: 12px;
}
@media (min-width: 960px) { .how-anim { grid-template-columns: 1fr auto 1fr auto 1fr; gap: 20px; min-height: 360px; align-items: stretch; } }
.how-node {
  position: relative;
  border: 1px solid rgba(255,255,255,0.12); border-radius: 12px;
  background: rgba(255,255,255,0.03); padding: 20px;
  display: flex; flex-direction: column; gap: 16px;
  transition: all 0.6s var(--ease-out);
}
@media (min-width: 960px) { .how-node { padding: 24px; justify-content: space-between; } }
.how-node.active { border-color: rgba(94,234,212,0.5); background: rgba(94,234,212,0.05); box-shadow: 0 0 0 4px rgba(94,234,212,0.08); }
.how-node .step-num { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: rgba(255,255,255,0.4); letter-spacing: 0.12em; }
.how-node .step-title { font-family: 'Fraunces', serif; font-size: 22px; font-weight: 400; letter-spacing: -0.02em; color: white; margin-top: 6px; }
@media (min-width: 720px) { .how-node .step-title { font-size: 24px; margin-top: 12px; } }
.how-node .step-body { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.55; margin-top: 4px; }
.how-node .step-visual { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: rgba(94,234,212,0.9); letter-spacing: 0.06em; }

.how-arrow {
  display: grid; place-items: center; color: rgba(255,255,255,0.3); font-size: 22px;
  position: relative; height: 24px;
}
@media (min-width: 960px) { .how-arrow { height: auto; } }
.how-arrow .pulse {
  position: absolute; height: 1px; width: 60px; background: linear-gradient(90deg, transparent, #5EEAD4, transparent);
  animation: pulseFlow 2s ease-in-out infinite;
}
@media (max-width: 959px) {
  .how-arrow { transform: rotate(90deg); }
  .how-arrow .pulse { width: 40px; }
}
@keyframes pulseFlow { 0% { opacity: 0; transform: translateX(-30px); } 50% { opacity: 1; } 100% { opacity: 0; transform: translateX(30px); } }

.how-phone-icon {
  position: relative; width: 80px; height: 80px; border-radius: 50%;
  background: rgba(255,255,255,0.04);
  display: grid; place-items: center; margin: 0 auto;
}
.ring {
  position: absolute; inset: 0; border-radius: 50%; border: 1px solid rgba(94,234,212,0.4);
  animation: ringOut 2s ease-out infinite;
}
.ring:nth-child(2) { animation-delay: 0.5s; }
.ring:nth-child(3) { animation-delay: 1s; }
@keyframes ringOut { 0% { transform: scale(0.6); opacity: 1; } 100% { transform: scale(1.6); opacity: 0; } }

/* Note stream animation — step 3 */
.how-note {
  display: flex; align-items: center; gap: 7px;
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  color: rgba(94,234,212,0.85); letter-spacing: 0.04em;
  min-height: 18px;
  animation: noteReveal 2s ease-in-out forwards;
}
.how-note-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: #5EEAD4; flex-shrink: 0;
  animation: noteDotPulse 2s ease-in-out forwards;
}
@keyframes noteReveal {
  0%   { opacity: 0; transform: translateY(5px); }
  18%  { opacity: 1; transform: translateY(0); }
  72%  { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(-4px); }
}
@keyframes noteDotPulse {
  0%   { transform: scale(0); opacity: 0; }
  18%  { transform: scale(1); opacity: 1; }
  72%  { transform: scale(1); opacity: 1; }
  100% { transform: scale(0); opacity: 0; }
}

.how-controls { margin-top: 20px; display: flex; justify-content: space-between; align-items: center; }
.how-progress { display: flex; gap: 6px; }
.how-progress span { width: 28px; height: 3px; background: rgba(255,255,255,0.15); border-radius: 2px; transition: background 0.4s, width 0.4s; cursor: pointer; }
.how-progress span.active { background: #5EEAD4; width: 36px; }

/* ============ APP PREVIEW ============ */
.preview-grid {
  display: flex; flex-direction: column-reverse; gap: 40px;
}
@media (min-width: 960px) {
  .preview-grid { display: grid; grid-template-columns: 0.85fr 1fr; gap: 80px; align-items: center; }
}
.preview-text h3 { font-family: 'Fraunces', serif; font-weight: 380; font-size: clamp(28px, 5vw, 52px); letter-spacing: -0.025em; line-height: 1.05; }
.preview-text h3 em { font-style: italic; color: var(--teal-deep); display: inline-block; padding-inline-start: 0.18em; }
.preview-text p { margin-top: 16px; font-size: 15px; line-height: 1.6; color: var(--ink-soft); max-width: 460px; }
@media (min-width: 720px) { .preview-text p { margin-top: 20px; font-size: 16px; } }
.preview-features { margin-top: 24px; display: flex; flex-direction: column; gap: 16px; }
@media (min-width: 720px) { .preview-features { margin-top: 32px; gap: 20px; } }
.preview-feature { display: grid; grid-template-columns: 28px 1fr; gap: 14px; align-items: start; }
.preview-feature .marker { width: 28px; height: 28px; border-radius: 7px; background: var(--teal-tint); color: var(--teal-deep); display: grid; place-items: center; font-family: 'JetBrains Mono', monospace; font-size: 11px; font-weight: 600; }
.preview-feature .marker.amber { background: var(--amber-tint); color: var(--amber); }
.preview-feature h4 { font-size: 14.5px; font-weight: 600; }
.preview-feature p { margin-top: 4px; font-size: 13px; color: var(--ink-muted); }

.phone-frame {
  position: relative; width: 280px; aspect-ratio: 320/660; margin: 0 auto;
  background: #14140F; border-radius: 38px; padding: 7px;
  box-shadow: 0 30px 80px rgba(20,20,15,0.22), 0 8px 24px rgba(20,20,15,0.12);
}
@media (min-width: 720px) { .phone-frame { width: 320px; border-radius: 44px; padding: 8px; box-shadow: 0 40px 100px rgba(20,20,15,0.25), 0 8px 24px rgba(20,20,15,0.15); } }
.phone-screen {
  width: 100%; height: 100%; border-radius: 32px; overflow: hidden; background: var(--bg);
  display: flex; flex-direction: column;
}
@media (min-width: 720px) { .phone-screen { border-radius: 36px; } }
.phone-status { display: flex; justify-content: space-between; align-items: center; padding: 10px 22px 6px; font-size: 11px; font-weight: 600; }
.phone-header { padding: 6px 18px 12px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; border-bottom: 1px solid var(--rule); }
.phone-header .title { font-size: 16px; font-weight: 700; letter-spacing: -0.3px; }
.phone-header .sub { font-size: 11px; color: var(--ink-muted); }
.phone-header .add { width: 28px; height: 28px; border-radius: 8px; background: var(--teal); color: white; display: grid; place-items: center; margin-left: auto; font-size: 16px; }
.phone-body { flex: 1; overflow: hidden; padding: 10px; }
.vm-card { background: var(--paper); border-radius: 12px; padding: 12px; margin-bottom: 8px; box-shadow: var(--shadow-sm); border-left: 3px solid var(--vm-color, var(--teal)); animation: fadeUp 0.6s var(--ease-out) both; }
.vm-card:nth-child(1) { animation-delay: 0.1s; }
.vm-card:nth-child(2) { animation-delay: 0.2s; }
.vm-card:nth-child(3) { animation-delay: 0.3s; }
.vm-card:nth-child(4) { animation-delay: 0.4s; }
.vm-card .top { display: flex; justify-content: space-between; align-items: center; }
.vm-card .name { font-size: 12.5px; font-weight: 600; }
.vm-card .time { font-size: 10px; color: var(--ink-muted); font-family: 'JetBrains Mono', monospace; }
.vm-card .summary { font-size: 11px; color: var(--ink-soft); margin-top: 5px; line-height: 1.45; }
.vm-card .tags { margin-top: 8px; display: flex; gap: 5px; }
.vm-card .tag { font-size: 9px; font-weight: 600; padding: 2px 6px; border-radius: 4px; letter-spacing: 0.04em; text-transform: uppercase; }
.tag-high { background: #FEF2F2; color: #DC2626; }
.tag-med { background: #FFFBEB; color: #B45309; }
.tag-low { background: #F0FDF4; color: #15803D; }
.tag-cb { background: var(--teal-tint); color: var(--teal-deep); }
.phone-nav { display: flex; padding: 6px 0; border-top: 1px solid var(--rule); background: var(--paper); }
.phone-nav button { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 2px; font-size: 9.5px; color: var(--ink-muted); }
.phone-nav button.active { color: var(--teal); font-weight: 600; }
.phone-nav .icon { font-size: 14px; }

.phone-stack { position: relative; display: flex; justify-content: center; }
.phone-stack .phone-frame.back {
  display: none;
}
@media (min-width: 720px) {
  .phone-stack .phone-frame.back {
    display: block;
    position: absolute; left: -100px; top: 30px;
    transform: rotate(-6deg) scale(0.85);
    opacity: 0.85; z-index: 0;
  }
}
.phone-stack .phone-frame.front { position: relative; z-index: 1; }

/* ============ VOICES ============ */
.voices-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px;
}
@media (min-width: 480px) { .voices-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; } }
@media (min-width: 720px) { .voices-grid { grid-template-columns: repeat(4, 1fr); gap: 14px; } }
@media (min-width: 1080px) { .voices-grid { grid-template-columns: repeat(6, 1fr); gap: 16px; } }
.voice-card {
  position: relative; aspect-ratio: 0.78; border-radius: 10px;
  overflow: hidden; cursor: pointer;
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s;
}
.voice-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.voice-card img { width: 100%; height: 100%; object-fit: cover; object-position: center top; transition: transform 1.2s var(--ease-out); }
.voice-card:hover img { transform: scale(1.06); }
.voice-card .label {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 10px 12px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.6));
  color: white;
}
@media (min-width: 720px) { .voice-card .label { padding: 12px 14px; } }
.voice-card .label .name { font-family: 'Fraunces', serif; font-size: 16px; font-weight: 500; letter-spacing: -0.01em; }
@media (min-width: 720px) { .voice-card .label .name { font-size: 18px; } }
.voice-card .label .animal { font-family: 'JetBrains Mono', monospace; font-size: 9px; letter-spacing: 0.16em; text-transform: uppercase; opacity: 0.85; }
.voice-card .tier-badge {
  position: absolute; top: 8px; right: 8px;
  font-family: 'JetBrains Mono', monospace; font-size: 9px; letter-spacing: 0.1em;
  padding: 2px 6px; border-radius: 4px; background: rgba(255,255,255,0.92); color: var(--ink); text-transform: uppercase; font-weight: 600;
}
.voice-card .tier-badge.prem { background: rgba(20,20,15,0.85); color: white; }

/* ============ PRICING ============ */
.pricing-grid {
  display: flex; flex-direction: column;
  border: 1px solid var(--ink);
  background: var(--paper);
}
@media (min-width: 960px) { .pricing-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0; } }
.price-card { padding: 28px 24px; border-bottom: 1px solid var(--rule-strong); display: flex; flex-direction: column; }
@media (min-width: 720px) { .price-card { padding: 36px 28px; } }
@media (min-width: 960px) { .price-card { padding: 40px 32px; border-right: 1px solid var(--rule-strong); border-bottom: none; } }
.price-card:last-child { border-bottom: none; }
@media (min-width: 960px) { .price-card:last-child { border-right: none; } }
.price-card.featured { background: var(--ink); color: var(--paper); position: relative; }
.price-card.featured .feature-icon { color: #5EEAD4; }
.price-card.featured .price-amount { color: white; }
.price-card.featured .price-amount em { color: #5EEAD4; }
.stat-num em { padding-inline-start: 0.04em; }
.price-tier { font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-muted); }
.price-card.featured .price-tier { color: rgba(255,255,255,0.6); }
.price-name { font-family: 'Fraunces', serif; font-size: 32px; font-weight: 400; letter-spacing: -0.02em; margin-top: 4px; }
@media (min-width: 720px) { .price-name { font-size: 36px; } }
.price-amount { font-family: 'Fraunces', serif; font-size: 56px; font-weight: 380; letter-spacing: -0.04em; line-height: 1; margin-top: 24px; color: var(--ink); }
@media (min-width: 720px) { .price-amount { font-size: 64px; margin-top: 28px; } }
.price-amount em { font-size: 26px; color: var(--ink-muted); font-style: normal; vertical-align: top; margin-left: 4px; }
.price-amount .per { font-size: 14px; color: var(--ink-muted); font-style: normal; font-weight: 400; }
.price-tagline { font-size: 13.5px; color: var(--ink-soft); margin-top: 10px; }
.price-card.featured .price-tagline { color: rgba(255,255,255,0.7); }
.price-features { list-style: none; margin-top: 24px; display: flex; flex-direction: column; gap: 10px; }
@media (min-width: 720px) { .price-features { margin-top: 32px; gap: 12px; } }
.price-features li { display: grid; grid-template-columns: 18px 1fr; gap: 10px; align-items: start; font-size: 13px; line-height: 1.5; }
@media (min-width: 720px) { .price-features li { font-size: 13.5px; } }
.feature-icon { color: var(--teal-deep); font-weight: 600; }
.price-cta { margin-top: 24px; padding-top: 0; }
@media (min-width: 720px) { .price-cta { margin-top: auto; padding-top: 32px; } }
.price-cta .btn { width: 100%; justify-content: center; }
.featured-flag { position: absolute; top: -1px; right: -1px; background: var(--teal); color: white; font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; padding: 6px 12px; font-weight: 600; }

/* ============ TESTIMONIALS ============ */
.testimonials-grid {
  display: grid; grid-template-columns: 1fr; gap: 16px;
}
@media (min-width: 720px) { .testimonials-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; } }
@media (min-width: 960px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; } }
.testimonial {
  padding: 24px; background: var(--paper); border: 1px solid var(--rule);
  border-radius: 14px; display: flex; flex-direction: column; gap: 16px;
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s;
}
@media (min-width: 720px) { .testimonial { padding: 32px; gap: 20px; } }
.testimonial:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testimonial .quote { font-family: 'Fraunces', serif; font-size: 16px; line-height: 1.5; font-weight: 400; letter-spacing: -0.01em; color: var(--ink); }
@media (min-width: 720px) { .testimonial .quote { font-size: 18px; line-height: 1.45; } }
.testimonial .author { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.testimonial .avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--paper-warm); display: grid; place-items: center; font-family: 'Fraunces', serif; font-weight: 600; font-size: 15px; color: var(--ink); }
.testimonial .author .name { font-size: 13px; font-weight: 600; }
.testimonial .author .role { font-size: 12px; color: var(--ink-muted); }
.placeholder-flag { font-family: 'JetBrains Mono', monospace; font-size: 9px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-muted); margin-bottom: -4px; }

/* ============ VERTICALS ============ */
.verticals-grid {
  display: grid; grid-template-columns: 1fr; gap: 1px;
  background: var(--rule-strong); border: 1px solid var(--rule-strong);
}
@media (min-width: 720px) { .verticals-grid { grid-template-columns: repeat(3, 1fr); } }
.vertical-card {
  background: var(--paper); padding: 28px;
  display: flex; flex-direction: column; gap: 12px;
  cursor: pointer; transition: background 0.4s, transform 0.4s var(--ease-out);
  text-align: left;
}
@media (min-width: 720px) { .vertical-card { padding: 32px; gap: 14px; } }
.vertical-card:hover { background: var(--paper-warm); }
.vertical-card .vc-num { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--ink-muted); letter-spacing: 0.12em; }
.vertical-card .vc-title { font-family: 'Fraunces', serif; font-size: 24px; font-weight: 400; letter-spacing: -0.02em; }
@media (min-width: 720px) { .vertical-card .vc-title { font-size: 28px; } }
.vertical-card .vc-body { font-size: 13px; color: var(--ink-soft); line-height: 1.55; }
@media (min-width: 720px) { .vertical-card .vc-body { font-size: 13.5px; } }
.vertical-card .vc-stat { margin-top: 8px; font-size: 12px; color: var(--teal-deep); font-weight: 600; }
.vertical-card .vc-arrow { margin-top: 8px; font-size: 13px; color: var(--ink); display: flex; align-items: center; gap: 6px; transition: gap 0.3s var(--ease-out); }
.vertical-card:hover .vc-arrow { gap: 10px; }

/* ============ CTA / FOOTER ============ */
.cta-final {
  background: var(--ink); color: var(--paper); padding: 80px var(--pad-x);
  text-align: center;
  position: relative; overflow: hidden;
}
@media (min-width: 720px) { .cta-final { padding: 120px var(--pad-x); } }
.cta-final::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(60% 60% at 50% 30%, rgba(94,234,212,0.08), transparent 70%);
  pointer-events: none;
}
.cta-final-inner { max-width: 760px; margin: 0 auto; position: relative; }
.cta-final h2 { font-family: 'Fraunces', serif; font-weight: 380; font-size: clamp(40px, 8vw, 80px); letter-spacing: -0.03em; line-height: 1.0; }
.cta-final h2 em { font-style: italic; color: #5EEAD4; display: inline-block; padding-inline-start: 0.18em; }
.cta-final p { margin-top: 20px; font-size: 16px; color: rgba(255,255,255,0.7); max-width: 520px; margin-left: auto; margin-right: auto; line-height: 1.55; }
@media (min-width: 720px) { .cta-final p { margin-top: 24px; font-size: 17px; } }
.cta-final .btn-row { margin-top: 32px; display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
@media (min-width: 720px) { .cta-final .btn-row { margin-top: 40px; gap: 12px; } }
.cta-final .btn-teal { background: white; color: var(--ink); }
.cta-final .btn-teal:hover { background: #5EEAD4; color: var(--ink); }
.cta-final .btn-outline { border-color: rgba(255,255,255,0.3); color: white; }
.cta-final .btn-outline:hover { background: white; color: var(--ink); }

footer { background: var(--night-2); color: rgba(255,255,255,0.6); padding: 48px var(--pad-x) 32px; font-size: 13px; }
@media (min-width: 720px) { footer { padding: 64px var(--pad-x) 40px; } }
.footer-inner { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.footer-inner > div:first-child { grid-column: 1 / -1; }
@media (min-width: 720px) { .footer-inner { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; } .footer-inner > div:first-child { grid-column: auto; } }
.footer-col h5 { color: white; font-size: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 14px; }
@media (min-width: 720px) { .footer-col h5 { margin-bottom: 18px; } }
.footer-col a { display: block; padding: 5px 0; transition: color 0.2s; }
.footer-col a:hover { color: white; }
.footer-bottom { max-width: 1280px; margin: 32px auto 0; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.1); display: flex; justify-content: space-between; font-size: 11px; flex-wrap: wrap; gap: 8px; }

/* ============ REGISTER ============ */
.register-overlay {
  min-height: 100vh; display: grid; grid-template-columns: 1fr;
}
@media (min-width: 960px) { .register-overlay { grid-template-columns: 1fr 1fr; } }
.register-side {
  display: none;
  background: var(--ink); color: white; padding: 48px;
  flex-direction: column; justify-content: space-between;
  position: relative; overflow: hidden;
}
@media (min-width: 960px) { .register-side { display: flex; } }
.register-side::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(60% 60% at 30% 30%, rgba(94,234,212,0.12), transparent 60%);
}
.register-side > * { position: relative; z-index: 1; }
.register-side .quote-block { font-family: 'Fraunces', serif; font-size: 32px; font-weight: 380; letter-spacing: -0.02em; line-height: 1.2; max-width: 480px; }
.register-side .quote-block em { color: #5EEAD4; font-style: italic; display: inline-block; padding-inline-start: 0.12em; }
.register-form-wrap { padding: 32px var(--pad-x); display: grid; place-items: center; background: var(--bg); }
@media (min-width: 720px) { .register-form-wrap { padding: 48px; } }
.register-form { width: 100%; max-width: 420px; animation: fadeUp 0.6s var(--ease-out); }
.register-form h2 { font-family: 'Fraunces', serif; font-weight: 400; font-size: 32px; letter-spacing: -0.025em; line-height: 1.05; }
@media (min-width: 720px) { .register-form h2 { font-size: 40px; } }
.register-form .lede { margin-top: 10px; font-size: 14px; color: var(--ink-muted); }
.field-group { margin-top: 20px; display: flex; flex-direction: column; gap: 6px; }
.field-group label { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--ink-muted); }
.field-group input { padding: 13px 14px; border: 1px solid var(--rule-strong); border-radius: 10px; background: var(--paper); font-size: 15px; transition: border-color 0.2s, box-shadow 0.2s; }
.field-group input:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(13,148,136,0.12); }
.field-group .error { font-size: 11px; color: #DC2626; }
.register-cta { margin-top: 24px; }
.register-cta .btn { width: 100%; justify-content: center; padding: 14px 0; }
.register-meta { margin-top: 14px; font-size: 12px; color: var(--ink-muted); text-align: center; }
.register-success {
  background: var(--teal-tint); border: 1px solid #99E2DA; border-radius: 12px; padding: 24px;
  display: flex; gap: 16px; align-items: start;
  animation: scaleIn 0.5s var(--ease-spring);
}
.register-success .check { width: 36px; height: 36px; border-radius: 50%; background: var(--teal); color: white; display: grid; place-items: center; font-size: 18px; font-weight: 700; flex-shrink: 0; }
.register-success h3 { font-family: 'Fraunces', serif; font-size: 22px; font-weight: 500; }
.register-success p { font-size: 13.5px; color: var(--ink-soft); margin-top: 4px; }
.meta-link { background: none; border: none; padding: 0; font-size: inherit; font-family: inherit; color: var(--teal); cursor: pointer; text-decoration: underline; text-decoration-color: rgba(13,148,136,0.35); text-underline-offset: 2px; }
.meta-link:hover { text-decoration-color: var(--teal); }

/* ============ POLICY PAGES ============ */
.policy-nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(244,242,236,0.92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--rule);
}
.policy-nav-inner {
  max-width: 800px; margin: 0 auto;
  display: flex; align-items: center; gap: 16px;
  padding: 14px var(--pad-x);
}
.policy-doc {
  max-width: 800px; margin: 0 auto;
  padding: 56px var(--pad-x) 80px;
}
.policy-hero {
  padding-bottom: 40px;
  border-bottom: 1px solid var(--rule-strong);
  margin-bottom: 48px;
}
.policy-title {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: clamp(36px, 5vw, 56px);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 12px;
}
.policy-updated {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--ink-muted);
  text-transform: uppercase;
}
.policy-body h2 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: 20px;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-top: 40px;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--rule);
}
.policy-body p {
  font-size: 15px; line-height: 1.75;
  color: var(--ink-soft); margin-bottom: 14px;
}
.policy-body ul {
  padding-left: 20px; margin-bottom: 16px;
}
.policy-body li {
  font-size: 15px; line-height: 1.7;
  color: var(--ink-soft); margin-bottom: 6px;
}
.policy-body a {
  color: var(--teal);
  text-decoration: underline;
  text-decoration-color: rgba(13,148,136,0.35);
  text-underline-offset: 2px;
  transition: text-decoration-color 0.2s;
}
.policy-body a:hover { text-decoration-color: var(--teal); }
.policy-body strong { color: var(--ink); font-weight: 600; }
.policy-table {
  width: 100%; border-collapse: collapse;
  margin: 20px 0 28px; font-size: 14px;
  border-radius: 8px; overflow: hidden;
}
.policy-table th {
  text-align: left; padding: 10px 16px;
  background: var(--ink); color: var(--paper);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.07em; text-transform: uppercase;
}
.policy-table td {
  padding: 10px 16px;
  border-bottom: 1px solid var(--rule);
  color: var(--ink-soft); vertical-align: top;
}
.policy-table tbody tr:last-child td { border-bottom: none; }
.policy-table tbody tr:nth-child(even) td { background: rgba(20,20,15,0.025); }
.policy-footer {
  border-top: 1px solid var(--rule);
  padding: 32px var(--pad-x);
  text-align: center;
  color: var(--ink-muted);
  font-size: 13px;
  display: flex; flex-direction: column; gap: 6px; align-items: center;
}
.policy-footer a { color: var(--teal); }
.footer-policy-link {
  display: block; background: none; border: none; padding: 0;
  font-size: 14px; color: inherit; font-family: inherit;
  cursor: pointer; text-align: left; transition: color 0.2s;
  margin-bottom: 10px;
}
.footer-policy-link:hover { color: var(--teal); }

/* ============ COOKIE BANNER ============ */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 500;
  background: var(--night);
  border-top: 1px solid rgba(255,255,255,0.08);
  animation: fadeUp 0.4s var(--ease-out);
}
.cookie-banner-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 16px var(--pad-x);
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
}
.cookie-banner-text {
  font-size: 14px; color: rgba(255,255,255,0.7);
  line-height: 1.5; margin: 0;
}
.cookie-banner-text strong { color: rgba(255,255,255,0.9); font-weight: 600; }
.cookie-link {
  background: none; border: none; padding: 0;
  font-size: inherit; font-family: inherit; cursor: pointer;
  color: var(--teal);
  text-decoration: underline;
  text-decoration-color: rgba(13,148,136,0.4);
  text-underline-offset: 2px;
}
.cookie-link:hover { text-decoration-color: var(--teal); }
