/* ════════ Design tokens ════════ */
:root {
  --bg: hsl(225 25% 7%);
  --bg-soft: hsl(224 22% 11%);
  --bg-card: hsl(224 22% 13%);
  --line: hsl(222 20% 20%);
  --text: hsl(220 25% 88%);
  --text-soft: hsl(220 15% 62%);
  --cyan: hsl(187 94% 53%);
  --amber: hsl(42 96% 58%);
  --green: hsl(142 70% 58%);
  --red: hsl(0 84% 70%);
  --font-head: "Archivo", sans-serif;
  --font-body: "Inter", sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, Consolas, monospace;
  --text-hero: clamp(2.1rem, 1rem + 4.5vw, 4.3rem);
  --text-h2: clamp(1.6rem, 1rem + 2.2vw, 2.6rem);
  --space-section: clamp(3rem, 2rem + 3.5vw, 6rem);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ════════ Base ════════ */
* { box-sizing: border-box; margin: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: clamp(1rem, .95rem + .3vw, 1.1rem);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3 { font-family: var(--font-head); line-height: 1.12; letter-spacing: -.015em; }
h1 { font-size: var(--text-hero); font-weight: 900; }
h2 { font-size: var(--text-h2); font-weight: 800; margin-bottom: 1.2rem; }
h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: .5rem; }
p + p { margin-top: 1rem; }
a { color: var(--cyan); }
mark { background: var(--cyan); color: hsl(225 25% 8%); padding: .05em .3em; border-radius: 4px; font-weight: 600; }
s { color: var(--text-soft); }
.wrap { max-width: 1100px; margin-left: auto; margin-right: auto; padding: 0 1.4rem; }
.narrow { max-width: 780px; }
.center { text-align: center; }
section { margin-top: var(--space-section); }
.cy { color: var(--cyan); } .am { color: var(--amber); }
.gr { color: var(--green); } .rd { color: var(--red); }
.mut { color: var(--text-soft); }
.mono { font-family: var(--font-mono); font-size: .95rem; }
.eyebrow { font-family: var(--font-mono); font-size: .78rem; letter-spacing: .14em; color: var(--text-soft); text-transform: uppercase; margin-bottom: 1.3rem; }
.caption { font-size: .85rem; color: var(--text-soft); margin-top: 1.1rem; }
.sub { max-width: 680px; margin: 1.4rem auto 0; color: var(--text-soft); font-size: 1.08rem; }
.mail { color: var(--cyan); text-decoration: none; border-bottom: 1px dashed hsl(187 94% 53% / .4); }
.glow-text { color: var(--cyan); text-shadow: 0 0 28px hsl(187 94% 53% / .55), 0 0 80px hsl(187 94% 53% / .3); }

/* ════════ Buttons ════════ */
.cta-row { display: flex; gap: .9rem; justify-content: center; flex-wrap: wrap; margin-top: 2rem; }
.btn {
  display: inline-block; font-family: var(--font-head); font-weight: 700; font-size: 1.02rem;
  padding: .95rem 1.9rem; border-radius: 12px; text-decoration: none;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
  will-change: transform;
}
.btn-xl { font-size: 1.12rem; padding: 1.1rem 2.4rem; }
.btn-sm { font-size: .9rem; padding: .6rem 1.3rem; }
.btn-primary { background: var(--cyan); color: hsl(225 25% 8%); box-shadow: 0 8px 30px hsl(187 94% 53% / .28); position: relative; }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 44px hsl(187 94% 53% / .45); }
.btn-amber { background: var(--amber); color: hsl(225 25% 8%); box-shadow: 0 8px 30px hsl(42 96% 58% / .22); }
.btn-amber:hover { transform: translateY(-3px); box-shadow: 0 14px 40px hsl(42 96% 58% / .38); }
.btn-ghost { background: transparent; color: var(--text); border: 1px solid var(--line); }
.btn-ghost:hover { transform: translateY(-3px); border-color: var(--cyan); color: var(--cyan); }
.btn:active { transform: translateY(-1px) scale(.99); }

/* ════════ Hero ════════ */
.hero { position: relative; padding: clamp(5.5rem, 11vh, 9.5rem) 0 1rem; text-align: center; }
.grid-bg {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(hsl(220 30% 50% / .07) 1px, transparent 1px),
    linear-gradient(90deg, hsl(220 30% 50% / .07) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse 75% 65% at 50% 35%, black 35%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 75% 65% at 50% 35%, black 35%, transparent 75%);
}
.orb { position: absolute; border-radius: 50%; filter: blur(70px); pointer-events: none; animation: drift 14s ease-in-out infinite alternate; }
.orb-cy { width: 420px; height: 420px; background: hsl(187 94% 53% / .14); top: -120px; left: 12%; }
.orb-am { width: 340px; height: 340px; background: hsl(42 96% 58% / .08); top: 10%; right: 8%; animation-delay: -7s; }
@keyframes drift { from { transform: translate3d(0,0,0) scale(1); } to { transform: translate3d(40px, 30px, 0) scale(1.12); } }
.hero .wrap { position: relative; }
.trust-strip { display: flex; gap: 1.8rem; justify-content: center; flex-wrap: wrap; margin-top: 2.4rem; color: var(--text-soft); font-size: .85rem; }
.trust-strip span { display: inline-flex; align-items: center; gap: .45rem; }
.trust-strip svg { width: 17px; height: 17px; color: var(--cyan); }

/* ════════ Terminal ════════ */
.term-section { margin-top: 4rem; perspective: 1200px; }
.terminal {
  max-width: 860px; margin: 0 auto; background: hsl(224 28% 8%);
  border: 1px solid var(--line); border-radius: 16px;
  box-shadow: 0 30px 80px hsl(225 30% 3% / .75), 0 0 0 1px hsl(187 94% 53% / .07), 0 0 60px hsl(187 94% 53% / .06);
  font-family: var(--font-mono);
  transition: transform .6s var(--ease);
}
.tilt { transform: rotateX(3deg); }
.tilt:hover { transform: rotateX(0deg); }
.term-bar { display: flex; align-items: center; gap: 7px; padding: 13px 17px; border-bottom: 1px solid var(--line); }
.dot { width: 11px; height: 11px; border-radius: 50%; flex: none; }
.dot.r { background: var(--red); } .dot.y { background: var(--amber); } .dot.g { background: var(--green); }
.term-title { margin-left: 10px; color: var(--text-soft); font-size: .74rem; }
.term-live { margin-left: auto; color: var(--green); font-size: .7rem; animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 50% { opacity: .35; } }
.term-out { padding: 1.2rem 1.4rem 1.5rem; min-height: 250px; font-size: .9rem; line-height: 1.85; white-space: pre-wrap; word-break: break-word; color: hsl(218 25% 80%); }
.term-out b { color: hsl(220 30% 95%); font-weight: 600; }
.term-out .tc { color: var(--cyan); } .term-out .tm { color: var(--text-soft); } .term-out .tg { color: var(--green); }
.cursor { display: inline-block; width: 9px; background: var(--cyan); animation: blink 1.05s steps(1) infinite; }
@keyframes blink { 50% { opacity: 0; } }

/* ════════ Stats ════════ */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.stat { text-align: center; padding: 2rem 1.4rem; background: var(--bg-soft); border: 1px solid var(--line); border-radius: 16px; transition: transform .3s var(--ease), border-color .3s; }
.stat:hover { transform: translateY(-4px); border-color: hsl(187 94% 53% / .35); }
.stat-n { font-family: var(--font-head); font-weight: 900; font-size: clamp(2.4rem, 2rem + 2vw, 3.6rem); line-height: 1; margin-bottom: 1rem; }
.stat h3 { margin-bottom: .4rem; }
.stat p { color: var(--text-soft); font-size: .92rem; margin-top: .4rem; }

/* ════════ Timeline ════════ */
.timeline { margin-top: 2.4rem; position: relative; padding-left: 8px; }
.tl-item { display: flex; gap: 1.3rem; padding-bottom: 2.2rem; position: relative; }
.tl-item:not(:last-child)::before {
  content: ""; position: absolute; left: 21px; top: 48px; bottom: 4px; width: 2px;
  background: linear-gradient(var(--cyan), hsl(187 94% 53% / .1));
}
.tl-dot {
  flex: none; width: 44px; height: 44px; border-radius: 50%;
  background: var(--bg-soft); border: 2px solid var(--cyan); color: var(--cyan);
  font-family: var(--font-head); font-weight: 800; font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 24px hsl(187 94% 53% / .25);
}
.tl-item p { color: var(--text-soft); font-size: .96rem; }

/* ════════ Panels, grids, cards ════════ */
.panel { background: var(--bg-soft); border: 1px solid var(--line); border-radius: 20px; padding: clamp(1.6rem, 1rem + 3vw, 3rem); }
.grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
.modules { margin-top: 1.6rem; }
.module { padding: 1.3rem 1.4rem; border-radius: 14px; background: hsl(224 24% 9% / .65); border: 1px solid hsl(222 20% 17%); transition: border-color .3s, transform .3s var(--ease); }
.module:hover { border-color: hsl(187 94% 53% / .45); transform: translateY(-3px); }
.module.bonus { grid-column: 1 / -1; }
.module .num { font-family: var(--font-mono); font-weight: 600; margin-right: .45rem; }
.module p { color: var(--text-soft); font-size: .93rem; }
.module.bonus { border: 1px dashed hsl(42 96% 58% / .4); }
.card { background: var(--bg-soft); border: 1px solid var(--line); border-radius: 18px; padding: 1.8rem; }

/* ════════ Members area mockup ════════ */
.browser {
  max-width: 880px; margin: 2.2rem auto 0; background: hsl(224 28% 8%);
  border: 1px solid var(--line); border-radius: 16px; overflow: hidden;
  box-shadow: 0 30px 80px hsl(225 30% 3% / .7), 0 0 50px hsl(42 96% 58% / .04);
}
.b-bar { display: flex; align-items: center; gap: 7px; padding: 12px 16px; border-bottom: 1px solid var(--line); }
.b-url { margin-left: 12px; font-family: var(--font-mono); font-size: .72rem; color: var(--text-soft); background: var(--bg); border: 1px solid var(--line); border-radius: 99px; padding: .25rem .9rem; }
.b-body { display: grid; grid-template-columns: 240px 1fr; min-height: 320px; }
.b-side { border-right: 1px solid var(--line); padding: 1.1rem .9rem; background: hsl(225 26% 6.5%); }
.b-side-title { font-family: var(--font-mono); font-size: .65rem; letter-spacing: .12em; color: var(--text-soft); margin-bottom: .8rem; padding-left: .5rem; }
.b-mod { font-size: .8rem; color: var(--text-soft); padding: .45rem .5rem; border-radius: 8px; margin: 0; }
.b-mod.done { color: var(--green); }
.b-mod.active { background: hsl(187 94% 53% / .12); color: var(--cyan); font-weight: 600; }
.b-mod.am { color: var(--amber); }
.b-main { padding: 1.3rem 1.4rem; }
.b-progress { height: 7px; border-radius: 99px; background: var(--bg); border: 1px solid var(--line); overflow: hidden; }
.b-progress-fill { height: 100%; width: 0%; border-radius: 99px; background: linear-gradient(90deg, var(--cyan), hsl(187 94% 70%)); transition: width 1.4s var(--ease) .3s; }
.browser.in .b-progress-fill { width: 35%; }
.b-progress-label { font-family: var(--font-mono); font-size: .7rem; color: var(--text-soft); margin: .5rem 0 1.1rem; }
.b-lesson { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: .75rem .9rem; border: 1px solid var(--line); border-radius: 10px; font-size: .85rem; margin-top: .55rem; }
.b-lesson.current { border-color: hsl(187 94% 53% / .5); background: hsl(187 94% 53% / .06); }
.b-done { color: var(--green); font-size: .75rem; flex: none; }
.b-now { color: var(--cyan); font-size: .75rem; font-weight: 600; flex: none; }
.b-min { color: var(--text-soft); font-size: .75rem; flex: none; }
.b-comment { margin-top: 1.1rem; padding: .85rem 1rem; border-left: 3px solid var(--amber); background: var(--bg); border-radius: 0 10px 10px 0; font-size: .8rem; color: var(--text-soft); line-height: 1.8; }

/* ════════ Mascot ════════ */
.mascot { display: block; filter: drop-shadow(0 6px 18px hsl(187 94% 53% / .25)); }
.mascot .m-eyes { animation: m-blink 4.2s infinite; transform-origin: 60px 60px; }
.mascot .m-glow { animation: pulse 2.4s ease-in-out infinite; }
.mascot .m-mouth { animation: blink 1.05s steps(1) infinite; }
@keyframes m-blink { 0%, 91%, 100% { transform: scaleY(1); } 94%, 97% { transform: scaleY(.08); } }
.mascot.peek { width: 86px; margin: 0 auto -10px; position: relative; z-index: 2; animation: m-bob 3.6s ease-in-out infinite; }
@keyframes m-bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
.mascot.big { width: 170px; flex: none; }
.mascot.small { width: 92px; margin: 0 auto 1.2rem; }
.mascot .happy { animation: none; }

/* ════════ Manifesto ════════ */
.manifesto {
  background: linear-gradient(180deg, transparent, hsl(224 26% 9.5%) 15%, hsl(224 26% 9.5%) 85%, transparent);
  padding: clamp(3.5rem, 2.5rem + 3vw, 5.5rem) 0;
}
.manifesto-grid { display: flex; gap: clamp(1.6rem, 1rem + 3vw, 3.5rem); align-items: center; }
.manifesto h2 { line-height: 1.2; }
.manifesto p { color: var(--text-soft); max-width: 640px; }
.manifesto strong { color: var(--text); }

/* ════════ Quotes / first students ════════ */
.grid3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.quotes { margin-top: 2.4rem; }
.quote {
  margin: 0; padding: 1.8rem 1.6rem; background: var(--bg-soft);
  border: 1px solid var(--line); border-radius: 18px; position: relative;
  display: flex; flex-direction: column;
  transition: transform .3s var(--ease), border-color .3s;
}
.quote:hover { transform: translateY(-4px); border-color: hsl(187 94% 53% / .35); }
.quote::before {
  content: "\201C"; font-family: var(--font-head); font-weight: 900;
  font-size: 3.2rem; line-height: 1; color: var(--cyan);
  position: absolute; top: .8rem; left: 1.3rem; opacity: .35;
}
.quote blockquote { margin: 1.6rem 0 1.2rem; font-size: .95rem; color: var(--text-soft); font-style: italic; }
.quote figcaption { margin-top: auto; font-size: .82rem; color: var(--text-soft); }
.quote figcaption strong { color: var(--cyan); font-style: normal; }

/* ════════ Who ════════ */
.who { background: linear-gradient(180deg, transparent, var(--bg-soft) 18%, var(--bg-soft) 82%, transparent); padding: clamp(3.5rem, 2.5rem + 3vw, 5.5rem) 0; }
.who p { color: var(--text-soft); }
.who strong { color: var(--text); }

/* ════════ Lists ════════ */
ul.checks, ul.crosses { list-style: none; padding: 0; margin-top: .8rem; }
.checks li, .crosses li { padding: .42rem 0 .42rem 1.7rem; position: relative; color: var(--text-soft); font-size: .95rem; }
.checks li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 700; }
.crosses li::before { content: "✗"; position: absolute; left: 0; color: var(--red); font-weight: 700; }

/* ════════ Pricing ════════ */
.tiers { max-width: 920px; margin: 2.4rem auto 0; align-items: stretch; }
.tier { background: var(--bg-soft); border: 1px solid var(--line); border-radius: 20px; padding: 2.2rem 1.9rem; text-align: left; position: relative; display: flex; flex-direction: column; transition: transform .3s var(--ease), border-color .3s, box-shadow .3s; }
.tier:hover { transform: translateY(-5px); border-color: hsl(187 94% 53% / .4); box-shadow: 0 18px 50px hsl(225 30% 3% / .6); }
.tier.featured { border-color: hsl(42 96% 58% / .5); }
.tier.featured:hover { border-color: var(--amber); box-shadow: 0 18px 50px hsl(42 96% 58% / .12); }
.flag { position: absolute; top: -13px; right: 1.4rem; background: var(--amber); color: hsl(225 25% 8%); font-family: var(--font-head); font-weight: 700; font-size: .75rem; padding: .25rem .7rem; border-radius: 99px; }
.price { margin: .3rem 0 .5rem; }
.price .big { font-family: var(--font-head); font-weight: 900; font-size: 2.6rem; }
.price .per { color: var(--text-soft); font-size: .85rem; margin-left: .4rem; }
.tier .btn { margin-top: auto; text-align: center; }
.tier ul { margin-bottom: 1.6rem; }
.tier .caption { text-align: center; }

/* ════════ FAQ ════════ */
.faq details { border: 1px solid var(--line); border-radius: 14px; background: var(--bg-soft); margin-top: .8rem; overflow: hidden; transition: border-color .3s; }
.faq details:hover { border-color: hsl(187 94% 53% / .35); }
.faq summary { cursor: pointer; padding: 1.05rem 1.3rem; font-family: var(--font-head); font-weight: 700; font-size: 1rem; list-style: none; position: relative; padding-right: 3rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 1.3rem; top: 50%; transform: translateY(-50%); color: var(--cyan); font-size: 1.4rem; transition: transform .3s var(--ease); }
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq details p { padding: 0 1.3rem 1.2rem; color: var(--text-soft); font-size: .95rem; }

/* ════════ Final / Footer ════════ */
.final { padding-bottom: 2rem; }
.final .mono { margin-bottom: 1.4rem; }
footer { padding: 3.5rem 0 6.5rem; border-top: 1px solid var(--line); margin-top: var(--space-section); }

/* ════════ Sticky CTA ════════ */
.sticky-cta {
  position: fixed; left: 50%; bottom: 14px; transform: translate(-50%, 120%);
  display: flex; align-items: center; gap: 1.1rem;
  background: hsl(224 25% 10% / .92); backdrop-filter: blur(12px);
  border: 1px solid var(--line); border-radius: 99px;
  padding: .55rem .6rem .55rem 1.4rem;
  box-shadow: 0 16px 50px hsl(225 30% 3% / .8);
  transition: transform .5s var(--ease);
  z-index: 50; white-space: nowrap;
}
.sticky-cta.show { transform: translate(-50%, 0); }
.sticky-txt { font-size: .88rem; color: var(--text-soft); }
.sticky-cta .btn { border-radius: 99px; }

/* ════════ Scroll buddy ════════ */
#buddy {
  position: fixed; top: 0; left: 0; width: 76px; z-index: 49;
  opacity: 0; pointer-events: none; will-change: transform;
  transition: opacity .6s var(--ease);
  filter: drop-shadow(0 6px 18px hsl(187 94% 53% / .25));
}
#buddy.show { opacity: 1; }
.buddy-inner { animation: m-bob 3.6s ease-in-out infinite; }
.buddy-inner.hop { animation: b-hop .55s var(--ease); }
@keyframes b-hop { 0% { transform: translateY(0) scale(1); } 35% { transform: translateY(-16px) scale(1.06) rotate(-4deg); } 70% { transform: translateY(2px) scale(.98) rotate(2deg); } 100% { transform: translateY(0) scale(1); } }
#buddy .m-eyes { animation: m-blink 4.2s infinite; }
#buddy .m-glow { animation: pulse 2.4s ease-in-out infinite; }
#buddy .b-mouth-cursor { animation: blink 1.05s steps(1) infinite; }
#buddy .b-eyes-happy, #buddy .b-brows, #buddy .b-mouth-open { display: none; }
#buddy.mood-happy .b-eyes-normal { display: none; }
#buddy.mood-happy .b-eyes-happy { display: block; }
#buddy.mood-worried .b-brows { display: block; }
#buddy.mood-excited .b-mouth-cursor { display: none; }
#buddy.mood-excited .b-mouth-open { display: block; }
#buddy.mood-excited .m-glow { animation: pulse .7s ease-in-out infinite; }
#buddy .bubble {
  position: absolute; right: -8px; bottom: calc(100% + 12px); width: max-content; max-width: 200px;
  background: hsl(224 25% 12% / .97); border: 1px solid hsl(187 94% 53% / .4);
  border-radius: 14px 14px 4px 14px; padding: .55rem .8rem;
  font-family: var(--font-mono); font-size: .7rem; line-height: 1.55; color: var(--text);
  opacity: 0; transform: translateY(8px) scale(.9); transform-origin: right bottom;
  transition: opacity .35s var(--ease), transform .35s var(--ease);
}
#buddy .bubble.pop { opacity: 1; transform: translateY(0) scale(1); }
@media (max-width: 1000px) { #buddy { display: none; } }
@media (prefers-reduced-motion: reduce) { #buddy { display: none; } }
.no-anim #buddy { display: none; }

/* ════════ Reveal on scroll ════════ */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.d1 { transition-delay: .1s; } .d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; } .d4 { transition-delay: .4s; }
.no-anim .reveal { opacity: 1; transform: none; transition: none; }
.no-anim .browser .b-progress-fill { width: 35%; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .cursor, .orb, .term-live { animation: none; }
  html { scroll-behavior: auto; }
}

/* ════════ Responsive ════════ */
@media (max-width: 760px) {
  .stats, .grid2, .grid3 { grid-template-columns: 1fr; }
  .manifesto-grid { flex-direction: column; text-align: left; }
  .mascot.big { width: 120px; }
  .term-out { font-size: .78rem; min-height: 270px; }
  .tier { padding: 1.7rem 1.3rem; }
  .b-body { grid-template-columns: 1fr; }
  .b-side { display: flex; flex-wrap: wrap; gap: .2rem; border-right: none; border-bottom: 1px solid var(--line); }
  .b-side-title { width: 100%; }
  .b-mod { font-size: .7rem; padding: .3rem .45rem; }
  .sticky-txt s { display: none; }
}

/* ════════ Hero split (v2) ════════ */
.hero-grid { display: grid; grid-template-columns: 1fr 1.08fr; gap: clamp(2rem, 1.5rem + 2.5vw, 4rem); align-items: center; text-align: left; }
.hero-copy { min-width: 0; }
.hero .punch { font-family: var(--font-head); font-weight: 800; font-size: clamp(1.25rem, 1rem + 1.3vw, 1.95rem); line-height: 1.2; margin-top: 1.4rem; color: var(--text); }
.sub-left { color: var(--text-soft); font-size: 1.02rem; margin-top: 1rem; max-width: 48ch; }
.cta-row.left { justify-content: flex-start; margin-top: 1.7rem; }
.cta-chips { display: flex; flex-wrap: wrap; gap: .4rem 1.2rem; margin-top: 1.1rem; font-family: var(--font-mono); font-size: .8rem; color: var(--text-soft); }
.cta-chips s { color: var(--text-soft); }
.built-badge { margin-top: 1.7rem; font-size: .82rem; color: var(--text-soft); border-left: 2px solid var(--cyan); padding-left: .8rem; max-width: 46ch; }
.hero-demo .terminal { margin: 0; max-width: 100%; }
.hero-demo .term-out { min-height: 230px; }

/* ════════ Terminal vs app ════════ */
.vs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; margin-top: 2.2rem; align-items: start; }
.vs-card { padding: 1.8rem 1.7rem; border-radius: 18px; border: 1px solid var(--line); background: var(--bg-soft); }
.vs-card.dim { background: hsl(224 22% 9.5%); opacity: .92; }
.vs-card.hot { border-color: hsl(187 94% 53% / .45); box-shadow: 0 0 44px hsl(187 94% 53% / .08), inset 0 0 0 1px hsl(187 94% 53% / .06); }
.vs-tag { font-family: var(--font-mono); font-size: .78rem; letter-spacing: .05em; text-transform: uppercase; color: var(--text-soft); margin-bottom: .9rem; }
.vs-card .checks li, .vs-card .crosses li { font-size: .96rem; }

/* ════════ Empty proof ════════ */
.empty-proof { max-width: 760px; margin: 2.2rem auto 0; text-align: center; padding: 2.4rem 2rem; border: 1px dashed var(--line); border-radius: 20px; background: linear-gradient(180deg, hsl(187 94% 53% / .04), transparent 60%), var(--bg-soft); }
.ep-big { font-family: var(--font-head); font-weight: 800; font-size: clamp(1.2rem, 1rem + 1.1vw, 1.7rem); line-height: 1.3; }
.ep-sub { color: var(--text-soft); margin: 1.1rem auto 0; font-size: 1rem; max-width: 62ch; }

/* ════════ Cost box ════════ */
.cost-box { max-width: 720px; margin: 2.2rem auto 0; text-align: left; padding: 1.5rem 1.7rem; border: 1px solid hsl(42 96% 58% / .28); border-radius: 16px; background: hsl(42 96% 58% / .05); }
.cost-box .cb-h { font-family: var(--font-head); font-weight: 800; font-size: 1rem; margin-bottom: .5rem; }
.cost-box p { color: var(--text-soft); font-size: .95rem; }
.cost-box strong { color: var(--text); }

/* ════════ After pay ════════ */
.ap-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; margin-top: 2.2rem; }
.ap-step { padding: 1.8rem 1.5rem; border: 1px solid var(--line); border-radius: 16px; background: var(--bg-soft); transition: transform .3s var(--ease), border-color .3s; }
.ap-step:hover { transform: translateY(-4px); border-color: hsl(187 94% 53% / .35); }
.ap-n { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; background: var(--cyan); color: hsl(225 25% 8%); font-family: var(--font-head); font-weight: 800; margin-bottom: .9rem; }
.ap-step p { color: var(--text-soft); font-size: .92rem; }

/* ════════ Big statement ════════ */
.big-statement { font-family: var(--font-head); font-weight: 800; font-size: clamp(1.4rem, 1.05rem + 1.8vw, 2.3rem); line-height: 1.25; color: var(--text); margin: 1.8rem 0; letter-spacing: -.01em; }
.big-statement .mut { font-weight: 700; }

/* ════════ Focus visible ════════ */
.btn:focus-visible, summary:focus-visible, a:focus-visible { outline: 2px solid var(--cyan); outline-offset: 3px; border-radius: 6px; }

/* ════════ v2 responsive ════════ */
@media (max-width: 880px) {
  .hero { text-align: left; padding: clamp(4rem, 9vh, 6rem) 0 1rem; }
  .hero-grid { grid-template-columns: 1fr; gap: 2rem; }
  .sub-left, .built-badge { max-width: none; }
  .vs-grid, .ap-steps { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .cta-row.left .btn { width: 100%; text-align: center; }
}

/* ════════ Illustrations (rendered PNGs) ════════ */
figure.illus-fig { margin: 1.6rem 0 0; }
.illus { display: block; width: 100%; height: auto; margin: 1.6rem auto 0; border: 1px solid var(--line); border-radius: 16px; box-shadow: 0 26px 60px -34px hsl(225 60% 2% / .9); }
.illus-cap { text-align: center; color: var(--text-soft); font-size: .9rem; margin: .7rem auto 0; max-width: 60ch; }

/* ════════ Your arsenal ════════ */
.arsenal .sub { max-width: 64ch; margin-inline: auto; }
.arsenal .caption { margin-top: .8rem; }
.arsenal-h3 { font-family: var(--font-head); font-weight: 800; font-size: clamp(1.3rem, 1rem + 1.2vw, 1.9rem); margin: 2.4rem 0 .6rem; }
/* product "what's included" manifest */
.kit-includes { list-style: none; max-width: 660px; margin: 1.8rem auto 0; padding: 1.5rem 1.7rem; display: grid; gap: .85rem; background: radial-gradient(520px 200px at 50% -20%, hsl(187 94% 53% / .09), transparent 70%), var(--bg-soft); border: 1px solid hsl(187 94% 53% / .3); border-radius: 18px; text-align: left; }
.kit-includes li { position: relative; padding-left: 2.1rem; color: var(--text-soft); line-height: 1.5; font-size: 1rem; }
.kit-includes li::before { content: "✓"; position: absolute; left: 0; top: .1rem; color: hsl(225 25% 8%); background: var(--cyan); width: 1.35rem; height: 1.35rem; border-radius: 50%; display: grid; place-items: center; font-size: .82rem; font-weight: 800; }
.kit-includes strong { color: #fff; font-weight: 600; }
/* value-count strip */
.value-strip { display: flex; flex-wrap: wrap; justify-content: center; gap: .6rem; max-width: 760px; margin: 1.2rem auto .4rem; }
.value-strip span { font-family: var(--font-mono); font-size: .86rem; color: var(--text); background: var(--bg-soft); border: 1px solid var(--line); border-radius: 99px; padding: .5rem .9rem; }
.value-strip b { color: var(--cyan); font-weight: 700; }
/* 2x2 poster gallery */
.poster-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 1.2rem 0 0; }
.poster-grid .illus-fig { margin: 0; }
.poster-grid .illus { margin: 0; transition: transform .2s var(--ease), border-color .2s; }
.poster-grid .illus:hover { transform: translateY(-3px); border-color: hsl(187 94% 53% / .5); }
@media (max-width: 760px) { .poster-grid { grid-template-columns: 1fr; } }

/* ════════ Mid-page CTAs ════════ */
.mid-cta {
  margin: var(--space-section) auto 0;
  max-width: 640px;
  background: radial-gradient(620px 220px at 50% -10%, hsl(187 94% 53% / .14), transparent 70%), var(--bg-soft);
  border: 1px solid hsl(187 94% 53% / .4);
  border-radius: 20px;
  padding: 2.2rem 1.5rem;
  box-shadow: 0 0 60px -22px hsl(187 94% 53% / .6);
}
.mid-cta .btn { font-size: 1.05rem; padding: 1rem 1.9rem; }
.mid-cta .caption { margin-top: .8rem; }

/* ════════ Collapsible illustration ════════ */
.illus-details { margin: 1.4rem auto 0; max-width: 760px; border: 1px solid var(--line); border-radius: 12px; background: var(--bg-soft); overflow: hidden; }
.illus-details > summary { cursor: pointer; padding: 14px 18px; font-family: var(--font-mono); font-size: .9rem; color: var(--cyan); list-style: none; }
.illus-details > summary::-webkit-details-marker { display: none; }
.illus-details > summary::before { content: "▸ "; color: var(--cyan); }
.illus-details[open] > summary::before { content: "▾ "; }
.illus-details .illus { margin: 0 18px 18px; width: calc(100% - 36px); }

/* ════════ Personal tier value anchor ════════ */
.tier-anchor { font-size: .95rem; color: var(--text); background: hsl(42 96% 58% / .08); border: 1px solid hsl(42 96% 58% / .25); border-radius: 10px; padding: 10px 14px; margin: 0 0 1rem; }

/* ════════ Mobile: show the live terminal first, before the copy ════════ */
@media (max-width: 880px) {
  .hero-demo { order: -1; margin-bottom: 1.4rem; }
}
