/* ===================================================================
   MARKONI v3 — Refinements layer
   Loaded AFTER main.css. Overrides for: Hero3, tighter rhythm,
   real product UI cards, mobile that isn't an afterthought.
   =================================================================== */

/* ===== Nav: brand wordmark image ===== */
.nav-brand {
  /* Reset main.css's gap and font-size — image only */
  gap: 0;
  font-size: 0;
  line-height: 0;
}
.nav-brand .nav-logo {
  height: 28px;
  width: auto;
  display: block;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.4));
}
.nav.over-light .nav-brand .nav-logo {
  content: url('/assets/brand/Markoni-Wordmark-Black.png');
  filter: none;
}
@media (max-width: 768px) {
  .nav-brand .nav-logo { height: 24px; }
}

/* ====== Type/spacing baseline tighten ====== */
:root {
  --section-pad: 140px;
  --gutter: 32px;
}

/* Sections breathe more, less header weight */
.section { padding: var(--section-pad) 0; }
.section-head { margin-bottom: 72px; max-width: 720px; gap: 14px; }
.section-title { font-size: clamp(40px, 4.6vw, 68px); line-height: 1.0; }
.section-sub { margin-top: 18px; font-size: 16.5px; max-width: 52ch; }

/* Section-head meta primitives (used by leaks/workforce/loop/stack/faq) */
.section-head-meta {
  display: flex; flex-direction: column; gap: 10px;
}
.section-head-body { max-width: 64ch; }
.section-idx {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.22em;
  color: var(--warm-gray);
}
.theme-light .section-idx,
.workforce .section-idx,
.stack .section-idx,
.faq .section-idx { color: var(--ink-mute); }

/* ===== HERO 3 — single orb, type orbits ===== */
.hero3 {
  position: relative;
  min-height: 100vh;
  background: var(--black);
  color: #fff;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
}
.hero3-stage {
  position: relative;
  width: min(1320px, 100%);
  margin: 0 auto;
  padding: 130px var(--gutter) 130px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  z-index: 2;
}

/* Floor & grain */
.hero3-floor {
  position: absolute; inset: auto 0 -10% 0; height: 70%;
  background:
    radial-gradient(ellipse 70% 60% at 50% 100%, rgba(255, 138, 0, 0.32), transparent 65%),
    radial-gradient(ellipse 35% 45% at 50% 95%, rgba(255, 209, 102, 0.4), transparent 70%);
  filter: blur(40px);
  z-index: 0;
  pointer-events: none;
}
.hero3-grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.35 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay; opacity: 0.5;
  pointer-events: none;
  z-index: 1;
}

/* The orb */
.hero3-orb {
  --orb-size: clamp(320px, 38vw, 500px);
  position: absolute;
  top: 72%; left: 50%; transform: translate(-50%, -50%);
  width: var(--orb-size); height: var(--orb-size);
  border-radius: 50%;
  z-index: 1;
  display: grid; place-items: center;
  transition: transform 600ms cubic-bezier(0.2, 0.8, 0.3, 1);
}
.hero3-orb-core {
  position: absolute; inset: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 28%, #FFE3A1 0%, var(--light-gold) 14%, var(--molten) 38%, var(--ember) 62%, #6B3D08 92%);
  box-shadow:
    0 0 100px rgba(255, 138, 0, 0.45),
    0 0 240px rgba(255, 138, 0, 0.35),
    inset -28px -42px 80px rgba(0, 0, 0, 0.42),
    inset 36px 48px 100px rgba(255, 224, 161, 0.45);
  animation: orb3Breathe 8s ease-in-out infinite;
}
@keyframes orb3Breathe {
  0%, 100% { transform: scale(1); filter: brightness(1); }
  50% { transform: scale(1.012); filter: brightness(1.06); }
}
.hero3-orb-ring {
  position: absolute;
  border: 1px solid rgba(255, 179, 0, 0.18);
  border-radius: 50%;
  pointer-events: none;
}
.hero3-orb-ring.r1 { inset: -32px; animation: orb3Ring 5s ease-in-out infinite; }
.hero3-orb-ring.r2 { inset: -80px; animation: orb3Ring 5s ease-in-out infinite 1.5s; }
.hero3-orb-ring.r3 { inset: -150px; border-color: rgba(255, 179, 0, 0.08); }
@keyframes orb3Ring {
  0%, 100% { transform: scale(1); opacity: 0.55; }
  50% { transform: scale(1.06); opacity: 0; }
}
.hero3-orb-mark {
  position: relative; z-index: 2;
  width: 28%; height: 28%;
  filter: drop-shadow(0 0 30px rgba(0,0,0,0.55));
  opacity: 0.78;
}
.hero3-orb-mark img { width: 100%; height: 100%; object-fit: contain; }

/* Eyebrow ABOVE the orb (orbit on top) */
.hero3-eyebrow {
  position: relative;
  z-index: 4;
  display: inline-flex; align-items: center; gap: 12px;
  padding: 8px 16px;
  border: 1px solid var(--line);
  background: rgba(255, 138, 0, 0.06);
  backdrop-filter: blur(12px);
  border-radius: 999px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.24em;
  color: var(--light-gold); text-transform: uppercase; font-weight: 500;
  margin-bottom: 32px;
}
.hero3-eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--molten); box-shadow: 0 0 8px var(--glow);
  animation: pulse 2s ease-in-out infinite;
}

/* Headline: large, sits over orb top */
.hero3-headline {
  position: relative;
  z-index: 4;
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(56px, 8.4vw, 132px);
  line-height: 0.92;
  letter-spacing: -0.04em;
  text-wrap: balance;
  display: grid;
  pointer-events: none;
  margin-bottom: 24px;
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.4);
}
.hero3-headline .line { display: block; pointer-events: auto; }
.hero3-headline em {
  font-style: italic;
  color: var(--light-gold);
  font-weight: 300;
  filter: drop-shadow(0 0 36px rgba(255, 209, 102, 0.5));
}
.hero3-headline .line-sub {
  font-style: italic;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.4em;
  letter-spacing: 0.02em;
  margin-top: 0.28em;
  font-weight: 300;
  text-shadow: none;
}

/* Sub & CTA */
.hero3-sub {
  position: relative; z-index: 4;
  margin-top: 0;
  max-width: 36ch;
  font-size: 17px;
  line-height: 1.5;
  color: var(--light-gray);
  text-wrap: balance;
}
.hero3-ctas {
  position: relative; z-index: 4;
  margin-top: 28px;
  display: flex; align-items: center; gap: 14px;
  flex-wrap: wrap; justify-content: center;
}

/* ===== Orbital product peeks ===== */
.hero3-peek {
  position: absolute;
  background: linear-gradient(180deg, rgba(20, 16, 8, 0.9), rgba(10, 8, 4, 0.92));
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 138, 0, 0.22);
  border-radius: 12px;
  padding: 12px 14px;
  width: 220px;
  z-index: 5;
  display: flex; flex-direction: column; gap: 6px;
  box-shadow: 0 20px 60px -10px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,138,0,0.06);
  animation: peekFloat 7s ease-in-out infinite;
  text-align: left;
}
.hero3-peek.peek-tr, .hero3-peek.peek-br { animation-delay: -3.5s; }
@keyframes peekFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.hero3-peek .peek-app {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 9.5px; letter-spacing: 0.18em;
  color: var(--molten); text-transform: uppercase; font-weight: 500;
}
.hero3-peek .peek-app-out { color: var(--light-gold); }
.hero3-peek .peek-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--molten); box-shadow: 0 0 6px var(--glow);
  animation: pulse 2s ease-in-out infinite;
}
.hero3-peek .peek-line { font-size: 12.5px; color: var(--light-gray); line-height: 1.4; }

/* Position the peeks relative to the stage */
.peek-tl { top: 24%; left: 6%; }
.peek-tr { top: 22%; right: 6%; }
.peek-bl { bottom: 26%; left: 9%; }
.peek-br { bottom: 24%; right: 9%; }

/* Hero foot — full-width band */
.hero3-foot {
  position: absolute;
  bottom: 28px; left: 32px; right: 32px;
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.18em;
  color: var(--warm-gray); text-transform: uppercase;
  z-index: 5;
}
.hero3-channels {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
}
.hero3-channels-label { color: var(--molten); }
.hero3-channels-sep {
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--graphite);
}
.hero3-meta { color: var(--warm-gray); text-align: right; }
.hero3-meta strong { color: var(--light-gold); font-weight: 500; }

/* ====== TRUST tighter ====== */
.trust { padding: 44px 0; border-top: 1px solid var(--line-soft); }

/* ====== MEET — overhaul: orb+real product cards ====== */
.meet-section { padding: var(--section-pad) 0; }
.meet-section .section-head { max-width: 720px; margin-bottom: 56px; }
.meet-stage {
  display: grid;
  grid-template-columns: 1fr 360px 1fr;
  gap: 24px;
  align-items: stretch;
  margin-top: 32px;
  position: relative;
}
.meet-stage::before, .meet-stage::after {
  content: ''; position: absolute; top: 50%; transform: translateY(-50%);
  height: 1px; width: calc((100% - 360px) / 2 - 32px);
  background: linear-gradient(to var(--dir, right), transparent, rgba(255, 179, 0, 0.5));
  z-index: 1;
}
.meet-stage::before { left: 0; --dir: right; }
.meet-stage::after { right: 0; background: linear-gradient(to left, transparent, rgba(255, 179, 0, 0.5)); }

.meet-stage-orb-col { min-height: 460px; }
.meet-orb {
  width: 240px; height: 240px;
  background:
    radial-gradient(circle at 32% 28%, #FFE3A1 0%, var(--light-gold) 14%, var(--molten) 38%, var(--ember) 62%, #6B3D08 92%);
}
.meet-orb-mark { width: 70px; height: 70px; opacity: 0.6; }

/* Cards: real product UI (not infographic) */
.meet-card {
  background: linear-gradient(180deg, #18160F, #0E0D09);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 14px 16px 14px;
  border-radius: 10px;
  position: relative;
}
.meet-card::after {
  content: ''; position: absolute; top: 50%; transform: translateY(-50%);
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--molten); box-shadow: 0 0 12px var(--glow);
  z-index: 2;
}
.meet-cards-left .meet-card::after { right: -29px; }
.meet-cards-right .meet-card::after { left: -29px; }
.meet-cards-left .meet-card:not(:hover)::after,
.meet-cards-right .meet-card:not(:hover)::after { animation: dotPulse 2.4s ease-in-out infinite; }
@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 0 0 var(--glow); }
  50% { box-shadow: 0 0 0 6px transparent; }
}

.meet-caption { margin-top: 56px; font-size: 11px; }

/* ====== CALCULATOR — make it the conversion hero ====== */
.calc-section {
  padding: 180px 0 200px;
  background:
    radial-gradient(1100px 700px at 80% 0%, rgba(255, 138, 0, 0.18), transparent 60%),
    radial-gradient(800px 500px at 10% 100%, rgba(255, 209, 102, 0.10), transparent 60%),
    var(--pearl);
}
.calc-section .calc-intro .section-title {
  font-size: clamp(48px, 6vw, 92px);
  letter-spacing: -0.035em;
}
.calc-stage { gap: 64px; align-items: stretch; }
.calc-card {
  border: 1px solid rgba(20, 16, 8, 0.08);
  border-radius: 18px;
  background:
    radial-gradient(600px 300px at 100% 0%, rgba(255, 138, 0, 0.18), transparent 60%),
    var(--ink);
  padding: 36px 36px 32px;
  box-shadow: 0 40px 100px -20px rgba(20, 16, 8, 0.32), 0 0 0 1px rgba(20, 16, 8, 0.04);
}
.calc-bignum {
  font-size: clamp(72px, 8vw, 132px);
  line-height: 0.94;
}
.calc-readout-foot { font-size: 10.5px; letter-spacing: 0.18em; text-transform: uppercase; }

/* ====== LEAKS — pinned horizontal scroll ====== */
.leaks-wrap {
  position: relative;
  height: 460vh; /* 5 panels worth of pinned scroll */
  background: var(--black);
  color: #fff;
}
.leaks-stage {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex; flex-direction: column;
}
.leaks-head {
  padding: 80px var(--gutter) 0;
  display: grid; grid-template-columns: 1fr 2fr; gap: 64px; align-items: end;
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
}
.leaks-head .section-head-meta { display: flex; flex-direction: column; gap: 8px; }
.section-idx {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.22em;
  color: var(--warm-gray);
}
.leaks-head .eyebrow { color: var(--molten); }
.leaks-track {
  flex: 1;
  display: flex; align-items: center; gap: 4vw;
  padding: 24px 8vw 0;
  will-change: transform;
}
.leak-panel {
  flex-shrink: 0;
  width: 56vw; max-width: 720px;
  height: 60vh; max-height: 540px;
  border: 1px solid var(--line-mid);
  border-radius: 18px;
  padding: 48px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.025) 0%, rgba(255, 255, 255, 0) 60%);
  position: relative;
  display: grid; grid-template-rows: auto auto 1fr auto;
  gap: 18px;
  transition: border-color 240ms;
  overflow: hidden;
}
.leak-panel.active { border-color: rgba(255, 179, 0, 0.4); }
.leak-panel.active::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent, var(--molten), transparent);
}
.leak-num {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.2em;
  color: var(--warm-gray);
}
.leak-title {
  font-family: var(--display); font-weight: 300;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.04;
  letter-spacing: -0.025em;
  color: #fff;
  max-width: 18ch;
}
.leak-body {
  font-size: 16px; line-height: 1.6;
  color: var(--light-gray);
  max-width: 52ch;
  align-self: start;
}
.leaks-progress {
  display: flex; gap: 8px;
  padding: 28px var(--gutter) 36px;
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
}
.leaks-progress .lp-tick {
  height: 1px; flex: 1;
  background: var(--line-mid);
  transition: background 240ms;
}
.leaks-progress .lp-tick.active { background: var(--molten); }
.leaks-progress .lp-tick.passed { background: var(--warm-gray); }
@media (max-width: 1100px) {
  .leaks-wrap { height: auto; }
  .leaks-stage { position: relative; height: auto; padding-bottom: 64px; }
  .leaks-head { grid-template-columns: 1fr; padding: 80px var(--gutter) 0; gap: 24px; }
  .leaks-track {
    flex-direction: column;
    padding: 32px var(--gutter) 0;
    gap: 18px;
    transform: none !important;
  }
  .leak-panel { width: 100%; height: auto; min-height: 380px; padding: 36px 28px; }
  .leaks-progress { display: none; }
}

/* ====== LEAKS — kill the noisy SVGs ====== */
.leak-viz { display: none; }
.leak-panel { padding: 56px 56px; }
.leak-panel .leak-title { font-size: clamp(34px, 4vw, 56px); }
.leak-panel .leak-body { font-size: 16px; max-width: 56ch; }
/* Replace with simple proof number per leak */
.leak-proof {
  margin-top: 28px;
  display: flex; align-items: baseline; gap: 14px;
  border-top: 1px solid var(--line-soft);
  padding-top: 22px;
}
.leak-proof-big {
  font-family: var(--display);
  font-size: 56px; line-height: 1;
  color: var(--molten);
  font-weight: 300;
  font-style: italic;
}
.leak-proof-small {
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.18em;
  color: var(--warm-gray);
  text-transform: uppercase;
  max-width: 24ch;
}

/* ====== WORKFORCE — list+detail polish ====== */
.workforce {
  background: var(--pearl);
  color: var(--ink-dark);
}
.workforce .section-eyebrow,
.workforce .eyebrow { color: var(--ember); }
.workforce .section-title em { color: var(--ember); }
.workforce .section-sub { color: var(--ink-mid); }
.wf-stage {
  display: grid; grid-template-columns: 0.9fr 1.1fr;
  gap: 56px; margin-top: 48px;
  align-items: start;
}
.wf-list { list-style: none; display: flex; flex-direction: column;
  border-top: 1px solid var(--line-pearl); }
.wf-item {
  display: grid; grid-template-columns: 48px 1fr auto;
  gap: 18px; align-items: baseline;
  padding: 22px 0;
  border-bottom: 1px solid var(--line-pearl);
  cursor: pointer;
  transition: padding-left 240ms cubic-bezier(.22,1,.36,1);
  position: relative;
}
.wf-item::before {
  content: ''; position: absolute; left: -16px; top: 50%; transform: translateY(-50%);
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--ember); opacity: 0; transition: opacity 240ms;
  box-shadow: 0 0 8px var(--glow);
}
.wf-item:hover { padding-left: 8px; }
.wf-item.active { padding-left: 16px; }
.wf-item.active::before { opacity: 1; }
.wf-num { font-family: var(--mono); font-size: 11px; color: var(--ink-mute); }
.wf-name {
  font-family: var(--display); font-size: 22px; font-weight: 400;
  letter-spacing: -0.015em; color: var(--ink-mid); transition: color 240ms;
}
.wf-item.active .wf-name, .wf-item:hover .wf-name { color: var(--ember); }
.wf-tag { font-size: 13px; color: var(--ink-mute); }
.wf-detail {
  background: var(--ink); color: #fff; border-radius: 16px;
  padding: 0; overflow: hidden; position: sticky; top: 96px;
  box-shadow: 0 32px 80px -16px rgba(20, 16, 8, 0.2);
}
.wf-detail-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 24px;
  border-bottom: 1px solid var(--line-soft);
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--warm-gray);
}
.wf-detail-head .mono { color: var(--molten); }
.wf-detail-title {
  padding: 28px 28px 0;
  font-family: var(--display); font-size: 36px; font-weight: 300;
  letter-spacing: -0.025em; line-height: 1.05;
}
.wf-detail-tag {
  padding: 8px 28px 0;
  font-family: var(--display); font-style: italic; font-size: 18px;
  color: var(--light-gold);
}
.wf-detail-body {
  padding: 18px 28px 22px;
  font-size: 15px; line-height: 1.55; color: var(--light-gray);
  max-width: 52ch;
}
.wf-skills {
  display: flex; flex-wrap: wrap; gap: 8px;
  padding: 0 28px 24px;
}
.wf-foot {
  display: flex; justify-content: space-between;
  padding: 16px 28px;
  border-top: 1px solid var(--line-soft);
  font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--warm-gray);
}

/* ====== LOOP — tighten ====== */
.loop { background: var(--black); }
.loop .eyebrow,
.loop .section-eyebrow,
.loop .mono { color: var(--molten); }
.loop .section-idx { color: rgba(244,239,230,0.55); }
.loop .section-title { color: #F4EFE6; }
.loop .section-sub { color: rgba(244,239,230,0.65); }
.loop-stage { margin-top: 32px; }
.loop-track {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  border-top: 1px solid var(--line-mid);
  padding-top: 32px;
}
.loop-step {
  display: flex; flex-direction: column; gap: 12px;
  padding-right: 16px;
  position: relative;
}
.loop-step::before {
  content: ''; position: absolute; top: -33px; left: 0;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--molten); box-shadow: 0 0 12px var(--glow);
  border: 2px solid var(--black);
}
.loop-step:not(:last-child)::after {
  content: ''; position: absolute; top: -27px; left: 12px; right: 0;
  height: 1px;
  background: linear-gradient(to right, var(--molten), rgba(255,179,0,0.15));
}
.loop-step-meta {
  display: flex; gap: 16px; font-family: var(--mono);
  font-size: 10.5px; letter-spacing: 0.18em;
  color: var(--warm-gray); text-transform: uppercase;
}
.loop-step-idx { color: var(--molten); }
.loop-step-title {
  font-family: var(--display); font-size: 28px;
  font-weight: 400; letter-spacing: -0.02em;
}
.loop-step-items {
  list-style: none;
  display: flex; flex-direction: column; gap: 8px;
}
.loop-step-items li {
  padding-left: 16px;
  position: relative;
  font-size: 13.5px; line-height: 1.5; color: var(--light-gray);
}
.loop-step-items li::before {
  content: ''; position: absolute; left: 0; top: 8px;
  width: 6px; height: 1px; background: var(--warm-gray);
}

/* ====== STACK — actual product UI panel ====== */
.stack {
  background: var(--pearl);
  color: var(--ink-dark);
}
.stack .section-eyebrow, .stack .section-eyebrow::before { color: var(--ember); background-color: var(--ember); }
.stack .section-eyebrow { color: var(--ember); }
.stack .section-eyebrow::before { background: var(--ember); }
.stack .section-title em { color: var(--ember); }
.stack .section-sub { color: var(--ink-mid); }
.stack-diagram {
  background: var(--ink); color: #fff;
  border-radius: 16px; padding: 32px;
  box-shadow: 0 24px 60px -16px rgba(20, 16, 8, 0.18);
  margin-top: 32px;
}
.stack-row {
  display: grid; grid-template-columns: 120px 1fr;
  gap: 18px; align-items: center;
  padding: 16px 0;
}
.stack-row + .stack-row { border-top: 1px solid var(--line-soft); }
.stack-row.markoni-row {
  background: linear-gradient(180deg, rgba(255,138,0,0.1), rgba(255,138,0,0.02));
  border-radius: 10px;
  padding: 18px;
  margin: 6px 0;
  border: 1px solid rgba(255, 138, 0, 0.32);
}
.stack-arrow {
  display: flex; justify-content: center;
  padding: 4px 0;
}
.stack-arrow span {
  display: block;
  width: 1px; height: 24px;
  background: linear-gradient(to bottom, transparent, var(--molten), transparent);
}

/* ====== FAQ tighten ====== */
.faq { background: var(--pearl); color: var(--ink-dark); }
.faq .section-title { color: var(--ink-dark); }
.faq-list {
  display: flex; flex-direction: column;
  max-width: 920px;
}
.faq-item {
  border-top: 1px solid var(--line-pearl);
  cursor: pointer;
}
.faq-item:last-child { border-bottom: 1px solid var(--line-pearl); }
.faq-q {
  display: grid; grid-template-columns: 60px 1fr 32px;
  gap: 24px; align-items: center;
  padding: 24px 12px;
}
.faq-num { color: var(--ember); }
.faq-q-text {
  font-family: var(--display); font-size: 22px; font-weight: 400;
  letter-spacing: -0.015em; color: var(--ink-dark);
}
.faq-toggle {
  font-size: 22px; color: var(--ember); font-weight: 200;
  text-align: center; line-height: 1; transition: transform 240ms;
}
.faq-item.open .faq-toggle { transform: rotate(45deg); }
.faq-a {
  padding: 0 12px 24px 96px;
  font-size: 15px; line-height: 1.6; color: var(--ink-mid);
  max-width: 64ch;
}

/* ====== Final CTA tighten ====== */
.final-cta { padding: 180px 0 200px; }
.final-title { font-size: clamp(48px, 7.4vw, 110px); }
.final-sub { max-width: 46ch; }

/* ====== Footer tighten ====== */
.footer { padding: 64px 0 36px; }
.footer-grid { gap: 48px; padding-bottom: 40px; grid-template-columns: 1fr 1.4fr; }

/* ====== Annotations: cleaner badge ====== */
.annotation {
  background: rgba(0,0,0,0.92);
  border: 1px dashed rgba(255, 138, 0, 0.5);
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 10.5px;
  max-width: 320px;
  top: 24px; right: 24px;
}

/* ====== MOBILE: actually a design ====== */
@media (max-width: 1100px) {
  :root { --gutter: 24px; --section-pad: 96px; }

  .hero3-stage { padding: 130px var(--gutter) 200px; }
  .hero3-orb { --orb-size: clamp(280px, 60vw, 440px); }
  .hero3-headline { font-size: clamp(56px, 12vw, 110px); }
  .hero3-peek { width: 180px; padding: 10px 12px; }
  .peek-tl { top: 16%; left: 4%; }
  .peek-tr { top: 14%; right: 4%; }
  .peek-bl { bottom: 30%; left: 4%; }
  .peek-br { bottom: 28%; right: 4%; }

  .meet-stage { grid-template-columns: 1fr; }
  .meet-stage::before, .meet-stage::after { display: none; }
  .meet-cards-left .meet-card::after,
  .meet-cards-right .meet-card::after { display: none; }
  .meet-stage-orb-col { order: -1; min-height: 280px; }

  .calc-stage { grid-template-columns: 1fr; gap: 48px; }
  .calc-card { padding: 28px 24px; }
  .calc-bignum { font-size: clamp(56px, 12vw, 92px); }

  .wf-stage { grid-template-columns: 1fr; }
  .wf-detail { position: relative; top: 0; }

  .loop-track { grid-template-columns: 1fr; gap: 28px; padding-top: 8px; border-top: none; }
  .loop-step { padding: 20px 16px 20px 36px; border: 1px solid var(--line-mid); border-radius: 10px; }
  .loop-step::before { top: 22px; left: 14px; }
  .loop-step:not(:last-child)::after { display: none; }

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

@media (max-width: 720px) {
  :root { --section-pad: 72px; }

  /* HERO mobile: hide some peeks, tighten stack */
  .hero3-stage { padding: 110px var(--gutter) 180px; min-height: 100vh; }
  .hero3-eyebrow { font-size: 9.5px; padding: 6px 12px; gap: 8px; letter-spacing: 0.18em; margin-bottom: 24px; }
  .hero3-orb { --orb-size: clamp(240px, 70vw, 320px); }
  .hero3-headline { font-size: clamp(48px, 14vw, 80px); margin-bottom: 18px; }
  .hero3-headline .line-sub { font-size: 0.5em; }
  .hero3-sub { font-size: 15px; max-width: 26ch; }
  .hero3-ctas { margin-top: 22px; flex-direction: column; width: 100%; align-items: stretch; }
  .hero3-ctas .btn { justify-content: center; width: 100%; }
  .hero3-peek { display: none; }
  /* keep two peeks: bottom-left + bottom-right */
  .peek-bl, .peek-br { display: flex; bottom: 84px; width: 44%; padding: 8px 10px; }
  .peek-bl .peek-line, .peek-br .peek-line { font-size: 11px; }
  .peek-bl .peek-app, .peek-br .peek-app { font-size: 8.5px; letter-spacing: 0.14em; }
  .hero3-foot {
    bottom: 18px; left: 16px; right: 16px;
    flex-direction: column; align-items: flex-start; gap: 8px;
    font-size: 9.5px;
  }
  .hero3-channels { gap: 8px; }
  .hero3-meta { text-align: left; }

  /* Sections */
  .section-head { margin-bottom: 40px; }
  .section-title { font-size: clamp(34px, 9vw, 52px); }
  .section-sub { font-size: 15px; }

  .leak-panel { padding: 40px 28px; }

  .wf-name { font-size: 18px; }
  .wf-detail-title { font-size: 26px; padding: 22px 22px 0; }
  .wf-detail-body, .wf-skills { padding-left: 22px; padding-right: 22px; }
  .wf-foot { padding: 14px 22px; flex-direction: column; gap: 4px; }

  .stack-diagram { padding: 22px 18px; }
  .stack-row { grid-template-columns: 1fr; gap: 8px; }

  .loop-step-title { font-size: 22px; }

  .faq-q { grid-template-columns: 32px 1fr 24px; gap: 12px; padding: 20px 4px; }
  .faq-q-text { font-size: 17px; }
  .faq-a { padding: 0 4px 22px 44px; font-size: 14px; }

  .final-cta { padding: 120px 0 140px; }
  .final-title { font-size: clamp(40px, 12vw, 64px); }
  .final-sub { font-size: 15px; }

  .footer { padding: 48px 0 28px; }
  .footer-cols { grid-template-columns: 1fr 1fr; gap: 22px; }
  .footer-foot { font-size: 9.5px; }
}
