/*
 * Public /practice SEO pages. Same scoping pattern as home.module.css: all
 * selectors hang off `.page`, which defines page-local LIGHT-mode tokens so
 * the global `.dark` block can never leak in (these are static marketing
 * pages with no theme toggle and no JavaScript at all).
 *
 * This file is the ONLY stylesheet the pre-rendered pages link — the Tailwind
 * bundle is never loaded — so it also carries the .stem-pre / .stem-code
 * rules that StemRenderer's global classes normally get from globals.css.
 */

._page_zqleb_3 {
  --bg: #f7f7f8;
  --bg-elevated: #ffffff;
  --bg-subtle: #efeff2;
  --text-1: #0e0e12;
  --text-2: #4a4a55;
  --text-3: #8a8a97;
  --border: #e6e6ec;
  /* Pinned light-mode accents (see home.module.css for the .dark leak note). */
  --accent: #4f46e5;
  --accent-pressed: #4338ca;
  --green: #16a34a;
  --font-serif: 'Source Serif 4', Charter, 'Iowan Old Style', Georgia, serif;
  --font-mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;

  background: var(--bg);
  color: var(--text-1);
  font-family: 'Geist', -apple-system, 'SF Pro Display', 'Segoe UI', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

._page_zqleb_3 a {
  color: inherit;
  text-decoration: none;
}

._wrap_zqleb_43 {
  box-sizing: border-box;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 640px) {
  ._wrap_zqleb_43 {
    padding: 0 20px;
  }
}

/* ── Nav ─────────────────────────────────────────── */
._nav_zqleb_57 {
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--border);
}
._navInner_zqleb_61 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
._brand_zqleb_67 {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.025em;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}
._brandHead_zqleb_75 {
  color: var(--accent);
}
._navLinks_zqleb_78 {
  display: flex;
  gap: 8px;
  align-items: center;
}
._navLinks_zqleb_78 a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
  border-radius: 7px;
  transition: color 0.15s ease, background 0.15s ease;
}
@media (hover: hover) {
  ._navLinks_zqleb_78 a:hover {
    color: var(--text-1);
    background: var(--bg-subtle);
  }
}
._navLinks_zqleb_78 a:active {
  transform: scale(0.98);
}
._page_zqleb_3 ._navCta_zqleb_103 {
  color: var(--accent);
}

/* ── Headings / copy ─────────────────────────────── */
._breadcrumbs_zqleb_108 {
  padding-top: 28px;
  font-size: 13px;
  color: var(--text-3);
}
._breadcrumbs_zqleb_108 ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
._breadcrumbs_zqleb_108 li + li::before {
  content: '/';
  margin-right: 6px;
  color: var(--text-3);
}
._breadcrumbs_zqleb_108 a {
  color: var(--text-2);
}
@media (hover: hover) {
  ._breadcrumbs_zqleb_108 a:hover {
    color: var(--accent);
  }
}

._h1_zqleb_135 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 40px;
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin: 18px 0 14px;
}
._h2_zqleb_143 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 44px 0 16px;
}
@media (max-width: 640px) {
  ._h1_zqleb_135 {
    font-size: 30px;
  }
}
._lede_zqleb_154 {
  max-width: 720px;
  margin: 0 0 8px;
  font-size: 16px;
  color: var(--text-2);
}
._eyebrow_zqleb_160 {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-3);
}

/* ── Link cards (tracks / topics) ────────────────── */
._cardGrid_zqleb_169 {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 1024px) {
  ._cardGrid_zqleb_169 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  ._cardGrid_zqleb_169 {
    grid-template-columns: 1fr;
  }
}
._card_zqleb_169 {
  display: flex;
  flex-direction: column;
  gap: 6px;
  height: 100%;
  box-sizing: border-box;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 22px 20px;
  min-height: 44px;
  transition: transform 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}
@media (hover: hover) {
  ._card_zqleb_169:hover {
    transform: translateY(-2px);
    border-color: #c7c7d0;
    box-shadow: 0 6px 18px rgba(8, 8, 15, 0.06);
  }
}
._card_zqleb_169:active {
  transform: scale(0.99);
}
._cardTitle_zqleb_210 {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
._cardMeta_zqleb_215 {
  font-size: 13px;
  color: var(--text-3);
  font-variant-numeric: tabular-nums;
}

/* ── Sample questions ────────────────────────────── */
._questions_zqleb_222 {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 20px;
}
._question_zqleb_222 {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 22px 20px;
}
._qEyebrow_zqleb_234 {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}
._qDifficulty_zqleb_242 {
  color: var(--text-3);
  font-weight: 500;
}
._stem_zqleb_8 {
  font-size: 15px;
  margin-bottom: 14px;
}
._options_zqleb_250 {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
._option_zqleb_250 {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  min-height: 44px;
  box-sizing: border-box;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 11px 14px;
  font-size: 15px;
}
._optionLetter_zqleb_270 {
  flex: none;
  font-weight: 700;
  color: var(--text-3);
  font-variant-numeric: tabular-nums;
}
._optionText_zqleb_276 {
  min-width: 0;
}

/* ── Answer reveal (native <details>, zero JS) ───── */
._reveal_zqleb_281 {
  margin-top: 14px;
}
._revealSummary_zqleb_284 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 18px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-1);
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 7px;
  cursor: pointer;
  list-style: none;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}
._revealSummary_zqleb_284::-webkit-details-marker {
  display: none;
}
._revealSummary_zqleb_284::before {
  content: '▸';
  color: var(--accent);
  transition: transform 0.15s ease;
}
._reveal_zqleb_281[open] ._revealSummary_zqleb_284::before {
  transform: rotate(90deg);
}
@media (hover: hover) {
  ._revealSummary_zqleb_284:hover {
    background: var(--bg-subtle);
    border-color: #c7c7d0;
  }
}
._revealSummary_zqleb_284:active {
  transform: scale(0.98);
}
._revealBody_zqleb_320 {
  margin-top: 12px;
  border-left: 3px solid var(--green);
  padding: 2px 0 2px 14px;
}
._answerLine_zqleb_325 {
  margin: 0 0 4px;
  font-size: 14px;
  font-weight: 600;
  color: var(--green);
}
._answerText_zqleb_331 {
  font-size: 15px;
  margin-bottom: 10px;
}
._explanation_zqleb_335 {
  font-size: 14px;
  color: var(--text-2);
}

/* ── CTA + footer ────────────────────────────────── */
._cta_zqleb_341 {
  text-align: center;
  margin: 56px 0 64px;
  padding: 36px 24px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 12px;
}
._ctaTitle_zqleb_349 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 6px;
}
._ctaLede_zqleb_355 {
  margin: 0 0 18px;
  font-size: 15px;
  color: var(--text-2);
}
._btn_zqleb_360 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 44px;
  padding: 0 18px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 7px;
  transition: background 0.15s ease, transform 0.15s ease;
  white-space: nowrap;
}
._page_zqleb_3 ._btnPrimary_zqleb_373 {
  background: var(--accent);
  color: #fff;
}
@media (hover: hover) {
  ._page_zqleb_3 ._btnPrimary_zqleb_373:hover {
    background: var(--accent-pressed);
  }
}
._btn_zqleb_360:active {
  transform: scale(0.98);
}

._footer_zqleb_386 {
  margin-top: auto;
  border-top: 1px solid var(--border);
  background: var(--bg-elevated);
}
._footerInner_zqleb_391 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 20px;
  padding-bottom: 20px;
  font-size: 13px;
  color: var(--text-3);
}
._footerLinks_zqleb_402 {
  display: flex;
  gap: 4px;
}
._footerLinks_zqleb_402 a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 10px;
  color: var(--text-2);
}
@media (hover: hover) {
  ._footerLinks_zqleb_402 a:hover {
    color: var(--accent);
  }
}

/* ── StemRenderer global classes (normally from globals.css) ── */
._page_zqleb_3 .stem-pre {
  font-family: var(--font-mono);
  background-color: var(--bg-subtle);
  border: 1px solid var(--border);
  color: var(--text-1);
  padding: 0.75rem 0.875rem;
  border-radius: 0.375rem;
  overflow-x: auto;
  font-size: 0.9em;
  line-height: 1.4;
  margin: 0.5rem 0;
  white-space: pre;
}
._page_zqleb_3 .stem-pre code {
  font-family: inherit;
  background: none;
  padding: 0;
  font-size: inherit;
  color: inherit;
}
._page_zqleb_3 .stem-code {
  font-family: var(--font-mono);
  background-color: var(--bg-subtle);
  color: var(--text-1);
  padding: 0.125rem 0.3125rem;
  border-radius: 0.1875rem;
  font-size: 0.9em;
}

/* ── Reduced motion: these pages never load globals.css, so they need
     their own kill switch. ── */
@media (prefers-reduced-motion: reduce) {
  ._page_zqleb_3 *,
  ._page_zqleb_3 *::before,
  ._page_zqleb_3 *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
