:root {
  --bg-deep: #0B0F14;
  --bg-raised: #141B23;
  --ink-primary: #E8ECEF;
  --ink-muted: #8A94A0;
  --accent-calm: #7FB6A8;
  --accent-signal: #E4B363;
  --divider: #1F2830;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Inter", system-ui, sans-serif;
}

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

body {
  background: var(--bg-deep);
  color: var(--ink-primary);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

main { max-width: 780px; margin: 0 auto; padding: 0 24px; }

/* Hero */
.hero {
  position: relative;
  text-align: center;
  padding: 96px 0 64px;
}
.glow {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 640px;
  max-width: 100%;
  height: 640px;
  background: radial-gradient(circle at center, rgba(127,182,168,0.12), rgba(127,182,168,0) 60%);
  pointer-events: none;
  z-index: 0;
}
.hero > * { position: relative; z-index: 1; }

.waveform {
  width: min(560px, 90%);
  height: auto;
  display: block;
  margin: 0 auto 40px;
}

.wordmark {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(48px, 9vw, 72px);
  letter-spacing: 0.08em;
  margin: 0 0 16px;
  line-height: 1.05;
}

.tagline {
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--ink-muted);
  font-size: clamp(16px, 2.4vw, 20px);
  margin: 0 0 40px;
}

.cta {
  display: inline-block;
  background: var(--accent-signal);
  color: #1A1206;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  padding: 14px 28px;
  border-radius: 12px;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  box-shadow: 0 8px 30px rgba(228,179,99,0.18);
}
.cta:hover { transform: translateY(-1px); box-shadow: 0 12px 36px rgba(228,179,99,0.28); }
.cta:focus-visible { outline: 2px solid var(--accent-calm); outline-offset: 3px; }

.cta-sub {
  color: var(--ink-muted);
  font-size: 14px;
  margin: 16px 0 0;
}

/* Pillars */
.pillars {
  border-top: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
  padding: 28px 0;
  margin-top: 40px;
}
.pillars ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(16px, 2.2vw, 20px);
  color: var(--ink-primary);
}
.pillars .dot { color: var(--accent-calm); font-weight: 600; }

/* About */
.about {
  padding: 56px 0 40px;
  font-size: 17px;
  color: var(--ink-primary);
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
}
.about p { margin: 0; }

/* Newsletter */
.newsletter {
  text-align: center;
  padding: 32px 0 96px;
}
.newsletter h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  margin: 0 0 8px;
  letter-spacing: 0.02em;
}
.newsletter .muted { color: var(--ink-muted); margin: 0; font-size: 15px; }

/* Footer */
footer {
  border-top: 1px solid var(--divider);
  padding: 32px 24px 48px;
  text-align: center;
  color: var(--ink-muted);
}
footer .disclaimer {
  max-width: 640px;
  margin: 0 auto 12px;
  font-size: 13px;
  line-height: 1.55;
}
footer .copy { font-size: 12px; margin: 0; }

@media (max-width: 480px) {
  .hero { padding: 64px 0 48px; }
  .pillars ul { gap: 10px; }
}
