:root {
  --ink: #11110f;
  --ink-soft: #292924;
  --bone: #f1eee6;
  --paper: #faf8f2;
  --line: rgba(17, 17, 15, 0.17);
  --line-light: rgba(255, 255, 255, 0.17);
  --orange: #f05a28;
  --orange-bright: #ff6a32;
  --olive: #a8ad86;
  --display: "Bodoni Moda", "Times New Roman", serif;
  --sans: "Manrope", "Helvetica Neue", sans-serif;
  --page: min(1520px, calc(100vw - 64px));
  --radius: 2px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  color: var(--paper);
  background: var(--orange);
}

a {
  color: inherit;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: white;
  background: var(--ink);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

.page-progress {
  position: fixed;
  z-index: 150;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  pointer-events: none;
}

.page-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left center;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 78px;
  padding: 0 32px;
  color: var(--bone);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  transition: color 280ms ease, background 280ms ease, border-color 280ms ease, transform 280ms var(--ease);
}

.site-header.scrolled {
  color: var(--ink);
  background: rgba(250, 248, 242, 0.9);
  border-color: var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.brand-mark::after {
  position: absolute;
  bottom: -6px;
  left: 50%;
  width: 1px;
  height: 8px;
  content: "";
  background: currentColor;
  transform: translateX(-50%);
}

.brand-mark span {
  width: 6px;
  height: 9px;
  background: var(--orange);
  border-radius: 6px 6px 2px 2px;
}

.brand-word {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 29px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.site-nav a {
  position: relative;
  text-decoration: none;
}

.site-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 300ms var(--ease);
}

.site-nav > a:not(.nav-cta):hover::after,
.site-nav > a:not(.nav-cta):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 26px;
  min-height: 44px;
  padding: 0 16px;
  color: var(--ink);
  background: var(--bone);
  border: 1px solid transparent;
  transition: color 200ms ease, background 200ms ease;
}

.scrolled .nav-cta {
  color: var(--paper);
  background: var(--ink);
}

.nav-cta:hover {
  color: white;
  background: var(--orange);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  color: inherit;
  background: transparent;
  border: 0;
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 24px;
  height: 1px;
  margin: 6px auto;
  background: currentColor;
  transition: transform 220ms ease;
}

.hero {
  position: relative;
  display: grid;
  min-height: min(920px, 100vh);
  padding: 150px max(32px, calc((100vw - 1520px) / 2 + 32px)) 72px;
  overflow: hidden;
  color: var(--bone);
  background: var(--ink);
  grid-template-columns: minmax(0, 1.08fr) minmax(460px, 0.92fr);
  align-items: center;
  gap: clamp(48px, 8vw, 140px);
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 56%;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.42));
}

.hero-grain,
.hero-grain::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-grain {
  opacity: 0.12;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.86' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.52'/%3E%3C/svg%3E");
}

.hero-grain::before {
  content: "";
  background: radial-gradient(circle at 72% 48%, rgba(240, 90, 40, 0.13), transparent 28%);
}

.hero-orbit {
  position: absolute;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.hero-orbit-one {
  top: -36vw;
  right: -24vw;
  width: 72vw;
  height: 72vw;
}

.hero-orbit-two {
  right: 6vw;
  bottom: -28vw;
  width: 44vw;
  height: 44vw;
}

.hero-copy,
.hero-instrument {
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 28px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow > span {
  display: inline-block;
  width: 31px;
  height: 1px;
  background: var(--orange);
}

.hero h1 {
  max-width: 790px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(70px, 7.2vw, 132px);
  font-weight: 400;
  line-height: 0.87;
  letter-spacing: -0.065em;
}

.hero h1 em {
  color: var(--orange-bright);
  font-weight: 400;
}

.hero-intro {
  max-width: 670px;
  margin: 38px 0 0;
  color: rgba(241, 238, 230, 0.72);
  font-size: clamp(18px, 1.4vw, 24px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 42px;
}

.button {
  position: relative;
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  padding: 0 17px 0 22px;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: transform 240ms var(--ease), box-shadow 240ms ease;
}

.button::before {
  position: absolute;
  top: 0;
  left: -120%;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(255, 255, 255, 0.13);
  transform: skewX(-18deg);
  transition: left 460ms var(--ease);
}

.button:hover::before {
  left: 120%;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: white;
  background: var(--orange);
  box-shadow: 0 18px 40px rgba(240, 90, 40, 0.18);
}

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

.button-icon {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 8px 0;
  border-bottom: 1px solid currentColor;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: gap 220ms var(--ease);
}

.text-link:hover {
  gap: 26px;
}

.text-link.light {
  color: var(--bone);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 66px;
  color: rgba(241, 238, 230, 0.48);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-meta span + span::before {
  margin-right: 22px;
  color: var(--orange);
  content: "•";
}

.hero-instrument {
  width: 100%;
  max-width: 600px;
  margin-left: auto;
  padding: 21px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  background: rgba(255, 255, 255, 0.035);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(8px);
}

.instrument-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(241, 238, 230, 0.56);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.live-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.live-label i,
.test-status i {
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(240, 90, 40, 0.12);
}

.instrument-dial {
  position: relative;
  display: grid;
  width: min(28vw, 330px);
  height: min(28vw, 330px);
  margin: 38px auto 28px;
  place-items: center;
}

.dial-rings,
.dial-rings::before,
.dial-rings::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
}

.dial-rings {
  inset: 0;
  background: repeating-conic-gradient(from 0deg, rgba(255, 255, 255, 0.28) 0 0.4deg, transparent 0.4deg 12deg);
  -webkit-mask-image: radial-gradient(circle, transparent 66%, black 67%);
  mask-image: radial-gradient(circle, transparent 66%, black 67%);
  animation: spin 40s linear infinite;
}

.dial-rings::before {
  inset: 14%;
  content: "";
}

.dial-rings::after {
  inset: 31%;
  content: "";
  border-color: rgba(240, 90, 40, 0.8);
  box-shadow: 0 0 32px rgba(240, 90, 40, 0.12);
}

.dial-value {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.dial-value strong {
  font-family: var(--display);
  font-size: clamp(66px, 7vw, 104px);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.06em;
}

.dial-value span {
  margin-top: 14px;
  color: rgba(241, 238, 230, 0.52);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.dial-marker {
  position: absolute;
  width: 7px;
  height: 7px;
  background: var(--orange);
  border-radius: 50%;
}

.marker-one { top: 13%; left: 25%; }
.marker-two { top: 35%; right: 5%; }
.marker-three { bottom: 7%; left: 43%; }

.instrument-question {
  max-width: 360px;
  margin: 0 auto 32px;
  font-family: var(--display);
  font-size: clamp(21px, 1.8vw, 29px);
  line-height: 1.28;
  text-align: center;
}

.instrument-signals {
  display: grid;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  grid-template-columns: repeat(3, 1fr);
}

.instrument-signals > div {
  padding: 17px 12px 3px;
}

.instrument-signals > div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.instrument-signals span,
.instrument-signals b {
  display: block;
  color: rgba(241, 238, 230, 0.36);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.instrument-signals p {
  margin: 15px 0 5px;
  font-size: 10px;
}

.instrument-signals b {
  color: var(--orange-bright);
}

.section-pad {
  width: var(--page);
  margin: 0 auto;
  padding-top: clamp(96px, 10vw, 174px);
  padding-bottom: clamp(96px, 10vw, 174px);
}

.section-index {
  margin: 0 0 32px;
  color: rgba(17, 17, 15, 0.48);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.statement {
  display: grid;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 1fr 3fr;
  gap: 40px;
}

.statement blockquote {
  max-width: 1180px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(42px, 5vw, 82px);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(300px, 0.6fr);
  gap: 60px;
  align-items: end;
}

.section-heading h2,
.process-sticky h2,
.contact-copy h2 {
  max-width: 980px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(50px, 5.7vw, 91px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.section-heading > p:not(.section-index),
.split-heading > p {
  max-width: 470px;
  margin: 0;
  color: rgba(17, 17, 15, 0.58);
  font-size: 15px;
  line-height: 1.8;
}

.risk-grid {
  display: grid;
  margin-top: 74px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  grid-template-columns: repeat(3, 1fr);
}

.risk-card {
  position: relative;
  min-height: 510px;
  padding: 28px;
  transition: background 350ms var(--ease), transform 350ms var(--ease);
}

.risk-card + .risk-card {
  border-left: 1px solid var(--line);
}

.risk-card:hover {
  background: var(--bone);
  transform: translateY(-8px);
}

.risk-number {
  color: rgba(17, 17, 15, 0.42);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.risk-icon {
  position: relative;
  width: 160px;
  height: 150px;
  margin: 50px auto 38px;
}

.risk-icon::before,
.risk-icon::after,
.risk-icon i {
  position: absolute;
  display: block;
  content: "";
}

.risk-icon-access::before {
  top: 30px;
  left: 31px;
  width: 58px;
  height: 58px;
  border: 1px solid var(--ink);
  border-radius: 50%;
}

.risk-icon-access::after {
  top: 59px;
  left: 89px;
  width: 64px;
  height: 1px;
  background: var(--ink);
}

.risk-icon-access i {
  top: 58px;
  right: 3px;
  width: 12px;
  height: 17px;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.risk-icon-knowledge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.risk-icon-knowledge::before {
  inset: 21px;
  border: 1px solid var(--ink);
  border-radius: 50%;
}

.risk-icon-knowledge i {
  position: static;
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 50%;
}

.risk-icon-knowledge i:nth-child(2) { transform: translateY(-26px); }
.risk-icon-knowledge i:nth-child(3) { transform: translateY(28px); }

.risk-icon-team::before,
.risk-icon-team::after,
.risk-icon-team i {
  width: 40px;
  height: 40px;
  border: 1px solid var(--ink);
  border-radius: 50%;
}

.risk-icon-team::before { top: 18px; left: 60px; }
.risk-icon-team::after { bottom: 28px; left: 21px; }
.risk-icon-team i:first-child { right: 21px; bottom: 28px; }
.risk-icon-team i:nth-child(2) {
  top: 59px;
  left: 79px;
  width: 1px;
  height: 34px;
  background: var(--ink);
  border: 0;
  border-radius: 0;
}
.risk-icon-team i:nth-child(3) {
  bottom: 48px;
  left: 61px;
  width: 38px;
  height: 1px;
  background: var(--ink);
  border: 0;
  border-radius: 0;
}

.risk-card h3 {
  max-width: 300px;
  margin: 0;
  font-family: var(--display);
  font-size: 32px;
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.risk-card p {
  max-width: 390px;
  margin: 17px 0 32px;
  color: rgba(17, 17, 15, 0.58);
  font-size: 13px;
}

.risk-tag,
.deliverable-label {
  display: inline-flex;
  padding-top: 10px;
  border-top: 1px solid currentColor;
  color: rgba(17, 17, 15, 0.45);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.process {
  display: grid;
  width: 100%;
  padding-right: max(32px, calc((100vw - 1520px) / 2 + 32px));
  padding-left: max(32px, calc((100vw - 1520px) / 2 + 32px));
  color: var(--bone);
  background: var(--ink);
  grid-template-columns: minmax(300px, 0.86fr) minmax(500px, 1.14fr);
  gap: clamp(70px, 10vw, 170px);
}

.process .section-index {
  color: rgba(241, 238, 230, 0.42);
}

.process-sticky {
  position: sticky;
  top: 128px;
  height: max-content;
}

.process-sticky > p:not(.section-index) {
  max-width: 570px;
  margin: 34px 0 44px;
  color: rgba(241, 238, 230, 0.59);
}

.process-steps {
  border-top: 1px solid var(--line-light);
}

.process-step {
  display: grid;
  min-height: 315px;
  padding: 38px 0 46px;
  border-bottom: 1px solid var(--line-light);
  grid-template-columns: 106px 1fr;
  gap: 34px;
}

.step-week {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
}

.step-week span,
.step-kicker {
  color: rgba(241, 238, 230, 0.39);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.step-week strong {
  font-family: var(--display);
  font-size: 46px;
  font-weight: 400;
  line-height: 1;
}

.step-kicker {
  margin: 7px 0 14px;
  color: var(--orange-bright);
}

.process-step h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(50px, 5vw, 77px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.process-step p:last-child {
  max-width: 600px;
  margin: 23px 0 0;
  color: rgba(241, 238, 230, 0.56);
  font-size: 14px;
}

.split-heading {
  align-items: end;
}

.deliverable-grid {
  display: grid;
  margin-top: 72px;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.deliverable-card {
  position: relative;
  display: flex;
  min-height: 390px;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(26px, 3vw, 44px);
  overflow: hidden;
  background: var(--bone);
  transition: transform 350ms var(--ease), box-shadow 350ms ease;
}

.deliverable-card:hover {
  z-index: 2;
  transform: translateY(-8px);
  box-shadow: 0 24px 50px rgba(17, 17, 15, 0.1);
}

.deliverable-card.card-wide {
  flex-direction: row;
  grid-column: span 2;
  gap: 30px;
}

.deliverable-card h3 {
  max-width: 480px;
  margin: 25px 0 13px;
  font-family: var(--display);
  font-size: clamp(33px, 3vw, 47px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.045em;
}

.deliverable-card p {
  max-width: 470px;
  margin: 0;
  color: rgba(17, 17, 15, 0.56);
  font-size: 13px;
}

.dark-card {
  color: var(--bone);
  background: var(--ink);
}

.dark-card .deliverable-label,
.dark-card p {
  color: rgba(241, 238, 230, 0.52);
}

.access-map {
  position: relative;
  width: 46%;
  min-width: 280px;
  height: 270px;
  margin: auto 0;
}

.map-node {
  position: absolute;
  z-index: 2;
  display: grid;
  min-width: 74px;
  min-height: 74px;
  padding: 10px;
  place-items: center;
  background: var(--bone);
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-align: center;
  text-transform: uppercase;
}

.node-owner { top: 0; left: 0; }
.node-company { top: 92px; left: 42%; color: white; background: var(--orange); border-color: var(--orange); }
.node-team { right: 0; bottom: 0; }
.node-recovery { bottom: 0; left: 7%; }

.map-line {
  position: absolute;
  height: 1px;
  background: rgba(17, 17, 15, 0.35);
  transform-origin: left;
}

.line-one { top: 70px; left: 65px; width: 58%; transform: rotate(24deg); }
.line-two { top: 153px; left: 80px; width: 65%; transform: rotate(-10deg); }

.knowledge-lines {
  display: flex;
  height: 92px;
  align-items: flex-end;
  gap: 8px;
}

.knowledge-lines i {
  display: block;
  width: 11px;
  height: 40%;
  background: var(--orange);
}

.knowledge-lines i:nth-child(2) { height: 68%; }
.knowledge-lines i:nth-child(3) { height: 92%; }
.knowledge-lines i:nth-child(4) { height: 55%; }

.test-status {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid var(--line-light);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.folder-stack {
  position: relative;
  height: 110px;
}

.folder-stack i {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  height: 72px;
  border: 1px solid var(--ink);
  background: var(--bone);
}

.folder-stack i:nth-child(2) { bottom: 14px; left: 14px; background: var(--paper); }
.folder-stack i:nth-child(3) { bottom: 28px; left: 28px; background: var(--olive); }

.plan-card ol {
  display: flex;
  width: 44%;
  min-width: 300px;
  flex-direction: column;
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.plan-card li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--display);
  font-size: 26px;
}

.plan-card li span {
  font-family: var(--sans);
  color: rgba(17, 17, 15, 0.45);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.before-after {
  border-top: 1px solid var(--line);
}

.comparison {
  position: relative;
  display: grid;
  margin-top: 72px;
  border: 1px solid var(--line);
  grid-template-columns: 1fr 1fr;
}

.comparison-column {
  min-height: 400px;
  padding: clamp(26px, 4vw, 60px);
}

.comparison-column + .comparison-column {
  border-left: 1px solid var(--line);
}

.comparison-column > p {
  margin: 0 0 58px;
  color: rgba(17, 17, 15, 0.43);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.comparison-column ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.comparison-column li {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}

.comparison-column li span {
  display: grid;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 10px;
}

.comparison-column.after {
  color: var(--bone);
  background: var(--ink);
}

.comparison-column.after > p,
.comparison-column.after li {
  color: rgba(241, 238, 230, 0.72);
  border-color: var(--line-light);
}

.comparison-column.after li span {
  color: var(--orange-bright);
}

.comparison-key {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  display: flex;
  width: 110px;
  height: 34px;
  align-items: center;
  transform: translate(-50%, -50%) rotate(-8deg);
}

.key-head {
  position: relative;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  background: var(--orange);
  border-radius: 50%;
}

.key-head i {
  position: absolute;
  inset: 9px;
  border: 2px solid var(--ink);
  border-radius: 50%;
}

.key-shaft {
  position: relative;
  width: 70px;
  height: 8px;
  background: var(--orange);
}

.key-shaft i {
  position: absolute;
  right: 0;
  bottom: -10px;
  width: 8px;
  height: 12px;
  background: var(--orange);
}

.key-shaft i:nth-child(2) { right: 15px; bottom: -7px; height: 9px; }

.offer {
  padding-top: 0;
}

.offer-panel {
  display: grid;
  padding: clamp(38px, 6vw, 84px);
  color: var(--ink);
  background: var(--orange);
  grid-template-columns: 1.25fr 0.75fr;
  gap: 74px;
}

.offer-copy h2 {
  max-width: 800px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(48px, 5vw, 78px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.offer-copy > p:last-child {
  max-width: 680px;
  margin: 28px 0 0;
  font-size: 15px;
}

.offer-price {
  padding: 24px;
  border: 1px solid rgba(17, 17, 15, 0.55);
}

.offer-price p,
.offer-includes > p {
  margin: 0;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.offer-price strong {
  display: block;
  margin: 15px 0 5px;
  font-family: var(--display);
  font-size: clamp(34px, 3.2vw, 48px);
  font-weight: 500;
  line-height: 1;
}

.offer-price span {
  font-size: 11px;
}

.offer-includes {
  border-top: 1px solid rgba(17, 17, 15, 0.55);
  grid-column: 1;
}

.offer-includes > p {
  padding-top: 20px;
}

.offer-includes ul {
  display: grid;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 30px;
}

.offer-includes li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(17, 17, 15, 0.24);
  font-size: 12px;
}

.offer-panel > .button {
  width: 100%;
  align-self: end;
}

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

.principle-row {
  display: grid;
  margin-top: 72px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  grid-template-columns: repeat(3, 1fr);
}

.principle-row > div {
  min-height: 280px;
  padding: 28px;
}

.principle-row > div + div {
  border-left: 1px solid var(--line);
}

.principle-row span {
  color: var(--orange);
  font-size: 9px;
  font-weight: 700;
}

.principle-row h3 {
  max-width: 320px;
  margin: 58px 0 14px;
  font-family: var(--display);
  font-size: 30px;
  font-weight: 500;
  line-height: 1.08;
}

.principle-row p {
  max-width: 370px;
  margin: 0;
  color: rgba(17, 17, 15, 0.55);
  font-size: 13px;
}

.faq {
  display: grid;
  grid-template-columns: 0.74fr 1.26fr;
  gap: clamp(60px, 10vw, 170px);
}

.faq .section-heading {
  display: block;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: flex;
  min-height: 92px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  cursor: pointer;
  font-family: var(--display);
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.2;
  list-style: none;
}

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

.faq-list summary span {
  font-family: var(--sans);
  color: var(--orange);
  font-size: 22px;
  transition: transform 260ms var(--ease);
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 760px;
  margin: -5px 0 32px;
  color: rgba(17, 17, 15, 0.58);
  font-size: 14px;
}

.contact {
  width: 100%;
  padding-right: max(32px, calc((100vw - 1520px) / 2 + 32px));
  padding-left: max(32px, calc((100vw - 1520px) / 2 + 32px));
  color: var(--bone);
  background: var(--ink);
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(520px, 1.2fr);
  gap: clamp(70px, 11vw, 190px);
}

.contact-copy h2 {
  max-width: 690px;
}

.contact-copy > p:not(.eyebrow):not(.contact-direct) {
  max-width: 570px;
  margin-top: 32px;
  color: rgba(241, 238, 230, 0.57);
  font-size: 14px;
}

.contact-direct {
  margin: 18px 0 0;
  color: rgba(241, 238, 230, 0.52);
  font-size: 12px;
}

.contact-direct a {
  color: var(--bone);
  text-decoration-color: var(--orange-bright);
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.contact-direct a:hover {
  color: var(--orange-bright);
}

.contact-form {
  padding: clamp(26px, 4vw, 52px);
  border: 1px solid var(--line-light);
  background: rgba(255, 255, 255, 0.025);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px 22px;
}

.contact-form label {
  display: block;
}

.contact-form label > span {
  display: block;
  margin-bottom: 8px;
  color: rgba(241, 238, 230, 0.45);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  color: var(--bone);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 0;
  outline: 0;
  transition: border-color 180ms ease, background 180ms ease;
}

.contact-form input,
.contact-form select {
  height: 50px;
}

.contact-form textarea {
  margin-top: 8px;
  padding: 14px 0;
  resize: vertical;
}

.contact-form select option {
  color: var(--ink);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--orange-bright);
}

.contact-form .field-error {
  border-color: #ff8c68;
}

.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  margin-top: 34px;
}

.form-footer p {
  max-width: 330px;
  margin: 0;
  color: rgba(241, 238, 230, 0.36);
  font-size: 9px;
}

.form-status {
  min-height: 20px;
  margin: 18px 0 0;
  color: var(--orange-bright);
  font-size: 11px;
}

.site-footer {
  display: grid;
  min-height: 280px;
  padding: 58px max(32px, calc((100vw - 1520px) / 2 + 32px));
  color: var(--bone);
  background: var(--ink-soft);
  border-top: 1px solid var(--line-light);
  grid-template-columns: 1fr 1fr auto;
  gap: 40px;
}

.footer-brand p,
.footer-meta p,
.footer-links {
  color: rgba(241, 238, 230, 0.46);
  font-size: 10px;
}

.footer-brand p {
  margin: 28px 0 0;
}

.footer-meta p {
  margin: 0 0 8px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.footer-links a {
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--bone);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 850ms var(--ease), transform 850ms var(--ease);
}

.reveal[data-delay="1"] { transition-delay: 90ms; }
.reveal[data-delay="2"] { transition-delay: 180ms; }

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@media (max-width: 1180px) {
  :root { --page: calc(100vw - 48px); }

  .hero {
    grid-template-columns: 1fr 440px;
    gap: 50px;
  }

  .hero h1 { font-size: clamp(68px, 7vw, 92px); }
  .instrument-dial { width: 270px; height: 270px; }
  .statement { grid-template-columns: 1fr; }
  .section-heading { grid-template-columns: 1fr; }
  .section-heading > p:not(.section-index) { margin-top: 22px; }
  .process { gap: 70px; }
  .deliverable-grid { grid-template-columns: repeat(2, 1fr); }
  .deliverable-card.card-wide { grid-column: span 2; }
  .deliverable-card:not(.card-wide) { min-height: 370px; }
  .offer-panel { gap: 42px; }
  .contact-panel { gap: 70px; }
}

@media (max-width: 920px) {
  .site-header { height: 70px; padding: 0 24px; }
  .menu-toggle { display: block; }
  .menu-toggle[aria-expanded="true"] > span:nth-child(2) { transform: translateY(3.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] > span:nth-child(3) { transform: translateY(-3.5px) rotate(-45deg); }

  .site-nav {
    position: fixed;
    inset: 70px 0 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    padding: 32px;
    color: var(--bone);
    background: var(--ink);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-16px);
    transition: opacity 220ms ease, transform 260ms var(--ease);
  }

  .site-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav > a {
    padding: 16px 0;
    border-bottom: 1px solid var(--line-light);
    font-family: var(--display);
    font-size: 34px;
    font-weight: 400;
  }

  .site-nav .nav-cta {
    min-height: 60px;
    margin-top: 26px;
    padding: 0 20px;
    border: 0;
    font-family: var(--sans);
    font-size: 12px;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 142px;
    gap: 78px;
  }

  .hero-instrument { margin: 0 auto; }
  .instrument-dial { width: min(52vw, 330px); height: min(52vw, 330px); }

  .risk-grid { grid-template-columns: 1fr; }
  .risk-card { min-height: 400px; }
  .risk-card + .risk-card { border-top: 1px solid var(--line); border-left: 0; }
  .risk-icon { float: right; margin: 30px 0 20px 30px; }

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

  .process-sticky { position: static; }
  .process-steps { margin-top: 10px; }
  .faq { grid-template-columns: 1fr; }
  .contact-panel { grid-template-columns: 1fr; }
  .site-footer { grid-template-columns: 1fr 1fr; }
  .footer-links { align-items: flex-start; }
}

@media (max-width: 680px) {
  :root { --page: calc(100vw - 32px); }

  .site-header { padding: 0 16px; }
  .hero { min-height: auto; padding: 130px 16px 62px; }
  .hero h1 { font-size: clamp(58px, 18vw, 78px); }
  .hero-intro { font-size: 16px; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 16px; }
  .hero-actions .button { width: 100%; }
  .hero-meta { gap: 9px 14px; }
  .hero-meta span + span::before { margin-right: 14px; }
  .hero-instrument { padding: 15px; }
  .instrument-dial { width: 68vw; height: 68vw; }
  .instrument-signals > div { padding-right: 6px; padding-left: 6px; }
  .instrument-signals p { font-size: 8px; }

  .section-pad { padding-top: 88px; padding-bottom: 88px; }
  .statement blockquote { font-size: 40px; }
  .section-heading h2,
  .process-sticky h2,
  .contact-copy h2 { font-size: 48px; }
  .risk-card { padding: 22px; }
  .risk-icon { float: none; margin: 34px auto 28px; }

  .process { padding-right: 16px; padding-left: 16px; gap: 58px; }
  .process-step { min-height: auto; grid-template-columns: 64px 1fr; gap: 17px; }
  .step-week strong { font-size: 35px; }
  .process-step h3 { font-size: 48px; }

  .deliverable-grid { grid-template-columns: 1fr; }
  .deliverable-card,
  .deliverable-card.card-wide { min-height: 370px; flex-direction: column; grid-column: span 1; }
  .access-map,
  .plan-card ol { width: 100%; min-width: 0; }
  .access-map { height: 220px; }
  .map-node { min-width: 62px; min-height: 62px; }

  .comparison { grid-template-columns: 1fr; }
  .comparison-column + .comparison-column { border-top: 1px solid var(--line); border-left: 0; }
  .comparison-key { transform: translate(-50%, -50%) rotate(82deg); }

  .offer-panel { grid-template-columns: 1fr; padding: 34px 24px; }
  .offer-includes { grid-column: auto; }
  .offer-includes ul { grid-template-columns: 1fr; }

  .principle-row { grid-template-columns: 1fr; }
  .principle-row > div + div { border-top: 1px solid var(--line); border-left: 0; }
  .principle-row > div { min-height: 230px; }

  .contact { padding-right: 16px; padding-left: 16px; }
  .contact-panel { gap: 48px; }
  .contact-form { padding: 22px 18px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-footer { align-items: stretch; flex-direction: column; }
  .form-footer .button { width: 100%; }
  .site-footer { grid-template-columns: 1fr; padding-right: 16px; padding-left: 16px; }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
