:root {
  --c-accent:        oklch(0.52 0.22 260);
  --c-accent-hi:     oklch(0.62 0.22 260);
  --c-accent-lo:     oklch(0.40 0.20 260);
  --c-accent-wash:   oklch(0.52 0.22 260 / 0.14);

  --c-bg:            oklch(0.11 0.014 260);
  --c-surface:       oklch(0.16 0.016 260 / 0.55);
  --c-surface-2:     oklch(0.20 0.018 260 / 0.75);

  --c-white:         oklch(0.985 0.003 260);
  --c-fg-dim:        oklch(0.78  0.010 260);
  --c-fg-muted:      oklch(0.60  0.012 260);
  --c-gray:          oklch(0.68  0.012 260);
  --c-silver:        oklch(0.56  0.012 260);

  --c-border:        oklch(0.32 0.018 260 / 0.55);
  --c-border-h:      oklch(0.52 0.18  260 / 0.45);

  --c-success:       oklch(0.72 0.16 150);
  --c-info:          oklch(0.70 0.12 230);
  --c-neutral:       oklch(0.65 0.012 260);

  --f-display:       'Host Grotesk', system-ui, -apple-system, 'Helvetica Neue', sans-serif;
  --f-body:          'Host Grotesk', system-ui, -apple-system, 'Helvetica Neue', sans-serif;
  --f-mono:          'Geist Mono', ui-monospace, 'SF Mono', Menlo, monospace;

  --t-xs:            clamp(11px, 0.75rem, 12px);
  --t-sm:            clamp(13px, 0.86rem, 14px);
  --t-body:          clamp(15px, 1rem,    17px);
  --t-lead:          clamp(17px, 1.12rem, 19px);
  --t-h4:            clamp(18px, 1.35vw,  22px);
  --t-h3:            clamp(20px, 1.8vw,   26px);
  --t-h2:            clamp(32px, 4.2vw,   56px);
  --t-h1:            clamp(44px, 7vw,     92px);
  --t-display:       clamp(56px, 9vw,    132px);

  --measure-body:    66ch;
  --measure-lead:    54ch;

  --sp-1:  8px;
  --sp-2:  16px;
  --sp-3:  24px;
  --sp-4:  32px;
  --sp-5:  40px;
  --sp-6:  48px;
  --sp-8:  64px;
  --sp-12: 96px;
  --sp-16: 128px;
  --sp-24: 192px;

  --section-tight: clamp(72px, 9vw, 112px);
  --section-loose: clamp(120px, 13vw, 176px);

  --ease-tactical: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-standard: cubic-bezier(0.22, 1, 0.36, 1);

  --dur-fast: 100ms;
  --dur-mid:  400ms;
  --dur-slow: 800ms;

  --max-w:    1440px;
  --gutter:   clamp(24px, 5vw, 80px);

  --border-1: 1px;
  --border-2: 2px;
  --border-3: 3px;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
}

body {
  background: var(--c-bg);
  color: var(--c-white);
  font-family: var(--f-body);
  font-size: var(--t-body);
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: -0.005em;
  font-feature-settings: "ss01", "cv02", "cv11";
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--dur-fast) var(--ease-tactical);
}
a:hover { color: var(--c-accent-hi); }

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

h1, .h1 {
  font-family: var(--f-display);
  font-size: var(--t-h1);
  font-weight: 600;
  line-height: 0.96;
  letter-spacing: -0.022em;
  color: var(--c-white);
  font-feature-settings: "ss01";
}
h2, .h2 {
  font-family: var(--f-display);
  font-size: var(--t-h2);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--c-white);
  max-width: 22ch;
}
h3, .h3 {
  font-family: var(--f-display);
  font-size: var(--t-h3);
  font-weight: 600;
  line-height: 1.22;
  letter-spacing: -0.012em;
  color: var(--c-white);
}
h4, .h4 {
  font-family: var(--f-display);
  font-size: var(--t-h4);
  font-weight: 600;
  line-height: 1.28;
  letter-spacing: -0.008em;
  color: var(--c-white);
}
p {
  color: var(--c-fg-dim);
  font-size: var(--t-body);
  line-height: 1.62;
  max-width: var(--measure-body);
}

.lead {
  font-size: var(--t-lead);
  line-height: 1.5;
  font-weight: 400;
  color: color-mix(in oklch, var(--c-white) 80%, transparent);
  max-width: var(--measure-lead);
}

.eyebrow {
  font-family: var(--f-display);
  font-size: var(--t-sm);
  font-weight: 500;
  letter-spacing: -0.005em;
  color: color-mix(in oklch, var(--c-white) 55%, transparent);
  margin-bottom: var(--sp-2);
}

.nums, [data-nums] {
  font-feature-settings: "tnum" 1, "lnum" 1;
  font-variant-numeric: tabular-nums lining-nums;
}

.font-mono { font-family: var(--f-mono); }

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section--tight { padding: var(--section-tight) 0; }
.section--loose { padding: var(--section-loose) 0; }

.stack { display: flex; flex-direction: column; gap: var(--sp-3); }
.stack--tight { gap: var(--sp-2); }
.stack--loose { gap: var(--sp-6); }
.cluster { display: flex; flex-wrap: wrap; gap: var(--sp-2); align-items: center; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--f-display);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.005em;
  padding: 12px 22px;
  border: 1px solid transparent;
  background: transparent;
  color: var(--c-white);
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--dur-fast) var(--ease-tactical),
              border-color var(--dur-fast) var(--ease-tactical),
              color var(--dur-fast) var(--ease-tactical);
}
.btn:focus-visible {
  outline: 2px solid var(--c-accent);
  outline-offset: 2px;
}
a.btn:hover, a.btn:active, a.btn:focus { color: inherit; }

.btn--primary { background: var(--c-accent); color: var(--c-white); }
.btn--primary:hover  { background: var(--c-accent-hi); color: var(--c-white); }
.btn--primary:active { background: var(--c-accent-lo); color: var(--c-white); }

.btn--ghost {
  border-color: rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.85);
}
.btn--ghost:hover { border-color: var(--c-white); color: var(--c-white); }
.btn--ghost:active {
  border-color: var(--c-white);
  color: var(--c-white);
  background: rgba(255, 255, 255, 0.06);
}

.btn--large { font-size: 15px; padding: 16px 28px; }

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  height: 60px;
  padding: 0 var(--gutter);
  border-bottom: 1px solid transparent;
  transition: background var(--dur-mid) var(--ease-tactical),
              border-color var(--dur-mid) var(--ease-tactical);
}
.nav.is-scrolled {
  background: rgba(10, 13, 18, 0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: rgba(255, 255, 255, 0.06);
}
.nav__brand { display: inline-flex; align-items: center; flex-shrink: 0; }
.nav__logo { height: 28px; width: auto; display: block; }

.nav__links {
  display: flex;
  gap: var(--sp-6);
  list-style: none;
  margin: 0 auto;
}
.nav__links a {
  font-family: var(--f-display);
  font-size: 14px;
  font-weight: 500;
  color: var(--c-fg-dim);
  transition: color var(--dur-fast) var(--ease-tactical);
}
.nav__links a:hover { color: var(--c-white); }
.nav__links a[aria-current="page"] { color: var(--c-accent); }

.nav__cta {
  font-family: var(--f-display);
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 8px 16px;
  white-space: nowrap;
  transition: border-color var(--dur-fast), color var(--dur-fast);
}
.nav__cta:hover { border-color: var(--c-white); color: var(--c-white); }

.nav > nav[aria-label="Primary"] {
  flex: 1;
  display: flex;
  justify-content: center;
  min-width: 0;
}
.nav > nav[aria-label="Primary"] .nav__links {
  margin: 0;
  gap: var(--sp-4);
}
@media (max-width: 980px) {
  .nav > nav[aria-label="Primary"] { display: none; }
}

.label {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: color-mix(in oklch, var(--c-white) 55%, transparent);
}
.label--accent { color: var(--c-accent); }

.stat {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px 24px;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
}
.stat__num {
  font-family: var(--f-display);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 600;
  line-height: 0.92;
  letter-spacing: -0.03em;
  color: var(--c-white);
  font-variant-numeric: tabular-nums;
}
.stat__num small {
  font-size: 0.5em;
  color: color-mix(in oklch, var(--c-white) 60%, transparent);
  font-weight: 500;
  margin-left: 4px;
}
.stat__label {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: color-mix(in oklch, var(--c-white) 50%, transparent);
}
.stat__delta {
  font-family: var(--f-mono);
  font-size: 11px;
  color: color-mix(in oklch, var(--c-accent) 90%, transparent);
}

.spec-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--c-border);
  border: 1px solid var(--c-border);
}
@media (max-width: 720px) { .spec-strip { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 420px) { .spec-strip { grid-template-columns: 1fr; } }

.spec-strip > div {
  background: var(--c-bg);
  padding: 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 0;
}
.spec-strip dt {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: color-mix(in oklch, var(--c-white) 45%, transparent);
}
.spec-strip dd {
  margin: 0;
  font-family: var(--f-display);
  font-size: 16px;
  font-weight: 500;
  color: var(--c-white);
  letter-spacing: -0.005em;
}

.pipeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 56px);
  padding-top: 8px;
}
.pipeline::before {
  content: '';
  position: absolute;
  top: 7px;
  left: 4px;
  right: 4px;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0,
    color-mix(in oklch, var(--c-white) 18%, transparent) 8%,
    color-mix(in oklch, var(--c-white) 18%, transparent) 92%,
    transparent 100%);
  pointer-events: none;
}
@media (max-width: 900px) {
  .pipeline { grid-template-columns: 1fr; gap: 32px; padding-top: 0; }
  .pipeline::before { display: none; }
}

.pipeline__step {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 28px;
  position: relative;
}
.pipeline__step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--c-accent);
  outline: 4px solid var(--c-bg);
}
@media (max-width: 900px) {
  .pipeline__step { padding-top: 0; padding-left: 28px; }
  .pipeline__step::before { top: 4px; }
}
.pipeline__num {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-accent);
}
.pipeline__step h3 {
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--c-white);
  margin: 0;
  letter-spacing: -0.015em;
  max-width: 22ch;
}
.pipeline__step p {
  color: var(--c-fg-dim);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  max-width: 38ch;
}

.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1px;
  background: var(--c-border);
  border: 1px solid var(--c-border);
}
@media (max-width: 900px) { .bento { grid-template-columns: 1fr; } }

.bento__tile {
  background: var(--c-bg);
  padding: clamp(20px, 3vw, 36px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 200px;
  transition: background var(--dur-mid) var(--ease-standard);
}
.bento__tile:hover { background: color-mix(in oklch, var(--c-bg) 96%, white); }
.bento__tile--span-7 { grid-column: span 7; }
.bento__tile--span-5 { grid-column: span 5; }
.bento__tile--span-12 { grid-column: 1 / -1; }
@media (max-width: 900px) { .bento__tile { grid-column: 1 / -1 !important; } }

.bento__tile--featured {
  background:
    linear-gradient(135deg, color-mix(in oklch, var(--c-accent) 6%, transparent), transparent 60%),
    var(--c-bg);
  border-left: var(--border-3) solid var(--c-accent);
}

.compare {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  user-select: none;
  touch-action: pan-y;
  cursor: ew-resize;
  --swipe-pos: 50%;
}
.compare__viewport {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.compare__pic {
  position: absolute;
  inset: 0;
  background-color: #0a0d12;
  background-size: cover;
  background-position: center;
}
.compare__pic--before {
  width: 100%;
  clip-path: inset(0 calc(100% - var(--swipe-pos)) 0 0);
  will-change: clip-path;
}
.compare__handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--swipe-pos);
  width: 2px;
  background: var(--c-white);
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 2;
  will-change: left;
}
.compare__grip {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--c-white);
  background: rgba(10, 13, 18, 0.85);
  box-shadow: 0 0 0 6px rgba(10, 13, 18, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-white);
  font-family: var(--f-mono);
  font-size: 18px;
  pointer-events: none;
}
.compare__grip::before { content: '\21C4'; }
.compare__label {
  position: absolute;
  bottom: 16px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-white);
  padding: 6px 10px;
  background: rgba(10, 13, 18, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  pointer-events: none;
  z-index: 1;
}
.compare__label--left  { left: 16px; }
.compare__label--right { right: 16px; }

.pic-4-after  { background-image: url("img/4.png"); }
.pic-4-before { background-image: url("img/4O.png");  image-rendering: pixelated; }
.pic-6-after  { background-image: url("img/6.png"); }
.pic-6-before { background-image: url("img/6O.png");  image-rendering: pixelated; }

.tag {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 3px 7px;
  border: var(--border-1) solid color-mix(in oklch, var(--c-white) 18%, transparent);
  color: color-mix(in oklch, var(--c-white) 70%, transparent);
  background: transparent;
  display: inline-block;
  line-height: 1;
}
.tag.tag--success {
  color: var(--c-success);
  border-color: color-mix(in oklch, var(--c-success) 55%, transparent);
  background: color-mix(in oklch, var(--c-success) 10%, transparent);
}
.tag.tag--info {
  color: var(--c-info);
  border-color: color-mix(in oklch, var(--c-info) 55%, transparent);
  background: color-mix(in oklch, var(--c-info) 10%, transparent);
}

.section {
  border-top: 1px solid var(--c-border);
  scroll-margin-top: 80px;
}
.section:last-of-type { border-bottom: 1px solid var(--c-border); }

.section__head {
  display: grid;
  grid-template-columns: minmax(160px, 1fr) minmax(0, 2.4fr);
  gap: clamp(24px, 5vw, 96px);
  align-items: start;
  padding-bottom: var(--sp-6);
  margin-bottom: var(--sp-6);
  border-bottom: 1px solid var(--c-border);
}
.section__head .label {
  margin: 0;
  padding-top: 6px;
}
.section__head__body {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  min-width: 0;
}
.section__head h2 {
  margin: 0;
  max-width: 24ch;
}
.section__head .lead {
  margin: 0;
  max-width: 60ch;
  color: color-mix(in oklch, var(--c-white) 72%, transparent);
}
@media (max-width: 760px) {
  .section__head {
    grid-template-columns: 1fr;
    gap: var(--sp-2);
    padding-bottom: var(--sp-4);
    margin-bottom: var(--sp-4);
  }
  .section__head .label { padding-top: 0; }
}

.section__body { min-width: 0; }
.section__body--prose .lead { max-width: 70ch; }

.hero {
  padding-top: clamp(112px, 14vw, 184px);
  padding-bottom: clamp(72px, 10vw, 128px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--sp-3);
}
.hero .eyebrow { margin: 0; }
.hero__title {
  margin: 0;
  max-width: 18ch;
  font-size: clamp(48px, 8.4vw, 112px);
  line-height: 0.94;
  letter-spacing: -0.03em;
  font-weight: 600;
}
.hero__accent { color: var(--c-accent); }
.hero__lead {
  max-width: 60ch;
  margin-top: var(--sp-1);
}
.hero__actions {
  margin-top: var(--sp-3);
  gap: var(--sp-2);
}
.hero__spec {
  margin-top: var(--sp-6);
  width: 100%;
}

.bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.bullets li {
  position: relative;
  padding-left: 18px;
  color: var(--c-fg-dim);
  font-size: 14.5px;
  line-height: 1.55;
  max-width: 56ch;
}
.bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  background: var(--c-accent);
  border-radius: 50%;
}

.tile__label {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: color-mix(in oklch, var(--c-white) 55%, transparent);
  margin: 0;
}
.bento__tile--featured .tile__label,
.tier-card--featured .tile__label { color: var(--c-accent); }

.bento__tile { gap: var(--sp-2); padding: clamp(24px, 3vw, 40px); }
.bento__tile h3 {
  margin: 0;
  font-size: clamp(20px, 1.7vw, 24px);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.2;
  max-width: 22ch;
  color: var(--c-white);
}
.bento__tile p { margin: 0; }
.bento__tile .bullets { margin-top: var(--sp-1); }

ol.pipeline { list-style: none; padding: 0; margin: 0; }

.results-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 2.5vw, 40px);
}
@media (max-width: 880px) {
  .results-grid { grid-template-columns: 1fr; }
}

.result-card {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.result-card__caption {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 4px;
}
.result-card__title {
  font-family: var(--f-display);
  font-size: 16px;
  font-weight: 500;
  color: var(--c-white);
  letter-spacing: -0.01em;
  margin: 0;
}
.result-card__copy {
  font-family: var(--f-display);
  font-size: 13px;
  color: var(--c-fg-muted);
  margin: 0;
  max-width: 50ch;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--c-border);
  border: 1px solid var(--c-border);
}
.stats-grid .stat {
  border: 0;
  padding: clamp(20px, 2.5vw, 32px);
  gap: 10px;
}
.stats-grid .stat__num { font-size: clamp(40px, 4.4vw, 64px); }
.stats-grid .stat__delta { color: color-mix(in oklch, var(--c-white) 50%, transparent); }
@media (max-width: 720px) {
  .stats-grid { grid-template-columns: 1fr; }
}

.data-card {
  border: 1px solid var(--c-border);
  background: var(--c-surface);
  overflow-x: auto;
}
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--f-display);
  font-size: 14px;
}
.data-table th,
.data-table td {
  padding: 16px 22px;
  text-align: left;
  border-bottom: 1px solid var(--c-border);
  color: var(--c-fg-dim);
  vertical-align: middle;
}
.data-table thead th {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: color-mix(in oklch, var(--c-white) 55%, transparent);
  font-weight: 500;
  background: color-mix(in oklch, var(--c-white) 3%, transparent);
  padding-top: 14px;
  padding-bottom: 14px;
}
.data-table tbody tr:last-child th,
.data-table tbody tr:last-child td { border-bottom: 0; }
.data-table tbody td:first-child,
.data-table tbody th:first-child {
  color: var(--c-white);
  font-weight: 500;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.data-table .num {
  font-family: var(--f-mono);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
  text-align: right;
  white-space: nowrap;
  color: var(--c-white);
}
.data-table tbody tr {
  transition: background var(--dur-fast) var(--ease-tactical);
}
.data-table tbody tr:hover {
  background: color-mix(in oklch, var(--c-white) 2%, transparent);
}
.data-table--keyval th { width: 240px; }
.data-table--keyval td:nth-child(2) { width: auto; }
.data-table--keyval td:last-child {
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--c-white);
  text-align: right;
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.tiers-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--c-border);
  border: 1px solid var(--c-border);
}
@media (max-width: 880px) {
  .tiers-grid { grid-template-columns: 1fr; }
}

.tier-card {
  background: var(--c-bg);
  padding: clamp(24px, 3vw, 36px);
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  transition: background var(--dur-mid) var(--ease-standard);
}
.tier-card:hover {
  background: color-mix(in oklch, var(--c-bg) 95%, white);
}
.tier-card__scale {
  font-family: var(--f-display);
  font-size: clamp(40px, 4.4vw, 64px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 0.96;
  color: var(--c-white);
  margin: 0;
  font-variant-numeric: tabular-nums;
}
.tier-card .bullets { margin-top: var(--sp-2); }

.tier-card--featured {
  background:
    linear-gradient(135deg, color-mix(in oklch, var(--c-accent) 6%, transparent), transparent 60%),
    var(--c-bg);
  border-left: var(--border-3) solid var(--c-accent);
}
.tier-card--featured .tier-card__scale { color: var(--c-accent); }

.access__cta {
  margin-top: var(--sp-2);
  gap: var(--sp-2);
}

.footer { padding: 0; border-top: 1px solid var(--c-border); }
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-3);
  padding-top: var(--sp-5);
  padding-bottom: var(--sp-5);
}
.footer p { margin: 0; max-width: none; color: var(--c-fg-muted); font-family: var(--f-display); font-size: 13px; }
.footer__links {
  display: flex;
  gap: var(--sp-4);
  list-style: none;
}
.footer__links a { color: var(--c-fg-muted); font-family: var(--f-display); font-size: 13px; }
.footer__links a:hover { color: var(--c-white); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
