/* ─── AAWAKEN.APP — Shared Stylesheet ──────────────────────────────────── */

@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@300;600;700&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400;1,600&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300&family=DM+Mono:wght@400;500&display=swap');

/* ─── Tokens ──────────────────────────────────────────────────────────── */

:root {
  --bg:         #0E0720;
  --surface:    #180E30;
  --surface-2:  #221448;
  --surface-3:  #2F176D;
  --violet:     #7544DE;
  --violet-soft:#A78BFA;
  --gold:       #FFC64B;
  --gold-soft:  #FFD97A;
  --dawn:       #F5A176;
  --text:       #EDE8FF;
  --text-2:     #9B8FCC;
  --text-3:     #534980;
  --border:     rgba(117,68,222,.18);
  --border-2:   rgba(117,68,222,.32);
  --f-display:  'Cormorant Garamond', 'Times New Roman', Georgia, serif;
  --f-body:     'DM Sans', system-ui, -apple-system, sans-serif;
  --f-mono:     'DM Mono', 'Courier New', monospace;
  --f-wordmark: 'Josefin Sans', system-ui, sans-serif;
  --r-sm: 8px;  --r-md: 16px;  --r-lg: 24px;  --r-xl: 32px;
}

/* ─── 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(--f-body);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ─── Container ───────────────────────────────────────────────────────── */

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ─── Navigation ──────────────────────────────────────────────────────── */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem 0;
  transition: background .3s, padding .3s, border-color .3s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(14,7,32,.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: .875rem 0;
  border-bottom-color: var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: .625rem;
  color: var(--text);
}
.brand-logo {
  height: 30px;
  width: auto;
  flex-shrink: 0;
  display: block;
}
.brand-name {
  font-family: var(--f-wordmark);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--text);
  line-height: 1;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-size: .875rem;
  font-weight: 400;
  color: var(--text-2);
  letter-spacing: .01em;
  transition: color .2s;
}
.nav-links a:hover { color: var(--text); }
.nav-cta {
  background: var(--gold) !important;
  color: #1A1200 !important;
  padding: .5rem 1.125rem !important;
  border-radius: var(--r-sm) !important;
  font-weight: 600 !important;
  font-size: .875rem !important;
  transition: opacity .2s !important;
}
.nav-cta:hover { opacity: .85 !important; }
.menu-btn {
  display: none;
  background: none;
  border: 1px solid var(--border-2);
  color: var(--text);
  font-size: 1.125rem;
  cursor: pointer;
  padding: .375rem .625rem;
  border-radius: var(--r-sm);
}
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--text);
  transition: color .2s;
}
.mobile-nav a:hover { color: var(--gold); }
.mobile-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  background: none;
  border: 1px solid var(--border-2);
  color: var(--text);
  font-size: 1rem;
  cursor: pointer;
  padding: .375rem .625rem;
  border-radius: var(--r-sm);
}

/* ─── Buttons ─────────────────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .875rem 1.75rem;
  border-radius: var(--r-sm);
  font-family: var(--f-body);
  font-size: .9375rem;
  font-weight: 600;
  letter-spacing: .01em;
  transition: opacity .2s, transform .15s;
  cursor: pointer;
  border: none;
  text-decoration: none;
}
.btn:hover { opacity: .88; transform: translateY(-1px); }
.btn-primary { background: var(--gold); color: #1A1200; }
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-2);
}
.btn-ghost:hover { border-color: var(--violet-soft); background: rgba(139,92,246,.08); }

/* ─── Hero ────────────────────────────────────────────────────────────── */

.hero {
  min-height: 100svh;
  padding: 7rem 0 5rem;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(155deg, #7544DE 0%, #3A1A80 45%, #0E0720 100%);
}
.hero::before {
  content: '';
  position: absolute;
  top: -10%; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 500px;
  background: radial-gradient(ellipse, rgba(245,161,118,.13) 0%, transparent 65%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0; top: 60%;
  background: linear-gradient(to bottom, transparent, var(--bg));
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  position: relative;
  z-index: 1;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--f-mono);
  font-size: .7rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.eyebrow-dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse-dot 2.8s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,100% { opacity:1; transform:scale(1); }
  50% { opacity:.45; transform:scale(.65); }
}
.hero h1 {
  font-family: var(--f-display);
  font-size: clamp(2.75rem, 5vw, 4.375rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -.01em;
  margin-bottom: 1.5rem;
  text-wrap: balance;
}
.hero h1 em {
  font-style: italic;
  font-weight: 600;
  background: linear-gradient(100deg, var(--dawn) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero > .container > .hero-grid > .hero-copy > p {
  font-size: 1.0625rem;
  color: var(--text-2);
  max-width: 42ch;
  margin-bottom: 2rem;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem 1.5rem;
}
.hero-proof span {
  font-size: .8125rem;
  color: var(--text-2);
  display: flex;
  align-items: center;
  gap: .375rem;
}
.check { color: var(--gold); }

/* ─── Phone mockup ────────────────────────────────────────────────────── */

.phone-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.phone-glow {
  position: absolute;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(109,40,217,.3) 0%, rgba(251,146,60,.08) 45%, transparent 70%);
  border-radius: 50%;
  filter: blur(18px);
}
.phone {
  position: relative;
  z-index: 1;
  width: 248px;
  background: #0E0C24;
  border-radius: 40px;
  padding: 14px 10px 18px;
  box-shadow:
    0 0 0 1px rgba(139,92,246,.32),
    0 0 0 2px rgba(139,92,246,.08),
    0 32px 80px rgba(0,0,0,.65),
    inset 0 0 0 1px rgba(255,255,255,.04);
}
.phone-island {
  width: 82px; height: 22px;
  background: #000;
  border-radius: 12px;
  margin: 0 auto 10px;
}
.phone-screen {
  background: linear-gradient(155deg, #1C0A34 0%, #100922 50%, #0C0820 100%);
  border-radius: 28px;
  overflow: hidden;
  padding: 14px 10px 10px;
  position: relative;
}
.phone-screen::before {
  content: '';
  position: absolute;
  top: -40px; left: 50%;
  transform: translateX(-50%);
  width: 160px; height: 90px;
  background: radial-gradient(ellipse, rgba(251,146,60,.22) 0%, transparent 70%);
}
.s-label {
  font-family: var(--f-mono);
  font-size: .5rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(245,158,11,.75);
  margin-bottom: 2px;
  position: relative;
}
.s-greeting {
  font-size: .625rem;
  font-weight: 600;
  color: rgba(238,232,255,.9);
  margin-bottom: 10px;
  position: relative;
}
.s-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(139,92,246,.16);
  border-radius: 10px;
  padding: 8px 10px;
  margin-bottom: 6px;
}
.s-card:last-child { margin-bottom: 0; }
.s-card.featured {
  background: linear-gradient(135deg,rgba(109,40,217,.22),rgba(251,146,60,.09));
  border-color: rgba(139,92,246,.3);
}
.s-tag {
  font-family: var(--f-mono);
  font-size: .44rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(245,158,11,.8);
  margin-bottom: 2px;
}
.s-title {
  font-size: .5625rem;
  font-weight: 600;
  color: rgba(238,232,255,.9);
  margin-bottom: 2px;
}
.s-desc {
  font-size: .4375rem;
  color: rgba(155,143,204,.8);
  line-height: 1.4;
}

/* ─── Section base ────────────────────────────────────────────────────── */

.section      { padding: 6rem 0; }
.section-alt  { padding: 6rem 0; background: var(--surface); }
.section-head {
  text-align: center;
  max-width: 520px;
  margin: 0 auto 3.5rem;
}
.kicker {
  font-family: var(--f-mono);
  font-size: .7rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--violet-soft);
  margin-bottom: .75rem;
}
.section-head h2 {
  font-family: var(--f-display);
  font-size: clamp(1.875rem, 3.5vw, 2.75rem);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 1rem;
  text-wrap: balance;
}
.section-head h2 em {
  font-style: italic;
  font-weight: 600;
  color: var(--gold-soft);
}
.section-head p {
  color: var(--text-2);
  font-size: 1.0625rem;
  line-height: 1.65;
}

/* ─── Idea band ───────────────────────────────────────────────────────── */

.idea-band {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  padding: 1.5rem 0;
}
.idea-band strong {
  font-family: var(--f-display);
  font-size: clamp(1.5rem, 3.2vw, 2.375rem);
  font-weight: 300;
  font-style: italic;
  color: var(--text);
  line-height: 1.3;
  text-wrap: balance;
}

/* ─── Features grid ───────────────────────────────────────────────────── */

.features-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1.25rem;
}
.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 1.75rem;
  transition: border-color .25s, transform .2s;
}
.feature-card:hover {
  border-color: var(--border-2);
  transform: translateY(-2px);
}
.feature-icon { font-size: 1.375rem; margin-bottom: .875rem; display: block; }
.feature-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: .5rem;
  color: var(--text);
}
.feature-card p {
  font-size: .9375rem;
  color: var(--text-2);
  line-height: 1.6;
}

/* ─── My Voice section ────────────────────────────────────────────────── */

.voice-section {
  position: relative;
  overflow: hidden;
}
.voice-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(109,40,217,.16) 0%, transparent 60%),
    radial-gradient(ellipse at 25% 80%, rgba(251,146,60,.07) 0%, transparent 50%);
  pointer-events: none;
}
.voice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 5rem;
  position: relative;
  z-index: 1;
}
.voice-copy h2 {
  font-family: var(--f-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 1rem;
  text-wrap: balance;
}
.voice-copy h2 em {
  font-style: italic;
  font-weight: 600;
  color: var(--gold-soft);
}
.voice-copy > p {
  color: var(--text-2);
  font-size: 1.0625rem;
  line-height: 1.65;
  max-width: 40ch;
}
.voice-steps { display: flex; flex-direction: column; gap: 1.125rem; margin-top: 2rem; }
.voice-step  { display: flex; align-items: flex-start; gap: 1rem; }
.step-num {
  width: 28px; height: 28px; flex-shrink: 0;
  background: var(--surface-2);
  border: 1px solid var(--border-2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-mono);
  font-size: .6875rem;
  color: var(--violet-soft);
  margin-top: 2px;
}
.voice-step p { color: var(--text-2); font-size: .9375rem; line-height: 1.55; }
.voice-step strong { color: var(--text); }
.voice-card {
  background: var(--surface-2);
  border: 1px solid var(--border-2);
  border-radius: var(--r-lg);
  padding: 2rem;
  position: relative;
  overflow: hidden;
}
.voice-card::after {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(109,40,217,.18) 0%, transparent 70%);
}
.voice-waveform {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 44px;
  margin-bottom: 1.25rem;
}
.wave-bar {
  width: 3px;
  background: var(--violet-soft);
  border-radius: 2px;
  opacity: .65;
  animation: wave 1.5s ease-in-out infinite;
}
.wave-bar:nth-child(1)  { height:12px; animation-delay:0s;    }
.wave-bar:nth-child(2)  { height:22px; animation-delay:.1s;   }
.wave-bar:nth-child(3)  { height:34px; animation-delay:.2s;   }
.wave-bar:nth-child(4)  { height:28px; animation-delay:.3s;   }
.wave-bar:nth-child(5)  { height:40px; animation-delay:.4s;   }
.wave-bar:nth-child(6)  { height:32px; animation-delay:.5s;   }
.wave-bar:nth-child(7)  { height:38px; animation-delay:.6s;   }
.wave-bar:nth-child(8)  { height:26px; animation-delay:.7s;   }
.wave-bar:nth-child(9)  { height:18px; animation-delay:.8s;   }
.wave-bar:nth-child(10) { height:30px; animation-delay:.9s;   }
.wave-bar:nth-child(11) { height:36px; animation-delay:1.0s;  }
.wave-bar:nth-child(12) { height:20px; animation-delay:1.1s;  }
@keyframes wave {
  0%,100% { transform:scaleY(1); opacity:.65; }
  50%      { transform:scaleY(.35); opacity:.25; }
}
.voice-label {
  font-family: var(--f-mono);
  font-size: .6875rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .375rem;
}
.voice-quote {
  font-family: var(--f-display);
  font-size: 1.375rem;
  font-style: italic;
  font-weight: 300;
  color: var(--text);
  line-height: 1.45;
  margin-bottom: .875rem;
}
.voice-meta { font-size: .8125rem; color: var(--text-2); }

/* ─── Trust section ───────────────────────────────────────────────────── */

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}
.trust-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 2rem;
}
.trust-num {
  font-family: var(--f-display);
  font-size: 2.5rem;
  font-style: italic;
  color: var(--gold-soft);
  opacity: .6;
  margin-bottom: .5rem;
}
.trust-card h3 { font-size: 1rem; font-weight: 600; margin-bottom: .5rem; }
.trust-card p  { font-size: .9375rem; color: var(--text-2); line-height: 1.6; }

/* ─── CTA section ─────────────────────────────────────────────────────── */

.cta-section {
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 110%, rgba(255,198,75,.1) 0%, transparent 55%),
    radial-gradient(ellipse at 50% -10%, rgba(117,68,222,.15) 0%, transparent 55%);
}
.cta-card {
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: var(--r-xl);
  padding: 4.5rem 3rem;
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}
.cta-card h2 {
  font-family: var(--f-display);
  font-size: clamp(1.875rem, 3.5vw, 2.875rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.2;
  margin-bottom: 1rem;
  text-wrap: balance;
}
.cta-card > p {
  color: var(--text-2);
  font-size: 1.0625rem;
  max-width: 40ch;
  margin: 0 auto 2rem;
  line-height: 1.65;
}
.cta-note { margin-top: 1rem; font-size: .8125rem; color: var(--text-3); }

/* ─── Footer ──────────────────────────────────────────────────────────── */

.footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 3.5rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}
.footer-tagline {
  font-size: .875rem;
  color: var(--text-2);
  line-height: 1.55;
  max-width: 22ch;
  margin-top: .75rem;
}
.footer-col h4 {
  font-family: var(--f-mono);
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 1rem;
}
.footer-links { display: flex; flex-direction: column; gap: .625rem; }
.footer-links a { font-size: .9375rem; color: var(--text-2); transition: color .2s; }
.footer-links a:hover { color: var(--text); }
.copyright {
  font-size: .8125rem;
  color: var(--text-3);
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
}

/* ─── Legal / Support pages ───────────────────────────────────────────── */

.page-header {
  padding: 8rem 0 3rem;
  border-bottom: 1px solid var(--border);
}
.page-header h1 {
  font-family: var(--f-display);
  font-size: clamp(2.25rem, 4.5vw, 3.25rem);
  font-weight: 300;
  font-style: italic;
  margin: .5rem 0 .5rem;
  text-wrap: balance;
}
.page-header .updated {
  font-family: var(--f-mono);
  font-size: .7rem;
  color: var(--text-3);
  letter-spacing: .05em;
}
.page-content {
  padding: 3rem 0 6rem;
  max-width: 720px;
}
.page-content h2 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text);
  margin: 2.5rem 0 .75rem;
}
.page-content h2:first-child { margin-top: 0; }
.page-content p {
  font-size: .9375rem;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: .875rem;
}
.page-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: .875rem;
}
.page-content ul li {
  font-size: .9375rem;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: .375rem;
}
.page-content a { color: var(--violet-soft); text-decoration: underline; text-underline-offset: 3px; }

/* ─── Support FAQ ─────────────────────────────────────────────────────── */

.faq-list { margin-top: 2rem; border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  color: var(--text);
  font-family: var(--f-body);
  font-size: 1rem;
  font-weight: 500;
  text-align: left;
  padding: 1.25rem 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-q:focus-visible { outline: 2px solid var(--violet-soft); outline-offset: 2px; }
.faq-chevron { font-size: .75rem; color: var(--text-3); transition: transform .2s; flex-shrink: 0; }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-a {
  display: none;
  padding-bottom: 1.25rem;
  font-size: .9375rem;
  color: var(--text-2);
  line-height: 1.7;
}
.faq-item.open .faq-a { display: block; }

/* ─── Delete account page ─────────────────────────────────────────────── */

.steps-list { display: flex; flex-direction: column; gap: 1.125rem; margin: 1.5rem 0; }
.step-row   { display: flex; gap: 1rem; align-items: flex-start; }
.step-badge {
  width: 32px; height: 32px; flex-shrink: 0;
  background: var(--surface-2);
  border: 1px solid var(--border-2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-mono);
  font-size: .75rem;
  color: var(--violet-soft);
}
.step-row-text p { margin-bottom: 0; font-size: .9375rem; color: var(--text-2); line-height: 1.6; }
.step-row-text strong { color: var(--text); }
.contact-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 1.5rem;
  margin-top: 2rem;
}
.contact-card p { margin-bottom: .75rem; }
.contact-card a { color: var(--violet-soft); text-decoration: underline; text-underline-offset: 3px; }

/* ─── Responsive ──────────────────────────────────────────────────────── */

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
  .phone-wrap { order: -1; }
  .features-grid { grid-template-columns: repeat(2,1fr); }
  .voice-grid { grid-template-columns: 1fr; gap: 3rem; }
  .trust-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
  .section, .section-alt { padding: 4rem 0; }
  .nav-links { display: none; }
  .menu-btn  { display: block; }
  .features-grid { grid-template-columns: 1fr; }
  .footer-grid   { grid-template-columns: 1fr; gap: 2rem; }
  .cta-card { padding: 3rem 1.5rem; }
  .hero { padding-top: 6rem; }
  .voice-grid { gap: 2rem; }
}
@media (prefers-reduced-motion: reduce) {
  .wave-bar, .eyebrow-dot { animation: none; }
  * { transition-duration: .01ms !important; }
}
