/* ═══════════════════════════════════════════════════════════
   MyLinguist — Premium Editorial Stylesheet
   Warm, cinematic, story-driven. No dark mode. No SaaS.
   ═══════════════════════════════════════════════════════════ */

/* ─── Reset ──────────────────────────────────────────────── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

/* ─── Palette & Tokens ───────────────────────────────────── */
:root {
  --bg:          #FAF7F2;
  --bg-warm:     #F3EDE4;
  --bg-cream:    #EDE7DC;
  --text:        #2A2520;
  --text-soft:   #5C554D;
  --text-muted:  #8A837A;
  --accent:      #C08B5C;
  --accent-rich: #A16F44;
  --accent-glow: rgba(192, 139, 92, 0.12);
  --border:      rgba(42, 37, 32, 0.08);
  --white:       #FFFFFF;
  --scrim-top:   rgba(32, 28, 22, 0.55);
  --scrim-mid:   rgba(32, 28, 22, 0.30);
  --scrim-bot:   rgba(32, 28, 22, 0.70);
}

/* ─── Base ───────────────────────────────────────────────── */
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 28px;
}

.container-wide {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 28px;
}

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

img { max-width: 100%; display: block; }

/* ─── Typography ─────────────────────────────────────────── */
h1, h2, h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  line-height: 1.15;
  color: var(--text);
}

h1 { font-size: clamp(2.8rem, 6.5vw, 5.2rem); letter-spacing: -0.015em; }
h2 { font-size: clamp(2rem, 4vw, 3rem); letter-spacing: -0.01em; }
h3 { font-size: 1.35rem; }

/* ─── Scroll-Reveal Animations ───────────────────────────── */
@keyframes revealUp {
  from {
    opacity: 0;
    transform: translateY(32px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes revealFade {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes revealScale {
  from {
    opacity: 0;
    transform: scale(0.96) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.reveal {
  opacity: 0;
}

.reveal.is-visible {
  animation: revealUp 0.8s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}

.reveal-fade.is-visible {
  animation: revealFade 1s ease forwards;
}

.reveal-scale.is-visible {
  animation: revealScale 0.9s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}

/* stagger children */
.reveal-delay-1 { animation-delay: 0.1s !important; }
.reveal-delay-2 { animation-delay: 0.25s !important; }
.reveal-delay-3 { animation-delay: 0.4s !important; }
.reveal-delay-4 { animation-delay: 0.55s !important; }
.reveal-delay-5 { animation-delay: 0.7s !important; }

/* ─── Nav ────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 18px 0;
  background: rgba(245, 240, 234, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s, box-shadow 0.3s;
}

/* hero-mode: transparent on top of image */
.nav--hero {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom-color: transparent;
}

.nav--hero .nav-logo {
  color: var(--white) !important;
}

.nav--hero .nav-link {
  color: rgba(255,255,255,0.85) !important;
  border-color: rgba(255,255,255,0.25);
}

.nav--hero .nav-link:hover {
  color: var(--white) !important;
  border-color: rgba(255,255,255,0.6);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 28px;
}

.nav-logo {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--text) !important;
  letter-spacing: -0.01em;
}

.nav-links {
  display: flex;
  gap: 10px;
  align-items: center;
}

.nav-link {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-soft) !important;
  padding: 7px 18px;
  border: 1px solid var(--border);
  border-radius: 100px;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
  letter-spacing: 0.01em;
}

.nav-link:hover {
  color: var(--text) !important;
  border-color: var(--accent);
  background: var(--accent-glow);
}

.nav-link--active {
  border-color: var(--accent) !important;
  color: var(--text) !important;
}

/* ─── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 16px 36px;
  border-radius: 100px;
  font-size: 1rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  border: none;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  text-align: center;
  letter-spacing: 0.01em;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(192, 139, 92, 0.25);
}

.btn:active {
  transform: translateY(0);
}

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

.btn-primary:hover {
  background: var(--accent-rich);
  color: var(--white);
}

.btn-large {
  padding: 20px 52px;
  font-size: 1.1rem;
}

.btn-hero {
  background: var(--white);
  color: var(--text);
  font-weight: 600;
  box-shadow: 0 4px 24px rgba(0,0,0,0.15);
}

.btn-hero:hover {
  background: var(--bg);
  color: var(--text);
  box-shadow: 0 8px 40px rgba(0,0,0,0.2);
}

/* ─── HERO — Full-bleed cinematic ────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  isolation: isolate;
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* slow Ken Burns drift */
  animation: kenBurns 20s ease-in-out infinite alternate;
}

@keyframes kenBurns {
  from { transform: scale(1); }
  to   { transform: scale(1.05); }
}

/* two-stop scrim for text legibility — warm, not cold */
.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(
      to bottom,
      var(--scrim-top) 0%,
      var(--scrim-mid) 40%,
      var(--scrim-mid) 60%,
      var(--scrim-bot) 100%
    );
}

.hero-content {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 140px 28px 80px;
  max-width: 1080px;
  margin: 0 auto;
  width: 100%;
}

.hero-inner {
  max-width: 680px;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 28px;
  text-shadow: 0 2px 40px rgba(0,0,0,0.3);
}

.hero-copy {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.85;
  margin-bottom: 18px;
  max-width: 580px;
}

.hero-copy em {
  color: var(--white);
  font-style: normal;
  font-weight: 600;
}

.hero-copy.highlight {
  color: var(--white);
  font-weight: 600;
  font-size: 1.35rem;
  line-height: 1.6;
  margin-top: 28px;
  margin-bottom: 36px;
  padding-left: 20px;
  border-left: 3px solid var(--accent);
}

.hero-cta {
  margin-top: 8px;
}

.hero-sub-cta {
  color: rgba(255,255,255,0.7);
  font-size: 0.88rem;
  margin-top: 12px;
}

/* scroll cue */
.scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.scroll-cue-pill {
  width: 22px;
  height: 36px;
  border-radius: 11px;
  border: 1.5px solid rgba(255,255,255,0.4);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 7px;
  animation: scrollPulse 2.4s ease-in-out infinite;
}

.scroll-cue-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,0.75);
  animation: scrollDot 2.4s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50%      { opacity: 1; }
}

@keyframes scrollDot {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(8px); }
}

/* ─── Story prose (between hero and content) ────────────── */
.story-prose {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
}

.story-prose p {
  font-size: 1.25rem;
  line-height: 1.9;
  color: var(--text-soft);
  margin-bottom: 24px;
}

.story-prose em {
  color: var(--text);
  font-style: normal;
  font-weight: 600;
}

.hero-inner--minimal {
  text-align: left;
  max-width: 540px;
}

.hero-inner--minimal h1 {
  margin-bottom: 20px;
}

.hero-inner--minimal .hero-copy.highlight {
  border-left: 3px solid var(--accent);
  padding-left: 20px;
  text-align: left;
  margin: 0 0 36px;
  max-width: 460px;
}

/* ─── Typewriter ────────────────────────────────────────── */
.typewriter-block {
  text-align: center;
  margin-top: 56px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
}

.typewriter-static {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--text);
  letter-spacing: -0.01em;
}

.typewriter-word {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--accent-rich);
  letter-spacing: -0.01em;
}

.typewriter-cursor {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--accent);
  animation: blink 0.8s step-end infinite;
}

@keyframes blink {
  50% { opacity: 0; }
}

/* ─── Founder Letter ────────────────────────────────────── */
.founder-letter {
  max-width: 620px;
  margin: 32px auto 0;
  padding: 40px 44px 36px;
  background: #FFFFFF;
  border: 1px solid rgba(42, 37, 32, 0.12);
  border-left: 4px solid var(--accent);
  border-radius: 4px 12px 12px 4px;
  box-shadow: 0 6px 32px rgba(42, 37, 32, 0.08);
  position: relative;
}

.founder-letter p {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.9;
  color: var(--text-soft);
  margin-bottom: 28px;
}

.founder-letter p:last-of-type {
  margin-bottom: 24px;
}

.founder-letter em {
  font-style: normal;
  font-weight: 600;
  color: var(--text);
}

.founder-sign {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.15rem;
  color: var(--accent-rich);
  text-align: right;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

.founder-title {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: right;
  margin-top: 4px;
  letter-spacing: 0.01em;
}

@media (max-width: 600px) {
  .founder-letter {
    padding: 28px 24px;
  }
}

/* ─── Section spacing ────────────────────────────────────── */
section {
  padding: 100px 0;
}

.section-alt {
  background: var(--bg-warm);
}

/* ─── Section titles ─────────────────────────────────────── */
.section-title {
  text-align: center;
  margin-bottom: 16px;
}

.section-subtitle {
  text-align: center;
  color: var(--text-soft);
  font-size: 1.15rem;
  max-width: 540px;
  margin: 0 auto 56px;
  line-height: 1.75;
}

/* ─── How It Works ───────────────────────────────────────── */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

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

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.step h3 {
  margin-bottom: 10px;
  color: var(--text);
}

.step p {
  color: var(--text-soft);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ─── Demo Stories ───────────────────────────────────────── */
.story-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 40px;
  margin-bottom: 24px;
  box-shadow: 0 2px 20px rgba(42, 37, 32, 0.04);
  transition: box-shadow 0.3s, transform 0.3s;
}

.story-card:hover {
  box-shadow: 0 8px 40px rgba(42, 37, 32, 0.08);
  transform: translateY(-2px);
}

.story-word {
  margin-bottom: 16px;
  display: flex;
  align-items: baseline;
  gap: 14px;
}

/* ─── Chat Mockup ───────────────────────────────────────── */
.chat-mockup {
  max-width: 480px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 8px 60px rgba(42, 37, 32, 0.12), 0 1px 3px rgba(42, 37, 32, 0.06);
  border: 1px solid var(--border);
}

.chat-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: var(--bg-warm);
  border-bottom: 1px solid var(--border);
}

.chat-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
}

.chat-header-text {
  display: flex;
  flex-direction: column;
}

.chat-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
}

.chat-status {
  font-size: 0.75rem;
  color: #5cb85c;
}

.chat-body {
  padding: 20px 16px;
  min-height: 380px;
  background: #F8F5F0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.chat-bubble {
  max-width: 82%;
  padding: 10px 16px;
  border-radius: 16px;
  font-size: 0.92rem;
  line-height: 1.55;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.chat-bubble.is-shown {
  opacity: 1;
  transform: translateY(0);
}

.chat-bubble.bot {
  background: var(--white);
  color: var(--text);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.chat-bubble.user {
  background: var(--accent);
  color: var(--white);
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

.chat-bubble strong {
  color: var(--accent-rich);
  font-weight: 700;
}

.chat-bubble.user strong {
  color: var(--white);
}

.chat-word {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.2rem;
  color: var(--accent-rich);
}

.chat-bubble em {
  font-style: italic;
  color: var(--text-soft);
}

.chat-bubble.user em {
  color: rgba(255,255,255,0.85);
}

@media (max-width: 600px) {
  .chat-mockup {
    margin: 0 -12px;
    border-radius: 16px;
  }
}

.story-word .foreign {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.65rem;
  color: var(--accent-rich);
}

.story-word .meaning {
  color: var(--text-muted);
  font-size: 1.05rem;
  font-style: italic;
}

.story-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 14px;
}

.story-text strong {
  color: var(--accent-rich);
  font-weight: 600;
}

.story-pronunciation {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.story-pronunciation em {
  color: var(--text-soft);
  font-style: normal;
  font-weight: 500;
}

/* ─── Science Grid ──────────────────────────────────────── */
.science-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.science-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
  box-shadow: 0 2px 16px rgba(42, 37, 32, 0.04);
}

.science-card h3 {
  color: var(--accent-rich);
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.science-card p {
  color: var(--text-soft);
  line-height: 1.8;
  font-size: 0.98rem;
}

.science-card em {
  color: var(--text);
  font-style: normal;
  font-weight: 600;
}

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

/* ─── Pricing ────────────────────────────────────────────── */
.price-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 52px 44px;
  max-width: 440px;
  margin: 0 auto;
  text-align: center;
  box-shadow: 0 4px 32px rgba(42, 37, 32, 0.06);
}

.price-trial {
  display: inline-block;
  padding: 6px 20px;
  background: var(--accent-glow);
  border: 1px solid rgba(192, 139, 92, 0.2);
  border-radius: 100px;
  color: var(--accent-rich);
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.price-amount {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 3.8rem;
  color: var(--text);
  margin-bottom: 28px;
  font-weight: 400;
}

.price-amount span {
  font-family: 'Inter', sans-serif;
  font-size: 1.15rem;
  color: var(--text-muted);
  font-weight: 400;
}

.price-features {
  list-style: none;
  margin-bottom: 36px;
  text-align: left;
}

.price-features li {
  padding: 10px 0;
  color: var(--text-soft);
  position: relative;
  padding-left: 28px;
  font-size: 0.98rem;
  border-bottom: 1px solid var(--border);
}

.price-features li:last-child {
  border-bottom: none;
}

.price-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 16px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.price-note {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-top: 16px;
}

/* ─── FAQ ────────────────────────────────────────────────── */
.faq-list {
  max-width: 680px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--border);
}

.faq-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.faq-item h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--text);
}

.faq-item p {
  color: var(--text-soft);
  line-height: 1.8;
  font-size: 1.02rem;
}

/* ─── Footer ─────────────────────────────────────────────── */
.footer {
  padding: 48px 0;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.88rem;
  border-top: 1px solid var(--border);
  background: var(--bg);
}

/* ─── Teacher-specific ───────────────────────────────────── */
.teacher-value-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 40px;
  margin-bottom: 24px;
  box-shadow: 0 2px 20px rgba(42, 37, 32, 0.04);
}

.teacher-value-card h3 {
  color: var(--accent-rich);
  margin-bottom: 14px;
  font-size: 1.3rem;
}

.teacher-value-card p {
  color: var(--text-soft);
  line-height: 1.8;
  font-size: 1.02rem;
}

.partner-description {
  color: var(--text-soft);
  margin-bottom: 28px;
  line-height: 1.8;
  font-size: 1.02rem;
}

/* ─── Success Page ───────────────────────────────────────── */
.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 28px;
  background: var(--bg);
}

.success-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 52px 44px;
  max-width: 500px;
  text-align: center;
  box-shadow: 0 4px 32px rgba(42, 37, 32, 0.06);
}

.success-card h1 {
  font-size: 2rem;
  margin-bottom: 12px;
  color: var(--accent-rich);
}

.success-subtitle {
  font-size: 1.1rem;
  color: var(--text-soft);
  margin-bottom: 32px;
}

.success-card .btn {
  margin: 24px 0;
}

.success-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 16px;
}

/* ─── Science Deep-Dive Page ─────────────────────────────── */
.science-deep {
  max-width: 680px;
  margin: 0 auto;
}

.science-deep p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--text-soft);
  margin-bottom: 24px;
}

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

.science-example {
  background: var(--bg-warm);
  border-left: 3px solid var(--accent);
  padding: 20px 24px;
  border-radius: 0 8px 8px 0;
  margin-top: 24px;
  font-size: 0.98rem;
  line-height: 1.8;
  color: var(--text-soft);
}

.science-example strong {
  color: var(--accent-rich);
}

.science-cite {
  max-width: 680px;
  margin: 32px auto 0;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
  text-align: center;
}

.evidence-table {
  max-width: 720px;
  margin: 0 auto;
  overflow-x: auto;
}

.evidence-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.evidence-table th {
  text-align: left;
  padding: 14px 16px;
  border-bottom: 2px solid var(--border);
  color: var(--text);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.evidence-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--text-soft);
}

.evidence-table .highlight-row {
  background: rgba(192, 139, 92, 0.06);
}

.evidence-table .highlight-row td {
  color: var(--text);
}

.table-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 16px;
  line-height: 1.7;
}

.references-list {
  max-width: 680px;
  margin: 0 auto;
}

.references-list ol {
  padding-left: 24px;
}

.references-list li {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-soft);
  margin-bottom: 12px;
}

.references-list em {
  font-style: italic;
}

/* ─── Responsive ─────────────────────────────────────────── */
@media (max-width: 768px) {
  .steps {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-content {
    padding: 120px 24px 60px;
    align-items: flex-end;
  }

  .hero-copy {
    font-size: 1.08rem;
  }

  .hero-copy.highlight {
    font-size: 1.15rem;
  }

  .story-card {
    padding: 28px 24px;
  }

  .teacher-value-card {
    padding: 28px 24px;
  }

  .price-card {
    padding: 36px 28px;
  }

  .price-amount {
    font-size: 3rem;
  }

  .success-card {
    padding: 36px 24px;
  }

  section {
    padding: 72px 0;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2.4rem;
  }

  .hero-content {
    padding: 100px 20px 48px;
  }

  .nav-inner {
    padding: 0 20px;
  }

  .container, .container-wide {
    padding: 0 20px;
  }
}
