/* =========================================================
   41 Launchpad — Shared Design System
   Light, card-based, generous whitespace, minimal text.
   ========================================================= */

:root {
  /* Surfaces — warm off-white, not pure white */
  --bg-page: #FAF8F3;
  --bg-card: #FFFFFF;
  --bg-soft: #F3EFE6;
  --bg-ink: #1A1814;

  /* Text */
  --ink: #1A1814;
  --ink-dim: #6B6358;
  --ink-faint: #A39B8C;
  --ink-invert: #FAF8F3;

  /* Lines */
  --line: #E8E2D5;
  --line-strong: #D8CFBE;

  /* Brand accents */
  --molten: #E8622C;        /* forge orange — primary accent */
  --molten-soft: #FF7E4D;
  --niobium: #4A7FB8;       /* steady blue — leaders */
  --gold: #C68A12;          /* founders */
  --coral: #E8622C;         /* builders */

  /* Tints (light backgrounds) */
  --tint-gold: #FBF3E2;
  --tint-blue: #EAF1F8;
  --tint-coral: #FCEDE6;

  /* Radius + shadow */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-pill: 100px;
  --shadow-card: 0 1px 2px rgba(26, 24, 20, 0.04), 0 8px 24px rgba(26, 24, 20, 0.04);
  --shadow-hover: 0 2px 4px rgba(26, 24, 20, 0.06), 0 16px 40px rgba(26, 24, 20, 0.08);

  /* Type — one clean family, kept deliberately simple */
  --serif: 'Inter Tight', system-ui, -apple-system, sans-serif;
  --sans: 'Inter Tight', system-ui, -apple-system, sans-serif;
  --mono: 'Inter Tight', ui-monospace, monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }

body {
  background: var(--bg-page);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.container-narrow { max-width: 880px; margin: 0 auto; padding: 0 32px; }

/* ---------- Eyebrow / labels ---------- */
.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--molten);
}
.eyebrow.blue { color: var(--niobium); }
.eyebrow.gold { color: var(--gold); }
.eyebrow.muted { color: var(--ink-faint); }

/* ---------- Headings ---------- */
h1, h2, h3 { font-family: var(--serif); letter-spacing: -0.02em; color: var(--ink); }
.display {
  font-family: var(--serif);
  font-weight: 800;
  font-size: clamp(34px, 5.2vw, 58px);
  line-height: 1.05;
  letter-spacing: -0.03em;
}
.h2 {
  font-family: var(--serif);
  font-weight: 800;
  font-size: clamp(27px, 3.4vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.025em;
}
.h3 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(19px, 2vw, 24px);
  line-height: 1.2;
}
em.accent, .accent { font-style: normal; color: var(--molten); }
em.accent-blue { font-style: normal; color: var(--niobium); }
em.accent-gold { font-style: normal; color: var(--gold); }

.lede {
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.5;
  color: var(--ink-dim);
  max-width: 580px;
}
.muted { color: var(--ink-dim); }
.faint { color: var(--ink-faint); }

/* =========================================================
   NAVBAR
   ========================================================= */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250, 248, 243, 0.82);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-row {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px; gap: 24px;
}
.brand { display: flex; align-items: center; gap: 9px; font-family: var(--serif); font-weight: 800; font-size: 19px; letter-spacing: -0.02em; color: var(--ink); }
.brand .mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border-radius: 9px;
  background: var(--bg-ink); color: #fff;
  font-weight: 800; font-size: 15px; letter-spacing: -0.04em;
  position: relative;
}
.brand .mark::after {
  content: ''; position: absolute; right: 5px; top: 6px;
  width: 3px; height: 3px; border-radius: 50%; background: var(--molten);
}
.brand em { font-style: normal; color: var(--molten); }
.brand .brand-name { color: var(--ink); }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--ink-dim);
  padding: 8px 14px; border-radius: var(--r-pill);
  transition: color .15s ease, background .15s ease;
}
.nav-links a:hover { color: var(--ink); background: var(--bg-soft); }
.nav-links a.active { color: var(--ink); }

.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  width: 40px; height: 40px; border-radius: 10px; align-items: center; justify-content: center;
}
.nav-toggle span { display: block; width: 18px; height: 2px; background: var(--ink); position: relative; }
.nav-toggle span::before, .nav-toggle span::after { content: ''; position: absolute; left: 0; width: 18px; height: 2px; background: var(--ink); }
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--sans); font-size: 14px; font-weight: 600;
  padding: 11px 20px; border-radius: var(--r-pill);
  border: 1px solid transparent; cursor: pointer;
  transition: transform .12s ease, background .15s ease, border-color .15s ease, box-shadow .15s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--molten); color: #fff; }
.btn-primary:hover { background: #d8551f; }
.btn-dark { background: var(--bg-ink); color: var(--ink-invert); }
.btn-dark:hover { background: #2a2620; }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn-ghost:hover { background: var(--bg-card); border-color: var(--ink-faint); }
.btn-lg { padding: 14px 26px; font-size: 15px; }
.btn-sm { padding: 8px 16px; font-size: 13px; }
.btn .arrow { transition: transform .15s ease; }
.btn:hover .arrow { transform: translateX(3px); }

/* =========================================================
   GENERIC SECTION + CARDS
   ========================================================= */
section { padding: 88px 0; }
.section-sm { padding: 56px 0; }
.section-head { max-width: 720px; margin-bottom: 48px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head .eyebrow { margin-bottom: 14px; display: block; }
.section-head .h2 { margin-bottom: 14px; }

.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 28px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.card-hover:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); border-color: var(--line-strong); }
.card .card-icon {
  width: 44px; height: 44px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: var(--tint-coral); color: var(--molten);
  margin-bottom: 18px;
}
.card .card-icon svg { width: 22px; height: 22px; }
.card h3 { font-size: 19px; margin-bottom: 8px; }
.card p { font-size: 14.5px; color: var(--ink-dim); line-height: 1.55; }

.pill {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--sans); font-size: 12px; font-weight: 600;
  padding: 5px 12px; border-radius: var(--r-pill);
  background: var(--bg-soft); color: var(--ink-dim);
  border: 1px solid var(--line);
}
.pill.gold { background: var(--tint-gold); color: var(--gold); border-color: #efe1c4; }
.pill.blue { background: var(--tint-blue); color: var(--niobium); border-color: #d6e3f0; }
.pill.coral { background: var(--tint-coral); color: var(--molten); border-color: #f6ddd0; }

.dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }

/* =========================================================
   HERO (home)
   ========================================================= */
.hero { padding: 72px 0 64px; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.hero h1 { margin: 18px 0 20px; }
.hero .lede { margin-bottom: 30px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 34px; }
.hero-trust { display: flex; gap: 28px; flex-wrap: wrap; }
.hero-trust .stat .n { font-family: var(--serif); font-weight: 700; font-size: 26px; color: var(--ink); line-height: 1; }
.hero-trust .stat .l { font-size: 12.5px; color: var(--ink-faint); margin-top: 5px; }

/* Hero visual — stacked element cards */
.hero-visual { position: relative; }
.hero-card-stack { display: grid; gap: 16px; }
.element-badge {
  display: grid; grid-template-columns: auto 1fr; gap: 18px; align-items: center;
  background: var(--bg-card); border: 1px solid var(--line);
  border-radius: var(--r-md); padding: 20px 22px; box-shadow: var(--shadow-card);
}
.element-badge .sym {
  width: 64px; height: 64px; border-radius: 14px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: var(--bg-ink); color: #fff;
}
.element-badge .sym b { font-family: var(--serif); font-size: 26px; font-weight: 800; line-height: 1; }
.element-badge .sym span { font-family: var(--mono); font-size: 9px; color: var(--molten-soft); margin-top: 3px; letter-spacing: 0.1em; }
.element-badge .meta .t { font-family: var(--serif); font-weight: 700; font-size: 17px; }
.element-badge .meta .d { font-size: 13px; color: var(--ink-dim); margin-top: 2px; }

/* =========================================================
   PROGRAM CARDS (home + listings)
   ========================================================= */
.program-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.prog-card {
  background: var(--bg-card); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 30px; display: flex; flex-direction: column;
  position: relative; overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.prog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); border-color: var(--line-strong); }
.prog-card .topline { height: 4px; border-radius: 4px; width: 44px; margin-bottom: 22px; }
.prog-card.gold .topline { background: var(--gold); }
.prog-card.blue .topline { background: var(--niobium); }
.prog-card.coral .topline { background: var(--molten); }
.prog-card .badge-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.prog-card .sym-sq {
  width: 50px; height: 50px; border-radius: 12px; display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-weight: 800; font-size: 18px;
}
.prog-card.gold .sym-sq { background: var(--tint-gold); color: var(--gold); }
.prog-card.blue .sym-sq { background: var(--tint-blue); color: var(--niobium); }
.prog-card.coral .sym-sq { background: var(--tint-coral); color: var(--molten); }
.prog-card h3 { font-size: 24px; margin-bottom: 8px; }
.prog-card .tagline { font-size: 14.5px; color: var(--ink-dim); line-height: 1.5; margin-bottom: 20px; }
.prog-card .facts { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.prog-card ul { list-style: none; margin-bottom: 24px; }
.prog-card ul li { position: relative; padding-left: 24px; font-size: 14px; color: var(--ink-dim); line-height: 1.5; margin-bottom: 9px; }
.prog-card ul li svg { position: absolute; left: 0; top: 3px; width: 15px; height: 15px; }
.prog-card.gold ul li svg { color: var(--gold); }
.prog-card.blue ul li svg { color: var(--niobium); }
.prog-card.coral ul li svg { color: var(--molten); }
.prog-card .price-foot { margin-top: auto; padding-top: 20px; border-top: 1px solid var(--line); display: flex; align-items: flex-end; justify-content: space-between; }
.prog-card .price-foot .p { font-family: var(--serif); font-weight: 700; font-size: 28px; }
.prog-card.gold .price-foot .p { color: var(--gold); }
.prog-card.blue .price-foot .p { color: var(--niobium); }
.prog-card.coral .price-foot .p { color: var(--molten); }
.prog-card .price-foot .sub { font-size: 12px; color: var(--ink-faint); }

/* =========================================================
   FEATURE / SPLIT ROWS
   ========================================================= */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media {
  background: var(--bg-card); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 32px; min-height: 320px;
  display: flex; align-items: center; justify-content: center;
}

/* Soft feature band */
.band { background: var(--bg-soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.band-ink { background: var(--bg-ink); color: var(--ink-invert); }
.band-ink h2, .band-ink .h2, .band-ink h3 { color: #fff; }
.band-ink .muted { color: #b8b0a2; }
.band-ink .card { background: #221f1a; border-color: #34302a; }
.band-ink .card h3 { color: #fff; }
.band-ink .card p { color: #b8b0a2; }

/* =========================================================
   STEP / PROCESS LIST
   ========================================================= */
.steps { display: grid; gap: 16px; }
.step {
  display: grid; grid-template-columns: auto 1fr; gap: 20px; align-items: start;
  background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--r-md); padding: 22px 24px;
}
.step .n {
  width: 38px; height: 38px; border-radius: 10px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--mono); font-weight: 700; font-size: 14px;
  background: var(--bg-soft); color: var(--molten);
}
.step h3 { font-size: 18px; margin-bottom: 5px; }
.step p { font-size: 14px; color: var(--ink-dim); line-height: 1.55; }

/* =========================================================
   CURRICULUM MODULES
   ========================================================= */
.modules { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.module {
  background: var(--bg-card); border: 1px solid var(--line);
  border-left: 3px solid var(--molten); border-radius: var(--r-sm);
  padding: 20px 22px;
}
.module.blue { border-left-color: var(--niobium); }
.module.gold { border-left-color: var(--gold); }
.module .k { font-family: var(--mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--ink-faint); margin-bottom: 8px; }
.module h4 { font-family: var(--serif); font-weight: 700; font-size: 17px; margin-bottom: 6px; line-height: 1.2; }
.module p { font-size: 13.5px; color: var(--ink-dim); line-height: 1.5; }

/* =========================================================
   OUTCOME / CALLOUT
   ========================================================= */
.callout {
  background: var(--bg-card); border: 1px solid var(--line);
  border-radius: var(--r-md); padding: 28px 30px; position: relative; overflow: hidden;
}
.callout::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--molten); }
.callout.blue::before { background: var(--niobium); }
.callout.gold::before { background: var(--gold); }
.callout .k { font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--molten); margin-bottom: 10px; }
.callout.blue .k { color: var(--niobium); }
.callout.gold .k { color: var(--gold); }
.callout p { font-family: var(--sans); font-style: normal; font-weight: 500; font-size: 17px; line-height: 1.55; color: var(--ink); }

/* =========================================================
   SPEAKERS / PEOPLE
   ========================================================= */
.people { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.person { background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--r-md); padding: 20px; }
.person .role { font-family: var(--mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--molten); margin-bottom: 8px; }
.person .name { font-family: var(--serif); font-weight: 700; font-size: 16px; margin-bottom: 4px; }
.person .from { font-size: 12.5px; color: var(--ink-faint); line-height: 1.45; }

/* =========================================================
   PRICING
   ========================================================= */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.price-card {
  background: var(--bg-card); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 32px; display: flex; flex-direction: column;
}
.price-card.featured { border-color: var(--molten); box-shadow: 0 12px 40px rgba(232,98,44,0.10); }
.price-card .tag { margin-bottom: 18px; }
.price-card h3 { font-size: 22px; margin-bottom: 6px; }
.price-card .desc { font-size: 13.5px; color: var(--ink-dim); line-height: 1.5; margin-bottom: 22px; min-height: 40px; }
.price-card .amount { display: flex; align-items: baseline; gap: 6px; margin-bottom: 4px; }
.price-card .amount .cur { font-family: var(--serif); font-weight: 600; font-size: 22px; color: var(--ink); }
.price-card .amount .val { font-family: var(--serif); font-weight: 800; font-size: 44px; letter-spacing: -0.02em; color: var(--ink); line-height: 1; }
.price-card .per { font-size: 12.5px; color: var(--ink-faint); margin-bottom: 24px; }
.price-card ul { list-style: none; margin-bottom: 26px; flex-grow: 1; }
.price-card ul li { position: relative; padding-left: 26px; font-size: 14px; color: var(--ink-dim); line-height: 1.5; margin-bottom: 11px; }
.price-card ul li svg { position: absolute; left: 0; top: 2px; width: 16px; height: 16px; color: var(--molten); }
.price-card .btn { width: 100%; justify-content: center; }

/* Pricing table */
.ptable { width: 100%; border-collapse: collapse; font-size: 14px; }
.ptable th { text-align: left; font-family: var(--mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--ink-faint); padding: 14px 16px; border-bottom: 1px solid var(--line-strong); }
.ptable td { padding: 18px 16px; vertical-align: top; border-bottom: 1px solid var(--line); }
.ptable .pname { font-family: var(--serif); font-weight: 700; font-size: 16px; }
.ptable .psub { font-size: 12px; color: var(--ink-faint); margin-top: 3px; }
.ptable .pamt { font-family: var(--serif); font-weight: 700; font-size: 20px; }

/* =========================================================
   FAQ
   ========================================================= */
.faq { display: grid; gap: 12px; max-width: 760px; margin: 0 auto; }
.faq details {
  background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 4px 24px; transition: border-color .15s ease;
}
.faq details[open] { border-color: var(--line-strong); }
.faq summary {
  list-style: none; cursor: pointer; padding: 18px 0;
  font-family: var(--serif); font-weight: 600; font-size: 17px; color: var(--ink);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .ic { flex-shrink: 0; width: 22px; height: 22px; position: relative; transition: transform .2s ease; }
.faq summary .ic::before, .faq summary .ic::after { content: ''; position: absolute; background: var(--molten); border-radius: 2px; }
.faq summary .ic::before { top: 10px; left: 4px; width: 14px; height: 2px; }
.faq summary .ic::after { top: 4px; left: 10px; width: 2px; height: 14px; transition: opacity .2s ease; }
.faq details[open] summary .ic::after { opacity: 0; }
.faq details p { padding: 0 0 20px; font-size: 15px; color: var(--ink-dim); line-height: 1.6; }

/* =========================================================
   CTA BAND
   ========================================================= */
.cta-band {
  background: var(--bg-ink); color: #fff;
  border-radius: var(--r-lg); padding: 64px 48px; text-align: center;
  position: relative; overflow: hidden;
}
.cta-band h2 { color: #fff; margin-bottom: 16px; }
.cta-band p { color: #b8b0a2; max-width: 520px; margin: 0 auto 28px; font-size: 17px; }
.cta-band .hero-actions { justify-content: center; margin-bottom: 0; }
.cta-band .glow { position: absolute; width: 380px; height: 380px; border-radius: 50%; background: radial-gradient(circle, rgba(232,98,44,0.28), transparent 70%); top: -160px; right: -80px; pointer-events: none; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer { border-top: 1px solid var(--line); padding: 56px 0 36px; margin-top: 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 40px; }
.footer .brand { margin-bottom: 14px; }
.footer .blurb { font-size: 14px; color: var(--ink-dim); line-height: 1.6; max-width: 280px; }
.footer h4 { font-family: var(--sans); font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-faint); margin-bottom: 14px; }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 9px; }
.footer ul li a { font-size: 14px; color: var(--ink-dim); }
.footer ul li a:hover { color: var(--ink); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; padding-top: 24px; border-top: 1px solid var(--line); font-size: 13px; color: var(--ink-faint); }

/* =========================================================
   PAGE HEADER (interior pages)
   ========================================================= */
.page-head { padding: 64px 0 40px; }
.page-head .crumbs { font-size: 13px; color: var(--ink-faint); margin-bottom: 18px; }
.page-head .crumbs a:hover { color: var(--ink); }
.page-head h1 { margin: 14px 0 16px; }

/* Detail layout (program pages) */
.detail-layout { display: grid; grid-template-columns: 320px 1fr; gap: 56px; align-items: start; }
.detail-aside { position: sticky; top: 92px; }
.aside-card { background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 26px; }
.aside-card .sym-lg {
  width: 60px; height: 60px; border-radius: 14px; display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-weight: 800; font-size: 20px; margin-bottom: 18px;
}
.aside-card.gold .sym-lg { background: var(--tint-gold); color: var(--gold); }
.aside-card.blue .sym-lg { background: var(--tint-blue); color: var(--niobium); }
.aside-card.coral .sym-lg { background: var(--tint-coral); color: var(--molten); }
.aside-card h3 { font-size: 22px; margin-bottom: 6px; }
.aside-card .aud { font-size: 13px; color: var(--ink-faint); margin-bottom: 20px; }
.aside-meta { display: grid; gap: 12px; margin-bottom: 22px; }
.aside-meta .row { display: flex; justify-content: space-between; font-size: 13.5px; padding-bottom: 12px; border-bottom: 1px solid var(--line); }
.aside-meta .row:last-child { border-bottom: none; padding-bottom: 0; }
.aside-meta .row .k { color: var(--ink-faint); }
.aside-meta .row .v { color: var(--ink); font-weight: 600; }

.detail-body h2 { font-size: clamp(22px, 2.4vw, 30px); margin: 0 0 14px; }
.detail-body h2:not(:first-child) { margin-top: 48px; }
.detail-body > p { font-size: 16px; color: var(--ink-dim); line-height: 1.65; margin-bottom: 14px; max-width: 660px; }

/* =========================================================
   PROFESSION CARDS (AI-native for your field)
   ========================================================= */
.prof-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.prof-card {
  display: grid; grid-template-columns: auto 1fr auto; gap: 18px; align-items: center;
  background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 24px 26px; transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.prof-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); border-color: var(--line-strong); }
.prof-card .pic {
  width: 52px; height: 52px; border-radius: 13px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--tint-coral); color: var(--molten);
}
.prof-card .pic svg { width: 26px; height: 26px; }
.prof-card h3 { font-size: 18px; margin-bottom: 3px; }
.prof-card p { font-size: 13.5px; color: var(--ink-dim); line-height: 1.45; }
.prof-card .go { color: var(--ink-faint); transition: transform .15s ease, color .15s ease; }
.prof-card:hover .go { transform: translateX(4px); color: var(--molten); }

/* Before / After lists */
.ba { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.ba-col { background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--r-md); padding: 24px 26px; }
.ba-col.after { border-color: var(--line-strong); }
.ba-col .lbl { display: inline-flex; align-items: center; gap: 7px; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 16px; }
.ba-col.before .lbl { color: var(--ink-faint); }
.ba-col.after .lbl { color: var(--molten); }
.ba-col ul { list-style: none; }
.ba-col li { position: relative; padding-left: 24px; font-size: 14.5px; color: var(--ink-dim); line-height: 1.5; margin-bottom: 12px; }
.ba-col li:last-child { margin-bottom: 0; }
.ba-col li svg { position: absolute; left: 0; top: 3px; width: 16px; height: 16px; }
.ba-col.before li svg { color: var(--ink-faint); }
.ba-col.after li svg { color: var(--molten); }

/* Community feature row */
.community-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

/* Outcome chips */
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip { display: inline-flex; align-items: center; gap: 8px; background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--r-pill); padding: 9px 16px; font-size: 13.5px; font-weight: 500; color: var(--ink); }
.chip svg { width: 15px; height: 15px; color: var(--molten); }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1000px) {
  .prof-grid { grid-template-columns: 1fr; }
  .community-grid { grid-template-columns: 1fr; }
  .ba { grid-template-columns: 1fr; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .program-cards { grid-template-columns: 1fr; }
  .price-grid { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: 1fr; }
  .people { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; gap: 28px; }
  .split.reverse .split-media { order: 0; }
  .detail-layout { grid-template-columns: 1fr; gap: 32px; }
  .detail-aside { position: static; }
  .modules { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}

@media (max-width: 720px) {
  .container, .container-narrow { padding: 0 20px; }
  section { padding: 64px 0; }
  .hero { padding: 48px 0; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav.open .nav-links {
    display: flex; flex-direction: column; align-items: stretch;
    position: absolute; top: 68px; left: 0; right: 0;
    background: var(--bg-page); border-bottom: 1px solid var(--line);
    padding: 12px 20px 20px; gap: 4px;
  }
  .nav.open .nav-links a { padding: 12px 14px; }
  .grid-2, .grid-4 { grid-template-columns: 1fr; }
  .people { grid-template-columns: 1fr; }
  .hero-trust { gap: 20px; }
  .cta-band { padding: 48px 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .ptable thead { display: none; }
  .ptable, .ptable tbody, .ptable tr, .ptable td { display: block; width: 100%; }
  .ptable tr { padding: 14px 0; border-bottom: 1px solid var(--line); }
  .ptable td { padding: 5px 0; border: none; }
  .ptable td::before { content: attr(data-label); display: block; font-family: var(--mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-faint); margin-bottom: 4px; }
}

/* =========================================================
   FORMS
   ========================================================= */
.form-card { background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 32px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 13px; font-weight: 600; color: var(--ink); margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--sans); font-size: 15px; color: var(--ink);
  background: var(--bg-page); border: 1px solid var(--line-strong); border-radius: var(--r-sm);
  padding: 12px 14px; transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--molten); box-shadow: 0 0 0 3px rgba(232,98,44,0.12);
}
.field textarea { resize: vertical; min-height: 110px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.choice-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.choice {
  position: relative; cursor: pointer;
}
.choice input { position: absolute; opacity: 0; pointer-events: none; }
.choice span {
  display: block; text-align: center; font-size: 13.5px; font-weight: 600; color: var(--ink-dim);
  background: var(--bg-page); border: 1px solid var(--line-strong); border-radius: var(--r-sm);
  padding: 14px 10px; transition: all .15s ease;
}
.choice input:checked + span { border-color: var(--molten); background: var(--tint-coral); color: var(--molten); }
.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 48px; align-items: start; }
.contact-points { display: grid; gap: 14px; margin-top: 24px; }
.contact-point { display: grid; grid-template-columns: auto 1fr; gap: 14px; align-items: start; }
.contact-point .ic { width: 40px; height: 40px; border-radius: 10px; background: var(--bg-soft); color: var(--molten); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-point .ic svg { width: 20px; height: 20px; }
.contact-point .t { font-weight: 600; font-size: 15px; color: var(--ink); }
.contact-point .d { font-size: 14px; color: var(--ink-dim); }

@media (max-width: 1000px) {
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 720px) {
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .choice-grid { grid-template-columns: 1fr; }
}

/* Reveal-on-scroll */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}
