/* ===========================================================
   Editing 101 — KK Create landing page
   Design tokens lifted from the Claude Design handoff bundle.
   =========================================================== */

:root {
  --cream: #f7f4ee;
  --cream-2: #faf8f3;
  --ink: #141310;
  --ink-2: #2b2822;
  --body: #5c574e;
  --muted: #6f6a61;
  --muted-2: #8a8479;
  --muted-3: #a09a8e;
  --forest: #10231d;
  --forest-hi: #183a30;
  --forest-line: #12654a;
  --green: #2ec47c;
  --green-hi: #46dd94;
  --green-dim: #8fa39a;
  --rust: #b5651d;

  --line: rgba(20, 19, 16, 0.1);
  --line-2: rgba(20, 19, 16, 0.12);
  --line-light: rgba(247, 244, 238, 0.16);

  --display: 'Space Grotesk', system-ui, sans-serif;
  --sans: 'Manrope', system-ui, sans-serif;
  --ui: 'Poppins', system-ui, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, monospace;

  --wrap: 1120px;
  --gut: 24px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

a { color: var(--rust); text-decoration: none; }
a:hover { color: #8a4a12; }

h1, h2, h3 { font-family: var(--display); letter-spacing: -0.025em; }

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding-left: var(--gut);
  padding-right: var(--gut);
}

.section { padding-top: 70px; }
.section--hero { padding-top: 28px; }
.section--stats { padding-top: 14px; }
.section--familiar { padding-top: 64px; }

.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--muted-2);
}
.eyebrow--green { color: var(--green); }

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.section-title { font-size: 34px; font-weight: 700; margin: 10px 0 0; }
.section-hint { font-size: 13px; color: var(--muted); font-family: var(--mono); }

.placeholder-label {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  line-height: 1.6;
  color: var(--green-dim);
  text-align: center;
}

/* ---------- Buttons ---------- */

.btn-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--forest);
  color: var(--cream);
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  transition: background 0.15s ease;
}
.btn-pill:hover { background: var(--forest-hi); color: var(--cream); }
.btn-pill .arrow { color: var(--green); }

.btn-green {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  background: var(--green);
  color: #0b1a15;
  padding: 15px 26px;
  border-radius: 11px;
  font-weight: 700;
  font-size: 16px;
  transition: background 0.15s ease;
}
.btn-green:hover { background: var(--green-hi); color: #0b1a15; }
.btn-green--lg { padding: 14px 26px; border-radius: 10px; }
.btn-green--sm { padding: 12px 22px; border-radius: 10px; font-size: 15px; }
.btn-green--block { display: block; text-align: center; padding: 15px; }
.btn-green--round {
  display: block;
  text-align: center;
  min-width: 280px;
  padding: 17px 30px;
  border-radius: 999px;
  font-family: var(--display);
  font-size: 18px;
}

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 244, 238, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(20, 19, 16, 0.08);
}
.header-inner {
  padding-top: 14px;
  padding-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 10px; color: inherit; }
.brand:hover { color: inherit; }
.brand-mark {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: var(--forest);
  color: var(--cream);
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-weight: 700;
  font-size: 13px;
}
.brand-mark--light { background: var(--cream); color: var(--ink); }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name {
  font-family: var(--display);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.01em;
}
.brand-name--light { font-size: 16px; color: var(--cream); }
.brand-kicker {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  color: #7c766c;
}
.nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 14px;
}
.nav a { color: #4a453d; }
.nav a:hover { color: var(--ink); }
.nav a.btn-pill { color: var(--cream); }

/* ---------- Hero ---------- */

/* Desktop: copy left, image right. Narrow screens stack it (see breakpoints). */
.hero {
  background: var(--forest);
  border-radius: 22px;
  padding: 34px 44px;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 44px;
  align-items: center;
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(247, 244, 238, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247, 244, 238, 0.055) 1px, transparent 1px);
  background-size: 104px 104px;
  pointer-events: none;
}
.hero-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(760px 380px at 6% 0%, rgba(46, 196, 124, 0.13), transparent 72%);
  pointer-events: none;
}
.hero-copy { position: relative; }
.hero-copy h1 {
  font-weight: 700;
  font-size: 52px;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin: 0;
  text-wrap: pretty;
}
.hero-points {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.hero-points li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 16px;
  line-height: 1.5;
  color: #cfdad4;
  max-width: 54ch;
  text-wrap: pretty;
}
.hero-point-icon { font-size: 17px; line-height: 1.45; }

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}
.chip {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(20, 19, 16, 0.08);
  background: var(--cream);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--forest);
}
.chip-zoom { display: inline-flex; align-items: center; gap: 5px; margin-left: 2px; }
.zoom-mark {
  width: 17px;
  height: 17px;
  border-radius: 4px;
  background: #2d8cff;
  display: inline-grid;
  place-items: center;
}
.zoom-word {
  font-family: var(--display);
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--forest);
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.hero-media,
.hero-img {
  position: relative;
  width: 100%;
  border-radius: 18px;
  aspect-ratio: 4 / 3.9;
  display: block;
}
.hero-media {
  overflow: hidden;
  background: repeating-linear-gradient(135deg, #1a3129 0 10px, #16281f 10px 20px);
  display: grid;
  place-items: center;
  padding: 20px;
}
/* Transparent cutout of the hosts. On desktop the figure wrapper is taken out
   of the grid and pinned to the panel's bottom-right, sized against the panel
   itself — the empty 340px grid column reserves its space. The mask dissolves
   the image's waist-crop into the panel right at the bottom edge, and the
   "Live Workshop" flag floats over that faded zone. */
.hero-figure {
  position: absolute;
  right: 36px;
  bottom: 0;
  height: calc(100% - 44px);
  max-width: 46%;
}
.hero-img {
  height: 100%;
  width: auto;
  max-width: 100%;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: right bottom;
  border-radius: 0;
  display: block;
  pointer-events: none;
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.35));
  -webkit-mask-image: linear-gradient(to bottom, #000 80%, transparent 99%);
  mask-image: linear-gradient(to bottom, #000 80%, transparent 99%);
}
.hero-flag {
  position: absolute;
  left: 50%;
  bottom: 12px;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 9px;
  white-space: nowrap;
  padding: 10px 18px;
  border-radius: 12px;
  background: rgba(46, 196, 124, 0.85);
  backdrop-filter: blur(4px);
  color: #0b1a15;
  font-family: var(--display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.25);
}
.hero-flag svg { flex: none; }

/* ---------- Stats ---------- */

.stats {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  padding: 22px 26px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.stat { display: flex; flex-direction: column; gap: 5px; }
.stat + .stat { border-left: 1px solid var(--line); padding-left: 26px; }
.stat-value {
  font-family: var(--display);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.stat-label { font-size: 13px; color: var(--muted); }

/* ---------- Sound familiar? ---------- */

.familiar { display: flex; flex-direction: column; gap: 30px; }
/* Centred so the head reads as one composition with the centred block below it. */
.familiar-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}
.familiar-title {
  font-size: 38px;
  font-weight: 700;
  margin: 0;
  max-width: 22ch;
  line-height: 1.08;
  text-wrap: pretty;
}

/* Pain pointers: red "?" disc on a soft halo, statement beside it — no card
   boxes, straight on the page. */
.pains {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px 30px;
  padding-left: 8px;
}
/* Icon and statement on one row, both centre-aligned. */
.pain { display: flex; align-items: center; gap: 19px; }
/* Break only used by the mobile arrangement below. */
.pain-br { display: none; }
/* Same colours as the primary button: green disc, dark glyph. The ring shadow
   is the low-opacity shade of the same green. */
.pain-ico {
  flex: none;
  width: 37px;
  height: 37px;
  border-radius: 999px;
  background: var(--green);
  color: #0b1a15;
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-weight: 700;
  font-size: 19px;
  box-shadow: 0 0 0 8px rgba(46, 196, 124, 0.18);
}
.pain p {
  margin: 0;
  font-family: var(--display);
  font-size: 15.5px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.45;
  color: var(--forest);
  text-wrap: pretty;
}

/* ---------- Bonuses ---------- */

.bonus {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--cream-2);
  padding: 40px 34px;
  position: relative;
  overflow: hidden;
}
.bonus-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(700px 300px at 50% 0%, rgba(46, 196, 124, 0.1), transparent 70%);
  pointer-events: none;
}
.bonus-head {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
}
/* Hand-drawn accents flanking the heading, as in the reference. */
.bonus-spark { position: absolute; pointer-events: none; }
.bonus-spark svg { display: block; width: 100%; height: 100%; }
.bonus-spark--l {
  left: 7%;
  top: 26px;
  width: 30px;
  height: 30px;
  color: var(--green);
  transform: rotate(-12deg);
}
.bonus-spark--r {
  right: 7%;
  top: 44px;
  width: 32px;
  height: 32px;
  color: var(--forest-line);
  transform: rotate(10deg);
}
.bonus-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--green);
  color: #0b1a15;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  border-radius: 999px;
  padding: 9px 16px;
}
.bonus-title {
  font-size: 46px;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 0;
  line-height: 1.05;
}
.bonus-title em { font-style: normal; color: var(--forest-line); }
/* Tilted ribbon, as in the reference. */
.bonus-strip {
  background: var(--forest);
  color: #eaf3ee;
  border-radius: 4px;
  padding: 9px 18px;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.1em;
  transform: rotate(-1.4deg);
  box-shadow: 0 6px 16px rgba(20, 19, 16, 0.14);
}
.bonus-cards {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 26px;
}
/* Compact card, dominated by the product image — the reference's proportions. */
.bonus-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  padding: 16px 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 2px 0 rgba(20, 19, 16, 0.05);
  overflow: hidden;
}
/* Ticket tag with a notched left end, as in the reference. */
.bonus-pill {
  align-self: flex-start;
  background: var(--green);
  color: #0b1a15;
  padding: 7px 12px 7px 17px;
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 8px 50%);
  border-radius: 0 6px 6px 0;
}
.bonus-card-title {
  margin: 0;
  font-family: var(--display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  text-wrap: pretty;
}
/* The image is the card: full width, no reserved dead space around it. */
.bonus-art {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 2px 0 4px;
  min-height: 0;
}
.bonus-art img {
  width: 100%;
  height: 232px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 18px 26px rgba(20, 19, 16, 0.18));
}
/* Centred ribbon banner with notched ends, as in the reference. */
.bonus-worth {
  align-self: center;
  background: var(--green);
  color: #0b1a15;
  padding: 10px 26px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  clip-path: polygon(0 0, 100% 0, calc(100% - 10px) 50%, 100% 100%, 0 100%, 10px 50%);
}
.bonus-total {
  position: relative;
  margin-top: 16px;
  border: 1px solid var(--line-2);
  border-radius: 18px;
  background: #fff;
  padding: 22px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  flex-wrap: wrap;
}
.bonus-total-left { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.bonus-total-block { display: flex; align-items: center; gap: 14px; }
.bonus-total-icon {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: var(--green);
  display: grid;
  place-items: center;
}
.bonus-total-icon svg { width: 24px; height: 24px; display: block; }
.bonus-total-figure { display: flex; flex-direction: column; gap: 2px; }
.bonus-total-figure--divided { border-left: 1px solid var(--line-2); padding-left: 26px; }
.bonus-total-kicker {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  color: var(--muted-2);
}
.bonus-total-value {
  font-family: var(--display);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.025em;
}
.bonus-total-value--green { color: var(--forest-line); }
.bonus-total-note {
  margin: 0;
  font-size: 14.5px;
  color: var(--body);
  line-height: 1.5;
  max-width: 22ch;
}
.bonus-total-cta { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }
.bonus-total-fine { font-family: var(--mono); font-size: 11px; color: var(--muted-2); }

/* ---------- Curriculum ---------- */

.chapters { display: flex; flex-direction: column; gap: 10px; margin-top: 22px; }
.chapter {
  border: 1px solid var(--line-2);
  border-radius: 16px;
  background: #fff;
  overflow: hidden;
}
.chapter-head {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 24px;
  cursor: pointer;
  background: none;
  border: 0;
  text-align: left;
  font: inherit;
  color: inherit;
  transition: background 0.15s ease;
}
.chapter-head:hover { background: var(--cream-2); }
.chapter-tag {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  color: var(--forest-line);
  background: #e7f3ec;
  border-radius: 6px;
  padding: 6px 9px;
  white-space: nowrap;
}
.chapter-meta { flex: 1; min-width: 0; display: block; }
.chapter-title {
  display: block;
  font-family: var(--display);
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.chapter-sub { display: block; margin-top: 3px; font-size: 13px; color: var(--muted); }
.chapter-mark { font-family: var(--mono); font-size: 16px; color: var(--forest-line); }

.chapter-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.28s ease;
}
.chapter.is-open .chapter-panel { grid-template-rows: 1fr; }
.chapter-panel > * { overflow: hidden; min-height: 0; }
/* Bottom spacing lives on the last child, not as padding on the clipped box —
   padding would survive the 0fr collapse and leak a strip of the panel. */
.chapter-panel-inner { padding: 0 24px; }
.chapter-panel-inner > :last-child { margin-bottom: 24px; }

.chapter-intro {
  margin: 0 0 14px;
  font-size: 15px;
  color: var(--body);
  line-height: 1.6;
  max-width: 70ch;
}

.lessons { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.lesson {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px;
  background: #fff;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.lesson--muted { background: var(--cream-2); }
.lessons--hover .lesson:hover { border-color: var(--green); background: #f4fbf7; }
.lesson-no { font-family: var(--mono); font-size: 10px; color: var(--muted-3); }
.lesson p {
  margin: 6px 0 0;
  font-family: var(--display);
  font-size: 16px;
  font-weight: 600;
}
.lessons--hover .lesson p { margin-bottom: 4px; }

.shortcuts {
  margin-top: 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--forest);
  color: #f2f6f3;
  padding: 26px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: center;
}
.shortcuts-title {
  font-size: 23px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 10px 0 8px;
}
.shortcuts-body { margin: 0; font-size: 14.5px; color: #b9c7c0; line-height: 1.6; }
.keys { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.key {
  border: 1px solid rgba(247, 244, 238, 0.18);
  border-radius: 12px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: rgba(247, 244, 238, 0.06);
}
.key-cap {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--green);
  color: #0b1a15;
  display: grid;
  place-items: center;
  font-family: var(--mono);
  font-size: 15px;
  font-weight: 600;
}
.key-label { font-size: 13px; font-weight: 600; }

/* ---------- Certificate ---------- */

.cert {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--cream-2);
  padding: 44px;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 44px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.cert-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(360px 200px at 44% 46%, rgba(46, 196, 124, 0.16), transparent 70%),
    radial-gradient(300px 180px at 92% 8%, rgba(240, 169, 46, 0.12), transparent 72%);
  pointer-events: none;
}
.cert-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: flex-start;
}
.cert-title {
  font-size: 42px;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 0;
  line-height: 1.05;
  color: var(--forest);
}
.cert-points { display: flex; flex-direction: column; gap: 13px; }
.cert-points span {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 16px;
  color: var(--ink-2);
}
.tick {
  width: 19px;
  height: 19px;
  border-radius: 999px;
  background: var(--forest-line);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 11px;
  font-style: normal;
  flex: none;
}

.cert-shot { position: relative; }
.cert-shot-frame {
  border: 1px solid rgba(20, 19, 16, 0.14);
  border-radius: 10px;
  background: #fff;
  padding: 11px;
  box-shadow: 0 18px 40px rgba(20, 19, 16, 0.1);
}
.cert-shot-img {
  width: 100%;
  height: auto;
  border-radius: 5px;
  display: block;
}

/* ---------- Host ---------- */

.host {
  margin-top: 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  padding: 26px;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 34px;
  align-items: start;
}
.host-side { display: flex; flex-direction: column; gap: 14px; }
.host-photo {
  border-radius: 14px;
  aspect-ratio: 4 / 5;
  background: repeating-linear-gradient(135deg, #ece7dd 0 10px, #e3ddd1 10px 20px);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 16px;
}
.host-photo .placeholder-label { font-size: 11px; color: var(--muted-2); }
.host-name { margin: 0; font-family: var(--display); font-size: 20px; font-weight: 600; }
.host-role { margin: 3px 0 0; font-size: 14px; color: var(--muted); }
.host-main { display: flex; flex-direction: column; gap: 16px; }
.host-bio {
  margin: 0;
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--ink-2);
  text-wrap: pretty;
}
.host-bio--muted { color: var(--body); }
.host-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 4px;
}
.host-stat {
  background: var(--cream-2);
  border: 1px solid rgba(20, 19, 16, 0.08);
  border-radius: 11px;
  padding: 14px;
}
.host-stat-value { font-family: var(--display); font-size: 20px; font-weight: 700; }
.host-stat p { margin: 2px 0 0; font-size: 12.5px; color: var(--muted); }

/* Badge cards, as in the reference: icon on a tinted block, metric + label. */
.backed {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.eyebrow--forest { color: var(--forest-line); }
.backed-copy { display: flex; flex-direction: column; gap: 3px; }
.backed-note { font-size: 14px; color: var(--muted); line-height: 1.45; }
.socials { display: flex; align-items: stretch; gap: 12px; flex-wrap: wrap; }
.social {
  display: flex;
  align-items: stretch;
  border: 1px solid var(--line-2);
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 2px 0 rgba(20, 19, 16, 0.04);
}
.social-ico {
  display: grid;
  place-items: center;
  width: 62px;
  background: #e7f3ec;
  color: var(--forest);
  flex: none;
}
.social-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1px;
  line-height: 1.2;
  padding: 10px 18px 10px 14px;
}
.social-count { font-family: var(--display); font-size: 20px; font-weight: 700; letter-spacing: -0.01em; }
.social-label { font-size: 13px; color: var(--muted); }

/* ---------- Not for you ---------- */

.notfor {
  border: 1px solid var(--line-2);
  border-radius: 16px;
  background: var(--forest);
  color: #f2f6f3;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.notfor p {
  margin: 0;
  font-family: var(--display);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.015em;
  max-width: 70ch;
}

/* ---------- Claim ---------- */

.claim {
  background: var(--forest);
  color: var(--cream);
  border-radius: 20px;
  padding: 40px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.claim-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(600px 300px at 95% 100%, rgba(46, 196, 124, 0.15), transparent 70%);
  pointer-events: none;
}
.claim-copy { position: relative; }
.claim-title {
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 12px;
  line-height: 1.12;
}
.claim-body {
  margin: 0;
  font-size: 15.5px;
  color: #c9c3b8;
  line-height: 1.6;
  max-width: 48ch;
}
.claim-card {
  position: relative;
  background: rgba(247, 244, 238, 0.06);
  border: 1px solid rgba(247, 244, 238, 0.14);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.claim-price { display: flex; align-items: baseline; gap: 10px; }
.claim-price-value {
  font-family: var(--display);
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.03em;
}
.claim-price-unit { font-size: 13px; color: var(--green-dim); }
.claim-list {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 14px;
  color: #d9d4c9;
}

/* ---------- FAQ ---------- */

.faq-title {
  font-family: var(--ui);
  font-size: 34px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 10px 0 20px;
}
.faqs { display: flex; flex-direction: column; gap: 8px; }
.faq {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
}
.faq-head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 17px 20px;
  cursor: pointer;
  font-family: var(--ui);
  font-size: 15.5px;
  font-weight: 500;
  background: none;
  border: 0;
  text-align: left;
  color: inherit;
  transition: background 0.15s ease;
}
.faq-head:hover { background: var(--cream-2); }
.faq-mark { color: var(--rust); font-size: 13px; font-family: var(--mono); }
.faq-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.25s ease;
}
.faq.is-open .faq-panel { grid-template-rows: 1fr; }
.faq-panel > * { overflow: hidden; min-height: 0; }
.faq-panel p {
  margin: 0;
  padding: 0 20px 18px;
  font-family: var(--ui);
  font-size: 14.5px;
  color: var(--body);
  line-height: 1.6;
  max-width: 78ch;
}

/* ---------- Footer ---------- */

.site-footer {
  margin-top: 70px;
  background: var(--forest);
  color: #b9c7c0;
  padding-bottom: 104px;
}
.footer-inner {
  padding-top: 40px;
  padding-bottom: 40px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.footer-brand { display: flex; flex-direction: column; gap: 8px; }
.footer-note { font-size: 13px; color: var(--muted-2); }
.footer-links { display: flex; gap: 22px; font-size: 13.5px; }
.footer-links a { color: #c9c3b8; }
.footer-links a:hover { color: var(--cream); }

/* ---------- Sticky bar ---------- */

/* Hidden until the visitor scrolls a little (main.js toggles .is-shown) —
   otherwise it doubles up with the hero CTA on first paint. */
.sticky-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  background: rgba(20, 19, 16, 0.96);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(247, 244, 238, 0.12);
  transform: translateY(100%);
  transition: transform 0.25s ease;
}
.sticky-bar.is-shown { transform: none; }
.sticky-inner {
  padding-top: 12px;
  padding-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.sticky-copy { display: flex; align-items: baseline; gap: 12px; color: var(--cream); }
.sticky-price { font-family: var(--display); font-size: 20px; font-weight: 700; }
.sticky-meta { font-size: 13px; color: var(--green-dim); }

/* ===========================================================
   Responsive — the prototype is desktop-only, these breakpoints
   are the production adaptation.
   =========================================================== */

@media (max-width: 1000px) {
  /* Too narrow for two columns — stack, and lead with the image. */
  .hero {
    display: flex;
    flex-direction: column;
    padding: 30px 28px;
    gap: 28px;
  }
  /* Stacked: figure back into the flow above the copy — undo the desktop
     pinning; the fade mask and the flag stay. */
  .hero-media, .hero-figure { order: -1; }
  .hero-figure {
    position: relative;
    right: auto;
    bottom: auto;
    height: auto;
    max-width: none;
    width: 100%;
  }
  .hero-img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    max-height: 360px;
    object-position: center bottom;
  }
  .hero-flag { bottom: 8px; }
  .hero-copy h1 { font-size: 44px; }

  .cert { grid-template-columns: 1fr; padding: 34px 28px; gap: 32px; }
  .cert-copy { align-items: stretch; }
  .btn-green--round { min-width: 0; }

  .host { grid-template-columns: 1fr; }
  .host-side { max-width: 320px; }

  .claim { grid-template-columns: 1fr; padding: 32px 28px; gap: 28px; }

  .shortcuts { grid-template-columns: 1fr; gap: 22px; }

  .bonus-total { flex-direction: column; align-items: stretch; }
  .bonus-total-cta { align-items: stretch; }
}

@media (max-width: 860px) {
  .bonus-spark { display: none; }

  .nav { gap: 16px; font-size: 13px; }
  .nav a:not(.btn-pill) { display: none; }

  .section { padding-top: 52px; }
  .section--familiar { padding-top: 52px; }

  .stats { grid-template-columns: 1fr; gap: 18px; }
  .stat + .stat {
    border-left: 0;
    padding-left: 0;
    border-top: 1px solid var(--line);
    padding-top: 18px;
  }

  /* Mobile: first pointer centred on top, the other two side by side —
     icon above centred text in each. */
  .pains { grid-template-columns: 1fr 1fr; gap: 30px 18px; padding-left: 0; }
  .pain { flex-direction: column; align-items: center; text-align: center; gap: 17px; }
  .pain:first-child { grid-column: 1 / -1; justify-self: center; }
  /* Two lines, like its neighbours — one long line reads off-balance. */
  .pain-br { display: inline; }
  .pain p { font-size: 13.5px; line-height: 1.4; }

  .lessons { grid-template-columns: repeat(2, 1fr); }
  .bonus-cards { grid-template-columns: 1fr; }
  .host-stats { grid-template-columns: 1fr; }
  .socials { width: 100%; }
  .social { flex: 1; min-width: 150px; }

  .bonus-total-figure--divided { border-left: 0; padding-left: 0; }
  .bonus-total-note { max-width: none; }
}

@media (max-width: 640px) {
  :root { --gut: 18px; }

  /* Tight hero: the mobile .section rule (52px) was padding the hero's top
     too — the panel should sit right under the header on phones. Slimmer
     outer gutters and inner padding give the panel more of the screen. */
  .section--hero { padding-top: 8px; }
  .section--hero .wrap { padding-left: 10px; padding-right: 10px; }
  .hero { padding: 14px 14px 20px; border-radius: 18px; gap: 2px; }
  .hero-media, .hero-img { aspect-ratio: 4 / 3; max-height: none; border-radius: 14px; }
  /* Intrinsic ratio: a fixed square box letterboxes this wider-than-tall
     cutout with dead space above it. The small hero gap is enough below —
     the fade zone already reads as breathing room. */
  .hero-img { aspect-ratio: auto; height: auto; border-radius: 0; }
  /* Let the headline wrap naturally — the desktop break lands badly this narrow. */
  .hero-copy h1 { font-size: 34px; }
  .hero-copy h1 br { display: none; }
  .hero-points li { font-size: 15px; }

  /* All three meta chips stay on a single row on phones. `flex: none` keeps
     each pill at its content width so text can never spill past the padding —
     the row is made to fit by dropping the zoom wordmark (the blue Zoom mark
     still carries it) rather than by squeezing the boxes. */
  .hero-chips { flex-wrap: nowrap; gap: 6px; }
  .chip {
    flex: none;
    gap: 5px;
    padding: 8px 10px;
    font-size: 11px;
    letter-spacing: 0.02em;
    white-space: nowrap;
  }
  .chip > svg { width: 13px; height: 13px; flex: none; }
  .chip-zoom { gap: 4px; margin-left: 2px; }
  .zoom-mark { width: 15px; height: 15px; }
  .zoom-mark svg { width: 10px; height: 10px; }
  .zoom-word { font-size: 12px; }

  .btn-green--lg { width: 100%; }
  /* CTA above the meta chips, so it lands in the first screen. The negative
     top margin pulls the copy up over the image's faded tail, which is
     otherwise a near-empty band. */
  .hero-copy { display: flex; flex-direction: column; margin-top: -22px; }
  /* Clear of the pulled-up headline: the flag rides higher into the photo. */
  .hero-flag { bottom: 44px; font-size: 13.5px; padding: 9px 15px; }
  .hero-copy h1 { order: 1; }
  .hero-points { order: 2; }
  .hero-cta { display: block; order: 3; margin-top: 22px; }
  .hero-chips { order: 4; margin-top: 14px; justify-content: center; }

  .familiar-title { font-size: 28px; }

  .section-title, .faq-title { font-size: 27px; }
  .section-hint { display: none; }

  .chapter-head { flex-wrap: wrap; gap: 12px; padding: 18px; }
  .chapter-tag { order: 1; }
  .chapter-mark { order: 2; margin-left: auto; }
  .chapter-meta { order: 3; flex-basis: 100%; }
  .chapter-title { font-size: 19px; }
  .chapter-panel-inner { padding: 0 18px; }
  .chapter-panel-inner > :last-child { margin-bottom: 18px; }
  .lessons { grid-template-columns: 1fr; }
  .keys { grid-template-columns: repeat(2, 1fr); }
  .shortcuts { padding: 22px 18px; }

  .bonus { padding: 30px 18px; }
  .bonus-art img { height: 250px; }
  .bonus-title { font-size: 34px; }
  .bonus-strip { font-size: 10px; letter-spacing: 0.06em; }
  .bonus-total { padding: 20px 18px; }

  .cert { padding: 28px 18px; }
  .cert-title { font-size: 34px; }

  .host { padding: 18px; }
  .host-side { max-width: none; }
  .host-bio { font-size: 15.5px; }
  .socials { flex-direction: column; align-items: stretch; }

  .notfor { padding: 20px 18px; }
  .notfor p { font-size: 17px; }

  .claim { padding: 26px 20px; }
  .claim-title { font-size: 26px; }

  .site-footer { padding-bottom: 136px; }
  .footer-inner { flex-direction: column; gap: 22px; }
  .footer-links { flex-wrap: wrap; gap: 16px; }

  .sticky-inner { flex-direction: column; align-items: stretch; gap: 10px; }
  .sticky-copy { justify-content: center; }
  .btn-green--sm { width: 100%; }
}

/* The full three-chip row needs ~344px of inner width; below a ~440px viewport
   there isn't that much, and the overflow would be silently clipped by the
   hero's overflow:hidden rather than visibly wrapping. So the glyphs and the
   "zoom" wordmark go — the blue Zoom mark still carries the platform, and the
   separator goes with the word it was separating. */
@media (max-width: 440px) {
  .chip > svg { display: none; }
  .zoom-word { display: none; }
  .chip-sep { display: none; }
  .chip-zoom { gap: 0; margin-left: 3px; }
}

/* Smallest phones still in use (320px). */
@media (max-width: 345px) {
  .chip { padding: 7px 8px; font-size: 10px; }
  .hero-chips { gap: 4px; }
  .zoom-mark { width: 13px; height: 13px; }
  .zoom-mark svg { width: 9px; height: 9px; }
}


/* ---------- Experience ---------- */

.exp-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}
.exp-kicker {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--muted-2);
}
.exp-title {
  margin: 0;
  font-size: 44px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
}
.exp-title em { font-style: normal; color: var(--forest-line); }
.exp-body {
  margin: 0;
  font-size: 16.5px;
  color: var(--body);
  line-height: 1.6;
  max-width: 60ch;
  text-wrap: pretty;
}
.exp-cta {
  display: flex;
  width: fit-content;
  margin: 30px auto 0;
  padding: 16px 46px;
  border-radius: 999px;
  font-family: var(--display);
  font-size: 17px;
  box-shadow: 0 14px 32px rgba(46, 196, 124, 0.28);
}

/* Four channels in one white strip, hairline-divided — icon, name, metric,
   label, and a green dash. Two-by-two below tablet width. */
.exp-strip {
  max-width: 780px;
  margin: 30px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.exp-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 14px;
  border-left: 1px solid var(--line);
}
.exp-cell:first-child { border-left: 0; }
/* Bottom dash. */
.exp-cell::after {
  content: "";
  width: 26px;
  height: 3px;
  border-radius: 2px;
  background: var(--green);
  margin-top: 12px;
}

/* White circle so the icon still sits on a disc now the strip is unboxed. */
.exp-ico {
  width: 54px;
  height: 54px;
  border-radius: 999px;
  background: #fff;
  display: grid;
  place-items: center;
}
.exp-ico-ig {
  width: 29px;
  height: 29px;
  border-radius: 9px;
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
  display: grid;
  place-items: center;
}
.exp-ico-ig svg { width: 17px; height: 17px; display: block; }
.exp-ico-yt { width: 34px; height: 34px; display: block; }

.exp-cell-name {
  margin-top: 12px;
  font-family: var(--display);
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.exp-cell-metric {
  margin-top: 2px;
  font-family: var(--display);
  font-size: 25px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--forest-line);
}
.exp-cell-label { font-size: 12.5px; color: var(--muted); }

/* The strip stays one horizontal row at every width, as in the reference —
   the cells shrink instead of folding. The tiers below are sized so the widest
   name ("Learn By KKC") keeps to one line in each cell. */
@media (max-width: 860px) {
  .exp-cell { padding: 0 8px; }
  .exp-ico { width: 52px; height: 52px; }
  .exp-ico-ig { width: 28px; height: 28px; border-radius: 8px; }
  .exp-ico-ig svg { width: 16px; height: 16px; }
  .exp-ico-yt { width: 34px; height: 34px; }
  .exp-cell-name { margin-top: 11px; font-size: 13px; }
  .exp-cell-metric { font-size: 24px; }
  .exp-cell-label { font-size: 12px; }
}

@media (max-width: 640px) {
  .exp-title { font-size: 30px; }
  .exp-body { font-size: 15px; }
  .exp-cta { width: 100%; }
  .exp-strip { margin-top: 24px; }
  .exp-cell { padding: 0 4px; }
  .exp-cell::after { width: 22px; margin-top: 9px; }
  .exp-ico { width: 44px; height: 44px; }
  .exp-ico-ig { width: 24px; height: 24px; border-radius: 7px; }
  .exp-ico-ig svg { width: 14px; height: 14px; }
  .exp-ico-yt { width: 30px; height: 30px; }
  .exp-cell-name { margin-top: 9px; font-size: 11px; letter-spacing: 0; }
  .exp-cell-metric { font-size: 19px; }
  .exp-cell-label { font-size: 10.5px; }
}

@media (max-width: 400px) {
  .exp-cell { padding: 0 3px; }
  .exp-ico { width: 38px; height: 38px; }
  .exp-ico-ig { width: 21px; height: 21px; border-radius: 6px; }
  .exp-ico-ig svg { width: 12px; height: 12px; }
  .exp-ico-yt { width: 26px; height: 26px; }
  .exp-cell-name { font-size: 10px; }
  .exp-cell-metric { font-size: 17px; }
  .exp-cell-label { font-size: 10px; }
}

@media (max-width: 340px) {
  .exp-cell { padding: 0 2px; }
  .exp-cell-name { font-size: 9px; }
  .exp-cell-metric { font-size: 16px; }
  .exp-cell-label { font-size: 9.5px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition-duration: 0.01ms !important; }
}
