/* ============================================================
   Impact First AI — "What separates the winners from the strugglers"
   Brand: cream #F6F2EB · black #000 · navy #111826 · royal #214BFF
          periwinkle #758DF7 · green #1FA971 · muted red
   Type:  Manrope 800 display · Inter body · JetBrains Mono labels

   BACKGROUND RULE (keep this when editing):
   CREAM sections = the reader's world — their problem, the argument
   (01 is-this-you, 03 what's-possible intro, 04 mentality, 06 track two).
   DARK (navy family) = the technology and us — trends, builds, the demo,
   fluency practice, the offer (hero, 02 band, 03 runs band, demo, 05, 07,
   untangle band). New sections should honour this split.

   RADIUS TOKENS: --r-xs chips/tags · --r-sm rows/inputs/small cards ·
   --r-md inner cards · --r-lg cards/bands · --r-xl hero-level panels.
   Pills use 999px, circles 50%, hairline bars 2px — those stay literal.
   ============================================================ */

:root {
  --r-xs: 5px;
  --r-sm: 9px;
  --r-md: 13px;
  --r-lg: 17px;
  --r-xl: 22px;
  --cream: #F6F2EB;
  --black: #000;
  --navy: #111826;
  --navy-2: #1A2438;
  --navy-3: #0B1220;
  --blue: #214BFF;
  --blue-deep: #1A3BD4;
  --peri: #758DF7;
  --green: #1FA971;
  --red: #B8452C;
  --red-deep: #8A3A24;
  --red-line: #E06A4A;
  --ink: #10131A;
  --head: #0B0E14;
  --body: #333845;
  --muted: #575D6B;
  --faint: #8A8474;
  --hair: rgba(16, 19, 26, 0.1);
  --hair-d: rgba(246, 242, 235, 0.14);
  --card: #FFFFFF;
  --card-line: rgba(16, 19, 26, 0.09);
  --wrap: 1140px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --f-head: 'Manrope', 'Inter', sans-serif;
  --f-body: 'Inter', system-ui, sans-serif;
  --f-mono: 'JetBrains Mono', ui-monospace, monospace;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--f-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

::selection { background: var(--blue); color: #fff; }

:focus-visible { outline: 2.5px solid var(--blue); outline-offset: 3px; border-radius: var(--r-xs); }

img, svg { max-width: 100%; }
button { font: inherit; color: inherit; }
[hidden] { display: none !important; }

/* ---------- utilities ---------- */

.wrap { max-width: var(--wrap); margin-inline: auto; padding-inline: clamp(1.25rem, 4vw, 2.5rem); }

.mono {
  font-family: var(--f-mono);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* section divider: big number chip + label + rule */
.sec-head {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  margin-bottom: 2.8rem;
}
.sec-head::after { content: ""; flex: 1; height: 1px; background: var(--hair); }
.eyebrow__no {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #fff;
  background: var(--blue);
  border-radius: var(--r-sm);
  padding: 0.42rem 0.65rem;
}
.eyebrow__lbl { font-size: 13px; font-weight: 700; letter-spacing: 0.26em; color: var(--blue); white-space: nowrap; }
.dark .sec-head::after { background: var(--hair-d); }
.dark .eyebrow__no { background: var(--peri); color: var(--navy); }
.dark .eyebrow__lbl { color: var(--peri); }

.h2 {
  font-family: var(--f-head);
  font-weight: 800;
  font-size: clamp(2.05rem, 4.6vw, 3.4rem);
  line-height: 1.06;
  letter-spacing: -0.018em;
  color: var(--head);
  max-width: 860px;
  margin-bottom: 2.4rem;
}

.h3 {
  font-family: var(--f-head);
  font-weight: 800;
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  line-height: 1.16;
  letter-spacing: -0.01em;
  color: var(--head);
  margin-bottom: 1.3rem;
}

.lede {
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  font-weight: 500;
  line-height: 1.55;
  color: #2A2F3A;
  max-width: 780px;
  margin-bottom: 3rem;
}

.body { max-width: 660px; color: var(--body); margin-bottom: 1.5rem; }

.closing {
  max-width: 760px;
  margin-top: 3.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--hair);
  font-size: 1.13rem;
  font-weight: 500;
  line-height: 1.6;
  color: #1B202B;
}

.cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.75rem);
  margin: 2.4rem 0 3rem;
}
.cols p { font-size: 0.97rem; color: #3A3F4C; line-height: 1.7; }

/* ---------- reveal ---------- */

[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}
[data-reveal].in { opacity: 1; transform: none; }

@keyframes respIn { from { opacity: 0; transform: translateY(6px); } }
.swap { animation: respIn 0.45s var(--ease); }

/* ---------- progress bar ---------- */

.progress { position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 90; pointer-events: none; }
.progress__bar {
  height: 100%;
  background: linear-gradient(90deg, var(--blue), var(--peri));
  transform: scaleX(0);
  transform-origin: 0 50%;
}

/* ---------- skip link ---------- */

.skip {
  position: fixed;
  top: -60px; left: 16px;
  z-index: 100;
  background: var(--navy);
  color: var(--cream);
  padding: 0.7rem 1.2rem;
  border-radius: var(--r-sm);
  text-decoration: none;
  font-weight: 600;
  transition: top 0.2s ease;
}
.skip:focus-visible { top: 12px; }

/* ---------- hero ---------- */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  background: var(--navy-3);
  color: var(--cream);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(117, 141, 247, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(117, 141, 247, 0.055) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask-image: radial-gradient(ellipse 95% 85% at 55% 15%, #000 25%, transparent 78%);
          mask-image: radial-gradient(ellipse 95% 85% at 55% 15%, #000 25%, transparent 78%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(720px 480px at 82% -12%, rgba(33, 75, 255, 0.28), transparent 70%);
}
.hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding: clamp(1.5rem, 4vw, 2.75rem) clamp(1.25rem, 4vw, 2.5rem);
}
.hero__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  animation: fadeIn 0.9s ease 0.15s both;
}
.logo {
  font-family: var(--f-head);
  font-weight: 800;
  font-size: 1.08rem;
  color: var(--cream);
  white-space: nowrap;
}
.logo em { font-style: italic; }
.logo--dim { color: rgba(246, 242, 235, 0.8); }
.hero__kicker { font-size: 10px; color: rgba(246, 242, 235, 0.42); text-align: right; }

.hero__main { margin: auto 0; padding: 4rem 0; }
.hero__title {
  font-family: var(--f-head);
  font-weight: 800;
  font-size: clamp(2.4rem, 5.6vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.022em;
}
.hero__title .line { display: block; overflow: hidden; padding-bottom: 0.22em; margin-bottom: -0.22em; }
.hero__title .line__in { display: inline-block; transform: translateY(115%); animation: rise 1s var(--ease) forwards; }
.hero__title .line:nth-child(1) .line__in { animation-delay: 0.1s; }
.hero__title .line:nth-child(2) .line__in { animation-delay: 0.22s; }

.hero__title i { font-style: normal; }
.hero__title .up { color: var(--peri); }
.hero__title .down { color: rgba(246, 242, 235, 0.35); }

.hero__over {
  font-size: 11px;
  color: var(--peri);
  margin-bottom: 1.6rem;
  animation: fadeIn 0.9s ease 0.05s both;
}
.hero__stand {
  font-size: clamp(1.05rem, 1.7vw, 1.3rem);
  line-height: 1.6;
  color: rgba(246, 242, 235, 0.62);
  margin-top: 1.9rem;
  max-width: 620px;
  animation: fadeUp 0.9s var(--ease) 0.5s both;
}
.hero__byline {
  margin-top: 2.1rem;
  font-size: 11px;
  color: var(--peri);
  animation: fadeUp 0.9s var(--ease) 0.78s both;
}
.hero__demochip {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  gap: 0.6rem;
  margin-top: 1.6rem;
  padding: 0.55rem 1rem;
  border: 1px solid rgba(117, 141, 247, 0.4);
  border-radius: 999px;
  color: var(--cream);
  text-decoration: none;
  font-size: 0.85rem;
  width: fit-content;
  animation: fadeUp 0.9s var(--ease) 0.95s both;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}
.hero__demochip .mono { font-size: 9.5px; color: var(--peri); }
.hero__demochip:hover { border-color: var(--peri); background: rgba(117, 141, 247, 0.1); transform: translateY(-2px); }

.client-proof {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(1.25rem, 3vw, 2.6rem);
  padding: 1rem 0;
  border-top: 1px solid rgba(246, 242, 235, 0.14);
  border-bottom: 1px solid rgba(246, 242, 235, 0.14);
  animation: fadeIn 0.9s ease 1.05s both;
}
.client-proof__label {
  font-size: 9px;
  font-weight: 700;
  line-height: 1.45;
  color: rgba(246, 242, 235, 0.45);
  max-width: 8.5rem;
}
.client-proof__logos {
  display: flex;
  align-items: center;
  gap: clamp(1.1rem, 2.4vw, 2rem);
  min-width: 0;
}
.client-proof__logo {
  display: block;
  width: auto;
  object-fit: contain;
  opacity: 0.82;
}
.client-proof__logo--cromwell,
.client-proof__logo--sentinel { width: 132px; height: auto; }
.client-proof__divider { width: 1px; height: 28px; background: rgba(246, 242, 235, 0.18); }
.client-proof__metric {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  white-space: nowrap;
}
.client-proof__metric strong {
  font-family: var(--f-head);
  font-size: 1.4rem;
  line-height: 1;
  color: var(--peri);
}
.client-proof__metric .mono {
  max-width: 7.5rem;
  font-size: 8.5px;
  line-height: 1.45;
  color: rgba(246, 242, 235, 0.58);
}

@media (max-width: 820px) {
  .client-proof {
    grid-template-columns: 1fr auto;
    gap: 0.75rem 1rem;
    padding-block: 0.85rem;
  }
  .client-proof__label { grid-column: 1 / -1; max-width: none; }
  .client-proof__logos { gap: 0.85rem; }
  .client-proof__logo--cromwell,
  .client-proof__logo--sentinel { width: 102px; height: auto; }
  .client-proof__divider { height: 22px; }
  .client-proof__metric { gap: 0.45rem; }
  .client-proof__metric strong { font-size: 1.15rem; }
  .client-proof__metric .mono { max-width: none; font-size: 7px; }
}

.hero__cue {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
  font-size: 9.5px;
  color: rgba(246, 242, 235, 0.5);
  align-self: center;
  animation: fadeIn 1s ease 1.3s both;
}
.cue__line { position: relative; width: 1px; height: 46px; background: rgba(246, 242, 235, 0.16); overflow: hidden; }
.cue__line::after {
  content: "";
  position: absolute;
  left: 0; top: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(180deg, transparent, var(--peri));
  animation: drip 2.1s ease-in-out infinite;
}

@keyframes rise { to { transform: none; } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } }
@keyframes fadeIn { from { opacity: 0; } }
@keyframes drip { 60%, 100% { top: 100%; } }

/* ---------- sections ---------- */

.section { padding-block: clamp(5.5rem, 11vw, 9.5rem) clamp(4rem, 7vw, 6rem); }
/* section boundaries are marked by the handoff sentence + the next
   sec-head line — no extra border here, one rule per join */
.section.rule { padding-top: clamp(3.5rem, 6vw, 5rem); }
.section.dark { background: var(--navy); color: var(--cream); }
.dark .h2 { color: #fff; }
.dark .h3 { color: #fff; }
.dark .lede { color: rgba(246, 242, 235, 0.75); }
.dark .body { color: rgba(246, 242, 235, 0.75); }
.dark .closing { color: rgba(246, 242, 235, 0.85); border-top-color: var(--hair-d); }

/* ---------- mechanic cards ---------- */

.mech {
  background: var(--card);
  border: 1px solid var(--card-line);
  border-radius: var(--r-xl);
  padding: clamp(1.6rem, 3.6vw, 2.9rem);
  box-shadow: 0 1px 2px rgba(16, 19, 26, 0.04), 0 16px 48px -28px rgba(16, 19, 26, 0.22);
}
.mech__head { margin-bottom: 1.7rem; }
.mech__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: var(--blue);
  border: 1px solid rgba(33, 75, 255, 0.3);
  border-radius: 999px;
  padding: 0.42rem 0.9rem;
  background: rgba(33, 75, 255, 0.05);
}
.mech__title {
  font-family: var(--f-head);
  font-weight: 800;
  font-size: clamp(1.5rem, 2.7vw, 2.05rem);
  letter-spacing: -0.01em;
  color: var(--head);
  margin-top: 0.9rem;
}

/* ---------- 01 · diagnostic ---------- */

.hook {
  font-size: clamp(1.45rem, 2.9vw, 2.05rem);
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: -0.01em;
  color: #14181F;
  max-width: 900px;
  margin-bottom: 3.2rem;
}
mark.ink {
  color: inherit;
  background: linear-gradient(180deg, transparent 58%, rgba(33, 75, 255, 0.22) 58%);
  padding-inline: 0.08em;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.diag__list { list-style: none; display: grid; gap: 0.65rem; }
.diag__item {
  display: flex;
  align-items: center;
  gap: 0.95rem;
  width: 100%;
  text-align: left;
  background: #FAF7F1;
  border: 1px solid var(--card-line);
  border-radius: var(--r-md);
  padding: 0.95rem 1.15rem;
  font-size: 0.98rem;
  font-weight: 500;
  color: #252A35;
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}
.diag__item:hover { border-color: rgba(33, 75, 255, 0.55); }
.diag__tick {
  flex: 0 0 auto;
  width: 23px; height: 23px;
  border-radius: 50%;
  border: 1.5px solid #C7CBD4;
  display: grid;
  place-items: center;
  color: transparent;
  background: #fff;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}
.diag__tick svg { width: 12px; height: 12px; display: block; }
.diag__item.sel { background: var(--blue); border-color: var(--blue); color: #fff; }
.diag__item.sel .diag__tick { background: #fff; border-color: #fff; color: var(--blue); }
.diag__resp {
  margin-top: 1.5rem;
  min-height: 2.8em;
  font-size: 1.06rem;
  font-weight: 600;
  color: #14181F;
}

/* the two challenges */
.challenge { display: flex; align-items: center; flex-wrap: wrap; gap: 1rem; margin: 3.2rem 0 1.5rem; }
.challenge__no {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: #fff;
  background: var(--navy);
  border-radius: 999px;
  padding: 0.45rem 0.8rem;
}
.challenge__name {
  font-family: var(--f-head);
  font-weight: 800;
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  letter-spacing: -0.01em;
  color: var(--head);
}

.glue__copy { max-width: 880px; }
.glue__diagram {
  margin-top: 1.9rem;
  background: var(--card);
  border: 1px solid var(--card-line);
  border-radius: var(--r-lg);
  padding: 1.1rem 1rem 0.8rem;
  box-shadow: 0 1px 2px rgba(16, 19, 26, 0.04), 0 16px 48px -28px rgba(16, 19, 26, 0.22);
}
.glue__diagram svg { width: 100%; height: auto; display: block; }
.glue__lines path { stroke: #C96A50; stroke-width: 1.6; fill: none; opacity: 0.6; }
.glue__lines path.glue__dash { stroke-dasharray: 4 5; opacity: 0.42; }
.glue__team rect { fill: #fff; stroke: var(--navy); stroke-width: 1.5; }
.glue__team text {
  fill: var(--navy);
  font-family: var(--f-head);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
}
.glue__lines .glue__skip { stroke-dasharray: 4 5; opacity: 0.38; }
.glue__chip rect { fill: var(--cream); stroke: rgba(16, 19, 26, 0.22); stroke-width: 1; }
.glue__chip text {
  fill: var(--navy);
  font-family: var(--f-mono);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.glue__person rect { fill: var(--navy); }
.glue__person text {
  fill: #fff;
  font-family: var(--f-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.glue__caption { text-align: center; font-size: 9.5px; color: var(--faint); margin-top: 0.6rem; }
.glue__promise {
  margin-top: 1.7rem;
  font-size: 1.06rem;
  font-weight: 600;
  color: #1B202B;
  max-width: 70ch;
}

/* editorial pull-quote treatment: thick left rule, display type,
   no banner background — reads as print, not as an ad */
.callout {
  margin-top: 2.6rem;
  border-left: 3px solid var(--blue);
  padding: 0.4rem 0 0.4rem clamp(1.4rem, 3vw, 2.4rem);
  color: var(--head);
}
.callout p {
  font-family: var(--f-head);
  font-weight: 800;
  font-size: clamp(1.3rem, 2.4vw, 1.8rem);
  line-height: 1.38;
  letter-spacing: -0.012em;
  max-width: 840px;
}
.callout--learn { margin-top: clamp(2.5rem, 5vw, 4rem); }
.runs .callout--panel { margin-top: clamp(2.2rem, 4vw, 3rem); }
.runs .callout, .dark .callout { color: var(--cream); border-left-color: var(--peri); }
.callout__label {
  display: block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--blue);
  margin-bottom: 1rem;
}
.runs .callout__label, .dark .callout__label { color: var(--peri); }

/* ---------- 02 · sideways facts ---------- */

.facts { margin-block: 1rem 4rem; }
.facts__pin { padding-block: 1rem; }
.facts__track {
  display: flex;
  gap: clamp(1.25rem, 3vw, 2.5rem);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
  scrollbar-width: none;
}
.facts__track::-webkit-scrollbar { display: none; }
.fact {
  flex: 0 0 auto;
  width: min(86vw, 560px);
  scroll-snap-align: center;
  background: var(--navy);
  color: var(--cream);
  border-radius: var(--r-xl);
  padding: clamp(2rem, 4.5vw, 3.8rem);
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  position: relative;
  overflow: hidden;
}
.fact::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(420px 300px at 85% -10%, rgba(33, 75, 255, 0.35), transparent 70%);
  pointer-events: none;
}
.fact__no { position: relative; z-index: 1; font-size: 11px; font-weight: 700; color: var(--peri); }
.fact__claim {
  position: relative;
  z-index: 1;
  font-family: var(--f-head);
  font-weight: 800;
  font-size: clamp(1.9rem, 4.4vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #fff;
  max-width: 15ch;
}
.fact__claim em { font-style: normal; color: var(--peri); }
.fact__sub {
  position: relative;
  z-index: 1;
  font-size: clamp(0.98rem, 1.4vw, 1.12rem);
  line-height: 1.65;
  color: rgba(246, 242, 235, 0.78);
  max-width: 52ch;
}
.fact__sub--mobile { display: none; }
.facts__progress { display: flex; align-items: center; justify-content: center; gap: 0.9rem; margin-top: 1.8rem; }
.facts__count { font-size: 10px; color: var(--faint); letter-spacing: 0.18em; }
.facts__barwrap {
  display: block;
  width: min(220px, 40vw);
  height: 2px;
  background: rgba(16, 19, 26, 0.12);
  border-radius: 2px;
  overflow: hidden;
}
.facts__barwrap span {
  display: block;
  height: 100%;
  width: 100%;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: 0 50%;
}

.facts--pinned { height: 300vh; margin-block: 0 clamp(3rem, 6vw, 5rem); background: var(--navy); }
.facts--pinned .facts__pin {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: 0;
}
.facts--pinned .facts__track {
  overflow: visible;
  transform: translate3d(0, 0, 0);
  will-change: transform;
  scroll-snap-type: none;
  padding-inline: 0;
  gap: 0;
}
.facts--pinned .fact {
  flex: 0 0 100vw;
  width: 100vw;
  min-height: 100vh;
  min-height: 100svh;
  border-radius: 0;
  border-right: 1px solid rgba(246, 242, 235, 0.14);
  padding: 0 max(clamp(1.25rem, 4vw, 2.5rem), calc((100vw - 1090px) / 2));
  justify-content: center;
  gap: clamp(1.6rem, 2.6vw, 2.4rem);
}
.facts--pinned .fact__claim { font-size: clamp(1.9rem, 3.4vw, 3.4rem); max-width: 22ch; }
.facts--pinned .fact__sub { font-size: clamp(0.98rem, 1.35vw, 1.15rem); max-width: 54ch; }
.fact__sub { margin-top: clamp(0.9rem, 1.8vw, 1.4rem); }
.facts--pinned .facts__progress {
  position: absolute;
  bottom: clamp(1.6rem, 3.5vw, 2.8rem);
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
}
.facts--pinned .facts__count { color: rgba(246, 242, 235, 0.55); }
.facts--pinned .facts__barwrap { background: rgba(246, 242, 235, 0.18); }
.facts--pinned .facts__barwrap span { background: linear-gradient(90deg, var(--blue), var(--peri)); }

/* trend visuals: two-column poster layout, big geometry */
.fact__visual { position: relative; width: 100%; min-width: 0; margin-top: clamp(1.4rem, 2.4vw, 2.2rem); }
.fact__head { min-width: 0; }
.facts--pinned .fact[data-trend="1"], .facts--pinned .fact[data-trend="2"] {
  flex-direction: row;
  align-items: center;
  gap: clamp(2.5rem, 5vw, 5rem);
}
.facts--pinned .fact[data-trend="1"] .fact__head,
.facts--pinned .fact[data-trend="2"] .fact__head { flex: 0 0 46%; }
.facts--pinned .fact .fact__visual { margin-top: 0; }
.facts--pinned .fact[data-trend="1"] .fact__visual,
.facts--pinned .fact[data-trend="2"] .fact__visual { flex: 1; }
.facts--pinned .fact { justify-content: center; position: relative; z-index: 1; }
.facts--pinned .facts__pin::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(117, 141, 247, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(117, 141, 247, 0.05) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask-image: radial-gradient(ellipse 85% 75% at 50% 45%, #000 30%, transparent 78%);
          mask-image: radial-gradient(ellipse 85% 75% at 50% 45%, #000 30%, transparent 78%);
}
.facts--pinned .facts__pin::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(720px 480px at 88% -10%, rgba(33, 75, 255, 0.22), transparent 70%);
}
.facts--pinned .fact[data-trend="3"] { gap: clamp(1.2rem, 2.2vw, 2rem); }
.facts--pinned .fact[data-trend="3"] .fact__head { max-width: 900px; }
.facts--pinned .fact[data-trend="3"] .fact__visual { margin-top: clamp(1rem, 2vw, 1.8rem); }

@media (min-width: 701px) and (max-width: 900px) {
  .facts--pinned .fact[data-trend="1"],
  .facts--pinned .fact[data-trend="2"] {
    flex-direction: column;
    align-items: stretch;
    gap: clamp(1rem, 2vh, 1.4rem);
  }
  .facts--pinned .fact[data-trend="1"] .fact__head,
  .facts--pinned .fact[data-trend="2"] .fact__head {
    flex: 0 0 auto;
    max-width: 680px;
  }
  .facts--pinned .fact[data-trend="1"] .fact__visual,
  .facts--pinned .fact[data-trend="2"] .fact__visual {
    flex: 0 1 auto;
    width: min(100%, 720px);
    align-self: center;
  }
}
.tv__tag {
  position: absolute;
  top: -1.1rem;
  right: 0;
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--peri);
  background: var(--navy);
  border: 1px solid rgba(117, 141, 247, 0.4);
  border-radius: var(--r-xs);
  padding: 0.24rem 0.5rem;
}

.tv1 { display: flex; align-items: stretch; gap: clamp(1.6rem, 3vw, 2.8rem); }
.tv1__counter { display: flex; flex-direction: column; gap: 0.4rem; justify-content: flex-end; flex: 0 0 auto; }
.tv1__cap { font-size: 9.5px; color: rgba(246, 242, 235, 0.5); }
.tv1__cap--dim { color: rgba(246, 242, 235, 0.28); }
.tv1__num {
  font-family: var(--f-head);
  font-weight: 800;
  font-size: clamp(4rem, 7vw, 6.5rem);
  line-height: 0.95;
  color: #fff;
  font-variant-numeric: tabular-nums;
}
.tv1__chartwrap { flex: 1; display: flex; flex-direction: column; justify-content: flex-end; gap: 0.7rem; min-width: 0; }
.tv1__chart { display: flex; align-items: flex-end; gap: 5px; height: 150px; }
.tv1__col {
  flex: 1;
  display: flex;
  flex-direction: column-reverse;
  gap: 4px;
  max-width: 30px;
  min-height: 0;
}
.tv1__blk {
  display: block;
  height: 16px;
  border-radius: var(--r-xs);
  background: linear-gradient(180deg, var(--peri), var(--blue));
  box-shadow: 0 0 16px rgba(117, 141, 247, 0.35);
  transform: scaleY(0);
  transform-origin: bottom;
  animation: blkIn 0.32s var(--ease) forwards;
}
@keyframes blkIn { to { transform: none; } }
.tv1__blk--pre { opacity: 0.3; animation: none; transform: none; }
.tv1__axislabels { display: flex; justify-content: space-between; }
.tv1__axislabels .mono { font-size: 8.5px; color: rgba(246, 242, 235, 0.45); }

.ice { display: flex; flex-direction: column; justify-content: center; }
.ice__svg { width: 100%; height: auto; max-height: calc(100svh - 360px); display: block; margin-inline: auto; }
/* iceberg: organic faceted berg left, one text column right,
   full-width water tint below the line (mobile swaps to .icem) */
.ice__berg { fill: url(#iceGrad); stroke: rgba(117, 141, 247, 0.35); stroke-width: 2.2; stroke-linejoin: round; }
.ice__tip { fill: rgba(138, 141, 150, 0.92); stroke: rgba(250, 251, 245, 0.5); stroke-width: 2.8; stroke-linejoin: round; }
.ice__sea { opacity: 0; transition: opacity 0.9s ease 0.25s; }
.ice__water { fill: none; stroke: rgba(250, 251, 245, 0.32); stroke-width: 1; transform-box: fill-box; transform-origin: left center; transform: scaleX(0.12); transition: transform 0.9s var(--ease) 0.3s; }
.ice__lbl { fill: rgba(246, 242, 235, 0.5); font-family: var(--f-mono); font-size: 14px; font-weight: 700; letter-spacing: 0.16em; }
.ice__lbl--deep { fill: var(--peri); }
.ice__berg, .ice__tip { opacity: 0; transform: translateY(12px); transition: opacity 0.8s ease 0.15s, transform 0.8s var(--ease) 0.15s; }
.ice.animate .ice__berg, .ice.animate .ice__tip { opacity: 1; transform: none; }
.ice.animate .ice__sea { opacity: 1; }
.ice__t { fill: rgba(246, 242, 235, 0.94); font-family: var(--f-body); font-size: 23px; font-weight: 600; }
.ice__t--air { fill: rgba(246, 242, 235, 0.6); }
.ice__g { opacity: 0; transform: translateY(14px); transition: opacity 0.6s ease, transform 0.6s var(--ease); }
.ice.animate .ice__g { opacity: 1; transform: none; }
.ice.animate .ice__g--air { transition-delay: 0.05s; }
.ice.animate .ice__g--deep:nth-of-type(2) { transition-delay: 0.45s; }
.ice.animate .ice__g--deep:nth-of-type(3) { transition-delay: 0.6s; }
.ice.animate .ice__g--deep:nth-of-type(4) { transition-delay: 0.75s; }
.ice.animate .ice__g--deep:nth-of-type(5) { transition-delay: 0.9s; }
.ice.animate .ice__g--deep:nth-of-type(6) { transition-delay: 1.05s; }
.ice.animate .ice__g--deep:nth-of-type(7) { transition-delay: 1.2s; }
.ice.animate .ice__water { transform: none; }

.tv3 { max-width: 700px; }
.tv3__svg { width: 100%; height: auto; display: block; }
.tv3__gap { fill: rgba(117, 141, 247, 0.2); }
.tv3__line { fill: none; stroke-width: 5; stroke-linecap: round; }
.tv3__line--ai { stroke: var(--blue); }
.tv3__line--you { stroke: rgba(246, 242, 235, 0.5); }
.tv3__dot { fill: var(--peri); }
.tv3__dot--you { fill: rgba(246, 242, 235, 0.6); }
.tv3__lbl { font-family: var(--f-mono); font-size: 15px; letter-spacing: 0.12em; opacity: 0; transition: opacity 0.8s ease; }
.tv3__lbl--ai { fill: var(--peri); }
.tv3__lbl--you { fill: rgba(246, 242, 235, 0.6); }
.tv3__gaplbl {
  font-family: var(--f-mono);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.26em;
  fill: #fff;
  opacity: 0;
  transition: opacity 0.8s ease 0.25s;
}
.tv3__svg.done .tv3__lbl, .tv3__svg.done .tv3__gaplbl { opacity: 1; }
.tv3__axis { stroke: rgba(246, 242, 235, 0.22); stroke-width: 2; }
.tv3__axislbl { font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.12em; fill: rgba(246, 242, 235, 0.45); }

/* ---------- 02 · spectrum v2 ---------- */

/* ---------- 03 · tracks + table ---------- */

.tracks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin: 2.6rem 0 2.4rem;
}
.track {
  position: relative;
  background: var(--navy);
  color: var(--cream);
  border-radius: var(--r-xl);
  padding: clamp(1.7rem, 3.2vw, 2.5rem);
  overflow: hidden;
}
.track--alt { background: linear-gradient(140deg, var(--blue) 0%, var(--blue-deep) 100%); }
.track__no { font-size: 11px; color: var(--peri); }
.track--alt .track__no { color: rgba(255, 255, 255, 0.8); }
.track__name {
  font-family: var(--f-head);
  font-weight: 800;
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  letter-spacing: -0.012em;
  line-height: 1.12;
  margin: 0.9rem 0 0.55rem;
  max-width: 420px;
}
.track__sub { color: rgba(246, 242, 235, 0.78); font-size: 1.02rem; }

.vs { margin-top: 3.2rem; }
.vs__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  font-size: 12px;
  margin-bottom: 0.8rem;
  padding-inline: 0.2rem;
}
.vs__head .vs__s { color: var(--red); }
.vs__head .vs__w { color: var(--blue); }
.vs__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: stretch;
  padding-block: 0.45rem;
  border-top: 1px solid var(--hair);
}
.vs__cell {
  padding: 1.05rem 1.2rem;
  border-radius: var(--r-md);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.5;
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}
.vs__cell--s { background: rgba(184, 69, 44, 0.06); color: var(--red-deep); }
.vs__cell--w { background: rgba(33, 75, 255, 0.06); color: var(--blue-deep); font-weight: 600; }
.ico {
  flex: 0 0 auto;
  width: 22px; height: 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-top: 0.05rem;
}
.ico svg { width: 11px; height: 11px; display: block; }
.ico--x { border: 1.5px solid rgba(184, 69, 44, 0.55); color: var(--red); background: rgba(184, 69, 44, 0.07); }
.ico--tick { background: var(--green); color: #fff; }

.bridge { margin-top: 4rem; }
.jobs { margin-top: 2.6rem; max-width: 860px; }

/* ---------- 04 · the runs (tabbed builds) ---------- */

.runs {
  background: var(--navy-3);
  color: var(--cream);
  padding-block: clamp(2.5rem, 5vw, 4rem);
}
/* s3 ends with the full-bleed runs band and flows straight into the
   dark demo section — no cream padding strip between the two */
#s3 { padding-bottom: 0; }
#s3 .runs { margin-bottom: 0; }
.runs__tabs {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  border: 1px solid rgba(246, 242, 235, 0.16);
}
@media (max-width: 1100px) { .runs__tabs { grid-template-columns: repeat(3, 1fr); } }
.runs__tab {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  text-align: left;
  background: #050505;
  border: 0;
  border-right: 1px solid rgba(246, 242, 235, 0.16);
  padding: 1.15rem 1.4rem 1.25rem;
  cursor: pointer;
  transition: background 0.25s ease;
}
.runs__tab:last-child { border-right: 0; }
.runs__tab:hover { background: rgba(117, 141, 247, 0.08); }
.runs__tab__no { font-size: 11px; font-weight: 700; color: rgba(246, 242, 235, 0.45); }
.runs__tab__lbl {
  font-family: var(--f-head);
  font-weight: 700;
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  color: rgba(246, 242, 235, 0.75);
  letter-spacing: -0.01em;
}
.runs__tab.is-active { background: var(--blue); border-color: transparent; box-shadow: inset 0 0 0 1.5px var(--peri); }
.runs__tab.is-active .runs__tab__no { color: rgba(255, 255, 255, 0.8); }
.runs__tab.is-active .runs__tab__lbl { color: #fff; }

.runs__stage { padding-top: clamp(2.5rem, 5vw, 4.5rem); }
.runs__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: clamp(2.2rem, 5vw, 3.8rem);
}
.runs__eyebrow { display: block; font-size: 11px; font-weight: 700; color: var(--peri); margin-bottom: 1rem; }
.runs__title {
  font-family: var(--f-head);
  font-weight: 800;
  font-size: clamp(2.1rem, 5.4vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: -0.022em;
  color: #fff;
  max-width: 14ch;
}
.runs__replay {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  border: 1.5px solid rgba(246, 242, 235, 0.35);
  border-radius: 999px;
  color: var(--cream);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.8rem 1.5rem;
  cursor: pointer;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.runs__replay:hover { border-color: var(--cream); transform: translateY(-2px); }

/* the runline */
.runline { position: relative; }
.runline ol { list-style: none; display: flex; }
.runline__step {
  flex: 1;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  padding-right: 1.5rem;
}
.runline__dot {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--black);
  border: 1.5px solid rgba(246, 242, 235, 0.35);
  display: grid;
  place-items: center;
  position: relative;
  z-index: 2;
  transition: border-color 0.3s ease;
}
.runline__num { font-size: 14px; font-weight: 700; color: rgba(246, 242, 235, 0.85); transition: opacity 0.25s ease; }
.runline__tick {
  position: absolute;
  width: 20px; height: 20px;
  color: var(--green);
  opacity: 0;
  transform: scale(0.4);
  transition: opacity 0.3s ease, transform 0.3s var(--ease);
}
.runline__step.done .runline__num { opacity: 0; }
.runline__step.done .runline__tick { opacity: 1; transform: none; }
.runline__step.done .runline__dot { border-color: var(--green); }
.runline__name {
  font-weight: 700;
  font-size: 0.98rem;
  line-height: 1.35;
  color: #fff;
  max-width: 200px;
}
.runline__chip {
  width: max-content;
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 0.13em;
  color: var(--green);
  background: rgba(31, 169, 113, 0.12);
  border-radius: var(--r-xs);
  padding: 0.28rem 0.5rem;
}
.runline__chip--trigger { color: var(--peri); background: rgba(117, 141, 247, 0.14); }
.runline__status {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--green);
  opacity: 0;
  transform: translateY(5px);
  transition: opacity 0.4s ease 0.15s, transform 0.4s var(--ease) 0.15s;
}
.runline__step.done .runline__status { opacity: 1; transform: none; }
.runline__rail, .runline__fill {
  position: absolute;
  top: 26px;
  left: 26px;
  height: 2px;
  border-radius: 2px;
  pointer-events: none;
  z-index: 0;
}
.runline__rail { right: 0; background: rgba(246, 242, 235, 0.18); }
.runline__fill {
  width: 0;
  background: linear-gradient(90deg, var(--blue), var(--peri));
  transition: width 0.55s var(--ease);
}

.runs__foot { margin-top: clamp(2.2rem, 4.5vw, 3.4rem); }
.proof {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: clamp(1.4rem, 4vw, 3rem);
  padding: clamp(1.4rem, 2.6vw, 2rem) clamp(1.5rem, 3vw, 2.4rem);
  border: 1px solid rgba(246, 242, 235, 0.16);
  border-radius: var(--r-lg);
}
.proof__stat { display: flex; flex-direction: column; gap: 0.45rem; }
.proof__cap { font-size: 10px; color: var(--peri); }
.proof__stat--win .proof__cap { color: rgba(246, 242, 235, 0.55); }
.proof__num {
  font-family: var(--f-head);
  font-weight: 800;
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  line-height: 1;
  color: #fff;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.01em;
}
.proof__num small { font-size: 1.05rem; font-weight: 700; color: rgba(246, 242, 235, 0.55); margin-left: 0.4rem; letter-spacing: 0; }
.proof__stat--win .proof__num { color: var(--peri); }
.proof__arrow { font-size: 2rem; color: rgba(246, 242, 235, 0.35); }

.microlabel { margin-top: 1.4rem; font-size: 10.5px; color: rgba(246, 242, 235, 0.45); letter-spacing: 0.16em; }
.runs__body { max-width: 680px; color: rgba(246, 242, 235, 0.78); margin-top: 1.6rem; font-size: 1rem; line-height: 1.68; }

/* buckets (five jobs) */
.buckets {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(185px, 1fr));
  gap: 12px;
  margin-top: 2.8rem;
  margin-bottom: clamp(2.2rem, 4.5vw, 3.2rem);
}
.bucket {
  background: var(--card);
  border: 1px solid var(--card-line);
  border-radius: var(--r-lg);
  padding: 1.25rem 1.2rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.bucket__no { font-size: 10px; font-weight: 700; color: var(--peri); }
.bucket__name {
  font-family: var(--f-head);
  font-weight: 800;
  font-size: 1rem;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--head);
}
.bucket__desc { font-size: 0.83rem; line-height: 1.55; color: #3A3F4C; }

/* chat + digest mocks inside build panels */
.chatmock {
  background: #0d0d0d;
  border: 1px solid rgba(246, 242, 235, 0.14);
  border-radius: var(--r-md);
  padding: 1.15rem 1.25rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  max-width: 720px;
}
.chatmock__q {
  align-self: flex-end;
  background: var(--blue);
  color: #fff;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 0.65rem 1rem;
  border-radius: var(--r-md) var(--r-md) var(--r-xs) var(--r-md);
  max-width: 80%;
}
.chatmock__steps { display: flex; flex-direction: column; gap: 0.35rem; }
.chatmock__steps span {
  font-family: var(--f-mono);
  font-size: 10.5px;
  color: rgba(246, 242, 235, 0.65);
}
.chatmock__steps span::before { content: "\2713\00a0\00a0"; color: var(--green); font-weight: 700; }
.chatmock__answer {
  background: var(--navy-2);
  border: 1px solid rgba(117, 141, 247, 0.3);
  border-radius: var(--r-md);
  padding: 1rem 1.1rem;
}
.chatmock__answer strong {
  display: block;
  color: #fff;
  font-size: 0.95rem;
  line-height: 1.45;
  margin-bottom: 0.7rem;
}
.chatmock__row {
  display: grid;
  grid-template-columns: 1.5fr 0.7fr auto;
  gap: 0.9rem;
  align-items: center;
  padding: 0.5rem 0;
  border-top: 1px solid rgba(246, 242, 235, 0.1);
  font-size: 0.83rem;
  color: rgba(246, 242, 235, 0.8);
}
.chatmock__row .mono {
  font-size: 8.5px;
  color: var(--peri);
  border: 1px solid rgba(117, 141, 247, 0.35);
  border-radius: var(--r-xs);
  padding: 0.18rem 0.42rem;
}

.damock {
  background: #0d0d0d;
  border: 1px solid rgba(246, 242, 235, 0.14);
  border-radius: var(--r-md);
  overflow: hidden;
  max-width: 720px;
}
.damock__head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 1.15rem;
  background: var(--navy);
  border-bottom: 1px solid rgba(246, 242, 235, 0.1);
}
.damock__head .mono { font-size: 9px; font-weight: 700; color: var(--peri); }
.damock__body { padding: 1.15rem 1.25rem 1.3rem; }
.damock__title {
  font-family: var(--f-head);
  font-weight: 800;
  font-size: 1.18rem;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: #fff;
}
.damock__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin: 0.95rem 0 1.1rem;
  padding: 0.85rem 1.05rem;
  background: var(--blue);
  border-radius: var(--r-sm);
}
.damock__stat b {
  display: block;
  font-family: var(--f-head);
  font-weight: 800;
  font-size: 1.35rem;
  line-height: 1;
  color: #fff;
}
.damock__stat span {
  display: block;
  padding-top: 0.35rem;
  font-family: var(--f-mono);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}
.damock__item { border-top: 1px solid rgba(246, 242, 235, 0.12); padding-top: 0.95rem; }
.damock__chip {
  display: inline-block;
  font-family: var(--f-mono);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #8EA1FF;
  background: rgba(117, 141, 247, 0.14);
  border-radius: var(--r-xs);
  padding: 0.24rem 0.46rem;
  margin-bottom: 0.5rem;
}
.damock__item strong { display: block; color: #fff; font-size: 0.95rem; line-height: 1.4; margin-bottom: 0.4rem; }
.damock__item p { font-size: 0.85rem; line-height: 1.55; color: rgba(246, 242, 235, 0.75); }

/* ---------- 05 · track one (dark) ---------- */

.step5 {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 1.8rem;
  margin-top: 3.2rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--hair-d);
}
.step5 { align-items: start; }
.step5__no { font-size: clamp(1.3rem, 2.2vw, 1.7rem); line-height: 1.16; font-weight: 700; color: var(--peri); font-family: var(--f-mono); }
.step5 .h3 { margin-bottom: 0.85rem; }
.step5 .body { margin-bottom: 0; max-width: 700px; }

/* the 80:20 five elements */
.elements { margin-top: 2.8rem; }
.elements__eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: var(--peri);
  margin-bottom: 1.1rem;
}
.elements__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
}
.element {
  background: var(--navy-2);
  border: 1px solid rgba(246, 242, 235, 0.12);
  border-radius: var(--r-md);
  padding: 1.15rem 1.15rem 1.3rem;
  min-height: 148px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 2.1rem;
}
.element__no {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-family: var(--f-head);
  font-weight: 800;
  font-size: 0.95rem;
  display: grid;
  place-items: center;
}
.element__name {
  font-family: var(--f-head);
  font-weight: 800;
  font-size: 1.02rem;
  line-height: 1.28;
  letter-spacing: -0.01em;
  color: var(--cream);
}

/* step visuals: UI-style panels */
.step5__eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: var(--peri);
  letter-spacing: 0.18em;
  margin: 3.2rem 0 -1.7rem;
}
.step5__content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: clamp(1.8rem, 3vw, 2.8rem);
  align-items: start;
}
.step5__visual { position: relative; min-width: 0; }
.step5__vistag {
  position: absolute;
  top: -0.8rem;
  right: 0.9rem;
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--peri);
  background: var(--navy);
  border: 1px solid rgba(117, 141, 247, 0.4);
  border-radius: var(--r-xs);
  padding: 0.24rem 0.5rem;
}
.uipanel {
  background: var(--navy-2);
  border: 1px solid rgba(246, 242, 235, 0.14);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 28px 70px -34px rgba(0, 0, 0, 0.65);
}
.uipanel__bar {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.7rem 1rem;
  background: var(--navy-3);
  border-bottom: 1px solid rgba(246, 242, 235, 0.08);
}
.uipanel__dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(246, 242, 235, 0.22); }
.uipanel__title { font-size: 9px; color: rgba(246, 242, 235, 0.5); margin-left: 0.5rem; letter-spacing: 0.16em; }

.kb { display: grid; grid-template-columns: 42% 1fr; }
.kb__folders {
  background: var(--navy-3);
  padding: 1rem 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  border-right: 1px solid rgba(246, 242, 235, 0.08);
}
.kb__label { font-size: 8.5px; font-weight: 700; color: rgba(246, 242, 235, 0.4); letter-spacing: 0.18em; margin-bottom: 0.3rem; }
.kb__folder {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(246, 242, 235, 0.72);
  padding: 0.5rem 0.6rem;
  border-radius: var(--r-sm);
  border: 1px solid transparent;
  white-space: nowrap;
}
.kb__folder svg { width: 15px; height: 15px; flex: 0 0 auto; color: var(--peri); opacity: 0.85; }
.kb__folder.is-active {
  background: rgba(33, 75, 255, 0.2);
  border-color: rgba(33, 75, 255, 0.55);
  color: #fff;
}
.kb__folder.is-active svg { opacity: 1; color: #9DB0FF; }
.kb__chat { padding: 1rem; display: flex; flex-direction: column; gap: 0.8rem; }
.chat__msg {
  border-radius: var(--r-md);
  padding: 0.7rem 0.9rem;
  font-size: 0.83rem;
  line-height: 1.55;
  max-width: 94%;
}
.chat__msg--user {
  align-self: flex-end;
  background: var(--blue);
  color: #fff;
  font-weight: 600;
  border-bottom-right-radius: 4px;
}
.chat__msg--ai {
  align-self: flex-start;
  background: var(--navy-3);
  border: 1px solid rgba(117, 141, 247, 0.3);
  color: rgba(246, 242, 235, 0.88);
  border-bottom-left-radius: 4px;
}
.chat__chip {
  display: table;
  font-size: 7.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--peri);
  background: rgba(117, 141, 247, 0.12);
  border-radius: var(--r-xs);
  padding: 0.2rem 0.42rem;
  margin-bottom: 0.5rem;
}
.chat__sources { display: flex; gap: 0.4rem; flex-wrap: wrap; margin-top: 0.65rem; }
.chat__sources span {
  font-family: var(--f-mono);
  font-size: 7.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(246, 242, 235, 0.55);
  border: 1px solid rgba(246, 242, 235, 0.18);
  border-radius: var(--r-xs);
  padding: 0.2rem 0.42rem;
}

.skills { display: grid; grid-template-columns: 1fr auto 1fr; gap: 0.9rem; padding: 1rem; align-items: start; }
.skills__col { display: flex; flex-direction: column; gap: 0.4rem; min-width: 0; }
.skills__arrow { align-self: center; color: var(--peri); font-size: 1.3rem; padding-top: 1.6rem; }
.doc-row, .skill-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.5rem 0.6rem;
  border-radius: var(--r-sm);
  line-height: 1.3;
}
.doc-row { background: var(--navy-3); border: 1px solid rgba(246, 242, 235, 0.1); color: rgba(246, 242, 235, 0.72); }
.doc-row svg { width: 12px; height: 14px; flex: 0 0 auto; color: rgba(246, 242, 235, 0.45); }
.skill-row { background: rgba(31, 169, 113, 0.1); border: 1px solid rgba(31, 169, 113, 0.4); color: #fff; }
.skill-row > svg:first-child { width: 11px; height: 15px; flex: 0 0 auto; color: var(--green); }
.skill-row__tick { width: 13px; height: 13px; margin-left: auto; flex: 0 0 auto; color: var(--green); }
.skills__foot {
  padding: 0.85rem 1rem;
  border-top: 1px solid rgba(246, 242, 235, 0.08);
  font-size: 8.5px;
  color: rgba(246, 242, 235, 0.45);
  letter-spacing: 0.16em;
  line-height: 1.8;
}

.chain { display: flex; align-items: center; flex-wrap: wrap; gap: 0.5rem; padding: 1.2rem 1rem; }
.chain__step {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(246, 242, 235, 0.85);
  background: var(--navy-3);
  border: 1px solid rgba(246, 242, 235, 0.14);
  border-radius: 999px;
  padding: 0.48rem 0.85rem;
  white-space: nowrap;
}
.chain__step--final { background: var(--blue); border-color: var(--blue); color: #fff; }
.chain__tick {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(31, 169, 113, 0.16);
  color: var(--green);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}
.chain__tick svg { width: 10px; height: 10px; }

@media (max-width: 1100px) {
  .step5__content { grid-template-columns: 1fr; gap: 1.6rem; }
}
@media (max-width: 560px) {
  .kb { grid-template-columns: 1fr; }
  .kb__folders {
    flex-direction: row;
    flex-wrap: wrap;
    border-right: 0;
    border-bottom: 1px solid rgba(246, 242, 235, 0.08);
  }
  .kb__label { width: 100%; }
  .skills { grid-template-columns: 1fr; }
  .skills__arrow { transform: rotate(90deg); padding: 0; justify-self: center; }
}

.compare {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 1.25rem;
  margin-top: 3rem;
}

/* lazy vs best panel (5.3) */
.tvcmp__row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  padding: 1.1rem 1.2rem 1.25rem;
  border-top: 1px solid rgba(246, 242, 235, 0.08);
}
.tvcmp__row:first-of-type { border-top: 0; }
.tvcmp__tag { display: block; font-size: 9px; font-weight: 700; letter-spacing: 0.16em; margin-bottom: 0.55rem; }
.tvcmp__row--lazy .tvcmp__tag { color: #E8A08C; }
.tvcmp__row--best .tvcmp__tag { color: #7EE2B8; }
.tvcmp__copy { font-size: 0.85rem; line-height: 1.6; color: rgba(246, 242, 235, 0.75); }
.tvcmp__ico {
  width: 28px; height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-top: 0.15rem;
}
.tvcmp__ico svg { width: 13px; height: 13px; }
.tvcmp__ico--x { border: 1.5px solid rgba(224, 106, 74, 0.65); color: var(--red-line); background: rgba(224, 106, 74, 0.08); }
.tvcmp__ico--tick { background: var(--green); color: #fff; }
.tvcmp__steps { list-style: none; counter-reset: cs; margin: 0.2rem 0 0; display: flex; flex-direction: column; gap: 0.45rem; }
.tvcmp__steps li {
  counter-increment: cs;
  display: flex;
  gap: 0.55rem;
  font-size: 0.83rem;
  line-height: 1.5;
  color: rgba(246, 242, 235, 0.88);
}
.tvcmp__steps li::before {
  content: "0" counter(cs);
  flex: 0 0 auto;
  font-family: var(--f-mono);
  font-size: 9px;
  font-weight: 700;
  color: #7EE2B8;
  border: 1px solid rgba(31, 169, 113, 0.5);
  border-radius: var(--r-xs);
  padding: 0.16rem 0.32rem;
  height: max-content;
  margin-top: 0.12rem;
}

/* ---------- 06 · track two ---------- */

.s6__sub { margin-top: 3rem; }

.startpanel { margin: 0.5rem 0 2.8rem; max-width: 860px; }
.flowchips { display: flex; flex-wrap: wrap; align-items: center; gap: 0.45rem; margin: 0.2rem 0 0.75rem; }
.flowchips__src {
  font-family: var(--f-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 0.42rem 0.68rem;
  border-radius: var(--r-sm);
}
.flowchips__src--red { background: rgba(224, 106, 74, 0.15); color: #E8A08C; border: 1px solid rgba(224, 106, 74, 0.5); }
.flowchips__src--blue { background: var(--blue); color: #fff; border: 1px solid var(--blue); }
.flowchips__idea {
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.42rem 0.68rem;
  border-radius: 999px;
  background: rgba(246, 242, 235, 0.08);
  border: 1px solid rgba(246, 242, 235, 0.16);
  color: rgba(246, 242, 235, 0.82);
}
.tvcmp__copy strong { font-weight: 700; }
.tvcmp__row--lazy .tvcmp__copy strong { color: #E8A08C; }
.tvcmp__row--best .tvcmp__copy strong { color: #7EE2B8; }

/* method: the whole journey in one panel */
/* the Impact First Method: the flagship object on the page — branded
   header, accent-topped frame, distinct from every other card */
.method { margin-top: clamp(4.2rem, 8vw, 6rem); }
.method__head { margin-bottom: 1.8rem; }
.method__eyebrow {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.24em;
  color: #fff;
  background: var(--blue);
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  margin-bottom: 1.1rem;
}
.method__title {
  font-family: var(--f-head);
  font-weight: 800;
  font-size: clamp(1.9rem, 3.6vw, 2.8rem);
  letter-spacing: -0.018em;
  line-height: 1.08;
  color: var(--head);
  margin-bottom: 0.8rem;
}
.method__strap { font-size: clamp(1rem, 1.6vw, 1.15rem); line-height: 1.6; color: var(--body); max-width: 620px; }
.mjourney {
  position: relative;
  overflow: hidden;
  background: var(--card);
  border: 1.5px solid rgba(33, 75, 255, 0.25);
  border-radius: var(--r-xl);
  padding: clamp(2rem, 4vw, 3.2rem) clamp(1.25rem, 3vw, 2.4rem) clamp(1.6rem, 3.4vw, 2.8rem);
  box-shadow: 0 1px 2px rgba(16, 19, 26, 0.04), 0 24px 64px -30px rgba(33, 75, 255, 0.35);
}
.mjourney::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--blue), var(--peri));
}
.mj { list-style: none; position: relative; display: flex; flex-direction: column; gap: 2rem; }
.mj::before {
  content: "";
  position: absolute;
  left: 21px;
  top: 30px;
  bottom: 30px;
  width: 2px;
  background: linear-gradient(180deg, var(--blue) 0%, rgba(33, 75, 255, 0.12) 100%);
}
.mj__row {
  position: relative;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 1.4rem;
  align-items: start;
}
.mj__node {
  position: relative;
  z-index: 1;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--cream);
  border: 2px solid var(--blue);
  color: var(--blue-deep);
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.mj__node--gate { border-style: dashed; border-color: var(--peri); font-size: 13px; }
.mj__body {
  display: grid;
  grid-template-columns: minmax(160px, 210px) 1fr;
  gap: 0.2rem 1.7rem;
  align-items: baseline;
  padding-top: 0.3rem;
  min-width: 0;
}
.mj__name {
  font-family: var(--f-head);
  font-weight: 800;
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--head);
  line-height: 1.25;
}
.mj__detail { min-width: 0; }
.mj__desc { font-size: 0.93rem; line-height: 1.62; color: #3A3F4C; max-width: 74ch; }
.mj__out {
  display: inline-block;
  margin-top: 0.55rem;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.7;
  color: #3A3F4C;
  background: rgba(33, 75, 255, 0.05);
  border: 1px solid rgba(33, 75, 255, 0.22);
  border-radius: var(--r-sm);
  padding: 0.45rem 0.65rem;
}

.mj__row--gate .mj__body {
  grid-column: 1 / -1;
  background: var(--navy);
  border: 1.5px solid var(--peri);
  border-radius: var(--r-lg);
  padding: 1.35rem 1.5rem;
}
.mj__gatetag {
  display: block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--peri);
  margin-bottom: 0.4rem;
}
.mj__row--gate .mj__name { color: #fff; }
.mj__row--gate .mj__desc { color: rgba(246, 242, 235, 0.85); }
.mj__row--gate .mj__node {
  border-style: dashed;
  border-color: var(--peri);
  color: var(--blue-deep);
  background: var(--cream);
  align-self: center;
}

@media (max-width: 900px) {
  .mj::before { left: 17px; }
  .mj__row { grid-template-columns: 36px 1fr; gap: 1rem; }
  .mj__node { width: 36px; height: 36px; font-size: 10.5px; }
  .mj__body { grid-template-columns: 1fr; gap: 0.45rem; }
  .mj__row--gate .mj__body { padding: 1.1rem 1.2rem; }
}

.workflows {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  margin-top: 4.2rem;
}
.workflows__head { grid-column: 1 / -1; margin-bottom: 0.6rem; }
.workflows__eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 0.9rem;
}
.workflows__head .h3 { margin-bottom: 0.6rem; }
.workflows__lead { font-size: 0.98rem; color: #3A3F4C; max-width: 60ch; }
.wf {
  grid-column: span 2;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  background: var(--card);
  border: 1px solid var(--card-line);
  border-radius: var(--r-lg);
  padding: 1.45rem 1.5rem;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.wf:hover { border-color: rgba(33, 75, 255, 0.5); transform: translateY(-2px); }
.wf.on {
  background: rgba(33, 75, 255, 0.05);
  border-color: var(--blue);
  box-shadow: inset 0 0 0 1px var(--blue);
}
.wf.on::after {
  content: "SELECTED";
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  font-family: var(--f-mono);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--blue);
  border: 1px solid rgba(33, 75, 255, 0.4);
  border-radius: var(--r-xs);
  padding: 0.2rem 0.4rem;
}
.wf h4 { font-family: var(--f-head); font-weight: 800; font-size: 1.02rem; color: var(--head); margin-bottom: 0.5rem; padding-right: 1.5rem; }
.wf.on h4 { color: var(--blue-deep); }
.wf p { font-size: 0.88rem; line-height: 1.58; color: #3A3F4C; }

/* ---------- calculator ---------- */

.calc { margin-top: 4.8rem; }
.calc__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(1.6rem, 3vw, 2.6rem);
  align-items: center;
}
.calc__row { margin-bottom: 1.7rem; }
.calc__row:last-child { margin-bottom: 0; }
.calc__lblrow {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1.2rem;
  margin-bottom: 0.65rem;
}
.calc__lblrow label { font-size: 0.9rem; font-weight: 600; color: #20242E; max-width: 46ch; line-height: 1.45; }
.calc__lblrow output { font-size: 1rem; font-weight: 700; color: var(--blue); white-space: nowrap; }

input[type="range"] {
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  height: 44px;
  background: transparent;
  cursor: pointer;
}
input[type="range"]::-webkit-slider-runnable-track {
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--blue) var(--fill, 50%), #E4DFD3 var(--fill, 50%));
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px; height: 22px;
  margin-top: -9px;
  border-radius: 50%;
  background: var(--blue);
  border: 3px solid #fff;
  box-shadow: 0 1px 8px rgba(16, 19, 26, 0.35);
}
input[type="range"]::-moz-range-track { height: 4px; border-radius: 2px; background: #E4DFD3; }
input[type="range"]::-moz-range-progress { height: 4px; border-radius: 2px; background: var(--blue); }
input[type="range"]::-moz-range-thumb {
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--blue);
  border: 3px solid #fff;
  box-shadow: 0 1px 8px rgba(16, 19, 26, 0.35);
}

.calc__out {
  background: var(--navy);
  border-radius: var(--r-lg);
  padding: clamp(1.6rem, 3vw, 2.3rem);
  color: var(--cream);
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.calc__cap { font-size: 10px; color: var(--peri); }
.calc__wf {
  width: max-content;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--peri);
  background: rgba(117, 141, 247, 0.12);
  border-radius: var(--r-xs);
  padding: 0.28rem 0.5rem;
}
.calc__big {
  font-family: var(--f-head);
  font-weight: 800;
  font-size: clamp(2.4rem, 4.8vw, 3.6rem);
  line-height: 1;
  letter-spacing: -0.015em;
  color: #fff;
  font-variant-numeric: tabular-nums;
}
.calc__fte { color: rgba(246, 242, 235, 0.8); font-size: 0.97rem; line-height: 1.55; }
.calc__fte strong { color: #fff; }
.calc__note { font-size: 9.5px; letter-spacing: 0.15em; color: rgba(246, 242, 235, 0.42); margin-top: 0.5rem; }

/* ---------- untangling ---------- */

.untangle {
  position: relative;
  margin-block: clamp(4rem, 8vw, 6.5rem);
  background: var(--navy);
  color: var(--cream);
}
.untangle--pinned { height: 300vh; }
.untangle__pin {
  position: sticky;
  top: 0;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-block: 2.5rem;
}
.untangle__wrap { width: 100%; }
.untangle__head { margin-bottom: 2.2rem; }
.untangle__title {
  font-family: var(--f-head);
  font-weight: 800;
  font-size: clamp(1.85rem, 4vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: #fff;
  max-width: 780px;
}
.untangle__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
}
.untangle__svg { width: 100%; height: auto; display: block; }
.untangle__body { color: rgba(246, 242, 235, 0.8); font-size: 1rem; line-height: 1.68; max-width: 44ch; }
.untangle__better { color: var(--peri); font-weight: 700; }
.untangle__caps {
  position: relative;
  margin-top: 1.7rem;
  min-height: 6em;
  border-top: 1px solid rgba(246, 242, 235, 0.15);
  padding-top: 1.25rem;
}
.untangle__cap {
  position: absolute;
  left: 0; right: 0; top: 1.25rem;
  font-size: 0.96rem;
  font-weight: 600;
  line-height: 1.6;
  transition: opacity 0.55s ease;
}
.untangle__cap--t { color: #E8A08C; opacity: 1; }
.untangle__cap--c {
  color: #fff;
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.55;
  border-left: 3px solid var(--peri);
  padding-left: 1rem;
  opacity: 0;
}
.untangle.is-clean .untangle__cap--t { opacity: 0; }
.untangle.is-clean .untangle__cap--c { opacity: 1; }

/* svg pieces */
.u-t, .u-c { transition: opacity 0.7s ease; }
.u-c { opacity: 0; }
.untangle.is-clean .u-t { opacity: 0; }
.untangle.is-clean .u-c { opacity: 1; }
.untangle--pinned .u-t, .untangle--pinned .u-c,
.untangle--pinned .u-sub { transition: none; }
.u-et { stroke: var(--red-line); stroke-width: 1.4; fill: none; opacity: 0.5; }
.u-et-back { stroke: var(--red-line); stroke-width: 1.1; fill: none; opacity: 0.38; }
.u-etf {
  stroke: #F08A6C;
  stroke-width: 1.7;
  fill: none;
  opacity: 0.85;
  stroke-dasharray: 3 10;
  animation: etflow 0.8s linear infinite;
}
.u-etf-back { stroke-dasharray: 2 8; animation-direction: reverse; opacity: 0.6; stroke-width: 1.3; }
@keyframes etflow { to { stroke-dashoffset: -13; } }
.u-ec { stroke: var(--peri); stroke-width: 1.8; fill: none; opacity: 0.85; }
.u-src rect { fill: var(--cream); }
.u-src text { fill: var(--navy); font-family: var(--f-mono); font-size: 12px; font-weight: 600; letter-spacing: 0.04em; }
.u-team rect, .u-tout rect, .u-cout rect { fill: #1B2436; stroke: rgba(246, 242, 235, 0.18); stroke-width: 1; }
.u-team text, .u-tout text, .u-cout text {
  fill: rgba(246, 242, 235, 0.88);
  font-family: var(--f-mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.u-cout rect { stroke: rgba(117, 141, 247, 0.55); }
.u-hub rect { fill: var(--blue); }
.hub-glow { fill: none; stroke: rgba(117, 141, 247, 0.4); stroke-width: 1.5; }
.u-hub text { fill: #fff; font-family: var(--f-mono); font-size: 11px; font-weight: 700; letter-spacing: 0.1em; }
.u-col { fill: rgba(246, 242, 235, 0.42); font-family: var(--f-mono); font-size: 10px; font-weight: 500; letter-spacing: 0.14em; }

@media (min-width: 900px) and (max-height: 800px) {
  .untangle__grid { gap: 2rem; }
  .untangle__svg { width: min(100%, calc((100svh - 320px) * 1.5)); margin-inline: auto; }
}

/* ---------- possible ---------- */

.possible { padding-top: 1rem; }
.possible .h3 { margin-bottom: 1.4rem; }
.possible__list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 3rem;
}
.possible__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1.05rem 0;
  border-bottom: 1px solid var(--hair);
  font-weight: 600;
  font-size: 1.02rem;
  color: #14181F;
}
.tick {
  flex: 0 0 auto;
  width: 23px; height: 23px;
  border-radius: 50%;
  background: rgba(31, 169, 113, 0.13);
  color: var(--green);
  display: grid;
  place-items: center;
  margin-top: 0.12rem;
}
.tick svg { width: 12px; height: 12px; }
.possible .closing { margin-top: 2.8rem; }

/* ---------- 07 · offer ---------- */

.s7 { background: var(--navy); color: var(--cream); }
.s7 .lede { color: rgba(246, 242, 235, 0.75); }

/* self-select offer */
.pick {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 3.2rem;
}
.pick__opt {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.9rem;
  text-align: left;
  background: var(--navy-2);
  border: 1px solid rgba(246, 242, 235, 0.14);
  border-radius: var(--r-lg);
  padding: 1.5rem 1.5rem 1.7rem;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}
.pick__opt:hover { border-color: rgba(117, 141, 247, 0.6); transform: translateY(-3px); }
.pick__no {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-family: var(--f-head);
  font-weight: 800;
  font-size: 1.05rem;
  display: grid;
  place-items: center;
  letter-spacing: 0;
}
.pick__opt.on .pick__no { background: #fff; color: var(--blue); }
.pick__stmt {
  font-family: var(--f-head);
  font-weight: 800;
  font-size: clamp(1.15rem, 1.9vw, 1.5rem);
  letter-spacing: -0.01em;
  line-height: 1.25;
  color: var(--cream);
}
.pick__opt.on { background: var(--blue); border-color: var(--blue); }

.landing {
  margin-top: 1rem;
  background: var(--card);
  border-radius: var(--r-xl);
  padding: clamp(1.8rem, 3.6vw, 2.8rem);
  color: var(--ink);
}
.landing__eyebrow { display: block; font-size: 10.5px; font-weight: 700; color: var(--blue); margin-bottom: 0.9rem; }
.landing__title {
  font-family: var(--f-head);
  font-weight: 800;
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  letter-spacing: -0.012em;
  color: var(--head);
  margin-bottom: 0.9rem;
}
.landing__body { color: #3A3F4C; max-width: 72ch; line-height: 1.68; }
.landing__list { list-style: none; margin-top: 1.3rem; display: flex; flex-direction: column; gap: 0.6rem; }
.landing__list li {
  display: flex;
  gap: 0.7rem;
  font-size: 0.95rem;
  line-height: 1.55;
  color: #242938;
}
.landing__list li::before { content: "✓"; font-weight: 700; color: var(--green); }
.landing__dark {
  margin-top: 1.3rem;
  background: var(--navy);
  border-radius: var(--r-md);
  padding: 1.05rem 1.3rem;
  color: rgba(246, 242, 235, 0.92);
  font-size: 0.95rem;
  line-height: 1.55;
}
.landing__foot {
  margin-top: 1.6rem;
  padding-top: 1.5rem;
  border-top: 1px dashed var(--card-line);
  display: flex;
  flex-wrap: wrap;
  gap: 1.1rem;
  align-items: center;
  justify-content: space-between;
}
.landing__note { font-size: 0.9rem; color: var(--muted); max-width: 56ch; }
.btn--blue { background: var(--blue); color: #fff; }
.btn--blue:hover { background: var(--blue-deep); transform: translateY(-2px); }

.offers__note { margin-top: 1.3rem; font-size: 0.9rem; color: rgba(246, 242, 235, 0.55); }
.closeblock { margin-top: 5.5rem; border-top: 1px solid rgba(246, 242, 235, 0.14); padding-top: 3.2rem; }
.closeblock__title {
  font-family: var(--f-head);
  font-weight: 800;
  font-size: clamp(1.85rem, 3.7vw, 2.7rem);
  letter-spacing: -0.015em;
  color: #fff;
  margin-bottom: 1.1rem;
}
.closeblock .body { color: rgba(246, 242, 235, 0.78); max-width: 640px; }
.closeblock__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  border-radius: 999px;
  padding: 0.95rem 1.75rem;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.btn--primary { background: var(--cream); color: var(--navy); }
.btn--primary:hover { background: #fff; transform: translateY(-2px); }
.btn--ghost { border-color: rgba(246, 242, 235, 0.35); color: var(--cream); background: transparent; }
.btn--ghost:hover { border-color: var(--cream); }
.btn--ghost.ok { border-color: var(--green); color: #9FE8C6; }
.closeblock__share { margin-top: 1.5rem; font-size: 10px; color: rgba(246, 242, 235, 0.42); }

.cred { margin-top: 5.5rem; border-top: 1px solid rgba(246, 242, 235, 0.14); padding-top: 2.6rem; }
.cred__lines {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem 2.5rem;
  max-width: 780px;
}
.cred__lines p {
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(246, 242, 235, 0.75);
  padding-left: 1rem;
  border-left: 2px solid rgba(117, 141, 247, 0.5);
}
.cred__logos {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: clamp(1.6rem, 4vw, 3.2rem);
  margin-top: 2.8rem;
  padding-top: 2.2rem;
  border-top: 1px dashed rgba(246, 242, 235, 0.14);
}
.wl { color: rgba(246, 242, 235, 0.52); white-space: nowrap; }
.wl--cromwell { font-family: var(--f-head); font-weight: 800; font-size: 0.95rem; letter-spacing: 0.3em; }
.wl--sentinel { font-family: var(--f-mono); font-size: 0.7rem; letter-spacing: 0.2em; }
.cred__base {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.8rem;
}
.cred__base .mono { font-size: 10px; color: rgba(246, 242, 235, 0.4); }

/* ============================================================
   Responsive
   ============================================================ */

@media (max-width: 1024px) {
  .wf { grid-column: span 3; }
  .fact { width: min(78vw, 640px); }
  .runs__tabs { grid-template-columns: repeat(3, 1fr); }
  .runs__tab { border-bottom: 1px solid rgba(246, 242, 235, 0.16); }
}

@media (max-width: 900px) {
  .calc__grid { grid-template-columns: 1fr; }
  .pick { grid-template-columns: 1fr; }
  .cols { grid-template-columns: 1fr; gap: 1.2rem; margin: 2rem 0 2.6rem; }
  .untangle--pinned, .untangle { height: auto; }
  .untangle__pin { position: relative; min-height: 0; padding-block: clamp(4rem, 9vw, 6rem); }
  .untangle__grid { grid-template-columns: 1fr; }
  .untangle__body { max-width: 60ch; }
  .step5 { grid-template-columns: 1fr; gap: 0.5rem; }
  .compare { grid-template-columns: 1fr; }
  .tracks { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  body { font-size: 16px; }
  .vs__head { display: none; }
  .vs__row { display: block; border-top: 0; padding-block: 0; }
  .vs__row + .vs__row { margin-top: 1.2rem; padding-top: 1.2rem; border-top: 1px solid var(--hair); }
  .vs__cell { margin-bottom: 0.65rem; }
  .vs__cell--w { margin-bottom: 0; }
  .vs__cell--s::before, .vs__cell--w::before {
    display: block;
    font-family: var(--f-mono);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.16em;
    margin-bottom: 0.4rem;
  }
  .vs__cell--s::before { content: "STRUGGLER"; color: var(--red); }
  .vs__cell--w::before { content: "WINNER"; color: var(--blue); }
  .cred__lines { grid-template-columns: 1fr; }
  .possible__list { grid-template-columns: 1fr; }
  .hero__kicker { display: none; }
}

@media (max-width: 700px) {
  .glue__diagram { overflow-x: auto; padding-inline: 0.6rem; scrollbar-width: none; }
  .glue__diagram::-webkit-scrollbar { display: none; }
  .glue__diagram svg { min-width: 640px; }
  .challenge { margin: 2.6rem 0 1.3rem; }
  .wf { grid-column: span 6; }
  .runs__tabs { grid-template-columns: 1fr; }
  .runs__tab { border-right: 0; border-bottom: 1px solid rgba(246, 242, 235, 0.16); flex-direction: row; align-items: baseline; gap: 0.8rem; }
  .runs__tab:last-child { border-bottom: 0; }
  .runs__head { flex-direction: column; }
  /* runline goes vertical */
  .runline ol { flex-direction: column; gap: 2rem; }
  .runline__step { flex-direction: row; flex-wrap: wrap; align-items: flex-start; column-gap: 1.1rem; padding-right: 0; }
  .runline__dot { flex: 0 0 auto; }
  .runline__name { flex: 1 1 0; min-width: 0; max-width: none; padding-top: 0.5rem; }
  .runline__status, .runline__chip { flex-basis: 100%; }
  .runline__chip, .runline__status { margin-left: 66px; }
  .runline__chip { order: 3; margin-top: 0.4rem; }
  .runline__status { order: 4; }
  .runline__rail, .runline__fill { top: 26px; left: 26px; width: 2px; height: 0; }
  .runline__rail { background: rgba(246, 242, 235, 0.18); }
  .runline__fill { background: linear-gradient(180deg, var(--blue), var(--peri)); transition: height 0.55s var(--ease); }
  .proof { padding-inline: 1.3rem; }
}

@media (max-width: 560px) {
  .tv1 { flex-direction: column; gap: 1.2rem; }
  .tv1__counter { flex-direction: row; align-items: baseline; gap: 0.8rem; }
  .tv1__chart { height: 120px; }
  .ice__svg { min-width: 560px; }
  .ice { overflow-x: auto; scrollbar-width: none; }
  .ice::-webkit-scrollbar { display: none; }

  .chatmock__row { grid-template-columns: 1fr auto; }
  .chatmock__row .mono { grid-column: 1 / -1; justify-self: start; }
  .damock__stats { gap: 1.1rem; }
  .closeblock__actions .btn { width: 100%; justify-content: center; }
  .hero__cue { display: none; }
  .client-proof {
    grid-template-columns: 1fr;
    margin-top: 0.25rem;
  }
  .client-proof__metric { white-space: normal; }
}

/* ---------- reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
  .hero__title .line__in { transform: none; }
  .hero__byline, .hero__top, .hero__cue, .client-proof { animation: none; opacity: 1; }
  .u-etf { animation: none; }
}

/* ============================================================
   v2 additions: cohesion + lead-gen components
   (toc, rail, handoffs, demo, bio, newsletter, etc.)
   ============================================================ */

/* ---------- contents block ---------- */

.toc { border-bottom: 1px solid var(--hair); background: var(--cream); }
.toc__wrap { display: flex; align-items: baseline; gap: 1.6rem; padding-block: 1.1rem; flex-wrap: wrap; }
.toc__label { font-size: 9.5px; font-weight: 700; color: var(--faint); letter-spacing: 0.22em; white-space: nowrap; }
.toc__list { list-style: none; display: flex; flex-wrap: wrap; gap: 0.2rem 1.5rem; }
.toc__list a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  gap: 0.45rem;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--body);
  text-decoration: none;
  padding-block: 0.25rem;
  transition: color 0.2s ease;
}
.toc__list a .mono { font-size: 9.5px; color: var(--blue); }
.toc__list a:hover { color: var(--blue); }
.toc__demo .mono { color: var(--green); }

/* ---------- section rail ---------- */

.rail {
  position: fixed;
  left: clamp(0.6rem, 1.4vw, 1.4rem);
  top: 50%;
  transform: translateY(-50%);
  z-index: 40;
  display: none;
  flex-direction: column;
  gap: 0.35rem;
}
@media (min-width: 1280px) { .rail { display: flex; } }
.rail a {
  display: grid;
  place-items: center;
  width: 30px;
  height: 26px;
  text-decoration: none;
  color: rgba(122, 128, 143, 0.55);
  border-radius: var(--r-xs);
  transition: color 0.2s ease, background 0.2s ease;
}
.rail a .mono { font-size: 9px; font-weight: 700; letter-spacing: 0.08em; }
.rail a:hover { color: var(--blue); }
.rail a.is-active { color: #fff; background: var(--blue); }
.rail .rail__demo { color: var(--green); }
.rail .rail__demo.is-active { background: var(--green); color: #fff; }

/* ---------- section handoffs ---------- */

.handoff {
  display: block;
  margin-top: clamp(2.8rem, 5vw, 4rem);
  text-decoration: none;
  color: inherit;
}
.handoff__tag { display: block; font-size: 10px; font-weight: 700; letter-spacing: 0.22em; color: var(--blue); margin-bottom: 0.65rem; transition: transform 0.25s var(--ease); }
.dark .handoff__tag { color: var(--peri); }
.handoff__line { font-size: clamp(1rem, 1.5vw, 1.15rem); font-weight: 600; line-height: 1.55; color: var(--body); max-width: 640px; transition: color 0.2s ease; }
.dark .handoff__line { color: rgba(246, 242, 235, 0.72); }
.handoff:hover .handoff__line { color: var(--head); }
.dark .handoff:hover .handoff__line { color: var(--cream); }
.handoff:hover .handoff__tag { transform: translateY(3px); }

/* ---------- ghost numerals on the pinned trends ---------- */

.fact__ghost {
  display: none;
  position: absolute;
  right: -1%;
  bottom: -9%;
  z-index: 0;
  font-family: var(--f-head);
  font-weight: 800;
  font-size: clamp(14rem, 26vw, 26rem);
  line-height: 1;
  color: rgba(117, 141, 247, 0.05);
  pointer-events: none;
  user-select: none;
}
.facts--pinned .fact__ghost { display: block; }
@media (min-width: 701px) and (max-width: 900px) {
  .facts--pinned .fact__ghost { display: none; }
}

/* ---------- diagnostic tally + interaction polish ---------- */

.mech__head--row { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.diag__tally {
  font-size: 11px;
  font-weight: 700;
  color: var(--blue);
  border: 1.5px solid rgba(33, 75, 255, 0.35);
  border-radius: 999px;
  padding: 0.4rem 0.85rem;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.diag__tally.is-hot { background: var(--blue); color: #fff; border-color: var(--blue); }

/* unified hover grammar for every clickable card */
.diag__item, .wf, .pick__opt {
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.diag__item:hover, .wf:hover, .pick__opt:hover { transform: translateY(-2px); }

/* ---------- build 04 -> demo pointer ---------- */

.runs__trylink {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 1.3rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--green);
  text-decoration: none;
}
.runs__trylink:hover { text-decoration: underline; }

/* ---------- the live demo ---------- */

.demopanel { margin-top: 0.6rem; }
.demo__qs { display: flex; flex-wrap: wrap; gap: 0.6rem; padding: 1.1rem 1.2rem 0.4rem; }
.demo__q {
  border: 1px solid rgba(117, 141, 247, 0.4);
  background: rgba(117, 141, 247, 0.06);
  color: var(--cream);
  border-radius: 999px;
  padding: 0.6rem 1.05rem;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}
.demo__q:hover { border-color: var(--peri); background: rgba(117, 141, 247, 0.14); transform: translateY(-2px); }
.demo__q.is-active { background: var(--blue); border-color: var(--blue); color: #fff; }
.demo__stage { padding: 0.9rem 1.2rem 1.3rem; min-height: 200px; }
.demo__hint { color: rgba(246, 242, 235, 0.45); font-size: 0.95rem; padding-block: 2.2rem; text-align: center; }
.demo__chat { margin-top: 0.4rem; }
.demo__step-in { animation: fadeUp 0.45s var(--ease) both; }
.demo__cta {
  margin-top: clamp(2rem, 4vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem;
  flex-wrap: wrap;
}
.demo__ctaline { font-size: clamp(1.05rem, 1.7vw, 1.25rem); font-weight: 600; color: rgba(246, 242, 235, 0.85); max-width: 520px; }

/* ---------- sixth workflow card ---------- */

.wf--other { border-style: dashed; }
.wf--other h4 { color: var(--blue); }

/* ---------- calculator extras ---------- */

.calc__glyph { width: 52px; height: 34px; color: var(--red-line); opacity: 0.85; margin-bottom: 0.5rem; }
.calc__email {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.1rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(117, 141, 247, 0.65);
}
.calc__email:hover { text-decoration-color: #fff; }

/* ---------- untangle progress (matches the facts band furniture) ---------- */

.untangle__progress {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  margin-top: 1.6rem;
}
.untangle--pinned .untangle__progress { display: flex; }
.untangle__plbl { font-size: 10px; letter-spacing: 0.18em; color: rgba(246, 242, 235, 0.55); }
.untangle__plbl--c { color: var(--green); }
.untangle__barwrap { background: rgba(246, 242, 235, 0.18); }
.untangle__barwrap span { display: block; height: 100%; width: 100%; transform-origin: left center; transform: scaleX(0); background: linear-gradient(90deg, var(--red-line), var(--green)); border-radius: 2px; }

/* ---------- carry line ---------- */

.closeblock__carry {
  margin-top: 1.2rem;
  font-size: 10.5px;
  letter-spacing: 0.14em;
  color: var(--peri);
  border: 1px solid rgba(117, 141, 247, 0.3);
  border-radius: var(--r-sm);
  padding: 0.7rem 0.9rem;
  width: fit-content;
  max-width: 100%;
}

/* ---------- next briefing ---------- */

.nextbrief {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.6rem;
  flex-wrap: wrap;
  margin-top: 3.4rem;
  border-top: 1px solid var(--hair-d);
  padding-top: 2.4rem;
}
.nextbrief__label { display: block; font-size: 10px; font-weight: 700; letter-spacing: 0.22em; color: var(--green); margin-bottom: 0.6rem; }
.nextbrief__copy { color: rgba(246, 242, 235, 0.72); max-width: 560px; font-size: 0.98rem; line-height: 1.6; }

/* ---------- bio ---------- */

.bio { display: flex; gap: clamp(1.2rem, 3vw, 2rem); align-items: flex-start; margin-bottom: 2.4rem; }
.bio__avatar {
  flex: 0 0 84px;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(117, 141, 247, 0.14);
  border: 1.5px solid rgba(117, 141, 247, 0.4);
  color: var(--peri);
  font-family: var(--f-head);
  font-weight: 800;
  font-size: 1.5rem;
}
.bio__name { font-family: var(--f-head); font-weight: 800; font-size: 1.25rem; color: #fff; }
.bio__role { font-size: 10px; color: var(--peri); margin-top: 0.3rem; }
.bio__date { font-size: 9px; color: rgba(246, 242, 235, 0.42); margin-top: 0.4rem; }
.bio__line { margin-top: 0.8rem; color: rgba(246, 242, 235, 0.72); font-size: 0.97rem; line-height: 1.65; max-width: 620px; }
.bio__li { display: inline-flex; gap: 0.5rem; margin-top: 0.9rem; font-weight: 600; font-size: 0.92rem; color: var(--peri); text-decoration: none; }
.bio__li:hover { text-decoration: underline; }

.cred__meta { font-size: 9px; color: rgba(246, 242, 235, 0.3); letter-spacing: 0.16em; text-align: center; }

/* ---------- long mono labels: sentence case ---------- */

.mono--sent, .microlabel--sent { text-transform: none; letter-spacing: 0.02em; }

/* ---------- button polish ---------- */

.btn { transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease; }
.btn--primary::after, .btn--blue::after { content: "→"; margin-left: 0.55rem; display: inline-block; transition: transform 0.25s var(--ease); }
.btn--primary:hover::after, .btn--blue:hover::after { transform: translateX(3px); }

/* ---------- responsive for the new pieces ---------- */

@media (max-width: 900px) {
  .demo__cta { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 560px) {
  .toc__wrap { gap: 0.8rem; }
  .toc__list { gap: 0.1rem 1.1rem; }
  .bio { flex-direction: column; }
  .demo__q { width: 100%; }
  .cred__meta { order: 3; width: 100%; }
}

/* ---------- mobile trends: retain the scroll-driven horizontal sequence ---------- */

.icem { display: none; }

@media (max-width: 700px) {
  /* Static stacking is the accessible fallback when JS leaves pinning off. */
  .facts:not(.facts--pinned) { height: auto; }
  .facts:not(.facts--pinned) .facts__pin { position: relative; height: auto; padding-inline: 0; }
  .facts:not(.facts--pinned) .facts__track {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    padding-inline: 0;
    gap: 0;
    overflow: visible;
    scroll-snap-type: none;
    transform: none !important;
  }
  .facts:not(.facts--pinned) .fact {
    width: 100%;
    border-radius: 0;
    scroll-snap-align: none;
    min-height: 0;
    padding: clamp(1.6rem, 5vw, 2.4rem) clamp(1.25rem, 4vw, 2rem) 2rem;
  }
  .facts:not(.facts--pinned) .facts__progress { display: none; }

  .facts--pinned {
    height: 500vh;
    height: 500svh;
    margin-block: 0 3rem;
  }
  .facts--pinned .facts__pin {
    position: sticky;
    top: 0;
    height: 100vh;
    height: 100svh;
    padding: 0;
  }
  .facts--pinned .facts__track {
    display: flex;
    grid-template-columns: none;
    align-items: stretch;
    gap: 0;
    overflow: visible;
  }
  .facts--pinned .fact {
    flex: 0 0 100vw;
    width: 100vw;
    max-width: none;
    min-height: 100vh;
    min-height: 100svh;
    padding: max(1rem, env(safe-area-inset-top)) 1.25rem max(3.2rem, calc(env(safe-area-inset-bottom) + 2.4rem));
    gap: 0.85rem;
    justify-content: center;
  }
  .facts--pinned .fact[data-trend="1"],
  .facts--pinned .fact[data-trend="2"] {
    flex-direction: column;
    align-items: stretch;
    gap: 0.85rem;
  }
  .facts--pinned .fact[data-trend="1"] .fact__head,
  .facts--pinned .fact[data-trend="2"] .fact__head {
    flex: 0 0 auto;
    max-width: none;
  }
  .facts--pinned .fact[data-trend="1"] .fact__visual,
  .facts--pinned .fact[data-trend="2"] .fact__visual {
    flex: 0 1 auto;
    width: 100%;
    align-self: stretch;
  }
  .facts--pinned .facts__progress {
    display: flex;
    bottom: max(1rem, env(safe-area-inset-bottom));
  }
  .facts--pinned .fact__ghost { display: none; }
}

@media (max-width: 700px) {
  /* Mobile Trend 01: a capability range, not a literal iceberg. */
  .ice { overflow: visible; }
  .ice .ice__svg { display: none; min-width: 0; }
  .fact__sub--desktop { display: none; }
  .fact__sub--mobile { display: inline; }
  .facts--pinned .fact[data-trend="1"] { gap: clamp(0.7rem, 1.8vh, 1rem); }
  .facts--pinned .fact[data-trend="1"] .fact__claim {
    max-width: 17ch;
    font-size: clamp(1.75rem, 8vw, 2rem);
    line-height: 1.07;
  }
  .facts--pinned .fact[data-trend="1"] .fact__sub {
    margin-top: 0.65rem;
    font-size: 0.95rem;
    line-height: 1.45;
  }
  .facts--pinned .fact[data-trend="1"] .tv__tag { display: none; }

  .icem {
    display: grid;
    gap: clamp(1.25rem, 3.5vh, 2rem);
    margin-top: 0.25rem;
  }
  .icem__lbl {
    display: block;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: rgba(246, 242, 235, 0.48);
  }
  .icem__range {
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.5s ease 0.05s, transform 0.6s var(--ease) 0.05s;
  }
  .icem__range-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.8rem;
  }
  .icem__range-head strong {
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1;
    color: rgba(246, 242, 235, 0.78);
    white-space: nowrap;
  }
  .icem__meter {
    position: relative;
    height: 12px;
    overflow: visible;
    border-radius: 999px;
    background: rgba(117, 141, 247, 0.12);
    box-shadow: inset 0 0 0 1px rgba(117, 141, 247, 0.16);
  }
  .icem__used,
  .icem__available {
    position: absolute;
    inset-block: 0;
    border-radius: inherit;
  }
  .icem__used {
    left: 0;
    width: 8%;
    background: var(--cream);
  }
  .icem__available {
    left: 8%;
    width: 92%;
    background: linear-gradient(90deg, var(--blue), var(--peri));
    transform: scaleX(0.02);
    transform-origin: left center;
    transition: transform 1s var(--ease) 0.22s;
  }
  .icem__marker {
    position: absolute;
    top: -5px;
    bottom: -5px;
    left: 8%;
    width: 1px;
    background: rgba(246, 242, 235, 0.8);
    box-shadow: 0 0 14px rgba(246, 242, 235, 0.35);
  }
  .icem__scale {
    display: flex;
    justify-content: space-between;
    margin-top: 0.65rem;
    font-size: 7px;
    font-weight: 700;
    letter-spacing: 0.16em;
    color: rgba(246, 242, 235, 0.38);
  }
  .icem__opportunity {
    position: relative;
    padding-top: 1.15rem;
    border-top: 1px solid rgba(117, 141, 247, 0.28);
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.6s ease 0.38s, transform 0.75s var(--ease) 0.38s;
  }
  .icem__opportunity::after {
    content: "";
    position: absolute;
    inset: 0 -1.25rem -1rem;
    z-index: -1;
    background: radial-gradient(70% 100% at 92% 55%, rgba(33, 75, 255, 0.16), transparent 70%);
    pointer-events: none;
  }
  .icem__lbl--deep { margin-bottom: 0.35rem; color: var(--peri); }
  .icem__metric { display: flex; align-items: flex-end; gap: 0.75rem; margin-bottom: 0.75rem; }
  .icem__metric strong {
    font-family: var(--f-head);
    font-size: clamp(3.35rem, 16vw, 4.2rem);
    font-weight: 800;
    line-height: 0.9;
    letter-spacing: -0.05em;
    color: var(--cream);
  }
  .icem__metric span {
    max-width: 13ch;
    padding-bottom: 0.18rem;
    font-size: 0.76rem;
    font-weight: 700;
    line-height: 1.25;
    color: rgba(246, 242, 235, 0.68);
  }
  .icem__examples { list-style: none; display: flex; flex-wrap: wrap; gap: 0.42rem; }
  .icem__examples li {
    padding: 0.38rem 0.58rem;
    border: 1px solid rgba(117, 141, 247, 0.24);
    border-radius: 999px;
    background: rgba(117, 141, 247, 0.06);
    font-size: 0.68rem;
    font-weight: 600;
    line-height: 1.2;
    color: rgba(246, 242, 235, 0.9);
  }
  .ice.animate .icem__range,
  .ice.animate .icem__opportunity { opacity: 1; transform: none; }
  .ice.animate .icem__available { transform: none; }
}

@media (max-width: 700px) {
  /* each slide is its own compact height — no stretching to the tallest
     sibling, so no empty navy voids; counter row left-aligned
     (desktop's flex-end means bottom there) */
  .facts:not(.facts--pinned) .facts__track { align-items: flex-start; }
  .fact__visual { margin-block: 0.6rem 0; }
  .tv1__counter { justify-content: flex-start; }
}

/* ---------- build 01: mini lease-expiry chart ---------- */

.damock__chart { margin-top: 1.1rem; }
.damock__chart svg { width: 100%; height: auto; display: block; margin-top: 0.6rem; }
.dmc__title { display: block; font-size: 9.5px; font-weight: 700; letter-spacing: 0.18em; color: rgba(246, 242, 235, 0.5); }
.dmc__bar { fill: var(--blue); }
.dmc__bar--warm { fill: rgba(117, 141, 247, 0.75); }
.dmc__bar--hot { fill: var(--red-line); }
.dmc__lbl { fill: rgba(246, 242, 235, 0.45); font-family: var(--f-mono); font-size: 9.5px; font-weight: 600; letter-spacing: 0.08em; }
.dmc__lbl--none { fill: rgba(246, 242, 235, 0.25); }

/* ---------- runs band intro (names the tab grid, signals it's clickable) ---------- */

.runs__intro { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.2rem; }
.runs__introtitle { font-family: var(--f-head); font-weight: 800; font-size: clamp(1.15rem, 2vw, 1.45rem); color: var(--cream); }
.runs__introhint { font-size: 10px; font-weight: 700; letter-spacing: 0.2em; color: var(--peri); }

/* ---------- small screens: section eyebrows may wrap, never overflow ---------- */

@media (max-width: 560px) {
  .sec-head { flex-wrap: wrap; row-gap: 0.5rem; }
  .eyebrow__lbl { white-space: normal; letter-spacing: 0.18em; line-height: 1.5; }
}

/* ---------- demo: rich answer furniture (lead, table caption, bullets, evidence) ---------- */

.chatmock__lead { margin-top: 0.5rem; color: rgba(246, 242, 235, 0.8); font-size: 0.93rem; line-height: 1.6; }
.chatmock__caption { display: block; margin-top: 1rem; margin-bottom: 0.4rem; font-size: 9px; font-weight: 700; letter-spacing: 0.18em; color: rgba(246, 242, 235, 0.45); }
.chatmock__bullets { list-style: none; margin-top: 0.9rem; display: grid; gap: 0.5rem; }
.chatmock__bullets li { position: relative; padding-left: 1.1rem; font-size: 0.9rem; line-height: 1.55; color: rgba(246, 242, 235, 0.78); }
.chatmock__bullets li::before { content: ""; position: absolute; left: 0; top: 0.6em; width: 0.5rem; height: 1.5px; background: rgba(117, 141, 247, 0.55); }
.chatmock__evidence { display: flex; flex-wrap: wrap; gap: 0.45rem; }
.chatmock__evidence span {
  font-family: var(--f-mono);
  font-size: 10px;
  color: rgba(246, 242, 235, 0.6);
  border: 1px solid rgba(117, 141, 247, 0.3);
  border-radius: var(--r-xs);
  padding: 0.3rem 0.55rem;
}

/* demo: 4-column submarket table + header row; no arrow on the demo CTA */
.chatmock__row--w4 { grid-template-columns: 1.3fr 0.8fr 0.7fr 0.7fr; font-variant-numeric: tabular-nums; }
.chatmock__row--head { border-top: 0; padding-bottom: 0.15rem; }
.chatmock__row--head span { font-size: 9px; letter-spacing: 0.14em; color: rgba(246, 242, 235, 0.45); }
.demo__mail::after { content: none; }

/* wide demo table keeps its columns on small screens (overrides the
   old mobile rule that lets a lone mono cell span the row) */
@media (max-width: 560px) {
  .chatmock__row--w4 { grid-template-columns: 1.3fr 0.8fr 0.7fr 0.7fr; gap: 0.5rem; font-size: 0.78rem; }
  .chatmock__row--w4 .mono, .chatmock__row--head span { grid-column: auto; justify-self: auto; }
}

.chatmock__row--head span { border: 0; padding: 0; background: none; }

/* glue diagram on small screens: fade the clipped edge + swipe hint */
.glue__swipe { display: none; }
@media (max-width: 700px) {
  .glue__diagram { position: relative; }
  .glue__diagram::after {
    content: "";
    position: absolute;
    top: 0; right: 0; bottom: 1.8rem;
    width: 3rem;
    pointer-events: none;
    background: linear-gradient(90deg, transparent, var(--card));
  }
  .glue__swipe { display: inline; color: var(--blue); }
}

.bio__avatar--photo { object-fit: cover; border-color: rgba(117, 141, 247, 0.5); }

/* runs band: read as six playable demos, not a nav strip */
.runs__introtitle { font-size: clamp(1.35rem, 2.4vw, 1.8rem); }
.runs__introsub { margin-top: 0.4rem; font-size: 0.95rem; line-height: 1.55; color: rgba(246, 242, 235, 0.6); max-width: 560px; }
.runs__introhint { display: inline-flex; align-items: center; gap: 0.5rem; border: 1px solid rgba(117, 141, 247, 0.4); border-radius: 999px; padding: 0.5rem 0.9rem; }
.runs__tab { display: flex; flex-direction: row; justify-content: flex-start; align-items: baseline; gap: 0.6rem; }
.runs__tab__play { font-size: 9px; color: var(--peri); flex: 0 0 auto; }
.runs__tab.is-active .runs__tab__play { color: #fff; }

/* ---------- build 04: anonymised deal-screening card ---------- */

.deal { margin-top: 1.1rem; border: 1px solid rgba(246, 242, 235, 0.14); border-radius: var(--r-sm); padding: 1rem 1.1rem 1.1rem; }
.deal__top { display: flex; align-items: baseline; gap: 0.8rem; flex-wrap: wrap; }
.deal__top strong { font-size: 1.02rem; color: #fff; }
.deal__chip {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: #F0B429;
  border: 1px solid rgba(240, 180, 41, 0.45);
  border-radius: 999px;
  padding: 0.28rem 0.6rem;
}
.deal__price { margin-left: auto; font-size: 12px; font-weight: 700; color: var(--peri); }
.deal__score { display: flex; align-items: center; gap: 0.9rem; margin-top: 0.8rem; }
.deal__score .mono { font-size: 9px; letter-spacing: 0.14em; color: rgba(246, 242, 235, 0.55); white-space: nowrap; }
.deal__bar { flex: 1; height: 4px; border-radius: 2px; background: rgba(246, 242, 235, 0.14); overflow: hidden; }
.deal__bar span { display: block; height: 100%; border-radius: 2px; background: linear-gradient(90deg, var(--blue), var(--peri)); }
.deal__facts { margin-top: 0.7rem; font-size: 9.5px; letter-spacing: 0.1em; color: rgba(246, 242, 235, 0.55); }
.deal__note { margin-top: 0.7rem; font-size: 0.9rem; line-height: 1.55; color: rgba(246, 242, 235, 0.75); }
@media (max-width: 560px) {
  .deal__price { margin-left: 0; }
  .deal__facts { line-height: 1.8; }
}

/* ---------- mobile QA pass ---------- */

.glue__mobile { display: none; }
.wl--asset { display: inline-flex; align-items: center; }
.wl--asset img { display: block; width: 100%; height: auto; opacity: 0.55; }
.wl--cromwell { width: 136px; }
.wl--sentinel { width: 154px; }

@media (max-width: 700px) {
  .section { padding-block: clamp(4rem, 15vw, 5.5rem) clamp(3.5rem, 12vw, 4.5rem); }
  .section.rule { padding-top: 3.5rem; }
  .h2 { font-size: clamp(2rem, 10vw, 2.55rem); margin-bottom: 1.6rem; }
  .lede { font-size: 1.05rem; line-height: 1.55; margin-bottom: 2rem; }

  .mech { padding: 1.35rem; }
  .mech__head { margin-bottom: 1.2rem; }
  .mech__head--row { align-items: flex-start; }
  .mech__title { font-size: 1.45rem; line-height: 1.22; }
  .diag__tally {
    flex: 0 0 auto;
    min-width: 56px;
    white-space: nowrap;
    text-align: center;
    letter-spacing: 0.08em;
    padding: 0.42rem 0.65rem;
  }
  .diag__list { gap: 0.55rem; }
  .diag__item { gap: 0.75rem; padding: 0.82rem 0.9rem; font-size: 0.94rem; line-height: 1.45; }

  .challenge { scroll-margin-top: 1rem; }
  .challenge__name { flex: 1 1 100%; font-size: 1.3rem; line-height: 1.25; }

  .glue__diagram { overflow: hidden; padding: 0.65rem 0.45rem 0.6rem; }
  .glue__diagram::after { content: none; }
  .glue__diagram > svg { display: block; width: 100%; min-width: 0; height: auto; }
  .glue__mobile { display: none; }
  .glue__mobile-group,
  .glue__mobile-person { border-radius: var(--r-sm); padding: 0.85rem 1rem; }
  .glue__mobile-group { background: var(--cream); border: 1px solid rgba(16, 19, 26, 0.14); }
  .glue__mobile-person { display: grid; gap: 0.18rem; color: #fff; background: var(--navy); }
  .glue__mobile-label,
  .glue__mobile-person .mono { font-size: 8.5px; font-weight: 700; letter-spacing: 0.16em; color: var(--blue); }
  .glue__mobile-person .mono { color: var(--peri); }
  .glue__mobile-group p { margin-top: 0.25rem; color: var(--navy); font-size: 0.9rem; font-weight: 650; line-height: 1.45; }
  .glue__mobile-person strong { font-size: 1rem; line-height: 1.4; }
  .glue__mobile-arrow { justify-self: center; color: var(--red-line); font-size: 1.15rem; line-height: 1; }
  .glue__caption { margin-top: 0.85rem; font-size: 8px; line-height: 1.55; }
  .glue__swipe { display: none; }

  .fact { max-width: 100%; overflow: hidden; }
  .facts--pinned .fact { max-width: none; overflow: hidden; }
  .fact__claim { font-size: clamp(1.9rem, 9.5vw, 2.35rem); line-height: 1.08; }
  .fact__sub { font-size: 1rem; line-height: 1.55; }

  .runs__replay { font-size: 0.9rem; padding: 0.68rem 1.15rem; }
  .runline ol { gap: 1.15rem; }
  .runline__step { column-gap: 0.85rem; row-gap: 0.45rem; }
  .runline__dot { width: 44px; height: 44px; background: var(--black); }
  .runline__num { font-size: 12px; }
  .runline__name { padding-top: 0.35rem; font-size: 0.96rem; line-height: 1.35; }
  .runline__chip,
  .runline__status { margin-left: 58px; }
  .runline__chip { margin-top: 0; }
  .runline__status { visibility: hidden; font-size: 9px; color: #68E2AE; }
  .runline__step.done .runline__status { visibility: visible; }
  .runline__rail,
  .runline__fill { top: 22px; left: 21px; }

  .demopanel,
  .demo__stage,
  .demo__chat,
  .chatmock,
  .chatmock__answer,
  .chatmock__evidence { min-width: 0; max-width: 100%; }
  .demo__qs { padding: 0.9rem 0.9rem 0.25rem; }
  .demo__stage { padding: 0.8rem 0.9rem 1rem; }
  .chatmock { padding: 0.85rem; }
  .chatmock__answer { padding: 0.85rem; overflow: hidden; }
  .chatmock__row { min-width: 0; gap: 0.45rem; }
  .chatmock__row span { min-width: 0; overflow-wrap: anywhere; }
  .chatmock__evidence { display: grid; grid-template-columns: minmax(0, 1fr); width: 100%; }
  .chatmock__evidence span {
    min-width: 0;
    width: 100%;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
    letter-spacing: 0;
    line-height: 1.45;
  }

  .pick { gap: 0.7rem; margin-top: 2rem; }
  .pick__opt { flex-direction: row; align-items: center; gap: 0.85rem; min-height: 0; padding: 1rem 1.05rem; border-radius: var(--r-md); }
  .pick__no { flex: 0 0 34px; }
  .pick__stmt { font-size: 1.05rem; line-height: 1.3; }
  .landing { padding: 1.4rem; border-radius: var(--r-lg); }
  .landing__title { font-size: 1.5rem; line-height: 1.2; }
  .landing__body { line-height: 1.6; }
  .landing__list { margin-top: 1rem; }

  .closeblock { margin-top: 3.5rem; padding-top: 2.3rem; }
  .closeblock__title { font-size: clamp(2rem, 10vw, 2.4rem); line-height: 1.08; margin-bottom: 1.2rem; }
  .closeblock .body { font-size: 1rem; line-height: 1.65; }
  .closeblock__actions { gap: 0.7rem; margin-top: 1.6rem; }
  .closeblock__actions .btn { min-height: 52px; padding: 0.75rem 1.2rem; }

  .cred { margin-top: 4rem; padding-top: 2.2rem; }
  .bio { gap: 1rem; margin-bottom: 2rem; }
  .bio__line { font-size: 0.95rem; line-height: 1.6; }
  .cred__logos { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: center; gap: 1.5rem 1.25rem; margin-top: 2rem; padding-top: 1.8rem; }
  .wl { justify-self: start; max-width: 100%; }
  .wl--cromwell { width: 126px; }
  .wl--sentinel { width: 142px; }
  .cred__base { justify-content: center; text-align: center; margin-top: 2.2rem; }
  .cred__base > * { width: 100%; }
  .cred__meta { max-width: 32ch; margin-inline: auto; line-height: 1.7; }
}

@media (max-width: 360px) {
  .wrap { padding-inline: 1rem; }
  .mech { padding: 1.1rem; }
  .diag__item { padding-inline: 0.75rem; }
  .cred__logos { grid-template-columns: 1fr; }
}

/* ---------- vertical trend chapters ---------- */
.facts--chapters {
  position: relative;
  height: auto;
  margin-block: 1.5rem clamp(3.5rem, 7vw, 6rem);
  overflow: hidden;
  background: var(--navy);
}
.facts--chapters::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(117, 141, 247, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(117, 141, 247, 0.045) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask-image: radial-gradient(ellipse 95% 40% at 50% 15%, #000 20%, transparent 80%);
  mask-image: radial-gradient(ellipse 95% 40% at 50% 15%, #000 20%, transparent 80%);
}
.facts.facts--chapters .facts__pin {
  position: relative;
  top: auto;
  height: auto;
  min-height: 0;
  display: block;
  overflow: visible;
  padding: 0;
}
.facts.facts--chapters .facts__track {
  display: block;
  width: 100%;
  overflow: visible;
  transform: none !important;
  will-change: auto;
  scroll-snap-type: none;
  padding: 0;
}
.facts.facts--chapters .fact {
  position: relative;
  width: 100%;
  max-width: none;
  min-height: clamp(620px, 82vh, 820px);
  border: 0;
  border-bottom: 1px solid rgba(246, 242, 235, 0.12);
  border-radius: 0;
  padding:
    clamp(4.5rem, 8vw, 7rem)
    max(clamp(1.25rem, 4vw, 2.5rem), calc((100vw - 1090px) / 2));
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  align-items: center;
  gap: clamp(2.5rem, 6vw, 6rem);
  overflow: hidden;
  background: transparent;
  scroll-snap-align: none;
}
.facts--chapters .fact:last-child { border-bottom: 0; }
.facts--chapters .fact::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(620px 440px at 88% 20%, rgba(33, 75, 255, 0.14), transparent 72%);
}
.facts--chapters .fact:nth-child(even)::after {
  background: radial-gradient(520px 380px at 10% 15%, rgba(33, 75, 255, 0.24), transparent 72%);
}
.facts--chapters .fact__head,
.facts--chapters .fact__visual {
  position: relative;
  z-index: 1;
  min-width: 0;
}
.facts--chapters .fact__visual {
  width: 100%;
  margin-top: 0;
}
.facts--chapters .fact__claim {
  max-width: 18ch;
  font-size: clamp(2.25rem, 4vw, 3.8rem);
}
.facts--chapters .fact__sub { max-width: 46ch; }
.facts--chapters .fact__ghost {
  display: block;
  right: -1.5%;
  bottom: -11%;
  font-size: clamp(13rem, 24vw, 23rem);
}
.facts--chapters .ice__svg { max-height: 520px; }
.facts--chapters .tv3 { max-width: none; }
.facts--chapters .facts__progress { display: none; }

@media (prefers-reduced-motion: no-preference) {
  .facts--chapters .fact__head,
  .facts--chapters .fact__visual {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.65s ease, transform 0.8s var(--ease);
  }
  .facts--chapters .fact__visual { transition-delay: 0.1s; }
  .facts--chapters .fact.is-visible .fact__head,
  .facts--chapters .fact.is-visible .fact__visual {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 900px) {
  .facts.facts--chapters .fact {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: clamp(1.5rem, 4vw, 2.5rem);
    padding-block: clamp(4.5rem, 12vw, 6rem);
  }
  .facts--chapters .fact__head { max-width: 680px; }
  .facts--chapters .fact__visual { max-width: 720px; }
  .facts--chapters .fact__ghost { display: none; }
}

@media (max-width: 700px) {
  .facts--chapters { margin-block: 1rem 3.5rem; }
  .facts.facts--chapters .fact {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 1.2rem;
    min-height: 100svh;
    padding: clamp(2.5rem, 8vw, 3.5rem) 1.25rem clamp(3rem, 10vw, 4rem);
  }
  .facts--chapters .fact[data-trend="1"] { gap: 1rem; }
  .facts--chapters .fact[data-trend="1"] .fact__claim {
    max-width: 18ch;
    font-size: clamp(2rem, 9vw, 2.55rem);
  }
  .facts--chapters .fact__sub {
    font-size: 1rem;
    line-height: 1.55;
  }
  .facts--chapters .fact__visual { max-width: none; }
  .facts--chapters .ice .ice__svg { display: none; }
  .facts--chapters .icem { display: grid; }
  .facts--chapters .fact[data-trend="1"] .tv__tag { display: none; }
  .facts--chapters .tv1 {
    flex-direction: column;
    gap: 1.5rem;
  }
  .facts--chapters .tv1__counter {
    flex-direction: row;
    align-items: baseline;
    justify-content: flex-start;
    gap: 0.8rem;
  }
  .facts--chapters .tv1__chart { height: 140px; }
}

/* ---- In short (answer block above the contents bar) ---- */
.inshort {
  font-family: var(--f-body);
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  line-height: 1.6;
  color: var(--body);
  max-width: 62ch;
  margin: 0 0 2.4rem;
  padding: 1.2rem 1.4rem;
  border-left: 3px solid var(--blue);
  background: var(--card);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
}
.inshort strong { color: var(--head); font-weight: 700; }

/* ---- FAQ (dark, in section 07) ---- */
.faq { margin-top: 5.5rem; border-top: 1px solid rgba(246, 242, 235, 0.14); padding-top: 3.2rem; }
.faq__eyebrow { display: block; font-size: 10.5px; letter-spacing: 0.16em; color: var(--peri); margin-bottom: 0.9rem; }
.faq__title {
  font-family: var(--f-head);
  font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  letter-spacing: -0.015em;
  color: #fff;
  margin: 0 0 1.6rem;
}
.faq__list { max-width: 72ch; }
.faq__item { border-top: 1px solid rgba(246, 242, 235, 0.14); }
.faq__item:last-child { border-bottom: 1px solid rgba(246, 242, 235, 0.14); }
.faq__q {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 1.2rem;
  padding: 1.1rem 0;
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--cream);
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q::after { content: "+"; font-family: var(--f-body); color: var(--peri); font-size: 1.3rem; line-height: 1; flex: 0 0 auto; }
.faq__item[open] .faq__q::after { content: "\2013"; }
.faq__a { margin: 0; padding: 0 0 1.3rem; font-family: var(--f-body); font-size: 1rem; line-height: 1.6; color: rgba(246, 242, 235, 0.78); max-width: 66ch; }
.faq__q:focus-visible { outline: 2px solid var(--peri); outline-offset: 4px; border-radius: 4px; }
