/* Discipline landing pages. Sits on top of learn.css and reuses its tokens,
   so these pages inherit the site's light/dark theming for free. */
.lp { max-width: 880px; padding-top: 8px; }
.lp h1 { font-family: "Poppins", sans-serif; font-weight: 800; font-size: clamp(30px, 5vw, 46px);
  line-height: 1.08; letter-spacing: -.02em; color: var(--ink); margin: 10px 0 0; text-wrap: balance; }
.lp-lede { font-size: 19px; line-height: 1.6; color: var(--body); margin: 18px 0 0; max-width: 62ch; }
.lp-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.lp-cta-end { margin-top: 40px; }

.lp-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 34px; }
.lp-stats div { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 20px; text-align: center; box-shadow: var(--shadow-sm); }
.lp-stats b { display: block; font-family: "Poppins", sans-serif; font-weight: 800;
  font-size: clamp(26px, 4vw, 36px); line-height: 1; letter-spacing: -.03em; color: var(--brand); }
.lp-stats span { display: block; margin-top: 9px; font-size: 14px; line-height: 1.45; color: var(--muted); }

/* learn.css sets section{padding:88px 0} — that is right for the top-level
   section wrapper but doubles up on these nested ones. */
.lp section.lp-sec { padding: 0; margin-top: 40px; }
.lp-sec h2 { font-family: "Poppins", sans-serif; font-weight: 700; font-size: clamp(22px, 3vw, 29px);
  letter-spacing: -.015em; color: var(--ink); margin: 0 0 14px; }
.lp-sec p { font-size: 17px; line-height: 1.65; color: var(--body); margin: 0 0 14px; max-width: 68ch; }

.lp-faq { margin: 0; }
.lp-faq dt { font-family: "Poppins", sans-serif; font-weight: 600; font-size: 17px;
  color: var(--ink); margin-top: 20px; }
.lp-faq dd { margin: 7px 0 0; font-size: 17px; line-height: 1.6; color: var(--body); max-width: 68ch; }

.lp-also { border-top: 1px solid var(--line); padding-top: 32px; }
.lp-links { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; }
.lp-links a { display: inline-flex; align-items: center; font-size: 15px; font-weight: 500;
  padding: 9px 15px; border-radius: 999px; border: 1px solid var(--line);
  background: var(--surface); color: var(--body); text-decoration: none; }
.lp-links a:hover { border-color: var(--brand); color: var(--brand-d); }

@media (max-width: 700px) { .lp-stats { grid-template-columns: 1fr; } }
