:root {
  --ink: #0f172a;
  --muted: #475569;
  --indigo: #6366f1;
  --violet: #8b5cf6;
  --green: #10b981;
  --line: #e2e8f0;
  --font-body: 'Inter', ui-sans-serif, system-ui, -apple-system, sans-serif;
  --font-title: 'Plus Jakarta Sans', 'Inter', ui-sans-serif, system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: #ffffff;
  color: var(--ink);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; }

h1, h2, h3, h4, .section-title, .brand, .page-h1 {
  font-family: var(--font-title);
}

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  height: 68px;
  padding: 0 max(20px, calc((100vw - 1140px) / 2));
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.brand { display: flex; align-items: center; gap: 10px; font-size: 19px; font-weight: 800; text-decoration: none; color: var(--ink); }
.nav-links { display: flex; gap: 28px; }
.nav-links a { padding: 21px 0 7px; color: var(--muted); font-size: 14px; font-weight: 600; text-decoration: none; transition: color 0.15s; }
.nav-links a:hover { color: var(--indigo); }
.nav-links .active { color: var(--indigo); border-bottom: 2px solid var(--indigo); }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 14px;
  background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
  color: #fff;
  box-shadow: 0 8px 20px rgb(99 102 241 / 28%);
  font-weight: 700;
  text-decoration: none;
  transition: transform .2s cubic-bezier(0.16, 1, 0.3, 1), box-shadow .2s cubic-bezier(0.16, 1, 0.3, 1);
}
.button:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgb(99 102 241 / 38%); }
.login { justify-self: end; padding: 10px 22px; border-radius: 999px; background: #10b981; color: #fff; font-size: 14px; font-weight: 700; box-shadow: 0 4px 12px rgba(16, 185, 129, 0.25); }
.login:hover { transform: translateY(-1px); box-shadow: 0 6px 16px rgba(16, 185, 129, 0.35); }

.hero {
  position: relative;
  min-height: calc(100vh - 68px);
  padding: 80px max(24px, calc((100vw - 1200px) / 2));
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
  overflow: hidden;
  background: radial-gradient(circle at 80% 20%, #f5f3ff 0%, #ffffff 60%);
}
.hero::before, .hero::after { content: ""; position: absolute; width: 420px; height: 420px; border-radius: 50%; background: var(--indigo); filter: blur(80px); opacity: .08; pointer-events: none; }
.hero::before { left: -140px; top: -140px; }
.hero::after { right: -120px; bottom: -140px; }
.hero-copy, .game-collage { position: relative; z-index: 1; }
h1 { margin: 0 0 22px; font-size: clamp(42px, 4.5vw, 62px); line-height: 1.12; letter-spacing: -.04em; font-weight: 800; }
h1 span, .section-title span { background: linear-gradient(135deg, var(--indigo) 0%, #d946ef 100%); color: transparent; background-clip: text; -webkit-background-clip: text; }
.lead { max-width: 520px; margin: 0 0 36px; color: var(--muted); font-size: 18px; line-height: 1.6; font-weight: 450; }
.actions { display: flex; align-items: center; gap: 16px; }
.secondary { display: inline-flex; justify-content: center; padding: 14px 26px; border: 1px solid #cbd5e1; border-radius: 14px; background: #fff; color: var(--muted); font-weight: 700; text-decoration: none; box-shadow: 0 2px 6px rgba(15, 23, 42, 0.04); transition: transform 0.2s, box-shadow 0.2s; }
.secondary:hover { transform: translateY(-2px); box-shadow: 0 6px 16px rgba(15, 23, 42, 0.08); }
.game-collage { min-height: 460px; position: relative; }
.game-card {
  position: absolute;
  width: min(400px, 80%);
  min-height: 360px;
  padding: 32px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 24px 60px rgb(15 23 42 / 12%), 0 4px 16px rgb(99 102 241 / 6%);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.game-card.back { top: 20px; left: 2%; transform: rotate(-6deg); }
.game-card.back:hover { transform: rotate(-4deg) translateY(-6px); }
.game-card.front { right: 2%; bottom: 10px; transform: rotate(4deg); }
.game-card.front:hover { transform: rotate(2deg) translateY(-6px); }
.game-card h2 { margin-top: 46px; font-size: 22px; font-weight: 800; }
.game-card button { width: 72px; height: 72px; border: 0; border-radius: 50%; background: #ecfdf5; font-size: 30px; cursor: pointer; box-shadow: 0 4px 14px rgba(16, 185, 129, 0.2); }
.game-card .slots { margin: 30px 0 15px; color: var(--green); font-size: 28px; font-weight: 800; letter-spacing: .2em; }
.game-card.front p { margin: 36px 0 20px; font-weight: 750; font-size: 16px; }
.game-card.front > span:not(.pill), .game-card.front strong { display: block; margin: 10px 0; padding: 13px 16px; border: 1px solid var(--line); border-radius: 12px; font-size: 14px; font-weight: 600; }
.game-card.front .answer { border-color: var(--indigo); background: #eef2ff; color: #4f46e5; font-weight: 700; box-shadow: 0 2px 8px rgba(99, 102, 241, 0.15); }
.pill { display: inline-block; padding: 6px 12px; border-radius: 99px; font-size: 11px; font-weight: 850; letter-spacing: .08em; }
.pill.green { background: #ecfdf5; color: #059669; }
.pill.blue { background: #eff6ff; color: #2563eb; }

.section { padding: 92px max(24px, calc((100vw - 1140px) / 2)); }
.tinted { background: #f8fafc; }
.eyebrow { margin: 0 0 14px; color: var(--indigo); font-size: 13px; font-weight: 850; letter-spacing: .15em; text-align: center; }
.section-title { max-width: 780px; margin: 0 auto 52px; font-size: clamp(32px, 4vw, 44px); line-height: 1.2; letter-spacing: -.03em; text-align: center; font-weight: 800; }

/* WHAT YOU GET Feature Grid */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature-grid article {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 400px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 4px 20px rgb(15 23 42 / 3%);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.25s;
}
.feature-grid article:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgb(15 23 42 / 8%), 0 8px 20px rgb(99 102 241 / 8%);
  border-color: #a5b4fc;
}
.feature-grid h3 { margin: 0 0 10px; font-size: 20px; font-weight: 800; color: var(--ink); }
.feature-grid p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.55; }

/* Mockup Elements */
.mockup-box {
  margin-top: 22px;
  padding: 18px;
  border-radius: 18px;
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  border: 1px solid #e2e8f0;
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.8), 0 2px 8px rgba(15, 23, 42, 0.03);
  font-size: 13px;
  text-align: left;
}
.mockup-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.mockup-label { color: var(--muted); font-size: 12px; font-weight: 500; }
.mockup-chip { padding: 4px 10px; border-radius: 8px; font-weight: 700; font-size: 12px; }
.mockup-chip.purple { background: #f5f3ff; color: #6d28d9; border: 1px solid #ede9fe; }
.mockup-value { font-weight: 700; color: var(--ink); font-size: 12px; }
.mockup-btn { margin-top: 12px; padding: 11px; text-align: center; border-radius: 12px; font-weight: 700; font-size: 12px; }
.mockup-btn.purple { background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%); color: #fff; box-shadow: 0 4px 14px rgb(99 102 241 / 30%); }

.mockup-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.mockup-badge { padding: 3px 9px; border-radius: 99px; font-size: 11px; font-weight: 800; }
.mockup-badge.blue { background: #eff6ff; color: #2563eb; }
.mockup-step { font-size: 11px; color: var(--muted); font-weight: 700; }
.mockup-question { font-weight: 700; margin-bottom: 10px; color: var(--ink); font-size: 13px; }
.mockup-options { display: grid; gap: 5px; }
.mockup-opt { padding: 8px 12px; border: 1px solid var(--line); border-radius: 8px; font-size: 12px; font-weight: 600; background: #fff; box-shadow: 0 1px 3px rgba(0,0,0,0.03); }
.mockup-opt.correct { border-color: #10b981; background: #ecfdf5; color: #047857; font-weight: 700; box-shadow: 0 2px 8px rgba(16, 185, 129, 0.15); }

.vocab-word { font-size: 16px; margin-bottom: 6px; color: var(--ink); }
.vocab-word .phonetic { font-size: 12px; color: var(--muted); font-weight: normal; margin-left: 6px; }
.vocab-def { font-style: italic; color: var(--muted); font-size: 12px; margin-bottom: 12px; line-height: 1.45; }
.vocab-pills { display: flex; gap: 6px; flex-wrap: wrap; }

.stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.stat-item { padding: 10px 8px; border-radius: 10px; text-align: center; box-shadow: 0 2px 6px rgba(0,0,0,0.02); }
.stat-item.green { background: #ecfdf5; color: #047857; }
.stat-item.orange { background: #fff7ed; color: #c2410c; }
.stat-item.blue { background: #eff6ff; color: #1d4ed8; }
.stat-item.purple { background: #f5f3ff; color: #6d28d9; }
.stat-num { display: block; font-weight: 800; font-size: 17px; }
.stat-lbl { font-size: 10px; opacity: 0.85; font-weight: 600; }

.mastery-mockup { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.mastery-col { display: flex; flex-direction: column; gap: 5px; }
.col-title { font-size: 10px; font-weight: 850; letter-spacing: 0.05em; margin-bottom: 4px; }
.col-title.green { color: #047857; }
.col-title.orange { color: #c2410c; }
.mastery-tag { padding: 5px 9px; border-radius: 8px; font-size: 11px; font-weight: 600; box-shadow: 0 1px 3px rgba(0,0,0,0.02); }
.mastery-tag.green { background: #ecfdf5; color: #047857; border: 1px solid #a7f3d0; }
.mastery-tag.orange { background: #fff7ed; color: #c2410c; border: 1px solid #ffedd5; }

.profiles-mockup { display: grid; gap: 6px; }
.profile-card { display: flex; align-items: center; gap: 10px; padding: 9px 12px; background: #fff; border: 1px solid var(--line); border-radius: 12px; box-shadow: 0 1px 3px rgba(0,0,0,0.02); }
.profile-card .avatar { font-size: 22px; }
.profile-card.add { justify-content: center; background: #f1f5f9; color: var(--indigo); font-weight: 700; font-size: 12px; border-style: dashed; }

.capabilities { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.capabilities article { display: flex; gap: 16px; padding: 24px; border: 1px solid var(--line); border-radius: 20px; font-size: 26px; background: #fff; box-shadow: 0 4px 14px rgba(15,23,42,0.03); transition: transform 0.2s, box-shadow 0.2s; }
.capabilities article:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(15,23,42,0.07); border-color: #cbd5e1; }
.capabilities article div { font-size: initial; }
.how { background: #f5f3ff; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 60px; text-align: center; }
.steps b { display: grid; place-items: center; width: 52px; height: 52px; margin: 0 auto 20px; border-radius: 50%; background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%); color: #fff; font-size: 20px; font-weight: 800; box-shadow: 0 6px 16px rgba(99, 102, 241, 0.3); }
.chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }
.chips span { padding: 18px 24px; border: 1px solid var(--line); border-radius: 16px; background: #fff; font-weight: 700; box-shadow: 0 4px 14px rgb(15 23 42 / 4%); transition: transform 0.2s; }
.chips span:hover { transform: translateY(-2px); }
.chips i { margin-left: 8px; padding: 3px 8px; border-radius: 6px; background: #fef3c7; color: #b45309; font-size: 10px; font-style: normal; font-weight: 800; }
.pro { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; color: #fff; background: linear-gradient(135deg, #1e1b4b 0%, #4c1d95 50%, #7c3aed 100%); border-radius: 32px; padding: 64px 56px; }
.pro .eyebrow, .pro .section-title { margin-left: 0; color: #c7d2fe; text-align: left; }
.pro-list { display: grid; gap: 14px; align-content: center; }
.pro-list span { padding: 16px 22px; border-radius: 14px; background: rgba(255, 255, 255, 0.12); backdrop-filter: blur(10px); font-weight: 600; border: 1px solid rgba(255, 255, 255, 0.15); }

/* PRICING SECTION */
.plans { display: grid; grid-template-columns: repeat(2, minmax(300px, 440px)); justify-content: center; gap: 32px; }
.plan-card {
  position: relative;
  padding: 40px 36px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  text-align: left;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
  transition: transform 0.25s, box-shadow 0.25s;
}
.plan-card:hover { transform: translateY(-4px); box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08); }
.plan-card.featured {
  border: 2px solid #6366f1;
  background: linear-gradient(180deg, #ffffff 0%, #faf5ff 100%);
  box-shadow: 0 24px 56px rgb(99 102 241 / 20%);
}
.plan-card h3 { margin: 0 0 12px; font-size: 24px; font-weight: 800; }
.price { font-size: 38px; font-weight: 900; margin: 0 0 24px; color: var(--ink); }
.price .period { font-size: 15px; font-weight: 600; color: var(--muted); }
.plan-features { list-style: none; margin: 0 0 32px; padding: 0; display: grid; gap: 12px; flex-grow: 1; text-align: left; }
.plan-features li { font-size: 15px; color: var(--muted); line-height: 1.45; }
.plan-features li.highlight { font-weight: 650; color: var(--ink); }
.plan-features li.warning-feature { color: #dc2626; font-weight: 650; }
.popular {
  position: absolute;
  right: 24px;
  top: 24px;
  color: #fff;
  font-size: 11px;
  font-weight: 850;
  background: linear-gradient(135deg, #6366f1 0%, #d946ef 100%);
  padding: 5px 14px;
  border-radius: 99px;
  box-shadow: 0 4px 12px rgba(217, 70, 239, 0.35);
}
.trust-footer { margin-top: 44px; text-align: center; color: var(--muted); font-size: 14px; }
.trust-sub { font-size: 13px; margin-top: 8px; }
.trust-sub a { color: var(--indigo); font-weight: 700; text-decoration: underline; }

.bottom-cta { padding: 88px 24px; background: radial-gradient(circle at 50% 50%, #f5f3ff 0%, #ede9fe 100%); text-align: center; }
.bottom-cta h2 { margin: 0 0 12px; font-size: 42px; font-weight: 800; }
.bottom-cta p { color: var(--muted); font-size: 18px; margin-bottom: 28px; }

footer { padding: 56px max(24px, calc((100vw - 1140px) / 2)) 0; color: var(--muted); border-top: 1px solid var(--line); font-size: 13px; background: #fff; }
.footer-groups { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; padding-bottom: 40px; }
.footer-col h4 { margin: 0 0 14px; color: var(--ink); font-size: 12px; font-weight: 850; letter-spacing: .06em; text-transform: uppercase; }
.footer-col h4 a { color: inherit; text-decoration: none; }
.footer-col h4 a:hover { color: var(--indigo); }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer-col a { color: var(--muted); text-decoration: none; font-size: 13px; transition: color 0.15s; }
.footer-col a:hover { color: var(--indigo); }
.footer-bottom { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 28px; padding: 28px 0 36px; border-top: 1px solid var(--line); }
.footer-bottom nav { display: flex; gap: 20px; }
.footer-bottom small { grid-column: 1 / -1; }

/* Generic SEO landing page */
.page-hero { padding: 72px max(24px, calc((100vw - 1140px) / 2)) 60px; text-align: center; background: radial-gradient(circle at 50% 20%, #f5f3ff 0%, #ffffff 70%); }
.page-h1 { margin: 0 0 20px; font-size: clamp(34px, 4vw, 48px); line-height: 1.18; letter-spacing: -.03em; font-weight: 800; }
.page-hero .lead { max-width: 660px; margin: 0 auto 34px; }
.page-hero .actions { justify-content: center; }
.section-title.small { max-width: 760px; margin: 0 auto 24px; font-size: clamp(24px, 3vw, 32px); text-align: left; font-weight: 800; }
.content-section { padding-top: 60px; padding-bottom: 60px; max-width: 880px; margin: 0 auto; }
.content-section p { color: var(--muted); font-size: 16px; line-height: 1.7; margin: 0; }
.content-section.tinted { max-width: 100%; background: #f8fafc; }
.content-section.tinted > * { max-width: 880px; margin-left: auto; margin-right: auto; }
.compare-table-wrap { max-width: 880px; margin: 0 auto; overflow-x: auto; }
.compare-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.compare-table th, .compare-table td { padding: 16px 18px; text-align: left; border-bottom: 1px solid var(--line); }
.compare-table th { color: var(--ink); font-weight: 800; background: #f8fafc; }
.compare-table td:last-child { color: #047857; font-weight: 650; }
.faq-list { max-width: 880px; margin: 0 auto; display: grid; gap: 14px; }
.faq-list details { padding: 18px 22px; border: 1px solid var(--line); border-radius: 16px; background: #fff; box-shadow: 0 2px 6px rgba(0,0,0,0.02); }
.faq-list summary { cursor: pointer; font-weight: 700; color: var(--ink); font-size: 16px; }
.faq-list p { margin-top: 12px; }
.related.content-section { text-align: center; }
.related-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.related-links a { padding: 11px 20px; border: 1px solid var(--line); border-radius: 999px; background: #fff; color: var(--muted); text-decoration: none; font-size: 13px; font-weight: 650; transition: color 0.15s, border-color 0.15s; }
.related-links a:hover { color: var(--indigo); border-color: var(--indigo); }

/* Breadcrumbs */
.breadcrumb { padding: 16px max(24px, calc((100vw - 1140px) / 2)) 0; }
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: 6px; list-style: none; margin: 0; padding: 0; font-size: 12px; color: #94a3b8; }
.breadcrumb li:not(:last-child)::after { content: "›"; margin-left: 6px; color: #cbd5e1; }
.breadcrumb a { color: #94a3b8; text-decoration: none; }
.breadcrumb a:hover { color: var(--indigo); }
.breadcrumb li[aria-current] { color: var(--muted); font-weight: 650; }

/* Hub pages */
.content-section.wide { max-width: 1140px; }
.link-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.link-cards .link-card { display: block; padding: 28px; border: 1px solid var(--line); border-radius: 22px; background: #fff; text-decoration: none; box-shadow: 0 5px 18px rgb(15 23 42 / 4%); transition: transform .2s, box-shadow .2s; }
.link-cards .link-card:hover { transform: translateY(-4px); box-shadow: 0 16px 36px rgb(15 23 42 / 8%); }
.link-cards .link-card h3 { margin: 0 0 10px; color: var(--ink); font-size: 18px; font-weight: 800; }
.link-cards .link-card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.55; }

/* Substantive, printable word-list resources */
.word-list-section { margin-top: 20px; padding: 44px; border: 1px solid #c7d2fe; border-radius: 24px; background: linear-gradient(145deg, #ffffff 0%, #f5f3ff 100%); box-shadow: 0 16px 40px rgb(79 70 229 / 8%); }
.word-list-section > .eyebrow { text-align: left; margin-bottom: 10px; }
.word-list-section .section-title.small { margin-left: 0; }
.word-list-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px 18px; margin: 28px 0; padding: 0; list-style: none; counter-reset: practice-word; }
.word-list-grid li { counter-increment: practice-word; position: relative; min-height: 54px; padding: 14px 16px 14px 48px; border: 1px solid var(--line); border-radius: 14px; background: #fff; color: var(--ink); line-height: 1.4; }
.word-list-grid li::before { content: counter(practice-word); position: absolute; left: 15px; top: 15px; display: grid; place-items: center; width: 22px; height: 22px; border-radius: 50%; background: #eef2ff; color: var(--indigo); font-size: 11px; font-weight: 800; }
.word-list-grid strong { display: block; font-size: 16px; }
.word-list-grid span { display: block; margin-top: 4px; color: var(--muted); font-size: 13px; }
.word-list-section .word-list-note { margin: 0 0 22px; padding: 16px 18px; border-left: 4px solid var(--indigo); border-radius: 0 10px 10px 0; background: #eef2ff; color: #3730a3; font-weight: 650; }
.word-list-section .lead-magnet-actions { justify-content: flex-start; }
.comparison-sources { margin-top: 24px; padding: 28px 32px; border: 1px solid var(--line); border-radius: 18px; background: #f8fafc; }
.comparison-sources .section-title.small { margin-left: 0; font-size: 22px; }
.comparison-sources p + p { margin-top: 8px; }
.comparison-sources ul { margin: 14px 0 0; padding-left: 20px; }
.comparison-sources li { margin: 8px 0; }
.comparison-sources a { color: var(--indigo); font-weight: 650; }

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding-top: 56px; gap: 36px; }
  .hero-copy { text-align: center; }
  .lead { margin-left: auto; margin-right: auto; }
  .actions { justify-content: center; }
  .game-collage { min-height: 400px; }
  .feature-grid, .capabilities, .steps, .plans { grid-template-columns: 1fr; }
  .pro { grid-template-columns: 1fr; gap: 32px; padding: 40px 32px; }
  .footer-groups { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { grid-template-columns: 1fr; text-align: center; }
  .footer-bottom nav { justify-content: center; }
  .footer-bottom small { grid-column: auto; }
  .section-title.small { text-align: center; }
  .link-cards { grid-template-columns: 1fr; }
  .word-list-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .nav { grid-template-columns: 1fr auto; }
  .nav-links { display: none; }
  h1 { font-size: 36px; }
  .actions { flex-direction: column; }
  .actions a { width: 100%; }
  .game-collage { min-height: 350px; }
  .game-card { width: 90%; min-height: 300px; padding: 22px; }
  .game-card.back { left: 0; }
  .game-card.front { right: 0; }
  .section { padding-top: 64px; padding-bottom: 64px; }
}

/* Lead Generation & CRO Utilities */
.hero-subtext { margin-top: 14px; font-size: 13px; font-weight: 600; color: #475569; display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.trust-banner { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-bottom: 40px; }
.trust-pill { background: #f1f5f9; border: 1px solid #cbd5e1; padding: 6px 14px; border-radius: 20px; font-size: 13px; font-weight: 600; color: #334155; }
.interactive-demo-card { border: 2px solid var(--indigo); border-radius: 20px; padding: 20px; background: #faf5ff; box-shadow: 0 10px 30px rgba(99,102,241,0.12); cursor: pointer; }
.demo-opt-btn { background: #ffffff; border: 1px solid #cbd5e1; border-radius: 10px; padding: 10px 16px; margin-top: 8px; font-weight: 600; cursor: pointer; text-align: left; transition: all 0.2s; display: block; width: 100%; color: var(--ink); }
.demo-opt-btn:hover { border-color: var(--indigo); background: #f3e8ff; }
.demo-opt-btn.correct { background: #dcfce7; border-color: #22c55e; color: #15803d; font-weight: 700; }
.demo-cta-link { display: inline-block; margin-top: 8px; font-weight: 800; color: var(--indigo); text-decoration: underline; }

.lead-magnet-card { background: linear-gradient(135deg, #f5f3ff 0%, #eff6ff 100%); border: 2px dashed var(--indigo); border-radius: 20px; padding: 32px; text-align: center; margin: 32px 0; }
.lead-magnet-badge { display: inline-block; background: var(--indigo); color: #fff; font-size: 12px; font-weight: 800; padding: 4px 12px; border-radius: 12px; letter-spacing: 0.5px; margin-bottom: 12px; }
.lead-magnet-card h3 { margin: 0 0 10px; font-size: 22px; font-weight: 800; color: var(--ink); }
.lead-magnet-card p { margin: 0 0 20px; color: var(--muted); font-size: 15px; max-width: 600px; margin-left: auto; margin-right: auto; }
.lead-magnet-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.lead-magnet-btn { background: #0f172a; color: #fff; cursor: pointer; border: none; }
.lead-magnet-btn:hover { background: #1e293b; }

@media print {
  .nav, footer, .page-hero .actions, .page-hero .lead, .page-hero .eyebrow, .bottom-cta, .breadcrumb, .lead-magnet-actions, .content-section:not(.word-list-section) { display: none !important; }
  body { background: #fff; color: #000; }
  .section { padding: 10px 0; }
  .page-hero { padding: 12px 0; background: #fff; }
  .page-h1 { font-size: 28px; text-align: left; }
  .word-list-section { margin: 0; padding: 0; border: 0; box-shadow: none; background: #fff; }
  .word-list-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px 14px; }
  .word-list-grid li { break-inside: avoid; padding-top: 10px; padding-bottom: 10px; min-height: 44px; }
}
