:root {
  --navy: #3C3B6E;
  --navy-dark: #2A2950;
  --red: #B22234;
  --red-dark: #8C1B29;
  --white: #FFFFFF;
  --ink: #1A1A2E;
  --ink-muted: #5C5C70;
  --bg-soft: #F7F7FA;
  --border: #E3E3EC;
  --radius: 16px;
  --font-display: 'Bitter', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

a { color: inherit; }

.wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Nav */
header.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand img { height: 40px; width: 40px; }

.brand-text { font-family: var(--font-display); font-weight: 700; font-size: 22px; }
.brand-text .og { color: var(--navy); }
.brand-text .rest { color: var(--red); }

.site-nav nav a {
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink-muted);
  margin-left: 28px;
}

.site-nav nav a.parent-link {
  color: var(--navy);
  border: 1px solid var(--navy);
  padding: 6px 14px;
  border-radius: 999px;
}

/* Hero */
.hero {
  text-align: center;
  padding: 72px 24px 56px;
  background: linear-gradient(180deg, var(--bg-soft) 0%, var(--white) 100%);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: 44px;
  line-height: 1.15;
  color: var(--navy);
  max-width: 720px;
  margin: 0 auto 18px;
}

.hero h1 span { color: var(--red); }

.hero p.lede {
  font-size: 18px;
  color: var(--ink-muted);
  max-width: 560px;
  margin: 0 auto 32px;
}

.btn {
  display: inline-block;
  font-weight: 700;
  font-size: 16px;
  padding: 14px 30px;
  border-radius: 999px;
  text-decoration: none;
  cursor: pointer;
  border: none;
}

.btn-primary { background: var(--red); color: var(--white); }
.btn-primary:hover { background: var(--red-dark); }

.btn-outline {
  background: transparent;
  border: 2px solid var(--navy);
  color: var(--navy);
}

/* Practice card (trial demo) */
.practice-card {
  max-width: 560px;
  margin: 48px auto 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(60, 59, 110, 0.08);
  padding: 28px;
  text-align: left;
}

.practice-card .badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--red-dark);
  background: #FCEBEB;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.word-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.word-row:last-child { border-bottom: none; }

.word-row .word { font-family: var(--font-display); font-size: 20px; color: var(--ink); }

.mic-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--navy);
  border: none;
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.mic-btn:hover { background: var(--navy-dark); }

/* How it works */
.section { padding: 64px 24px; }

.section h2 {
  font-family: var(--font-display);
  font-size: 30px;
  color: var(--navy);
  text-align: center;
  margin-bottom: 40px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 900px;
  margin: 0 auto;
}

.step {
  text-align: center;
  padding: 24px;
}

.step .num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin: 0 auto 14px;
}

.step h3 { font-size: 17px; margin: 0 0 8px; }
.step p { font-size: 14px; color: var(--ink-muted); margin: 0; }

/* Pricing */
.pricing-card {
  max-width: 420px;
  margin: 0 auto;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 40px 32px;
  text-align: center;
}

.pricing-card .price {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 700;
  margin: 8px 0;
}

.pricing-card .price span { font-size: 20px; font-weight: 400; opacity: 0.8; }

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 24px 0 28px;
  text-align: left;
}

.pricing-card li {
  padding: 8px 0;
  font-size: 15px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

.pricing-card .btn-primary { width: 100%; }

/* Footer */
footer.site-footer {
  background: var(--bg-soft);
  padding: 40px 24px;
  text-align: center;
  font-size: 14px;
  color: var(--ink-muted);
}

footer.site-footer a { color: var(--navy); font-weight: 600; text-decoration: none; }

@media (max-width: 720px) {
  .hero h1 { font-size: 32px; }
  .steps { grid-template-columns: 1fr; }
  .site-nav nav a { margin-left: 16px; font-size: 14px; }
}
