/* =========================================================
   Claude Code for Non-Engineers — Landing page styles
   Mobile-first. Ballpoint palette. No build step.
   ========================================================= */

/* ---------- Design tokens ---------- */
:root {
  /* Ballpoint palette */
  --c-lemon: #F9F4AA;
  --c-dark-grey: #30291E;
  --c-orange: #E9953E;
  --c-pale-blue: #A4D3CF;
  --c-purple: #4C3C79;
  --c-brown: #534D3D;
  --c-electric: #E16E38;
  --c-beige: #FCEFDA;
  --c-light-grey: #E5DFD9;
  --c-almost-black: #221F20;
  --c-black: #000000;
  --c-white: #FFFFFF;
  --c-off-white: #FBF8F3;

  /* Semantic */
  --c-text: var(--c-almost-black);
  --c-text-muted: #6B6558;
  --c-text-inverse: #F5F1EA;
  --c-bg: var(--c-white);
  --c-bg-alt: var(--c-beige);
  --c-bg-dark: var(--c-almost-black);
  --c-border: var(--c-light-grey);
  --c-cta: var(--c-electric);
  --c-cta-hover: #C85D2C;

  /* Typography */
  --font-sans: "Lausanne", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-mono: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  --wt-header: 600;
  --wt-body: 300;
  --wt-medium: 500;

  /* Spacing scale (8px unit) */
  --sp-1: 4px;
  --sp-2: 8px;
  --sp-3: 16px;
  --sp-4: 24px;
  --sp-5: 32px;
  --sp-6: 48px;
  --sp-7: 64px;
  --sp-8: 96px;
  --sp-9: 128px;

  /* Layout */
  --container-max: 1120px;
  --container-narrow: 760px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;

  /* Transitions */
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* Optional: uncomment and add licensed Lausanne woff2 files to assets/fonts/
@font-face {
  font-family: "Lausanne";
  src: url("assets/fonts/lausanne-300.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Lausanne";
  src: url("assets/fonts/lausanne-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
*/

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: var(--wt-body);
  font-size: 17px;
  line-height: 1.55;
  color: var(--c-text);
  background: var(--c-bg);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1, h2, h3, h4 {
  font-weight: var(--wt-header);
  line-height: 1.15;
  margin: 0 0 var(--sp-4);
  letter-spacing: -0.01em;
  text-wrap: balance;
}
p { margin: 0 0 var(--sp-3); }
a { color: inherit; text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
a:hover { text-decoration-thickness: 2px; }
ul, ol { margin: 0 0 var(--sp-3); padding-left: 1.25em; }
li { margin-bottom: var(--sp-2); }
strong { font-weight: var(--wt-medium); }
img, svg { display: block; max-width: 100%; }

/* ---------- Accessibility ---------- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  padding: var(--sp-2) var(--sp-3);
  background: var(--c-almost-black);
  color: var(--c-white);
  z-index: 9999;
  text-decoration: none;
}
.skip-link:focus {
  left: var(--sp-3);
  top: var(--sp-3);
}
:focus-visible {
  outline: 2px solid var(--c-cta);
  outline-offset: 2px;
  border-radius: 2px;
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--sp-4);
}
.container--narrow {
  max-width: var(--container-narrow);
}
.text-center { text-align: center; }

/* ---------- Typography helpers ---------- */
.eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: var(--wt-medium);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--c-text-muted);
  margin: 0 0 var(--sp-3);
}
.eyebrow--light { color: rgba(245, 241, 234, 0.75); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 var(--sp-5);
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 16px;
  font-weight: var(--wt-medium);
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background 160ms var(--ease), color 160ms var(--ease), transform 160ms var(--ease), border-color 160ms var(--ease);
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--small { min-height: 40px; padding: 0 var(--sp-4); font-size: 15px; }
.btn--large { min-height: 60px; padding: 0 var(--sp-6); font-size: 17px; }
.btn--primary {
  background: var(--c-cta);
  color: var(--c-white);
}
.btn--primary:hover { background: var(--c-cta-hover); }
.btn--ghost {
  background: transparent;
  color: var(--c-text);
  border-color: var(--c-border);
}
.btn--ghost:hover { border-color: var(--c-text); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(140%) blur(8px);
  -webkit-backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid transparent;
  z-index: 100;
  transition: border-color 200ms var(--ease);
}
.site-header.is-scrolled { border-bottom-color: var(--c-border); }
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  gap: var(--sp-3);
}
.wordmark {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-weight: var(--wt-header);
  font-size: 18px;
  color: var(--c-text);
  text-decoration: none;
}
.wordmark__mark {
  color: var(--c-electric);
  font-size: 22px;
  line-height: 1;
}
.wordmark--light { color: var(--c-text-inverse); }

/* ---------- Hero ---------- */
.hero {
  padding: var(--sp-7) 0 var(--sp-6);
  background:
    radial-gradient(ellipse at top left, var(--c-beige) 0%, transparent 55%),
    radial-gradient(ellipse at bottom right, rgba(164, 211, 207, 0.35) 0%, transparent 55%),
    var(--c-off-white);
  overflow: hidden;
}
.hero__inner {
  display: grid;
  gap: var(--sp-6);
}
.hero__content { max-width: 640px; }
.hero__headline {
  font-size: clamp(34px, 7vw, 64px);
  margin-bottom: var(--sp-4);
}
.hero__subheadline {
  font-size: clamp(17px, 2.2vw, 21px);
  color: var(--c-text-muted);
  max-width: 560px;
  margin-bottom: var(--sp-5);
}
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  margin-bottom: var(--sp-5);
}
.hero__proof {
  font-size: 14px;
  color: var(--c-text-muted);
  max-width: 540px;
  margin: 0;
}

/* Terminal mock */
.hero__visual {
  display: none;
}
.terminal {
  background: var(--c-almost-black);
  color: #EAE6DD;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 50px -20px rgba(48, 41, 30, 0.35), 0 4px 12px rgba(48, 41, 30, 0.08);
  overflow: hidden;
  font-family: var(--font-mono);
  font-size: 13px;
  line-height: 1.6;
}
.terminal__bar {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 10px var(--sp-3);
  background: #2A2624;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.terminal__dot {
  width: 12px; height: 12px; border-radius: 50%;
  background: #555;
}
.terminal__dot--r { background: #FF5F57; }
.terminal__dot--y { background: #FEBC2E; }
.terminal__dot--g { background: #28C840; }
.terminal__title {
  color: rgba(255, 255, 255, 0.5);
  margin-left: var(--sp-2);
  font-size: 12px;
}
.terminal__body { padding: var(--sp-4); }
.terminal__body p { margin: 0 0 8px; }
.terminal__muted { color: rgba(234, 230, 221, 0.6); }
.prompt { color: var(--c-orange); margin-right: 6px; }
.terminal__blink .dots { animation: blink 1.4s infinite; }
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* ---------- Cohort bar ---------- */
.cohort-bar {
  background: var(--c-almost-black);
  color: var(--c-text-inverse);
  padding: var(--sp-3) 0;
  text-align: center;
  font-size: 14px;
}
.cohort-bar__inner p { margin: 0; }
.cohort-bar strong { color: var(--c-lemon); font-weight: var(--wt-medium); margin-right: var(--sp-2); }
.cohort-bar__date::after { content: ""; }
.cohort-bar__sep { margin: 0 var(--sp-2); opacity: 0.4; }

/* ---------- Sections ---------- */
.section {
  padding: var(--sp-8) 0;
}
.section--light { background: var(--c-bg-alt); }
.section--dark {
  background: var(--c-bg-dark);
  color: var(--c-text-inverse);
}
.section--dark h2, .section--dark h3 { color: var(--c-white); }
.section__header { max-width: 720px; margin-bottom: var(--sp-6); }
.section__header--center { margin-left: auto; margin-right: auto; text-align: center; }
.section__header h2 { font-size: clamp(28px, 4.5vw, 44px); }
.section__intro { font-size: 18px; color: var(--c-text-muted); }
.section--dark .section__intro { color: rgba(245, 241, 234, 0.72); }

/* ---------- Problem ---------- */
.problem-grid {
  display: grid;
  gap: var(--sp-4);
  margin-bottom: var(--sp-5);
}
.problem-item {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: var(--sp-4);
}
.problem-item p { margin: 0; }
.problem-close {
  font-size: 19px;
  font-weight: var(--wt-medium);
  max-width: 700px;
  margin-top: var(--sp-5);
}

/* ---------- Guide ---------- */
.guide {
  max-width: 720px;
  margin: 0 auto;
  background: var(--c-off-white);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: var(--sp-6);
}
.guide__bio p { font-size: 17px; }
.guide__tagline {
  font-weight: var(--wt-medium);
  font-size: 18px;
  border-top: 1px solid var(--c-border);
  padding-top: var(--sp-4);
  margin-top: var(--sp-4);
  margin-bottom: 0;
}

/* ---------- Modules ---------- */
.modules {
  list-style: none;
  padding: 0;
  display: grid;
  gap: var(--sp-3);
}
.module {
  display: flex;
  gap: var(--sp-4);
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: var(--sp-4);
  transition: border-color 200ms var(--ease), transform 200ms var(--ease);
}
.module:hover { border-color: var(--c-text-muted); transform: translateY(-2px); }
.module__num {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: var(--wt-medium);
  color: var(--c-electric);
  background: var(--c-beige);
  padding: 4px 10px;
  border-radius: 999px;
  height: fit-content;
  flex-shrink: 0;
}
.module__title {
  font-size: 19px;
  margin-bottom: var(--sp-1);
}
.module__desc {
  color: var(--c-text-muted);
  margin: 0;
  font-size: 15px;
}

/* ---------- Steps (how it works) ---------- */
.steps {
  display: grid;
  gap: var(--sp-4);
}
.step {
  background: var(--c-off-white);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: var(--sp-5);
}
.step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--c-almost-black);
  color: var(--c-white);
  font-weight: var(--wt-medium);
  margin-bottom: var(--sp-3);
}
.step__title { font-size: 22px; }
.step p { margin: 0; color: var(--c-text-muted); }

/* ---------- Who it's for ---------- */
.for-grid {
  display: grid;
  gap: var(--sp-4);
}
.for-col {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: var(--sp-5);
}
.for-col h3 {
  font-size: 18px;
  margin-bottom: var(--sp-3);
  padding-bottom: var(--sp-3);
  border-bottom: 1px solid var(--c-border);
}
.for-col--yes h3 { color: var(--c-electric); }
.for-col--no h3 { color: var(--c-text-muted); }
.for-col ul { list-style: none; padding: 0; margin: 0; }
.for-col li {
  position: relative;
  padding-left: 28px;
  margin-bottom: var(--sp-3);
  font-size: 16px;
}
.for-col--yes li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--c-electric);
  font-weight: var(--wt-medium);
}
.for-col--no li::before {
  content: "✕";
  position: absolute;
  left: 0;
  color: var(--c-text-muted);
}

/* ---------- Outcomes ---------- */
.outcomes {
  list-style: none;
  padding: 0;
  max-width: 720px;
  display: grid;
  gap: var(--sp-3);
  margin-bottom: var(--sp-6);
}
.outcomes li {
  position: relative;
  padding-left: 36px;
  font-size: 17px;
  margin: 0;
}
.outcomes li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--c-electric);
  font-weight: var(--wt-medium);
  font-size: 20px;
  top: -1px;
}

.example-projects {
  background: var(--c-off-white);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: var(--sp-4);
  max-width: 720px;
}
.example-projects__intro {
  font-size: 15px;
  color: var(--c-text-muted);
  margin-bottom: var(--sp-2);
  font-weight: var(--wt-medium);
}
.example-projects ul { margin: 0; padding-left: 1.1em; }
.example-projects li { font-size: 15px; }

/* ---------- Tiers (reserve cards) ---------- */
.tiers {
  display: grid;
  gap: var(--sp-4);
  margin-bottom: var(--sp-7);
}
.tier {
  position: relative;
  background: #2D2926;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: var(--sp-5);
  display: flex;
  flex-direction: column;
  color: var(--c-text-inverse);
}
.tier--featured {
  background: var(--c-white);
  color: var(--c-text);
  border-color: var(--c-electric);
  box-shadow: 0 24px 60px -24px rgba(225, 110, 56, 0.45);
}
.tier__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--c-electric);
  color: var(--c-white);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: var(--wt-medium);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 6px 12px;
  border-radius: 999px;
  white-space: nowrap;
}
.tier__badge--alt {
  background: var(--c-lemon);
  color: var(--c-almost-black);
}
.tier__head {
  margin-bottom: var(--sp-4);
  padding-bottom: var(--sp-4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.tier--featured .tier__head { border-bottom-color: var(--c-border); }
.tier__label {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(245, 241, 234, 0.55);
  margin: 0 0 var(--sp-2);
}
.tier--featured .tier__label { color: var(--c-text-muted); }
.tier__title {
  font-size: 26px;
  margin-bottom: var(--sp-2);
  color: var(--c-white);
}
.tier--featured .tier__title { color: var(--c-text); }
.tier__pitch {
  font-size: 15px;
  color: rgba(245, 241, 234, 0.78);
  margin-bottom: var(--sp-4);
  min-height: 44px;
}
.tier--featured .tier__pitch { color: var(--c-text-muted); }
.tier__price {
  font-size: 44px;
  font-weight: var(--wt-header);
  letter-spacing: -0.02em;
  line-height: 1;
  margin: 0 0 var(--sp-2);
  color: var(--c-white);
}
.tier--featured .tier__price { color: var(--c-text); }
.tier__currency { font-size: 28px; vertical-align: top; margin-right: 2px; }
.tier__price-suffix {
  font-size: 13px;
  font-weight: var(--wt-body);
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(245, 241, 234, 0.6);
  margin-left: 6px;
}
.tier--featured .tier__price-suffix { color: var(--c-text-muted); }
.tier__price-note {
  font-size: 13px;
  color: rgba(245, 241, 234, 0.6);
  margin: 0;
}
.tier--featured .tier__price-note { color: var(--c-text-muted); }
.tier__list {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--sp-4);
  flex-grow: 1;
}
.tier__list li {
  position: relative;
  padding: var(--sp-2) 0 var(--sp-2) 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 15px;
}
.tier--featured .tier__list li { border-bottom-color: var(--c-border); }
.tier__list li:last-child { border-bottom: 0; }
.tier__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 8px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--c-electric);
  color: var(--c-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: var(--wt-medium);
}
.tier .btn { width: 100%; }
.tier__microcopy {
  font-size: 13px;
  color: rgba(245, 241, 234, 0.6);
  text-align: center;
  margin: var(--sp-3) 0 0;
}
.tier--featured .tier__microcopy { color: var(--c-text-muted); }

/* ---------- Offer / Pricing (legacy, retained) ---------- */
.offer {
  display: grid;
  gap: var(--sp-5);
  background: #2D2926;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: var(--sp-6);
  margin-bottom: var(--sp-6);
}
.offer__title {
  font-size: 18px;
  margin-bottom: var(--sp-4);
  color: var(--c-white);
}
.offer__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.offer__list li {
  position: relative;
  padding: var(--sp-2) 0 var(--sp-2) 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 16px;
  color: var(--c-text-inverse);
}
.offer__list li:last-child { border-bottom: 0; }
.offer__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 10px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--c-electric);
  color: var(--c-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: var(--wt-medium);
}
.offer__list strong { color: var(--c-white); font-weight: var(--wt-medium); }
.offer__price {
  text-align: center;
  padding: var(--sp-5);
  background: var(--c-white);
  color: var(--c-text);
  border-radius: var(--radius-md);
}
.offer__label {
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--c-text-muted);
  margin-bottom: var(--sp-2);
}
.offer__amount {
  font-size: 64px;
  font-weight: var(--wt-header);
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 0 0 var(--sp-2);
  color: var(--c-text);
}
.offer__currency { font-size: 40px; vertical-align: top; }
.offer__terms {
  font-size: 14px;
  color: var(--c-text-muted);
  margin-bottom: var(--sp-4);
}
.offer__price .btn { width: 100%; }
.offer__microcopy {
  font-size: 13px;
  color: var(--c-text-muted);
  margin: var(--sp-3) 0 0;
}

/* Value math */
.value-math {
  max-width: 800px;
  margin: 0 auto;
}
.value-math__intro {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(245, 241, 234, 0.6);
  margin-bottom: var(--sp-4);
}
.value-math__grid {
  display: grid;
  gap: var(--sp-3);
  margin-bottom: var(--sp-5);
}
.value-math__grid > div {
  padding: var(--sp-4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
}
.value-math__grid > div:last-child {
  border-color: var(--c-electric);
  background: rgba(225, 110, 56, 0.08);
}
.value-math__label {
  font-size: 14px;
  color: rgba(245, 241, 234, 0.72);
  margin-bottom: var(--sp-1);
}
.value-math__num {
  font-size: 22px;
  font-weight: var(--wt-header);
  color: var(--c-white);
  margin: 0;
}
.value-math__close {
  text-align: center;
  font-size: 18px;
  font-weight: var(--wt-medium);
  color: var(--c-white);
  margin: 0;
}

/* ---------- FAQ ---------- */
.faq {
  border-top: 1px solid var(--c-border);
}
.faq__item {
  border-bottom: 1px solid var(--c-border);
}
.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: var(--sp-4) 0;
  font-size: 17px;
  font-weight: var(--wt-medium);
  position: relative;
  padding-right: var(--sp-6);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "";
  position: absolute;
  right: var(--sp-2);
  top: 50%;
  width: 12px;
  height: 12px;
  border-right: 2px solid var(--c-text);
  border-bottom: 2px solid var(--c-text);
  transform: translateY(-75%) rotate(45deg);
  transition: transform 200ms var(--ease);
}
.faq__item[open] summary::after {
  transform: translateY(-25%) rotate(-135deg);
}
.faq__body {
  padding: 0 0 var(--sp-4);
  color: var(--c-text-muted);
  max-width: 680px;
}
.faq__body p:last-child { margin-bottom: 0; }

/* ---------- Final CTA ---------- */
.final-cta h2 { font-size: clamp(28px, 5vw, 44px); }
.final-cta__copy {
  font-size: 18px;
  color: var(--c-text-muted);
  margin-bottom: var(--sp-5);
}
.final-cta__microcopy {
  font-size: 13px;
  color: var(--c-text-muted);
  margin-top: var(--sp-3);
}
.final-cta__contact {
  font-size: 14px;
  color: var(--c-text-muted);
  margin-top: var(--sp-4);
  padding-top: var(--sp-4);
  border-top: 1px solid var(--c-border);
}
.final-cta__contact a { color: var(--c-electric); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--c-almost-black);
  color: var(--c-text-inverse);
  padding: var(--sp-6) 0;
}
.site-footer__inner {
  display: grid;
  gap: var(--sp-4);
}
.site-footer__tagline {
  font-size: 14px;
  color: rgba(245, 241, 234, 0.6);
  margin: var(--sp-2) 0 0;
}
.site-footer__meta {
  font-size: 13px;
  color: rgba(245, 241, 234, 0.6);
}
.site-footer__meta p { margin: 0 0 var(--sp-1); }
.site-footer__meta a { color: var(--c-text-inverse); }

/* =========================================================
   Tablet and up
   ========================================================= */
@media (min-width: 768px) {
  body { font-size: 17px; }

  .hero { padding: var(--sp-9) 0 var(--sp-8); }
  .hero__inner {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: var(--sp-7);
  }
  .hero__visual { display: block; }

  .problem-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .modules {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sp-4);
  }

  .steps {
    grid-template-columns: repeat(3, 1fr);
  }

  .for-grid {
    grid-template-columns: 1fr 1fr;
  }

  .offer {
    grid-template-columns: 1.3fr 1fr;
    gap: var(--sp-6);
    align-items: start;
  }

  .tiers {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-4);
    align-items: stretch;
  }
  .tier--featured {
    transform: translateY(-12px);
  }

  .value-math__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .site-footer__inner {
    grid-template-columns: 1fr auto;
    align-items: end;
  }
  .site-footer__meta { text-align: right; }
}

@media (min-width: 1024px) {
  .section { padding: var(--sp-9) 0; }
  .hero { padding: var(--sp-9) 0; }
  .hero__headline { font-size: 72px; }
}

/* =========================================================
   Accessibility: reduced motion
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* =========================================================
   Print
   ========================================================= */
@media print {
  .site-header, .cohort-bar, .final-cta, .site-footer { display: none; }
  body { color: #000; background: #fff; }
}
