@font-face {
  font-family: "Figtree";
  src: url("assets/fonts/Figtree-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Figtree";
  src: url("assets/fonts/Figtree-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Figtree";
  src: url("assets/fonts/Figtree-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --navy: #000a1e;
  --navy-2: #021434;
  --ink: #071226;
  --white: #fff;
  --paper: #f3f5f7;
  --paper-2: #e9edf2;
  --muted: #8993a3;
  --line: rgba(255, 255, 255, 0.12);
  --line-dark: rgba(0, 10, 30, 0.12);
  --blue: #008cff;
  --blue-light: #a2d5ff;
  --blue-wash: #e4f0fc;
  --green: #34c759;
  --yellow: #f7d000;
  --pink: #f00073;
  --orange: #ff5c21;
  --font: "Figtree", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --header-height: 72px;
  --content-max: 1480px;
  --radius: 28px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--navy);
  scroll-behavior: smooth;
  scroll-snap-type: y mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--blue) var(--navy);
}

body {
  margin: 0;
  color: var(--white);
  background: var(--navy);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

button,
a {
  font: inherit;
}

button {
  color: inherit;
}

button:focus-visible,
a:focus-visible,
section:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  transform: translateY(-140%);
  padding: 10px 16px;
  border-radius: 10px;
  color: var(--navy);
  background: var(--white);
  font-weight: 600;
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.deck-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 0 clamp(20px, 3.5vw, 64px);
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--navy) 88%, transparent);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: transform 300ms var(--ease), background 300ms ease;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 94px;
  height: auto;
}

.deck-header__meta {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  letter-spacing: 0.02em;
}

.deck-header__meta span:last-child {
  color: var(--white);
}

.header-divider {
  width: 1px;
  height: 18px;
  background: var(--line);
}

.deck-header__actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.text-button,
.primary-button {
  min-height: 40px;
  padding: 0 16px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
}

.text-button {
  color: rgba(255, 255, 255, 0.7);
  background: transparent;
}

.text-button:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.primary-button {
  color: var(--white);
  background: var(--blue);
}

.primary-button:hover {
  background: #1997ff;
}

.progress {
  position: fixed;
  z-index: 110;
  top: calc(var(--header-height) - 2px);
  right: 0;
  left: 0;
  height: 2px;
  pointer-events: none;
}

.progress span {
  display: block;
  width: 10%;
  height: 100%;
  background: var(--blue);
  transform-origin: left center;
  transition: width 380ms var(--ease);
}

.deck {
  position: relative;
}

.slide {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  color: var(--white);
  background: var(--navy);
}

.slide--light {
  color: var(--ink);
  background: var(--paper);
}

.slide--blue {
  background: var(--blue);
}

.slide--final {
  background: linear-gradient(145deg, #000715 0%, var(--navy) 56%, #001d47 100%);
}

.slide__inner {
  position: relative;
  z-index: 2;
  width: min(calc(100% - clamp(40px, 8vw, 128px)), var(--content-max));
  min-height: 100svh;
  margin: 0 auto;
  padding: calc(var(--header-height) + clamp(34px, 6vh, 72px)) 0 clamp(72px, 8vh, 110px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ambient-grid {
  position: absolute;
  z-index: 0;
  inset: -10% -10% -10% 35%;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 64px 64px;
  transform: perspective(800px) rotateY(-18deg) rotateZ(-5deg);
  mask-image: linear-gradient(90deg, transparent 0%, #000 25%, #000 75%, transparent 100%);
}

.ambient-grid::after {
  content: "";
  position: absolute;
  inset: 12% 20%;
  border-radius: 50%;
  background: rgba(0, 140, 255, 0.6);
  filter: blur(130px);
}

.ambient-grid--final {
  inset: 0;
  transform: rotate(-4deg) scale(1.1);
  opacity: 0.22;
}

.eyebrow,
.kicker {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
  font-weight: 600;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.55);
}

.kicker {
  margin-bottom: 14px;
  color: var(--blue);
}

.slide--blue .kicker {
  color: rgba(0, 10, 30, 0.64);
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.dot--blue {
  background: var(--blue);
  box-shadow: 0 0 24px var(--blue);
}

.hero-grid {
  justify-content: space-between;
}

.hero-copy {
  max-width: 1060px;
  margin: clamp(36px, 8vh, 96px) 0 clamp(34px, 6vh, 72px);
}

.hero-copy h1,
.slide-heading h2,
.final-grid h2 {
  margin: 0;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.hero-copy h1 {
  font-size: clamp(48px, 6.4vw, 108px);
  line-height: 0.94;
  font-weight: 600;
}

.hero-copy h1 span,
.final-grid h2 span {
  color: var(--blue);
}

.hero-summary {
  max-width: 840px;
  margin: clamp(26px, 4vh, 44px) 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(18px, 1.65vw, 26px);
  line-height: 1.45;
}

.hero-axis {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: clamp(18px, 3vw, 48px);
  align-items: stretch;
}

.hero-axis article {
  padding: clamp(24px, 3vw, 40px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
}

.axis-label,
.status,
.panel-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--blue-light);
  background: rgba(0, 140, 255, 0.13);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.axis-label--earned {
  color: #b2f8c2;
  background: rgba(52, 199, 89, 0.13);
}

.hero-axis strong {
  display: block;
  margin-top: 22px;
  font-size: clamp(22px, 2vw, 34px);
  line-height: 1.1;
}

.hero-axis small {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 14px;
}

.axis-bridge {
  align-self: center;
  min-width: 210px;
  padding: 16px 22px;
  border-radius: 18px;
  color: var(--navy);
  background: var(--white);
  text-align: center;
  box-shadow: 0 18px 70px rgba(0, 140, 255, 0.25);
}

.axis-bridge span {
  display: block;
  color: #6c7480;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.axis-bridge b {
  display: block;
  margin-top: 4px;
  font-size: 16px;
}

.slide-source {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.36);
  font-size: 11px;
}

.slide-source--dark {
  color: rgba(0, 10, 30, 0.46);
}

.slide-heading {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: clamp(18px, 2.5vw, 40px);
  align-items: start;
  margin-bottom: clamp(40px, 7vh, 84px);
}

.slide-heading--compact {
  margin-bottom: clamp(30px, 5vh, 58px);
}

.section-number {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 16px;
  opacity: 0.55;
  font-size: 13px;
  font-weight: 600;
}

.slide-heading h2,
.final-grid h2 {
  font-size: clamp(36px, 4.1vw, 68px);
  line-height: 1.02;
  font-weight: 600;
}

.slide-heading h2 em {
  color: var(--blue);
  font-style: normal;
}

.verdict-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.verdict-card {
  position: relative;
  min-height: 320px;
  padding: clamp(26px, 3vw, 42px);
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 50px rgba(0, 10, 30, 0.06);
}

.verdict-card::after {
  content: "";
  position: absolute;
  right: -50px;
  bottom: -80px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  opacity: 0.2;
  filter: blur(8px);
}

.verdict-card--strong::after { background: var(--green); }
.verdict-card--partial::after { background: var(--yellow); }
.verdict-card--gap::after { background: var(--pink); }

.verdict-card .status {
  color: var(--ink);
  background: var(--paper-2);
}

.verdict-card h3 {
  position: relative;
  z-index: 1;
  margin: 72px 0 12px;
  font-size: clamp(26px, 2.2vw, 36px);
  line-height: 1.08;
}

.verdict-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #596476;
  font-size: clamp(15px, 1.2vw, 19px);
  line-height: 1.48;
}

.signal-row {
  position: absolute;
  z-index: 1;
  right: 32px;
  bottom: 26px;
  left: 32px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.signal-row span {
  padding: 7px 10px;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  color: #667183;
  font-size: 11px;
}

.big-quote {
  margin: clamp(34px, 6vh, 72px) 0 0 112px;
  padding: 0;
  border: 0;
  max-width: 1080px;
  color: #687386;
  font-size: clamp(20px, 2vw, 31px);
  line-height: 1.35;
}

.matrix {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.035);
}

.matrix__head,
.matrix__row {
  display: grid;
  grid-template-columns: 0.8fr 1.5fr 1.5fr 0.62fr;
  gap: 24px;
  align-items: center;
  padding: 0 clamp(18px, 2.5vw, 38px);
}

.matrix__head {
  min-height: 56px;
  color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.035);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.matrix__row {
  min-height: clamp(58px, 7vh, 76px);
  border-top: 1px solid var(--line);
  font-size: clamp(13px, 1.15vw, 17px);
}

.matrix__row strong {
  font-size: 1.08em;
}

.matrix__row span {
  color: rgba(255, 255, 255, 0.62);
}

.read {
  justify-self: start;
  padding: 7px 11px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
}

.read--strong { color: #b2f8c2; background: rgba(52, 199, 89, 0.13); }
.read--partial { color: #fff3a4; background: rgba(247, 208, 0, 0.13); }
.read--over { color: #ffd0b9; background: rgba(255, 92, 33, 0.14); }
.read--gap { color: #ffb1d6; background: rgba(240, 0, 115, 0.14); }

.slide-note {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
}

.slide-note span {
  color: var(--blue-light);
  font-weight: 600;
}

.brand-ladder {
  display: grid;
  grid-template-columns: 0.86fr 1.06fr 1.28fr;
  gap: 16px;
  align-items: end;
}

.ladder-step {
  min-height: 260px;
  padding: clamp(28px, 3vw, 44px);
  border-radius: var(--radius);
  color: var(--navy);
  background: var(--white);
  box-shadow: 0 18px 56px rgba(0, 41, 86, 0.16);
}

.ladder-step--promise {
  min-height: 320px;
  background: var(--navy);
  color: var(--white);
}

.ladder-step--proof {
  min-height: 380px;
  color: var(--navy);
  background: var(--yellow);
}

.ladder-step span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.55;
}

.ladder-step h3 {
  margin: 72px 0 14px;
  font-size: clamp(24px, 2.6vw, 42px);
  line-height: 1.03;
  letter-spacing: -0.035em;
}

.ladder-step p {
  margin: 0;
  font-size: clamp(14px, 1.15vw, 18px);
  line-height: 1.45;
  opacity: 0.66;
}

.bridge-line {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto;
  gap: 16px;
  align-items: center;
  margin-top: 26px;
  color: rgba(0, 10, 30, 0.6);
  font-size: 12px;
}

.bridge-line i {
  height: 1px;
  background: rgba(0, 10, 30, 0.3);
}

.bridge-line strong {
  color: var(--navy);
}

.split-panel {
  display: grid;
  grid-template-columns: 1fr 74px 1fr;
  gap: 22px;
  align-items: stretch;
}

.split-panel__side {
  padding: clamp(26px, 3vw, 42px);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: var(--white);
}

.split-panel__side--missing {
  color: var(--white);
  background: var(--navy);
}

.split-panel .panel-tag {
  color: var(--blue);
  background: var(--blue-wash);
}

.split-panel__side--missing .panel-tag {
  color: var(--blue-light);
  background: rgba(0, 140, 255, 0.14);
}

.feature-list {
  list-style: none;
  margin: 32px 0 0;
  padding: 0;
}

.feature-list li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 14px;
  align-items: center;
  min-height: 62px;
  border-top: 1px solid currentColor;
  border-color: var(--line-dark);
  font-size: clamp(15px, 1.35vw, 20px);
}

.split-panel__side--missing .feature-list li {
  border-color: var(--line);
}

.feature-list li span {
  color: var(--blue);
  font-size: 11px;
  font-weight: 600;
}

.split-panel__axis {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  color: #768092;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.split-panel__axis i {
  width: 1px;
  flex: 1;
  margin: 14px 0;
  background: linear-gradient(var(--line-dark), var(--blue), var(--line-dark));
}

.trust-comparison {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 26px;
  align-items: center;
}

.trust-card {
  min-height: 390px;
  padding: clamp(30px, 4vw, 56px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
}

.trust-card--earned {
  border-color: rgba(52, 199, 89, 0.3);
  background: linear-gradient(145deg, rgba(52, 199, 89, 0.12), rgba(255, 255, 255, 0.035));
}

.trust-card h3 {
  margin: 58px 0 30px;
  max-width: 520px;
  font-size: clamp(28px, 3vw, 48px);
  line-height: 1.04;
  letter-spacing: -0.035em;
}

.trust-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.trust-card li {
  padding: 10px 0;
  border-top: 1px solid var(--line);
  color: rgba(255, 255, 255, 0.6);
  font-size: clamp(14px, 1.15vw, 18px);
}

.plus {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--blue);
  font-size: 28px;
}

.trust-equation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 2vw, 32px);
  margin-top: 34px;
  color: rgba(255, 255, 255, 0.5);
  font-size: clamp(13px, 1.4vw, 20px);
}

.trust-equation b {
  color: #b2f8c2;
}

.community-grid {
  display: grid;
  grid-template-columns: minmax(380px, 0.9fr) 1.1fr;
  gap: clamp(40px, 7vw, 110px);
  align-items: center;
}

.community-model {
  position: relative;
  aspect-ratio: 1;
  max-width: 520px;
  border-radius: 50%;
  background: radial-gradient(circle at center, var(--white) 0 23%, transparent 24%), radial-gradient(circle at center, transparent 0 46%, rgba(0, 140, 255, 0.08) 47% 49%, transparent 50% 69%, rgba(0, 140, 255, 0.08) 70% 72%, transparent 73%);
}

.orbit-core {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  font-size: clamp(20px, 2vw, 30px);
  line-height: 1.1;
}

.orbit-core b {
  color: var(--blue);
}

.orbit span {
  position: absolute;
  display: grid;
  place-items: center;
  min-width: 80px;
  min-height: 38px;
  padding: 8px 14px;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(0, 10, 30, 0.08);
  font-size: 12px;
  font-weight: 600;
}

.orbit--outer span:nth-child(1) { top: 5%; left: 44%; }
.orbit--outer span:nth-child(2) { top: 64%; left: 3%; }
.orbit--outer span:nth-child(3) { right: 1%; bottom: 15%; }
.orbit--inner span:nth-child(1) { top: 31%; right: 12%; }
.orbit--inner span:nth-child(2) { bottom: 27%; left: 20%; }

.statement-pair {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.statement-pair .strike {
  color: #7e8897;
  font-size: clamp(18px, 1.8vw, 28px);
  text-decoration: line-through;
  text-decoration-color: var(--pink);
  text-decoration-thickness: 2px;
}

.statement-pair strong {
  font-size: clamp(30px, 3.4vw, 54px);
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.community-copy > p {
  max-width: 720px;
  margin: 28px 0;
  color: #667184;
  font-size: clamp(15px, 1.3vw, 20px);
  line-height: 1.48;
}

.inclusion-callout {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px 22px;
  padding: 26px;
  border-radius: 22px;
  color: var(--white);
  background: var(--navy);
}

.inclusion-callout span {
  color: rgba(255, 255, 255, 0.45);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.inclusion-callout b {
  font-size: clamp(15px, 1.5vw, 22px);
}

.voice-board {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.voice-column {
  padding: clamp(28px, 3vw, 44px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
}

.voice-column--keep {
  background: linear-gradient(145deg, rgba(52, 199, 89, 0.12), rgba(255, 255, 255, 0.03));
}

.voice-column--filter {
  background: linear-gradient(145deg, rgba(255, 92, 33, 0.12), rgba(255, 255, 255, 0.03));
}

.voice-column .panel-tag {
  margin-bottom: 28px;
}

.voice-column--keep .panel-tag { color: #b2f8c2; background: rgba(52, 199, 89, 0.13); }
.voice-column--filter .panel-tag { color: #ffd0b9; background: rgba(255, 92, 33, 0.14); }

.voice-column blockquote {
  margin: 0;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  font-size: clamp(19px, 2vw, 31px);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.voice-column p {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  line-height: 1.45;
}

.voice-rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 28px;
  font-size: 14px;
}

.voice-rule span {
  color: var(--blue-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 10px;
}

.decision-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.decision-grid article {
  min-height: 390px;
  padding: clamp(28px, 3vw, 42px);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: var(--white);
}

.decision-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  font-size: 22px;
  font-weight: 600;
}

.decision-icon--keep { color: #156d32; background: #d9f6df; }
.decision-icon--change { color: #0064b6; background: var(--blue-wash); }
.decision-icon--trim { color: #aa4300; background: #ffe2d3; }

.decision-grid h3 {
  margin: 46px 0 20px;
  font-size: clamp(28px, 2.5vw, 40px);
}

.decision-grid ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.decision-grid li {
  padding: 11px 0;
  border-top: 1px solid var(--line-dark);
  color: #5d687a;
  font-size: clamp(14px, 1.15vw, 18px);
}

.copy-edit-note {
  margin: 24px 0 0;
  padding: 16px 20px;
  border: 1px solid #f2cbdc;
  border-radius: 14px;
  color: #7b3758;
  background: #fff3f8;
  font-size: 13px;
}

.final-grid {
  justify-content: space-between;
}

.final-grid .slide-heading {
  margin-bottom: clamp(28px, 4vh, 48px);
}

.platform-stack {
  border-top: 1px solid var(--line);
}

.platform-stack article {
  display: grid;
  grid-template-columns: minmax(110px, 0.3fr) 1.7fr;
  gap: 30px;
  align-items: baseline;
  padding: clamp(15px, 2vh, 25px) 0;
  border-bottom: 1px solid var(--line);
}

.platform-stack span {
  color: var(--blue-light);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.platform-stack strong {
  font-size: clamp(20px, 2.3vw, 36px);
  line-height: 1.15;
}

.next-move {
  margin-top: clamp(24px, 4vh, 44px);
  padding: clamp(24px, 3vw, 40px);
  border-radius: var(--radius);
  color: var(--navy);
  background: var(--yellow);
}

.next-move > span {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.58;
}

.next-move h3 {
  margin: 12px 0 8px;
  font-size: clamp(24px, 2.7vw, 42px);
  letter-spacing: -0.035em;
}

.next-move p {
  max-width: 950px;
  margin: 0;
  font-size: clamp(14px, 1.15vw, 18px);
  line-height: 1.45;
  opacity: 0.7;
}

.final-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  margin-top: 32px;
  color: rgba(255, 255, 255, 0.38);
  font-size: 11px;
}

.final-footer img {
  width: 88px;
  height: auto;
}

.final-footer a {
  color: rgba(255, 255, 255, 0.66);
  text-decoration: none;
}

.deck-controls {
  position: fixed;
  z-index: 100;
  right: clamp(16px, 3vw, 48px);
  bottom: clamp(16px, 3vw, 32px);
  display: grid;
  grid-template-columns: 40px auto 40px;
  align-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(0, 10, 30, 0.82);
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.deck-controls button {
  width: 40px;
  height: 40px;
  border: 0;
  color: var(--white);
  background: transparent;
  cursor: pointer;
}

.deck-controls button:hover {
  background: rgba(255, 255, 255, 0.09);
}

.deck-controls > span {
  min-width: 62px;
  color: rgba(255, 255, 255, 0.45);
  text-align: center;
  font-size: 10px;
}

.deck-controls b {
  color: var(--white);
}

.overview {
  width: min(1100px, calc(100% - 32px));
  max-height: min(820px, calc(100svh - 32px));
  padding: clamp(24px, 4vw, 52px);
  border: 1px solid var(--line);
  border-radius: 30px;
  color: var(--white);
  background: #061124;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.5);
}

.overview::backdrop {
  background: rgba(0, 4, 15, 0.72);
  backdrop-filter: blur(8px);
}

.overview__header {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: start;
}

.overview__header h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 52px);
  letter-spacing: -0.04em;
}

.overview__header button {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  font-size: 26px;
}

.overview__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 38px;
}

.overview__grid a {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 14px;
  align-items: center;
  min-height: 64px;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  color: var(--white);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.035);
}

.overview__grid a:hover,
.overview__grid a[aria-current="true"] {
  border-color: rgba(0, 140, 255, 0.6);
  background: rgba(0, 140, 255, 0.1);
}

.overview__grid b {
  color: var(--blue-light);
  font-size: 11px;
}

.overview__hint {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.4);
  font-size: 12px;
}

@media (max-width: 980px) {
  :root { --header-height: 64px; }

  .deck-header__meta,
  #printDeck { display: none; }

  .hero-axis,
  .verdict-grid,
  .brand-ladder,
  .decision-grid {
    grid-template-columns: 1fr;
  }

  .hero-axis {
    gap: 10px;
  }

  .axis-bridge {
    justify-self: center;
    transform: rotate(-2deg);
  }

  .hero-axis article { min-height: 170px; }
  .verdict-card { min-height: 260px; }

  .ladder-step,
  .ladder-step--promise,
  .ladder-step--proof {
    min-height: auto;
  }

  .ladder-step h3 { margin-top: 42px; }
  .bridge-line { display: none; }

  .split-panel { grid-template-columns: 1fr; }
  .split-panel__axis { display: none; }

  .trust-comparison { grid-template-columns: 1fr; }
  .trust-card { min-height: auto; }
  .plus { justify-self: center; }

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

  .community-model {
    width: min(100%, 430px);
    justify-self: center;
  }

  .decision-grid article { min-height: auto; }
}

@media (max-width: 720px) {
  html { scroll-snap-type: none; }

  .deck-header {
    gap: 12px;
    padding: 0 16px;
  }

  .brand img { width: 78px; }
  .text-button { display: none; }
  .primary-button { padding: 0 13px; }

  .slide {
    min-height: auto;
    overflow: clip;
  }

  .slide__inner {
    width: calc(100% - 32px);
    min-height: 100svh;
    padding-top: calc(var(--header-height) + 42px);
    padding-bottom: 86px;
  }

  .hero-copy { margin: 42px 0 32px; }
  .hero-copy h1 { font-size: clamp(43px, 13vw, 68px); }
  .hero-summary { font-size: 17px; }

  .hero-axis article { padding: 22px; }
  .hero-axis strong { margin-top: 18px; }

  .slide-heading,
  .slide-heading--compact {
    grid-template-columns: 44px 1fr;
    gap: 14px;
    margin-bottom: 32px;
  }

  .section-number {
    width: 42px;
    height: 42px;
    border-radius: 13px;
  }

  .slide-heading h2,
  .final-grid h2 { font-size: clamp(34px, 10vw, 48px); }

  .verdict-card h3 { margin-top: 42px; }
  .big-quote { margin-left: 0; }

  .matrix {
    border: 0;
    background: transparent;
  }

  .matrix__head { display: none; }

  .matrix__row {
    grid-template-columns: 1fr auto;
    gap: 8px 16px;
    margin-bottom: 10px;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
  }

  .matrix__row strong { grid-column: 1; }
  .matrix__row span { grid-column: 1 / -1; }
  .matrix__row .read { grid-column: 2; grid-row: 1; }

  .trust-equation {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .trust-equation span { transform: rotate(90deg); margin-left: 14px; }

  .community-grid { gap: 26px; }
  .inclusion-callout { grid-template-columns: 1fr; gap: 5px; }
  .inclusion-callout span:not(:first-child) { margin-top: 12px; }

  .voice-board { grid-template-columns: 1fr; }
  .voice-rule { align-items: flex-start; flex-direction: column; gap: 7px; }

  .platform-stack article { grid-template-columns: 1fr; gap: 7px; }
  .final-footer { grid-template-columns: 1fr auto; }
  .final-footer span { display: none; }

  .overview__grid { grid-template-columns: 1fr; }
  .deck-controls { right: 12px; bottom: 12px; }
}

@media (max-height: 760px) and (min-width: 981px) {
  .slide__inner {
    padding-top: calc(var(--header-height) + 26px);
    padding-bottom: 58px;
  }

  .slide-heading,
  .slide-heading--compact { margin-bottom: 28px; }
  .hero-copy { margin: 34px 0 28px; }
  .hero-copy h1 { font-size: clamp(48px, 5.4vw, 80px); }
  .hero-summary { font-size: 18px; }
  .verdict-card { min-height: 260px; }
  .verdict-card h3 { margin-top: 42px; }
  .big-quote { margin-top: 26px; }
  .trust-card { min-height: 310px; }
  .trust-card h3 { margin-top: 36px; }
  .decision-grid article { min-height: 330px; }
  .decision-grid h3 { margin-top: 30px; }
}

@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;
  }
}

@media print {
  @page { size: 16in 9in; margin: 0; }

  html,
  body {
    background: var(--navy);
    scroll-snap-type: none;
    print-color-adjust: exact;
    -webkit-print-color-adjust: exact;
  }

  .deck-header,
  .progress,
  .deck-controls,
  .overview,
  .skip-link { display: none !important; }

  .slide {
    min-height: 9in;
    height: 9in;
    break-after: page;
    page-break-after: always;
  }

  .slide__inner {
    width: calc(100% - 1.15in);
    min-height: 9in;
    height: 9in;
    padding: 0.38in 0;
    justify-content: flex-start;
  }

  .slide-heading,
  .slide-heading--compact { margin-bottom: 24px; }

  .slide-heading h2,
  .final-grid h2 { font-size: 44px; }

  .hero-grid,
  .final-grid { justify-content: space-between; }

  .hero-copy { margin: 28px 0; }
  .hero-copy h1 { font-size: 68px; }
  .hero-summary { margin-top: 22px; font-size: 18px; }
  .hero-axis article { padding: 22px 28px; }
  .hero-axis strong { margin-top: 16px; font-size: 24px; }
  .slide-source { display: none; }

  .verdict-card { min-height: 250px; padding: 26px; }
  .verdict-card h3 { margin-top: 38px; }
  .big-quote { margin-top: 24px; }

  .ladder-step,
  .ladder-step--promise,
  .ladder-step--proof { min-height: 280px; }
  .ladder-step h3 { margin-top: 40px; }

  .split-panel__side { padding: 24px 30px; }
  .feature-list { margin-top: 22px; }
  .feature-list li { min-height: 46px; }

  .trust-card { min-height: 300px; padding: 30px 38px; }
  .trust-card h3 { margin: 32px 0 20px; }
  .trust-card li { padding: 7px 0; }
  .trust-equation { margin-top: 22px; }

  .community-model { max-width: 390px; }
  .community-grid { gap: 42px; }
  .community-copy > p { margin: 18px 0; }
  .inclusion-callout { padding: 20px; }

  .voice-column { padding: 28px 34px; }
  .voice-column .panel-tag { margin-bottom: 18px; }
  .voice-column blockquote { padding: 10px 0; }
  .voice-rule { margin-top: 18px; }

  .decision-grid article { min-height: 330px; padding: 28px 34px; }
  .decision-grid h3 { margin: 28px 0 14px; }
  .decision-grid li { padding: 8px 0; }
  .copy-edit-note { margin-top: 16px; }

  .platform-stack article { padding: 14px 0; }
  .platform-stack strong { font-size: 26px; }
  .next-move { margin-top: 22px; padding: 24px 30px; }
  .next-move h3 { font-size: 30px; }
  .final-footer { margin-top: 18px; }
}
