/* ============================================================================
   PERSONAL AGENT BOOTCAMP — Landing page
   Self-contained. Ported from the Claude Design "Familiar" handoff:
   colors_and_type.css (tokens) + marketing kit.css, recreated as static CSS.
   Aesthetic: techno-editorial / Swiss-brutalist.
   Brand renamed: product = Personal Agent Bootcamp, companion = Wingman.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Big+Shoulders+Display:wght@400..900&family=JetBrains+Mono:ital,wght@0,300..800;1,400..700&family=Space+Grotesk:wght@300..700&display=swap');

:root {
  /* ----- RAW PALETTE (sampled from the brand reference) --------------- */
  --paper:        #F1EEEA;
  --paper-2:      #E9E5DD;
  --paper-3:      #DCD7CD;
  --line:         #CDC7BB;
  --line-strong:  #B7B0A2;

  --ink:          #0D0F0E;
  --ink-2:        #3B3C38;
  --ink-3:        #6E6E66;
  --ink-4:        #9A9A90;

  --on-ink:       #F1EEEA;
  --on-ink-2:     #B6B4AB;
  --on-ink-3:     #76766E;
  --on-ink-line:  rgba(241,238,234,0.14);

  /* Accent — acid lime (the single brand color) */
  --acid:         #D1F643;
  --acid-2:       #C2E62F;
  --acid-dim:     #AFC93A;
  --acid-wash:    #EAF4C0;

  --hair:         rgba(13,15,14,0.14);
  --hair-soft:    rgba(13,15,14,0.08);

  /* ----- TYPE ---------------------------------------------------------- */
  --font-display: "Big Shoulders Display", "Oswald", "Arial Narrow", sans-serif;
  --font-mono:    "JetBrains Mono", "SFMono-Regular", ui-monospace, monospace;
  --font-sans:    "Space Grotesk", "Helvetica Neue", Arial, sans-serif;

  --tr-label:  0.18em;

  /* ----- SPACING / LAYOUT --------------------------------------------- */
  --maxw: 1320px;
  --gutter: 28px;

  /* ----- RADII (square system; pill reserved for CTA + dots) ---------- */
  --r-1: 2px;
  --r-pill: 999px;

  /* ----- ELEVATION (borders & recesses, not gummy shadows) ------------ */
  --shadow-recess:  inset 0 1px 2px rgba(13,15,14,0.06);
  --shadow-raise:   0 12px 30px -24px rgba(13,15,14,0.40);
  --shadow-soft:    0 24px 60px -30px rgba(13,15,14,0.45);

  /* ----- MOTION -------------------------------------------------------- */
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
  --dur-1: 120ms;
  --dur-2: 220ms;
  --dur-3: 420ms;
}

/* ============================================================================
   RESET / BASE
   ========================================================================== */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; background: var(--paper); color: var(--ink); }
body {
  font-family: var(--font-mono);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
::selection { background: var(--acid); color: var(--ink); }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
img { display: block; }
:focus-visible { outline: 2px solid var(--acid); outline-offset: 2px; }

.shell { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }

/* shared type helpers */
.lab {
  font-family: var(--font-mono); font-weight: 500; text-transform: uppercase;
  letter-spacing: var(--tr-label); font-size: 11px; color: var(--ink-3);
}
.lab-k { color: var(--ink); }
.display { font-family: var(--font-display); }

/* ============================================================================
   PAGE FURNITURE — fixed registration corners
   ========================================================================== */
.frame-corner {
  position: fixed; width: 22px; height: 22px; z-index: 5;
  pointer-events: none; opacity: .5;
}
.frame-corner img { width: 100%; height: 100%; }
.frame-corner.tl { top: 12px; left: 12px; }
.frame-corner.tr { top: 12px; right: 12px; transform: scaleX(-1); }
.frame-corner.bl { bottom: 12px; left: 12px; transform: scaleY(-1); }
.frame-corner.br { bottom: 12px; right: 12px; transform: scale(-1); }

/* ============================================================================
   BUTTONS
   ========================================================================== */
.btn {
  font-family: var(--font-mono); text-transform: uppercase; letter-spacing: .14em;
  font-size: 11px; font-weight: 500; padding: 13px 22px;
  border: 1.5px solid var(--ink); background: transparent; color: var(--ink);
  display: inline-flex; gap: 10px; align-items: center; border-radius: var(--r-pill);
  transition: background var(--dur-1) var(--ease), color var(--dur-1) var(--ease),
              transform var(--dur-1) var(--ease);
}
.btn .arw { transition: transform var(--dur-2) var(--ease); }
.btn:hover { background: var(--acid); }
.btn:hover .arw { transform: translateX(4px); }
.btn:active { transform: translateY(1px); background: var(--acid-2); }
.btn--solid { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.btn--solid:hover { background: var(--acid); color: var(--ink); }
.btn--ghost { border-color: var(--hair); color: var(--ink-2); }
.btn--ghost:hover { background: var(--paper-2); color: var(--ink); }
.btn--acid-line { border-color: var(--acid); color: var(--on-ink); }
.btn--acid-line:hover { background: var(--acid); color: var(--ink); }
.btn--block { width: 100%; justify-content: space-between; }

/* ============================================================================
   IMAGE SLOT — dark placeholder with the brand laser treatment
   ========================================================================== */
.slot {
  position: relative; background: var(--ink); overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.slot .slot-lab {
  position: absolute; top: 10px; left: 12px; font-size: 9px; letter-spacing: .22em;
  text-transform: uppercase; color: var(--on-ink-3);
}
.slot .slot-mid {
  font-size: 10px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--on-ink-3); text-align: center; line-height: 2; padding: 0 16px;
  white-space: pre-line;
}
.slot .laser {
  position: absolute; left: 0; right: 0; top: 48%; height: 2px; background: var(--acid);
  box-shadow: 0 0 20px 2px rgba(209,246,67,.45);
}
.hero-center .statue { background: transparent; }
.statue .statue-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: contain; object-position: center top;
}
.slot .slot-lab { z-index: 2; }

/* ============================================================================
   NAV
   ========================================================================== */
.nav {
  position: sticky; top: 0; z-index: 50; background: var(--paper);
  border-bottom: 1px solid transparent; transition: border-color .2s, background .2s;
}
.nav.scrolled {
  background: color-mix(in srgb, var(--paper) 82%, transparent);
  backdrop-filter: blur(10px); border-bottom: 1px solid var(--hair);
}
.nav-inner { height: 68px; display: flex; align-items: center; gap: 30px; }
.wordmark { display: inline-flex; align-items: center; gap: 9px; cursor: pointer; }
.wordmark .wm-text {
  font-family: var(--font-display); font-weight: 800; font-size: 20px;
  letter-spacing: .01em; line-height: 1; color: var(--ink); white-space: nowrap;
}
.nav-links { display: flex; gap: 22px; margin-left: 10px; }
.nav-links a {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--ink-3); padding-bottom: 2px;
  border-bottom: 1.5px solid transparent; transition: color var(--dur-1);
}
.nav-links a:hover { color: var(--ink); }
.nav-right { margin-left: auto; display: flex; align-items: center; gap: 18px; }
.cohort-flag {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--ink-3);
  display: inline-flex; gap: 8px; align-items: center;
}
.dot { width: 8px; height: 8px; border-radius: var(--r-pill); background: var(--acid); }

/* ============================================================================
   HERO
   ========================================================================== */
.hero { position: relative; border-bottom: 1px solid var(--hair); }
.hero-readout {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 0; border-bottom: 1px solid var(--hair);
}
.hero-readout .group { display: inline-flex; gap: 22px; }
.hero-grid {
  display: grid; grid-template-columns: 88px 1fr minmax(300px, 440px); gap: 0;
  min-height: min(72vh, 640px); align-items: stretch;
}

/* left metadata rail */
.rail-l {
  border-right: 1px solid var(--hair); padding: 30px 14px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.rail-l .stamp { color: var(--ink); line-height: 1.7; letter-spacing: .1em; }
.rail-l .marks { margin-top: 22px; display: flex; flex-direction: column; gap: 14px; }
.expand-rows { }
.expand-row { display: flex; align-items: center; gap: 8px; margin-bottom: 6px; }
.expand-row .n { font-family: var(--font-mono); font-size: 10px; color: var(--ink-4); }
.expand-row.is-top .n { color: var(--ink); }
.expand-row .bar { flex: 1; height: 1px; background: var(--hair); }
.expand-row.is-top .bar { background: var(--acid); }

/* headline + subhead + CTAs (left) */
.hero-main {
  padding: 40px 40px 40px 30px;
  display: flex; flex-direction: column; justify-content: center;
  border-right: 1px solid var(--hair); min-width: 0;
}
.hero-main > .lab { margin-bottom: 22px; }
.hero-wall {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(56px, 8.6vw, 132px); line-height: .84; letter-spacing: -.04em;
  margin: 0 0 0 -60px; color: var(--ink);
  position: relative; z-index: 4;   /* layer the big type OVER the thin grid lines */
}
.hero-wall .amp { color: var(--acid-dim); }
.hero-main .sub {
  font-family: var(--font-mono); font-size: 15px; line-height: 1.72;
  color: var(--ink-2); margin: 26px 0 0; max-width: 46ch;
}
.hero-main .ctas { margin-top: 34px; display: flex; gap: 12px; flex-wrap: wrap; }

/* product box (far right) */
.hero-box {
  position: relative; display: flex; align-items: center; justify-content: center;
  padding: 24px 0;
}
.hero-box .slot.statue {
  position: relative; width: 100%; height: 100%; min-height: 380px;
  background: transparent; overflow: visible;
}
.hero-box .slot.statue .statue-img { object-fit: contain; object-position: center; }

/* bottom pillar row */
.pillars { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--ink); }
.pillar { padding: 20px 18px 22px; border-right: 1px solid var(--hair); }
.pillar:last-child { border-right: none; }
.pillar .top { display: flex; align-items: center; gap: 10px; }
.pillar .top .n { font-family: var(--font-mono); font-size: 12px; color: var(--ink); }
.pillar .t {
  font-family: var(--font-mono); font-size: 13px; letter-spacing: .12em;
  text-transform: uppercase; margin-top: 14px; color: var(--ink);
}
.pillar .s { font-family: var(--font-mono); font-size: 11px; color: var(--ink-3); margin-top: 6px; }

/* ============================================================================
   MARQUEE
   ========================================================================== */
.marquee {
  overflow: hidden; border-top: 1px solid var(--hair); border-bottom: 1px solid var(--hair);
}
.mq-track { display: flex; white-space: nowrap; width: max-content; animation: mq 28s linear infinite; }
.mq-track .group { display: flex; }
.mq-item {
  display: inline-flex; align-items: center; gap: 18px; padding: 14px 26px;
  font-family: var(--font-mono); font-size: 12px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--ink-2);
}
@keyframes mq { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================================================
   SECTION HEADER
   ========================================================================== */
.sec { padding: 96px 0; }
.sec-head {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 24px;
  padding-bottom: 18px; border-bottom: 1px solid var(--hair); margin-bottom: 36px;
}
.sec-head .meta { display: flex; align-items: center; gap: 14px; }
.sec-head .idx { font-family: var(--font-mono); font-size: 11px; letter-spacing: .08em; color: var(--ink); }
.sec-head .title {
  font-family: var(--font-display); font-weight: 700; font-size: clamp(30px, 4vw, 52px);
  line-height: 1.04; margin: 18px 0 0; letter-spacing: -.01em; max-width: 820px; text-wrap: balance;
}
.sec-head .title em { font-style: italic; }

/* ============================================================================
   MANIFESTO
   ========================================================================== */
.manifesto-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 60px; align-items: start; }
.manifesto-grid h2 {
  font-family: var(--font-display); font-weight: 700; font-size: clamp(32px, 4.4vw, 64px);
  line-height: 1.04; letter-spacing: -.01em; margin: 0; text-wrap: balance;
}
.manifesto-grid h2 em { font-style: italic; }
.manifesto-grid .body { font-family: var(--font-sans); font-size: 16px; line-height: 1.65; color: var(--ink-2); margin: 0; }
.stats { display: flex; gap: 40px; margin-top: 34px; flex-wrap: wrap; }
.stat .n { font-family: var(--font-display); font-weight: 700; font-size: 48px; line-height: 1; }
.stat .l { margin-top: 8px; }

/* ============================================================================
   THE LOOP (curriculum accordion)
   ========================================================================== */
.loop { border-top: 1px solid var(--ink); }
.loop-row { border-bottom: 1px solid var(--hair); }
.loop-head {
  width: 100%; background: transparent; border: none; text-align: left;
  padding: 24px 18px; display: grid; grid-template-columns: 80px 1fr auto; gap: 24px;
  align-items: center; transition: background .15s; color: var(--ink);
}
.loop-row.open .loop-head { background: var(--paper-2); }
.loop-head .n { font-family: var(--font-display); font-weight: 700; font-size: 34px; }
.loop-head .meta { display: flex; flex-direction: column; gap: 6px; }
.loop-head .t { font-family: var(--font-mono); font-size: 13px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink); }
.loop-head .sub { font-family: var(--font-mono); font-size: 11px; color: var(--ink-3); letter-spacing: .04em; }
.loop-head .plus { font-family: var(--font-mono); font-size: 20px; color: var(--ink-3); transition: transform .2s; }
.loop-row.open .loop-head .plus { transform: rotate(45deg); }
.loop-body { display: none; padding: 0 18px 28px 104px; max-width: 760px; }
.loop-row.open .loop-body { display: block; }
.loop-body p { font-family: var(--font-sans); font-size: 16px; line-height: 1.65; color: var(--ink-2); margin: 0; }
.loop-body .tag-sell {
  display: inline-block; margin-bottom: 14px; font-family: var(--font-mono); font-size: 10px;
  letter-spacing: .16em; text-transform: uppercase; color: var(--ink);
  background: var(--acid); padding: 4px 9px;
}

.facts { display: flex; gap: 30px; margin-top: 48px; flex-wrap: wrap; }
.fact { border-left: 1px solid var(--acid); padding-left: 14px; }
.fact .l { margin-bottom: 8px; }
.fact .v { font-family: var(--font-mono); font-size: 13px; color: var(--ink); }
.fact .v.todo { color: var(--ink-4); }

/* ============================================================================
   WHAT YOU BUILD (dark section)
   ========================================================================== */
.dark { background: var(--ink); color: var(--on-ink); }
.dark .sec-head { border-bottom-color: var(--on-ink-line); }
.dark .sec-head .idx { color: var(--on-ink); }
.dark .sec-head .title { color: var(--on-ink); }

/* full-bleed acid-green section (thesis) */
.acid { background: var(--acid); color: var(--ink); }
.acid .lab { color: var(--ink); }
.acid .manifesto-grid .body { color: var(--ink-2); }
.build-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.build-card { border: 1px solid var(--on-ink-line); padding: 18px; display: flex; flex-direction: column; gap: 16px; }
.build-card .slot { height: 132px; }
.build-card .row { display: flex; justify-content: space-between; align-items: baseline; }
.build-card .name { font-family: var(--font-display); font-weight: 700; font-size: 22px; }
.build-card .who { font-family: var(--font-mono); font-size: 11px; color: var(--acid); }
.build-card .desc { font-family: var(--font-mono); font-size: 12px; line-height: 1.6; color: var(--on-ink-2); margin: 0; }

/* ============================================================================
   PRICING
   ========================================================================== */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--ink); border-left: 1px solid var(--hair); }
.plan { border-right: 1px solid var(--hair); padding: 28px 24px; display: flex; flex-direction: column; color: var(--ink); }
.plan.featured { background: var(--ink); color: var(--on-ink); }
.plan .ptop { display: flex; justify-content: space-between; align-items: center; }
.plan .pid { font-family: var(--font-mono); font-size: 11px; letter-spacing: .08em; color: var(--ink-3); }
.plan.featured .pid { color: var(--on-ink-3); }
.plan .badge { font-family: var(--font-mono); font-size: 9px; letter-spacing: .16em; text-transform: uppercase; background: var(--acid); color: var(--ink); padding: 4px 8px; }
.plan .pname { font-family: var(--font-display); font-weight: 700; font-size: 34px; margin-top: 18px; }
.plan .psub { margin-top: 6px; color: var(--ink-3); }
.plan.featured .psub { color: var(--on-ink-3); }
.plan .price { display: flex; align-items: baseline; gap: 6px; margin-top: 26px; }
.plan .price .cur { font-family: var(--font-mono); font-size: 16px; color: var(--ink-3); }
.plan.featured .price .cur { color: var(--on-ink-2); }
.plan .price .amt { font-family: var(--font-display); font-weight: 800; font-size: 56px; line-height: 1; letter-spacing: -.02em; }
.plan .price .amt.todo { font-size: 40px; color: var(--acid-dim); }
.plan .prule { height: 1px; background: var(--hair); margin: 24px 0; }
.plan.featured .prule { background: var(--on-ink-line); }
.plan ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.plan li { display: flex; gap: 10px; font-family: var(--font-mono); font-size: 12px; line-height: 1.5; color: var(--ink-2); }
.plan.featured li { color: var(--on-ink-2); }
.plan li .arr { color: var(--acid-dim); }
.plan .pcta { margin-top: 28px; }
.price-note { font-family: var(--font-mono); font-size: 11px; letter-spacing: .04em; color: var(--ink-3); margin-top: 18px; text-align: center; }

/* ============================================================================
   CTA BAND
   ========================================================================== */
.cta-band { padding: 110px 0; text-align: center; }
.cta-band .lab { margin-bottom: 26px; }
.cta-band h2 {
  font-family: var(--font-display); font-weight: 800; font-size: clamp(48px, 9vw, 140px);
  line-height: .9; letter-spacing: -.02em; margin: 0;
}
.cta-band h2 .dotacid { color: var(--acid-dim); }
.cta-band p { font-family: var(--font-mono); font-size: 13px; letter-spacing: .04em; color: var(--ink-2); max-width: 460px; margin: 24px auto 0; line-height: 1.7; }
.cta-band .ctas { margin-top: 34px; display: flex; gap: 14px; justify-content: center; }

/* full-bleed acid-green finale variant */
.cta-band.is-acid { background: var(--acid); }
.cta-band.is-acid .lab { color: var(--ink); }
.cta-band.is-acid h2 .dotacid { color: var(--ink); }
.cta-band.is-acid p { color: var(--ink); }
.cta-band.is-acid .btn--solid:hover { background: var(--paper); color: var(--ink); border-color: var(--paper); }

/* ============================================================================
   FOOTER
   ========================================================================== */
.footer { background: var(--ink); color: var(--on-ink); }
.footer-inner { padding-top: 72px; padding-bottom: 32px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; align-items: start; }
.footer .wm-text { color: var(--on-ink); }
.footer .blurb { font-family: var(--font-mono); font-size: 12px; line-height: 1.7; color: var(--on-ink-2); max-width: 340px; margin-top: 20px; }
.footer-col .lab { color: var(--on-ink-3); margin-bottom: 18px; display: block; }
.footer-col .links { display: flex; flex-direction: column; gap: 12px; }
.footer-col .links a { font-family: var(--font-mono); font-size: 12px; letter-spacing: .04em; color: var(--on-ink-2); cursor: pointer; }
.footer-col .links a:hover { color: var(--acid); }
.footer-base {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  margin-top: 64px; padding-top: 22px; border-top: 1px solid var(--on-ink-line);
}
.footer-base span { font-family: var(--font-mono); font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: var(--on-ink-3); }
.footer-base img { filter: invert(1); height: 26px; }

/* ============================================================================
   APPLY MODAL
   ========================================================================== */
.modal-scrim {
  position: fixed; inset: 0; z-index: 90; background: rgba(13,15,14,.42);
  backdrop-filter: blur(3px); display: none; align-items: flex-start; justify-content: center;
  padding: 6vh 20px; overflow-y: auto;
}
.modal-scrim.open { display: flex; }
.modal {
  width: min(560px, 100%); background: var(--paper); border: 1px solid var(--ink);
  box-shadow: var(--shadow-soft);
}
.modal-head { display: flex; justify-content: space-between; align-items: center; padding: 16px 20px; border-bottom: 1px solid var(--hair); }
.modal-head .l { display: flex; align-items: center; gap: 10px; }
.modal-close { background: none; border: none; font-family: var(--font-mono); font-size: 18px; color: var(--ink-3); }
.stepper { display: flex; border-bottom: 1px solid var(--hair); }
.step { flex: 1; padding: 12px 16px; border-right: 1px solid var(--hair); }
.step:last-child { border-right: none; }
.step.active { background: var(--paper-2); }
.step .row { display: flex; gap: 8px; align-items: center; }
.step .num {
  width: 18px; height: 18px; border-radius: var(--r-pill); border: 1px solid var(--ink);
  display: inline-flex; align-items: center; justify-content: center; font-size: 10px;
  font-family: var(--font-mono);
}
.step.done .num { background: var(--acid); }
.modal-body { padding: 26px 22px; }
.modal-pane { display: none; flex-direction: column; gap: 18px; }
.modal-pane.active { display: flex; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field input, .field textarea {
  font-family: var(--font-mono); font-size: 13px; padding: 11px 12px;
  border: 1px solid var(--ink); background: var(--paper); color: var(--ink); resize: vertical;
}
.modal-pane.submit { text-align: center; padding: 14px 0; }
.modal-pane.submit h3 { font-family: var(--font-display); font-weight: 700; font-size: 30px; margin: 0; }
.modal-pane.submit p { font-family: var(--font-mono); font-size: 12px; line-height: 1.7; color: var(--ink-2); max-width: 360px; margin: 14px auto 0; }
.modal-foot { display: flex; justify-content: space-between; gap: 12px; padding: 16px 22px; border-top: 1px solid var(--hair); }

/* ============================================================================
   OFFER STACK + PROOF + FAQ  (CCMB copy-structure sections, PAB design language)
   ========================================================================== */
.stat .n.todo { color: var(--acid-dim); }

.offer-stack { list-style: none; padding: 0; margin: 0 0 26px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px 40px; }
.offer-stack li { display: flex; gap: 10px; font-family: var(--font-mono); font-size: 13px; line-height: 1.5; color: var(--ink-2); }
.offer-stack li .arr { color: var(--acid-dim); }
.offer-scarcity { font-family: var(--font-mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-3); margin: 0 0 34px; }

.faq { border-top: 1px solid var(--ink); max-width: 880px; margin: 0 auto; }
.faq details { border-bottom: 1px solid var(--hair); }
.faq summary { list-style: none; cursor: pointer; padding: 22px 4px; display: flex; justify-content: space-between; gap: 24px; align-items: center; font-family: var(--font-sans); font-size: 17px; color: var(--ink); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-family: var(--font-mono); font-size: 20px; color: var(--ink-3); transition: transform var(--dur-2) var(--ease); }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .a { padding: 0 4px 26px; max-width: 680px; }
.faq .a p { font-family: var(--font-sans); font-size: 15px; line-height: 1.65; color: var(--ink-2); margin: 0; }

@media (max-width: 720px) {
  .offer-stack { grid-template-columns: 1fr; }
}

/* ============================================================================
   REVEAL + RESPONSIVE
   ========================================================================== */
@keyframes rise { from { transform: translateY(18px); opacity: 0; } to { transform: none; opacity: 1; } }
.rise { animation: rise .55s var(--ease) both; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .rise { animation: none; }
  .mq-track { animation: none !important; }
}

@media (max-width: 1000px) {
  .hero-grid { grid-template-columns: 1fr; min-height: 0; }
  .rail-l { display: none; }
  .hero-main { border-right: none; padding: 26px 0; }
  .hero-wall { margin-left: 0; }
  .hero-box { padding: 4px 0 22px; }
  .hero-box .slot.statue { min-height: 300px; height: 300px; }
  .manifesto-grid { grid-template-columns: 1fr; gap: 32px; }
  .build-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 720px) {
  :root { --gutter: 18px; }
  .nav-links { display: none; }
  .cohort-flag { display: none; }
  .pillars { grid-template-columns: repeat(2, 1fr); }
  .pillar:nth-child(2) { border-right: none; }
  .pillar:nth-child(1), .pillar:nth-child(2) { border-bottom: 1px solid var(--hair); }
  .plans { grid-template-columns: 1fr; }
  .plan { border-bottom: 1px solid var(--hair); }
  .build-grid { grid-template-columns: 1fr; }
  .sec { padding: 64px 0; }
  .loop-head { grid-template-columns: 56px 1fr auto; gap: 14px; }
  .loop-body { padding-left: 18px; }
  .footer-base { flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* ============================================================================
   PRIVATE-PREVIEW ACCESS GATE
   ========================================================================== */
#gate { position: fixed; inset: 0; z-index: 9999; background: var(--paper); display: flex; align-items: center; justify-content: center; }
#gate.hide { display: none; }
#gate .gate-card { display: flex; flex-direction: column; gap: 14px; width: min(380px, 86vw); padding: 30px; border: 1.5px solid var(--ink); box-shadow: 8px 8px 0 var(--ink); }
#gate input { font-family: var(--font-mono); font-size: 14px; padding: 14px; border: 1.5px solid var(--ink); background: var(--paper); color: var(--ink); outline: none; }
#gate input:focus { outline: 2px solid var(--acid); outline-offset: 1px; }
#gate .btn { justify-content: center; }

/* ============================================================================
   REAL-OFFER REBUILD — components added for the full lander
   (live Slack section, Hermes features, tech stack, sessions, bonuses,
    schedule calendar, value stack, price reveal, guarantee)
   ========================================================================== */

/* ---- shared: tick list + arrows ---- */
.tick-list { list-style: none; padding: 0; margin: 22px 0 0; display: flex; flex-direction: column; gap: 12px; }
.tick-list li { display: flex; gap: 10px; font-family: var(--font-mono); font-size: 13px; line-height: 1.5; color: var(--ink-2); }
.tick-list li .arr { color: var(--acid-dim); }

/* ---- LIVE (Slack) section ---- */
.live-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 56px; align-items: center; }
.live-copy .body { font-family: var(--font-sans); font-size: 16px; line-height: 1.65; color: var(--ink-2); margin: 0; }

/* Slack panel (ported from pab-waitlist) */
.slack { background: #fff; border: 1px solid var(--line); border-radius: 12px; box-shadow: 0 34px 64px -32px rgba(0,0,0,.4); overflow: hidden; font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, Arial, sans-serif; }
.slack-head { display: flex; align-items: center; gap: 10px; padding: 9px 12px; background: #3f0e40; position: relative; }
.slack-head .dots { display: flex; gap: 7px; }
.slack-head .d { width: 12px; height: 12px; border-radius: 50%; }
.slack-head .d.r { background: #ff5f57; } .slack-head .d.y { background: #febc2e; } .slack-head .d.g { background: #28c840; }
.slack-head .tb { display: flex; align-items: center; gap: 11px; color: rgba(255,255,255,.5); }
.slack-head .tb svg { width: 16px; height: 16px; display: block; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.slack-head .search { flex: 1; display: flex; align-items: center; gap: 8px; background: rgba(0,0,0,.22); border: 1px solid rgba(255,255,255,.12); border-radius: 7px; padding: 6px 12px; color: rgba(255,255,255,.5); font-size: 12.5px; }
.slack-head .search svg { width: 14px; height: 14px; flex: none; }
.slack-head .me { width: 22px; height: 22px; border-radius: 5px; object-fit: cover; border: 1.5px solid rgba(255,255,255,.5); }
.slack-head .chev { color: rgba(255,255,255,.5); font-size: 10px; }
.slack-head .help { width: 20px; height: 20px; border: 1.5px solid rgba(255,255,255,.4); border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; color: rgba(255,255,255,.55); }
.slack-body { height: 430px; overflow: hidden; padding: 12px 14px; background: #fff; }

.msg { display: flex; gap: 11px; padding: 8px 8px; border-radius: 8px; }
.msg.agent { background: var(--acid-wash); }
.msg .av { width: 38px; height: 38px; border-radius: 9px; flex: none; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.msg .av img { width: 100%; height: 100%; object-fit: cover; }
.msg .body { min-width: 0; }
.msg .h { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-bottom: 1px; }
.msg .name { font-weight: 700; font-size: 14px; color: #1d1c1d; }
.msg .badge { font-family: var(--font-mono); font-size: 8px; letter-spacing: .1em; text-transform: uppercase; background: #e6e6e6; color: #616061; padding: 2px 6px; border-radius: 3px; }
.msg.agent .badge { background: var(--acid); color: var(--ink); }
.msg .badge.auto { background: #fde9c8; color: #9a6a12; }
.msg .ts { font-size: 11px; color: #9b9b9b; }
.msg .text { font-size: 14px; line-height: 1.46; color: #1d1c1d; }
.msg .text .at { color: #1264a3; background: #e8f5fb; border-radius: 3px; padding: 0 2px; }
.msg .text .ok, .msg .tcall .ok { color: #2a7d2a; font-weight: 700; }
.msg .extras { margin: 2px 0 3px; }
.msg .tools { font-family: var(--font-mono); font-size: 11.5px; color: #8a8a8a; line-height: 1.75; }
.msg .tcall { white-space: pre-wrap; }
.msg .text .stream-cur { display: inline-block; width: 7px; height: 14px; background: #1d1c1d; vertical-align: -2px; margin-left: 1px; animation: blink 1s steps(1) infinite; }
@keyframes blink { 50% { opacity: 0; } }
.msg .name.working {
  color: #e0392a;
  background: linear-gradient(90deg, #e0392a 0%, #ff9270 50%, #e0392a 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  animation: nameshimmer 1.15s linear infinite;
}
@keyframes nameshimmer { from { background-position: 200% 0; } to { background-position: -200% 0; } }
.msg .appicons { display: flex; align-items: center; gap: 6px; margin-top: 3px; }
.msg .appicons .lbl { font-family: var(--font-mono); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; color: #9b9b9b; margin-right: 2px; }
.msg .ai { width: 21px; height: 21px; border-radius: 6px; display: inline-flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 800; font-size: 11px; color: #fff; box-shadow: 0 1px 2px rgba(0,0,0,.2); font-synthesis: none; }
.typing { display: inline-flex; gap: 4px; align-items: center; padding: 3px 0; }
.typing .dot { width: 6px; height: 6px; border-radius: 50%; background: #b3b3b3; animation: tdot 1.1s infinite; }
.typing .dot:nth-child(2) { animation-delay: .15s; }
.typing .dot:nth-child(3) { animation-delay: .3s; }
@keyframes tdot { 0%,60%,100% { opacity: .3; transform: translateY(0); } 30% { opacity: 1; transform: translateY(-3px); } }
.slack-div { display: flex; align-items: center; gap: 10px; margin: 16px 2px 8px; }
.slack-div .ln { flex: 1; height: 1px; background: #e8e8e8; }
.slack-div .t { font-family: var(--font-mono); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: #9b9b9b; white-space: nowrap; }

/* ---- HERMES feature grid (on dark) ---- */
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--on-ink-line); border-left: 1px solid var(--on-ink-line); }
.feat { border-right: 1px solid var(--on-ink-line); border-bottom: 1px solid var(--on-ink-line); padding: 26px 24px; }
.feat .fk { font-family: var(--font-mono); font-size: 11px; letter-spacing: .08em; color: var(--acid); }
.feat .ft { font-family: var(--font-display); font-weight: 700; font-size: 24px; margin-top: 14px; color: var(--on-ink); }
.feat p { font-family: var(--font-mono); font-size: 12px; line-height: 1.6; color: var(--on-ink-2); margin: 10px 0 0; }

/* ---- BUSINESS-IN-A-BOX stack box ---- */
.stack-box { display: grid; grid-template-columns: 1.1fr 1fr; gap: 0; border: 1px solid var(--ink); }
.stack-lead { padding: 34px 32px; border-right: 1px solid var(--hair); }
.stack-lead .lab-k { display: block; margin-bottom: 16px; }
.stack-lead p { font-family: var(--font-sans); font-size: 16px; line-height: 1.6; color: var(--ink-2); margin: 0 0 14px; }
.stack-lead .stack-req { font-family: var(--font-mono); font-size: 12px; letter-spacing: .04em; text-transform: uppercase; color: var(--ink); background: var(--acid-wash); padding: 12px 14px; border-left: 2px solid var(--acid); }
.stack-list { list-style: none; margin: 0; padding: 34px 32px; display: flex; flex-direction: column; gap: 18px; background: var(--paper-2); }
.stack-list li { display: flex; gap: 12px; font-family: var(--font-mono); font-size: 13px; line-height: 1.5; color: var(--ink-2); }
.stack-list li .arr { color: var(--acid-dim); }

/* ---- SESSION OUTLINE cards (on dark) ---- */
.sess-grid { display: grid; grid-template-columns: 1fr; gap: 14px; max-width: 760px; }
.sess { border: 1px solid var(--on-ink-line); padding: 24px 22px; display: flex; flex-direction: column; }
.sess-top { display: flex; align-items: baseline; justify-content: space-between; }
.sess .sn { font-family: var(--font-display); font-weight: 800; font-size: 30px; color: var(--acid); line-height: 1; font-synthesis: none; }
.sess .sd { font-family: var(--font-mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--on-ink-3); }
.sess h3 { font-family: var(--font-display); font-weight: 700; font-size: 22px; line-height: 1.1; margin: 16px 0 12px; color: var(--on-ink); }
.sess p { font-family: var(--font-mono); font-size: 12px; line-height: 1.6; color: var(--on-ink-2); margin: 0; }

/* ---- BONUSES ---- */
.bonus-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.bonus-grid.two { grid-template-columns: repeat(2, 1fr); }
.bonus { border: 1px solid var(--hair); padding: 24px 22px; display: flex; flex-direction: column; background: var(--paper); }
.bonus.is-expire { border-color: var(--ink); border-left: 3px solid var(--acid-dim); background: var(--paper-2); }
.bonus .brow { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.bonus .bval { font-family: var(--font-display); font-weight: 800; font-size: 18px; color: var(--ink); font-synthesis: none; }
.bonus h3 { font-family: var(--font-display); font-weight: 700; font-size: 22px; line-height: 1.08; margin: 0 0 12px; }
.bonus p { font-family: var(--font-mono); font-size: 12px; line-height: 1.6; color: var(--ink-3); margin: 0; }
.expire-head { display: flex; align-items: center; gap: 16px; margin: 48px 0 22px; flex-wrap: wrap; }
.expire-tag { font-family: var(--font-mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink); background: var(--acid); padding: 6px 11px; }

/* ---- SCHEDULE calendar ---- */
.sched-sub { font-family: var(--font-sans); font-size: 16px; line-height: 1.6; color: var(--ink-2); max-width: 640px; margin: 0 0 30px; }
.cal { max-width: 780px; }
.cal-head { display: grid; grid-template-columns: repeat(7, 1fr); gap: 7px; margin-bottom: 8px; }
.cal-head span { font-family: var(--font-mono); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-4); padding-left: 2px; }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 7px; }
.cal-d { border: 1px solid var(--hair); min-height: 82px; padding: 9px 8px 11px; display: flex; flex-direction: column; gap: 3px; background: var(--paper); position: relative; }
.cal-d .dnum { font-family: var(--font-display); font-weight: 700; font-size: 23px; line-height: 1; color: var(--ink); font-synthesis: none; }
.cal-d .mon { font-family: var(--font-mono); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-4); position: absolute; top: 9px; right: 8px; }
.cal-d .dses { margin-top: auto; font-family: var(--font-mono); font-size: 11px; letter-spacing: .08em; color: var(--ink-3); }
.cal-d.live { background: var(--acid); border-color: var(--ink); }
.cal-d.live .dses { color: var(--ink); font-weight: 700; }
.cal-d.live .mon { color: var(--ink-2); }
.cal-d.wknd { opacity: .4; background: transparent; }
.sched-close { font-family: var(--font-mono); font-size: 13px; letter-spacing: .04em; color: var(--ink); margin: 26px 0 0; }
.sched-close .dotacid { color: var(--acid-dim); }

/* ---- VALUE STACK + PRICE REVEAL (on dark) ---- */
.value-stack { border-top: 1px solid var(--on-ink-line); max-width: 820px; }
.vs-row { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 15px 4px; border-bottom: 1px solid var(--on-ink-line); }
.vs-row .vs-item { font-family: var(--font-mono); font-size: 13.5px; color: var(--on-ink-2); }
.vs-row .vs-val { font-family: var(--font-mono); font-size: 13.5px; color: var(--on-ink); white-space: nowrap; }
.vs-row .vs-flag { font-family: var(--font-mono); font-size: 9px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink); background: var(--acid-dim); padding: 2px 6px; margin-left: 6px; }
.vs-row.is-expire .vs-item { color: var(--on-ink); }
.vs-row.total { border-bottom: none; border-top: 2px solid var(--acid); margin-top: 4px; padding-top: 18px; }
.vs-row.total .vs-item { font-family: var(--font-display); font-weight: 700; font-size: 22px; color: var(--on-ink); font-synthesis: none; }
.vs-row.total .vs-val { font-family: var(--font-display); font-weight: 800; font-size: 24px; color: var(--acid); font-synthesis: none; }

.price-card { max-width: 480px; margin: 0 auto; border: 1.5px solid var(--on-ink-line); background: rgba(241,238,234,0.02); }
.price-card .value-stack { max-width: none; border-top: none; padding: 6px 26px 0; }
.price-card .vs-row { padding: 12px 0; }
.price-card .vs-row .vs-item, .price-card .vs-row .vs-val { font-size: 12px; }
.price-card .vs-row.total .vs-item { font-size: 19px; }
.price-card .vs-row.total .vs-val { font-size: 21px; }
.price-reveal { display: grid; grid-template-columns: 1fr; gap: 18px; margin: 0; border-top: 1px solid var(--on-ink-line); padding: 26px; text-align: center; background: rgba(241,238,234,0.03); }
.price-reveal .pr-l { display: flex; flex-direction: column; align-items: center; }
.price-reveal .pr-amt { font-family: var(--font-display); font-weight: 800; font-size: 76px; line-height: .9; letter-spacing: -.02em; color: var(--acid); margin-top: 6px; font-synthesis: none; }
.price-reveal .pr-sub { font-family: var(--font-mono); font-size: 13px; color: var(--on-ink-2); margin-top: 8px; }
.price-reveal .pr-note { font-family: var(--font-mono); font-size: 11px; line-height: 1.6; color: var(--on-ink-3); margin: 16px 0 0; }

/* ---- GUARANTEE ---- */
.guarantee { display: grid; grid-template-columns: 80px 1fr; gap: 28px; align-items: start; border: 1.5px solid var(--ink); padding: 40px 36px; box-shadow: 8px 8px 0 var(--ink); }
.guarantee .g-mark { padding-top: 6px; }
.guarantee h2 { font-family: var(--font-display); font-weight: 700; font-size: clamp(28px, 3.4vw, 40px); line-height: 1.05; margin: 16px 0 14px; }
.guarantee p { font-family: var(--font-sans); font-size: 16px; line-height: 1.6; color: var(--ink-2); margin: 0 0 24px; max-width: 640px; }

/* ---- CTA band closing line ---- */
.cta-band .cta-close { font-family: var(--font-mono); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; margin-top: 18px; }

/* ---- responsive ---- */
@media (max-width: 1000px) {
  .live-grid { grid-template-columns: 1fr; gap: 30px; }
  .feat-grid { grid-template-columns: repeat(2, 1fr); }
  .stack-box { grid-template-columns: 1fr; }
  .stack-lead { border-right: none; border-bottom: 1px solid var(--hair); }
  .sess-grid { grid-template-columns: repeat(2, 1fr); }
  .bonus-grid { grid-template-columns: 1fr; }
  .bonus-grid.two { grid-template-columns: 1fr; }
  .price-reveal { grid-template-columns: 1fr; gap: 24px; }
}
@media (max-width: 720px) {
  .cal { grid-template-columns: 1fr; }
  .feat-grid { grid-template-columns: 1fr; }
  .sess-grid { grid-template-columns: 1fr; }
  .guarantee { grid-template-columns: 1fr; padding: 28px 22px; box-shadow: 5px 5px 0 var(--ink); }
  .guarantee .g-mark { display: none; }
  .vs-row .vs-item { font-size: 12px; }
  .price-reveal .pr-amt { font-size: 72px; }
}

/* meta gap outside sec-head (guarantee block) */
.guarantee .meta { display: flex; align-items: center; gap: 14px; }

/* ============================================================================
   CHECKOUT / ORDER PAGE (checkout.html)
   ========================================================================== */
.co-body { background: var(--paper); }

.co-bar { border-bottom: 1px solid var(--hair); background: var(--paper); position: sticky; top: 0; z-index: 40; }
.co-bar-inner { height: 60px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.co-bar .wm-text { font-size: 18px; }
.co-secure { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3); display: inline-flex; align-items: center; gap: 8px; }

.co-hero { border-bottom: 1px solid var(--hair); padding: 52px 0 44px; }
.co-badge { font-family: var(--font-mono); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--ink); background: var(--acid); padding: 6px 12px; display: inline-block; }
.co-h1 { font-family: var(--font-display); font-weight: 800; font-size: clamp(34px, 5.4vw, 68px); line-height: 1.0; letter-spacing: -.015em; margin: 22px 0 0; max-width: 14ch; text-wrap: balance; font-synthesis: none; }
.co-h1-sub { color: var(--acid-dim); display: block; font-size: .62em; }
.co-lede { font-family: var(--font-sans); font-size: 17px; line-height: 1.6; color: var(--ink-2); max-width: 620px; margin: 22px 0 0; }

/* countdown (ported) */
.countdown { margin-top: 30px; }
.countdown .lbl { font-family: var(--font-mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 12px; }
.cd-row { display: flex; gap: 10px; }
.cd-box { border: 1px solid var(--ink); padding: 12px 0 9px; width: 76px; text-align: center; background: var(--paper); }
.cd-box .num { font-family: var(--font-display); font-weight: 700; font-size: 38px; line-height: 1; color: var(--ink); font-synthesis: none; }
.cd-box .u { font-family: var(--font-mono); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3); margin-top: 7px; }

/* main grid — value stack left (wide), order card right (sticky) */
.co-main { display: grid; grid-template-columns: 1fr 420px; gap: 56px; align-items: start; padding-top: 56px; padding-bottom: 80px; }
.co-detail { grid-column: 1; }
.co-order { grid-column: 2; }

.co-sec-head { display: flex; align-items: center; gap: 14px; padding-bottom: 16px; border-bottom: 1px solid var(--ink); margin-bottom: 26px; }
.co-sec-head .idx { font-family: var(--font-mono); font-size: 11px; color: var(--ink); }

/* value stack checklist */
.co-stack { list-style: none; margin: 0 0 40px; padding: 0; display: flex; flex-direction: column; }
.co-stack li { display: grid; grid-template-columns: 26px 1fr; gap: 14px; padding: 20px 0; border-bottom: 1px solid var(--hair); }
.co-stack .ck { font-size: 15px; color: var(--ink); background: var(--acid); width: 24px; height: 24px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; }
.co-stack li.is-bonus .ck { background: var(--ink); color: var(--acid); }
.co-stack .ct { font-family: var(--font-display); font-weight: 700; font-size: 21px; line-height: 1.12; color: var(--ink); font-synthesis: none; }
.co-stack .cv { font-family: var(--font-mono); font-size: 11px; letter-spacing: .04em; text-transform: uppercase; color: var(--ink-3); white-space: nowrap; margin-left: 6px; }
.co-stack p { font-family: var(--font-sans); font-size: 14.5px; line-height: 1.55; color: var(--ink-2); margin: 8px 0 0; }

/* guarantee strip */
.co-guarantee { display: grid; grid-template-columns: 44px 1fr; gap: 18px; align-items: start; border: 1.5px solid var(--ink); padding: 24px 24px; margin: 8px 0 48px; box-shadow: 6px 6px 0 var(--ink); }
.co-guarantee .cgt { font-family: var(--font-display); font-weight: 700; font-size: 22px; margin-bottom: 8px; font-synthesis: none; }
.co-guarantee p { font-family: var(--font-sans); font-size: 14.5px; line-height: 1.55; color: var(--ink-2); margin: 0; }

/* order card */
.co-order { position: sticky; top: 80px; }
.co-card { border: 1.5px solid var(--ink); background: var(--paper); box-shadow: var(--shadow-soft); }
.co-card-head { display: flex; flex-direction: column; gap: 8px; padding: 20px 22px 16px; border-bottom: 1px solid var(--hair); }
.co-spots { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3); display: inline-flex; align-items: center; gap: 8px; }
.co-price { padding: 20px 22px; border-bottom: 1px solid var(--hair); background: var(--paper-2); }
.co-price-row { display: flex; justify-content: space-between; align-items: baseline; }
.co-pv-lab { font-family: var(--font-mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3); }
.co-pv-strike { font-family: var(--font-mono); font-size: 15px; color: var(--ink-3); text-decoration: line-through; }
.co-today { display: flex; align-items: baseline; gap: 12px; margin-top: 10px; flex-wrap: wrap; }
.co-today-lab { font-family: var(--font-mono); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--ink); }
.co-today-amt { font-family: var(--font-display); font-weight: 800; font-size: 54px; line-height: 1; letter-spacing: -.02em; color: var(--ink); font-synthesis: none; }
.co-today-or { font-family: var(--font-mono); font-size: 11px; color: var(--ink-3); }
.co-embed { padding: 8px 14px 10px; min-height: 120px; }
.co-embed sc-checkout { display: block; width: 100%; }
.co-trust { display: flex; flex-direction: column; gap: 7px; padding: 6px 22px 22px; }
.co-trust span { font-family: var(--font-mono); font-size: 11px; letter-spacing: .03em; color: var(--ink-2); }

.co-foot { border-top: 1px solid var(--hair); padding: 26px 0; }
.co-foot .shell { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.co-foot span { font-family: var(--font-mono); font-size: 11px; letter-spacing: .04em; color: var(--ink-3); }

@media (max-width: 980px) {
  .co-main { grid-template-columns: 1fr; gap: 38px; }
  .co-detail, .co-order { grid-column: auto; }
  .co-order { position: static; order: -1; }   /* checkout first on mobile */
}
@media (max-width: 720px) {
  .cd-box { width: 64px; }
  .cd-box .num { font-size: 30px; }
  .co-stack li { grid-template-columns: 22px 1fr; gap: 12px; }
}

/* ============================================================================
   MOBILE HERO — conversion: headline + subhead + CTA above the fold
   ========================================================================== */
@media (max-width: 720px) {
  .hero-readout { display: none; }              /* reclaim vertical space */
  .hero-main { padding: 18px 0 22px; }
  .hero-main > .lab { margin-bottom: 13px; }
  .hero-wall { font-size: 46px; line-height: .92; }
  .hero-main .sub { font-size: 13.5px; line-height: 1.62; margin-top: 16px; max-width: none; }
  .hero-main .ctas { margin-top: 20px; gap: 10px; }
  .hero-main .ctas .btn { width: 100%; justify-content: center; }
  .hero-box { padding: 6px 0 18px; }
  .hero-box .slot.statue { min-height: 250px; height: 250px; }
}

/* ============================================================================
   DARK MODE — follows the reader's system setting (prefers-color-scheme).
   Flip the neutral ramp (paper -> dark surfaces, ink -> light text), keep acid
   fixed, and re-pin any text that sits ON acid so it stays dark in both themes.
   ========================================================================== */
@media (prefers-color-scheme: dark) {
  :root {
    --paper:       #131417;
    --paper-2:     #1A1C20;
    --paper-3:     #23262B;
    --line:        #34373D;
    --line-strong: #4A4E55;

    --ink:    #F1EEEA;   /* now primary TEXT, not a surface */
    --ink-2:  #C7C4BC;
    --ink-3:  #94928B;
    --ink-4:  #6B6A63;

    --hair:      rgba(241,238,234,0.13);
    --hair-soft: rgba(241,238,234,0.06);
    /* --on-ink*, --acid* stay as-is */
  }

  /* surfaces that used --ink as a dark background must stay dark */
  .dark, .footer, .plan.featured, .slot { background: #0C0D0F; }

  /* text that sits ON acid (or pale-acid) stays dark in every theme */
  .acid, .acid .lab, .acid .idx,
  .cta-band.is-acid, .cta-band.is-acid .lab, .cta-band.is-acid p,
  .cta-band.is-acid h2 .dotacid,
  .cal-d.live .dow, .cal-d.live .dnum, .cal-d.live .dses,
  .expire-tag, .vs-flag, .co-badge, .stack-req,
  .co-stack .ck { color: #0E100C; }
  .acid .manifesto-grid .body { color: #2E3127; }

  /* primary CTA -> acid in dark (contrast + conversion) */
  .btn--solid { background: var(--acid); color: #0E100C; border-color: var(--acid); }
  .btn--solid:hover { background: var(--acid-2); color: #0E100C; }
  .btn:hover, .btn--acid-line:hover { color: #0E100C; }
  ::selection { background: var(--acid); color: #0E100C; }

  /* dark line-art assets need inverting to read on a dark field */
  .frame-corner img, .nav .wordmark img, .rail-l img,
  .pillar .top img, .mq-item img, .guarantee .g-mark img { filter: invert(1); }

  /* offset blocks get an acid edge instead of a vanished dark shadow */
  .guarantee, .co-guarantee { box-shadow: 7px 7px 0 var(--acid-dim); }
}

/* ============================================================================
   ASCII PORTRAIT (Friday) — heymitch ASCII treatment in the hero
   ========================================================================== */
.ascii-stage { position: relative; width: 100%; height: 100%; min-height: 460px; }
.ascii-stage .slot-lab {
  position: absolute; top: 0; left: 0; z-index: 2;
  font-size: 9px; letter-spacing: .22em; text-transform: uppercase; color: var(--ink-3);
}
.ascii-pre {
  position: absolute; inset: 0; margin: 0; padding: 0; background: transparent;
  color: var(--ink); font-family: var(--font-mono); font-weight: 500;
  white-space: pre; overflow: hidden; user-select: none; cursor: default;
  display: flex; align-items: flex-end; justify-content: center; letter-spacing: 0;
}
@media (max-width: 1000px) {
  .ascii-stage { min-height: 340px; }
}

/* ============================================================================
   STACK STATEMENT band + ASCII Friday as section background
   ========================================================================== */
.stack-statement { background: #0D0F0E; padding: 84px 0; }
.stack-statement p {
  font-family: var(--font-display); font-weight: 800; font-style: italic;
  text-transform: uppercase; text-align: right; color: var(--acid);
  font-size: clamp(32px, 5.4vw, 84px); line-height: 1.04; letter-spacing: -.01em;
  margin: 0; font-synthesis: none;
}

/* ASCII Friday living behind the acid "Think Jarvis" section */
.acid { position: relative; }
.acid .sec { position: relative; z-index: 1; }
.ascii-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.ascii-bg .ascii-pre {
  color: rgba(13,15,14,0.18);
  align-items: center; justify-content: flex-end; padding-right: 2%;
}
@media (max-width: 1000px) { .ascii-bg .ascii-pre { color: rgba(13,15,14,0.10); } }

/* ============================================================================
   WHAT TO BUILD — scroll-pinned ASCII agent morph (always-dark stage)
   ========================================================================== */
.wtb { position: relative; height: 360vh; background: #0D0F0E; }
.wtb-sticky { position: sticky; top: 0; height: 100vh; display: flex; align-items: center; overflow: hidden; }
.wtb-sticky { position: -webkit-sticky; }
.wtb-grid { position: relative; z-index: 1; width: 100%; }
.wtb-panel { max-width: 56%; }
.wtb-panel { color: var(--on-ink); }
.wtb-panel .meta { display: flex; gap: 14px; align-items: center; }
.wtb-panel .idx { font-family: var(--font-mono); font-size: 11px; color: var(--acid); }
.wtb-panel .lab { color: var(--on-ink-3); }
.wtb-panel .title { font-family: var(--font-display); font-weight: 700; font-size: clamp(30px, 4vw, 52px); color: var(--on-ink); margin: 16px 0 0; line-height: 1.04; }
.wtb-panel .title .dotacid { color: var(--acid); }
.wtb-intro { font-family: var(--font-mono); font-size: 13px; line-height: 1.7; color: var(--on-ink-2); margin: 16px 0 30px; max-width: 44ch; }
.wtb-agent { border-top: 1px solid var(--on-ink-line); padding-top: 22px; position: relative; }
.wtb-wheel { position: relative; min-height: 400px; perspective: 1100px; overflow: hidden; }
.wtb-card { position: absolute; top: 50%; left: 0; right: 0; display: flex; align-items: baseline; gap: 12px; white-space: nowrap; transform-origin: center center; backface-visibility: hidden; will-change: transform, opacity; }
.wtb-card .an { font-family: var(--font-display); font-weight: 800; font-size: clamp(54px, 8.6vw, 124px); line-height: .92; color: var(--on-ink); font-synthesis: none; }
.wtb-card.focus .an { color: var(--acid); }
.wtb-card .atag { font-family: var(--font-mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--on-ink-3); }
.wtb-agent .wtb-actions { animation: none; }
.wtb-agent .wtb-actions.in li { animation: wtbIn .4s var(--ease) both; }
.wtb-agent .wtb-actions.in li:nth-child(2) { animation-delay: .08s; }
.wtb-agent .wtb-actions.in li:nth-child(3) { animation-delay: .16s; }
.wtb-aname { display: flex; align-items: baseline; gap: 14px; }
.wtb-aname .an { font-family: var(--font-display); font-weight: 800; font-size: clamp(28px, 3.4vw, 46px); color: var(--acid); font-synthesis: none; line-height: 1; }
.wtb-aname .atag { font-family: var(--font-mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--on-ink-3); }
.wtb-actions { list-style: none; margin: 22px 0 0; padding: 0; display: flex; flex-direction: column; gap: 15px; }
.wtb-actions li { display: flex; flex-direction: column; gap: 3px; }
.wtb-actions .call { font-family: var(--font-mono); font-size: 12.5px; color: var(--on-ink-3); }
.wtb-actions .res { font-family: var(--font-mono); font-size: 13px; color: var(--on-ink); }
.wtb-actions .ok { color: var(--acid); font-weight: 700; }
.wtb-actions.in li { animation: wtbIn .42s var(--ease) both; }
.wtb-actions.in li:nth-child(2) { animation-delay: .09s; }
.wtb-actions.in li:nth-child(3) { animation-delay: .18s; }
@keyframes wtbIn { from { opacity: 0; transform: translateX(-10px); } to { opacity: 1; transform: none; } }
.wtb-dots { display: flex; gap: 9px; margin-top: 28px; }
.wtb-dots .wd { width: 9px; height: 9px; border-radius: 50%; background: var(--on-ink-line); transition: background .25s; }
.wtb-dots .wd.on { background: var(--acid); }
.wtb-stage { position: absolute; inset: 0; z-index: 2; pointer-events: none; }
.wtb-pre { color: var(--on-ink); align-items: center; justify-content: center; text-shadow: 0 0 1px #0D0F0E; }
.wtb-stage .slot-lab { position: absolute; top: 0; right: 0; z-index: 2; font-size: 9px; letter-spacing: .22em; text-transform: uppercase; color: var(--on-ink-3); }
@media (max-width: 1000px) {
  .wtb { height: 300vh; }
  .wtb-sticky { align-items: flex-start; padding-top: 56px; }
  .wtb-panel { max-width: 100%; }
  .wtb-intro { margin-bottom: 18px; }
}

/* ============================================================================
   ROUND 2 REWRITE — bigger hero sub, hero rule, Jarvis+Slack, feature icons,
   statement footnote, instructor
   ========================================================================== */
.hero-main .sub { font-size: 17px; line-height: 1.58; max-width: 50ch; }
.hero-main .sub .sub-join { display: block; margin-top: 16px; color: var(--ink); font-weight: 500; }
.hero-rule { border-top: 1px solid var(--ink); margin-top: 6px; }

/* Jarvis section now hosts the live Slack demo */
.jarvis-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 54px; align-items: center; }
.jarvis-copy .body { font-family: var(--font-sans); font-size: 18px; line-height: 1.6; color: var(--ink-2); margin: 0; }
.jarvis-note { font-family: var(--font-mono); font-size: 12px; line-height: 1.65; color: var(--ink-3); margin: 22px 0 0; max-width: 44ch; }

/* Hermes feature icons — monoline, acid stroke, cassette-futurism */
.feat .ficon { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border: 1.5px solid var(--acid); border-radius: 9px; color: var(--acid); }
.feat .ficon svg { width: 23px; height: 23px; display: block; }
.feat .ft { margin-top: 16px; }

/* statement band footnote */
.stmt-ast { color: var(--acid); }
.stack-statement .shell { position: relative; }
.stmt-foot { display: block; text-align: right; font-family: var(--font-mono); font-size: 12px; font-style: italic; color: rgba(241,238,234,0.45); margin-top: 16px; }

/* instructor */
.instr-grid { display: grid; grid-template-columns: 280px 1fr; gap: 48px; align-items: center; }
.instr-photo { position: relative; }
.instr-photo img { width: 100%; display: block; border: 1px solid var(--on-ink-line); }
.instr-photo .slot-lab { position: absolute; top: 10px; left: 12px; font-size: 9px; letter-spacing: .22em; text-transform: uppercase; color: var(--on-ink-3); }
.instr-body p { font-family: var(--font-sans); font-size: 18px; line-height: 1.62; color: var(--on-ink-2); margin: 0 0 18px; max-width: 54ch; }
.instr-body p:last-child { margin-bottom: 0; }

@media (max-width: 1000px) {
  .jarvis-grid { grid-template-columns: 1fr; gap: 30px; }
  .instr-grid { grid-template-columns: 1fr; gap: 26px; }
  .instr-photo { max-width: 240px; }
}

/* Slack slash-command chip */
.msg .text .slash { font-family: var(--font-mono); font-size: 13px; background: #e8eef5; color: #1264a3; border-radius: 4px; padding: 1px 7px; }

/* ============================================================================
   ROUND 3 — acid Jarvis w/ heading+copy split & big Slack, footer disclaimer,
   and body text scaled up ~60%
   ========================================================================== */
.jarvis-head { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: end; padding-bottom: 24px; border-bottom: 1px solid var(--hair); margin-bottom: 30px; }
.jarvis-head .title { font-family: var(--font-display); font-weight: 700; font-size: clamp(36px, 5vw, 70px); line-height: 1.0; letter-spacing: -.01em; margin: 14px 0 0; }
.jarvis-head .title em { font-style: italic; }
.jarvis-head .body { font-family: var(--font-sans); font-size: 23px; line-height: 1.5; color: var(--ink-2); margin: 0 0 6px; }
.slack--big { width: 100%; }
.slack--big .slack-body { height: 600px; }

/* footer earnings disclaimer (replaces enroll CTA) */
.footer .disclaimer { font-family: var(--font-mono); font-size: 12px; line-height: 1.7; color: var(--on-ink-3); max-width: 440px; }
.footer .disclaimer .lab { display: block; color: var(--on-ink-2); margin-bottom: 10px; }

/* ---- body text +~60% across feature/benefit/content copy ---- */
.manifesto-grid .body { font-size: 25px; line-height: 1.55; }
.instr-body p { font-size: 25px; }
.stack-lead p { font-size: 22px; }
.sched-sub { font-size: 21px; }
.guarantee p { font-size: 22px; }
.cta-band p { font-size: 19px; }
.sess p { font-size: 16px; }
.bonus p { font-size: 15.5px; }
.feat p { font-size: 15px; }
.faq summary { font-size: 21px; }
.faq .a p { font-size: 18px; }
.hero-main .sub { font-size: 19px; }
.co-stack p { font-size: 15px; }
.co-lede { font-size: 20px; }

@media (prefers-color-scheme: dark) {
  .acid .jarvis-head .title { color: #0E100C; }
  .acid .jarvis-head .body { color: #2E3127; }
  .acid .idx, .acid .lab { color: #0E100C; }
}
@media (max-width: 1000px) {
  .jarvis-head { grid-template-columns: 1fr; gap: 18px; align-items: start; }
  .slack--big .slack-body { height: 460px; }
}

/* agents "working" red glint (replaces the streaming shimmer) */
.msg.agent .av { position: relative; }
.msg.agent .av::after { content: ''; position: absolute; inset: -2px; border-radius: 11px; box-shadow: 0 0 9px 1px rgba(224,57,42,.6); animation: agentglint 1.9s ease-in-out infinite; pointer-events: none; }
@keyframes agentglint { 0%, 100% { opacity: .22; } 50% { opacity: .85; } }
@media (prefers-reduced-motion: reduce) { .msg.agent .av::after { animation: none; opacity: .5; } }

/* session floppies — disk left, copy right, single stack */
.sess-grid { max-width: 900px; margin: 0 auto; }
.sess { display: grid; grid-template-columns: 193px 1fr; gap: 32px; align-items: center; padding: 22px; }
.sess-floppy { width: 100%; height: auto; display: block; }
.sess-body { min-width: 0; }
.sess-body h3 { margin: 12px 0 10px; }
@media (max-width: 720px) { .sess { grid-template-columns: 118px 1fr; gap: 18px; } }

/* Jarvis section pinned: feed scroll tracks the user's scroll */
.jarvis-scroll { position: relative; height: 200vh; }
.jarvis-sticky { position: sticky; top: 0; height: 100vh; display: flex; align-items: center; overflow: hidden; }
.jarvis-sticky .sec { width: 100%; padding: 32px 0; }
.jarvis-head { margin-bottom: 22px; }
.slack--big .slack-body { height: min(600px, 56vh); }
@media (max-width: 1000px) {
  .jarvis-scroll { height: 200vh; }
  .slack--big .slack-body { height: min(460px, 54vh); }
}

/* ---- red "working" glint on agent avatars (box-shadow so the avatar's overflow doesn't clip it) ---- */
.msg.agent .av::after { content: none; }
.msg.agent .av { animation: agentglint 1.8s ease-in-out infinite; }
@keyframes agentglint {
  0%, 100% { box-shadow: 0 0 6px 1px rgba(224,57,42,.30); }
  50%      { box-shadow: 0 0 16px 4px rgba(224,57,42,.90); }
}
@media (prefers-reduced-motion: reduce) { .msg.agent .av { animation: none; box-shadow: 0 0 10px 2px rgba(224,57,42,.6); } }

/* ---- slack text ~1.9x bigger (big panel) ---- */
.slack .msg { gap: 16px; padding: 12px 12px; }
.slack .msg .av { width: 60px; height: 60px; border-radius: 13px; }
.slack .msg .name { font-size: 25px; }
.slack .msg .text { font-size: 24px; line-height: 1.42; }
.slack .msg .text .at { padding: 0 4px; }
.slack .msg .ts { font-size: 16px; }
.slack .msg .badge { font-size: 12.5px; padding: 3px 8px; }
.slack .msg .tools, .slack .msg .tcall { font-size: 19px; line-height: 1.7; }
.slack .msg .text .slash { font-size: 21px; padding: 2px 9px; }
.slack .msg .appicons .lbl { font-size: 15px; }
.slack .msg .ai { width: 31px; height: 31px; font-size: 16px; border-radius: 9px; }
.slack .slack-div .t { font-size: 15px; }
.slack-head .search { font-size: 18px; }
.slack .msg .text .stream-cur { width: 10px; height: 22px; }

/* ---- the agent USERNAME glints red while working (not the avatar) ---- */
.msg.agent .av { animation: none !important; box-shadow: none !important; }
.msg.agent .name {
  color: #e0392a;
  background: linear-gradient(90deg, #e0392a 0%, #ff9270 50%, #e0392a 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  animation: nameshimmer 1.3s linear infinite;
}
@keyframes nameshimmer { from { background-position: 200% 0; } to { background-position: -200% 0; } }
@media (prefers-reduced-motion: reduce) { .msg.agent .name { animation: none; -webkit-text-fill-color: #e0392a; } }

/* sessions: +20% sizing + floppy hover tilt */
.sess-grid { max-width: 980px; }
.sess { grid-template-columns: 232px 1fr; gap: 36px; }
.sess-floppy { transition: transform .25s var(--ease); transform-origin: center; }
.sess-floppy:hover { transform: rotate(-4deg) scale(1.04); }
.sess .sn { font-size: 36px; }
.sess .sd { font-size: 13px; }
.sess-body h3 { font-size: 26px; }
.sess p { font-size: 19px; }
@media (max-width: 720px) { .sess { grid-template-columns: 142px 1fr; gap: 20px; } }

/* instructors: three-up cards */
.instr-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; align-items: start; }
.instr-card { display: block; }
.instr-card .instr-photo { position: relative; }
.instr-card .instr-photo img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; object-position: center top; border: 1px solid var(--on-ink-line); display: block; }
.instr-name { font-family: var(--font-display); font-weight: 800; font-size: 30px; line-height: 1; color: var(--on-ink); margin-top: 18px; font-synthesis: none; }
.instr-role { font-family: var(--font-mono); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--acid); margin-top: 6px; }
.instr-card p { font-family: var(--font-sans); font-size: 17px; line-height: 1.55; color: var(--on-ink-2); margin: 14px 0 0; max-width: none; }
@media (max-width: 880px) { .instr-grid { grid-template-columns: 1fr; gap: 36px; } .instr-card { max-width: 460px; } }

/* instructors: floating circular portraits (no grid-line borders) + proof tag */
.instr-card { text-align: center; }
.instr-card .instr-photo img { width: 240px; height: 240px; aspect-ratio: 1 / 1; border-radius: 50%; border: none; object-fit: cover; object-position: center top; margin: 0 auto; box-shadow: 0 22px 48px -22px rgba(0,0,0,.7); }
.instr-name { margin-top: 20px; }
.instr-role { display: block; }
.instr-card p { margin: 14px auto 0; max-width: 36ch; }
.instr-proof { display: inline-flex; align-items: center; gap: 9px; margin: 16px auto 0; font-family: var(--font-mono); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--on-ink-2); }
.instr-proof::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--acid); display: inline-block; }
@media (max-width: 880px) { .instr-card { max-width: 360px; margin: 0 auto; } }

/* ============================================================================
   value stack subtotal + divider
   ========================================================================== */
.vs-row.subtotal { border-top: 1px solid var(--on-ink-line); border-bottom: 1px solid var(--on-ink-line); margin: 5px 0; padding: 13px 4px; }
.vs-row.subtotal .vs-item, .vs-row.subtotal .vs-val { font-family: var(--font-display); font-weight: 700; font-size: 18px; color: var(--on-ink); font-synthesis: none; }
.vs-divider { font-family: var(--font-mono); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--on-ink-3); padding: 16px 4px 8px; }
.price-card .vs-row.subtotal .vs-item, .price-card .vs-row.subtotal .vs-val { font-size: 15px; }
.price-card .vs-divider { font-size: 11px; }

/* ============================================================================
   JARVIS — 2-column (compact copy left, compressed slack right) + mobile
   ========================================================================== */
.jarvis-2col { display: grid; grid-template-columns: 0.28fr 0.72fr; gap: 44px; align-items: center; width: 100%; }
.jarvis-copy-col .title { font-family: var(--font-display); font-weight: 700; font-size: clamp(30px, 3.2vw, 50px); line-height: 1.02; margin: 14px 0 0; }
.jarvis-copy-col .title em { font-style: italic; }
.jarvis-copy-col .body { font-family: var(--font-sans); font-size: 18px; line-height: 1.5; color: #0D0F0E; margin: 20px 0 0; }
.jarvis-2col .slack { height: min(72vh, 660px); display: flex; flex-direction: column; }
.jarvis-2col .slack .slack-body { height: auto; flex: 1; }

/* compressed slack text (overrides the earlier ~1.9x sizing) */
.slack .msg { gap: 11px; padding: 9px 10px; }
.slack .msg .av { width: 42px; height: 42px; border-radius: 9px; }
.slack .msg .name { font-size: 16px; }
.slack .msg .text { font-size: 15.5px; line-height: 1.46; }
.slack .msg .ts { font-size: 12px; }
.slack .msg .badge { font-size: 9px; padding: 2px 6px; }
.slack .msg .tools, .slack .msg .tcall { font-size: 13px; line-height: 1.65; }
.slack .msg .text .slash { font-size: 14px; padding: 1px 7px; }
.slack .msg .appicons .lbl { font-size: 11px; }
.slack .msg .ai { width: 22px; height: 22px; font-size: 11px; border-radius: 6px; }
.slack-head .search { font-size: 14px; }
.slack .slack-div .t { font-size: 11px; }
.slack .msg .text .stream-cur { width: 7px; height: 15px; }

@media (max-width: 1000px) {
  .jarvis-scroll { height: auto; }
  .jarvis-sticky { position: static; height: auto; overflow: visible; padding: 0; display: block; }
  .jarvis-2col { grid-template-columns: 1fr; gap: 22px; }
  .jarvis-2col .slack { height: 70vh; }
}

/* mobile: shrink the morph portrait to a little top-right avatar, names full width */
@media (max-width: 720px) {
  .wtb-panel { max-width: 100%; }
  .wtb-wheel { min-height: 300px; }
  .wtb-card .an { font-size: 40px; }
  .wtb-stage { left: auto; right: 14px; top: 50%; transform: translateY(-44%); width: 120px; height: 120px; overflow: hidden; z-index: 4; border: 1px solid var(--on-ink-line); border-radius: 10px; background: rgba(13,15,14,.4); }
  .wtb-stage .slot-lab { font-size: 7px; top: 4px; right: 5px; }
}

/* trim Jarvis section padding top/bottom */
.jarvis-2col { padding: 44px 0; }

/* instructors: center the circular headshots on mobile */
@media (max-width: 880px) {
  .instr-card { text-align: center; margin: 0 auto; }
  .instr-photo { max-width: none; }
  .instr-card .instr-photo img { margin: 0 auto; }
}

/* business-in-a-box container graphic + bonus product image */
.stack-graphic { display: block; width: 100%; max-width: 720px; height: auto; margin: 0 auto 38px; }
.bonus.has-img { display: flex; flex-direction: column; }
.bonus-img { width: 100%; height: 360px; object-fit: contain; object-position: center; margin: -8px 0 14px; display: block; }

/* Business-in-a-Box: 2-col (container left, copy right) */
.stack-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.stack-2col .stack-graphic { width: 100%; max-width: none; margin: 0; }
.stack-copy p { font-family: var(--font-sans); font-size: 20px; line-height: 1.55; color: var(--ink-2); margin: 0 0 18px; }
.stack-copy p:last-child { margin-bottom: 0; }
.stack-copy p:first-child { color: var(--ink); }
@media (max-width: 900px) { .stack-2col { grid-template-columns: 1fr; gap: 26px; } }

/* biz-in-a-box hook heading */
.stack-hook { font-family: var(--font-display); font-style: italic; font-weight: 700; font-size: clamp(24px, 2.4vw, 36px); line-height: 1.12; color: var(--ink); margin: 0 0 18px; }

/* first-step beginner band */
.firststep { background: var(--paper-2); text-align: center; padding: 66px 0; border-top: 1px solid var(--hair); border-bottom: 1px solid var(--hair); }
.firststep .lab { color: var(--acid-dim); }
.firststep h2 { font-family: var(--font-display); font-weight: 800; font-size: clamp(30px, 4.4vw, 60px); line-height: 1.02; letter-spacing: -.01em; margin: 14px auto 0; max-width: 20ch; color: var(--ink); }
.firststep p { font-family: var(--font-sans); font-size: 19px; line-height: 1.55; color: var(--ink-2); max-width: 60ch; margin: 18px auto 0; }

/* experience bar */
.expbar .exp-scale { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 26px; margin-top: 14px; }
.exp-end { font-family: var(--font-mono); font-size: 14px; letter-spacing: .04em; color: var(--ink-3); white-space: nowrap; }
.exp-end.right { color: var(--ink); }
.exp-track { position: relative; height: 5px; background: var(--line); border-radius: 3px; }
.exp-fill { position: absolute; left: 0; top: 0; height: 100%; width: 22%; background: var(--acid); border-radius: 3px; }
.exp-mark { position: absolute; left: 22%; top: 50%; transform: translate(-50%, -50%); background: var(--ink); color: var(--paper); font-family: var(--font-mono); font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: 6px 10px; border-radius: 999px; white-space: nowrap; }
.exp-note { font-family: var(--font-sans); font-size: 18px; line-height: 1.55; color: var(--ink-2); max-width: 62ch; margin: 28px 0 0; }
@media (max-width: 640px) { .expbar .exp-scale { grid-template-columns: 1fr; gap: 16px; } .exp-end.right { text-align: left; } }

/* voice pack: 3-part list (placeholder until 3 floppies land) */
.bonus-parts { list-style: none; margin: 14px 0 0; padding: 0; display: flex; flex-direction: column; gap: 9px; }
.bonus-parts li { display: flex; gap: 10px; align-items: baseline; font-family: var(--font-mono); font-size: 14px; line-height: 1.4; color: var(--ink-2); }
.bonus-parts .bp-n { font-family: var(--font-mono); font-size: 11px; color: var(--acid-dim); }

/* voice pack: full-width card with 3 big floppies */
.bonus-wide { grid-column: 1 / -1; }
.voice-floppies { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 22px; align-items: start; }
.voice-floppies img { width: 100%; height: auto; display: block; }
@media (max-width: 720px) { .voice-floppies { gap: 12px; } }

/* voice pack: full-width 2-col (composite image + copy) */
.voice-wide { display: grid; grid-template-columns: 1.55fr 1fr; gap: 40px; align-items: center; }
.voice-img { width: 100%; height: auto; display: block; }
@media (max-width: 820px) { .voice-wide { grid-template-columns: 1fr; gap: 20px; } }
