/* Design tokens */
:root {
  --bg: #ffffff;
  --ink: #0a0a0b;
  --ink-2: #1a1a1d;
  --muted: #6b6b73;
  --muted-2: #9a9aa3;
  --hair: #e8e8ec;
  --hair-2: #f0f0f3;
  --panel: #f5f5f8;
  --panel-2: #eef0f4;
  --accent: #6D28D9;
  --accent-soft: #a78bff;
  --brand-smoke: #9b9ca0;
  --warn: #d93636;
  --serif: "Instrument Serif","Times New Roman",serif;
  --sans: "Manrope",-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  --mono: var(--sans);
  --nav-height: 64px;
  --footer-reveal: clamp(620px,66vh,820px);
  --type-body-size: 15px;
  --type-body-line: 1.58;
  --type-body-weight: 400;
  --type-body-color: var(--ink-2);
  --type-body-muted-color: var(--muted);
  --type-body-max: 48ch;
  --type-body-lg-size: clamp(17px,1.35vw,20px);
  --type-body-lg-line: 1.55;
  --type-small-size: 13px;
  --type-small-line: 1.5;
  --type-label-size: 11px;
  --type-label-line: 1.25;
  --type-label-tracking: .14em;
  --type-label-transform: uppercase;
  --space-section-y: clamp(112px,10vw,156px);
  --space-section-head: clamp(64px,7vw,96px);
  --space-card-gap: clamp(12px,1.2vw,18px);
  --space-card-pad: 30px;
  --space-card-pad-sm: 30px;
  --card-radius: 8px;
  --card-border: rgba(232,232,236,.86);
  --card-divider: var(--hair);
  --card-surface: rgba(255,255,255,.78);
  --card-ink: var(--ink);
  --card-body: var(--type-body-muted-color);
  --card-muted: var(--muted);
  --card-glow: rgba(109,40,217,.10);
  --card-shadow: 0 18px 54px -48px rgba(20,20,40,.42);
  --card-shadow-hover: 0 28px 70px -48px rgba(20,20,40,.46);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  background: #fff;
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

a {
  color: inherit;
  text-decoration: none;
}

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

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

main {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 100vw;
  min-height: calc(100svh + 160px);
  background: var(--bg);
  padding-top: 64px;
  margin-bottom: var(--footer-reveal);
  box-shadow: 0 28px 80px rgba(0,0,0,.18);
  overflow-x: clip;
}

/* Layout helpers */
.wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 2;
}

.wrap.pricing-wrap {
  max-width: 1520px;
}

.narrow {
  max-width: 880px;
}

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

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
}

p {
  max-width: var(--type-body-max);
  font-size: var(--type-body-size);
  line-height: var(--type-body-line);
  font-weight: var(--type-body-weight);
  letter-spacing: 0;
  color: var(--type-body-color);
}

.tag,
.kicker {
  font-family: var(--mono);
  font-size: var(--type-label-size);
  line-height: var(--type-label-line);
  letter-spacing: var(--type-label-tracking);
  text-transform: var(--type-label-transform);
  color: var(--muted);
}

.tagline {
  font-family: var(--mono);
  font-size: var(--type-label-size);
  line-height: var(--type-label-line);
  letter-spacing: .12em;
  text-transform: var(--type-label-transform);
  color: var(--muted);
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.h-display {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(48px,7vw,100px);
  line-height: 1.02;
  letter-spacing: -.02em;
}

.h-display em,
.h-section em {
  font-style: italic;
  color: var(--muted);
}

.h-section {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px,5vw,76px);
  line-height: 1.04;
  letter-spacing: -.02em;
  text-wrap: pretty;
}

.h-card {
  font-family: var(--serif);
  font-size: clamp(27px,2.4vw,38px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -.01em;
}

.heading-h1,
.heading-display {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(48px,7vw,100px);
  line-height: 1.02;
  letter-spacing: -.02em;
}

.heading-h2,
.heading-section {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px,5vw,76px);
  line-height: 1.04;
  letter-spacing: -.02em;
}

.heading-h3,
.heading-card {
  font-family: var(--serif);
  font-size: clamp(27px,2.4vw,38px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -.01em;
}

.heading-h4 {
  font-family: var(--serif);
  font-size: clamp(24px,2vw,32px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -.01em;
}

.heading-h5,
.heading-h6 {
  font-family: var(--mono);
  font-size: var(--type-label-size);
  line-height: var(--type-label-line);
  letter-spacing: var(--type-label-tracking);
  text-transform: var(--type-label-transform);
  color: var(--muted);
}

.body-lg {
  max-width: var(--type-body-max);
  font-size: var(--type-body-lg-size);
  line-height: var(--type-body-lg-line);
  font-weight: var(--type-body-weight);
  letter-spacing: 0;
  color: var(--type-body-color);
}

.h-section + .body-lg,
.h-section + [data-reveal="words"].body-lg {
  margin-top: clamp(22px,2.2vw,34px);
  color: var(--muted);
}

.split .h-section + .body-lg,
.expertise-intro .h-section + .body-lg,
.process-row-copy .h-section + .body-lg,
.statement-copy .h-section + .body-lg,
.metric-section-head .h-section + .body-lg,
.section-head .h-section + .body-lg,
.restraint-head .h-section + .body-lg,
.scroll-process-copy .h-section + .body-lg,
.stack-cards-copy .h-section + .body-lg,
.stacked-process-head .h-section + .body-lg {
  margin-top: clamp(22px,2.2vw,34px);
  color: var(--muted);
}

.body,
.text-body {
  max-width: var(--type-body-max);
  font-size: var(--type-body-size);
  line-height: var(--type-body-line);
  font-weight: var(--type-body-weight);
  letter-spacing: 0;
  color: var(--type-body-color);
}

.sm,
.text-body-sm,
.text-small,
.text-caption {
  max-width: var(--type-body-max);
  font-size: var(--type-small-size);
  line-height: var(--type-small-line);
  font-weight: var(--type-body-weight);
  letter-spacing: 0;
  color: var(--type-body-muted-color);
}

.text-muted {
  color: var(--type-body-muted-color);
}

.text-label {
  font-family: var(--mono);
  font-size: var(--type-label-size);
  line-height: var(--type-label-line);
  letter-spacing: var(--type-label-tracking);
  text-transform: var(--type-label-transform);
  color: var(--muted);
}

/* Motion states */
.scroll-reveal-text {
  --reveal-start: 0%;
  --reveal-end: 0%;
  --reveal-rest-opacity: .52;
  opacity: 1;
  -webkit-mask-image: linear-gradient(110deg,#000 0%,#000 var(--reveal-start),rgba(0,0,0,var(--reveal-rest-opacity)) var(--reveal-end),rgba(0,0,0,var(--reveal-rest-opacity)) 100%);
  mask-image: linear-gradient(110deg,#000 0%,#000 var(--reveal-start),rgba(0,0,0,var(--reveal-rest-opacity)) var(--reveal-end),rgba(0,0,0,var(--reveal-rest-opacity)) 100%);
  transition: -webkit-mask-image .12s linear,mask-image .12s linear;
  will-change: mask-image;
}

.hero .scroll-reveal-text,
.scroll-reveal-text.is-complete {
  opacity: 1!important;
  -webkit-mask-image: none;
  mask-image: none;
  will-change: auto;
}

.section.dark .scroll-reveal-text,
.panel.dark .scroll-reveal-text {
  --reveal-rest-opacity: .58;
}

.motion-reduced .scroll-reveal-text {
  opacity: 1!important;
  -webkit-mask-image: none;
  mask-image: none;
  transition: none;
}

.motion-reduced .move-visual * {
  animation: none!important;
}

.motion-reduced .scroll-process-section {
  min-height: auto;
  padding: clamp(72px,8vw,112px) 0;
}

.motion-reduced .scroll-process-sticky {
  position: static;
  min-height: auto;
  padding: 0;
}

.motion-reduced .scroll-process-card {
  --reveal: 1!important;
  transform: none!important;
  opacity: 1!important;
  will-change: auto;
}

.motion-reduced .pricing-reveal,
.motion-reduced .price-card,
.motion-reduced .pricing-cta-card {
  opacity: 1!important;
  transform: none!important;
  will-change: auto;
}

@media (prefers-reduced-motion: reduce) {
  .move-visual * {
    animation: none!important;
  }

  .domain-card-bg,
  .domain-card-bg:before,
  .domain-card-bg:after {
    animation: none!important;
  }

  .archive-slide,
  .archive-progress span {
    transition: none!important;
  }
}

/* Header and navigation */
.header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 50;
  background: #fff;
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--hair);
  box-shadow: none;
  transition: background-color .16s ease,border-color .16s ease,box-shadow .16s ease;
}

.header.is-scrolled {
  background: rgba(255,255,255,.82);
  border-bottom-color: rgba(232,232,236,.72);
  box-shadow: 0 14px 34px rgba(10,10,11,.045);
}

.header-inner {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .28em;
  text-transform: uppercase;
}

.brand-logo {
  display: block;
  width: 24px;
  height: 24px;
  object-fit: contain;
  object-position: center;
}

.brand-word {
  display: inline-block;
}

.sigil {
  width: 18px;
  height: 18px;
  border: 1px solid var(--ink);
  position: relative;
  flex: 0 0 auto;
}

.sigil:before {
  content: "";
  position: absolute;
  left: 3px;
  top: 3px;
  width: 12px;
  height: 12px;
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
}

.sigil:after {
  content: "";
  position: absolute;
  left: 7px;
  top: 7px;
  width: 4px;
  height: 4px;
  background: var(--accent);
}

.primary {
  display: flex;
  gap: 24px;
  align-items: center;
}

.primary a {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 8px 0;
  position: relative;
  transition: color .2s ease-in-out;
}

.primary a.active {
  color: var(--accent);
}

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

.primary a.active:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -13px;
  height: 2px;
  background: var(--accent);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(232,232,236,.8);
  border-radius: 999px;
  background: rgba(255,255,255,.86);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  backdrop-filter: saturate(140%) blur(12px);
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle span {
  width: 16px;
  height: 1px;
  background: var(--ink);
  display: block;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 80;
  width: 100vw;
  height: 100svh;
  min-height: 100svh;
  background: rgba(255,255,255,.94);
  -webkit-backdrop-filter: saturate(135%) blur(22px);
  backdrop-filter: saturate(135%) blur(22px);
  color: var(--ink);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
  overflow: auto;
}

.mobile-menu:before {
  content: "";
  position: fixed;
  inset: 0;
  background: linear-gradient(135deg,rgba(109,40,217,.06),rgba(255,255,255,.84) 48%,rgba(255,255,255,.98));
  pointer-events: none;
}

.mobile-menu.is-open {
  opacity: 1;
  pointer-events: auto;
}

.menu-close {
  position: absolute;
  top: 18px;
  right: 20px;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(10,10,11,.10);
  border-radius: 999px;
  background: rgba(255,255,255,.88);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  backdrop-filter: saturate(140%) blur(12px);
  font-size: 34px;
  line-height: 1;
  color: var(--accent);
  cursor: pointer;
  display: grid;
  place-items: center;
  z-index: 2;
}

.mobile-menu-inner {
  position: relative;
  z-index: 1;
  min-height: 100svh;
  padding: 30px 20px 24px;
  display: grid;
  align-content: space-between;
}

.mobile-menu nav {
  display: grid;
  gap: 0;
  margin-top: 18px;
}

.mobile-menu nav a {
  font-family: var(--serif);
  font-size: clamp(40px,12vw,64px);
  line-height: .9;
  letter-spacing: -.02em;
}

.mobile-menu nav a.active {
  color: var(--accent);
}

.mobile-menu-services,
.mobile-menu-contact {
  display: grid;
  gap: 3px;
  font-size: 14px;
  line-height: 1.15;
}

.mobile-menu-services span,
.mobile-menu-contact span {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 5px;
}

.mobile-social {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.mobile-social a {
  width: 28px;
  height: 28px;
  border: 1px solid var(--hair);
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-family: var(--mono);
  font-size: 10px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: #fff;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .01em;
  line-height: 1.15;
  cursor: pointer;
  transition: transform .2s ease-in-out,background .2s ease-in-out,border-color .2s ease-in-out,box-shadow .2s ease-in-out,color .2s ease-in-out;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px -24px rgba(10,10,11,.55);
}

.btn.accent {
  background: var(--accent);
  border-color: var(--accent);
}

.btn.accent:hover {
  background: #5f22c8;
  border-color: #5f22c8;
}

.btn.ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--hair);
}

.btn.ghost:hover,
.btn.secondary:hover {
  border-color: rgba(10,10,11,.22);
  background: rgba(245,245,248,.72);
}

.btn.secondary {
  background: transparent;
  color: var(--ink);
}

/* Hero */
.hero {
  position: relative;
  z-index: 2;
  overflow-x: clip;
  overflow-y: visible;
  padding: 90px 0 70px;
}

.hero .wrap {
  position: relative;
  z-index: 2;
  min-width: 0;
}


.hero-grid {
  display: grid;
  grid-template-columns: minmax(0,1.08fr) minmax(320px,.72fr);
  gap: 64px;
  align-items: start;
}

.hero h1 {
  max-width: 15ch;
}

.home-hero .hero-grid {
  grid-template-columns: minmax(0,1fr);
  grid-template-areas: "text" "actions" "trust";
  justify-items: center;
  gap: clamp(14px,2.1svh,24px);
  text-align: center;
}

.home-hero .hero-copy {
  display: contents;
}

.home-hero .hero-text {
  grid-area: text;
  min-width: 0;
  width: min(100%,1120px);
  display: grid;
  justify-items: center;
}

.home-hero .terminal {
  grid-area: visual;
  min-width: 0;
  display: none;
}

.home-hero .hero-actions {
  grid-area: actions;
  justify-content: center;
  justify-self: center;
  margin-top: 0;
}

/* Page-specific sections */
.home-hero .hero-trust {
  grid-area: trust;
}

.hero .tag,
.hero .tagline,
.hero h1,
.hero .hero-sub,
.hero .hero-actions,
.hero .hero-price,
.hero .hero-trust,
.hero .terminal,
.hero .artifact {
  opacity: 1!important;
  transform: none!important;
  will-change: auto!important;
}

.hero-sub {
  margin-top: 30px;
  max-width: 58ch;
  color: var(--muted);
  font-size: clamp(16px,1.45vw,19px);
  line-height: 1.58;
}

.hero-sub b {
  font-weight: 400;
  color: var(--ink-2);
}

.hero-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 34px;
}

.home-hero .h-display {
  max-width: 30ch;
  font-size: clamp(3.7rem,6.2vw,7rem);
  line-height: .94;
  letter-spacing: 0;
  text-wrap: balance;
}

.home-hero .hero-sub {
  font-size: clamp(16px,1.5vw,19px);
  display: none;
}

.home-hero {
  min-height: calc(100svh - var(--nav-height));
  display: grid;
  align-items: center;
  overflow-x: clip;
  overflow-y: visible;
  padding: clamp(38px,5.2svh,68px) 0 clamp(30px,4.4svh,56px);
}

.home-hero:after {
  content: none;
}

.home-hero .tagline {
  justify-content: center;
}

.home-hero .tagline + h1 {
  margin-top: clamp(20px,3.3svh,34px);
}

.stats-section {
  position: relative;
  overflow: visible;
  padding-top: clamp(56px,5.4vw,82px);
  padding-bottom: clamp(56px,5.4vw,82px);
}

.stats-section:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: min(980px,118vw);
  aspect-ratio: 1;
  pointer-events: none;
  border-radius: 50%;
  background: radial-gradient(circle,rgba(109,40,217,.26) 0 14%,rgba(109,40,217,.13) 36%,rgba(155,156,160,.10) 58%,transparent 74%);
  filter: blur(34px);
  opacity: .72;
  transform: translate(-48%,-58%);
}

.stats-section:after {
  content: none;
}

.stats-section .wrap {
  position: relative;
  z-index: 1;
}

.stats-intro {
  max-width: 800px;
  margin: 0 0 clamp(54px,6vw,82px);
  font-family: var(--serif);
  font-size: clamp(25px,2.65vw,39px);
  line-height: 1.12;
  letter-spacing: 0;
  text-align: left;
  text-wrap: balance;
}

.hero-price {
  margin-top: 18px;
}

.hero-trust {
  margin-top: 18px;
  max-width: 72ch;
  line-height: 1.48;
}

.home-hero .hero-trust {
  margin-top: 0;
  line-height: 1.44;
}

.hero .artifact-grid {
  grid-template-columns: 1fr;
}

.glow {
  position: absolute;
  pointer-events: none;
  inset: 0;
  z-index: 1;
  overflow: visible;
}

.glow:before,
.glow:after {
  content: "";
  position: absolute;
  aspect-ratio: 1;
  border-radius: 50%;
  filter: blur(24px);
  opacity: .84;
  transform: translateZ(0);
  background: radial-gradient(circle,rgba(109,40,217,.48) 0 16%,rgba(109,40,217,.20) 40%,rgba(155,156,160,.18) 64%,transparent 74%);
}

.glow:before {
  left: 0;
  bottom: 0;
  height: min(920px,118vw);
  transform: translate(-58%,52%);
}

.glow:after {
  top: 0;
  right: 0;
  height: min(520px,64vw);
  opacity: .46;
  transform: translate(48%,-48%);
}

.page-audit .hero .glow:before,
.page-audit .hero .glow:after {
  background: radial-gradient(circle,rgba(37,99,235,.50) 0 16%,rgba(37,99,235,.20) 40%,rgba(155,156,160,.17) 64%,transparent 74%);
}

.page-audit .audit-hero-grid {
  grid-template-columns: minmax(0,1fr);
  gap: clamp(38px,5vw,62px);
}

.audit-hero-copy {
  max-width: 860px;
}

.page-audit .audit-hero-copy .hero-sub {
  max-width: 62ch;
}

.audit-artifact {
  width: 100%;
  background: rgba(255,255,255,.84);
}

.audit-artifact .artifact-title {
  padding: 14px 18px;
}

.audit-title-copy {
  display: grid;
  gap: 3px;
}

.audit-title-copy strong {
  font-weight: 500;
  color: var(--ink);
}

.audit-title-copy span {
  color: var(--muted-2);
}

.audit-artifact .artifact-body {
  padding: clamp(20px,3vw,34px);
}

.audit-artifact-layout {
  display: grid;
  grid-template-columns: minmax(0,1.45fr) minmax(280px,.72fr);
  gap: clamp(20px,3vw,34px);
  align-items: stretch;
}

.audit-map-panel,
.audit-diagnosis-panel {
  min-width: 0;
  border: 1px solid var(--hair);
  border-radius: 6px;
  background: rgba(255,255,255,.64);
}

.audit-map-panel {
  padding: clamp(18px,2.4vw,26px);
}

.audit-diagnosis-panel {
  display: flex;
  flex-direction: column;
  padding: clamp(18px,2.4vw,26px);
}

.audit-terminal-row,
.audit-step-strip,
.audit-status-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.audit-terminal-row,
.audit-status-row {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--muted);
}

.audit-status-row {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--hair);
}

.audit-map-panel .curve {
  width: 100%;
  height: clamp(220px,24vw,310px);
  margin-top: 18px;
}

.audit-step-strip {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--hair);
}

.audit-step-strip span {
  min-width: 0;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}

.audit-step-strip strong {
  display: block;
  margin-top: 5px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink);
}

.audit-diagnosis-panel .h-card {
  margin-top: 20px;
}

.audit-diagnosis-panel .sm {
  max-width: 42ch;
}

.audit-patch {
  margin-top: auto;
  background: var(--accent);
  color: #fff;
  border-radius: 6px;
  padding: 18px;
}

.audit-patch .tag {
  color: rgba(255,255,255,.72);
}

.audit-patch .body {
  color: #fff;
  margin-top: 8px;
}

.audit-metrics {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 1px;
  margin-top: 1px;
  background: var(--hair);
  border: 1px solid var(--hair);
  border-radius: 6px;
  overflow: hidden;
}

.audit-metric {
  min-width: 0;
  padding: clamp(18px,2.2vw,26px);
  background: rgba(255,255,255,.72);
}

.audit-metric .n {
  font-family: var(--serif);
  font-size: clamp(44px,5.2vw,76px);
  line-height: .95;
  letter-spacing: 0;
}

.audit-metric sup {
  font-size: .38em;
  color: var(--muted);
  font-family: var(--mono);
}

.audit-metric p {
  margin-top: 10px;
  max-width: 22ch;
}

.page-sprint .hero .glow:before,
.page-sprint .hero .glow:after {
  background: radial-gradient(circle,rgba(15,118,110,.48) 0 16%,rgba(15,118,110,.19) 40%,rgba(155,156,160,.17) 64%,transparent 74%);
}

.page-build .hero .glow:before,
.page-build .hero .glow:after {
  background: radial-gradient(circle,rgba(180,83,9,.48) 0 16%,rgba(180,83,9,.19) 40%,rgba(155,156,160,.17) 64%,transparent 74%);
}

.home-hero .glow {
  inset: 0;
}

.home-hero .glow:before {
  height: min(1160px,128vw);
  transform: translate(-38%,54%);
}

.home-hero .glow:after {
  height: min(620px,66vw);
  opacity: .52;
}

@media (max-height:820px) and (min-width:981px) {
  .home-hero {
    padding: clamp(28px,4svh,42px) 0 clamp(24px,3.4svh,36px);
  }

  .home-hero .hero-grid {
    gap: clamp(12px,1.8svh,18px);
  }

  .home-hero .h-display {
    font-size: clamp(42px,5.2vw,76px);
    line-height: .93;
  }

  .home-hero .tagline + h1 {
    margin-top: clamp(16px,2.5svh,24px);
  }

  .home-hero .hero-trust {
    line-height: 1.38;
  }
}

/* Diagnostic terminal */
.terminal {
  border: 1px solid var(--hair);
  border-radius: 6px;
  background: linear-gradient(180deg,#fbfbfd,#fff);
  box-shadow: 0 30px 70px -44px rgba(20,20,40,.45);
  overflow: hidden;
}

.terminal-bar {
  height: 42px;
  border-bottom: 1px solid var(--hair);
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 14px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--muted);
}

.terminal-bar i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e1e1e7;
}

.terminal-body {
  padding: 24px;
}

.readout {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 11px 0;
  border-bottom: 1px dashed rgba(0,0,0,.12);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.readout span:first-child {
  color: var(--muted);
}

.big-read {
  font-family: var(--serif);
  font-size: 54px;
  line-height: 1;
  letter-spacing: -.02em;
  margin: 26px 0 8px;
}

.big-read em {
  color: var(--muted-2);
}

.bars {
  display: grid;
  gap: 7px;
  margin-top: 22px;
}

.bar {
  height: 3px;
  background: var(--hair);
  position: relative;
}

.bar i {
  position: absolute;
  inset: 0 auto 0 0;
  background: var(--accent);
}

/* Sections */
.section {
  position: relative;
  padding: var(--space-section-y) 0;
  border-top: 1px solid rgba(232,232,236,.72);
}

.section > .wrap {
  position: relative;
  z-index: 2;
}

.section.dark {
  background: #0a0a0b;
  color: #fff;
  border-top: 0;
}

.section.dark .body,
.section.dark .body-lg,
.section.dark p {
  color: #d7d7df;
}

.section.dark .tag,
.section.dark .sm {
  color: #a0a0aa;
}

.section.dark .h-section em {
  color: #9b8bd2;
}

.editorial-divider {
  padding: clamp(72px,8vw,116px) 0;
  background: #0a0a0b;
  color: #fff;
  border-top: 0;
  overflow: hidden;
  isolation: isolate;
}

.editorial-divider:before,
.editorial-divider:after {
  content: none;
}

.editorial-divider .wrap {
  width: min(1120px,100%);
  display: flex;
  justify-content: center;
}

.editorial-divider .quote {
  max-width: 24ch;
  text-align: center;
  color: #fff;
}

.editorial-divider .mark {
  display: inline-block;
  font-style: italic;
  line-height: 1;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  background: var(--accent);
  color: #fff;
  padding: .10em .18em;
}

.structural-panel-grid {
  display: grid;
  grid-template-columns: minmax(0,.72fr) minmax(280px,1fr);
  gap: var(--space-card-gap);
  align-items: stretch;
}

.structural-panel {
  background: #0a0a0b;
  color: #fff;
  border: 1px solid #1f1f25;
  border-radius: var(--card-radius);
  padding: var(--space-card-pad);
}

.structural-panel .tag {
  color: #a0a0aa;
}

.structural-panel .body,
.structural-panel .body-lg,
.structural-panel p {
  color: #d9d9e1;
}

.structural-panel .body + .body,
.structural-panel .body-lg + .body-lg,
.structural-panel p + p {
  margin-top: 18px;
}

.message-copy-section {
  position: relative;
  min-height: clamp(560px,62vw,760px);
  display: grid;
  place-items: center;
  isolation: isolate;
  background: #fff;
}

.message-copy-bg {
  position: absolute;
  inset: -24% -22vw;
  z-index: -2;
  pointer-events: none;
}

.message-copy-bg .cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: .9;
  filter: blur(10px);
  transform: scale(1.08);
}

.message-copy-section:after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 50% 50%,rgba(109,40,217,.08),rgba(255,255,255,0) 48%),
    linear-gradient(90deg,#fff 0%,rgba(255,255,255,.62) 18%,rgba(255,255,255,.34) 50%,rgba(255,255,255,.62) 82%,#fff 100%);
  pointer-events: none;
}

.message-copy-block {
  width: 100%;
  margin: 0 auto;
  text-align: center;
  padding: clamp(92px,12vw,150px) 0;
}

.message-copy-kicker {
  width: min(560px,100%);
  margin: 0 auto clamp(20px,2.2vw,28px);
  color: var(--ink);
}

.message-copy-title {
  max-width: min(1120px,29ch);
  margin: 0 auto;
}

.message-copy-body {
  max-width: 720px;
  margin: clamp(22px,2.8vw,34px) auto 0;
  color: var(--muted);
}

.message-copy-side {
  width: min(1320px,calc(100vw - 40px));
  margin: clamp(42px,5vw,64px) auto 0;
  color: var(--muted);
}

.message-copy-side .tag {
  margin-bottom: clamp(14px,1.5vw,20px);
  color: var(--muted-2);
}

.message-copy-side p {
  width: 100%;
  max-width: none;
  min-height: clamp(210px,20.3vw,260px);
  margin: 0;
  padding: clamp(28px,3vw,44px);
  border: 1px solid rgba(232,232,236,.86);
  border-radius: var(--card-radius);
  display: grid;
  place-items: center;
  text-align: center;
  box-shadow: 0 34px 90px -76px rgba(10,10,11,.32);
}

.message-copy-side p:first-of-type {
  background: rgba(255,255,255,.94);
  color: var(--ink);
  font-size: clamp(18px,1.28vw,23px);
  line-height: 1.38;
}

.message-copy-side p:last-of-type {
  background: #0a0a0b;
  border-color: #1f1f25;
  color: #fff;
  font-size: clamp(16px,1.12vw,20px);
  line-height: 1.48;
}

.message-copy-side .body + .body,
.message-copy-side .body-lg + .body-lg,
.message-copy-side p + p {
  margin-top: 0;
}

.message-copy-side p:first-of-type:last-of-type,
.message-copy-side .tag + p {
  margin-top: 0;
}

.message-copy-side {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,636px));
  justify-content: center;
  gap: var(--space-card-gap);
}

.message-copy-side .tag {
  grid-column: 1 / -1;
}

.refusal-card-stack {
  display: grid;
  gap: var(--space-card-gap);
  justify-items: center;
}

.refusal-panel-grid {
  grid-template-columns: 1fr;
  gap: clamp(48px,5vw,64px);
  justify-items: center;
  text-align: center;
}

.refusal-panel-copy {
  max-width: 720px;
  display: grid;
  justify-items: center;
}

.refusal-panel-title {
  max-width: 15ch;
  margin-top: 18px;
  line-height: 1.1;
  padding-bottom: .12em;
  overflow: visible;
}

.refusal-panel-body {
  max-width: 48ch;
  margin-top: clamp(26px,2.8vw,36px);
  color: var(--muted);
}

.refusal-card-grid {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,600px));
  gap: var(--space-card-gap);
  justify-content: center;
  width: 100%;
}

.refusal-card {
  width: min(100%,600px);
  min-height: 260px;
  border-radius: var(--card-radius);
  padding: clamp(26px,3vw,42px);
  display: grid;
  place-items: center;
  text-align: center;
}

.refusal-card h3 {
  max-width: 32ch;
  font-family: var(--mono);
  font-size: clamp(13px,1.1vw,16px);
  line-height: 1.24;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.refusal-card.purple {
  background: var(--accent);
  color: #fff;
}

.refusal-card.black {
  background: #0a0a0b;
  color: #fff;
}

.refusal-card-grid > :last-child:nth-child(odd) {
  grid-column: 1 / -1;
}

.refusal-card-note {
  width: min(100%,calc(1200px + var(--space-card-gap)));
  min-height: clamp(118px,10vw,150px);
  border: 1px solid var(--hair);
  border-radius: var(--card-radius);
  padding: clamp(24px,2.4vw,34px);
  display: grid;
  place-items: center;
  text-align: center;
  background: rgba(255,255,255,.78);
}

.refusal-card-note p {
  margin: 0;
  max-width: 40ch;
  color: var(--muted);
}

.section.dark.animated-cta {
  min-height: clamp(560px,72svh,820px);
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background: #08090b;
}

.section.dark.animated-cta:before,
.section.dark.animated-cta:after {
  content: "";
  position: absolute;
  inset: -18%;
  z-index: 0;
  pointer-events: none;
}

.section.dark.animated-cta:before {
  background:
    radial-gradient(64% 58% at 86% 18%,rgba(236,72,153,.78),transparent 72%),
    radial-gradient(62% 56% at 18% 94%,rgba(29,78,216,.62),transparent 76%),
    radial-gradient(54% 50% at 56% 12%,rgba(109,40,217,.58),transparent 74%),
    radial-gradient(52% 50% at 64% 86%,rgba(236,72,153,.42),transparent 78%),
    radial-gradient(46% 48% at 8% 30%,rgba(3,7,18,.92),transparent 76%);
  will-change: transform;
  transform: translateZ(0);
  filter: saturate(135%);
  opacity: .98;
  animation: ctaGradientDrift 18s ease-in-out infinite alternate;
}

.section.dark.animated-cta:after {
  inset: 0;
  background:
    linear-gradient(115deg,rgba(8,9,11,.92),rgba(8,9,11,.34) 48%,rgba(8,9,11,.78)),
    repeating-radial-gradient(circle at 22% 34%,rgba(255,255,255,.055) 0 1px,transparent 1px 4px);
  mix-blend-mode: normal;
  opacity: .9;
}

.section.dark.animated-cta .wrap {
  width: 100%;
}

.section.dark.animated-cta .callout {
  z-index: 2;
}

.section.dark.animated-cta .h-section {
  max-width: 12ch;
}

.section.dark.animated-cta .body,
.section.dark.animated-cta .body-lg {
  max-width: 48ch;
}

@keyframes ctaGradientDrift {
  0% {
    transform: translate3d(-4%,-2%,0) scale(1.02);
  }

  50% {
    transform: translate3d(3%,4%,0) scale(1.08);
  }

  100% {
    transform: translate3d(5%,-3%,0) scale(1.04);
  }
}

@media (prefers-reduced-motion: reduce) {
  .section.dark.animated-cta:before {
    animation: none;
  }
}

.section-head {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  margin-bottom: var(--space-section-head);
}

.section-head .num {
  min-width: 132px;
  padding-top: 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: var(--muted);
}

.section-head>div:not(.num) {
  max-width: min(100%,1080px);
}

.section-head .h-section {
  max-width: 24ch;
}

.section-head .body-lg {
  max-width: 46ch;
}

.section-head.after-audit-head {
  display: grid;
  grid-template-columns: 132px minmax(0,1080px);
  justify-content: start;
  align-items: start;
}

.section-head.after-audit-head .hero-actions {
  margin-top: 30px;
}

/* Grids, cards, and lists */
.stats-grid,
.cards-3,
.cards-2,
.moves,
.packages,
.steps {
  display: grid;
  gap: 0;
}

.stats-grid {
  grid-template-columns: repeat(3,1fr);
  align-items: stretch;
}

.stats-section .stats-grid {
  margin-top: 0;
  grid-template-columns: repeat(3,minmax(0,1fr));
}

.stats-section .stats-grid:has(.stat:nth-child(4)) {
  grid-template-columns: repeat(4,minmax(0,1fr));
}

.stats-section .stats-grid:has(.stat:nth-child(5)) {
  grid-template-columns: repeat(5,minmax(0,1fr));
}

.stats-section .stat {
  min-height: auto;
  padding: 0 clamp(22px,2.4vw,30px);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: clamp(12px,1.2vw,16px);
}

.stat {
  padding: 0 28px;
  border-right: 1px solid var(--hair);
}

.stat:first-child {
  padding-left: 0;
}

.stat:last-child {
  border-right: 0;
}

.stat .n {
  font-family: var(--serif);
  font-size: clamp(72px,9vw,124px);
  line-height: .92;
  letter-spacing: -.03em;
}

.stats-section .stat .n {
  color: var(--accent);
  font-size: clamp(58px,5.8vw,86px);
}

.stat sup {
  font-size: .38em;
  color: var(--muted);
  font-family: var(--mono);
  letter-spacing: .04em;
}

.stat .caption {
  margin-top: 18px;
  max-width: 32ch;
}

.stats-section .stat .caption {
  margin-top: 0;
  max-width: 28ch;
}

.stats-section .stat .tag {
  display: block;
  margin-top: 18px;
}

.moves,
.cards-3,
.packages {
  grid-template-columns: repeat(12,minmax(0,1fr));
  gap: var(--space-card-gap);
  border-top: 0;
}

.move,
.card,
.package {
  position: relative;
  padding: var(--space-card-pad-sm);
  border: 1px solid var(--card-border);
  border-radius: var(--card-radius);
  min-height: 300px;
  background:
    radial-gradient(circle at calc(100% - 34px) 30px,var(--card-glow),rgba(255,255,255,0) 150px),
    linear-gradient(150deg,rgba(255,255,255,.94),rgba(255,255,255,.72));
  color: var(--card-ink);
  box-shadow: var(--card-shadow);
  overflow: hidden;
  transition: transform .2s ease-in-out,background .2s ease-in-out,box-shadow .2s ease-in-out,border-color .2s ease-in-out;
}

.move:hover,
.card:hover,
.package:hover {
  transform: translateY(-4px);
  background:
    radial-gradient(circle at calc(100% - 34px) 30px,rgba(109,40,217,.13),rgba(255,255,255,0) 150px),
    linear-gradient(150deg,#fff,rgba(255,255,255,.86));
  box-shadow: var(--card-shadow-hover);
  border-color: rgba(109,40,217,.22);
}

.move:last-child,
.card:last-child,
.package:last-child {
  border-right: 1px solid var(--card-border);
}

.moves > *,
.cards-3 > *,
.packages > * {
  grid-column: span 4;
}

.moves > :nth-child(3n+1),
.cards-3 > :nth-child(3n+1) {
  grid-column: span 5;
}

.moves > :nth-child(3n+2),
.cards-3 > :nth-child(3n+2) {
  grid-column: span 3;
}

.moves > :nth-child(3n),
.cards-3 > :nth-child(3n) {
  grid-column: span 4;
}

.packages > :nth-child(3n+2) {
  grid-column: span 5;
}

.packages > :nth-child(3n+1),
.packages > :nth-child(3n) {
  grid-column: span 3;
}

.move h3 {
  font-family: var(--serif);
  font-size: 50px;
  font-weight: 400;
  letter-spacing: -.02em;
  margin: 24px 0 16px;
}

.move-visual {
  height: 174px;
  margin: 18px 0 6px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--brand-smoke);
}

.move-visual svg {
  width: min(100%,260px);
  height: 100%;
  overflow: visible;
}

.move-visual .thin {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.15;
  vector-effect: non-scaling-stroke;
}

.move-visual .soft {
  opacity: .34;
}

.move-visual .tick {
  stroke: currentColor;
  stroke-width: .85;
  opacity: .28;
  vector-effect: non-scaling-stroke;
}

.move-visual .node {
  fill: currentColor;
  opacity: .42;
  transform-box: fill-box;
  transform-origin: center;
}

.move-visual.audit .layer-stack {
  animation: auditLayerScroll 9s linear infinite;
}

.move-visual.audit .ring {
  animation: auditRingPulse 6.5s ease-in-out infinite;
  transform-box: fill-box;
  transform-origin: center;
}

.move-visual.audit .ring:nth-of-type(3n) {
  animation-delay: -2s;
}

.move-visual.audit .scan-line {
  animation: auditScanSweep 6.8s ease-in-out infinite;
  opacity: .16;
}

.move-visual.sprint .corridor {
  opacity: .24;
  stroke-dasharray: 5 9;
  animation: sprintCorridorFlow 8s linear infinite;
}

.move-visual.sprint .particle {
  animation: sprintCompress 7.5s cubic-bezier(.55,0,.2,1) infinite;
  transform-box: fill-box;
  transform-origin: center;
}

.move-visual.sprint .mark {
  animation: sprintCompress 7.5s cubic-bezier(.55,0,.2,1) infinite;
  transform-box: fill-box;
  transform-origin: center;
}

.move-visual.build .module {
  animation: buildAlignLock 8.5s cubic-bezier(.55,0,.2,1) infinite;
  transform-box: fill-box;
  transform-origin: center;
}

.move-visual.build .connection {
  stroke-dasharray: 46;
  stroke-dashoffset: 46;
  animation: buildConnectionReveal 8.5s ease-in-out infinite;
}

.move-visual.build .connection:nth-of-type(2n) {
  animation-delay: .22s;
}

.move-visual.build .node {
  animation: buildNodeSettle 8.5s ease-in-out infinite;
}

@keyframes auditLayerScroll {
  from {
    transform: translateY(22px);
  }
  to {
    transform: translateY(-29px);
  }
}

@keyframes auditRingPulse {
  0%, 100% {
    opacity: .22;
    transform: translateY(0) scale(1);
  }
  50% {
    opacity: .52;
    transform: translateY(-1px) scale(1.01);
  }
}

@keyframes auditScanSweep {
  0%, 100% {
    opacity: 0;
    transform: translateY(44px);
  }
  18%, 72% {
    opacity: .24;
  }
  82% {
    opacity: 0;
    transform: translateY(-44px);
  }
}

@keyframes sprintCorridorFlow {
  to {
    stroke-dashoffset: -56;
  }
}

@keyframes sprintCompress {
  0%, 100% {
    opacity: .18;
    transform: translate(var(--sx),var(--sy)) scale(.86);
  }
  44%, 62% {
    opacity: .58;
    transform: translate(0,0) scale(1);
  }
  78% {
    opacity: .28;
    transform: translate(calc(var(--sx) * -.22),calc(var(--sy) * -.22)) scale(.94);
  }
}

@keyframes buildAlignLock {
  0%, 100% {
    opacity: .18;
    transform: translate(var(--dx),var(--dy));
  }
  48%, 68% {
    opacity: .48;
    transform: translate(0,0);
  }
  76% {
    opacity: .36;
    transform: translate(0,0);
  }
}

@keyframes buildConnectionReveal {
  0%, 100% {
    opacity: 0;
    stroke-dashoffset: 46;
  }
  44%, 68% {
    opacity: .34;
    stroke-dashoffset: 0;
  }
  82% {
    opacity: .14;
    stroke-dashoffset: -46;
  }
}

@keyframes buildNodeSettle {
  0%, 100% {
    opacity: .18;
    transform: translate(var(--dx),var(--dy)) scale(.82);
  }
  48%, 68% {
    opacity: .52;
    transform: translate(0,0) scale(1);
  }
}

.meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--card-divider);
  font-family: var(--mono);
  font-size: var(--type-label-size);
  line-height: var(--type-label-line);
  letter-spacing: var(--type-label-tracking);
  text-transform: uppercase;
  color: var(--card-muted);
}

.meta-row span:last-child {
  text-align: right;
}

.card-header,
.card-meta {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--card-divider);
  font-family: var(--mono);
  font-size: var(--type-label-size);
  line-height: var(--type-label-line);
  letter-spacing: var(--type-label-tracking);
  text-transform: uppercase;
  color: var(--card-muted);
}

.card-index,
.card-label {
  font: inherit;
  color: inherit;
}

.card h3,
.package h3 {
  margin: 22px 0 14px;
  color: var(--card-ink);
}

.move .body,
.move p,
.card .body,
.card p,
.package .body,
.package p {
  color: var(--card-body);
}

.card ul,
.package ul,
.clean-list {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.card li,
.package li,
.clean-list li {
  display: flex;
  gap: 10px;
  align-items: baseline;
  font-size: 14px;
  line-height: 1.45;
  color: var(--card-body);
}

.card li:before,
.package li:before,
.clean-list li:before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  flex: 0 0 auto;
  transform: translateY(-2px);
}

.does-grid {
  display: grid;
  grid-template-columns: minmax(0,.92fr) minmax(360px,1.08fr);
  gap: 72px;
  align-items: start;
}

.does-copy {
  position: sticky;
  top: 104px;
}

.does-copy .body-lg {
  max-width: 43ch;
}

.signal-stack {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--hair);
}

.signal {
  min-height: 172px;
  padding: 22px 22px 26px;
  border-right: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
  background: transparent;
  position: relative;
  overflow: hidden;
}

.signal:after {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 16px;
  height: 2px;
  background: var(--hair);
}

.signal:before {
  content: "";
  position: absolute;
  left: 22px;
  bottom: 16px;
  width: var(--w,44%);
  height: 2px;
  background: var(--accent);
}

.signal .idx {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  gap: 14px;
}

.signal .name {
  font-family: var(--serif);
  font-size: clamp(27px,2.6vw,42px);
  line-height: 1;
  letter-spacing: -.02em;
  margin-top: 44px;
}

.signal.wide {
  grid-column: 1/-1;
  min-height: 150px;
  background: #0a0a0b;
  color: #fff;
}

.signal.wide .idx {
  color: #a0a0aa;
}

.signal.wide:after {
  background: #24242b;
}

.signal.wide .name {
  max-width: 12ch;
}

.signal:nth-child(1) {
  --w: 38%;
}

.signal:nth-child(2) {
  --w: 62%;
}

.signal:nth-child(3) {
  --w: 54%;
}

.signal:nth-child(4) {
  --w: 73%;
}

.signal:nth-child(5) {
  --w: 46%;
}

.signal:nth-child(6) {
  --w: 82%;
}

.split {
  display: grid;
  grid-template-columns: minmax(0,1.12fr) minmax(360px,.88fr);
  gap: clamp(72px,8vw,112px);
  align-items: start;
}

.friction-wheel-section {
  --wheel-progress: 0;
  --wheel-active: 0;
  --wheel-count: 5;
  --wheel-step: 34deg;
  --wheel-radius: clamp(430px,42vw,720px);
  --wheel-item-width: min(500px,36vw);
  min-height: calc(var(--wheel-count) * 100svh);
  background: #fff;
  border-top: 1px solid rgba(232,232,236,.72);
  overflow: clip;
}

.friction-wheel-sticky {
  position: sticky;
  top: 0;
  min-height: 100svh;
  overflow: hidden;
  background:
    linear-gradient(90deg,rgba(109,40,217,.035),rgba(255,255,255,0) 22%),
    #fff;
}

.friction-wheel-copy {
  position: absolute;
  z-index: 4;
  left: clamp(24px,7.4vw,132px);
  top: clamp(104px,14svh,150px);
  width: min(520px,35vw);
}

.friction-wheel-copy .h-section {
  margin-top: 22px;
}

.friction-wheel-copy .body-lg {
  margin-top: 26px;
  color: var(--muted);
}

.friction-wheel-cta {
  margin-top: 30px;
}

.friction-wheel-stage {
  position: absolute;
  inset: 0;
  --wheel-center-x: clamp(40px,20vw,320px);
  --wheel-center-y: 61svh;
}

.friction-wheel-label {
  position: absolute;
  z-index: 3;
  left: clamp(24px,7.4vw,132px);
  top: var(--wheel-center-y);
  transform: translateY(-50%);
  font-family: var(--mono);
  font-size: 11px;
  line-height: 1;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink);
}

.friction-wheel-arc {
  position: absolute;
  width: calc(var(--wheel-radius) * 2);
  height: calc(var(--wheel-radius) * 2);
  left: var(--wheel-center-x);
  top: var(--wheel-center-y);
  border: 1px solid rgba(10,10,11,.14);
  border-radius: 50%;
  transform: translate(-50%,-50%);
  pointer-events: none;
}

.friction-wheel-arc:before,
.friction-wheel-arc:after {
  content: "";
  position: absolute;
  inset: 10%;
  border: 1px solid rgba(109,40,217,.12);
  border-radius: 50%;
}

.friction-wheel-arc:after {
  inset: 28%;
  border-color: rgba(10,10,11,.08);
}

.friction-wheel-marker {
  display: none;
}

.friction-wheel-marker:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 140vw;
  border-top: 1px solid rgba(10,10,11,.16);
  transform: translate(-50%,-50%);
  z-index: -1;
}

.friction-wheel-items {
  position: absolute;
  inset: 0;
}

.friction-wheel-item {
  --angle: calc((var(--i) - var(--wheel-progress)) * var(--wheel-step));
  position: absolute;
  z-index: 2;
  left: var(--wheel-center-x);
  top: var(--wheel-center-y);
  width: var(--wheel-item-width);
  display: grid;
  grid-template-columns: 52px minmax(0,1fr);
  gap: clamp(20px,2.4vw,36px);
  align-items: start;
  transform:
    translate(-50%,-50%)
    rotate(var(--angle))
    translateX(var(--wheel-radius))
    rotate(calc(var(--angle) * -1));
  opacity: .14;
  filter: blur(.2px);
  transition: opacity .22s ease,filter .22s ease;
}

.friction-wheel-item:before {
  content: "";
  position: absolute;
  left: calc((var(--wheel-radius) * -1) - 15px);
  top: 9px;
  width: var(--wheel-radius);
  border-top: 1px solid rgba(10,10,11,.13);
  transform-origin: right center;
  z-index: -1;
}

.friction-wheel-item:after {
  content: "";
  position: absolute;
  left: -20px;
  top: 3px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 12px rgba(109,40,217,.16);
  opacity: .22;
  transform: scale(.72);
  transition: opacity .22s ease,transform .22s ease,box-shadow .22s ease;
}

.friction-wheel-item.is-near {
  opacity: .24;
}

.friction-wheel-item.is-near:after {
  opacity: .42;
  transform: scale(.82);
}

.friction-wheel-item.is-active {
  z-index: 5;
  opacity: 1;
  filter: none;
}

.friction-wheel-item.is-active:after {
  opacity: 1;
  transform: scale(1);
  box-shadow: 0 0 0 8px rgba(109,40,217,.08),0 0 24px rgba(109,40,217,.3);
}

.wheel-step {
  font-family: var(--mono);
  font-size: clamp(15px,1.25vw,22px);
  line-height: 1;
  letter-spacing: .02em;
  color: rgba(10,10,11,.32);
}

.friction-wheel-item.is-active .wheel-step {
  color: var(--ink);
}

.friction-wheel-item h3 {
  font-family: var(--serif);
  font-size: clamp(34px,3.45vw,58px);
  font-weight: 400;
  line-height: .95;
  letter-spacing: 0;
  color: var(--ink);
  max-width: 13.5ch;
  text-wrap: balance;
}

.friction-wheel-item p {
  max-width: 30ch;
  margin-top: 14px;
  font-size: clamp(14px,1.05vw,17px);
  line-height: 1.42;
  color: var(--muted);
}

.friction-wheel-item small {
  display: none;
  max-width: 34ch;
  margin-top: 14px;
  font-size: 13px;
  line-height: 1.45;
  color: var(--muted-2);
}

.friction-wheel-item:not(.is-active) p,
.friction-wheel-item:not(.is-active) small {
  opacity: 0;
}


.stack-list-section {
  overflow: clip;
  background: linear-gradient(180deg,#fff 0%,#f7f7fa 100%);
}

.stack-list-layout {
  display: grid;
  grid-template-columns: minmax(260px,.78fr) minmax(0,1fr);
  gap: clamp(56px,7vw,104px);
  align-items: start;
}

.stack-list-copy {
  position: sticky;
  top: 104px;
  min-height: clamp(360px,48vw,560px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.stack-list-copy .h-section {
  margin-top: 18px;
  max-width: 9ch;
  font-size: clamp(58px,7.6vw,118px);
  line-height: .92;
  letter-spacing: 0;
}

.stack-list-copy .body-lg {
  margin-top: 26px;
  max-width: 40ch;
  color: var(--muted);
}

.stack-list-section.audit .stack-list-copy {
  justify-content: flex-start;
  padding-top: clamp(58px,7vw,96px);
}

.stack-list-section.audit .stack-list-copy .h-section {
  max-width: 13ch;
  font-size: clamp(42px,5vw,74px);
  line-height: 1.08;
  letter-spacing: -.02em;
  padding-bottom: .08em;
  overflow: visible;
}

.stack-list-section.audit .stack-list-copy .body-lg {
  margin-top: 18px;
  max-width: 42ch;
  font-size: var(--type-body-size);
  font-weight: var(--type-body-weight);
  line-height: var(--type-body-line);
  color: var(--muted);
}

.stack-list-copy .btn {
  margin-top: 34px;
}

.stack-list-panel {
  position: relative;
  padding-top: clamp(64px,9vw,132px);
}

.stack-list-mark {
  position: absolute;
  width: min(58vw,620px);
  aspect-ratio: 588/641;
  left: clamp(-240px,-18vw,-96px);
  top: 50%;
  transform: translateY(-50%);
  background: var(--ink);
  opacity: .045;
  -webkit-mask: url("/assets/symbol.svg") center / contain no-repeat;
  mask: url("/assets/symbol.svg") center / contain no-repeat;
  pointer-events: none;
}

.stack-list-section.audit .stack-list-mark {
  opacity: .022;
  filter: blur(.6px);
}

.stack-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
}

.stack-list-item {
  --i: 0;
  display: grid;
  grid-template-columns: 52px minmax(0,1fr);
  gap: 20px;
  align-items: center;
  min-height: clamp(76px,6.4vw,104px);
  padding: 18px 24px;
  border: 1px solid rgba(232,232,236,.78);
  border-radius: 8px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 18px 54px -48px rgba(20,20,40,.46);
  transform: translateY(calc(var(--i) * 8px));
}

.stack-list-number {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: #fff;
  font-family: var(--mono);
  font-size: 12px;
  line-height: 1;
}

.stack-list-title {
  font-size: clamp(18px,1.8vw,24px);
  line-height: 1.28;
  color: var(--ink);
}

.stack-list-section.audit .stack-list {
  gap: 8px;
}

.stack-list-section.audit .stack-list-item {
  grid-template-columns: 44px minmax(0,1fr);
  gap: 18px;
  min-height: clamp(62px,5vw,78px);
  padding: 14px 20px;
  background: rgba(255,255,255,.86);
  box-shadow: 0 12px 36px -34px rgba(20,20,40,.36);
  transform: translateY(calc(var(--i) * 5px));
}

.stack-list-section.audit .stack-list-number {
  width: 34px;
  height: 34px;
  font-size: 10px;
}

.stack-list-section.audit .stack-list-title {
  font-size: clamp(15px,1.22vw,17px);
  line-height: 1.42;
  color: var(--ink-2);
}

.stack-list-desc {
  margin-top: 7px;
  max-width: 60ch;
  font-size: var(--type-small-size);
  line-height: var(--type-small-line);
  color: var(--muted);
}

.stack-list-meta {
  margin-top: 22px;
  color: var(--accent);
}

.stack-list-section.sprint {
  background: linear-gradient(180deg,#fff 0%,#fbfafc 100%);
}

.stack-cards-section,
.stacked-process-section {
  overflow: visible;
  background: linear-gradient(180deg,#fff 0%,#fbfbfd 100%);
}

.legacy-moves {
  display: none;
}

.legacy-sprint-list {
  display: none;
}

.legacy-build-process {
  display: none;
}

.stack-cards-layout {
  display: grid;
  grid-template-columns: minmax(280px,.54fr) minmax(0,1fr);
  gap: clamp(56px,7vw,104px);
  align-items: start;
}

.stack-cards-copy,
.stacked-process-head {
  position: sticky;
  top: 104px;
  min-height: clamp(360px,45vw,520px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.stack-cards-copy .h-section,
.stacked-process-head .h-section {
  margin-top: 20px;
  max-width: 14ch;
}

.stack-cards-copy .body-lg,
.stacked-process-head .body-lg {
  margin-top: 22px;
  max-width: 42ch;
  color: var(--muted);
}

.stack-cards-track,
.process-stack {
  display: grid;
  gap: clamp(20px,3vw,34px);
}

.principles-proof-stack .stack-cards-layout {
  grid-template-columns: 1fr;
  gap: clamp(34px,5vw,64px);
}

.principles-proof-stack .stack-cards-copy {
  position: relative;
  top: auto;
  min-height: 0;
  align-items: center;
  text-align: center;
}

.principles-proof-stack .stack-cards-copy .h-section {
  max-width: 20ch;
}

.principles-proof-stack .stack-cards-copy .body-lg {
  max-width: 58ch;
}

.principles-proof-stack .stack-cards-copy .hero-actions {
  justify-content: center;
}

.principles-proof-stack .stack-cards-track {
  grid-template-columns: repeat(3,minmax(0,1fr));
}

.principles-proof-stack .stack-card {
  position: relative;
  top: auto;
}

.stack-card,
.process-stack-card,
.statement-card {
  position: sticky;
  top: calc(92px + (var(--i) * 22px));
  min-height: clamp(360px,36vw,470px);
  padding: var(--space-card-pad);
  border: 1px solid var(--card-border);
  border-radius: var(--card-radius);
  background:
    radial-gradient(70% 42% at 24% 24%,var(--glow,var(--card-glow)),transparent 58%),
    radial-gradient(84% 54% at 74% 78%,rgba(255,255,255,.42),transparent 46%),
    linear-gradient(150deg,rgba(255,255,255,.94),rgba(255,255,255,.72));
  -webkit-backdrop-filter: saturate(130%) blur(28px);
  backdrop-filter: saturate(130%) blur(28px);
  color: var(--card-ink);
  box-shadow: var(--card-shadow);
  overflow: hidden;
  transform: translateY(calc(var(--i) * -5px));
  transition: transform .24s ease,border-color .24s ease,box-shadow .24s ease;
}

.stack-card:hover,
.process-stack-card:hover,
.statement-card:hover {
  transform: translateY(calc((var(--i) * -5px) - 3px));
  border-color: rgba(109,40,217,.22);
  box-shadow: var(--card-shadow-hover);
}

.stack-card .h-card,
.process-stack-card .h-card {
  margin: clamp(34px,4vw,52px) 0 18px;
  max-width: 14ch;
  font-size: clamp(28px,2.5vw,40px);
  color: var(--card-ink);
}

.stack-card .body,
.process-stack-card .body {
  max-width: 44ch;
  color: var(--card-body);
}

.stack-card-link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  margin-top: auto;
  padding-top: 42px;
  color: var(--accent);
}

.stacked-process-layout {
  display: grid;
  grid-template-columns: minmax(280px,.62fr) minmax(0,1fr);
  gap: clamp(56px,7vw,104px);
  align-items: start;
}

.stacked-process-rail {
  position: relative;
}

.process-progress {
  position: sticky;
  top: 82px;
  z-index: 5;
  height: 3px;
  margin-bottom: 28px;
  background: rgba(232,232,236,.9);
  overflow: hidden;
}

.process-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--accent);
  transition: width .14s linear;
}

.process-stack-card {
  --glow: rgba(109,40,217,.13);
  min-height: clamp(330px,32vw,430px);
}

.process-stack-card:nth-child(2) {
  --glow: rgba(57,44,82,.14);
}

.process-stack-card:nth-child(3),
.process-stack-card:nth-child(4) {
  --glow: rgba(10,10,11,.10);
}

.scroll-process-section {
  --scroll-process-count: 4;
  --scroll-process-distance: 840px;
  min-height: max(980px,calc(100svh + var(--scroll-process-distance)));
  padding: 0;
  background: linear-gradient(180deg,#fff 0%,#fbfbfd 100%);
  overflow: clip;
}

.scroll-process-sticky {
  position: sticky;
  top: 64px;
  min-height: calc(100svh - 64px);
  padding: clamp(44px,4.8vw,76px) 0 clamp(42px,5vw,74px);
  display: flex;
  align-items: center;
}

.scroll-process-layout {
  width: 100%;
  max-width: 1920px;
}

.scroll-process-head {
  max-width: min(100%,1320px);
  margin: 0 auto clamp(28px,3.2vw,44px);
  text-align: center;
}

.scroll-process-head .tag {
  display: block;
  margin-bottom: 16px;
}

.scroll-process-copy {
  display: grid;
  justify-items: center;
}

.scroll-process-copy .h-section {
  max-width: 32ch;
  margin: 0 auto;
  font-size: clamp(38px,3.75vw,62px);
}

.scroll-process-copy .body-lg {
  max-width: 52ch;
  margin: 18px auto 0;
  color: var(--muted);
}

.scroll-process-copy .hero-actions {
  justify-content: center;
  margin-top: 22px;
}

.scroll-process-section .process-progress {
  position: relative;
  top: auto;
  height: 2px;
  width: min(70%,960px);
  margin: 0 auto clamp(24px,3vw,34px);
  background: rgba(232,232,236,.9);
}

.scroll-process-section .process-progress span {
  width: calc(var(--scroll-progress,0) * 100%);
  background: var(--accent);
  transition: width .08s linear;
}

.scroll-process-cards {
  display: grid;
  grid-template-columns: repeat(var(--scroll-process-count),minmax(clamp(250px,18vw,380px),1fr));
  gap: clamp(8px,.8vw,14px);
  align-items: stretch;
}

.scroll-process-card {
  --card-border: rgba(255,255,255,.11);
  --card-divider: rgba(255,255,255,.16);
  --card-surface: #08080a;
  --card-ink: #fff;
  --card-body: rgba(255,255,255,.76);
  --card-muted: rgba(255,255,255,.62);
  --reveal: 1;
  --pan-x: 50%;
  position: relative;
  min-height: clamp(390px,31vw,560px);
  padding: var(--space-card-pad-sm);
  border: 1px solid var(--card-border);
  border-radius: var(--card-radius);
  background: var(--card-surface);
  color: var(--card-ink);
  box-shadow: 0 34px 90px -76px rgba(10,10,11,.72);
  overflow: hidden;
  isolation: isolate;
  transform: translateY(calc((1 - var(--reveal)) * min(18vh,150px)));
  opacity: calc(.001 + (var(--reveal) * .999));
  transition: border-color .2s ease,box-shadow .2s ease;
  will-change: transform, opacity;
}

.scroll-process-card:hover {
  border-color: rgba(167,139,255,.28);
  box-shadow: 0 42px 100px -76px rgba(10,10,11,.84);
}

.scroll-process-card:before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -2;
  background:
    radial-gradient(70% 42% at calc(var(--pan-x) - 18%) 24%,rgba(109,40,217,.48),transparent 58%),
    radial-gradient(84% 54% at var(--pan-x) 74%,rgba(255,255,255,.18),transparent 46%),
    radial-gradient(78% 58% at calc(var(--pan-x) + 20%) 54%,rgba(78,72,93,.42),transparent 52%),
    linear-gradient(142deg,#050506 0%,#111014 44%,#070708 100%);
  background-size: 230% 100%,260% 120%,210% 100%,100% 100%;
  background-position: var(--pan-x) 50%;
}

.scroll-process-card:after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg,rgba(0,0,0,.22) 0%,rgba(0,0,0,.08) 34%,rgba(0,0,0,.72) 100%),
    linear-gradient(90deg,rgba(255,255,255,.055),transparent 18%,transparent 82%,rgba(255,255,255,.045));
  pointer-events: none;
}

.scroll-process-card .card-mark {
  position: absolute;
  right: -18%;
  bottom: -24%;
  width: 72%;
  aspect-ratio: 588/641;
  background: #fff;
  opacity: .045;
  -webkit-mask: url("/assets/symbol.svg") center / contain no-repeat;
  mask: url("/assets/symbol.svg") center / contain no-repeat;
  transform: rotate(-10deg);
  pointer-events: none;
}

.scroll-process-card .meta-row {
  border-color: var(--card-divider);
  color: var(--card-muted);
}

.scroll-process-card .h-card {
  max-width: 14ch;
  margin-top: clamp(34px,4vw,52px);
  color: #fff;
  font-size: clamp(28px,2.5vw,40px);
}

.scroll-process-card .body {
  position: absolute;
  left: var(--space-card-pad-sm);
  right: var(--space-card-pad-sm);
  bottom: var(--space-card-pad-sm);
  max-width: 42ch;
  color: var(--card-body);
}

.statement-section {
  padding-top: clamp(96px,9vw,142px);
}

.statement-layout {
  display: grid;
  grid-template-columns: minmax(280px,.58fr) minmax(0,1fr);
  gap: clamp(48px,6vw,86px);
  align-items: start;
}

.statement-copy {
  position: sticky;
  top: 104px;
}

.statement-copy .h-section {
  margin-top: 18px;
  max-width: 10ch;
}

.statement-copy .body-lg,
.statement-copy .body {
  margin-top: 20px;
  max-width: 52ch;
  color: var(--muted);
}

.statement-grid {
  display: grid;
  gap: 18px;
}

.build-qualification-grid {
  grid-template-columns: repeat(2,minmax(0,1fr));
}

.statement-card {
  position: relative;
  top: auto;
  min-height: clamp(230px,22vw,294px);
}

.stack-card .tag,
.process-stack-card .tag,
.statement-card .tag,
.domain-card .tag,
.case-card .tag,
.article-card .tag,
.card .tag,
.package .tag {
  color: var(--card-muted);
}

.statement-card h3 {
  max-width: 14ch;
  margin-top: clamp(34px,4vw,52px);
  font-family: var(--serif);
  font-size: clamp(28px,2.5vw,40px);
  line-height: 1.08;
  font-weight: 400;
  letter-spacing: -.01em;
  color: var(--card-ink);
}

.statement-card p {
  max-width: 50ch;
  margin-top: 22px;
  color: var(--card-body);
}

.ragnarok-accordion {
  display: grid;
  gap: 12px;
  margin-top: 36px;
}

.ragnarok-accordion details {
  border: 1px solid rgba(232,232,236,.9);
  border-radius: 8px;
  background: rgba(255,255,255,.86);
  overflow: hidden;
  box-shadow: 0 22px 70px -62px rgba(20,20,40,.52);
}

.ragnarok-accordion summary {
  list-style: none;
  display: grid;
  grid-template-columns: 44px minmax(0,1fr) 32px;
  gap: 18px;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
}

.ragnarok-accordion summary::-webkit-details-marker {
  display: none;
}

.accordion-number {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: #fff;
  font-family: var(--mono);
  font-size: 10px;
}

.accordion-title {
  font-size: clamp(17px,1.7vw,23px);
  line-height: 1.35;
  color: var(--ink);
}

.accordion-chev {
  width: 30px;
  height: 30px;
  border: 1px solid var(--hair);
  border-radius: 999px;
  position: relative;
}

.accordion-chev:before,
.accordion-chev:after {
  content: "";
  position: absolute;
  left: 9px;
  top: 14px;
  width: 10px;
  height: 1px;
  background: var(--ink);
  transition: transform .22s ease;
}

.accordion-chev:after {
  transform: rotate(90deg);
}

.ragnarok-accordion details[open] {
  border-color: rgba(109,40,217,.22);
  background:
    radial-gradient(circle at calc(100% - 42px) 22px,rgba(109,40,217,.10),rgba(255,255,255,0) 120px),
    #fff;
}

.ragnarok-accordion details[open] .accordion-chev:after {
  transform: rotate(0deg);
}

.accordion-panel {
  display: grid;
  grid-template-rows: 1fr;
  transition: grid-template-rows .24s ease;
}

.accordion-panel p {
  margin: 0 20px 22px 82px;
  max-width: 72ch;
  padding: 18px 0 0;
  border-top: 1px solid var(--hair);
  font-size: 15px;
  line-height: 1.62;
  color: var(--muted);
}

.archive-carousel-section {
  overflow-x: clip;
}

.archive-carousel-section .section-head,
.need-us-section .section-head {
  display: grid;
  justify-items: center;
  gap: 16px;
  text-align: center;
  margin-bottom: clamp(64px,7vw,104px);
}

.archive-carousel-section .section-head .num,
.need-us-section .section-head .num {
  min-width: 0;
  padding-top: 0;
}

.archive-carousel-section .section-head .h-section,
.need-us-section .section-head .h-section {
  margin: 0 auto;
}

.need-us-section .section-head {
  margin-bottom: clamp(34px,4vw,54px);
}

.need-us-section .section-head .body-lg {
  max-width: 600px;
  margin: 8px auto 0;
  color: var(--muted);
}

.archive-carousel {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: visible;
  padding: 18px 0 8px;
  touch-action: pan-y;
}

.archive-carousel-track {
  position: relative;
  width: 100%;
  height: clamp(390px,32vw,510px);
  margin: 0 auto;
  overflow: visible;
}

.archive-slide,
.choice-path {
  position: absolute;
  display: flex;
  flex-direction: column;
  padding: var(--space-card-pad);
  border: 1px solid rgba(202,190,255,.62);
  border-radius: var(--card-radius);
  background:
    radial-gradient(70% 42% at 24% 24%,var(--glow,rgba(109,40,217,.11)),transparent 58%),
    radial-gradient(84% 54% at 74% 78%,rgba(255,255,255,.5),transparent 46%),
    linear-gradient(150deg,rgba(255,255,255,.96),rgba(255,255,255,.78));
  color: var(--ink);
  box-shadow: var(--card-shadow);
  transition: transform .48s cubic-bezier(.16,1,.3,1),opacity .42s ease,border-color .32s ease,box-shadow .32s ease;
  overflow: hidden;
}

.archive-slide {
  left: 50%;
  top: 0;
  width: clamp(660px,50vw,820px);
  min-height: 100%;
  transform: translateX(-50%) translateX(var(--offset-x, 0%)) scale(.94);
  opacity: .72;
  will-change: transform;
}

.archive-slide.is-active {
  transform: translateX(-50%) translateX(0) scale(1);
  opacity: 1;
  border-color: rgba(109,40,217,.34);
  box-shadow: 0 38px 112px -76px rgba(109,40,217,.42);
  z-index: 2;
}

.archive-slide:not(.is-active) {
  pointer-events: none;
}

.archive-slide .h-card {
  margin-top: clamp(34px,4vw,52px);
  max-width: 21ch;
  font-size: clamp(28px,2.5vw,40px);
  color: var(--ink);
}

.archive-slide .body {
  margin-top: 22px;
  max-width: 44ch;
  color: var(--muted);
}

.archive-slide .badge {
  display: inline-flex;
  align-items: center;
  width: min(100%,660px);
  min-height: 28px;
  padding: 0 14px;
  border: 1px solid rgba(221,219,231,.9);
  border-radius: 999px;
  color: var(--card-muted);
  background: rgba(255,255,255,.72);
}

.archive-index {
  margin-top: auto;
  padding-top: 34px;
  font-family: var(--mono);
  font-size: var(--type-label-size);
  line-height: var(--type-label-line);
  letter-spacing: var(--type-label-tracking);
  text-transform: uppercase;
  color: var(--card-muted);
}

.archive-slide .btn {
  align-self: flex-start;
  margin-top: 24px;
  color: var(--ink);
  border-color: rgba(10,10,11,.14);
  background: rgba(255,255,255,.54);
}

.archive-slide .btn:hover {
  border-color: rgba(109,40,217,.28);
  background: rgba(250,248,255,.92);
}

.archive-controls {
  display: grid;
  grid-template-columns: 44px minmax(220px,460px) 44px;
  align-items: center;
  justify-content: center;
  gap: clamp(22px,3vw,42px);
  margin-top: clamp(18px,2.4vw,32px);
}

.archive-arrow {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid var(--hair);
  background: #fff;
  color: var(--ink);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  transition: transform .2s ease,border-color .2s ease,background .2s ease;
}

.archive-arrow:hover,
.archive-arrow:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(109,40,217,.28);
  background: rgba(250,250,253,.92);
  outline: none;
}

.archive-progress {
  height: 2px;
  background: var(--hair);
  overflow: hidden;
}

.archive-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--accent);
  transition: width .32s ease;
}

.archive-placeholder .hero {
  min-height: auto;
  padding-bottom: clamp(84px,8vw,132px);
}

.archive-placeholder-mark {
  width: min(360px,100%);
  min-height: 260px;
  border: 1px solid var(--card-border);
  border-radius: var(--card-radius);
  background:
    radial-gradient(circle at calc(100% - 44px) 34px,rgba(109,40,217,.13),rgba(255,255,255,0) 142px),
    linear-gradient(150deg,rgba(255,255,255,.96),rgba(255,255,255,.78));
  box-shadow: var(--card-shadow);
  position: relative;
  overflow: hidden;
}

.archive-placeholder-mark:before {
  content: "";
  position: absolute;
  top: 26px;
  right: 28px;
  width: 68px;
  height: 24px;
  border-top: 1px solid rgba(167,139,255,.22);
  border-bottom: 1px solid rgba(167,139,255,.12);
}

.engagement-section {
  background: #f4f4f6;
  overflow: clip;
}

.engagement-intro {
  max-width: 720px;
  margin: 0 auto 54px;
  text-align: center;
}

.engagement-intro .body-lg {
  margin-top: 18px;
  color: var(--muted);
}

.engagement-cards {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 8px;
}

.engagement-cards:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  width: 78px;
  height: 78px;
  transform: translate(-50%,-50%);
  background: var(--ink);
  -webkit-mask: url("/assets/symbol.svg") center / contain no-repeat;
  mask: url("/assets/symbol.svg") center / contain no-repeat;
}

.decision-pair .engagement-card {
  border: 1px solid rgba(232,232,236,.86);
  box-shadow: 0 28px 84px -66px rgba(20,20,40,.58);
}

.decision-pair .engagement-card:before {
  content: none;
}

.decision-card-light {
  background:
    radial-gradient(circle at calc(100% - 28px) 28px,rgba(109,40,217,.12),rgba(255,255,255,0) 140px),
    #fff;
}

.decision-card-dark {
  background:
    radial-gradient(circle at calc(100% - 28px) 28px,rgba(109,40,217,.12),rgba(255,255,255,0) 140px),
    #fff;
  border-color: rgba(232,232,236,.86)!important;
  color: var(--card-ink);
}

.decision-card-dark h3,
.decision-card-dark .count {
  color: var(--card-ink);
}

.decision-card-dark .body,
.decision-card-dark .engagement-list li {
  color: var(--card-body);
}

.decision-card-dark .engagement-list span {
  background: var(--ink);
  border: 0;
  color: #fff;
}

.decision-card-dark .engagement-list .muted-mark {
  background: transparent;
  color: var(--muted-2);
}

.engagement-card {
  min-height: clamp(430px,38vw,512px);
  border: 1px solid var(--card-border);
  border-radius: var(--card-radius);
  background:
    radial-gradient(circle at calc(100% - 34px) 30px,var(--card-glow),rgba(255,255,255,0) 150px),
    linear-gradient(150deg,rgba(255,255,255,.94),rgba(255,255,255,.72));
  color: var(--card-ink);
  padding: var(--space-card-pad);
  box-shadow: var(--card-shadow);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.engagement-card.accented {
  background: #ede9fe;
}

.engagement-card-head {
  display: grid;
  grid-template-columns: minmax(0,1fr) auto;
  gap: 24px;
  align-items: start;
}

.engagement-card h3 {
  max-width: 11ch;
  font-family: var(--serif);
  font-size: clamp(34px,3.2vw,54px);
  line-height: .96;
  letter-spacing: -.01em;
  color: var(--card-ink);
}

.engagement-card .count {
  font-family: var(--mono);
  font-size: clamp(28px,3vw,42px);
  line-height: 1;
  color: var(--card-muted);
}

.engagement-card .body {
  margin-top: 28px;
  max-width: 42ch;
}

.engagement-list {
  list-style: none;
  display: grid;
  gap: 22px;
  margin-top: auto;
  padding-top: 42px;
}

.engagement-list li {
  display: grid;
  grid-template-columns: 24px minmax(0,1fr);
  gap: 16px;
  align-items: start;
  font-size: var(--type-body-size);
  line-height: var(--type-body-line);
  color: var(--card-body);
}

.engagement-list span {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  margin-top: .12em;
  background: var(--ink);
  color: #fff;
  font-size: 11px;
  line-height: 1;
}

.engagement-list .muted-mark {
  background: transparent;
  color: var(--muted-2);
  font-family: var(--mono);
  font-size: 16px;
}

.engagement-cta {
  display: flex;
  justify-content: center;
  margin-top: 44px;
}

.measure-list {
  border-top: 1px solid var(--hair);
  margin-top: 36px;
}

.measure-list li {
  list-style: none;
  display: grid;
  grid-template-columns: 72px minmax(220px,.75fr) minmax(0,1fr);
  gap: 28px;
  align-items: start;
  padding: 28px 0;
  border-bottom: 1px solid var(--hair);
}

.measure-list .n {
  font-family: var(--mono);
  font-size: var(--type-label-size);
  line-height: var(--type-label-line);
  color: var(--ink);
  letter-spacing: var(--type-label-tracking);
}

.measure-list .name {
  font-family: var(--serif);
  font-size: clamp(30px,3vw,48px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -.02em;
}

.measure-list .desc {
  font-size: var(--type-body-size);
  color: var(--type-body-muted-color);
  line-height: var(--type-body-line);
  margin-top: 0;
  max-width: 48ch;
}

.measure-list.compact li {
  grid-template-columns: 72px minmax(0,1fr);
  gap: 28px;
}

.measure-list.compact .name {
  font-size: clamp(30px,3vw,48px);
}

/* Artifacts */
.artifact {
  border: 1px solid rgba(232,232,236,.78);
  border-radius: 6px;
  background: rgba(255,255,255,.72);
  overflow: hidden;
  box-shadow: 0 26px 72px -48px rgba(20,20,40,.36);
}

.artifact-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--hair);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--muted);
}

.artifact-body {
  padding: 28px;
}

.curve {
  height: 230px;
  margin-top: 22px;
}

.artifact-grid {
  display: grid;
  grid-template-columns: minmax(0,1fr) 240px;
  gap: 24px;
}

.hero .log {
  border-left: 0;
  border-top: 1px solid var(--hair);
  padding-top: 20px;
}


.log {
  background: rgba(251,251,253,.72);
  border-left: 1px solid var(--hair);
  padding: 22px;
}

.patch {
  margin-top: 18px;
  background: var(--accent);
  color: #fff;
  border-radius: 6px;
  padding: 16px;
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 9px;
  border: 1px solid var(--hair);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  background: #fff;
}

.badge.accent {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.price {
  font-family: var(--serif);
  font-size: 56px;
  line-height: 1;
  letter-spacing: -.03em;
  margin: 20px 0 6px;
}

/* Panels, forms, and pricing */
.panel {
  background: transparent;
  border: 0;
  border-top: 1px solid var(--hair);
  border-radius: 0;
  padding: 34px 0 0;
}

.panel.lav {
  background: linear-gradient(90deg,rgba(244,240,255,.72),rgba(255,255,255,0));
  border-top-color: #ded4ff;
  padding: 34px;
  border-radius: 6px;
}

.panel.dark {
  background: #0a0a0b;
  color: #fff;
  border-color: #1f1f25;
}

.panel.dark .body,
.panel.dark li {
  color: #d9d9e1;
}

.choice-paths {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: var(--space-card-gap);
  margin-top: 0;
}

.choice-path {
  position: relative;
  min-height: clamp(184px,16vw,230px);
  justify-content: space-between;
  gap: clamp(24px,3vw,42px);
  padding: var(--space-card-pad-sm);
  transform: translateY(0);
}

.choice-path .meta-row {
  width: 100%;
  color: var(--card-muted);
}

.choice-path strong {
  display: block;
  margin-top: 0;
  font-family: var(--serif);
  font-size: clamp(28px,2.5vw,40px);
  font-weight: 400;
  line-height: 1.06;
  color: var(--ink);
}

.choice-path p {
  margin: 0;
  color: var(--muted);
  font-size: var(--type-body-size);
  line-height: var(--type-body-line);
}

.callout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: center;
}

.section.dark .callout>div {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.section.dark .callout>div .btn {
  margin-left: 0!important;
  max-width: 100%;
}

.quote {
  font-family: var(--serif);
  font-size: clamp(36px,5vw,70px);
  line-height: 1.03;
  letter-spacing: -.02em;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.field {
  display: grid;
  gap: 8px;
}

.field.full {
  grid-column: 1/-1;
}

.field label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--hair);
  border-radius: 6px;
  padding: 13px 14px;
  background: #fff;
  color: var(--ink);
  line-height: 1.45;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

textarea::placeholder {
  color: rgba(17,24,39,.55);
  opacity: 1;
}

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

.check {
  display: flex;
  gap: 10px;
  align-items: center;
  border: 1px solid var(--hair);
  border-radius: 6px;
  padding: 12px;
  font-size: 13px;
  color: var(--ink-2);
}

.check input {
  width: auto;
}

/* Contact modal */
.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 92;
  display: flex;
  justify-content: flex-end;
  align-items: stretch;
  padding: clamp(6px,1vw,12px);
  background: rgba(0,0,0,.70);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .28s ease,visibility .28s ease;
}

.contact-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.contact-modal-panel {
  width: min(100%,860px);
  height: 100%;
  overflow-y: auto;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: clamp(22px,2.4vw,34px);
  padding: clamp(24px,3vw,42px);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  transform: translateX(104%);
  transition: transform .72s cubic-bezier(.16,1,.3,1);
  box-shadow: -28px 0 80px rgba(0,0,0,.18);
}

.contact-modal.is-open .contact-modal-panel {
  transform: translateX(0);
}

.contact-modal-head {
  display: grid;
  grid-template-columns: minmax(0,1fr) auto;
  gap: 24px;
  align-items: start;
  padding-bottom: clamp(18px,2vw,26px);
  border-bottom: 1px solid var(--hair);
}

.contact-modal-title {
  font-family: var(--serif);
  font-size: clamp(54px,7.3vw,116px);
  line-height: .86;
  letter-spacing: -.025em;
  text-transform: uppercase;
}

.contact-modal-intro {
  margin-top: 18px;
  max-width: 78ch;
  color: var(--ink-2);
}

.contact-modal-close {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(10,10,11,.12);
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: #fff;
  font-size: 23px;
  line-height: 1;
  cursor: pointer;
  transition: transform .2s ease,background .2s ease;
}

.contact-modal-close:hover {
  transform: translateY(-1px);
  background: var(--accent);
}

.contact-source {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-top: -8px;
  font-size: 12px;
  color: var(--muted);
}

.contact-source strong {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(109,40,217,.22);
  border-radius: 999px;
  background: rgba(109,40,217,.07);
  color: var(--accent);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.contact-source[hidden],
.contact-modal-form[hidden],
.contact-modal-cards[hidden] {
  display: none;
}

.contact-modal-form {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: clamp(18px,2vw,26px) 26px;
}

.contact-modal-form .field {
  position: relative;
  gap: 7px;
}

.contact-modal-form .field.full {
  grid-column: 1/-1;
}

.contact-modal-form .field label {
  font-size: 12px;
  letter-spacing: .02em;
  text-transform: none;
  color: var(--ink);
}

.contact-modal-form .required-note {
  position: absolute;
  right: 0;
  top: 0;
  font-size: 11px;
  color: var(--muted-2);
}

.contact-modal-form input,
.contact-modal-form textarea {
  border: 0;
  border-bottom: 1px solid var(--hair);
  border-radius: 0;
  padding: 12px 0 16px;
  background: transparent;
  outline: none;
  transition: border-color .18s ease,box-shadow .18s ease;
}

.contact-modal-form textarea {
  min-height: clamp(220px,32vh,390px);
  padding: 18px;
  border: 1px solid var(--hair);
  border-radius: 8px;
  color: var(--ink);
  line-height: 1.55;
  resize: vertical;
}

.contact-modal-form input:focus,
.contact-modal-form textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 1px 0 var(--accent);
}

.contact-modal-privacy {
  grid-column: 1/-1;
  max-width: 100%;
  font-size: 11px;
  line-height: 1.55;
  color: var(--ink-2);
}

.contact-modal-privacy a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.contact-modal-actions {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: minmax(0,1fr) auto;
  gap: 18px;
  align-items: center;
}

.contact-form-result {
  min-height: 22px;
  font-size: 13px;
  color: var(--accent);
  margin-top: 16px;
}

.contact-form-result[data-tone="error"] {
  color: var(--warn);
}

.contact-form-result[data-tone="success"] {
  color: var(--accent);
}

.contact-success-state {
  min-height: clamp(380px,58vh,620px);
  display: grid;
  place-items: center;
  align-content: center;
  justify-items: center;
  gap: 18px;
  padding: clamp(54px,7vw,92px) 24px;
  border-bottom: 1px solid var(--hair);
  text-align: center;
  animation: contactSuccessIn .32s ease both;
}

.contact-success-state[hidden] {
  display: none;
}

.contact-success-icon {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  color: var(--accent);
}

.contact-success-icon svg {
  width: 100%;
  height: 100%;
}

.contact-success-icon circle,
.contact-success-icon path,
.contact-success-email svg path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-success-state h3 {
  font-size: clamp(36px,5vw,58px);
  line-height: 1;
  font-weight: 400;
  letter-spacing: -.02em;
  color: var(--accent);
}

.contact-success-body {
  max-width: 620px;
  font-size: clamp(17px,1.7vw,22px);
  line-height: 1.5;
  color: var(--ink);
}

.contact-success-sub {
  max-width: 620px;
  color: var(--muted);
}

.contact-success-email {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
  color: var(--accent);
  font-size: clamp(17px,1.6vw,21px);
  line-height: 1.3;
}

.contact-success-email svg {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
}

@keyframes contactSuccessIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hp-field {
  position: absolute!important;
  left: -10000px!important;
  width: 1px!important;
  height: 1px!important;
  opacity: 0!important;
  pointer-events: none!important;
}

.contact-modal-submit {
  min-width: 190px;
}

.contact-modal-cards {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 18px;
}

.contact-modal-card {
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 22px;
  padding: 20px;
  border: 1px solid var(--hair);
  border-radius: 8px;
}

.contact-modal-card h3 {
  font-family: var(--sans);
  font-size: clamp(19px,2vw,26px);
  line-height: 1.1;
  text-transform: uppercase;
}

.contact-modal-card a {
  color: var(--ink-2);
}

.pricing-section .section-head {
  margin-bottom: clamp(34px,4vw,54px);
}

.pricing-stack {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(18px,2vw,28px);
  border-top: 0;
}

.pricing-stack.count-2 {
  grid-template-columns: 1fr;
}

.price-card {
  position: relative;
  display: grid;
  min-width: 0;
  min-height: 646px;
  grid-template-rows: auto minmax(0,1fr);
  gap: clamp(12px,1.2vw,18px);
  background:
    linear-gradient(140deg,rgba(255,255,255,.9),rgba(255,255,255,.62) 44%,rgba(247,247,252,.74)),
    radial-gradient(circle at 82% 14%,var(--price-glow,rgba(109,40,217,.11)) 0,rgba(109,40,217,0) 330px),
    radial-gradient(circle at 12% 78%,rgba(255,255,255,.86) 0,rgba(255,255,255,0) 310px),
    linear-gradient(145deg,rgba(246,246,248,.96),rgba(238,240,244,.84));
  color: var(--ink);
  border: 1px solid rgba(221,219,231,.92);
  border-radius: var(--card-radius);
  padding: clamp(10px,1.1vw,16px);
  box-shadow: 0 34px 96px -76px rgba(10,10,18,.58);
  overflow: hidden;
  isolation: isolate;
  backdrop-filter: blur(26px);
  -webkit-backdrop-filter: blur(26px);
  transition: transform .2s ease-in-out,box-shadow .2s ease-in-out,border-color .2s ease-in-out;
}

.price-card:hover {
  transform: translateY(-3px);
  border-color: rgba(109,40,217,.22);
  box-shadow: 0 42px 112px -78px rgba(20,20,40,.66);
}

.price-card:before {
  inset: 0;
  border: 0;
  background:
    linear-gradient(180deg,rgba(255,255,255,.82),rgba(255,255,255,0) 34%),
    repeating-linear-gradient(90deg,rgba(10,10,11,.025) 0 1px,transparent 1px 120px);
  opacity: .78;
  z-index: 0;
}

.price-card > * {
  position: relative;
  z-index: 1;
}

.price-card.featured {
  --price-glow: rgba(109,40,217,.42);
  background:
    linear-gradient(140deg,rgba(255,255,255,.09),rgba(255,255,255,.025) 42%,rgba(255,255,255,.055)),
    radial-gradient(circle at 82% 16%,var(--price-glow) 0,rgba(109,40,217,0) 320px),
    radial-gradient(circle at 8% 82%,rgba(255,255,255,.12) 0,rgba(255,255,255,0) 290px),
    linear-gradient(145deg,#151519,#070709 62%,#101014);
  color: #fff;
  border-color: rgba(167,139,255,.34);
  box-shadow: 0 44px 130px -62px rgba(109,40,217,.46);
}

.price-card.warm {
  --price-glow: rgba(180,83,9,.10);
}

.price-card-head {
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(230px,.25fr);
  gap: clamp(24px,4vw,70px);
  align-items: start;
  padding: clamp(20px,2.1vw,30px) clamp(24px,2.8vw,44px) 0;
}

.price-card-head > * {
  min-width: 0;
}

.price-card-kicker {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: clamp(12px,1.4vw,18px);
  font-family: var(--mono);
  font-size: var(--type-label-size);
  line-height: var(--type-label-line);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}

.price-card-kicker span {
  display: inline-flex;
  align-items: center;
}

.price-card-kicker span + span:before {
  content: "";
  width: 5px;
  height: 5px;
  margin-right: 10px;
  border-radius: 999px;
  background: var(--accent-soft);
  opacity: .78;
}

.price-card h3 {
  font-family: var(--serif);
  max-width: none;
  font-size: clamp(34px,3.2vw,52px);
  font-weight: 400;
  line-height: .96;
  letter-spacing: -.01em;
  color: var(--ink);
}

.price-card .deck {
  max-width: 50ch;
  font-size: var(--type-body-size);
  line-height: var(--type-body-lg-line);
  color: var(--muted);
  margin-top: clamp(10px,1vw,14px);
}

.price-card-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  gap: 8px;
  padding-top: 2px;
}

.price-card .amount {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(28px,2.6vw,40px);
  line-height: .94;
  letter-spacing: -.01em;
  color: var(--ink);
  text-align: right;
  white-space: nowrap;
}

.price-card .time {
  font-size: var(--type-body-size);
  line-height: var(--type-body-line);
  color: var(--muted);
  text-align: right;
  margin-top: 8px;
  max-width: 22ch;
}

.price-card-meta .btn {
  justify-self: end;
  margin-top: clamp(18px,2vw,28px);
  color: #fff;
  min-height: 42px;
  padding-inline: 18px;
}

.price-card.featured:before {
  background:
    linear-gradient(180deg,rgba(255,255,255,.08),rgba(255,255,255,0) 34%),
    repeating-linear-gradient(90deg,rgba(255,255,255,.035) 0 1px,transparent 1px 120px);
}

.price-card.featured .price-card-kicker {
  color: rgba(255,255,255,.58);
}

.price-card.featured h3,
.price-card.featured .amount {
  color: #fff;
}

.price-card.featured .deck {
  color: rgba(255,255,255,.72);
}

.price-card.featured .time {
  color: rgba(255,255,255,.62);
}

.pricing-divider {
  height: 1px;
  background: linear-gradient(90deg,rgba(109,40,217,.22),var(--hair),rgba(232,232,236,0));
}

.pricing-badge,
.pill {
  display: inline-flex;
  align-items: center;
  min-height: 25px;
  width: fit-content;
  padding: 0 10px;
  border: 1px solid rgba(226,223,236,.9);
  border-radius: 999px;
  background: rgba(255,255,255,.68);
  color: var(--muted);
  font-family: var(--mono);
  font-size: var(--type-label-size);
  line-height: var(--type-label-line);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.pricing-badge.featured,
.pill.green {
  background: rgba(109,40,217,.09);
  border-color: rgba(109,40,217,.28);
  color: var(--accent);
}

.pill.muted {
  background: rgba(245,245,248,.72);
  color: var(--muted);
}

.pricing-panel-grid {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  grid-auto-rows: minmax(154px,auto);
  gap: clamp(8px,.7vw,10px);
  align-content: stretch;
  align-self: end;
  height: auto;
  padding: clamp(8px,1vw,14px) clamp(24px,2.8vw,44px) clamp(10px,1.1vw,16px);
}

.pricing-panel-grid .pricing-mini-panel:nth-child(1) {
  grid-column: span 1;
}

.pricing-panel-grid .pricing-mini-panel:nth-child(2) {
  grid-column: span 1;
}

.pricing-panel-grid .pricing-mini-panel:nth-child(3) {
  grid-column: span 1;
}

.pricing-panel-grid .pricing-mini-panel:nth-child(4) {
  grid-column: 1 / -1;
}

.pricing-mini-panel {
  min-width: 0;
  min-height: 154px;
  border: 1px solid rgba(221,219,231,.64);
  border-radius: var(--card-radius);
  padding: 0;
  background: rgba(255,255,255,.44);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.74);
  backdrop-filter: blur(26px);
  -webkit-backdrop-filter: blur(26px);
  overflow: visible;
}

.pricing-mini-panel summary {
  list-style: none;
  display: block;
  padding: clamp(16px,1.35vw,20px) clamp(16px,1.35vw,21px) 0;
  cursor: default;
}

.pricing-mini-panel summary::-webkit-details-marker {
  display: none;
}

.pricing-mini-panel .label {
  display: block;
  margin-bottom: 0;
  color: var(--muted);
}

.pricing-mini-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid currentColor;
  color: var(--muted);
}

.pricing-mini-head {
  border-bottom-color: rgba(107,107,115,.32);
}

.pricing-mini-number,
.pricing-mini-title {
  font-family: var(--mono);
  font-size: var(--type-label-size);
  line-height: var(--type-label-line);
  letter-spacing: var(--type-label-tracking);
  text-transform: uppercase;
}

.pricing-mini-title {
  justify-self: end;
}

.pricing-mini-panel p,
.pricing-note p {
  max-width: none;
  font-size: clamp(14px,1vw,16px);
  line-height: 1.5;
  color: var(--ink-2);
}

.pricing-mini-panel-body {
  padding: clamp(14px,1.2vw,18px) clamp(16px,1.35vw,21px) clamp(16px,1.35vw,21px);
}

.pricing-scope {
  margin-top: 12px;
  color: var(--muted)!important;
}

.pricing-feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  align-items: flex-start;
}

.pricing-panel-grid .pricing-mini-panel:nth-child(4) .pricing-feature-list {
  max-width: min(100%,820px);
}

.pricing-panel-grid .pricing-mini-panel:nth-child(4) .pricing-feature-list:has(span:nth-child(6)) {
  max-width: min(100%,970px);
}

.pricing-feature-list span,
.pricing-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  max-width: 100%;
  padding: 0 10px;
  white-space: nowrap;
  border: 1px solid var(--hair);
  border-radius: 999px;
  background: rgba(255,255,255,.82);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 700;
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: 0;
  text-align: center;
  text-transform: none;
  flex: 0 1 auto;
}

.pricing-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: clamp(22px,2.2vw,34px);
  padding: 0;
}

.price-card.featured .pricing-mini-panel {
  border-color: rgba(255,255,255,.16);
  background: rgba(255,255,255,.075);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12);
}

.price-card.featured .pricing-mini-panel .label,
.price-card.featured .pricing-mini-head {
  color: rgba(255,255,255,.52);
}

.price-card.featured .pricing-mini-head {
  border-bottom-color: rgba(255,255,255,.22);
}

.price-card.featured .pricing-mini-panel p {
  color: rgba(255,255,255,.82);
}

.price-card.featured .pricing-feature-list span,
.price-card.featured .pricing-tag {
  border-color: rgba(255,255,255,.18);
  background: rgba(255,255,255,.10);
  color: rgba(255,255,255,.88);
}

@media (min-width:981px) {
  .pricing-wrap {
    max-width: 1520px;
  }

  .price-card {
    width: min(100%,1520px);
    height: 646px;
    min-height: 646px;
  }

  .price-card h3 {
    white-space: nowrap;
  }
}

.pricing-note {
  align-self: end;
  border-top: 1px solid var(--hair);
  padding-top: clamp(16px,1.45vw,20px);
}

.pricing-cta-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0,1fr) auto;
  gap: clamp(28px,4vw,72px);
  align-items: center;
  margin-top: clamp(18px,2vw,28px);
  padding: var(--space-card-pad);
  border: 1px solid rgba(221,219,231,.9);
  border-radius: var(--card-radius);
  background:
    radial-gradient(circle at calc(100% - 86px) 66px,rgba(109,40,217,.14),rgba(255,255,255,0) 260px),
    linear-gradient(145deg,rgba(255,255,255,.96),rgba(248,248,252,.82));
  box-shadow: 0 34px 94px -78px rgba(10,10,18,.52);
  overflow: hidden;
}

.pricing-cta-card .body {
  margin-top: 10px;
  color: var(--muted);
}

.home-hero .hero-trust {
  width: min(100%,56ch);
  max-width: 56ch;
  display: block;
  white-space: normal;
}

.expertise-section {
  padding-top: clamp(124px,11vw,172px);
  padding-bottom: clamp(124px,11vw,172px);
}

.expertise-grid {
  display: block;
}

.expertise-intro {
  max-width: 1040px;
}

.expertise-intro .body-lg {
  max-width: 48ch;
  margin-top: 24px;
  color: var(--muted);
}

.expertise-list {
  border-top: 1px solid var(--hair);
  margin-top: clamp(48px,5vw,72px);
}

.expertise-row {
  display: grid;
  grid-template-columns: minmax(56px,.14fr) minmax(300px,.48fr) minmax(0,.44fr);
  gap: clamp(24px,3.8vw,62px);
  align-items: start;
  min-height: clamp(126px,11vw,154px);
  padding: clamp(28px,3vw,40px) 0;
  border-bottom: 1px solid var(--hair);
}

.expertise-row.no-copy {
  grid-template-columns: minmax(56px,.16fr) minmax(0,1fr);
  min-height: auto;
}

.expertise-row.no-copy h3 {
  grid-column: 2 / -1;
}

.expertise-row .n {
  font-family: var(--sans);
  font-size: clamp(28px,3vw,42px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.02em;
  color: var(--ink);
}

.expertise-row h3 {
  font-family: var(--serif);
  font-size: clamp(24px,2.2vw,36px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -.02em;
  max-width: none;
}

.expertise-row.no-copy h3 {
  max-width: none;
}

.expertise-row p {
  font-size: var(--type-body-size);
  line-height: var(--type-body-line);
  color: var(--muted);
  max-width: 52ch;
}

.measure-list.accordion details {
  border-bottom: 1px solid var(--hair);
}

.measure-list.accordion summary {
  list-style: none;
  display: grid;
  grid-template-columns: 52px 1fr auto;
  gap: 22px;
  padding: 22px 0;
  cursor: pointer;
  transition: padding-left .24s ease,color .24s ease;
}

.measure-list.accordion summary::-webkit-details-marker {
  display: none;
}

.measure-list.accordion .more {
  max-width: 58ch;
  color: var(--type-body-muted-color);
  font-size: var(--type-body-size);
  line-height: var(--type-body-line);
  padding: 0 56px 22px 74px;
}

.measure-list.accordion .chev {
  font-size: 26px;
  line-height: 1;
  width: 26px;
  height: 26px;
  display: block;
  transform-origin: center;
  transition: transform .18s ease;
}

.measure-list.accordion details[open] .chev {
  transform: rotate(45deg);
}

.question-panel {
  background: transparent;
  border: 0;
  border-top: 1px solid var(--ink);
  border-radius: 0;
  padding: 64px 0 0;
}

.question-panel .question-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px,4.4vw,66px);
  line-height: 1.04;
  letter-spacing: -.02em;
  max-width: 26ch;
}

.question-list {
  margin-top: 48px;
  border-top: 1px solid rgba(0,0,0,.2);
}

.question-list li {
  list-style: none;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(0,0,0,.16);
}

.question-list .plus {
  font-family: var(--mono);
  font-size: 22px;
  color: var(--accent);
}

.question-list .body {
  font-size: var(--type-body-lg-size);
  color: var(--ink-2);
}

.restraint-section {
  background: linear-gradient(180deg,#fff 0%,#fafafd 100%);
  border-top: 1px solid var(--hair);
}

.restraint-head {
  max-width: 820px;
  margin: 0 auto 54px;
  text-align: center;
}

.restraint-head .h-section {
  margin-inline: auto;
  text-align: center;
}

.restraint-head .body-lg {
  margin-top: 18px;
  margin-inline: auto;
  max-width: 44ch;
  text-align: center;
  color: var(--muted);
}

.restraint-head .tag {
  margin-bottom: 18px;
  text-align: center;
}

.principles-method-comparison .restraint-head {
  max-width: 1040px;
}

.principles-method-comparison .restraint-head .h-section {
  max-width: 100%;
}

.principles-method-comparison .title-line {
  display: inline;
  white-space: nowrap;
}

.principles-origin-section {
  padding-top: clamp(64px,6.5vw,92px);
  padding-bottom: clamp(62px,6vw,88px);
}

.principles-origin-wrap {
  width: min(980px,100%);
}

.principles-origin-head {
  max-width: 740px;
  margin-bottom: clamp(28px,3.6vw,42px);
}

.principles-origin-title {
  max-width: 760px;
}

.principles-origin-title-line {
  display: inline-block;
  white-space: nowrap;
}

.principles-origin-grid {
  max-width: 74ch;
}

.principles-origin-column {
  max-width: 100%;
}

.principles-origin-column .body-lg {
  max-width: 100%;
}

.principles-origin-column .body-lg + .body-lg {
  margin-top: 18px;
}

.principles-origin-finding {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(18px,4vw,58px);
  margin: clamp(26px,3.5vw,36px) 0;
  padding: clamp(18px,2.4vw,26px) clamp(22px,4vw,70px);
  background: rgba(10,10,11,.025);
  color: var(--type-body-color);
}

.principles-origin-finding span {
  margin: 0;
  color: inherit;
}

.principles-origin-finding .dot {
  color: var(--accent);
  flex: 0 0 auto;
}

.decision-comparison {
  --decision-card-min: clamp(420px,36.5vw,500px);
}

.decision-comparison-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 8px;
  align-items: stretch;
}

.decision-card {
  min-height: var(--decision-card-min);
  padding: clamp(28px,2.9vw,40px);
  border: 0;
  border-radius: var(--card-radius);
  background:
    radial-gradient(circle at calc(100% - 34px) 30px,var(--card-glow),rgba(255,255,255,0) 150px),
    linear-gradient(150deg,rgba(255,255,255,.94),rgba(255,255,255,.72));
  color: var(--card-ink);
  box-shadow: var(--card-shadow);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.decision-card:before {
  content: none;
}

.decision-card.dark {
  background:
    radial-gradient(circle at calc(100% - 34px) 30px,rgba(167,139,255,.22),rgba(255,255,255,0) 160px),
    #0a0a0b;
  color: #fff;
  box-shadow: var(--card-shadow);
}

.decision-card.dark:before {
  background: linear-gradient(90deg,rgba(109,40,217,.68),rgba(109,40,217,0));
}

.decision-card.emphasized {
  border-color: transparent;
}

.decision-card-head {
  display: grid;
  grid-template-columns: minmax(0,1fr) auto;
  gap: 24px;
  align-items: start;
}

.decision-card h3 {
  font-family: var(--serif);
  font-size: clamp(30px,2.45vw,40px);
  line-height: 1.03;
  font-weight: 400;
  letter-spacing: -.01em;
  max-width: 14ch;
  color: var(--card-ink);
}

.decision-card .count {
  font-family: var(--mono);
  font-size: clamp(28px,3vw,42px);
  line-height: 1;
  color: var(--card-muted);
}

.decision-card .body {
  margin-top: clamp(22px,2.2vw,28px);
  max-width: 38ch;
  color: var(--card-body);
}

.decision-list {
  list-style: none;
  margin-top: auto;
  padding-top: clamp(42px,5vw,70px);
  display: grid;
  gap: clamp(16px,1.55vw,22px);
}

.decision-list li {
  display: grid;
  grid-template-columns: 22px minmax(0,1fr);
  gap: 14px;
  align-items: start;
  font-size: var(--type-body-size);
  line-height: var(--type-body-line);
  color: var(--card-body);
}

.decision-card.dark .decision-list li {
  color: rgba(255,255,255,.72);
}

.decision-icon {
  position: relative;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: #fff;
  font-size: 0;
  align-self: start;
  margin-top: .1em;
}

.decision-card.dark .decision-icon {
  background: #fff;
  border: 0;
  color: var(--ink);
}

.decision-card.dark h3,
.decision-card.dark .count {
  color: #fff;
}

.decision-card.dark .body {
  color: rgba(255,255,255,.72);
}

.decision-icon.is-check:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 8px;
  height: 5px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translate(-50%,-58%) rotate(-45deg);
  transform-origin: center;
}

.decision-icon.is-minus:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 10px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform: translate(-50%,-50%);
}

.process-row-section {
  background: #fff;
  border-top: 1px solid var(--hair);
}

.process-row-layout {
  display: grid;
  grid-template-columns: minmax(260px,.72fr) minmax(0,1fr);
  gap: 72px;
  align-items: start;
}

.process-row-copy {
  position: sticky;
  top: 104px;
}

.process-row-copy .body-lg {
  margin-top: 24px;
  color: var(--muted);
  max-width: 42ch;
}

.process-list {
  border-top: 1px solid var(--ink);
}

.process-item {
  display: grid;
  grid-template-columns: 72px minmax(220px,.75fr) minmax(0,1fr);
  gap: 28px;
  align-items: start;
  padding: 30px 0;
  border-bottom: 1px solid var(--hair);
}

.process-item .n {
  font-family: var(--mono);
  font-size: var(--type-label-size);
  line-height: var(--type-label-line);
  letter-spacing: var(--type-label-tracking);
  color: var(--ink);
}

.process-item .meta {
  font-family: var(--serif);
  font-size: clamp(30px,3vw,48px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -.02em;
  color: var(--ink);
  text-transform: none;
}

.process-item .body {
  font-size: var(--type-body-size);
  line-height: var(--type-body-line);
  color: var(--type-body-muted-color);
  max-width: 48ch;
}

.artifact .stats-grid {
  margin-top: 18px;
}

.case-archive {
  display: grid;
  grid-template-columns: repeat(12,minmax(0,1fr));
  gap: 18px;
}

.case-card-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  grid-column: span 5;
}

.case-card {
  position: relative;
  border: 1px solid var(--card-border);
  border-radius: var(--card-radius);
  background:
    radial-gradient(circle at calc(100% - 34px) 30px,var(--card-glow),rgba(255,255,255,0) 150px),
    linear-gradient(150deg,rgba(255,255,255,.94),rgba(255,255,255,.72));
  color: var(--card-ink);
  padding: var(--space-card-pad-sm);
  box-shadow: var(--card-shadow);
  overflow: hidden;
  transition: transform .2s ease-in-out,box-shadow .2s ease-in-out,border-color .2s ease-in-out;
}

.case-card:hover {
  transform: translateY(-4px);
  border-color: rgba(109,40,217,.22);
  box-shadow: var(--card-shadow-hover);
}

.case-card-featured {
  grid-column: span 7;
  width: 100%;
  background:
    radial-gradient(circle at calc(100% - 42px) 36px,rgba(109,40,217,.13),rgba(255,255,255,0) 160px),
    linear-gradient(150deg,rgba(255,255,255,.96),rgba(255,255,255,.78));
  color: var(--card-ink);
  padding: 54px;
}

.case-card-featured .h-card {
  font-size: clamp(38px,3.4vw,54px);
}

.case-card-featured .body {
  color: var(--card-body);
}

.case-card-featured .body[style] {
  color: var(--card-body)!important;
}

.case-card-featured .btn.ghost {
  color: var(--ink);
  border-color: var(--hair);
}

.cases-hero {
  text-align: center;
  padding-top: clamp(90px,10vw,150px);
}

.cases-hero .h-display {
  max-width: 900px;
  margin: 40px auto 0;
}

.cases-hero .hero-sub {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.case-report-hero h1 {
  max-width: min(26ch,100%);
  text-wrap: balance;
}

.case-report-hero .hero-sub {
  max-width: 64ch;
}

.case-report-main .section-head .body-lg,
.case-report-main .expertise-intro .body-lg,
.case-report-main .process-row-copy .body-lg,
.case-report-main .split .body-lg {
  max-width: 66ch;
}

.case-report-main .section-head>div:not(.num) {
  max-width: min(100%,1160px);
}

.documented-tags {
  display: grid;
  justify-items: center;
  gap: 14px;
  margin-top: 42px;
}

.documented-tags>span {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .12em;
  color: var(--ink-2);
}

.documented-tags div {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  max-width: 760px;
}

.documented-tags a {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 0 14px;
  border: 1px solid var(--hair);
  border-radius: 999px;
  background: rgba(255,255,255,.82);
  font-size: 13px;
  transition: border-color .2s ease,color .2s ease,transform .2s ease;
}

.documented-tags a:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
}

.documented-tags p {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .08em;
  color: var(--muted);
}

.report-meta-grid {
  display: grid;
  grid-template-columns: repeat(5,minmax(0,1fr));
  gap: 0;
}

.report-meta-item {
  min-height: 120px;
  padding: 0 clamp(24px,2.6vw,34px);
  border-right: 1px solid var(--hair);
}

.report-meta-item:first-child {
  padding-left: 0;
}

.report-meta-item:last-child {
  border-right: 0;
}

.report-meta-item .tag {
  display: block;
  margin-bottom: 16px;
}

.report-meta-item .body {
  max-width: 24ch;
  font-size: clamp(13px,.98vw,15px);
  line-height: 1.42;
  font-weight: 700;
  color: var(--ink);
}

.stacked-article-archive {
  overflow: visible;
}

.stacked-article-progress {
  top: 82px;
  margin: 0 0 24px;
}

.stacked-article-list {
  display: grid;
  grid-template-columns: minmax(0,1fr);
  gap: 22px;
}

.article-card {
  position: sticky;
  top: calc(92px + (var(--i) * 20px));
  grid-column: 1/-1;
  width: 100%;
  min-height: clamp(360px,34vw,500px);
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(230px,340px);
  column-gap: clamp(36px,6vw,92px);
  align-items: start;
  background:
    radial-gradient(circle at calc(100% - 34px) 30px,var(--card-glow),rgba(255,255,255,0) 150px),
    linear-gradient(150deg,#fff,#fff);
  padding: var(--space-card-pad);
}

.article-card-main {
  grid-column: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: calc(clamp(360px,34vw,500px) - (var(--space-card-pad) * 2));
}

.article-card.case-card-featured {
  grid-column: 1/-1;
  background:
    radial-gradient(circle at calc(100% - 42px) 36px,rgba(109,40,217,.13),rgba(255,255,255,0) 160px),
    linear-gradient(150deg,#fff,#fff);
}

.article-card .h-card {
  max-width: min(100%,30ch);
  margin-top: clamp(20px,2.4vw,34px);
  font-size: clamp(28px,2.25vw,36px);
  line-height: 1.04;
  text-wrap: balance;
}

.article-card .case-system {
  margin-top: clamp(20px,2.4vw,30px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 18px;
  max-width: 100%;
  text-align: left;
}

.case-outcome {
  grid-column: 2;
  grid-row: 1;
  justify-self: end;
  align-self: end;
  margin: 0;
  text-align: right;
}

.case-outcome .n {
  display: block;
  font-family: var(--serif);
  font-size: clamp(46px,4.6vw,78px);
  font-weight: 400;
  line-height: .95;
  letter-spacing: -.02em;
  color: var(--accent);
}

.case-outcome .label {
  display: block;
  margin-top: 10px;
  max-width: 26ch;
  font-size: var(--type-body-size);
  line-height: var(--type-body-line);
  color: var(--muted);
}

.case-outcome.is-textual .n {
  font-size: clamp(32px,2.9vw,46px);
  line-height: .98;
}

.case-outcome.is-textual .label {
  margin-left: auto;
  max-width: 26ch;
}

.case-system-part {
  display: inline-flex;
  gap: 6px;
  align-items: baseline;
  padding-right: 18px;
  border-right: 1px solid var(--hair);
}

.case-system-part:last-child {
  border-right: 0;
  padding-right: 0;
}

.case-system-label {
  color: var(--ink);
  font-weight: 700;
}

.case-system-value {
  color: var(--muted);
}

.case-system-dot {
  display: none;
}

.article-card .case-summary,
.article-card .case-excerpt {
  max-width: 62ch;
  margin-top: 14px;
  color: var(--muted);
}

.article-card.case-card-featured .case-summary,
.article-card.case-card-featured .case-excerpt,
.article-card.case-card-featured .case-system {
  color: var(--card-body);
}

.article-card .btn {
  margin-top: auto;
}

.load-more-reports {
  width: 100%;
  min-height: 92px;
  margin-top: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(232,232,236,.9);
  border-radius: 8px;
  background: #111;
  color: #fff;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
  cursor: default;
  transition: transform .22s ease,border-color .22s ease,box-shadow .22s ease;
}

.load-more-reports__label {
  max-width: min(620px, calc(100% - 48px));
}

.load-more-reports:not(:disabled):hover {
  transform: translateY(-3px);
  border-color: rgba(109,40,217,.36);
  box-shadow: 0 34px 90px -72px rgba(109,40,217,.42);
}

.load-more-reports:disabled {
  cursor: default;
  opacity: 1;
}

.load-more-reports:disabled:hover {
  transform: none;
}

.diagnostic-log {
  margin-top: 34px;
  border-top: 1px solid var(--hair);
}

.diagnostic-log-row {
  display: grid;
  grid-template-columns: 96px minmax(0,1fr);
  gap: 32px;
  padding: 22px 0;
  border-bottom: 1px solid var(--hair);
}

.diagnostic-log-row span {
  padding-left: 18px;
  font-family: var(--mono);
  font-size: var(--type-label-size);
  line-height: var(--type-label-line);
  letter-spacing: var(--type-label-tracking);
  text-transform: var(--type-label-transform);
  color: var(--muted-2);
}

.diagnostic-log-row p {
  font-size: var(--type-body-size);
  line-height: var(--type-body-line);
  color: var(--type-body-color);
}

.metric-comparison-section {
  background: #fff;
}

.metric-section-head {
  max-width: 800px;
  margin: 0 auto clamp(34px,4.4vw,58px);
  text-align: center;
}

.metric-section-head .tag {
  margin-bottom: 18px;
}

.metric-section-head .h-section {
  max-width: 18ch;
  margin-left: auto;
  margin-right: auto;
}

.metric-section-head .body-lg {
  max-width: 58ch;
  margin: 22px auto 0;
  color: var(--muted);
}

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

.metric-readout {
  position: relative;
  display: flex;
  min-height: clamp(190px,16vw,226px);
  flex-direction: column;
  border: 1px solid var(--card-border);
  border-radius: var(--card-radius);
  background:
    radial-gradient(circle at calc(100% - 34px) 30px,var(--card-glow),rgba(255,255,255,0) 150px),
    linear-gradient(150deg,rgba(255,255,255,.94),rgba(255,255,255,.72));
  color: var(--card-ink);
  padding: clamp(24px,2.3vw,34px);
  box-shadow: var(--card-shadow);
  transition: transform .22s ease,border-color .22s ease,box-shadow .22s ease;
  overflow: hidden;
}

.metric-readout:hover {
  transform: translateY(-3px);
  border-color: rgba(109,40,217,.22);
  box-shadow: var(--card-shadow-hover);
}

.metric-descriptor {
  font-family: var(--mono);
  font-size: var(--type-label-size);
  line-height: var(--type-label-line);
  letter-spacing: var(--type-label-tracking);
  text-transform: var(--type-label-transform);
  color: var(--muted-2);
}

.metric-values {
  display: flex;
  align-items: baseline;
  gap: clamp(6px,.75vw,10px);
  margin-top: auto;
  padding-top: clamp(22px,3vw,36px);
  font-family: var(--mono);
  font-size: clamp(1.45rem,2.25vw,2.05rem);
  line-height: .95;
  color: var(--card-ink);
  white-space: nowrap;
}

.metric-values em {
  font-style: normal;
  color: #5B21B6;
}

.metric-values strong {
  color: #5B21B6;
  font-weight: 500;
}

.metric-labels {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-top: clamp(22px,2.4vw,30px);
  font-size: .85rem;
  color: var(--card-muted);
}

.metric-labels b {
  color: #5B21B6;
}

.sprint-metric-note,
.deliverable-note {
  margin-top: 1.5rem;
  max-width: 760px;
  font-style: italic;
  font-size: var(--type-body-size);
  line-height: var(--type-body-line);
  color: var(--type-body-muted-color);
}

.deliverable-table {
  border-top: 1px solid #E5E7EB;
}

.deliverable-row {
  display: grid;
  grid-template-columns: 160px minmax(0,1fr);
  gap: 24px;
  padding: 14px 0;
  border-bottom: 1px solid #E5E7EB;
}

.deliverable-row span {
  font-family: var(--mono);
  font-size: var(--type-label-size);
  line-height: var(--type-label-line);
  letter-spacing: var(--type-label-tracking);
  text-transform: var(--type-label-transform);
  color: var(--accent);
}

.deliverable-row p {
  font-size: var(--type-body-size);
  line-height: var(--type-body-line);
  color: var(--type-body-color);
}

.deliverable-note {
  font-size: .9rem;
}

.build-hero-builds {
  margin-top: 1.5rem;
  max-width: 64ch;
}

.build-hero-builds p {
  margin-top: 10px;
  font-size: var(--type-body-lg-size);
  line-height: var(--type-body-lg-line);
  color: var(--type-body-muted-color);
}

.build-statement {
  padding-top: 80px;
}

.build-statement h2 {
  margin-top: 18px;
  max-width: 13ch;
  font-family: var(--serif);
  font-size: clamp(2rem,4vw,3.5rem);
  font-weight: 400;
  line-height: 1.05;
}

.build-statement-body {
  width: min(100%,720px);
  margin: 34px 0 0 12%;
}

.build-statement-body p {
  font-size: var(--type-body-size);
  line-height: var(--type-body-line);
  color: var(--type-body-color);
}

.statement-section .h-section {
  font-family: var(--serif);
  font-size: clamp(42px,5vw,76px);
  line-height: 1.04;
  letter-spacing: -.02em;
}

.build-timeline {
  margin-left: 18%;
  padding-left: 34px;
  border-left: 2px solid #EDE9FE;
}

.build-step {
  display: grid;
  grid-template-columns: 220px minmax(0,1fr);
  gap: 44px;
  align-items: start;
  padding-bottom: 48px;
}

.build-step:last-child {
  padding-bottom: 0;
}

.build-step-number {
  display: block;
  font-family: var(--mono);
  font-size: clamp(2rem,4vw,3rem);
  font-weight: 800;
  line-height: 1;
  color: #EDE9FE;
}

.build-step-name {
  display: block;
  margin-top: 4px;
  font-family: var(--mono);
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #5B21B6;
}

.build-step p {
  max-width: 48ch;
  font-size: var(--type-body-size);
  line-height: var(--type-body-line);
  color: var(--type-body-muted-color);
}

.domains-section {
  padding-top: clamp(92px,9vw,148px);
  overflow: visible;
}

.domains-wrap {
  max-width: 1520px;
}

.domain-stack {
  display: grid;
  grid-template-columns: minmax(0,1fr);
  gap: clamp(18px,2vw,30px);
  padding-bottom: clamp(72px,9vw,132px);
}

.domain-card {
  --domain-haze: rgba(109,40,217,.26);
  --domain-shadow: rgba(35,19,74,.38);
  --domain-line: rgba(255,255,255,.22);
  --domain-glass: rgba(255,255,255,.09);
  position: sticky;
  top: calc(92px + (var(--i) * 20px));
  min-height: clamp(560px,calc(100svh - 112px),700px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: clamp(26px,3vw,42px);
  border: 1px solid rgba(255,255,255,.24);
  border-radius: var(--card-radius);
  background: #111;
  color: #fff;
  padding: clamp(34px,4vw,58px);
  box-shadow: 0 34px 110px -72px var(--domain-shadow);
  overflow: hidden;
  isolation: isolate;
  z-index: var(--z);
  transform: translateZ(0);
  backface-visibility: hidden;
}

.domain-card + .domain-card {
  margin-top: 0;
}

.domain-card:nth-child(2) {
  --domain-haze: rgba(20,184,166,.24);
  --domain-shadow: rgba(6,78,59,.34);
  --domain-line: rgba(175,255,238,.22);
  --domain-glass: rgba(174,255,238,.08);
}

.domain-card:nth-child(3) {
  --domain-haze: rgba(245,158,11,.20);
  --domain-shadow: rgba(120,53,15,.30);
  --domain-line: rgba(255,226,184,.23);
  --domain-glass: rgba(255,244,222,.08);
}

.domain-card:nth-child(4) {
  --domain-haze: rgba(59,130,246,.25);
  --domain-shadow: rgba(30,64,175,.34);
  --domain-line: rgba(187,217,255,.22);
  --domain-glass: rgba(187,217,255,.08);
}

.domain-card:nth-child(5) {
  --domain-haze: rgba(236,72,153,.18);
  --domain-shadow: rgba(131,24,67,.32);
  --domain-line: rgba(255,196,224,.22);
  --domain-glass: rgba(255,196,224,.08);
}

.domain-card:nth-child(6) {
  --domain-haze: rgba(148,163,184,.28);
  --domain-shadow: rgba(15,23,42,.34);
  --domain-line: rgba(226,232,240,.20);
  --domain-glass: rgba(226,232,240,.075);
}

.domain-card-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #08090b;
}

.domain-card > :not(.domain-card-bg) {
  position: relative;
  z-index: 1;
}

.domain-card-bg:before,
.domain-card-bg:after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.domain-card-bg:before {
  inset: -18%;
  background:
    radial-gradient(54% 50% at 86% 18%,rgba(236,72,153,.78),transparent 62%),
    radial-gradient(52% 48% at 18% 94%,rgba(29,78,216,.62),transparent 66%),
    radial-gradient(44% 42% at 56% 12%,rgba(109,40,217,.58),transparent 64%),
    radial-gradient(42% 42% at 64% 86%,rgba(236,72,153,.42),transparent 68%),
    radial-gradient(36% 38% at 8% 30%,rgba(3,7,18,.92),transparent 66%);
  opacity: .9;
  transform: translate3d(0,0,0) scale(1.08);
}

.domain-card-bg:after {
  inset: 0;
  background:
    linear-gradient(115deg,rgba(8,9,11,.92),rgba(8,9,11,.34) 48%,rgba(8,9,11,.78)),
    repeating-radial-gradient(circle at 22% 34%,rgba(255,255,255,.055) 0 1px,transparent 1px 4px);
  mix-blend-mode: normal;
  opacity: .9;
}

.domain-card-head {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 28px;
}

.domain-card h3 {
  max-width: 15ch;
  font-family: var(--serif);
  font-size: clamp(38px,4vw,62px);
  line-height: .98;
  letter-spacing: -.02em;
  color: currentColor;
}

.domain-card .tag {
  display: block;
  margin-bottom: clamp(16px,1.6vw,24px);
  color: currentColor;
  opacity: .68;
}

.domain-card-index {
  font-family: var(--serif);
  font-size: clamp(44px,5vw,72px);
  line-height: .85;
  color: currentColor;
  opacity: .84;
}

.domain-card-details {
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: clamp(10px,1.1vw,16px);
}

.domain-card-block {
  min-height: clamp(104px,7.4vw,126px);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  border: 1px solid var(--domain-line);
  border-radius: clamp(10px,1vw,14px);
  background: var(--domain-glass);
  padding: clamp(16px,1.6vw,24px);
  color: currentColor;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.16),0 18px 50px -44px rgba(0,0,0,.52);
}

.domain-card-block span {
  font-family: var(--mono);
  font-size: 11px;
  line-height: 1.25;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: currentColor;
  opacity: .68;
}

.domain-card-block p {
  max-width: 54ch;
  margin-top: 14px;
  font-size: clamp(15px,1.2vw,18px);
  line-height: 1.45;
  color: currentColor;
  opacity: .9;
}

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

.domain-chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 13px;
  border-radius: 999px;
  border: 0;
  background: rgba(255,255,255,.96);
  color: #0a0a0b;
  font-family: var(--sans);
  font-weight: 800;
  font-size: 13px;
  line-height: 1.15;
  letter-spacing: 0;
  text-transform: none;
  opacity: 1;
}

.domain-card-block .domain-chip {
  color: #0a0a0b;
  font-family: var(--sans);
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
  opacity: 1;
}

.build-fit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}

.fit-column h2 {
  font-family: var(--mono);
  font-size: var(--type-label-size);
  line-height: var(--type-label-line);
  letter-spacing: var(--type-label-tracking);
  text-transform: var(--type-label-transform);
  color: var(--muted-2);
}

.fit-column ul {
  list-style: none;
  margin-top: 20px;
  border-top: 1px solid #E5E7EB;
}

.fit-column li {
  display: grid;
  grid-template-columns: 24px minmax(0,1fr);
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid #E5E7EB;
  font-size: var(--type-body-size);
  line-height: var(--type-body-line);
  color: var(--type-body-color);
}

.fit-column li span {
  color: #5B21B6;
}

.fit-column li .muted-mark {
  color: #9CA3AF;
}

.build-investment {
  background: #fff;
  color: var(--ink);
  border-top: 0;
}

.build-investment-copy {
  width: min(100%,880px);
  margin: 0 auto;
  text-align: center;
}

.build-investment-copy .primary {
  max-width: 19ch;
  margin: 0 auto;
  font-family: var(--serif);
  font-size: clamp(46px,5.4vw,86px);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -.02em;
  color: var(--ink);
  text-wrap: balance;
}

.build-investment-copy .primary .word,
.build-investment-copy .primary .split-word,
.build-investment-copy .primary .split-word-inner,
.build-investment-copy .primary .split-char {
  opacity: 1!important;
  color: var(--ink)!important;
}

.build-investment-copy .secondary {
  max-width: 54ch;
  margin: clamp(22px,2.5vw,34px) auto 0;
  font-family: var(--sans);
  font-size: var(--type-body-lg-size);
  font-weight: var(--type-body-weight);
  line-height: var(--type-body-lg-line);
  letter-spacing: 0;
  color: var(--muted);
}

.build-investment-copy .secondary .word,
.build-investment-copy .secondary .split-word,
.build-investment-copy .secondary .split-word-inner,
.build-investment-copy .secondary .split-char {
  opacity: 1!important;
  color: var(--muted)!important;
}

.case-statement-section .build-investment-copy {
  width: min(100%,880px);
  margin: 0 auto;
  text-align: center;
}

.case-statement-section .build-investment-copy .tag {
  margin-bottom: clamp(26px,3vw,34px);
}

.case-statement-section .build-investment-copy .primary {
  margin: 0 auto;
  max-width: 26ch;
  font-size: clamp(44px,4.9vw,78px);
}

.case-statement-section .build-investment-copy .secondary {
  margin-left: auto;
  margin-right: auto;
  max-width: 66ch;
}

.evaluation-card {
  width: min(100%,720px);
  margin: 46px auto 0;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 8px;
  background:
    radial-gradient(circle at calc(100% - 42px) 36px,rgba(167,139,255,.18),rgba(10,10,11,0) 160px),
    rgba(255,255,255,.045);
  padding: clamp(28px,4vw,48px);
  text-align: center;
  box-shadow: 0 36px 90px -70px rgba(0,0,0,.9);
}

.evaluation-card .tag {
  color: rgba(255,255,255,.56);
}

.evaluation-card .h-card {
  margin-top: 24px;
  color: #fff;
}

.evaluation-card .body {
  max-width: 48ch;
  margin: 14px auto 0;
  color: rgba(255,255,255,.72);
}

.authority-block {
  max-width: 660px;
  margin: 0 auto 34px;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.authority-block p {
  font-family: var(--serif);
  font-size: clamp(38px,5vw,72px);
  line-height: .98;
  color: #fff;
}

.authority-block span {
  display: block;
  max-width: 42ch;
  margin: 22px auto 0;
  font-size: var(--type-body-size);
  line-height: var(--type-body-line);
  color: var(--card-body);
}

/* Footer */
footer {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  height: auto;
  border-top: 1px solid rgba(255,255,255,.10);
  padding: 72px 0 40px;
  background: #0a0a0b;
  color: #fff;
  overflow: visible;
}

footer:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -24px;
  height: 24px;
  background: #0a0a0b;
  pointer-events: none;
}

footer > * {
  position: relative;
  z-index: 1;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr repeat(3,1fr);
  gap: 48px;
}

.footer-brand .word {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: .32em;
  text-transform: uppercase;
}

.footer-symbol {
  width: 44px;
  height: 48px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: .9;
  margin-bottom: 22px;
}

.footer-brand p {
  color: #b8b8c0!important;
}

.footer-col h4 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: none;
  color: #8d8d98;
  margin-bottom: 18px;
}

.footer-col ul {
  list-style: none;
  display: grid;
  gap: 12px;
}

.footer-col a,
.footer-col .footer-link-button,
.legal .footer-link-button,
.footer-bottom {
  font-size: 13px;
  color: #b8b8c0;
}

.wordmark {
  font-family: var(--serif);
  font-size: clamp(80px,16vw,210px);
  line-height: .82;
  letter-spacing: -.055em;
  margin-top: 56px;
  color: #fff;
}

.wordmark .accent {
  color: var(--accent-soft);
  font-style: italic;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 22px;
}

.legal {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

@media (max-width: 980px) {
  .terminal,
  .artifact {
    display: none;
  }
}

/* Responsive: tablet and below */
@media (max-width:980px) {
  :root {
    --footer-reveal: 820px;
  }

  .wrap {
    padding: 0 20px;
    max-width: 100%;
  }

  .primary,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .hero-grid,
  .split,
  .callout,
  .artifact-grid,
  .price-card-head,
  .does-grid,
  .process-row-layout,
	  .stack-list-layout,
	  .engagement-cards,
	  .stack-cards-layout,
	  .stacked-process-layout,
	  .structural-panel-grid,
	  .refusal-card-grid,
	  .statement-layout {
	    grid-template-columns: 1fr;
	  }

  .message-copy-side {
    width: min(100%,calc(100vw - 40px));
    grid-template-columns: minmax(0,1fr);
  }

  .hero-grid>*,
  .split>*,
  .callout>*,
  .artifact-grid>*,
  .does-grid>*,
  .process-row-layout>*,
  .stack-list-layout>*,
  .engagement-cards>*,
  .stack-cards-layout>*,
  .stacked-process-layout>*,
  .statement-layout>* {
    min-width: 0;
  }

  .audit-artifact-layout,
  .audit-metrics {
    grid-template-columns: 1fr;
  }

  .contact-modal-panel {
    width: min(100%,720px);
  }

  .contact-modal-form,
  .contact-modal-actions,
  .contact-modal-cards {
    grid-template-columns: 1fr;
  }

  .contact-modal-form textarea {
    min-height: 260px;
  }

  .audit-patch {
    margin-top: 22px;
  }

  .stack-list-copy {
    position: static;
    min-height: auto;
    justify-content: flex-start;
  }

  .friction-wheel-section {
    --wheel-step: 38deg;
    --wheel-radius: clamp(330px,88vw,430px);
    --wheel-item-width: min(310px,78vw);
    min-height: calc(var(--wheel-count) * 100svh);
  }

  .friction-wheel-sticky {
    min-height: 100svh;
  }

  .friction-wheel-copy {
    left: 20px;
    right: 20px;
    top: 96px;
    width: auto;
    max-width: 410px;
    isolation: isolate;
  }

  .friction-wheel-copy:before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: -28px -20px -88px;
    background: linear-gradient(180deg,#fff 0%,#fff 72%,rgba(255,255,255,.82) 86%,rgba(255,255,255,0) 100%);
    pointer-events: none;
  }

  .friction-wheel-copy .h-section {
    margin-top: 18px;
  }

  .friction-wheel-copy .body-lg {
    margin-top: 22px;
  }

  .friction-wheel-stage {
    --wheel-center-x: -170px;
    --wheel-center-y: 74svh;
  }

  .friction-wheel-label,
  .friction-wheel-arc {
    display: block;
  }

  .friction-wheel-label {
    left: 20px;
    font-size: 10px;
  }

  .friction-wheel-marker {
    display: none;
  }

  .friction-wheel-item,
  .friction-wheel-item.is-active,
  .friction-wheel-item.is-near {
    grid-template-columns: 34px minmax(0,1fr);
    gap: 14px;
    opacity: .13;
    filter: blur(.15px);
  }

  .friction-wheel-item.is-near {
    opacity: .22;
  }

  .friction-wheel-item.is-active {
    opacity: 1;
    filter: none;
  }

  .friction-wheel-item:before {
    left: calc((var(--wheel-radius) * -1) - 12px);
    top: 7px;
  }

  .friction-wheel-item:after {
    left: -17px;
    top: 2px;
  }

  .wheel-step {
    font-size: 15px;
  }

  .friction-wheel-item h3 {
    font-size: clamp(27px,7.4vw,34px);
    max-width: 14ch;
    line-height: .98;
  }

  .friction-wheel-item p {
    font-size: 14px;
    max-width: 26ch;
    margin-top: 12px;
  }

  .friction-wheel-item small,
  .friction-wheel-item:not(.is-active) p,
  .friction-wheel-item:not(.is-active) small {
    display: none;
  }

  .choice-paths {
    grid-template-columns: 1fr;
  }

  .stack-cards-copy,
  .stacked-process-head,
  .statement-copy,
  .stack-card,
  .process-stack-card,
  .article-card {
    position: static;
    min-height: auto;
    transform: none;
  }

  .stack-cards-copy,
  .stacked-process-head {
    justify-content: flex-start;
  }

  .principles-proof-stack .stack-cards-track {
    grid-template-columns: 1fr;
  }

  .principles-origin-section {
    padding-top: 68px;
    padding-bottom: 70px;
  }

  .principles-origin-title-line {
    white-space: normal;
  }

  .principles-origin-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .principles-origin-column {
    max-width: 100%;
  }

  .scroll-process-section {
    min-height: auto;
    padding: 72px 0;
    overflow: visible;
  }

  .scroll-process-sticky {
    position: static;
    min-height: auto;
    padding: 0;
  }

  .scroll-process-head {
    max-width: 100%;
    margin-bottom: 34px;
  }

  .scroll-process-head .tag {
    padding-top: 0;
    margin-bottom: 18px;
  }

  .scroll-process-copy .h-section,
  .scroll-process-copy .body-lg {
    max-width: 100%;
  }

  .scroll-process-copy .body-lg {
    margin-top: 22px;
  }

  .scroll-process-copy .hero-actions {
    width: 100%;
  }

  .scroll-process-section .process-progress {
    display: none;
  }

  .scroll-process-cards {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .scroll-process-card {
    --reveal: 1!important;
    min-height: clamp(340px,88vw,500px);
    transform: none!important;
    opacity: 1!important;
    will-change: auto;
  }

  .stack-card:hover,
  .process-stack-card:hover,
  .statement-card:hover,
  .article-card:hover,
  .domain-card:hover {
    transform: translateY(-2px);
  }

  .domains-section .domain-card:hover {
    transform: none;
  }

  .domains-section {
    padding-top: 82px;
  }

  .domains-section .process-progress {
    display: block;
    position: sticky;
    top: 64px;
    z-index: 5;
    width: 100%;
    height: 3px;
    margin: 0 0 24px;
    background: rgba(232,232,236,.9);
    overflow: hidden;
  }

  .domains-section .process-progress span {
    display: block;
    height: 100%;
    background: var(--accent);
  }

  .domain-stack {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 36px;
    width: 100%;
    max-width: 100%;
    padding-bottom: 0;
  }

  .domain-card,
  .domain-card + .domain-card {
    position: relative;
    top: auto;
    height: auto;
    min-height: auto;
    max-height: none;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    margin-top: 0;
    justify-content: flex-start;
    gap: clamp(18px,2em,32px);
    padding: clamp(18px,4vw,28px);
    overflow: hidden;
    transform: none;
    backface-visibility: visible;
    will-change: auto;
  }

  .domain-card-head {
    min-height: auto;
    margin-bottom: clamp(24px,2em,32px);
  }

  .domain-card h3 {
    font-size: clamp(34px,9vw,58px);
    line-height: .95;
    max-width: 13ch;
  }

  .domain-card-index {
    font-size: clamp(38px,12vw,64px);
  }

  .domain-card-details {
    grid-template-columns: 1fr;
    gap: clamp(8px,1.5svh,12px);
    margin-top: 0;
  }

  .domain-card-block {
    min-height: auto;
    padding: clamp(12px,2.2svh,18px);
    background: rgba(255,255,255,.11);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.14);
  }

  .domain-card-block p {
    margin-top: 8px;
    line-height: 1.35;
  }

  .domain-chip-row {
    gap: 6px;
    margin-top: 10px;
  }

  .domain-chip {
    min-height: 28px;
    padding: 5px 10px;
    font-size: 12px;
  }

  .domain-card-bg:before {
    transform: none;
    opacity: .78;
  }

  .stack-card .h-card,
  .process-stack-card .h-card {
    font-size: clamp(28px,8vw,40px);
    margin-top: 38px;
  }

  .process-progress {
    position: static;
  }

  .stack-list-copy .h-section {
    max-width: 11ch;
    font-size: clamp(48px,12vw,78px);
  }

  .stack-list-section.audit .stack-list-copy {
    padding-top: 0;
  }

  .stack-list-section.audit .stack-list-copy .h-section {
    max-width: 13ch;
    font-size: clamp(38px,9.5vw,58px);
    line-height: 1.1;
  }

  .stack-list-section.audit .stack-list-copy .body-lg {
    max-width: 48ch;
  }

  .stack-list-panel {
    padding-top: 0;
  }

  .stack-list-mark {
    width: min(92vw,460px);
    left: auto;
    right: -30vw;
    top: 40%;
  }

  .stack-list-section.audit .stack-list-mark {
    opacity: .022;
    filter: blur(.6px);
  }

  .engagement-cards:before {
    top: 50%;
    width: 58px;
    height: 58px;
  }

  .engagement-card {
    min-height: auto;
  }

  .section.dark .callout>div {
    align-items: flex-start;
  }

  .section.dark .callout>div .btn {
    flex: 0 1 min(100%,430px);
    white-space: normal;
    text-align: center;
    line-height: 1.25;
  }

  .hero-actions {
    gap: 12px;
  }

  .hero-actions .btn {
    flex: 1 1 220px;
    min-width: min(100%,220px);
    justify-content: center;
  }

  .home-hero .hero-grid {
    grid-template-columns: minmax(0,1fr);
    grid-template-areas: "text" "actions" "trust" "visual";
    gap: clamp(12px,2.4svh,20px);
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
    text-align: center;
    justify-items: center;
  }

  .home-hero .hero-text {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
    justify-items: center;
  }

  .home-hero .hero-copy {
    min-width: 0;
  }

  .home-hero .terminal {
    margin-top: 0;
  }

  .home-hero .hero-actions {
    margin-top: 0;
    width: min(100%,420px);
    justify-content: center;
    justify-self: center;
  }

  .home-hero .hero-trust {
    margin-top: 0;
    max-width: min(100%,calc(100vw - 40px));
    text-align: center;
    justify-self: center;
  }

  .hero {
    background: none;
  }

  .home-hero {
    background: none;
    min-height: calc(100svh - var(--nav-height));
    padding: clamp(34px,4.8svh,56px) 0 clamp(26px,4svh,44px);
  }

  .glow {
    display: block;
    inset: 0;
  }

  .glow:before {
    height: min(620px,118vw);
    transform: translate(-62%,46%);
    filter: blur(34px);
    opacity: .62;
  }

  .glow:after {
    height: min(360px,78vw);
    transform: translate(54%,-40%);
    filter: blur(32px);
    opacity: .34;
  }

  .home-hero .glow {
    inset: 0;
  }

  .home-hero .glow:before {
    height: min(780px,142vw);
    transform: translate(-48%,42%);
    opacity: .28;
  }

  .home-hero .glow:after {
    height: min(420px,92vw);
    opacity: .3;
  }

  .stats-grid {
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 0;
  }

  .stats-section .stats-grid,
  .stats-section .stats-grid:has(.stat:nth-child(4)),
  .stats-section .stats-grid:has(.stat:nth-child(5)) {
    grid-template-columns: repeat(2,minmax(0,1fr));
    row-gap: 30px;
  }

  .report-meta-grid {
    grid-template-columns: repeat(2,minmax(0,1fr));
    row-gap: 28px;
  }

  .report-meta-item:nth-child(2n),
  .report-meta-item:last-child {
    border-right: 0;
  }

  .moves,
  .cards-3,
  .packages,
  .pricing-stack,
  .signal-stack,
  .case-card-row,
  .sprint-metrics,
  .build-fit-grid,
  .domain-grid,
  .build-qualification-grid {
    grid-template-columns: 1fr;
  }

  .pricing-stack {
    gap: 16px;
  }

  .pricing-stack.count-2 {
    grid-template-columns: 1fr;
  }

  .price-card {
    min-height: auto;
    gap: 18px;
  }

  .price-card-head {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 4px 2px 0;
  }

  .price-card-meta {
    align-items: flex-start;
    gap: 16px;
  }

  .price-card .amount,
  .price-card .time {
    text-align: left;
  }

  .price-card-meta .btn {
    margin-top: 2px;
  }

  .pricing-panel-grid,
  .pricing-cta-card {
    grid-template-columns: 1fr;
  }

  .pricing-panel-grid {
    padding-left: 0;
    padding-right: 0;
  }

  .pricing-panel-grid .pricing-mini-panel {
    grid-column: 1 / -1;
  }

  .pricing-mini-panel {
    min-height: auto;
  }

  .pricing-mini-panel summary {
    display: grid;
    grid-template-columns: minmax(0,1fr) 18px;
    gap: 14px;
    align-items: start;
    padding: 18px 18px;
    cursor: pointer;
  }

  .pricing-mini-panel-body {
    padding: 0 18px 20px;
  }

  .pricing-mini-panel:not([open]) .pricing-mini-panel-body {
    display: none;
  }

  .pricing-panel-toggle {
    position: relative;
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
  }

  .pricing-panel-toggle:before,
  .pricing-panel-toggle:after {
    content: "";
    position: absolute;
    inset: 50% auto auto 50%;
    width: 12px;
    height: 1px;
    background: var(--muted);
    transform: translate(-50%,-50%);
  }

  .pricing-panel-toggle:after {
    transform: translate(-50%,-50%) rotate(90deg);
    transition: transform .18s ease;
  }

  .pricing-mini-panel[open] .pricing-panel-toggle:after {
    transform: translate(-50%,-50%) rotate(0deg);
  }

  .price-card.featured .pricing-panel-toggle:before,
  .price-card.featured .pricing-panel-toggle:after {
    background: rgba(255,255,255,.72);
  }

  .pricing-cta-card .btn {
    justify-self: start;
  }

  .stat {
    border-right: 1px solid var(--hair);
    border-bottom: 0;
    padding: 0 12px;
  }

  .stats-section .stat {
    min-height: auto;
  }

  .stat:first-child {
    padding-left: 0;
  }

  .stat:last-child {
    border-right: 0;
    padding-right: 0;
  }

  .stat .n {
    font-size: clamp(42px,15vw,72px);
  }

  .stat .caption {
    font-size: 12px;
    line-height: 1.35;
    margin-top: 10px;
  }

  .stats-section .stat .caption {
    margin-top: 0;
  }

  .stat .tag {
    font-size: 9px;
    letter-spacing: .1em;
    margin-top: 12px;
  }

  .move,
  .card,
  .package {
    grid-column: 1/-1;
    border-right: 1px solid rgba(232,232,236,.86);
    border-bottom: 1px solid rgba(232,232,236,.86);
    padding: 24px;
  }

  .price-card,
  .case-card,
  .case-card-row,
  .case-card-featured {
    grid-column: 1/-1;
  }

  .case-card-featured {
    width: 100%;
    padding: 34px 24px;
  }

  .diagnostic-log-row,
  .deliverable-row,
  .build-step {
    grid-template-columns: 44px minmax(0,1fr);
    gap: 18px;
  }

  .deliverable-row {
    grid-template-columns: 1fr;
  }

  .diagnostic-log-row span {
    padding-left: 0;
  }

  .build-statement-body,
  .build-timeline {
    margin-left: 0;
  }

  .build-timeline {
    padding-left: 20px;
  }

  .statement-card {
    min-height: auto;
  }

  .domain-row,
  .domain-row-1,
  .domain-row-2 {
    grid-template-columns: 1fr;
  }

  .archive-carousel-track {
    height: auto;
    width: calc(100vw - 56px);
    display: grid;
  }

  .archive-slide {
    position: relative;
    left: auto;
    width: calc(100vw - 56px);
    min-height: 330px;
    grid-area: 1/1;
    justify-self: center;
    transform: translate3d(var(--offset-x, 0%),0,0) scale(.96);
  }

  .archive-slide:not(.is-active) {
    opacity: .28;
  }

  .archive-slide.is-active {
    transform: translate3d(0,0,0) scale(1);
  }

  .archive-controls {
    grid-template-columns: 42px minmax(0,1fr) 42px;
    padding: 0 20px;
  }

  .article-card {
    padding: 30px 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .article-card-main {
    min-height: auto;
  }

  .article-card .case-system {
    margin-top: 18px;
    text-align: left;
  }

  .case-outcome {
    margin-top: 26px;
    text-align: left;
    align-self: flex-start;
    justify-self: start;
  }

  .case-outcome.is-textual {
    text-align: left;
  }

  .case-outcome.is-textual .label {
    margin-inline: 0;
  }

  .case-outcome .n {
    font-size: clamp(44px,12vw,62px);
  }

  .case-outcome.is-textual .n {
    font-size: clamp(32px,9vw,46px);
  }

  .article-card .h-card {
    max-width: 100%;
    font-size: clamp(25px,6.8vw,34px);
  }

  .documented-tags div {
    max-width: 100%;
  }

  .move-visual {
    height: 156px;
    justify-items: start;
  }

  .move-visual svg {
    width: min(72vw,240px);
  }

  .does-copy,
  .expertise-intro,
  .process-row-copy {
    position: static;
  }

  .signal-stack {
    border-left: 0;
  }

  .signal {
    border-right: 0;
  }

  .signal.wide {
    grid-column: auto;
  }

  .section {
    padding: 72px 0;
  }

  .section-head,
  .section-head.after-audit-head {
    display: block;
  }

  .section-head .num {
    margin-bottom: 18px;
  }

  .section-head>div:not(.num),
  .section-head .h-section,
  .section-head .body-lg {
    max-width: 100%;
  }

  .hero {
    padding: 64px 0 58px;
  }

  .hero h1,
  .home-hero h1 {
    max-width: min(15ch,100%);
    font-size: clamp(40px,10.5vw,74px);
    line-height: 1;
    overflow-wrap: normal;
  }

  .case-report-hero h1 {
    max-width: min(20ch,100%);
    font-size: clamp(40px,9.2vw,70px);
  }

  .hero-sub {
    max-width: 100%;
  }

  .home-hero .hero-sub {
    max-width: 100%;
    font-size: clamp(16px,4.2vw,18px);
  }

  .hero-sub,
  .tag {
    overflow-wrap: anywhere;
  }

  .hero-price,
  .hero-trust {
    line-height: 1.6;
    max-width: 100%;
  }

  .home-hero .hero-trust {
    max-width: 100%;
    width: 100%;
    overflow-wrap: anywhere;
  }

  .btn {
    white-space: normal;
    text-align: center;
    padding: 12px 16px;
    height: auto;
    overflow-wrap: normal;
    word-break: normal;
  }

  .terminal,
  .artifact {
    max-width: 100%;
  }

  .audit-artifact .artifact-title,
  .audit-terminal-row,
  .audit-step-strip,
  .audit-status-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .audit-step-strip {
    gap: 16px;
  }

  .audit-map-panel .curve {
    height: 240px;
  }

  .readout {
    gap: 12px;
  }

  .readout span,
  .readout b {
    min-width: 0;
  }

  .readout b {
    max-width: 54%;
    text-align: right;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .expertise-section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .expertise-list {
    margin-top: 36px;
  }

  .expertise-row,
  .process-item,
  .measure-list li {
    grid-template-columns: 44px 1fr;
    gap: 18px;
    min-height: auto;
    padding: 20px 0;
  }

  .expertise-row.no-copy h3 {
    grid-column: 2;
  }

  .expertise-row p,
  .process-item .body,
  .measure-list .desc {
    grid-column: 2;
    font-size: 14px;
  }

  .expertise-row h3,
  .process-item .meta,
  .measure-list .name {
    max-width: 100%;
    font-size: clamp(23px,6.2vw,31px);
  }

  .expertise-row .n {
    font-size: clamp(23px,6.2vw,31px);
  }

  .measure-list.compact li {
    grid-template-columns: 44px 1fr;
  }

  .measure-list.accordion summary {
    grid-template-columns: 40px 1fr 26px;
    gap: 14px;
  }

  .measure-list.accordion .chev {
    display: block;
    width: 26px;
    justify-self: end;
    text-align: right;
  }

  .measure-list.accordion .more {
    padding: 0 0 20px 54px;
  }

  .question-panel {
    padding: 34px 24px;
  }

  .question-panel .question-title {
    max-width: 100%;
    font-size: clamp(36px,10vw,54px);
  }

  .question-list li {
    grid-template-columns: 32px 1fr;
    gap: 14px;
  }

  .question-list .body {
    font-size: 15px;
  }

  .restraint-head {
    display: block;
  }

  .decision-comparison-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .decision-card {
    min-height: auto;
    padding: 28px 24px;
  }

  .decision-card h3 {
    font-size: clamp(30px,8vw,38px);
  }

  .after-audit-head .hero-actions {
    margin-top: 24px;
  }

  .process-item .meta {
    grid-column: 2;
  }

  .price-card {
    padding: 24px 20px;
  }

  .price-card .amount,
  .price-card .time {
    text-align: left;
  }

  .checks,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: repeat(auto-fit,minmax(112px,1fr));
    gap: 24px 18px;
  }

  .footer-brand {
    grid-column: 1/-1;
  }

  .footer-brand .word {
    font-size: 11px;
    letter-spacing: .22em;
  }

  .wordmark {
    font-size: clamp(66px,22vw,98px);
    margin-top: 30px;
  }

  .footer-bottom {
    display: block;
  }

  .legal {
    margin-top: 12px;
    gap: 14px;
  }

  .brand {
    letter-spacing: .18em;
  }

  .brand-logo {
    width: 22px;
    height: 22px;
  }

  footer {
    padding: 34px 0 24px;
  }
}

/* Responsive: small phones */
@media (max-width:520px) {
  :root {
    --footer-reveal: 760px;
  }

  .contact-modal {
    padding: 0;
  }

  .contact-modal-panel {
    width: 100%;
    border-radius: 0;
    padding: 22px 18px 28px;
    gap: 22px;
  }

  .contact-modal-head {
    grid-template-columns: minmax(0,1fr) 42px;
    gap: 14px;
  }

  .contact-modal-title {
    font-size: clamp(48px,15vw,74px);
    line-height: .9;
  }

  .contact-modal-close {
    width: 42px;
    height: 42px;
  }

  .contact-modal-submit {
    width: 100%;
  }

  .stack-list-layout {
    gap: 34px;
  }

  .stack-cards-track,
  .process-stack,
  .statement-grid {
    gap: 14px;
  }

  .stack-card,
  .process-stack-card,
  .statement-card {
    padding: 22px 20px;
  }

  .ragnarok-accordion summary {
    grid-template-columns: 38px minmax(0,1fr) 30px;
    gap: 12px;
    padding: 15px;
  }

  .accordion-panel p {
    margin: 0 15px 18px;
  }

  .stack-list-item {
    grid-template-columns: 42px minmax(0,1fr);
    gap: 14px;
    min-height: 74px;
    padding: 16px;
    transform: none;
  }

  .stack-list-number {
    width: 34px;
    height: 34px;
    font-size: 10px;
  }

  .stack-list-title {
    font-size: 17px;
  }

  .stack-list-section.audit .stack-list-item {
    grid-template-columns: 38px minmax(0,1fr);
    gap: 12px;
    min-height: 62px;
    padding: 13px 14px;
    transform: none;
  }

  .stack-list-section.audit .stack-list-number {
    width: 30px;
    height: 30px;
    font-size: 9px;
  }

  .stack-list-section.audit .stack-list-title {
    font-size: 15px;
    line-height: 1.42;
  }

  .engagement-card {
    padding: 24px 20px;
  }

  .engagement-card-head {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .engagement-card .count {
    font-size: 24px;
  }

  .engagement-cards:before {
    display: none;
  }

  .price-card {
    padding: 22px 20px;
  }

  .price-card-head {
    gap: 16px;
  }

  .price-card .deck {
    max-width: 100%;
  }

  .domain-card {
    padding: 18px 20px;
    border-radius: 18px;
    gap: 20px;
  }

  .domain-card-head {
    min-height: auto;
    gap: 16px;
  }

  .domain-card h3 {
    font-size: clamp(31px,8.8vw,43px);
    line-height: .95;
    max-width: 15ch;
  }

  .domain-card-index {
    font-size: 38px;
  }

  .domain-card-block {
    padding: 13px 14px;
    border-radius: 16px;
  }

  .domain-chip,
  .pricing-feature-list span,
  .pricing-tag {
    min-height: 31px;
    padding: 7px 11px;
    font-size: 12px;
  }

  .domain-chip {
    min-height: 28px;
    padding: 5px 10px;
  }

  .readout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 5px;
    align-items: start;
  }

  .readout>* {
    min-width: 0;
  }

  .readout b {
    max-width: 100%;
    text-align: left;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .wrap {
    padding: 0 22px;
  }

  .home-hero .h-display,
  .hero h1 {
    font-size: clamp(32px,8.4vw,41px);
    line-height: .96;
  }

  .hero h1 {
    max-width: min(13ch,100%);
  }

  .case-report-hero h1 {
    max-width: min(16ch,100%);
    font-size: clamp(36px,8.8vw,46px);
  }

  .home-hero .h-display {
    width: min(100%,19ch);
    max-width: 100%;
    text-align: center;
  }

  .home-hero .h-display em {
    display: block;
  }

  .stats-intro {
    font-size: clamp(24px,6.2vw,32px);
    line-height: 1.16;
  }

  .hero-actions {
    align-items: stretch;
    gap: 10px;
  }

  .hero-actions .btn {
    width: 100%;
    margin-left: 0!important;
  }

  .section.dark .callout>div {
    display: grid;
    gap: 10px;
    width: 100%;
  }

  .section.dark .callout>div .btn {
    width: min(100%,430px);
    min-width: 0;
  }

  .home-hero .hero-actions {
    width: 100%;
    max-width: 100%;
    justify-self: center;
    justify-content: center;
  }

  .home-hero .hero-actions .btn {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    flex-basis: 100%;
  }

  .home-hero .hero-trust {
    width: min(100%,330px);
    max-width: calc(100vw - 44px);
    justify-self: center;
    margin-left: 0;
    margin-right: 0;
    text-align: center;
    font-size: 10px;
    letter-spacing: .06em;
    line-height: 1.42;
    overflow-wrap: normal;
    text-wrap: pretty;
  }

  .stats-grid {
    grid-template-columns: repeat(3,minmax(0,1fr));
  }

  .stats-section .stats-grid,
  .stats-section .stats-grid:has(.stat:nth-child(4)),
  .stats-section .stats-grid:has(.stat:nth-child(5)) {
    grid-template-columns: 1fr;
    row-gap: 26px;
  }

  .report-meta-grid {
    grid-template-columns: 1fr;
  }

  .report-meta-item,
  .report-meta-item:nth-child(2n) {
    padding: 0;
    border-right: 0;
    border-bottom: 1px solid var(--hair);
  }

  .report-meta-item:last-child {
    border-bottom: 0;
  }

  .stat {
    padding: 0 8px;
  }

  .stats-section .stat {
    min-height: auto;
  }

  .stat .n {
    font-size: clamp(34px,12vw,52px);
  }

  .stat sup {
    font-size: .34em;
  }

  .stat .caption {
    font-size: 11px;
  }

  .artifact-body {
    padding: 20px;
  }

  .artifact .stats-grid .stat {
    padding: 0 6px;
  }

  .artifact .stats-grid .stat .n {
    font-size: clamp(28px,10vw,42px)!important;
  }

  .artifact .stats-grid .sm {
    font-size: 10px;
  }

  .expertise-row {
    grid-template-columns: 36px 1fr;
  }

  .expertise-row p {
    grid-column: 1/-1;
  }

  .question-panel {
    padding: 28px 18px;
  }

  .decision-card h3 {
    font-size: clamp(38px,12vw,54px);
  }

  .footer-top {
    grid-template-columns: repeat(auto-fit,minmax(104px,1fr));
    gap: 18px 16px;
  }

  .footer-col h4 {
    margin-bottom: 9px;
  }

  .footer-col ul {
    gap: 7px;
  }

  .footer-col a,
  .footer-bottom {
    font-size: 12px;
  }

  .footer-brand p {
    margin-top: 10px!important;
  }

  .footer-brand .tag {
    margin-top: 14px!important;
  }

  .wordmark {
    font-size: clamp(56px,19vw,78px);
    margin-top: 24px;
  }

  .footer-bottom {
    padding-top: 14px;
  }

  footer {
    padding: 24px 0 18px;
  }
}

@media (max-width: 980px) and (max-height: 740px) {
  .domain-card {
    height: auto;
    min-height: auto;
    max-height: none;
    gap: 16px;
    padding-block: 16px;
  }

  .domain-card-head {
    min-height: auto;
  }

  .domain-card h3 {
    font-size: clamp(31px,8vw,46px);
    max-width: 15ch;
  }

  .domain-card-details {
    gap: 8px;
  }

  .domain-card-block {
    padding-block: 11px;
  }

  .domain-card-block p {
    font-size: 13px;
    line-height: 1.3;
  }
}

.footer-link-button {
  appearance: none;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
  padding: 0;
  text-align: left;
  line-height: inherit;
  display: inline;
}

.footer-link-button:hover {
  color: #fff;
}

.cookie-consent {
  position: fixed;
  inset: auto 18px 18px auto;
  width: min(620px, calc(100vw - 36px));
  z-index: 9999;
  opacity: 1;
  pointer-events: none;
  transform: none;
  transition: none;
}

.cookie-consent[hidden] {
  display: none;
}
.cookie-consent.is-open {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  pointer-events: auto !important;
}
/* 
.cookie-consent.is-open {
  pointer-events: auto;
} */

.cookie-card {
  background: rgba(10,10,11,.88);
  color: #fff;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--card-radius);
  box-shadow: 0 28px 90px rgba(0,0,0,.38);
  padding: clamp(18px,3vw,28px);
  -webkit-backdrop-filter: saturate(135%) blur(22px);
  backdrop-filter: saturate(135%) blur(22px);
}

.cookie-card .body,
.cookie-toggle small {
  color: rgba(255,255,255,.68);
}

.cookie-links,
.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.cookie-actions .btn.ghost {
  color: #fff;
  border-color: rgba(255,255,255,.72);
}

.cookie-actions .btn.ghost:hover,
.cookie-actions .btn.ghost:focus-visible {
  color: #fff;
  border-color: rgba(255,255,255,.9);
  background: rgba(255,255,255,.12);
}

.cookie-actions .btn:focus-visible,
.cookie-preferences .btn:focus-visible {
  outline: 2px solid rgba(255,255,255,.92);
  outline-offset: 3px;
}

.cookie-links a {
  color: rgba(255,255,255,.82);
  border-bottom: 1px solid rgba(255,255,255,.28);
  font-size: 12px;
}

.cookie-preferences {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.12);
}

.cookie-preferences[hidden] {
  display: none;
}

.cookie-toggle {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 14px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--card-radius);
  background: rgba(255,255,255,.04);
}

.cookie-toggle strong,
.cookie-toggle small {
  display: block;
}

.cookie-toggle input {
  width: 20px;
  height: 20px;
  accent-color: var(--accent);
}

.home-ticker {
  overflow: hidden;
  background: #0a0a0b;
  border-top: 1px solid rgba(255,255,255,.12);
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.home-ticker-track {
  display: flex;
  width: max-content;
  animation: ragnarok-ticker 24s linear infinite;
}

.home-ticker span {
  color: rgba(255,255,255,.74);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 14px 18px;
  white-space: nowrap;
}

@keyframes ragnarok-ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.case-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 0;
}

.case-filter {
  border: 1px solid var(--hair);
  background: rgba(255,255,255,.72);
  border-radius: 999px;
  padding: 10px 14px;
  color: var(--muted);
  cursor: pointer;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.case-filter.is-active {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

.field-note-article {
  display: grid;
  gap: 18px;
  margin-top: clamp(48px,6vw,78px);
}

.field-note-article .body-lg {
  max-width: 66ch;
}

.before-after-artifact {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: var(--space-card-gap);
}

@media (prefers-reduced-motion: reduce) {
  .home-ticker-track {
    animation: none;
  }
}

@media (max-width: 680px) {
  .cookie-consent {
    inset: auto 12px 12px 12px;
    width: auto;
  }

  .cookie-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .before-after-artifact {
    grid-template-columns: 1fr;
  }
}
