:root {
  --bg: #121416;
  --surface: #16181a;
  --surface-alt: #0c0e10;
  --text: #e2e2e2;
  --text-muted: #c2c7ce;
  --outline: #42474e;
  --primary: #8ed8b3;
  --primary-strong: #a9f5ce;
  --on-primary: #003823;
  --mint: #1a2e26;
  --peach: #30221a;
  --rose: #301e22;
  --max-width: 1080px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, sans-serif;
  line-height: 1.6;
}

h1, h2, h3, .serif {
  font-family: 'Playfair Display', Georgia, serif;
  margin: 0;
}

a {
  color: var(--primary);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(18, 20, 22, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--outline);
}

.nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}

.logo {
  font-size: 22px;
  color: var(--primary);
  font-weight: 600;
}

.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
  font-size: 14px;
}

.nav-links a {
  color: var(--text-muted);
}

.nav-links a.cta {
  color: var(--on-primary);
  background: var(--primary);
  padding: 8px 18px;
  border-radius: 9999px;
  font-weight: 600;
}

.nav-links a.cta:hover {
  text-decoration: none;
  opacity: 0.9;
}

/* Hero */
.hero {
  padding: 96px 0 72px;
  text-align: center;
}

.hero h1 {
  font-size: clamp(36px, 6vw, 56px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.hero p.subtitle {
  max-width: 560px;
  margin: 20px auto 0;
  color: var(--text-muted);
  font-size: 18px;
}

.hero-actions {
  margin-top: 36px;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
}

.btn-primary {
  background: var(--primary);
  color: var(--on-primary);
}

.btn-primary:hover {
  text-decoration: none;
  opacity: 0.9;
}

.btn-ghost {
  border: 1px solid var(--outline);
  color: var(--text);
}

.btn-ghost:hover {
  text-decoration: none;
  border-color: var(--primary);
}

.btn-disabled {
  background: var(--surface);
  color: var(--text-muted);
  border: 1px solid var(--outline);
  cursor: default;
}

.play-badge {
  gap: 12px;
  padding: 10px 22px;
  background: var(--surface);
  border: 1px solid var(--outline);
  border-radius: 9999px;
  color: var(--text);
  transition: all 0.2s ease;
}

.play-badge:hover {
  background: var(--surface-alt);
  border-color: var(--primary);
  transform: translateY(-2px);
}

.play-icon {
  display: block;
  height: 26px;
  width: 26px;
  flex-shrink: 0;
  object-fit: contain;
}

.play-badge-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.15;
}

.play-badge-text small {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.play-badge-text strong {
  font-size: 16px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  color: var(--text);
}

/* Quote card mockup */
.quote-card {
  margin: 56px auto 0;
  max-width: 320px;
  aspect-ratio: 4 / 5;
  border-radius: 32px;
  background: linear-gradient(160deg, #1a2e26, #0c0e10);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 32px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.quote-card p {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 16px;
}

.quote-card span {
  font-size: 12px;
  letter-spacing: 0.15em;
  color: var(--primary-strong);
  font-weight: 700;
}

/* Features */
.section {
  padding: 72px 0;
}

.section-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 12px;
}

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto 48px;
}

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 860px) {
  .features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .features {
    grid-template-columns: 1fr;
  }
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--outline);
  border-radius: 24px;
  padding: 28px;
}

.feature-card .icon {
  font-size: 28px;
  margin-bottom: 16px;
  display: block;
}

.feature-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 8px;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 14px;
  margin: 0;
}

/* Trust / privacy band */
.trust {
  background: var(--surface);
  border-top: 1px solid var(--outline);
  border-bottom: 1px solid var(--outline);
}

.trust .wrap {
  padding: 56px 24px;
  text-align: center;
}

.trust h2 {
  font-size: 26px;
  margin-bottom: 12px;
}

.trust p {
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto 28px;
}

/* Footer */
footer {
  padding: 48px 0;
  font-size: 13px;
  color: var(--text-muted);
}

footer .wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  text-align: center;
}

footer .footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

footer .footer-links a {
  color: var(--text-muted);
}

/* Legal pages */
.legal {
  padding: 64px 0 96px;
}

.legal .back-link {
  display: inline-block;
  margin-bottom: 32px;
  font-size: 14px;
  color: var(--text-muted);
}

.legal h1 {
  font-size: 34px;
  margin-bottom: 8px;
}

.legal .updated {
  color: var(--text-muted);
  font-size: 13px;
  margin-bottom: 40px;
  display: block;
}

.legal h2 {
  font-family: 'Inter', sans-serif;
  font-size: 19px;
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 12px;
  color: var(--primary-strong);
}

.legal p, .legal li {
  color: var(--text-muted);
  font-size: 15px;
}

.legal ul {
  padding-left: 20px;
}

.legal strong {
  color: var(--text);
}

.steps {
  background: var(--surface);
  border: 1px solid var(--outline);
  border-radius: 20px;
  padding: 24px 28px;
  margin: 16px 0;
}

.steps ol {
  margin: 0;
  padding-left: 20px;
}

.steps li {
  margin-bottom: 8px;
}

@media (max-width: 640px) {
  .nav-links a.full-text {
    display: none;
  }
  
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    padding: 0 24px;
  }

  .btn {
    justify-content: center;
  }
  
  footer .footer-links {
    flex-direction: column;
    gap: 16px;
  }
}
