@font-face {
  font-family: 'Plus Jakarta Sans';
  src: url('../fonts/plus-jakarta-sans-var-latin.woff2') format('woff2-variations'),
       url('../fonts/plus-jakarta-sans-var-latin.woff2') format('woff2');
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'IBM Plex Sans';
  src: url('../fonts/ibm-plex-sans-var-latin.woff2') format('woff2-variations'),
       url('../fonts/ibm-plex-sans-var-latin.woff2') format('woff2');
  font-weight: 100 700;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'IBM Plex Mono';
  src: url('../fonts/ibm-plex-mono-500-latin.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --ink: #16132A;
  --ink-2: #2B2740;
  --ink-3: #4A4658;
  --ink-4: #55516A;
  --muted: #6B6779;
  --muted-2: #6E6A80;

  --purple: #3A1180;
  --purple-lt: #5B2AA0;
  --purple-deep: #250A56;
  --purple-ink: #1B0B33;
  --purple-void: #12081F;
  --purple-glow: rgba(58, 17, 128, .55);
  --purple-tint: rgba(58, 17, 128, .1);
  --purple-tint-2: rgba(58, 17, 128, .14);

  --green: #22C55E;
  --green-2: #16A34A;
  --green-txt: #137334;
  --amber-txt: #8F5A03;
  --red: #E0484F;
  --red-txt: #BC2B33;

  --tone-neutral-bg: rgba(22, 19, 42, .07);
  --tone-purple-bg: rgba(58, 17, 128, .1);
  --tone-green-bg: rgba(22, 163, 74, .12);
  --tone-amber-bg: rgba(245, 158, 11, .14);
  --tone-red-bg: rgba(224, 72, 79, .12);

  --bg: #F6F4FA;
  --surface: #FFFFFF;
  --surface-soft: #FAF8FE;
  --line: rgba(22, 19, 42, .09);
  --line-soft: rgba(22, 19, 42, .07);
  --line-strong: rgba(22, 19, 42, .14);
  --track: #E6E1F0;

  --font-display: 'Plus Jakarta Sans', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: 'IBM Plex Sans', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-mono: 'IBM Plex Mono', ui-monospace, 'SFMono-Regular', 'Cascadia Mono', Menlo, monospace;

  --r-sm: 9px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 20px;
  --r-2xl: 22px;
  --r-3xl: 24px;
  --r-pill: 99px;

  --shell: 1180px;
  --gutter: clamp(1rem, 0.55rem + 2.2vw, 1.75rem);
  --ease: cubic-bezier(.16, 1, .3, 1);

  --header-h: 73px;
  --live-h: 496px;
  color-scheme: light;
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
  scrollbar-gutter: stable;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

html.is-locked { overflow: hidden; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, p, figure, blockquote, ul, ol, dl { margin: 0; }
ul, ol { padding: 0; list-style: none; }

img, svg { display: block; max-width: 100%; }

a {
  color: var(--purple);
  text-decoration: none;
}

a:hover { color: #6D1FB8; }

button, input, select, textarea {
  font: inherit;
  color: inherit;
}

button {
  margin: 0;
  border: 0;
  background: none;
  cursor: pointer;
  text-align: inherit;
}

:where(a, button, input, select, textarea, summary, [tabindex]):focus-visible {
  outline: 3px solid #C4B5FD;
  outline-offset: 2px;
  border-radius: 6px;
}

[hidden] { display: none !important; }

.u-sr {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 300;
  padding: 12px 18px;
  border-radius: var(--r-md);
  background: var(--ink);
  color: #FFFFFF;
  font-size: 14.5px;
  font-weight: 600;
  transform: translateY(-160%);
  transition: transform 180ms var(--ease);
}

.skip-link:focus-visible {
  transform: none;
  color: #FFFFFF;
}

.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: clamp(2.5rem, 1.6rem + 3.4vw, 3.5rem); }
.section--tight { padding-block: clamp(1.5rem, 1rem + 2vw, 2.25rem); }
.section--flush-top { padding-top: 0; }

.h-hero {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.05rem, 1.15rem + 3.7vw, 3.625rem);
  line-height: 1.06;
  letter-spacing: -.035em;
  text-wrap: pretty;
}

.h-1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.75rem, 1.3rem + 1.9vw, 2.375rem);
  line-height: 1.14;
  letter-spacing: -.03em;
  text-wrap: pretty;
}

.h-2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 1.2rem + 1.35vw, 2.125rem);
  line-height: 1.2;
  letter-spacing: -.025em;
  text-wrap: pretty;
}

.h-3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.15rem, 1.05rem + .5vw, 1.5625rem);
  line-height: 1.25;
  letter-spacing: -.02em;
  text-wrap: pretty;
}

.h-4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.3;
  letter-spacing: -.01em;
}

.lede {
  font-size: clamp(1rem, .95rem + .25vw, 1.0625rem);
  color: var(--ink-4);
  max-width: 46em;
  text-wrap: pretty;
}

.kicker {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted-2);
}

.card--dark .kicker { color: rgba(255, 255, 255, .68); }

.kicker--mono {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--purple);
}

.fine {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--muted);
  text-wrap: pretty;
}

.fine--xs { font-size: 12px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 12px 20px;
  border-radius: var(--r-md);
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  border: 1px solid transparent;
  transition: background-color 180ms var(--ease), border-color 180ms var(--ease),
              box-shadow 180ms var(--ease), color 180ms var(--ease);
}

.btn:disabled {
  cursor: not-allowed;
  box-shadow: none;
  background: rgba(22, 19, 42, .04);
  border-color: var(--line);
  color: var(--muted-2);
}

.btn--lg {
  min-height: 52px;
  padding: 15px 24px;
  font-size: 16px;
  border-radius: 14px;
}

.btn--sm {
  min-height: 38px;
  padding: 9px 14px;
  font-size: 13.5px;
  border-radius: 10px;
}

.btn--block { width: 100%; }

.btn--primary {
  background: var(--purple);
  color: #FFFFFF;
  box-shadow: 0 0 18px rgba(58, 17, 128, .45);
}

.btn--primary:hover {
  background: #45159A;
  color: #FFFFFF;
  box-shadow: 0 0 30px rgba(58, 17, 128, .8);
}

.btn--dark {
  background: var(--ink);
  color: #FFFFFF;
}

.btn--dark:hover {
  background: #292540;
  color: #FFFFFF;
  box-shadow: 0 0 22px rgba(22, 19, 42, .3);
}

.btn--outline {
  background: var(--surface);
  color: var(--ink);
  border-color: var(--line-strong);
}

.btn--outline:hover {
  color: var(--ink);
  border-color: rgba(58, 17, 128, .45);
  box-shadow: 0 0 20px rgba(58, 17, 128, .16);
}

.btn--purple-outline {
  background: var(--surface);
  color: var(--purple);
  border-color: rgba(58, 17, 128, .28);
}

.btn--purple-outline:hover {
  color: var(--purple-deep);
  border-color: rgba(58, 17, 128, .6);
  box-shadow: 0 0 20px rgba(58, 17, 128, .18);
}

.btn--tint {
  background: var(--purple-tint);
  color: var(--purple);
  min-height: 34px;
  padding: 7px 12px;
  font-size: 13.5px;
  border-radius: var(--r-sm);
}

.btn--tint:hover {
  background: rgba(58, 17, 128, .18);
  color: var(--purple-deep);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(246, 244, 250, .9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(22, 19, 42, .08);
}

@supports not (backdrop-filter: blur(2px)) {
  .site-header { background: rgba(246, 244, 250, .98); }
}

.site-header__bar {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-block: 14px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex: none;
  color: var(--ink);
}

.brand:hover { color: var(--ink); }

.brand__mark { flex: none; }

.brand__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 19px;
  letter-spacing: -.025em;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-inline-start: 8px;
}

.site-nav__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 12px;
  border-radius: var(--r-sm);
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-3);
  white-space: nowrap;
  transition: background-color 160ms var(--ease), color 160ms var(--ease);
}

.site-nav__link:hover {
  background: rgba(58, 17, 128, .08);
  color: var(--ink);
}

.site-nav__link[aria-current='page'] { color: var(--ink); }

.site-nav__link[aria-current='page']::after {
  content: '';
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 1px;
  height: 2px;
  border-radius: 2px;
  background: var(--purple);
  box-shadow: 0 0 8px rgba(58, 17, 128, .9);
}

.site-header__spacer { flex: 1 1 auto; }

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: none;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--r-md);
  border: 1px solid var(--line-strong);
  background: var(--surface);
  color: var(--ink);
  flex: none;
}

.nav-toggle:hover { border-color: rgba(58, 17, 128, .4); }

.progress-rail {
  height: 3px;
  background: rgba(22, 19, 42, .08);
}

.progress-rail__fill {
  height: 100%;
  width: var(--progress, 25%);
  background: var(--purple);
  border-radius: 0 3px 3px 0;
  box-shadow: 0 0 10px rgba(58, 17, 128, .9);
  transition: width 420ms var(--ease);
}

.drawer {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  grid-template-rows: 1fr;
}

.drawer[hidden] { display: none; }

.drawer__scrim {
  position: absolute;
  inset: 0;
  background: rgba(18, 8, 31, .5);
  animation: apFadeIn 180ms ease both;
}

.drawer__panel {
  position: relative;
  margin-left: auto;
  width: min(360px, 88vw);
  height: 100%;
  overflow-y: auto;
  overscroll-behavior: contain;
  background: var(--bg);
  border-left: 1px solid var(--line);
  padding: 18px var(--gutter) 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  animation: apSlideIn 220ms var(--ease) both;
}

.drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 6px;
}

.drawer__link {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 12px 14px;
  border-radius: var(--r-md);
  font-size: 16px;
  font-weight: 600;
  color: var(--ink-3);
}

.drawer__link:hover {
  background: rgba(58, 17, 128, .08);
  color: var(--ink);
}

.drawer__link[aria-current='page'] {
  background: var(--purple-tint);
  color: var(--purple);
}

.drawer__actions {
  display: grid;
  gap: 10px;
  margin-top: 14px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.sponsor-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 22px;
  padding: 18px 22px;
  border-radius: var(--r-lg);
  background: linear-gradient(165deg, var(--purple), var(--purple-ink));
  color: #FFFFFF;
  transition: box-shadow 200ms var(--ease);
}

.sponsor-strip:hover {
  color: #FFFFFF;
  box-shadow: 0 0 30px rgba(58, 17, 128, .5);
}

.sponsor-strip__tag {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .68);
  margin-bottom: 7px;
}

.sponsor-strip__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17.5px;
  letter-spacing: -.02em;
  margin-bottom: 4px;
}

.sponsor-strip__body {
  font-size: 13.5px;
  color: rgba(255, 255, 255, .72);
}

.sponsor-strip__cta {
  flex: none;
  padding: 11px 16px;
  border-radius: 11px;
  background: #FFFFFF;
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: clamp(1.25rem, 1rem + 1vw, 1.875rem);
}

.card--lg { border-radius: var(--r-2xl); padding: clamp(1.375rem, 1rem + 1.6vw, 2rem); }

.card--dark {
  background: linear-gradient(165deg, var(--purple), var(--purple-ink) 55%, var(--purple-void));
  border: 0;
  border-radius: var(--r-3xl);
  color: #FFFFFF;
  box-shadow: 0 26px 60px rgba(76, 29, 149, .4), 0 0 0 1px rgba(58, 17, 128, .28);
}

.grid { display: grid; gap: 18px; }
.grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid--gap-sm { gap: 14px; }
.grid--gap-lg { gap: 24px; }

.split {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(1.5rem, 1rem + 2.6vw, 3.5rem);
  align-items: center;
}

.split--calc {
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: 24px;
  align-items: start;
}

.split--results {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 20px;
  align-items: stretch;
}

.split--chart {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 20px;
  align-items: start;
}

.split--even {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  align-items: start;
}

.section__head { margin-bottom: clamp(1.25rem, 1rem + 1.2vw, 1.875rem); }

.section__head .lede { margin-top: 10px; }

.section__head + .marquee { margin-top: 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 13px 7px 9px;
  border-radius: var(--r-pill);
  background: rgba(22, 163, 74, .1);
  color: var(--green-txt);
  font-size: 13px;
  font-weight: 600;
}

.eyebrow__dot {
  width: 7px;
  height: 7px;
  border-radius: var(--r-pill);
  background: var(--green-2);
  box-shadow: 0 0 8px rgba(22, 163, 74, .95);
  flex: none;
}

.hero { padding-block: clamp(2.75rem, 1.5rem + 4.4vw, 5.25rem) clamp(2rem, 1.4rem + 2.6vw, 3.5rem); }

.hero__title { margin-block: 26px 24px; }

.hero__title .is-accent { color: var(--purple); }

.hero__sub {
  display: block;
  font-size: clamp(1.125rem, 1rem + .55vw, 1.5rem);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -.02em;
  color: var(--ink-3);
  margin-top: 20px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.hero__note { margin-top: 20px; }

.dial {
  position: relative;
  width: clamp(11rem, 8rem + 9vw, 13.375rem);
  aspect-ratio: 1;
  margin-inline: auto;
}

.dial__svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.dial__arc {
  stroke: var(--dial-color, var(--green));
  stroke-dasharray: 540.4;
  stroke-dashoffset: var(--dial-offset, 97);
  filter: drop-shadow(0 0 9px var(--dial-color, var(--green)));
  transition: stroke-dashoffset 900ms var(--ease), stroke 400ms linear;
}

.dial__center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.dial__value {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.75rem, 2rem + 2.6vw, 4rem);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.dial__unit {
  font-size: 12.5px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .62);
  margin-top: 6px;
}

.score-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 12.5px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .68);
  font-weight: 600;
}

.score-card__dial { margin: 22px 0 8px; }

.score-card__band {
  text-align: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--band-color, var(--green));
  min-height: 26px;
}

.score-card__rows {
  margin-top: 22px;
  display: grid;
  gap: 10px;
}

.score-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  font-size: 14.5px;
  padding: 12px 14px;
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, .07);
}

.score-row__k { color: rgba(255, 255, 255, .68); }
.score-row__v { font-weight: 600; font-variant-numeric: tabular-nums; text-align: right; }

.score-card__fine {
  font-size: 12px;
  line-height: 1.5;
  color: rgba(255, 255, 255, .58);
  margin-top: 18px;
}

.compare-card__quote {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 1.25rem + 1vw, 1.875rem);
  letter-spacing: -.02em;
  color: var(--ink-3);
  line-height: 1.2;
}

.compare-card__list {
  margin-top: 22px;
  display: grid;
  gap: 12px;
  font-size: 15px;
  color: var(--muted);
}

.compare-card--dark {
  background: linear-gradient(165deg, var(--purple), #14082A);
  border: 1px solid rgba(58, 17, 128, .26);
  color: #FFFFFF;
  box-shadow: 0 18px 44px rgba(76, 29, 149, .28);
}

.compare-card--dark .kicker { color: #C4A2F5; }

.compare-card--dark .compare-card__quote {
  color: #FFFFFF;
  font-size: clamp(1.25rem, 1.05rem + .85vw, 1.5rem);
  line-height: 1.32;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.chip {
  font-size: 13px;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, .09);
  color: rgba(255, 255, 255, .82);
}

.chip--accent {
  background: rgba(58, 17, 128, .38);
  color: #E9D5FF;
}

.step-card__n {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  color: var(--purple);
  margin-bottom: 14px;
}

.step-card__t { margin-bottom: 8px; }

.step-card__d {
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--muted);
}

.goal-card {
  display: block;
  width: 100%;
  text-align: left;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: clamp(1.25rem, 1rem + .8vw, 1.625rem);
  color: var(--ink);
  transition: border-color 200ms var(--ease), box-shadow 200ms var(--ease), background-color 200ms var(--ease);
}

.goal-card:hover {
  color: var(--ink);
  border-color: rgba(58, 17, 128, .45);
  box-shadow: 0 0 0 1px rgba(58, 17, 128, .18), 0 16px 34px rgba(58, 17, 128, .14);
}

.goal-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--purple-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.goal-card__t {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  margin-bottom: 6px;
}

.goal-card__d {
  display: block;
  font-size: 14px;
  line-height: 1.5;
  color: var(--muted);
}

.marquee {
  overflow: hidden;
  margin-inline: calc(var(--gutter) * -1);
  padding: 4px var(--gutter);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}

.marquee__track {
  display: flex;
  width: max-content;
  gap: 18px;
  animation: apMarquee 84s linear infinite;
}

.marquee:hover .marquee__track,
.marquee:focus-within .marquee__track { animation-play-state: paused; }

.quote-card {
  width: min(372px, 82vw);
  flex: none;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 28px;
}

.quote-card__text {
  font-size: 16.5px;
  line-height: 1.55;
  color: var(--ink-2);
  margin-bottom: 18px;
  text-wrap: pretty;
}

.quote-card__who {
  font-size: 13.5px;
  color: var(--muted);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.trust-chip {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-3);
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 11px 15px;
  border-radius: var(--r-md);
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}

.cta-band__t {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.3rem, 1.1rem + .85vw, 1.5625rem);
  letter-spacing: -.02em;
  margin-bottom: 8px;
  text-wrap: pretty;
}

.cta-band__d {
  font-size: 15.5px;
  color: var(--muted);
}

.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, .72);
  margin-top: 40px;
}

.site-footer .brand__name { color: #FFFFFF; }

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
  padding-block: clamp(2rem, 1.5rem + 2vw, 3rem);
}

.site-footer__tag {
  font-size: 14.5px;
  color: rgba(255, 255, 255, .6);
  margin-top: 14px;
  max-width: 30ch;
}

.footer-col { display: grid; gap: 10px; align-content: start; }

.footer-col__h {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .62);
  margin-bottom: 2px;
}

.footer-col a,
.footer-col span {
  font-size: 14.5px;
  color: rgba(255, 255, 255, .72);
}

.footer-col a:hover { color: #FFFFFF; }

.site-footer__legal {
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding-block: 24px 32px;
}

.site-footer__legal p {
  font-size: 12.5px;
  line-height: 1.65;
  color: rgba(255, 255, 255, .62);
}

.site-footer__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 14px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, .62);
}

.site-footer__meta a { color: rgba(255, 255, 255, .78); }

.site-footer__meta a:hover { color: #FFFFFF; }

.section-card { margin-block: clamp(2.5rem, 1.6rem + 3.4vw, 3.5rem); }

.compare-summary { margin-top: 18px; }

.field { display: block; }

.field__top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 12px;
}

.field__label {
  font-size: 15.5px;
  font-weight: 600;
}

.field__value {
  font-family: var(--font-mono);
  font-size: clamp(1rem, .9rem + .4vw, 1.25rem);
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.field__hint {
  margin-top: 10px;
  font-size: 13.5px;
  color: var(--muted);
  min-height: 21px;
}

.field__hint-split {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px 16px;
}

.field__hint-strong { font-weight: 600; color: var(--ink-3); }

.range {
  -webkit-appearance: none;
  appearance: none;
  display: block;
  width: 100%;
  height: 26px;
  padding: 0;
  margin: 0;
  background: transparent;
  touch-action: pan-y;
  cursor: grab;
}

.range:active { cursor: grabbing; }

.range::-webkit-slider-runnable-track {
  height: 6px;
  border-radius: var(--r-pill);
  background: linear-gradient(90deg, var(--purple) 0 var(--fill, 0%), var(--track) var(--fill, 0%) 100%);
}

.range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  height: 26px;
  width: 26px;
  margin-top: -10px;
  border-radius: var(--r-pill);
  background: #FFFFFF;
  border: 2px solid var(--purple);
  box-shadow: 0 0 10px var(--purple-glow);
}

.range::-moz-range-track {
  height: 6px;
  border-radius: var(--r-pill);
  background: var(--track);
}

.range::-moz-range-progress {
  height: 6px;
  border-radius: var(--r-pill);
  background: var(--purple);
}

.range::-moz-range-thumb {
  height: 22px;
  width: 22px;
  border-radius: var(--r-pill);
  background: #FFFFFF;
  border: 2px solid var(--purple);
  box-shadow: 0 0 10px var(--purple-glow);
}

.range:focus-visible { outline: none; }

.range:focus-visible::-webkit-slider-thumb {
  outline: 3px solid #C4B5FD;
  outline-offset: 2px;
}

.range:focus-visible::-moz-range-thumb {
  outline: 3px solid #C4B5FD;
  outline-offset: 2px;
}

.money-input {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0 14px;
  border: 1.5px solid var(--line-strong);
  border-radius: var(--r-md);
  background: var(--surface);
  transition: border-color 160ms var(--ease), box-shadow 160ms var(--ease);
}

.money-input:focus-within {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(58, 17, 128, .12);
}

.money-input__sign {
  font-family: var(--font-mono);
  font-size: 16px;
  color: var(--muted);
}

.money-input input {
  flex: 1 1 auto;
  min-width: 0;
  border: 0;
  outline: none;
  background: transparent;
  padding: 14px 0;
  font-family: var(--font-mono);
  font-size: 17px;
  font-variant-numeric: tabular-nums;
}

.money-input input::-webkit-outer-spin-button,
.money-input input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.money-input input[type='number'] { -moz-appearance: textfield; appearance: textfield; }

.text-input {
  width: 100%;
  padding: 13px 15px;
  border: 1.5px solid var(--line-strong);
  border-radius: var(--r-md);
  background: var(--surface);
  font-size: 15px;
  transition: border-color 160ms var(--ease), box-shadow 160ms var(--ease);
}

.text-input:focus {
  outline: none;
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(58, 17, 128, .12);
}

::placeholder {
  color: var(--muted);
  opacity: 1;
}

.text-input:focus-visible {
  outline: 3px solid #C4B5FD;
  outline-offset: 2px;
}

.select-input {
  width: 100%;
  padding: 13px 15px;
  border: 1.5px solid var(--line-strong);
  border-radius: var(--r-md);
  background: var(--surface);
  font-size: 15px;
}

.field-label {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-3);
  margin-bottom: 8px;
}

.pick {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: var(--r-md);
  font-family: inherit;
  font-size: 14.5px;
  font-weight: 600;
  background: var(--surface);
  border: 1.5px solid var(--line-strong);
  color: var(--ink-3);
  transition: background-color 180ms var(--ease), border-color 180ms var(--ease), box-shadow 180ms var(--ease), color 180ms var(--ease);
}

.pick:hover {
  border-color: rgba(58, 17, 128, .42);
  color: var(--ink);
}

.pick[aria-pressed='true'],
.pick[aria-checked='true'] {
  background: var(--purple-tint-2);
  border-color: var(--purple);
  color: var(--ink);
  box-shadow: 0 0 16px rgba(58, 17, 128, .28);
}

.pick--sm { min-height: 42px; padding: 11px 16px; border-radius: 11px; }

.pick-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.stepper {
  display: flex;
  align-items: center;
  gap: 10px;
}

.stepper__btn {
  width: 40px;
  height: 40px;
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 11px;
  border: 1.5px solid var(--line-strong);
  background: var(--surface);
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  color: var(--ink-3);
  transition: border-color 160ms var(--ease), background-color 160ms var(--ease), color 160ms var(--ease);
}

.stepper__btn:hover:not(:disabled) {
  border-color: rgba(58, 17, 128, .45);
  background: var(--purple-tint);
  color: var(--purple);
}

.stepper__btn:disabled {
  cursor: not-allowed;
  background: rgba(22, 19, 42, .04);
  border-color: var(--line);
  color: var(--muted);
}

.stepper__value {
  min-width: 3ch;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 20px;
  font-variant-numeric: tabular-nums;
}

.count-box {
  background: var(--surface-soft);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  padding: 20px;
}

.count-box__t { font-size: 15px; font-weight: 600; }

.count-box__d {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 14px;
  min-height: 20px;
}

.goal-card__mono {
  display: block;
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--purple);
  margin-bottom: 12px;
}

.goal-card[aria-pressed='true'] .goal-card__d { color: var(--ink-3); }

.goal-card[aria-pressed='true'] {
  background: var(--purple-tint-2);
  border-color: var(--purple);
  box-shadow: 0 0 16px rgba(58, 17, 128, .28);
}

.notice--gap { margin-bottom: 18px; }

.calc-step { animation: apFade 320ms var(--ease) both; }

.coll-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.coll-row .count-box__d { margin-bottom: 0; }

.coll-count {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line-soft);
}

.coll-count .count-box__d { margin-bottom: 0; }

.coll-count[data-disabled='true'] .count-box__d,
.coll-count[data-disabled='true'] .stepper__value { color: var(--muted); }

.dti-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  padding: 20px 22px;
  border-radius: var(--r-lg);
  background: var(--purple-tint);
  border: 1px solid rgba(58, 17, 128, .2);
}

.dti-box .count-box__d { margin-bottom: 0; color: var(--ink-3); }

.dti-box__v {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 32px;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  color: var(--purple);
}

.calc-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}

.calc-panel { animation: apFade 380ms var(--ease) both; }

.calc-panel__fields { display: grid; gap: 30px; }

.calc-goal-strip {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 26px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(22, 19, 42, .08);
}

.calc-goal-strip__v {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
}

.calc-nav {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--line-soft);
}

.calc-nav__spacer { flex: 1 1 auto; }

.calc-nav__counter {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--muted);
}

.aside-stack {
  position: sticky;
  top: calc(var(--header-h) + 18px);
  display: grid;
  gap: 14px;
  align-content: start;
}

.live-card {
  min-height: var(--live-h);
  display: flex;
  flex-direction: column;
}

.live-card__t {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .68);
  text-align: center;
}

.live-card__dial { margin: 18px 0 6px; }

.live-card .dial { width: min(190px, 62%); }

.live-card .dial__value { font-size: 46px; }

.live-card__band {
  text-align: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  margin-top: 4px;
  color: var(--band-color, var(--green));
  min-height: 23px;
}

.live-card__rows {
  margin-top: auto;
  padding-top: 18px;
  display: grid;
  gap: 8px;
}

.live-card__fine {
  font-size: 11.5px;
  line-height: 1.5;
  color: rgba(255, 255, 255, .58);
  margin-top: 14px;
  text-align: center;
}

.live-empty {
  min-height: var(--live-h);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
  background: var(--surface-soft);
  border: 1px dashed rgba(58, 17, 128, .28);
}

.live-empty__dial {
  width: min(180px, 60%);
  aspect-ratio: 1;
  position: relative;
  margin-bottom: 6px;
}

.live-empty__dial svg { width: 100%; height: 100%; transform: rotate(-90deg); }

.live-empty__dash {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 42px;
  color: rgba(58, 17, 128, .3);
}

.live-empty__t {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
}

.live-empty__d {
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
}

.tab-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.tab {
  min-height: 42px;
  padding: 11px 17px;
  border-radius: var(--r-md);
  font-size: 14.5px;
  font-weight: 600;
  background: var(--surface);
  border: 1px solid rgba(22, 19, 42, .1);
  color: var(--ink-3);
  transition: background-color 180ms var(--ease), color 180ms var(--ease), border-color 180ms var(--ease), box-shadow 180ms var(--ease);
}

.tab:hover {
  border-color: rgba(58, 17, 128, .4);
  color: var(--ink);
}

.tab[aria-selected='true'] {
  background: var(--purple);
  border-color: var(--purple);
  color: #FFFFFF;
  box-shadow: 0 0 18px rgba(58, 17, 128, .5);
}

#result-hero {
  display: flex;
  flex-direction: column;
}

.result-hero {
  display: flex;
  flex: 1 1 auto;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(1.25rem, 1rem + 1.6vw, 2.25rem);
  margin-top: 22px;
}

.result-hero__dial { flex: none; }

.result-hero__body { flex: 1 1 260px; min-width: 0; }

.band-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 15px;
  border-radius: var(--r-pill);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16.5px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid var(--band-color, var(--green));
  color: var(--band-color, var(--green));
}

.result-hero__verdict {
  font-size: 15.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, .82);
  margin-top: 16px;
  text-wrap: pretty;
}

.terms-card { display: flex; flex-direction: column; }

.terms-card__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.terms-card__tag {
  font-size: 12px;
  color: var(--muted-2);
  white-space: nowrap;
}

.terms-list { display: grid; gap: 10px; }

.terms-list__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  padding: 13px 15px;
  border-radius: var(--r-md);
  background: var(--surface-soft);
  border: 1px solid var(--line-soft);
}

.terms-list__k { font-size: 14.5px; color: var(--muted); }

.terms-list__v {
  font-size: 14.5px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  text-align: right;
}

.terms-card__fine { margin-top: auto; padding-top: 16px; }

.blocker-list { display: grid; gap: 12px; }

.blocker {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: start;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px 24px;
  animation: apStagger 460ms var(--ease) both;
  animation-delay: var(--delay, 0ms);
}

.blocker__head {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.blocker__label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
}

.sev {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: var(--r-pill);
  background: rgba(22, 19, 42, .06);
  color: var(--muted);
  white-space: nowrap;
}

.sev--high { background: var(--tone-red-bg); color: var(--red-txt); }
.sev--medium { background: var(--tone-amber-bg); color: var(--amber-txt); }

.blocker__fix {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-3);
}

.blocker__eta {
  font-size: 13px;
  color: var(--muted);
  margin-top: 6px;
}

.blocker__pts { text-align: right; flex: none; }

.blocker__pts-n {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 26px;
  font-variant-numeric: tabular-nums;
  color: var(--red);
  line-height: 1;
}

.blocker__pts-l {
  font-size: 11.5px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-top: 5px;
}

.roadmap { display: grid; }

.milestone {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: start;
  padding-bottom: 22px;
}

.milestone:last-child { padding-bottom: 0; }

.milestone__rail {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  padding-top: 4px;
}

.milestone__dot {
  width: 12px;
  height: 12px;
  border-radius: var(--r-pill);
  background: var(--purple);
  box-shadow: 0 0 10px rgba(58, 17, 128, .7);
  flex: none;
}

.milestone__line {
  flex: 1 1 auto;
  width: 2px;
  min-height: 22px;
  margin-top: 6px;
  background: rgba(58, 17, 128, .22);
  border-radius: 2px;
}

.milestone:last-child .milestone__line { display: none; }

.milestone__when {
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--purple);
  margin-bottom: 5px;
}

.milestone__t {
  font-size: 15.5px;
  font-weight: 600;
  line-height: 1.45;
  text-wrap: pretty;
}

.milestone__d {
  font-size: 13.5px;
  color: var(--muted);
  margin-top: 5px;
  text-wrap: pretty;
}

.milestone__proj { text-align: right; flex: none; }

.milestone__proj-n {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 21px;
  font-variant-numeric: tabular-nums;
  color: var(--purple);
  line-height: 1;
}

.milestone__proj-l {
  font-size: 11px;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-top: 5px;
}

.ready-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 24px;
  padding: 20px 22px;
  border-radius: var(--r-lg);
  background: var(--purple-tint);
  border: 1px solid rgba(58, 17, 128, .2);
}

.ready-box__l {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 6px;
}

.ready-box__d {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.125rem, 1rem + .6vw, 1.375rem);
  letter-spacing: -.02em;
}

.ready-box__days { text-align: right; }

.ready-box__days-n {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 30px;
  font-variant-numeric: tabular-nums;
  color: var(--purple);
  line-height: 1;
}

.ready-box__days-l {
  font-size: 11.5px;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-top: 5px;
}

.sim-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 6px;
}

.delta-pill {
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 500;
  padding: 6px 11px;
  border-radius: var(--r-pill);
  background: rgba(22, 19, 42, .06);
  color: var(--muted);
  white-space: nowrap;
}

.delta-pill[data-tone='up'] {
  background: var(--purple-tint-2);
  color: var(--purple);
  box-shadow: 0 0 14px rgba(58, 17, 128, .3);
}

.delta-pill[data-tone='down'] {
  background: rgba(224, 72, 79, .12);
  color: var(--red);
}

.sim-score {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
  margin: 18px 0 22px;
  padding: 18px 20px;
  border-radius: var(--r-lg);
  background: var(--surface-soft);
  border: 1px solid var(--line-soft);
  min-height: 88px;
}

.sim-score__n {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 46px;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  color: var(--sim-color, var(--purple));
}

.sim-score__band {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--sim-text, var(--purple));
}

.sim-fields { display: grid; gap: 22px; }

.sim-fields .field__value { font-size: 16px; }

.sim-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  padding: 14px 16px;
  border-radius: var(--r-md);
  background: var(--surface-soft);
  border: 1px solid var(--line-soft);
}

.sim-toggle-row__l { font-size: 14.5px; font-weight: 600; }

.compare-tile {
  display: block;
  width: 100%;
  text-align: left;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px;
  color: var(--ink);
  transition: border-color 200ms var(--ease), box-shadow 200ms var(--ease);
}

.compare-tile:hover {
  color: var(--ink);
  border-color: rgba(58, 17, 128, .45);
  box-shadow: 0 0 0 1px rgba(58, 17, 128, .16);
}

.compare-tile[aria-current='true'] {
  border-color: var(--purple);
  box-shadow: 0 0 0 1px var(--purple), 0 0 18px rgba(58, 17, 128, .2);
}

.compare-tile__l {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-3);
  margin-bottom: 12px;
}

.compare-tile__row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
  min-height: 40px;
}

.compare-tile__n {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 30px;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  color: var(--tile-color, var(--purple));
}

.compare-tile__band {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--tile-text, var(--purple));
}

.bar-track {
  height: 6px;
  border-radius: var(--r-pill);
  background: var(--track);
  overflow: hidden;
  margin-top: 14px;
}

.bar-track__fill {
  height: 100%;
  width: var(--fill, 0%);
  border-radius: var(--r-pill);
  background: var(--tile-color, var(--purple));
  box-shadow: 0 0 8px var(--tile-color, var(--purple));
  transition: width 700ms var(--ease), background-color 400ms linear;
}

.save-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  background: var(--ink);
  border: 0;
  color: #FFFFFF;
}

.save-band .cta-band__d { color: rgba(255, 255, 255, .68); }

.save-band .btn--outline {
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .28);
  color: #FFFFFF;
}

.save-band .btn--outline:hover {
  background: rgba(255, 255, 255, .18);
  border-color: rgba(255, 255, 255, .5);
  color: #FFFFFF;
}

.save-band__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footnote-line {
  display: flex;
  align-items: center;
  gap: 9px;
  justify-content: center;
  font-size: 13px;
  color: var(--muted);
  margin-top: 34px;
  text-align: center;
}

.footnote-line__dot {
  width: 7px;
  height: 7px;
  border-radius: var(--r-pill);
  background: var(--green-2);
  flex: none;
}

.kpi {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 24px;
}

.kpi__l {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 14px;
}

.kpi__v {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.25rem, 1.9rem + 1.4vw, 2.875rem);
  line-height: 1;
  font-variant-numeric: tabular-nums;
  color: var(--kpi-color, var(--purple));
}

.kpi__d {
  font-size: 13.5px;
  color: var(--muted);
  margin-top: 12px;
  min-height: 21px;
}

.kpi__row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}

.chart-card__t {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 18px;
}

.chart-svg {
  width: 100%;
  height: auto;
  overflow: visible;
}

.chart-axis {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 12px;
  font-size: 12.5px;
  color: var(--muted-2);
}

.task-list { display: grid; gap: 10px; }

.task {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  width: 100%;
  text-align: left;
  padding: 16px 18px;
  border-radius: 15px;
  background: var(--surface-soft);
  border: 1px solid var(--line-soft);
  transition: background-color 200ms var(--ease), border-color 200ms var(--ease);
}

.task:hover { border-color: rgba(58, 17, 128, .35); }

.task[aria-pressed='true'] {
  background: var(--purple-tint);
  border-color: rgba(58, 17, 128, .3);
}

.task__box {
  width: 24px;
  height: 24px;
  flex: none;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  background: var(--surface);
  border: 2px solid rgba(22, 19, 42, .18);
  color: transparent;
}

.task[aria-pressed='true'] .task__box {
  background: var(--purple);
  border-color: var(--purple);
  color: #FFFFFF;
  box-shadow: 0 0 12px rgba(58, 17, 128, .6);
}

.task__label {
  font-size: 15px;
  line-height: 1.45;
  color: var(--ink-2);
  text-wrap: pretty;
}

.task[aria-pressed='true'] .task__label {
  color: var(--muted-2);
  text-decoration: line-through;
}

.task__pts {
  font-family: var(--font-mono);
  font-size: 13.5px;
  color: var(--purple);
  white-space: nowrap;
}

.float-pts {
  position: absolute;
  top: 26px;
  right: 30px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  color: var(--purple);
  text-shadow: 0 0 14px rgba(58, 17, 128, .8);
  pointer-events: none;
  animation: apFloat 1200ms ease-out both;
}

.tasks-card { position: relative; }

.sponsor-card {
  display: block;
  padding: 22px;
  border-radius: var(--r-xl);
  background: var(--surface);
  border: 1px solid rgba(58, 17, 128, .22);
  color: var(--ink);
  transition: border-color 200ms var(--ease), box-shadow 200ms var(--ease);
}

.sponsor-card:hover {
  color: var(--ink);
  border-color: rgba(58, 17, 128, .5);
  box-shadow: 0 0 20px rgba(58, 17, 128, .16);
}

.sponsor-card .sponsor-strip__tag { color: var(--muted-2); }

.sponsor-card__t {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -.015em;
  margin: 7px 0 6px;
}

.sponsor-card__d {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.5;
}

.sponsor-card__cta {
  display: inline-block;
  margin-top: 14px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--purple);
}

.locked-note {
  position: relative;
  margin-top: 18px;
  padding: 18px 20px;
  border-radius: var(--r-lg);
  background: var(--surface-soft);
  border: 1px solid var(--line);
  overflow: hidden;
}

.locked-note__teaser {
  filter: blur(4px);
  opacity: .5;
  user-select: none;
}

.locked-note__gate {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  padding: 12px;
}

.locked-note__t {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15.5px;
  margin-bottom: 6px;
}

.locked-note__d {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--muted);
}

.locked-note__tag {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--muted-2);
}

.pricing-head {
  text-align: center;
  max-width: 44rem;
  margin-inline: auto;
}

.pricing-head .lede { margin-inline: auto; margin-top: 14px; }

.billing-toggle {
  display: inline-flex;
  gap: 4px;
  margin-top: 26px;
  padding: 4px;
  border-radius: var(--r-pill);
  background: var(--surface);
  border: 1px solid var(--line);
}

.billing-toggle__btn {
  min-height: 40px;
  padding: 10px 18px;
  border-radius: var(--r-pill);
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink-3);
  transition: background-color 180ms var(--ease), color 180ms var(--ease), box-shadow 180ms var(--ease);
}

.billing-toggle__btn:hover { color: var(--ink); }

.billing-toggle__btn[aria-pressed='true'] {
  background: var(--purple);
  color: #FFFFFF;
  box-shadow: 0 0 16px rgba(58, 17, 128, .5);
}

.plan {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  border-radius: var(--r-2xl);
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  transition: border-color 220ms var(--ease), box-shadow 220ms var(--ease);
}

.plan:hover {
  border-color: rgba(58, 17, 128, .4);
  box-shadow: 0 0 0 1px rgba(58, 17, 128, .14), 0 18px 40px rgba(58, 17, 128, .1);
}

.plan--pro {
  background: linear-gradient(165deg, var(--purple), var(--purple-ink));
  border-color: rgba(58, 17, 128, .45);
  color: #FFFFFF;
  box-shadow: 0 22px 48px rgba(76, 29, 149, .34);
}

.plan--pro:hover {
  border-color: rgba(199, 125, 255, .6);
  box-shadow: 0 22px 52px rgba(76, 29, 149, .45), 0 0 30px rgba(58, 17, 128, .3);
}

.plan__badge {
  display: inline-block;
  align-self: flex-start;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: 6px 11px;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, .14);
  color: #E9D5FF;
  margin-bottom: 12px;
}

.plan__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 10px;
}

.plan__price-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
  min-height: 48px;
}

.plan__price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 38px;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.plan__per { font-size: 14px; color: var(--muted); }

.plan--pro .plan__per { color: rgba(255, 255, 255, .7); }

.plan__framing {
  font-size: 14.5px;
  line-height: 1.5;
  margin-top: 12px;
  color: var(--muted);
  min-height: 44px;
  text-wrap: pretty;
}

.plan--pro .plan__framing { color: rgba(255, 255, 255, .72); }

.plan__features {
  display: grid;
  gap: 12px;
  flex: 1 1 auto;
  align-content: start;
}

.plan__feature {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  font-size: 14.5px;
  line-height: 1.45;
  color: var(--ink-3);
}

.plan--pro .plan__feature { color: rgba(255, 255, 255, .82); }

.plan__check { color: var(--purple); font-weight: 700; }

.plan--pro .plan__check { color: #C77DFF; }

.matrix-wrap {
  margin-top: clamp(2rem, 1.5rem + 2vw, 3rem);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  background: var(--surface);
  overflow: hidden;
}

.matrix-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  contain: paint;
}

.matrix {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  table-layout: fixed;
}

.matrix th,
.matrix td {
  padding: 15px 16px;
  font-size: 14.5px;
  text-align: center;
  border-bottom: 1px solid var(--line-soft);
  vertical-align: middle;
}

.matrix thead th {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--muted-2);
  background: var(--surface-soft);
  border-bottom: 1px solid var(--line);
}

.matrix th[scope='row'] {
  text-align: left;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14.5px;
  color: var(--ink-3);
  position: sticky;
  left: 0;
  background: var(--surface);
  z-index: 1;
}

.matrix thead th:first-child {
  text-align: left;
  position: sticky;
  left: 0;
  background: var(--surface-soft);
  z-index: 2;
}

.matrix tbody tr:last-child th,
.matrix tbody tr:last-child td { border-bottom: 0; }

.matrix td {
  color: var(--purple);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

.matrix td[data-yes='true'] { color: var(--purple); font-weight: 600; }

.matrix td[data-no='true'] { color: var(--muted-2); }

.matrix__foot {
  padding: 18px 20px;
  border-top: 1px solid var(--line);
  background: var(--surface-soft);
}

.portal {
  min-height: 100dvh;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
}

.portal__aside {
  background: linear-gradient(165deg, var(--purple-deep), var(--purple-ink) 55%, var(--purple-void));
  color: #FFFFFF;
  padding: clamp(2rem, 1.4rem + 3vw, 4rem);
  display: flex;
  flex-direction: column;
  gap: 32px;
  justify-content: space-between;
}

.portal__aside .brand__name { color: #FFFFFF; }

.portal__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.75rem, 1.3rem + 2vw, 2.5rem);
  line-height: 1.15;
  letter-spacing: -.03em;
  text-wrap: pretty;
}

.portal__sub {
  font-size: 16.5px;
  line-height: 1.55;
  color: rgba(255, 255, 255, .74);
  margin-top: 16px;
  max-width: 34ch;
}

.portal__fine {
  font-size: 12.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, .62);
}

.portal__main {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(2rem, 1.4rem + 3vw, 4rem) var(--gutter);
}

.portal__card {
  width: 100%;
  max-width: 420px;
  display: grid;
  gap: 14px;
}

.portal__card .btn { margin-top: 8px; }

.demo-note {
  padding: 14px 16px;
  border-radius: var(--r-md);
  background: rgba(245, 158, 11, .1);
  border: 1px solid rgba(245, 158, 11, .3);
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--amber-txt);
}

.notice {
  padding: 16px 18px;
  border-radius: var(--r-md);
  background: var(--surface-soft);
  border: 1px solid var(--line);
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-3);
}

.legal-page { max-width: 70ch; }

.legal-page h2 { margin-top: 32px; margin-bottom: 10px; }

.legal-page p { margin-bottom: 14px; color: var(--ink-4); line-height: 1.7; }

.legal-page ul { display: grid; gap: 10px; margin-bottom: 14px; }

.legal-page li {
  padding-left: 20px;
  position: relative;
  color: var(--ink-4);
  line-height: 1.65;
}

.legal-page li::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 11px;
  width: 6px;
  height: 6px;
  border-radius: var(--r-pill);
  background: var(--purple);
}

.error-page {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 18px;
}

.error-page__code {
  font-family: var(--font-mono);
  font-size: 15px;
  color: var(--purple);
}

@keyframes apStagger {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: none; }
}

@keyframes apFade {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}

@keyframes apFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes apSlideIn {
  from { transform: translateX(100%); }
  to { transform: none; }
}

@keyframes apFloat {
  0% { opacity: 0; transform: translateY(6px); }
  25% { opacity: 1; }
  100% { opacity: 0; transform: translateY(-28px); }
}

@keyframes apPulse {
  0%, 100% { filter: drop-shadow(0 0 4px rgba(58, 17, 128, .5)); }
  50% { filter: drop-shadow(0 0 11px rgba(58, 17, 128, .9)); }
}

@keyframes apMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 9px)); }
}

.brand__mark--pulse { animation: apPulse 3.4s ease-in-out infinite; }

.on-dark .brand__mark path:nth-child(1) { stroke: #A855F7; }
.on-dark .brand__mark path:nth-child(2) { stroke: rgba(255, 255, 255, .6); }
.on-dark .brand__mark path:nth-child(3) { fill: #C77DFF; }
.on-dark .brand__mark--pulse { animation-name: apPulseLight; }

@keyframes apPulseLight {
  0%, 100% { filter: drop-shadow(0 0 4px rgba(168, 85, 247, .5)); }
  50% { filter: drop-shadow(0 0 12px rgba(199, 125, 255, .95)); }
}

@media (max-width: 1080px) {
  .site-nav { display: none; }
  .nav-toggle { display: inline-flex; }
  .site-header__actions .btn--purple-outline { display: none; }
  .split--results,
  .split--chart { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .site-header__actions .btn--primary { display: none; }
}

@media (max-width: 980px) {
  .split,
  .split--calc { grid-template-columns: 1fr; }
  .aside-stack { position: static; }
  .grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
  .portal { grid-template-columns: 1fr; }
  .portal__aside { min-height: auto; }
  .live-card,
  .live-empty { min-height: 0; }
}

@media (max-width: 760px) {
  :root { --header-h: 69px; }
  .grid--2,
  .grid--3,
  .grid--4,
  .split--even { grid-template-columns: 1fr; }
  .site-footer__grid { grid-template-columns: 1fr; gap: 26px; }
  .brand__name { font-size: 17px; }
  .card { border-radius: 18px; }
  .blocker { grid-template-columns: 1fr; gap: 12px; }
  .blocker__pts { text-align: left; display: flex; align-items: baseline; gap: 8px; }
  .blocker__pts-l { margin-top: 0; }
  .milestone { grid-template-columns: 22px minmax(0, 1fr); }
  .milestone__proj {
    grid-column: 2;
    text-align: left;
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-top: 8px;
  }
  .milestone__proj-l { margin-top: 0; }
  .ready-box__days { text-align: left; }
  .save-band__actions { width: 100%; }
  .save-band__actions .btn { flex: 1 1 auto; }
  .hero__actions .btn { flex: 1 1 100%; }
  .cta-band .btn { width: 100%; }
  .sponsor-strip__cta { width: 100%; text-align: center; }
  .marquee__track { animation-duration: 62s; }
}

@media (max-width: 420px) {
  .quote-card { padding: 22px; }
  .plan { padding: 22px; }
  .stepper__btn { width: 44px; height: 44px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
    scroll-behavior: auto !important;
  }
  .marquee__track { animation: none; }
  .marquee { overflow-x: auto; }
}

@media print {
  .site-header,
  .site-footer,
  .drawer,
  .skip-link,
  .sponsor-strip,
  .sponsor-card,
  .marquee,
  .tab-row,
  .save-band,
  .nav-toggle { display: none !important; }

  body { background: #FFFFFF; }

  .card,
  .card--dark {
    box-shadow: none !important;
    border: 1px solid #CCCCCC !important;
    break-inside: avoid;
  }

  .card--dark { background: #FFFFFF !important; color: #16132A !important; }
  .card--dark .score-row { background: #F4F2F8 !important; }
  .card--dark .score-row__k,
  .card--dark .result-hero__verdict { color: #55516A !important; }
  .dial__unit { color: #6B6779 !important; }
}
