:root {
  --bg: #150f2e;
  --surface: #1f1745;
  --gold: #e8a33d;
  --clay: #c9694a;
  --wine: #6b2737;
  --ivory: #f3ecdd;
  --muted: #b8aed1;
  --border: rgba(243, 236, 221, 0.12);
}

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

body {
  background: var(--bg);
  color: var(--ivory);
  font-family: 'Sora', sans-serif;
  line-height:1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family:'Fraunces', serif; font-weight:600; line-height:1.15; letter-spacing:-0.01em; }
em { font-style: italic; color: var(--gold); }
a { color: inherit; text-decoration:none; }

.section-inner { max-width: 920px; margin:0 auto; padding: 96px 24px; }

.eyebrow {
  text-transform:uppercase;
  letter-spacing:0.14em;
  font-size:0.75rem;
  color: var(--clay);
  margin-bottom:16px;
  font-weight:600;
}

.nav { position:sticky; top:0; z-index:10; backdrop-filter: blur(8px); background: rgba(21,15,46,0.8); border-bottom:1px solid var(--border); }
.nav-inner { max-width:920px; margin:0 auto; padding:18px 24px; display:flex; justify-content:space-between; align-items:center; }
.logo { font-family:'Fraunces', serif; font-weight:600; font-size:1.25rem; }
.nav-cta { font-size:0.85rem; padding:8px 16px; border:1px solid var(--border); border-radius:999px; transition: border-color .2s; }
.nav-cta:hover, .nav-cta:focus-visible { border-color: var(--gold); }

.hero { position:relative; overflow:hidden; padding-top:40px; }
.hero-glow {
  position:absolute; top:-200px; left:50%; transform:translateX(-50%);
  width:900px; height:900px; border-radius:50%;
  background: radial-gradient(circle, rgba(232,163,61,0.18), transparent 70%);
  pointer-events:none;
}
.hero-inner { position:relative; max-width:720px; margin:0 auto; padding:80px 24px 100px; text-align:center; }
.hero h1 { font-size: clamp(2.4rem, 6vw, 4rem); margin-bottom:24px; }
.hero-sub { color: var(--muted); font-size:1.05rem; max-width:560px; margin:0 auto 36px; }
.hero-actions { display:flex; gap:14px; justify-content:center; flex-wrap:wrap; margin-bottom:56px; }

.btn { display:inline-block; padding:14px 28px; border-radius:999px; font-weight:600; font-size:0.95rem; transition: transform .15s, opacity .15s; }
.btn:focus-visible { outline:2px solid var(--gold); outline-offset:3px; }
.btn-primary { background: var(--gold); color:#1a1330; }
.btn-primary:hover { transform: translateY(-2px); }
.btn-ghost { border:1px solid var(--border); color: var(--ivory); }
.btn-ghost:hover { border-color: var(--clay); }

.voice-card {
  display:flex; align-items:center; gap:14px;
  background: var(--surface); border:1px solid var(--border);
  border-radius:18px; padding:16px 20px; max-width:380px; margin:0 auto;
  text-align:left;
}
.voice-avatar { width:40px; height:40px; border-radius:50%; background: linear-gradient(135deg, var(--clay), var(--wine)); display:flex; align-items:center; justify-content:center; font-family:'Fraunces',serif; font-weight:600; flex-shrink:0; }
.voice-meta { flex:1; }
.voice-name { font-size:0.8rem; color: var(--muted); display:block; margin-bottom:8px; }
.waveform { display:flex; align-items:center; gap:3px; height:20px; }
.waveform span { width:3px; background: var(--gold); border-radius:2px; animation: wave 1.2s ease-in-out infinite; }
.waveform span:nth-child(odd) { height:60%; animation-delay:0.1s; }
.waveform span:nth-child(even) { height:100%; animation-delay:0.3s; }
.waveform span:nth-child(3n) { height:40%; animation-delay:0.5s; }
@keyframes wave { 0%,100% { transform: scaleY(0.4); } 50% { transform: scaleY(1); } }
.voice-time { font-size:0.75rem; color: var(--muted); }

@media (prefers-reduced-motion: reduce) {
  .waveform span { animation: none; }
}

.problem { background: var(--surface); border-top:1px solid var(--border); border-bottom:1px solid var(--border); }
.problem h2 { font-size: clamp(1.8rem,4vw,2.5rem); margin-bottom:20px; max-width:600px; }
.problem-text { color: var(--muted); max-width:560px; font-size:1.05rem; }

.features h2 { font-size: clamp(1.8rem,4vw,2.5rem); margin-bottom:48px; max-width:600px; }
.feature-grid { display:grid; grid-template-columns: repeat(2, 1fr); gap:20px; }
.feature-card { background: var(--surface); border:1px solid var(--border); border-radius:18px; padding:28px; }
.feature-card--wide { grid-column: 1 / -1; }
.feature-mark { text-transform:uppercase; font-size:0.7rem; letter-spacing:0.12em; color: var(--gold); margin-bottom:14px; }
.feature-card h3 { font-size:1.25rem; margin-bottom:10px; }
.feature-card p { color: var(--muted); font-size:0.95rem; }

.audience h2 { font-size: clamp(1.8rem,4vw,2.5rem); margin-bottom:32px; max-width:600px; }
.chip-list { list-style:none; display:flex; flex-wrap:wrap; gap:10px; }
.chip-list li { background: var(--surface); border:1px solid var(--border); padding:10px 18px; border-radius:999px; font-size:0.9rem; }

.vision { background: linear-gradient(135deg, var(--wine), var(--bg)); border-top:1px solid var(--border); border-bottom:1px solid var(--border); }
.vision blockquote { font-family:'Fraunces', serif; font-size: clamp(1.5rem,3.4vw,2.1rem); font-style:italic; max-width:680px; margin:0 auto 20px; text-align:center; line-height:1.4; }
.vision-sign { text-align:center; color: var(--muted); font-size:0.9rem; }

.ask h2 { font-size: clamp(1.8rem,4vw,2.5rem); margin-bottom:28px; max-width:600px; }
.ask-list { list-style:none; display:flex; flex-direction:column; gap:14px; margin-bottom:48px; }
.ask-list li { padding-left:24px; position:relative; font-size:1rem; }
.ask-list li::before { content:"—"; position:absolute; left:0; color: var(--clay); }
.contact-card { background: var(--surface); border:1px solid var(--border); border-radius:18px; padding:28px; display:flex; flex-direction:column; gap:10px; max-width:380px; }
.contact-card a { color: var(--gold); font-weight:600; }
.contact-card a:hover, .contact-card a:focus-visible { text-decoration:underline; }

.footer { text-align:center; padding:40px 24px; color: var(--muted); font-size:0.85rem; border-top:1px solid var(--border); }

@media (max-width: 640px) {
  .section-inner { padding:64px 20px; }
  .hero-inner { padding:56px 20px 72px; }
  .feature-grid { grid-template-columns: 1fr; }
}