/* ============================================================
   CINDR.LA × IDCanopy — Fable HYBRID · designed-v2 skin (override block at end)
   Brand: coal · ember #ff4d00 · teal #5AB5A2 · Inter
   ============================================================ */

:root {
  --coal-0: #08090b;
  --coal-1: #0d0f13;
  --coal-2: #14171d;
  --coal-3: #1c2028;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.16);
  --ink: #f2f3f5;
  --ink-dim: #9aa1ab;
  --ink-faint: #5d646e;
  --ember: #ff4d00;
  --ember-soft: rgba(255, 77, 0, 0.12);
  --teal: #5ab5a2;
  --teal-soft: rgba(90, 181, 162, 0.12);
  --joint: #b07cf0;
  --radius: 16px;
  --chrome-h: 52px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  background: var(--coal-0);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}

em { font-style: normal; color: var(--ember); }
strong { color: var(--ink); font-weight: 700; }

/* ---------- chrome ---------- */
.chrome {
  position: fixed;
  left: 0; right: 0;
  height: var(--chrome-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 36px;
  z-index: 50;
  pointer-events: none;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--ink-faint);
  text-transform: uppercase;
}
.chrome.top { top: 0; background: linear-gradient(var(--coal-0) 30%, transparent); }
.chrome.bottom { bottom: 0; background: linear-gradient(transparent, var(--coal-0) 70%); }
.chrome .brand { font-weight: 700; color: var(--ink-dim); }
.chrome .brand .x { color: var(--ember); }
.chrome .tag { font-weight: 600; color: var(--ember); transition: opacity 0.3s; }
.chrome .pageno { font-variant-numeric: tabular-nums; }

/* progress bar */
.progress {
  position: fixed; top: 0; left: 0;
  height: 2px; width: 0;
  background: linear-gradient(90deg, var(--ember), var(--teal));
  z-index: 60;
  transition: width 0.25s ease;
}

/* nav dots */
.dots {
  position: fixed; right: 18px; top: 50%;
  transform: translateY(-50%);
  display: flex; flex-direction: column; gap: 10px;
  z-index: 55;
}
.dots button {
  width: 8px; height: 8px; border-radius: 50%;
  border: none; cursor: pointer;
  background: var(--line-strong);
  transition: all 0.25s;
  padding: 0;
}
.dots button.active { background: var(--ember); transform: scale(1.4); }

/* ---------- slides ---------- */
main {
  height: 100vh;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
}
section.slide {
  min-height: 100vh;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--chrome-h) + 12px) 7vw;
  position: relative;
  overflow: hidden;
}
.slide .bg-glow {
  position: absolute; inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 50% at 15% 110%, var(--ember-soft), transparent 60%),
    radial-gradient(ellipse 45% 40% at 90% -10%, var(--teal-soft), transparent 60%);
  opacity: 0.7;
}
.inner { position: relative; max-width: 1200px; width: 100%; margin: 0 auto; }

.kicker {
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.24em;
  color: var(--ember);
  margin-bottom: 22px;
}
.kicker.teal { color: var(--teal); }

h1 {
  font-size: clamp(34px, 4.6vw, 64px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.06;
  max-width: 20ch;
  margin-bottom: 26px;
}
h1.wide { max-width: 26ch; }

.sub {
  font-size: clamp(16px, 1.5vw, 21px);
  color: var(--ink-dim);
  line-height: 1.55;
  max-width: 62ch;
}

.punch {
  margin-top: 40px;
  padding: 18px 26px;
  border-left: 3px solid var(--ember);
  background: linear-gradient(90deg, var(--ember-soft), transparent 75%);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: clamp(15px, 1.35vw, 19px);
  font-weight: 600;
  line-height: 1.5;
  max-width: 72ch;
}

/* entrance animation */
.fx { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s ease; }
.slide.in .fx { opacity: 1; transform: none; }
.slide.in .fx:nth-child(2), .slide.in .d1 { transition-delay: 0.12s; }
.slide.in .fx:nth-child(3), .slide.in .d2 { transition-delay: 0.24s; }
.slide.in .fx:nth-child(4), .slide.in .d3 { transition-delay: 0.36s; }
.slide.in .fx:nth-child(5), .slide.in .d4 { transition-delay: 0.48s; }
.slide.in .fx:nth-child(6), .slide.in .d5 { transition-delay: 0.6s; }

/* ---------- 01 cover ---------- */
.cover { text-align: left; }
.cover h1 { font-size: clamp(40px, 5.6vw, 80px); max-width: 18ch; }
.cover .proofline {
  margin-top: 44px;
  font-size: clamp(18px, 2vw, 28px);
  font-weight: 700;
}
.cover .proofline strong {
  background: linear-gradient(90deg, var(--ember), #ff8a50);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.contactline {
  margin-top: 18px;
  font-size: 13px;
  color: var(--ink-faint, #6b7280);
  letter-spacing: 0.02em;
}
.contactline a {
  color: inherit;
  text-decoration: none;
}
.contactline a:hover { color: var(--teal); }
.cover .ember-orb {
  position: absolute;
  width: 560px; height: 560px;
  right: -140px; bottom: -200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,77,0,0.22), transparent 65%);
  animation: breathe 5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes breathe {
  0%, 100% { transform: scale(1); opacity: 0.85; }
  50% { transform: scale(1.12); opacity: 1; }
}
.cover .logos { display: flex; gap: 26px; align-items: center; margin-bottom: 40px; }
.cover .logos img { height: 30px; opacity: 0.9; }

/* ---------- cover2 entity cards ---------- */
.entcards { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 38px; max-width: 980px; }
.entcard {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--coal-2);
  padding: 18px 22px;
}
.entcard.ember { border-color: rgba(255,77,0,0.45); background: linear-gradient(160deg, rgba(255,77,0,0.09), var(--coal-2) 60%); }
.entcard.teal { border-color: rgba(90,181,162,0.4); background: linear-gradient(160deg, rgba(90,181,162,0.09), var(--coal-2) 60%); }
.entcard .ecname { font-weight: 800; font-size: 16px; letter-spacing: 0.04em; }
.entcard.ember .ecname { color: var(--ember); }
.entcard.teal .ecname { color: var(--teal); }
.entcard .ecline { font-size: 13.5px; font-weight: 600; margin-top: 6px; }
.entcard .ecfine { font-size: 11.5px; color: var(--ink-faint); margin-top: 5px; }

/* ---------- shift ---------- */
.shiftcols { display: grid; grid-template-columns: 1fr auto 1fr; gap: 20px; align-items: stretch; margin: 34px 0 8px; max-width: 980px; }
.shiftcol {
  background: var(--coal-2); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 22px 26px;
}
.shiftcol.hot { border-color: rgba(255,77,0,0.5); background: linear-gradient(160deg, rgba(255,77,0,0.08), var(--coal-2) 55%); }
.shiftcol .shead { font-size: 11px; font-weight: 800; letter-spacing: 0.18em; color: var(--ink-faint); margin-bottom: 14px; }
.shiftcol.hot .shead { color: var(--ember); }
.shiftcol ul { list-style: none; }
.shiftcol li { padding: 7px 0; color: var(--ink-dim); font-size: 15.5px; border-bottom: 1px solid var(--line); }
.shiftcol li:last-child { border-bottom: none; }
.shiftcol.hot li { color: var(--ink); font-weight: 600; }
.shiftarrow { align-self: center; color: var(--ember); font-size: 26px; font-weight: 700; }

/* ---------- problem ---------- */
.probrows { margin: 30px 0 8px; max-width: 940px; }
.probrow {
  display: grid; grid-template-columns: 170px 1fr; gap: 18px;
  padding: 13px 18px; margin-bottom: 8px;
  background: var(--coal-2); border: 1px solid var(--line); border-radius: 12px;
}
.probrow .pk { font-weight: 800; font-size: 14.5px; }
.probrow .pk::before { content: '●'; color: var(--ember); font-size: 9px; margin-right: 10px; vertical-align: 2px; }
.probrow .pv { color: var(--ink-dim); font-size: 14.5px; }

/* ---------- whynow ---------- */
.eras { display: flex; gap: 16px; align-items: stretch; margin: 30px 0 22px; }
.era {
  background: var(--coal-2); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 16px 22px; min-width: 180px;
}
.era.hot { border-color: rgba(255,77,0,0.55); background: linear-gradient(160deg, rgba(255,77,0,0.1), var(--coal-2) 60%); }
.era .eyear { font-size: 12px; font-weight: 800; letter-spacing: 0.18em; color: var(--ink-faint); }
.era.hot .eyear { color: var(--ember); }
.era .eq { font-size: 15.5px; font-weight: 700; margin-top: 6px; }
.erarrow { align-self: center; color: var(--ember); font-size: 22px; font-weight: 700; }
.wbullets { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 26px; max-width: 980px; }
.wbullets .wb { color: var(--ink-dim); font-size: 14px; padding: 6px 0 6px 18px; position: relative; }
.wbullets .wb::before { content: '–'; position: absolute; left: 0; color: var(--teal); font-weight: 800; }

/* ---------- edge ---------- */
.edgecols { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 32px 0 8px; }
.edgecol { border-radius: var(--radius); border: 1px solid var(--line); background: var(--coal-2); padding: 22px 26px; }
.edgecol.ember { border-color: rgba(255,77,0,0.45); }
.edgecol.teal { border-color: rgba(90,181,162,0.4); }
.edgecol .ecname { font-size: 13px; font-weight: 800; letter-spacing: 0.1em; margin-bottom: 14px; }
.edgecol.ember .ecname { color: var(--ember); }
.edgecol.teal .ecname { color: var(--teal); }
.edgecol ul { list-style: none; }
.edgecol li { padding: 7px 0 7px 18px; color: var(--ink-dim); font-size: 14.5px; position: relative; }
.edgecol li::before { content: '·'; position: absolute; left: 2px; font-weight: 800; color: var(--ink-faint); }
.edgenote { margin-top: 18px; color: var(--ink-dim); font-size: 14.5px; line-height: 1.6; max-width: 90ch; }

/* ---------- two books (whale economics) ---------- */
.books { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 32px 0 8px; }
.book { border-radius: var(--radius); border: 1px solid var(--line); background: var(--coal-2); padding: 24px 26px; }
.book.teal { border-color: rgba(90,181,162,0.45); background: linear-gradient(165deg, rgba(90,181,162,0.08), var(--coal-2) 55%); }
.book.ember { border-color: rgba(255,77,0,0.5); background: linear-gradient(165deg, rgba(255,77,0,0.08), var(--coal-2) 55%); }
.book .bname { font-size: 12.5px; font-weight: 800; letter-spacing: 0.14em; margin-bottom: 14px; }
.book.teal .bname { color: var(--teal); }
.book.ember .bname { color: var(--ember); }
.book ul { list-style: none; margin-bottom: 16px; }
.book li { padding: 7px 0 7px 20px; color: var(--ink-dim); font-size: 14.5px; line-height: 1.5; position: relative; }
.book li::before { content: '●'; position: absolute; left: 0; top: 11px; font-size: 8px; color: var(--ink-faint); }
.book.teal li::before { color: var(--teal); }
.book.ember li::before { color: var(--ember); }
.book .banswer {
  border-top: 1px solid var(--line);
  padding-top: 14px;
  font-size: 14px; line-height: 1.55; color: var(--ink-dim);
}

/* ---------- model ---------- */
.layers { margin: 30px 0 8px; max-width: 960px; }
.layer {
  display: grid; grid-template-columns: 220px 1fr auto; gap: 18px; align-items: center;
  padding: 13px 20px; margin-bottom: 8px;
  background: var(--coal-2); border: 1px solid var(--line); border-radius: 12px;
}
.layer.hot { border-color: rgba(255,77,0,0.45); }
.layer .lname { font-weight: 700; font-size: 14.5px; }
.layer .ldesc { color: var(--ink-dim); font-size: 13.5px; }
.layer .lrev {
  font-size: 10px; font-weight: 800; letter-spacing: 0.14em;
  border: 1px solid var(--line-strong); border-radius: 999px;
  padding: 5px 13px; color: var(--ink-dim);
}
.layer.hot .lrev { border-color: rgba(255,77,0,0.5); color: var(--ember); }

/* ---------- gtm ---------- */
.gtmsteps { margin: 30px 0 8px; max-width: 880px; }
.gtmstep {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 12px 18px; margin-bottom: 8px;
  background: var(--coal-2); border: 1px solid var(--line); border-radius: 12px;
}
.gtmstep .gn {
  min-width: 30px; height: 30px; border-radius: 50%;
  border: 1px solid rgba(255,77,0,0.5); color: var(--ember);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 13px;
}
.gtmstep .gname { font-weight: 700; font-size: 14.5px; }
.gtmstep .gdesc { color: var(--ink-dim); font-size: 13px; margin-top: 3px; }

/* ---------- 02 playbook ---------- */
.steps3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: 36px 0 10px; }
.step {
  background: var(--coal-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  position: relative;
}
.step .n { font-size: 12px; color: var(--ink-faint); letter-spacing: 0.2em; font-weight: 700; }
.step .word {
  font-size: clamp(22px, 2.2vw, 32px);
  font-weight: 800; letter-spacing: -0.01em;
  margin: 10px 0 12px; color: var(--ink);
}
.step p { color: var(--ink-dim); font-size: 15px; line-height: 1.55; }
.step::after {
  content: '→';
  position: absolute; right: -17px; top: 50%;
  transform: translateY(-50%);
  color: var(--ember); font-size: 20px; font-weight: 700;
  z-index: 2;
}
.step:last-child::after { content: none; }
.timing {
  margin-top: 28px;
  color: var(--ink-dim);
  font-size: clamp(14px, 1.3vw, 17px);
  line-height: 1.6;
  max-width: 80ch;
}

/* ---------- 03 wedge ---------- */
.versus { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin: 34px 0 8px; }
.vcol {
  border-radius: var(--radius);
  padding: 24px 26px;
  border: 1px solid var(--line);
  background: var(--coal-2);
}
.vcol.ours { border-color: rgba(255, 77, 0, 0.4); background: linear-gradient(160deg, rgba(255,77,0,0.08), var(--coal-2) 55%); }
.vcol .vlabel { font-size: 11px; font-weight: 800; letter-spacing: 0.2em; color: var(--ink-faint); margin-bottom: 16px; }
.vcol.ours .vlabel { color: var(--ember); }
.vcol ol { list-style: none; counter-reset: v; }
.vcol li {
  counter-increment: v;
  display: flex; gap: 14px;
  padding: 9px 0;
  color: var(--ink-dim); font-size: 15.5px; line-height: 1.5;
}
.vcol.ours li { color: var(--ink); }
.vcol li::before {
  content: counter(v, decimal-leading-zero);
  font-size: 11px; font-weight: 700;
  color: var(--ink-faint);
  padding-top: 4px;
  min-width: 22px;
}
.vcol.ours li::before { color: var(--ember); }
.unlock {
  margin-top: 26px;
  border: 1px solid rgba(90, 181, 162, 0.35);
  background: linear-gradient(110deg, var(--teal-soft), transparent 70%);
  border-radius: var(--radius);
  padding: 22px 26px;
}
.unlock .ukicker { font-size: 11px; font-weight: 800; letter-spacing: 0.2em; color: var(--teal); margin-bottom: 10px; }
.unlock p { color: var(--ink-dim); font-size: 15.5px; line-height: 1.6; max-width: 90ch; }
.unlock .names { display: flex; gap: 12px; margin-top: 14px; flex-wrap: wrap; }
.unlock .names span {
  border: 1px solid rgba(90,181,162,0.4);
  color: var(--teal);
  font-weight: 700; font-size: 13px;
  padding: 7px 16px; border-radius: 999px;
}
.capture-line { margin-top: 22px; color: var(--ink-dim); font-size: 15.5px; line-height: 1.6; max-width: 88ch; }

/* ---------- 04 hero ---------- */
.hero h1 { font-size: clamp(44px, 6vw, 88px); }
.proofgrid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin: 32px 0 6px; }
.proof {
  background: var(--coal-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 24px;
}
.proof .ph { font-weight: 700; font-size: 16px; margin-bottom: 8px; }
.proof .ph::before { content: '●'; color: var(--ember); font-size: 10px; margin-right: 10px; vertical-align: 2px; }
.proof p { color: var(--ink-dim); font-size: 14.5px; line-height: 1.55; }
.statbox {
  margin-top: 22px;
  border: 1px solid rgba(255,77,0,0.35);
  border-radius: var(--radius);
  padding: 22px 26px;
  background: linear-gradient(110deg, rgba(255,77,0,0.07), transparent 60%);
}
.statbox .slabel { font-size: 11px; letter-spacing: 0.18em; font-weight: 800; color: var(--ink-faint); margin-bottom: 16px; }
.bar-row { display: flex; align-items: center; gap: 16px; margin: 10px 0; }
.bar-row .btext { min-width: 230px; font-size: 14px; font-weight: 600; }
.bar-row .btrack { flex: 1; height: 14px; background: var(--coal-3); border-radius: 7px; overflow: hidden; }
.bar-row .bfill { height: 100%; width: 0; border-radius: 7px; transition: width 1.4s cubic-bezier(0.2, 0.7, 0.2, 1) 0.3s; }
.bar-row.ours .bfill { background: linear-gradient(90deg, var(--ember), #ff8a50); }
.bar-row.industry .bfill { background: var(--ink-faint); }
.slide.in .bar-row.ours .bfill { width: 100%; }
.slide.in .bar-row.industry .bfill { width: 8%; }

/* ---------- 05 moat ---------- */
.moatgrid { display: grid; grid-template-columns: 1fr 1.25fr 1fr; gap: 18px; margin: 34px 0 8px; align-items: stretch; }
.pureplay {
  background: var(--coal-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  opacity: 0.85;
}
.pureplay .plabel { font-size: 11px; font-weight: 800; letter-spacing: 0.18em; margin-bottom: 14px; color: var(--ink-faint); }
.pureplay .has { color: var(--ink-dim); font-size: 14px; line-height: 1.5; margin-bottom: 12px; }
.pureplay .has::before { content: 'HAS — '; font-size: 10px; font-weight: 800; letter-spacing: 0.15em; color: var(--ink-faint); }
.pureplay .lacks { color: var(--ink-dim); font-size: 14px; line-height: 1.5; }
.pureplay .lacks::before { content: 'LACKS — '; font-size: 10px; font-weight: 800; letter-spacing: 0.15em; color: var(--ember); }
.center-moat {
  border: 1px solid rgba(255,77,0,0.45);
  border-radius: var(--radius);
  padding: 26px;
  background:
    linear-gradient(150deg, rgba(255,77,0,0.1), transparent 50%),
    linear-gradient(330deg, rgba(90,181,162,0.1), transparent 50%),
    var(--coal-2);
}
.center-moat .plabel { font-size: 12px; font-weight: 800; letter-spacing: 0.18em; margin-bottom: 16px; }
.center-moat .plabel .cx { color: var(--ember); }
.center-moat li {
  list-style: none;
  color: var(--ink);
  font-size: 14.5px; line-height: 1.5;
  padding: 8px 0 8px 24px;
  position: relative;
}
.center-moat li::before {
  content: '✓';
  position: absolute; left: 0; top: 9px;
  color: var(--teal); font-size: 13px; font-weight: 800;
}

/* ---------- 06 pipeline ---------- */
.filters { display: flex; gap: 10px; margin: 26px 0 20px; flex-wrap: wrap; }
.filters button {
  font-family: inherit;
  font-size: 12.5px; font-weight: 700;
  letter-spacing: 0.06em;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: transparent;
  color: var(--ink-dim);
  cursor: pointer;
  transition: all 0.2s;
}
.filters button:hover { border-color: var(--ember); color: var(--ink); }
.filters button.active { background: var(--ember); border-color: var(--ember); color: #fff; }
.pipegroups { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.pgroup { min-width: 0; }
.pgroup .ghead {
  font-size: 11px; font-weight: 800; letter-spacing: 0.18em;
  color: var(--ink); margin-bottom: 4px;
}
.pgroup .gnote { font-size: 11px; color: var(--ink-faint); margin-bottom: 12px; }
.pitem {
  background: var(--coal-2);
  border: 1px solid var(--line);
  border-left: 3px solid var(--ink-faint);
  border-radius: 10px;
  padding: 12px 14px;
  margin-bottom: 9px;
  transition: opacity 0.3s, transform 0.3s, border-color 0.2s;
}
.pitem[data-arm='cin'] { border-left-color: var(--ember); }
.pitem[data-arm='joint'] { border-left-color: var(--joint); }
.pitem[data-arm='idc'] { border-left-color: var(--teal); }
.pitem .pname { font-weight: 700; font-size: 14px; }
.pitem .ptext { color: var(--ink-dim); font-size: 12.5px; line-height: 1.45; margin-top: 3px; }
.pitem.dim { opacity: 0.18; transform: scale(0.985); }
.pipeline .counter {
  font-variant-numeric: tabular-nums;
  color: var(--ember);
}
.legend { display: flex; gap: 18px; margin-top: 18px; font-size: 11.5px; color: var(--ink-faint); }
.legend span::before { content: '—'; font-weight: 800; margin-right: 6px; }
.legend .l-cin::before { color: var(--ember); }
.legend .l-joint::before { color: var(--joint); }
.legend .l-idc::before { color: var(--teal); }

/* ---------- statband (imported from fable-2) ---------- */
.pipeline h1 { font-size: clamp(26px, 3vw, 42px); margin-bottom: 14px; }
.pipeline .filters { margin: 14px 0 14px; }
.pipeline .pitem { padding: 9px 12px; margin-bottom: 7px; }
.pipeline .punch { margin-top: 12px; padding: 10px 20px; font-size: 14px; }
.pipeline .legend { margin-top: 8px; }
.pipeline .pgroup .gnote { margin-bottom: 8px; }
.pipeline .pitem .ptext { font-size: 12px; }
.statband {
  display: flex; align-items: center; gap: 28px;
  margin: 10px 0 0;
}
.statband .stat .big {
  font-size: clamp(30px, 3.4vw, 48px);
  font-weight: 800; letter-spacing: -0.02em;
  color: var(--ember);
}
.statband .stat .slbl {
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-faint); margin-top: 2px;
}
.statband .statdiv { width: 1px; height: 44px; background: var(--line-strong); }

/* ---------- capacity bars + refusal stamp (imported from fable-2) ---------- */
.capbox {
  margin: 24px 0 4px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--coal-1);
  padding: 16px 22px;
  max-width: 880px;
}
.capbox .caplabel { font-size: 10.5px; font-weight: 800; letter-spacing: 0.2em; color: var(--ink-faint); margin-bottom: 12px; }
.caprow { display: flex; align-items: center; gap: 14px; margin: 8px 0; }
.caprow .captext { min-width: 190px; font-size: 13px; font-weight: 600; color: var(--ink-dim); }
.caprow .captrack { flex: 1; height: 12px; background: var(--coal-3); border-radius: 6px; overflow: hidden; }
.caprow .capfill { height: 100%; width: 0; border-radius: 6px; transition: width 1.2s cubic-bezier(0.2, 0.7, 0.2, 1) 0.2s; }
.caprow.dim .capfill { background: var(--ink-faint); }
.caprow.hot .capfill { background: linear-gradient(90deg, var(--teal), var(--ember)); }
.slide.in .capfill { width: var(--pct); }
.capbox .capnote { font-size: 11px; color: var(--ember); letter-spacing: 0.1em; font-weight: 700; margin-top: 10px; text-transform: uppercase; }
.choice2.stamped { position: relative; }
.stamp {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%) rotate(-7deg);
  border: 2.5px solid var(--ember);
  color: var(--ember);
  font-size: clamp(15px, 1.6vw, 22px);
  font-weight: 800; letter-spacing: 0.12em;
  padding: 10px 26px;
  border-radius: 8px;
  background: rgba(8, 9, 11, 0.82);
  z-index: 3;
  white-space: nowrap;
}

/* ---------- 07 constraint ---------- */
.choice2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 34px 0 8px; }
.choice {
  background: var(--coal-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}
.choice .ch { font-size: 12px; font-weight: 800; letter-spacing: 0.18em; margin-bottom: 14px; color: var(--ink-dim); }
.choice .good { color: var(--ink-dim); font-size: 15px; margin-bottom: 10px; }
.choice .good::before { content: '+ '; color: var(--teal); font-weight: 800; }
.choice .bad { color: var(--ink); font-size: 15px; font-weight: 600; }
.choice .bad::before { content: '− '; color: var(--ember); font-weight: 800; }

/* ---------- 08 engine curve (imported from fable-2, reinterpreted) ---------- */
.curve {
  position: relative;
  height: 252px;
  margin: 12px 0 4px;
}
.ladder-wrap + .punch { margin-top: 14px; padding: 10px 20px; font-size: 14.5px; }
.ladder-wrap .reservoir { margin-top: 12px; padding: 10px 18px; font-size: 13.5px; }
.ladder-wrap .strips { margin-top: 12px; }
.ladder-wrap .strip { padding: 11px 16px; }
.curve svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.slide.in .curvepath {
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 1.8s ease 0.2s;
}
.curvepath { stroke-dashoffset: 2200; }
.ccard {
  position: absolute;
  width: 23%;
  background: var(--coal-2);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 12px 12px;
  transition: border-color 0.25s, transform 0.25s;
}
.ccard:hover { border-color: rgba(255,77,0,0.55); transform: translateY(-4px); z-index: 4; }
.ccard .cshot {
  height: 52px; border-radius: 7px; overflow: hidden;
  background: var(--coal-3); margin-bottom: 9px;
}
.ccard .cshot img { width: 100%; height: 100%; object-fit: cover; object-position: top; display: block; }
.ccard .stage { font-size: 11.5px; font-weight: 800; letter-spacing: 0.12em; }
.ccard .rev { font-size: 9.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--teal); font-weight: 700; margin: 4px 0 8px; }
.ccard .prod {
  display: inline-block;
  background: var(--coal-3);
  border: 1px solid var(--line-strong);
  border-radius: 7px;
  font-size: 10.5px; font-weight: 600;
  padding: 4px 8px;
  margin: 0 3px 4px 0;
}
.ccard .rtext { font-size: 10.5px; color: var(--ink-dim); line-height: 1.4; margin-top: 5px; }
.ccard.c1 { left: 0%;  bottom: 0; }
.ccard.c2 { left: 25.5%; bottom: 17%; }
.ccard.c3 { left: 51%; bottom: 36%; }
.ccard.c4 { left: 76.5%; bottom: 55%; border-color: rgba(255,77,0,0.5); background: linear-gradient(165deg, rgba(255,77,0,0.1), var(--coal-2) 60%); }

/* ---------- bench (IDCanopy team band) ---------- */
.bench {
  margin-top: 18px;
  border: 1px solid rgba(90,181,162,0.35);
  background: linear-gradient(110deg, var(--teal-soft), transparent 70%);
  border-radius: var(--radius);
  padding: 16px 20px;
}
.bench .benchlabel { font-size: 10.5px; font-weight: 800; letter-spacing: 0.2em; color: var(--teal); margin-bottom: 12px; }
.bench .benchrow { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.benchcard .pname { font-weight: 700; font-size: 14px; }
.benchcard .prole.teal { font-size: 10.5px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--teal); margin: 3px 0 6px; }
.benchcard .pedge { font-size: 12px; color: var(--ink-dim); line-height: 1.45; }
.bench .benchnote { font-size: 11px; color: var(--ink-faint); margin-top: 12px; }

/* ---------- 08 ladder ---------- */
.ladder-wrap { margin: 30px 0 6px; }
.ladder {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  align-items: end;
}
.rung {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--coal-2);
  padding: 18px;
  position: relative;
  transition: border-color 0.25s, transform 0.25s;
  cursor: default;
}
.rung:hover { border-color: rgba(255,77,0,0.55); transform: translateY(-4px); }
.rung:nth-child(1) { min-height: 150px; }
.rung:nth-child(2) { min-height: 190px; }
.rung:nth-child(3) { min-height: 230px; }
.rung:nth-child(4) {
  min-height: 270px;
  border-color: rgba(255,77,0,0.5);
  background: linear-gradient(165deg, rgba(255,77,0,0.1), var(--coal-2) 60%);
}
.rung .stage { font-size: 13px; font-weight: 800; letter-spacing: 0.12em; }
.rung .rev { font-size: 10.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--teal); font-weight: 700; margin: 6px 0 12px; }
.rung .prod {
  display: inline-block;
  background: var(--coal-3);
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  font-size: 12px; font-weight: 600;
  padding: 6px 10px;
  margin: 0 4px 6px 0;
}
.rung .rtext { font-size: 12.5px; color: var(--ink-dim); line-height: 1.45; margin-top: 8px; }
.ph-note {
  font-size: 10.5px; color: var(--ink-faint);
  letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 12px;
}
.ph-note::before { content: '◌ '; color: var(--ember); }
.reservoir {
  margin-top: 16px;
  border: 1px dashed rgba(90,181,162,0.45);
  background: var(--teal-soft);
  border-radius: var(--radius);
  padding: 14px 22px;
  text-align: center;
  font-size: 14.5px;
  color: var(--ink-dim);
}
.strips { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 18px; }
.strip {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 18px;
  background: var(--coal-1);
}
.strip .shead { font-size: 10.5px; font-weight: 800; letter-spacing: 0.18em; color: var(--ink-faint); margin-bottom: 10px; }
.strip .chips { display: flex; flex-wrap: wrap; gap: 8px; }
.strip .chips span {
  font-size: 12px; font-weight: 600;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 5px 13px;
  color: var(--ink-dim);
}
.strip.capture .chips span { border-color: rgba(255,77,0,0.4); color: var(--ink); }
.strip .snote { font-size: 12px; color: var(--ink-faint); margin-top: 10px; line-height: 1.45; }

/* ---------- 09 structure ---------- */
.entities { display: grid; grid-template-columns: 1fr auto 1.15fr; gap: 0; align-items: stretch; margin: 34px 0 8px; }
.ent {
  border-radius: var(--radius);
  padding: 26px;
  border: 1px solid var(--line);
  background: var(--coal-2);
}
.ent.teal { border-color: rgba(90,181,162,0.4); }
.ent.ember { border-color: rgba(255,77,0,0.55); background: linear-gradient(160deg, rgba(255,77,0,0.1), var(--coal-2) 55%); box-shadow: 0 0 60px rgba(255,77,0,0.07); }
.ent .ename { font-size: 22px; font-weight: 800; letter-spacing: 0.02em; }
.ent .erole { font-size: 11px; font-weight: 800; letter-spacing: 0.2em; margin: 6px 0 18px; }
.ent.teal .erole { color: var(--teal); }
.ent.ember .erole { color: var(--ember); }
.ent li { list-style: none; color: var(--ink-dim); font-size: 14px; line-height: 1.5; padding: 7px 0 7px 18px; position: relative; }
.ent li::before { content: '·'; position: absolute; left: 2px; font-weight: 800; color: var(--ink-faint); }
.flow {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 0 22px;
  gap: 8px;
}
.flow .arrow { color: var(--teal); font-size: 26px; font-weight: 700; }
.flow .gives {
  writing-mode: vertical-rl;
  font-size: 10px; letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

/* ---------- 10 team ---------- */
.people { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; margin: 34px 0 8px; }
.person {
  background: var(--coal-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 16px;
}
.person img {
  width: 56px; height: 56px; border-radius: 50%;
  object-fit: cover; margin-bottom: 14px;
  border: 2px solid rgba(255,77,0,0.5);
}
.person .avatar {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--coal-3);
  border: 1px solid var(--line-strong);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 18px; color: var(--ink-dim);
  margin-bottom: 14px;
}
.person .pname { font-weight: 700; font-size: 15px; }
.person .prole { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ember); margin: 4px 0 10px; }
.person .pedge { font-size: 12.5px; color: var(--ink-dim); line-height: 1.5; }

/* ---------- 11 ask ---------- */
.ask h1 { font-size: clamp(42px, 5.4vw, 76px); }
.uses { margin: 32px 0 8px; max-width: 880px; }
.use { margin-bottom: 18px; }
.use .uhead { display: flex; justify-content: space-between; font-size: 14.5px; font-weight: 700; margin-bottom: 7px; }
.use .uhead span:last-child { color: var(--ink-faint); font-variant-numeric: tabular-nums; }
.use .utrack { height: 10px; background: var(--coal-3); border-radius: 5px; overflow: hidden; }
.use .ufill {
  height: 100%; width: 0; border-radius: 5px;
  background: linear-gradient(90deg, var(--ember), #ff8a50);
  transition: width 1.1s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.slide.in .use .ufill { width: var(--pct); }
.use .utext { font-size: 12.5px; color: var(--ink-dim); margin-top: 6px; }

/* ---------- gallery (proof of substance) ---------- */
.tiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 26px 0 6px;
}
.tile {
  background: var(--coal-2);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
}
.tile:hover { border-color: rgba(255,77,0,0.5); transform: translateY(-3px); }
.tile .timg {
  height: 86px;
  background: var(--coal-3);
  overflow: hidden;
}
.tile .timg img { width: 100%; height: 100%; object-fit: cover; object-position: top; display: block; }
.tile .timg.noimg img { display: none; }
.tile .timg.noimg::after {
  content: '◌';
  display: flex; align-items: center; justify-content: center;
  height: 100%;
  color: var(--ink-faint); font-size: 22px;
}
.tile .tbody { padding: 10px 12px 12px; }
.tile .tname { font-size: 12.5px; font-weight: 700; line-height: 1.3; }
.tile .tbadge {
  display: inline-block;
  margin-left: 7px;
  font-size: 9.5px; font-weight: 800;
  letter-spacing: 0.06em;
  color: #fff;
  background: var(--ember);
  border-radius: 999px;
  padding: 2px 8px;
  vertical-align: 1px;
}
.tile .tline { font-size: 11px; color: var(--ink-dim); line-height: 1.4; margin-top: 4px; }

/* ---------- hard questions ---------- */
.qgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 30px 0 6px;
}
.qcard {
  background: var(--coal-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 20px;
}
.qcard .q {
  font-size: 14px; font-weight: 700;
  color: var(--ember);
  line-height: 1.4;
  margin-bottom: 10px;
}
.qcard .a { font-size: 13px; color: var(--ink-dim); line-height: 1.55; }

/* ---------- appendix ---------- */
.appcols { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 30px; }
.appcol .ahead { font-size: 11px; font-weight: 800; letter-spacing: 0.2em; color: var(--ember); margin-bottom: 14px; }
.appcol table { width: 100%; border-collapse: collapse; }
.appcol td {
  padding: 10px 12px;
  font-size: 13.5px;
  color: var(--ink-dim);
  border-bottom: 1px solid var(--line);
  vertical-align: top;
  line-height: 1.5;
}
.appcol td:first-child { font-weight: 700; color: var(--ink); white-space: nowrap; padding-right: 18px; }

/* ---------- help hint ---------- */
.hint {
  position: fixed; bottom: 14px; left: 50%;
  transform: translateX(-50%);
  font-size: 10.5px; letter-spacing: 0.12em;
  color: var(--ink-faint);
  z-index: 51;
  opacity: 0.8;
}

/* ---------- print / PDF export ---------- */
@page { size: 1600px 900px; margin: 0; }
@media print {
  :root { --chrome-h: 40px; }
  main { height: auto; overflow: visible; scroll-snap-type: none; }
  section.slide {
    page-break-after: always;
    break-inside: avoid;
    height: 900px; min-height: 0;
    overflow: hidden;
  }
  .dots, .progress, .hint { display: none !important; }
  .chrome { position: absolute; }
  .fx { opacity: 1 !important; transform: none !important; }
  .slide .bar-row.ours .bfill { width: 100% !important; }
  .slide .bar-row.industry .bfill { width: 8% !important; }
  .use .ufill { width: var(--pct) !important; }
  body { -webkit-print-color-adjust: exact; print-color-adjust: exact; }
}

/* ---------- responsive fallback ---------- */
@media (max-width: 980px) {
  .steps3, .proofgrid, .versus, .moatgrid, .pipegroups,
  .choice2, .ladder, .people, .entities, .appcols, .strips, .qgrid,
  .bench .benchrow, .entcards, .shiftcols, .edgecols, .wbullets, .books {
    grid-template-columns: 1fr;
  }
  .eras { flex-direction: column; }
  .probrow, .layer { grid-template-columns: 1fr; gap: 6px; }
  .tiles { grid-template-columns: repeat(2, 1fr); }
  .curve { height: auto; }
  .curve svg { display: none; }
  .ccard { position: static; width: 100%; margin-bottom: 10px; }
  .statband { flex-wrap: wrap; gap: 18px; }
  .step::after { content: none; }
  .flow { flex-direction: row; padding: 14px 0; }
  .flow .gives { writing-mode: horizontal-tb; }
  .rung { min-height: 0 !important; }
}

/* ---------- gallery umbrella band ---------- */
.suiteband {
  margin-top: 14px;
  border: 1px solid rgba(90, 181, 162, 0.4);
  border-left: 4px solid var(--teal);
  background: var(--teal-soft);
  border-radius: 10px;
  padding: 12px 20px;
  font-size: 13.5px;
  color: var(--ink-dim);
  line-height: 1.5;
}

/* ---------- model whale layer ---------- */
.whalelayer {
  margin: 26px 0 18px;
  max-width: 960px;
}
.whalelayer .wl-main {
  display: grid; grid-template-columns: 280px 1fr auto; gap: 18px; align-items: center;
  padding: 14px 20px;
  background: #0c2b27;
  border: 1px solid rgba(90, 181, 162, 0.5);
  border-left: 4px solid var(--teal);
  border-radius: 12px;
}
.whalelayer .lname { font-weight: 700; font-size: 14.5px; color: #e6f3ef; }
.whalelayer .ldesc { color: #9bbdb4; font-size: 13.5px; }
.whalelayer .lrev.whale {
  font-size: 10px; font-weight: 800; letter-spacing: 0.14em;
  border: 1px solid rgba(90,181,162,0.55); border-radius: 999px;
  padding: 5px 13px; color: var(--teal);
}
.whalelayer .wl-note {
  font-size: 11px; color: var(--ink-faint);
  letter-spacing: 0.08em; text-transform: uppercase;
  margin: 8px 0 0 4px;
}

/* gallery compaction (umbrella band added) */
.tiles { gap: 10px; margin: 20px 0 4px; }
.tile .timg { height: 64px; }
.tile .tbody { padding: 8px 11px 10px; }
.suiteband { margin-top: 10px; padding: 10px 18px; font-size: 12.5px; }
.suiteband + .punch { margin-top: 10px; padding: 10px 20px; font-size: 14px; }
.gallery-sub-compact { margin-bottom: 0; }

/* ════════════════════════════════════════════════════════════
   DESIGNED-V2 SKIN OVERRIDES — calm, dense, flat, banded punches.
   Mirrors the visual language of _artifacts/designed-v2 (SVG deck):
   smaller display type, flat teal-tinted cards, dot bullets,
   full-width punch bands, minimal glow, no breathing orb.
   ════════════════════════════════════════════════════════════ */

:root {
  --coal-2: #15181d;
  --coal-3: #1b1f25;
  --radius: 8px;
}

/* designed-v2 signature gradient — exact recipe from the SVG deck:
   ember radial 30% bottom-left + teal radial 20% top-right over #0e0e10 */
:root { --coal-0: #0e0e10; }
.slide .bg-glow {
  opacity: 1;
  background:
    radial-gradient(ellipse 75% 75% at 14% 90%, rgba(255, 77, 0, 0.30), rgba(255, 77, 0, 0.04) 55%, transparent 100%),
    radial-gradient(ellipse 62% 62% at 90% 8%, rgba(90, 181, 162, 0.20), transparent 100%);
}
.cover .ember-orb { display: none; }

/* designed-v2 card signature: accent edge-bars + deep-teal card body */
.entcard, .book, .edgecol, .ent { border-left-width: 4px; }
.entcard.ember, .book.ember, .edgecol.ember, .ent.ember { border-left-color: var(--ember); }
.entcard.teal, .book.teal, .edgecol.teal, .ent.teal { border-left-color: var(--teal); background: #0c2b27; }
.entcard.teal .ecline, .ent.teal li { color: #e6f3ef; }
.entcard.teal .ecfine { color: #9bbdb4; }

/* denser, smaller type */
h1 { font-size: clamp(24px, 2.9vw, 40px); letter-spacing: -0.015em; margin-bottom: 18px; max-width: 30ch; }
h1.wide { max-width: 36ch; }
.cover h1 { font-size: clamp(28px, 3.6vw, 50px); max-width: 26ch; }
.hero h1 { font-size: clamp(32px, 4vw, 56px); }
.ask h1 { font-size: clamp(30px, 3.8vw, 52px); }
.pipeline h1 { font-size: clamp(22px, 2.4vw, 34px); }
.sub { font-size: clamp(13.5px, 1.15vw, 16px); }
.kicker { font-size: 11px; letter-spacing: 0.22em; margin-bottom: 16px; }

/* punch → full-width centered band (designed-v2 signature) */
.punch {
  border-left: none;
  border: 1px solid rgba(90, 181, 162, 0.35);
  background: rgba(90, 181, 162, 0.1);
  border-radius: 8px;
  text-align: center;
  max-width: none;
  font-size: clamp(13px, 1.15vw, 16px);
  padding: 13px 24px;
  margin-top: 30px;
}
.ladder-wrap + .punch, .pipeline .punch { font-size: 13.5px; }

/* flat cards everywhere — strip the gradient washes */
.step, .vcol, .proof, .pureplay, .center-moat, .choice, .rung, .ent,
.person, .tile, .qcard, .entcard, .shiftcol, .era, .probrow, .layer,
.gtmstep, .edgecol, .ccard, .strip, .capbox {
  background: var(--coal-2);
  box-shadow: none;
}
.vcol.ours, .entcard.ember, .shiftcol.hot, .era.hot, .center-moat,
.ent.ember, .ccard.c4, .rung:nth-child(4) {
  background: linear-gradient(180deg, rgba(255, 77, 0, 0.06), var(--coal-2) 70%);
}
.entcard.teal, .ent.teal {
  background: linear-gradient(180deg, rgba(90, 181, 162, 0.07), var(--coal-2) 70%);
}
.unlock { background: rgba(90, 181, 162, 0.07); }

/* dot-marker bullets (designed-v2 list style) */
.edgecol li::before, .ent li::before { content: '●'; font-size: 8px; top: 12px; color: var(--teal); }
.edgecol.ember li::before { color: var(--ember); }
.shiftcol li { border-bottom: none; padding: 5px 0 5px 16px; position: relative; }
.shiftcol li::before { content: '●'; position: absolute; left: 0; top: 10px; font-size: 7px; color: var(--ink-faint); }
.shiftcol.hot li::before { color: var(--ember); }

/* tighter statband */
.statband .stat .big { font-size: clamp(24px, 2.6vw, 38px); }

/* tighter gallery */
.tile .timg { height: 74px; }

/* calmer hover motion */
.tile:hover, .rung:hover, .ccard:hover { transform: none; }

/* ════════════════════════════════════════════════════════════
   FINAL DECK — overrides and additions
   ════════════════════════════════════════════════════════════ */

/* EDIT B — stamp: slightly left of centre, steeper angle, avoids both boxes */
.stamp {
  left: 36%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-14deg);
  font-size: clamp(11px, 1.1vw, 15px);
  padding: 7px 18px;
}

/* ---------- ask: 3-tier acceleration gauges ---------- */
.tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 28px 0 8px;
}

.tier-card {
  background: var(--coal-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 20px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: border-color 0.25s;
}
.tier-card:nth-child(1) { border-color: rgba(90,181,162,0.35); }
.tier-card:nth-child(2) { border-color: rgba(245,166,35,0.55); background: linear-gradient(180deg, rgba(245,166,35,0.06), var(--coal-2) 70%); }
.tier-card:nth-child(3) { border-color: rgba(255,77,0,0.6); background: linear-gradient(180deg, rgba(255,77,0,0.10), var(--coal-2) 70%); }

.tier-cap {
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ember);
  line-height: 1;
  margin-bottom: 4px;
}

.tier-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.22em;
  color: var(--ink-faint);
  margin-bottom: 14px;
}
.tier-card:nth-child(2) .tier-label { color: #f5a623; }
.tier-card:nth-child(3) .tier-label { color: var(--ember); }

/* gauge SVG */
.gauge-svg {
  width: 130px;
  height: 72px;
  margin-bottom: 14px;
}

/* animate gauge fill on slide entrance */
.gauge-fill {
  stroke-dasharray: 0 144.5;
  transition: stroke-dasharray 1.2s cubic-bezier(0.2, 0.7, 0.2, 1) 0.3s;
}
.slide.in .gauge-fill {
  stroke-dasharray: var(--gauge-fill) var(--gauge-len);
}

/* animate gauge dot */
.gauge-dot { transition: opacity 0.4s ease 1.2s; }
.slide.in .gauge-dot { opacity: 1; }

.tier-gets {
  width: 100%;
  text-align: left;
}
.tier-get {
  font-size: 12.5px;
  color: var(--ink-dim);
  line-height: 1.45;
  padding: 5px 0 5px 16px;
  position: relative;
}
.tier-get::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-size: 11px;
  font-weight: 700;
}
.tier-card:nth-child(2) .tier-get::before { color: #f5a623; }
.tier-card:nth-child(3) .tier-get::before { color: var(--ember); }

@media (max-width: 980px) {
  .tier-grid { grid-template-columns: 1fr; }
}
