/* ============================================================
   InkJaw Web — HOME PAGE styles. Loaded only on the home page.
   Storybook-editorial overhaul: parchment ground, serif display,
   full-bleed illustration hero. Builds on brand.css + site.css.
   ============================================================ */

/* .section / .section--center now live in site.css (global) */
.wrap--narrow { max-width: 900px; }
.section__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.section__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(30px, 4.4vw, 54px);
  line-height: 1.06;
  letter-spacing: var(--ls-tighter);
  color: currentColor;
  margin: 10px 0 0;
  text-wrap: balance; word-spacing: var(--ws-display); }
.section__action {
  font-family: var(--font-mono);
  font-weight: var(--fw-bold);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--plum-700);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.ground-plum .section__action, .ground-ink .section__action { color: var(--gold); }
.section__aside {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: var(--fz-md);
  color: var(--ink-soft);
  max-width: 300px;
}

/* badge (small solid pill) */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-mono);
  font-weight: var(--fw-bold);
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}
.badge--green { background: var(--moss); color: #fff; }
.badge--gold  { background: var(--gold);  color: var(--ink-900); }

/* small sticker variant */
.sticker--sm { font-size: var(--fz-xs); padding: 6px 11px; display: inline-block; }

/* ── Hero — the full-bleed illustration; text over the empty left space ── */
.homehero { position: relative; overflow: hidden; }
.homehero__eyebrow-row {
  position: absolute; top: 22px; left: 0; right: 0; z-index: 5;
  display: flex; align-items: center; gap: 16px;
  padding: 0 5vw;
}
.homehero__eyebrow {
  font-family: var(--font-mono);
  font-size: clamp(11px, 0.9vw, 12.5px);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--garnet);
  white-space: nowrap;
}
.homehero__rule { width: 120px; height: 1px; background: var(--parchment-200); }
/* Split hero, 101 rules: text and art are siblings on one axis, vertically
   centered, no overlay. Sized so nav + hero + the marquee band all fit the
   first screen. When the room narrows the figure crops its own empty left
   canvas (the art is blank there) — the two columns never collide. */
.homehero__split { display: flex; align-items: center; justify-content: flex-start; }
.homehero__text {
  flex: 0 0 auto;
  /* the headline's C sits on the same axis as the S of "Story Wizards" in the
     nav: header gutter (5vw) + wordmark width (≈3.2× its font size) + nav gap */
  --nav-axis: calc(5vw + 3.2 * clamp(28px, 2.5vw, 44px) + clamp(14px, 2.8vw, 50px));
  width: calc(var(--nav-axis) + min(24vw, 464px));
  padding: 48px 0 48px var(--nav-axis);
  margin-right: -30px;
}
.homehero__figure {
  flex: 0 1 auto;
  min-width: 0;
  overflow: hidden;
  display: flex;
  justify-content: flex-end;
}
.homehero__img {
  display: block;
  width: auto;
  max-width: none;
  height: clamp(480px, calc(100dvh - 170px), 800px);
  /* the art file has ~23% blank canvas on its left; crop most of it out
     (aspect-ratio + cover anchored right) so the painted figure — not an
     invisible strip — is what sits beside the headline */
  aspect-ratio: 1260 / 1024;
  object-fit: cover;
  object-position: right center;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 7%, #000 93%, transparent 100%), linear-gradient(to bottom, #000 0%, #000 93%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 7%, #000 93%, transparent 100%), linear-gradient(to bottom, #000 0%, #000 93%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-composite: intersect;
}
.homehero__head {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(30px, 5.2vw, 64px);
  line-height: 1.06;
  color: var(--ink);
  margin: 0;
  text-wrap: balance; word-spacing: var(--ws-display); }
.homehero__head .serif-accent { color: var(--plum); font-size: 1em; }
.homehero__sub {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(17px, 1.75vw, 24px);
  line-height: 1.38;
  color: var(--ink-soft);
  margin: 0.8em 0 0;
  max-width: 26ch;
}
.homehero__actions { display: flex; gap: 14px; margin-top: 1.1em; flex-wrap: wrap; align-items: center; }
/* entrance — image eases in, then headline, then sub/CTA */
.js-reveal .homehero__img  { animation: ij-heroin .6s var(--ease-out) both; }
.js-reveal .homehero__head { animation: ij-heroin .6s var(--ease-out) both; animation-delay: .08s; }
.js-reveal .homehero__sub, .js-reveal .homehero__actions { animation: ij-heroin .6s var(--ease-out) both; animation-delay: .16s; }
@keyframes ij-heroin { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.js-reveal .homehero__text { animation: none; }
@media (max-width: 860px) {
  .homehero__split { flex-direction: column; align-items: stretch; }
  .homehero__text { width: 100%; padding: 62px var(--gutter) 6px; margin-right: 0; }
  .homehero__figure { justify-content: center; overflow: visible; }
  .homehero__img { height: auto; width: 100%; max-width: 100%; aspect-ratio: auto; object-fit: contain; }
}

/* ── Marquee — pulled up so she appears to walk on the band ── */
.marquee { background: var(--ink); overflow: hidden; color: var(--parchment-50); position: relative; z-index: 3; margin-top: calc(-2.5vw + 35px); }
.marquee__track { display: flex; gap: 30px; padding: 14px 0; white-space: nowrap; animation: ij-marquee 34s linear infinite; font-family: var(--font-display); font-size: 22px; word-spacing: var(--ws-display); font-weight: 700; }
@media (max-width: 600px) { .marquee__track { animation-duration: 20s; } }
/* decorative and purely infinite (WCAG 2.2.2) — give it a pause control since
   the content itself is aria-hidden and can't be tabbed to otherwise */
.marquee:hover .marquee__track, .marquee:focus-within .marquee__track { animation-play-state: paused; }
.marquee__item { display: inline-flex; align-items: center; gap: 30px; }
.marquee__star { color: var(--gold); }
@keyframes ij-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (max-width: 860px) {
  .marquee { margin-top: 0; }
}

/* ── Free-forward lead: kicker, serif head, whimsy line, scene art ── */
.freelead { padding: 48px 0 0; text-align: center; }
.freelead__kicker {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--garnet);
}
.freelead__kicker svg { flex-shrink: 0; }
.freelead__head {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(38px, 6vw, 64px);
  line-height: 1.06;
  margin: 12px auto 0;
  max-width: 18ch;
  text-wrap: balance;
  color: var(--ink); word-spacing: var(--ws-display); }
.freelead__head .serif-accent { color: var(--plum); }
.freelead__whimsy {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin: 14px 0 0;
}
.freelead__img {
  display: block;
  width: 100%;
  max-width: 920px;
  margin: 12px auto 0;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 9%, #000 91%, transparent 100%), linear-gradient(to bottom, transparent 0, #000 7%, #000 93%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0, #000 9%, #000 91%, transparent 100%), linear-gradient(to bottom, transparent 0, #000 7%, #000 93%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-composite: intersect;
}
/* the scene wears a seal on its empty left corner */
.freelead__scene { position: relative; max-width: 920px; margin: 12px auto 0; }
.freelead__scene .freelead__img { margin: 0; }
.freelead__seal { position: absolute; left: clamp(-14px, -2%, 0px); bottom: -6%; }
@media (max-width: 640px) { .freelead__seal { position: static; display: inline-grid; margin-top: 8px; } }

/* ── Free grid — three preview columns (wizards / quizzes / guides) ── */
.freegrid-sec { padding: 48px 0; }
.freegrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2.5vw, 32px); }
.freecol__head { border-bottom: 3px solid var(--plum); padding-bottom: 12px; }
.freecol__kicker {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: var(--fw-bold);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.freecol__titlerow { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; margin-top: 6px; }
.freecol__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(20px, 2vw, 27px);
  line-height: 1.06;
  letter-spacing: -0.01em;
  white-space: nowrap;
  color: var(--ink); word-spacing: var(--ws-display); }
.freecol__all {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: var(--fw-bold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}
.minirow {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 4px;
  border-bottom: 1px solid var(--parchment-200);
  color: var(--ink);
  transition: color var(--dur-fast);
}
.minirow:hover { color: var(--gold-deep); }
.minirow__dot { width: 7px; height: 7px; border-radius: 999px; flex-shrink: 0; }
.minirow__title { font-family: var(--font-display); font-size: clamp(16px, 1.6vw, 19px); line-height: 1.05; word-spacing: var(--ws-display); font-weight: 700; }
/* rows that carry a pitch line: dot stays in its own column, name and pitch
   stack beside it. Only the wizards use this; the other two columns are
   untouched flex rows. */
.minirow--rich { display: grid; grid-template-columns: auto 1fr; column-gap: 12px; row-gap: 3px; align-items: start; }
.minirow--rich .minirow__dot { margin-top: 0.42em; }
.minirow__sub {
  grid-column: 2;
  font-family: var(--font-body); font-size: 12.5px; line-height: 1.4;
  color: var(--ink-soft);
  /* 3, not 2: at 2 the best pitches clip right before their payoff word */
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.minirow:hover .minirow__sub { color: var(--ink-soft); }
@media (max-width: 860px) {
  .freegrid { grid-template-columns: 1fr; }
}

/* ── the live drop band: this month's theme + the two free packs ── */
.dropband-sec { padding: clamp(40px, 5.5vw, 56px) 0; }
.dropband { display: grid; grid-template-columns: 1.15fr 1fr; gap: clamp(24px, 4vw, 56px); align-items: center; }
/* let the grid columns shrink below their content on narrow phones instead of
   propping the row wider than the screen (grid items default to min-width:auto) */
.dropband > *, .dropband__cards > * { min-width: 0; }
.dropband__card-title { overflow-wrap: break-word; }
.dropband__kicker {
  font-family: var(--font-mono); font-size: 11px; font-weight: var(--fw-bold);
  letter-spacing: 0; text-transform: none; color: var(--gold-100);
  display: inline-flex; align-items: center; gap: 6px;
}
.dropband__kicker svg { flex-shrink: 0; }
.dropband__title {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(34px, 4.6vw, 64px); line-height: 1.06;
  letter-spacing: var(--ls-tighter); color: var(--parchment-50);
  margin: 10px 0 0; text-wrap: balance; word-spacing: var(--ws-display); }
.dropband__sub {
  font-family: var(--font-body); font-size: 16px; line-height: 1.5;
  color: color-mix(in srgb, var(--parchment-50) 82%, transparent);
  margin: 12px 0 0; max-width: 44ch;
}
.dropband__hl { color: var(--gold-100); }
.dropband__actions { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; margin-top: 20px; }
.dropband__vote {
  font-family: var(--font-mono); font-size: 11.5px; font-weight: var(--fw-bold);
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--gold-100);
  border-bottom: 1.5px solid color-mix(in srgb, var(--gold-100) 55%, transparent);
  padding-bottom: 2px;
}
.dropband__vote:hover { color: var(--gold-bright); }
.dropband__cards { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; padding-top: 10px; }
.dropband__sticker { position: absolute; top: -16px; right: -8px; z-index: 2; transform: rotate(5deg); }
.dropband__card {
  position: relative; display: flex; flex-direction: column; gap: 6px;
  background: var(--world); border-radius: 14px; padding: 40px 16px 16px;
  min-height: 128px; color: #fff;
  /* the ring keeps plum-family world colors from melting into the plum band */
  box-shadow: 0 0 0 1.5px color-mix(in srgb, var(--parchment-50) 30%, transparent), var(--shadow);
  transition: transform var(--dur) var(--ease-snap), box-shadow var(--dur);
  -webkit-touch-callout: none;
}
@media (hover: hover) and (pointer: fine) { .dropband__card:hover { transform: translateY(-4px);
  box-shadow: 0 0 0 1.5px color-mix(in srgb, var(--parchment-50) 45%, transparent), var(--shadow-lg); } }
.dropband__card-free {
  position: absolute; top: 12px; left: 14px;
  font-family: var(--font-mono); font-size: 11px; font-weight: var(--fw-bold);
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink-900); background: var(--gold); padding: 3px 9px; border-radius: 999px;
}
.dropband__card-kind {
  font-family: var(--font-mono); font-size: 11px; font-weight: var(--fw-bold);
  letter-spacing: 0; text-transform: none; color: rgba(255,255,255,calc(0.8 * var(--world-text-a, 1)));
  margin-top: auto;
  display: inline-flex; align-items: center; gap: 6px;
}
.dropband__card-kind svg { flex-shrink: 0; }
.dropband__card-title { font-family: var(--font-display); font-weight: 700; font-size: 19px; line-height: 1.08; text-wrap: balance; word-spacing: var(--ws-display); }
@media (max-width: 860px) {
  .dropband { grid-template-columns: 1fr; }
  .dropband__sticker { top: -22px; right: 4px; }
}


/* ── Blog editorial rows ── */
.postrows { border-top: 2px solid var(--ink); }
.postrow {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  align-items: baseline;
  gap: 18px;
  padding: 18px 14px;
  border-bottom: 1px solid var(--parchment-200);
  color: var(--ink);
  transition: background var(--dur-fast) ease;
  -webkit-touch-callout: none;
}
.postrow:hover { background: color-mix(in srgb, var(--plum) 6%, transparent); }
.postrow__tag {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: var(--fw-bold);
  letter-spacing: 0;
  text-transform: none;
  color: var(--plum-700);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.postrow__tag svg { flex-shrink: 0; }
.postrow__body { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.postrow__title { font-family: var(--font-display); font-size: clamp(20px, 2.3vw, 28px); line-height: 1.06; text-wrap: balance; word-spacing: var(--ws-display); font-weight: 700; }
.postrow__excerpt { font-family: var(--font-serif); font-style: italic; font-size: 15px; line-height: 1.4; color: var(--ink-soft); }
.postrow__meta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink-dim);
  text-align: right;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.postrow__meta svg { flex-shrink: 0; }
@media (max-width: 640px) {
  .postrow { grid-template-columns: 1fr; gap: 6px; }
  .postrow__meta { text-align: left; }
}

/* ── Product mini grid ── */
.prodgrid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 18px; }
/* The cover IS the card — portrait tile, title as hero until real art lands.
   Kept in sync with shop.css (both stylesheets style .prodmini). */
.prodmini { position: relative; border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-sm); display: block; color: var(--ink); transition: transform var(--dur) var(--ease-snap), box-shadow var(--dur); -webkit-touch-callout: none; }
@media (hover: hover) and (pointer: fine) { .prodmini:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); } }
.prodmini__cover { position: relative; aspect-ratio: 1 / 1; background: var(--world); overflow: hidden; }
.prodmini__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.prodmini__fmt { position: absolute; top: 14px; left: 15px; font-family: var(--font-mono); font-size: 11px; font-weight: var(--fw-bold); letter-spacing: 0; text-transform: none; color: rgba(255,255,255,calc(0.72 * var(--world-text-a, 1))); display: inline-flex; align-items: center; gap: 6px; }
.prodmini__fmt svg { flex-shrink: 0; }
.prodmini__gentitle { position: absolute; left: 14px; right: 14px; top: 44%; transform: translateY(-50%); font-family: var(--font-display); font-weight: 900; font-size: clamp(17px, 2vw, 21px); line-height: 1.06; letter-spacing: -0.01em; color: #fff; text-wrap: balance; word-spacing: var(--ws-display); }
.prodmini__genbar { position: absolute; left: 16px; bottom: 16px; width: 30px; height: 5px; border-radius: 999px; }
.prodmini__loved { position: absolute; top: 8px; right: 8px; }
.prodmini__price { position: absolute; right: 10px; bottom: 10px; font-family: var(--font-display); font-weight: 900; font-size: 15px; color: #fff; background: var(--ink); padding: 5px 11px; border-radius: 999px; box-shadow: 0 3px 10px rgba(0,0,0,0.28); word-spacing: var(--ws-display); }
.prodmini__rating { position: absolute; left: 10px; bottom: 10px; font-family: var(--font-mono); font-size: 11px; color: #fff; background: rgba(0,0,0,0.5); padding: 5px 9px; border-radius: 999px; display: inline-flex; align-items: center; gap: 4px; }

/* ── Featured author ── */
.featauthor { display: flex; gap: 32px; align-items: center; }
.featauthor__media { flex-shrink: 0; width: 140px; height: 140px; border-radius: 50%; background: var(--paper); box-shadow: var(--shadow-sm); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.featauthor__avatar { width: 100%; height: 100%; object-fit: cover; }
.featauthor__initials { font-family: var(--font-display); font-weight: 900; font-size: 46px; color: var(--plum); letter-spacing: -0.01em; word-spacing: var(--ws-display); }
.featauthor__text { flex: 1; }
.featauthor__title { font-family: var(--font-display); font-weight: 700; font-size: clamp(30px, 4vw, 52px); line-height: 1.06; letter-spacing: var(--ls-tighter); color: var(--ink); margin: 10px 0 0; word-spacing: var(--ws-display); }
.featauthor__tagline { font-family: var(--font-serif); font-style: italic; font-size: 20px; color: var(--plum-700); margin: 6px 0 0; }
.featauthor__blurb { font-family: var(--font-body); font-size: 16px; line-height: 1.55; color: var(--ink-soft); margin: 12px 0 0; max-width: 620px; }
.featauthor__blurb a { color: var(--plum-700); font-weight: var(--fw-semibold); }
.featauthor__more { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.02em; margin: 14px 0 0; }
.featauthor__more a { color: var(--plum-700); font-weight: var(--fw-bold); text-decoration: underline; text-underline-offset: 3px; }
.featauthor .btn { margin-top: 20px; }
/* the author band rides plum: parchment type, gold links, portrait pops */
.ground-plum .featauthor__title { color: var(--parchment-50); }
.ground-plum .featauthor__tagline { color: color-mix(in srgb, var(--parchment-50) 88%, transparent); }
.ground-plum .featauthor__blurb { color: color-mix(in srgb, var(--parchment-50) 84%, transparent); }
.ground-plum .featauthor__blurb a,
.ground-plum .featauthor__more a { color: var(--parchment-50); text-decoration: underline; text-underline-offset: 3px; }
.ground-plum .featauthor .eyebrow { color: color-mix(in srgb, var(--parchment-50) 88%, transparent) !important; }
.ground-plum .featauthor__media { box-shadow: 0 4px 18px rgba(0,0,0,0.28); }

/* the voice band rides gold: everything set in deep ink so it reads */
.ground-gold .voiceband__kicker { color: var(--ink-900); opacity: 0.78; }
.ground-gold .voiceband__title { color: var(--ink-900); }
.ground-gold .voiceband__title .serif-accent { color: var(--ink-900); }
.ground-gold .voiceband__body { color: color-mix(in srgb, var(--ink-900) 88%, transparent); }
.ground-gold .voiceband__free { color: var(--ink-900); }
/* a gold button on a gold band would vanish — go ink */
.ground-gold .voiceband .btn--cta { background: var(--ink); color: var(--parchment-50); border-color: var(--ink); }

/* ── Services CTA ── */
.cta-section__title { font-family: var(--font-display); font-weight: 700; font-size: clamp(38px, 6vw, 76px); line-height: 1.06; letter-spacing: var(--ls-tighter); color: var(--parchment-50); margin: 18px auto 0; max-width: 18ch; text-wrap: balance; word-spacing: var(--ws-display); }
.cta-section__body { font-family: var(--font-body); font-size: var(--fz-md); color: color-mix(in srgb, var(--parchment-50) 82%, transparent); max-width: 520px; margin: 20px auto 0; }
.cta-section__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 30px; }

/* ── Home responsive ── */
@media (max-width: 860px) {
  .featauthor { flex-direction: column; text-align: center; }
  .featauthor__blurb { margin-left: auto; margin-right: auto; }
}
@media (max-width: 520px) {
  .prodgrid { grid-template-columns: 1fr 1fr; gap: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; }
  .js-reveal .homehero__img, .js-reveal .homehero__head,
  .js-reveal .homehero__sub, .js-reveal .homehero__actions { animation: none !important; }
}


/* coming-soon spot: the dragon peeks instead of an empty badge */
.featauthor__mascot { width: 100%; height: 100%; object-fit: cover; object-position: top; }

/* ── "Watch a wizard work" ───────────────────────────────────────────────
   The Story Wizards sit behind a free account, so their whole appeal is
   invisible to a cold visitor. This band shows one working — a scene in,
   a sharper scene out — before asking for the sign-up. Everything is
   wz-prefixed so it can't reach any other block on the page.
   ------------------------------------------------------------------- */
.wzdemo { padding: clamp(30px, 3.6vw, 46px) 0; }
.wzdemo__kicker {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-mono); font-size: 11px; font-weight: var(--fw-bold);
  letter-spacing: 0.03em; color: var(--garnet);
}
.wzdemo__kicker svg { flex-shrink: 0; }
.wzdemo__head {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(21px, 2.4vw, 30px); line-height: 1.1;
  letter-spacing: var(--ls-tighter); color: var(--ink);
  margin: 8px 0 0; max-width: 26ch; text-wrap: balance;
  word-spacing: var(--ws-display);
}
.wzdemo__lede {
  font-family: var(--font-body); font-size: clamp(13.5px, 1.1vw, 15.5px);
  line-height: 1.5; color: var(--ink-soft); margin: 8px 0 0; max-width: 60ch;
}

/* the machine: scene → lever → twist */
.wzmachine {
  margin-top: 18px; display: grid;
  grid-template-columns: 1fr auto 1fr; gap: 13px; align-items: stretch;
}
.wzmachine > * { min-width: 0; }
.wzslot {
  background: var(--paper); border: 1px solid var(--parchment-200);
  border-radius: 14px; padding: 12px 14px 13px; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: 6px;
}
.wzslot--out {
  border-color: color-mix(in srgb, var(--gold) 45%, var(--parchment-200));
  background: linear-gradient(180deg, var(--parchment-50), var(--paper));
}
.wzslot__tag {
  align-self: flex-start;
  font-family: var(--font-mono); font-size: 10.5px; font-weight: var(--fw-bold);
  letter-spacing: 0.02em; text-transform: uppercase;
  padding: 3px 9px; border-radius: 999px;
  color: var(--ink-soft); background: var(--parchment-100);
}
.wzslot--out .wzslot__tag { color: var(--ink-900); background: var(--gold-100); }
.wzslot__text {
  font-family: var(--font-display); font-size: clamp(14.5px, 1.25vw, 16.5px);
  line-height: 1.32; margin: 0; overflow-wrap: break-word;
  word-spacing: var(--ws-display);
}
.wzslot--in .wzslot__text { font-style: italic; color: var(--ink-soft); }
.wzslot--out .wzslot__text { font-weight: 700; color: var(--ink); }

.wzlever {
  align-self: center; display: flex; flex-direction: column; align-items: center;
  gap: 6px; background: var(--ink); color: var(--parchment-50); border: none;
  cursor: pointer; padding: 11px 12px; border-radius: 13px; box-shadow: var(--shadow);
  transition: transform var(--dur) var(--ease-snap), box-shadow var(--dur);
  -webkit-touch-callout: none;
}
@media (hover: hover) and (pointer: fine) {
  .wzlever:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
}
.wzlever:active { transform: translateY(1px) scale(0.98); }
.wzlever__name {
  font-family: var(--font-mono); font-size: 10.5px; font-weight: var(--fw-bold);
  letter-spacing: 0.02em; color: var(--gold-100);
  text-align: center; max-width: 13ch; line-height: 1.25;
}
.wzlever__arrows { font-size: 15px; line-height: 0.6; color: var(--gold-bright); letter-spacing: 2px; }
.wzlever__knob {
  font-family: var(--font-display); font-weight: 700; font-size: 13px;
  background: var(--gold); color: var(--ink-900);
  padding: 6px 12px; border-radius: 999px; word-spacing: var(--ws-display);
}

.wzhint {
  font-family: var(--font-mono); font-size: 11px; color: var(--ink-dim);
  margin-top: 9px; text-transform: uppercase; letter-spacing: 0.08em;
}
.wzdemo__cta { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-top: 17px; }
.wzdemo__free {
  font-family: var(--font-mono); font-size: 12.5px; font-weight: var(--fw-bold);
  color: var(--plum-700); text-decoration: underline; text-underline-offset: 3px;
}
.wzdemo__fine {
  font-family: var(--font-body); font-size: 13px; color: var(--ink-dim);
  margin: 10px 0 0; display: inline-flex; align-items: center; gap: 8px;
}
.wzdemo__fine b { color: var(--ink); font-weight: var(--fw-bold); }

/* the dispense — the band's one authored moment */
.wz-swap { animation: wz-dispense 0.5s var(--ease-out) both; }
@keyframes wz-dispense {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: none; }
}

@media (max-width: 860px) {
  .wzmachine { grid-template-columns: 1fr; }
  .wzlever { flex-direction: row; align-self: stretch; justify-content: center; }
  .wzlever__name { max-width: none; }
  /* stacked: the lever sits in a row, so the arrows point at the knob */
  .wzlever__arrows { transform: rotate(-90deg); }
}
@media (prefers-reduced-motion: reduce) {
  .wz-swap { animation: none; }
}

/* ── the $29 Voice Profile band, the easy first yes ─────────────────────── */
.voiceband { text-align: center; padding: clamp(56px, 8vw, 92px) 0; }
.voiceband__kicker { font-family: var(--font-mono); font-size: 11px; font-weight: var(--fw-bold); letter-spacing: 0; text-transform: none; color: var(--garnet); display: inline-flex; align-items: center; gap: 6px; }
.voiceband__kicker svg { flex-shrink: 0; }
.voiceband__title { font-family: var(--font-display); font-weight: 700; font-size: clamp(32px, 4.6vw, 56px); line-height: 1.06; letter-spacing: var(--ls-tighter); color: var(--ink); margin: 14px auto 0; max-width: 16ch; text-wrap: balance; word-spacing: var(--ws-display); }
.voiceband__body { font-family: var(--font-body); font-size: var(--fz-md); color: var(--ink-soft); max-width: 520px; margin: 16px auto 0; }
.voiceband__actions { display: flex; gap: 18px; justify-content: center; align-items: center; flex-wrap: wrap; margin-top: 26px; }
.voiceband__free { font-family: var(--font-mono); font-size: 12px; font-weight: var(--fw-bold); letter-spacing: 0.02em; color: var(--plum-700); text-decoration: underline; text-underline-offset: 3px; }
