/* ── Self-hosted fonts ─────────────────────────────────────────────────────── */
@font-face {
  font-family: 'Newsreader';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url('../fonts/newsreader-normal-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Newsreader';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url('../fonts/newsreader-normal-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Newsreader';
  font-style: italic;
  font-weight: 300 700;
  font-display: swap;
  src: url('../fonts/newsreader-italic-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Newsreader';
  font-style: italic;
  font-weight: 300 700;
  font-display: swap;
  src: url('../fonts/newsreader-italic-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url('../fonts/manrope-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url('../fonts/manrope-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ── Design-system palette & tokens ───────────────────────────────────────── */
:root {
  --paper:           #F4EAD5;
  --paper-soft:      #FBF5E7;
  --paper-deep:      #EADBB8;
  --ink:             #1B2A4E;
  --ink-soft:        #364668;
  --ink-faint:       #6B7A98;
  --gold:            #B8862E;
  --gold-deep:       #8A6320;
  --gold-soft:       #E8D49E;
  --terracotta:      #B14F36;
  --terracotta-soft: #E9C2B5;
  --sage:            #5F7A4E;
  --sage-soft:       #C6D2B6;
  --rose:            #C97B6E;
  --rose-soft:       #EFD2CC;
}

/* ── Reset & base ──────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

html, body { margin: 0; padding: 0; background: var(--paper); color: var(--ink); }
body { font-family: "Manrope", system-ui, sans-serif; line-height: 1.5; }

em     { font-style: italic; color: var(--gold-deep); font-weight: 500; }
strong { font-weight: 700; }

/* ══════════════════════════════════════════════════════════════════════════════
   WEBSITE COMPONENTS
═══════════════════════════════════════════════════════════════════════════════ */

/* ─── nav ─── */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(244,234,213,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(184,134,46,0.3);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 16px 32px;
  display: flex; align-items: center; gap: 32px;
}
.logo {
  display: flex; align-items: baseline; gap: 10px;
  font-family: "Newsreader", serif; font-weight: 600;
  font-size: 24px; letter-spacing: -0.01em;
  color: var(--ink); text-decoration: none;
}
.logo .dot { width: 9px; height: 9px; background: var(--gold); transform: rotate(45deg); display: inline-block; }
.logo em { font-style: italic; color: var(--gold-deep); }
.nav-links {
  display: flex; gap: 28px; margin-left: auto;
  font-family: "Manrope", sans-serif; font-size: 14px; font-weight: 600;
}
.nav-links a { color: var(--ink-soft); text-decoration: none; letter-spacing: 0.02em; }
.nav-links a:hover { color: var(--gold-deep); }
.nav-cta {
  background: var(--ink); color: var(--paper-soft);
  padding: 10px 20px; border-radius: 999px;
  font-family: "Manrope", sans-serif; font-size: 13px; font-weight: 700;
  text-decoration: none; letter-spacing: 0.04em; white-space: nowrap;
}
.nav-cta:hover { background: var(--gold); color: var(--ink); }
@media (max-width: 720px) { .nav-links { display: none; } }

/* ─── hero ─── */
.hero {
  max-width: 1200px; margin: 0 auto;
  padding: 80px 32px 60px;
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: 60px; align-items: center;
}
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding: 48px 24px 40px; gap: 40px; }
}
.hero-eyebrow {
  font-family: "Manrope", sans-serif; font-size: 11px;
  letter-spacing: 0.28em; text-transform: uppercase;
  font-weight: 800; color: var(--gold-deep);
  display: flex; align-items: center; gap: 12px; margin-bottom: 18px;
}
.hero-eyebrow::before { content: ""; width: 32px; height: 1.5px; background: var(--gold); }
.hero h1 {
  font-family: "Newsreader", serif; font-weight: 500;
  font-size: clamp(44px, 6vw, 80px); line-height: 0.98;
  letter-spacing: -0.025em; margin: 0 0 24px; color: var(--ink); text-wrap: pretty;
}
.hero h1 em { font-style: italic; color: var(--gold-deep); font-weight: 500; }
.hero p.lede {
  font-family: "Newsreader", serif; font-style: italic;
  font-size: 22px; line-height: 1.45; color: var(--ink-soft);
  margin: 0 0 32px; max-width: 580px; text-wrap: pretty;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ─── buttons (website) ─── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 28px; border-radius: 999px;
  font-family: "Manrope", sans-serif; font-size: 15px; font-weight: 700;
  letter-spacing: 0.02em; text-decoration: none;
  border: none; cursor: pointer; transition: all 150ms ease;
}
.btn--primary { background: var(--ink); color: var(--paper-soft); }
.btn--primary:hover { background: var(--gold); color: var(--ink); }
.btn--ghost { background: transparent; color: var(--ink); border: 2px solid var(--ink); padding: 14px 26px; }
.btn--ghost:hover { background: var(--ink); color: var(--paper-soft); }

/* ─── hero card ─── */
.hero-card {
  background:
    radial-gradient(120% 60% at 0% 0%, rgba(255,255,255,0.55), rgba(255,255,255,0) 55%),
    radial-gradient(120% 60% at 100% 100%, rgba(184,134,46,0.18), rgba(184,134,46,0) 55%),
    var(--paper-soft);
  border: 1px solid rgba(184,134,46,0.35);
  padding: 36px; box-shadow: 0 24px 60px rgba(27,42,78,0.18);
  transform: rotate(1.5deg); position: relative;
}
.hero-card::before {
  content: ""; position: absolute; inset: 8px;
  border: 1px solid rgba(184,134,46,0.3); pointer-events: none;
}
.hero-card .stamp {
  display: inline-block;
  border: 2px solid var(--terracotta); color: var(--terracotta);
  padding: 8px 14px; font-family: "Manrope", sans-serif;
  font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase;
  font-weight: 800; transform: rotate(-3deg); margin-bottom: 22px;
}
.hero-card h3 {
  font-family: "Newsreader", serif; font-weight: 500;
  font-size: 32px; line-height: 1.05; letter-spacing: -0.01em;
  color: var(--ink); margin: 0 0 14px;
}
.hero-card h3 em { font-style: italic; color: var(--gold-deep); }
.hero-card .rules { list-style: none; padding: 0; margin: 0; }
.hero-card .rules li {
  display: grid; grid-template-columns: 28px 1fr;
  gap: 12px; align-items: baseline; padding: 10px 0;
  border-top: 1px solid rgba(184,134,46,0.3);
  font-family: "Newsreader", serif; font-size: 16px; line-height: 1.4;
}
.hero-card .rules li:last-child { border-bottom: 1px solid rgba(184,134,46,0.3); }
.hero-card .rules .roman {
  font-family: "Newsreader", serif; font-style: italic;
  color: var(--gold-deep); font-weight: 500; font-size: 18px;
}
.hero-card .rules em { color: var(--gold-deep); font-style: italic; }

/* ─── trust strip ─── */
.trust {
  border-top: 1px solid rgba(27,42,78,0.10);
  border-bottom: 1px solid rgba(27,42,78,0.10);
  background: var(--paper-deep);
}
.trust-inner {
  max-width: 1200px; margin: 0 auto; padding: 28px 32px;
  display: flex; flex-wrap: wrap; gap: 32px;
  align-items: center; justify-content: space-between;
}
.trust-label {
  font-family: "Manrope", sans-serif; font-size: 11px;
  letter-spacing: 0.22em; text-transform: uppercase; font-weight: 700; color: var(--ink-faint);
}
.trust-list {
  display: flex; flex-wrap: wrap; gap: 22px 36px;
  font-family: "Newsreader", serif; font-style: italic;
  font-size: 16px; color: var(--ink-soft);
}
.trust-list span strong {
  color: var(--ink); font-style: normal; font-weight: 600;
  font-family: "Manrope", sans-serif; font-size: 13px; letter-spacing: 0.04em;
}

/* ─── stats ─── */
.stats { background: var(--ink); color: var(--paper-soft); padding: 80px 0; }
.stats-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 32px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 60px;
}
@media (max-width: 800px) { .stats-inner { grid-template-columns: 1fr; gap: 40px; } }
.stat .num {
  font-family: "Newsreader", serif; font-weight: 400;
  font-size: 96px; line-height: 0.9; letter-spacing: -0.03em; color: var(--gold-soft);
}
.stat .num small { font-size: 36px; vertical-align: top; margin-left: 4px; color: var(--gold-soft); }
.stat h4 {
  font-family: "Newsreader", serif; font-weight: 600;
  font-size: 22px; margin: 14px 0 8px; line-height: 1.2; color: var(--paper-soft);
}
.stat p { font-size: 15px; line-height: 1.5; color: rgba(232,212,158,0.75); margin: 0; max-width: 320px; }

/* ─── section scaffolding ─── */
.section { padding: 100px 32px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-eyebrow {
  font-family: "Manrope", sans-serif; font-size: 11px;
  letter-spacing: 0.28em; text-transform: uppercase;
  font-weight: 800; color: var(--gold-deep); margin-bottom: 14px;
}
.section-h {
  font-family: "Newsreader", serif; font-weight: 500;
  font-size: clamp(36px, 4.5vw, 56px); line-height: 1.05; letter-spacing: -0.02em;
  color: var(--ink); margin: 0 0 20px; max-width: 720px; text-wrap: pretty;
}
.section-h em { font-style: italic; color: var(--gold-deep); }
.section-sub {
  font-family: "Newsreader", serif; font-style: italic;
  font-size: 20px; line-height: 1.45; color: var(--ink-soft);
  max-width: 640px; margin: 0 0 56px;
}

/* ─── resource cards ─── */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 900px) { .cards { grid-template-columns: 1fr; } }
.card-r {
  background: var(--paper-soft); border: 1px solid rgba(27,42,78,0.10);
  border-radius: 8px; padding: 32px;
  display: flex; flex-direction: column; gap: 14px;
  transition: all 200ms ease; position: relative;
  text-decoration: none; color: inherit;
}
.card-r:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(27,42,78,0.14);
  border-color: var(--gold);
}
.card-r .num {
  font-family: "Newsreader", serif; font-weight: 600;
  font-size: 32px; color: var(--gold); line-height: 1;
}
.card-r h3 {
  font-family: "Newsreader", serif; font-weight: 600;
  font-size: 26px; line-height: 1.2; color: var(--ink); margin: 0;
}
.card-r h3 em { font-style: italic; color: var(--gold-deep); }
.card-r p { font-size: 15px; line-height: 1.55; color: var(--ink-soft); margin: 0; }
.card-r .meta {
  display: flex; gap: 12px; flex-wrap: wrap;
  font-family: "Manrope", sans-serif; font-size: 11px;
  letter-spacing: 0.16em; text-transform: uppercase; font-weight: 700; color: var(--ink-faint);
}
.card-r .link {
  margin-top: auto; padding-top: 14px;
  font-family: "Manrope", sans-serif; font-size: 13px; font-weight: 700;
  color: var(--ink); text-decoration: none; letter-spacing: 0.06em;
  border-top: 1px solid rgba(27,42,78,0.10);
  display: inline-flex; align-items: center; gap: 6px;
}
.card-r:hover .link { color: var(--gold-deep); }

/* ─── threats grid ─── */
.threats-bg { background: var(--paper-deep); }
.threats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  border-top: 1.5px solid var(--ink); border-left: 1.5px solid var(--ink);
}
@media (max-width: 800px) { .threats { grid-template-columns: 1fr; } }
.threat {
  border-right: 1.5px solid var(--ink); border-bottom: 1.5px solid var(--ink);
  padding: 32px 28px; display: flex; flex-direction: column; gap: 10px;
  background: var(--paper);
}
.threat .tnum {
  font-family: "Manrope", sans-serif; font-size: 11px;
  letter-spacing: 0.24em; text-transform: uppercase; font-weight: 800; color: var(--terracotta);
}
.threat h4 {
  font-family: "Newsreader", serif; font-weight: 600;
  font-size: 28px; line-height: 1.1; color: var(--ink); margin: 0;
}
.threat h4 em { font-style: italic; color: var(--gold-deep); }
.threat p {
  font-family: "Newsreader", serif; font-size: 16px; line-height: 1.5; color: var(--ink-soft); margin: 0;
}
.threat .quote {
  font-family: "Newsreader", serif; font-style: italic; font-size: 15px;
  padding: 8px 12px; background: rgba(177,79,54,0.08);
  border-left: 3px solid var(--terracotta); color: var(--ink); margin-top: auto;
}

/* ─── pull quote ─── */
.pull-section { background: var(--ink); color: var(--paper-soft); padding: 100px 32px; }
.pull-inner { max-width: 980px; margin: 0 auto; text-align: center; }
.pull-q {
  font-family: "Newsreader", serif; font-style: italic; font-weight: 400;
  font-size: clamp(28px, 4vw, 44px); line-height: 1.25; color: var(--paper-soft);
  text-wrap: pretty; margin: 0;
}
.pull-q em { color: var(--gold-soft); font-style: italic; }
.pull-attr {
  margin-top: 32px; font-family: "Manrope", sans-serif; font-size: 11px;
  letter-spacing: 0.28em; text-transform: uppercase; font-weight: 800; color: var(--gold-soft);
}
.pull-ornament {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  color: var(--gold); margin-bottom: 36px;
}
.pull-ornament .line {
  width: 80px; height: 1px;
  background: linear-gradient(to right, rgba(184,134,46,0), var(--gold), rgba(184,134,46,0));
}
.pull-ornament .diamond { width: 9px; height: 9px; background: var(--gold); transform: rotate(45deg); }

/* ─── host a workshop ─── */
.host { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
@media (max-width: 900px) { .host { grid-template-columns: 1fr; gap: 40px; } }
.host-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; }
.host-list li {
  display: grid; grid-template-columns: 64px 1fr; gap: 24px;
  padding: 22px 0; border-top: 1px solid rgba(27,42,78,0.15);
}
.host-list li:last-child { border-bottom: 1px solid rgba(27,42,78,0.15); }
.host-list .step-circle {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--paper-deep); border: 1px solid var(--gold); color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-family: "Newsreader", serif; font-weight: 600; font-size: 22px; flex-shrink: 0;
}
.host-list h4 {
  font-family: "Newsreader", serif; font-size: 22px; font-weight: 600;
  margin: 0 0 6px; color: var(--ink);
}
.host-list p { font-size: 15px; line-height: 1.55; color: var(--ink-soft); margin: 0; }

/* ─── cta ─── */
.cta {
  background: radial-gradient(80% 60% at 50% 30%, #2A3A60 0%, #1B2A4E 65%, #0F1830 100%);
  color: var(--paper-soft); padding: 100px 32px; text-align: center;
}
.cta h2 {
  font-family: "Newsreader", serif; font-weight: 500;
  font-size: clamp(36px, 5vw, 56px); line-height: 1.05; letter-spacing: -0.02em;
  color: var(--paper-soft); margin: 0 0 18px;
  max-width: 760px; margin-left: auto; margin-right: auto;
}
.cta h2 em { color: var(--gold-soft); font-style: italic; }
.cta p {
  font-family: "Newsreader", serif; font-style: italic;
  font-size: 20px; color: rgba(232,212,158,0.8); margin: 0 auto 32px; max-width: 580px;
}
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta .btn--primary { background: var(--gold); color: var(--ink); }
.cta .btn--primary:hover { background: var(--paper-soft); color: var(--ink); }
.cta .btn--ghost { color: var(--paper-soft); border-color: rgba(232,212,158,0.5); border-width: 2px; }
.cta .btn--ghost:hover { background: var(--paper-soft); color: var(--ink); border-color: var(--paper-soft); }

/* ─── footer ─── */
footer { background: #0F1830; color: rgba(251,245,231,0.7); padding: 56px 32px 32px; }
.foot-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
}
@media (max-width: 800px) { .foot-inner { grid-template-columns: 1fr 1fr; } }
.foot-col h5 {
  font-family: "Manrope", sans-serif; font-size: 11px;
  letter-spacing: 0.22em; text-transform: uppercase; font-weight: 800;
  color: var(--gold-soft); margin: 0 0 14px;
}
.foot-col a, .foot-col p {
  color: rgba(251,245,231,0.7); text-decoration: none;
  font-size: 14px; line-height: 1.7; display: block;
}
.foot-col a:hover { color: var(--gold-soft); }
.foot-brand {
  font-family: "Newsreader", serif; font-weight: 600;
  font-size: 22px; color: var(--paper-soft);
  display: flex; align-items: baseline; gap: 10px; margin-bottom: 12px;
}
.foot-brand .dot { width: 8px; height: 8px; background: var(--gold); transform: rotate(45deg); display: inline-block; }
.foot-brand em { font-style: italic; color: var(--gold-soft); }
.foot-bottom {
  max-width: 1200px; margin: 40px auto 0; padding-top: 24px;
  border-top: 1px solid rgba(232,212,158,0.18);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  font-family: "Manrope", sans-serif; font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase; font-weight: 700;
  color: rgba(232,212,158,0.5);
}

/* ══════════════════════════════════════════════════════════════════════════════
   APRENDE SECTION & APP
═══════════════════════════════════════════════════════════════════════════════ */

/* Section background */
.aprende-section { background: var(--paper-deep); }

/* App container */
.aprende-app {
  background:
    radial-gradient(120% 50% at 0% 0%, rgba(255,255,255,0.5), rgba(255,255,255,0) 55%),
    radial-gradient(120% 50% at 100% 100%, rgba(184,134,46,0.06), rgba(184,134,46,0) 55%),
    var(--paper);
  border: 1px solid rgba(27,42,78,0.10);
  border-radius: 12px;
  padding: 32px 24px 64px;
  margin-top: 24px;
}

/* App header row */
.aprende-head {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 18px; margin-bottom: 28px;
  border-bottom: 1.5px solid var(--gold);
}
.aprende-brand {
  display: flex; align-items: baseline; gap: 12px;
  font-family: "Newsreader", serif; font-size: 28px; font-weight: 600;
  color: var(--ink); letter-spacing: -0.01em;
}
.brand-sub {
  font-family: "Manrope", sans-serif; font-size: 11px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold-deep); font-weight: 700;
}
.home-btn {
  background: transparent; border: 1.5px solid var(--ink-faint);
  color: var(--ink-soft); padding: 10px 18px; border-radius: 999px;
  font-family: "Manrope", sans-serif; font-size: 14px; font-weight: 600;
  cursor: pointer; letter-spacing: 0.06em;
}
.home-btn:hover { background: var(--ink); color: var(--paper-soft); border-color: var(--ink); }

/* App home hero */
.app-hero { text-align: center; padding: 36px 24px 24px; }
.app-hero h1 {
  font-family: "Newsreader", serif; font-weight: 500;
  font-size: clamp(36px, 6vw, 56px); line-height: 1.05;
  letter-spacing: -0.02em; margin: 0 0 14px;
}
.app-hero h1 em { color: var(--gold-deep); font-style: italic; }
.app-hero p {
  font-family: "Newsreader", serif; font-style: italic;
  font-size: 22px; color: var(--ink-soft); max-width: 640px; margin: 0 auto;
}

/* Module grid */
.modules {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 36px;
}
@media (max-width: 720px) { .modules { grid-template-columns: 1fr; } }

.module-card {
  background: var(--paper-soft); border: 1px solid rgba(27,42,78,0.10);
  border-radius: 12px; padding: 28px;
  cursor: pointer; transition: all 180ms ease;
  text-align: left; font: inherit; color: inherit;
  position: relative; display: flex; flex-direction: column; gap: 10px;
}
.module-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(27,42,78,0.12);
  border-color: var(--gold);
}
.module-card .num {
  font-family: "Newsreader", serif; font-size: 28px; font-weight: 600;
  color: var(--gold); line-height: 1;
}
.module-card h3 {
  font-family: "Newsreader", serif; font-weight: 600;
  font-size: 26px; line-height: 1.15; margin: 0; color: var(--ink);
}
.module-card p { font-size: 16px; line-height: 1.45; color: var(--ink-soft); margin: 0; }
.module-card .progress {
  margin-top: 8px; display: flex; align-items: center; gap: 8px;
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  font-weight: 700; color: var(--ink-faint);
}
.module-card.done { background: rgba(95,122,78,0.10); border-color: rgba(95,122,78,0.4); }
.module-card.done .progress { color: var(--sage); }
.module-card .check {
  position: absolute; top: 20px; right: 20px;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--sage); color: var(--paper-soft);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 700;
}

/* ─── App buttons — override website size for senior-friendly targets ─── */
.aprende-app .btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  padding: 18px 32px; font-size: 18px; font-weight: 700;
  border-radius: 999px; border: none; cursor: pointer;
  transition: all 150ms ease; min-height: 60px; min-width: 160px;
  letter-spacing: 0.02em; font-family: "Manrope", sans-serif;
}
.aprende-app .btn--primary { background: var(--ink); color: var(--paper-soft); }
.aprende-app .btn--primary:hover { background: var(--gold); color: var(--ink); }
.aprende-app .btn--ghost {
  background: transparent; color: var(--ink); border: 2px solid var(--ink);
  padding: 16px 30px;
}
.aprende-app .btn--ghost:hover { background: var(--ink); color: var(--paper-soft); }
.aprende-app .btn--alert { background: var(--terracotta); color: var(--paper-soft); }
.aprende-app .btn--alert:hover { background: #9F3E27; }
.aprende-app .btn--safe  { background: var(--sage); color: var(--paper-soft); }
.aprende-app .btn--safe:hover  { background: #4E6640; }
.aprende-app .btn:disabled { opacity: 0.4; cursor: default; }

/* Module screen wrapper */
.module-screen { padding: 8px 0; }

.crumb {
  display: flex; align-items: center; gap: 12px;
  font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold-deep); font-weight: 700; margin-bottom: 16px;
}
.crumb-back {
  background: none; border: none; color: var(--gold-deep); cursor: pointer;
  font: inherit; padding: 0; letter-spacing: 0.14em;
}
.crumb-back:hover { color: var(--ink); }

.mod-title {
  font-family: "Newsreader", serif; font-weight: 500;
  font-size: clamp(32px, 5vw, 44px); line-height: 1.05;
  letter-spacing: -0.02em; margin: 0 0 12px;
}
.mod-title em { color: var(--gold-deep); font-style: italic; }
.mod-intro {
  font-family: "Newsreader", serif; font-style: italic;
  font-size: 20px; color: var(--ink-soft); margin: 0 0 28px; max-width: 720px;
}

/* ─── Quiz ─── */
.quiz-stage {
  background: var(--paper-soft); border: 1px solid rgba(27,42,78,0.10);
  border-radius: 12px; padding: 32px; margin-top: 12px;
}
.quiz-progress { display: flex; gap: 6px; margin-bottom: 20px; }
.quiz-progress .dot {
  flex: 1; height: 6px; background: rgba(27,42,78,0.12); border-radius: 3px;
}
.quiz-progress .dot.active  { background: var(--gold); }
.quiz-progress .dot.correct { background: var(--sage); }
.quiz-progress .dot.wrong   { background: var(--terracotta); }

.quiz-q {
  font-family: "Newsreader", serif; font-size: 24px; line-height: 1.3; margin: 0 0 18px;
}
.quiz-stim {
  background: var(--paper); border-radius: 8px; padding: 22px; margin-bottom: 22px;
  font-family: "Newsreader", serif; font-size: 19px; line-height: 1.5;
  border-left: 4px solid var(--ink-faint);
}
.quiz-stim .from {
  font-family: "Manrope", sans-serif; font-size: 13px; color: var(--ink-faint);
  letter-spacing: 0.06em; margin-bottom: 10px;
}
.quiz-stim .from strong { color: var(--ink); font-weight: 600; }
.quiz-stim .subj {
  font-family: "Manrope", sans-serif; font-weight: 700; font-size: 15px;
  color: var(--ink); margin-bottom: 14px;
}
.quiz-stim .body { font-style: italic; color: var(--ink); }
.quiz-stim.sms {
  border-left: 4px solid var(--gold); border-radius: 16px 16px 16px 4px; background: #FAF1DA;
}
.quiz-stim.sms .meta {
  font-family: "Manrope", sans-serif; font-size: 13px; color: var(--ink-faint);
  margin-bottom: 8px; letter-spacing: 0.06em;
}

.quiz-choices { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 600px) { .quiz-choices { grid-template-columns: 1fr; } }
.quiz-choices .btn { width: 100%; min-height: 72px; font-size: 19px; }

.quiz-feedback {
  margin-top: 22px; padding: 18px 22px; border-radius: 8px;
  display: flex; gap: 16px; align-items: flex-start;
}
.quiz-feedback.correct { background: rgba(95,122,78,0.14); border-left: 4px solid var(--sage); }
.quiz-feedback.wrong   { background: rgba(177,79,54,0.12); border-left: 4px solid var(--terracotta); }
.quiz-feedback .icon-circle {
  width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; font-weight: 700; color: var(--paper-soft);
}
.quiz-feedback.correct .icon-circle { background: var(--sage); }
.quiz-feedback.wrong   .icon-circle { background: var(--terracotta); }
.quiz-feedback h4 {
  font-family: "Newsreader", serif; font-size: 22px; font-weight: 600; margin: 0 0 6px;
}
.quiz-feedback p { font-size: 16px; line-height: 1.5; color: var(--ink); margin: 0; }

.quiz-foot { margin-top: 22px; display: flex; justify-content: flex-end; }

/* Score card */
.score-card {
  text-align: center; padding: 40px 24px; background: var(--paper-soft);
  border-radius: 12px; border: 1px solid rgba(184,134,46,0.30);
}
.score-num {
  font-family: "Newsreader", serif; font-size: 96px; font-weight: 500;
  color: var(--gold-deep); line-height: 1; margin-bottom: 6px;
}
.score-num span { font-size: 36px; color: var(--ink-faint); }
.score-msg {
  font-family: "Newsreader", serif; font-style: italic;
  font-size: 22px; color: var(--ink-soft); margin: 0 0 24px;
}

/* ─── Vishing / phone ─── */
.phone {
  max-width: 380px; margin: 12px auto;
  background: #1B2A4E; border-radius: 32px; padding: 28px 24px;
  color: var(--paper-soft); box-shadow: 0 24px 60px rgba(0,0,0,0.4); text-align: center;
}
.phone-status {
  font-family: "Manrope", sans-serif; font-size: 12px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold-soft); font-weight: 700; margin-bottom: 24px;
}
.phone-avatar {
  width: 96px; height: 96px; border-radius: 50%;
  background: var(--gold); color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-family: "Newsreader", serif; font-size: 40px; font-weight: 600; margin: 0 auto 14px;
}
.phone-name {
  font-family: "Newsreader", serif; font-size: 28px; font-weight: 600;
  color: var(--paper-soft); margin: 0 0 6px;
}
.phone-num { font-size: 14px; color: var(--gold-soft); letter-spacing: 0.06em; margin-bottom: 28px; }
.phone-transcript {
  background: rgba(244,234,213,0.08); border: 1px solid rgba(232,212,158,0.25);
  border-radius: 12px; padding: 16px; margin-bottom: 24px; text-align: left;
  font-family: "Newsreader", serif; font-style: italic;
  font-size: 17px; line-height: 1.4; color: var(--paper-soft); min-height: 80px;
}
.phone-transcript .label {
  font-family: "Manrope", sans-serif; font-style: normal; font-size: 10px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold-soft); font-weight: 700; margin-bottom: 6px;
}
.phone-actions { display: flex; gap: 12px; justify-content: center; }
.phone-btn {
  width: 64px; height: 64px; border-radius: 50%; border: none;
  font-size: 26px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 700;
}
.phone-btn.hangup { background: var(--terracotta); }
.phone-btn.answer { background: var(--sage); }
.phone-btn:hover { opacity: 0.85; }

.sim-feedback {
  margin-top: 20px; padding: 18px 22px; border-radius: 8px; text-align: left;
}
.sim-feedback.good { background: rgba(95,122,78,0.16); border-left: 4px solid var(--sage); }
.sim-feedback.bad  { background: rgba(177,79,54,0.14); border-left: 4px solid var(--terracotta); }
.sim-feedback h4 { font-family: "Newsreader", serif; font-size: 22px; margin: 0 0 6px; }
.sim-feedback p  { font-size: 16px; line-height: 1.5; margin: 0; }

/* ─── Password ─── */
.pwd-input {
  width: 100%; padding: 18px 22px;
  font-family: "Manrope", sans-serif; font-size: 22px;
  border: 2px solid var(--ink-faint); border-radius: 8px;
  background: var(--paper-soft); color: var(--ink); letter-spacing: 0.04em;
}
.pwd-input:focus { outline: none; border-color: var(--gold); }
.pwd-meter {
  margin-top: 18px; height: 14px; border-radius: 7px;
  background: rgba(27,42,78,0.10); overflow: hidden;
}
.pwd-meter .fill { height: 100%; transition: width 280ms ease, background 280ms ease; border-radius: 7px; }
.pwd-grade {
  margin-top: 10px; font-family: "Newsreader", serif; font-size: 22px; font-weight: 600;
}
.pwd-checks {
  margin-top: 18px; display: grid; grid-template-columns: 1fr 1fr;
  gap: 8px 16px; list-style: none; padding: 0;
}
@media (max-width: 600px) { .pwd-checks { grid-template-columns: 1fr; } }
.pwd-checks li {
  display: flex; align-items: center; gap: 10px;
  font-size: 15px; color: var(--ink-faint);
}
.pwd-checks li.ok { color: var(--sage); font-weight: 600; }
.pwd-checks li::before { content: "○"; font-size: 16px; color: var(--ink-faint); }
.pwd-checks li.ok::before { content: "✓"; color: var(--sage); font-weight: 700; }

/* ─── Glossary ─── */
.glossary { display: flex; flex-direction: column; gap: 0; }
.gloss-item { border-top: 1px solid rgba(184,134,46,0.4); padding: 18px 0; }
.gloss-item:last-child { border-bottom: 1px solid rgba(184,134,46,0.4); }
.gloss-head {
  display: flex; align-items: baseline; gap: 14px;
  cursor: pointer; background: none; border: none;
  padding: 0; width: 100%; text-align: left; font: inherit; color: inherit;
}
.gloss-term {
  font-family: "Newsreader", serif; font-size: 26px; font-weight: 600; color: var(--ink); flex: 1;
}
.gloss-term em { color: var(--gold-deep); font-style: italic; }
.gloss-toggle {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--paper-deep); color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 600; flex-shrink: 0; transition: transform 200ms ease;
}
.gloss-item.open .gloss-toggle { background: var(--gold); color: var(--paper-soft); transform: rotate(45deg); }
.gloss-body { font-size: 17px; line-height: 1.5; color: var(--ink-soft); padding-top: 12px; max-width: 800px; }
.gloss-body em { color: var(--gold-deep); font-style: italic; }

/* ─── Checklist ─── */
.checklist {
  list-style: none; padding: 0; margin: 12px 0;
  display: flex; flex-direction: column; gap: 8px;
}
.check-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 18px 22px; background: var(--paper-soft);
  border: 1px solid rgba(27,42,78,0.10); border-radius: 10px;
  cursor: pointer; transition: all 150ms ease;
  font: inherit; text-align: left; color: inherit; width: 100%;
}
.check-item:hover { border-color: var(--gold); }
.check-item.done { background: rgba(95,122,78,0.10); border-color: rgba(95,122,78,0.5); }
.check-box {
  width: 32px; height: 32px; border-radius: 8px;
  border: 2px solid var(--ink-faint); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; background: var(--paper);
}
.check-item.done .check-box { background: var(--sage); border-color: var(--sage); color: var(--paper-soft); font-weight: 700; }
.check-text {
  font-family: "Newsreader", serif; font-size: 20px; line-height: 1.35; color: var(--ink); flex: 1;
}
.check-item.done .check-text { color: var(--ink-soft); }
.check-item.done .check-text strong { text-decoration: line-through; }

/* Progress bar */
.progress-bar {
  height: 10px; background: rgba(27,42,78,0.10); border-radius: 5px; overflow: hidden; margin-bottom: 18px;
}
.progress-bar .fill { height: 100%; background: var(--sage); transition: width 300ms ease; }
.progress-meta {
  display: flex; justify-content: space-between;
  font-size: 14px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-faint); font-weight: 700; margin-bottom: 18px;
}
