:root {
  --ink: #07100e;
  --ink-2: #0d1815;
  --ink-3: #15231f;
  --paper: #f3f3ec;
  --paper-2: #e9ebe2;
  --white: #ffffff;
  --acid: #d8ff72;
  --mint: #8cffcb;
  --cyan: #74dcff;
  --violet: #8b7cff;
  --coral: #ff765f;
  --text: #101814;
  --muted: #657069;
  --line: rgba(7, 16, 14, 0.14);
  --line-light: rgba(255, 255, 255, 0.14);
  --shadow: 0 32px 90px rgba(2, 11, 8, 0.22);
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 32px;
  --container: 1240px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--paper);
  font-family: Inter, "Avenir Next", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  color: var(--ink);
  background: var(--acid);
}

a {
  color: inherit;
}

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

button,
select {
  cursor: pointer;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(216, 255, 114, 0.8);
  outline-offset: 3px;
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

.container {
  width: min(var(--container), calc(100% - 64px));
  margin-inline: auto;
}

.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;
  top: 12px;
  left: 12px;
  z-index: 200;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--acid);
  border-radius: 10px;
  font-weight: 750;
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.page-noise {
  position: fixed;
  inset: 0;
  z-index: 150;
  pointer-events: none;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

.js .reveal {
  opacity: 0;
  transform: translateY(30px);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 760ms var(--ease), transform 760ms var(--ease);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  color: #eef4ee;
  border-bottom: 1px solid transparent;
  transition: background 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}

.site-header.is-scrolled {
  background: rgba(7, 16, 14, 0.84);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(18px) saturate(120%);
  -webkit-backdrop-filter: blur(18px) saturate(120%);
}

.nav-shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 82px;
  gap: 30px;
}

.brand {
  display: grid;
  grid-template-columns: 42px auto;
  grid-template-rows: auto auto;
  align-items: center;
  column-gap: 12px;
  width: max-content;
  color: inherit;
  line-height: 1;
  text-decoration: none;
}

.brand img {
  grid-row: 1 / 3;
}

.brand-name {
  align-self: end;
  font-size: 16px;
  font-weight: 760;
  letter-spacing: -0.02em;
}

.brand-label {
  align-self: start;
  margin-top: 5px;
  color: rgba(238, 244, 238, 0.56);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 9px;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 2.4vw, 38px);
}

.main-nav a,
.nav-phone {
  position: relative;
  color: rgba(238, 244, 238, 0.72);
  font-size: 13px;
  font-weight: 660;
  text-decoration: none;
  transition: color 180ms ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  height: 1px;
  background: var(--acid);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 260ms var(--ease);
}

.main-nav a:hover,
.nav-phone:hover {
  color: #fff;
}

.main-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: 1px solid var(--line-light);
  border-radius: 50%;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 54px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 780;
  letter-spacing: -0.01em;
  text-decoration: none;
  transition: transform 220ms var(--ease), box-shadow 220ms ease, background 220ms ease;
}

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

.button span {
  font-size: 17px;
  line-height: 1;
}

.button-small {
  min-height: 43px;
  padding: 0 19px;
  font-size: 12px;
}

.button-large {
  min-height: 62px;
  padding: 0 30px;
}

.button-full {
  width: 100%;
}

.button-acid {
  color: var(--ink);
  background: var(--acid);
  box-shadow: 0 12px 32px rgba(216, 255, 114, 0.16);
}

.button-acid:hover {
  background: #e4ff9a;
  box-shadow: 0 18px 40px rgba(216, 255, 114, 0.22);
}

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

.button-ink:hover {
  background: #14211e;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 750;
  text-decoration: none;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.text-link-light {
  color: rgba(255, 255, 255, 0.86);
}

.eyebrow {
  margin: 0 0 22px;
  color: #536058;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

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

.pulse-dot {
  position: relative;
  display: inline-block;
  width: 7px;
  height: 7px;
  background: var(--acid);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(216, 255, 114, 0.5);
  animation: pulse-dot 2.4s infinite;
}

@keyframes pulse-dot {
  0% { box-shadow: 0 0 0 0 rgba(216, 255, 114, 0.5); }
  60%, 100% { box-shadow: 0 0 0 10px rgba(216, 255, 114, 0); }
}

.hero {
  position: relative;
  min-height: 900px;
  padding: 168px 0 42px;
  color: #f1f7f2;
  background:
    linear-gradient(115deg, rgba(8, 19, 16, 0.2), rgba(8, 19, 16, 0.96) 78%),
    radial-gradient(circle at 20% 20%, #1a3129 0, #07100e 50%);
  isolation: isolate;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.86), transparent 94%);
}

.hero::after {
  content: "NEXUS";
  position: absolute;
  right: -0.08em;
  bottom: -0.25em;
  z-index: -2;
  color: rgba(255, 255, 255, 0.018);
  font-size: clamp(170px, 28vw, 430px);
  font-weight: 850;
  letter-spacing: -0.1em;
  line-height: 1;
  pointer-events: none;
}

.hero-aura {
  position: absolute;
  z-index: -2;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.14;
  pointer-events: none;
}

.hero-aura-one {
  top: 70px;
  left: -260px;
  background: var(--mint);
}

.hero-aura-two {
  right: -180px;
  bottom: -220px;
  background: var(--violet);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
  align-items: center;
  gap: clamp(48px, 6vw, 94px);
}

.hero-copy {
  position: relative;
  z-index: 4;
}

.hero-copy h1 {
  max-width: 790px;
  margin: 0;
  font-size: clamp(58px, 6.3vw, 94px);
  font-weight: 570;
  letter-spacing: -0.066em;
  line-height: 0.94;
}

.hero-copy h1 span {
  color: var(--acid);
  font-weight: 720;
}

.hero-lead {
  max-width: 690px;
  margin: 32px 0 0;
  color: rgba(238, 244, 238, 0.68);
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.6;
}

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

.trust-line {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 54px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.trust-line span {
  padding: 0 16px;
  color: rgba(238, 244, 238, 0.5);
  font-size: 11px;
  line-height: 1.5;
}

.trust-line span:first-child {
  padding-left: 0;
}

.trust-line span + span {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-line strong {
  display: block;
  margin-bottom: 4px;
  color: #f1f7f2;
  font-size: 13px;
}

.hero-console {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  position: relative;
  display: grid;
  place-items: center;
  min-height: 610px;
  perspective: 1200px;
}

.intake-card {
  position: relative;
  z-index: 5;
  width: min(100%, 500px);
  padding: 24px;
  color: var(--text);
  background: rgba(246, 247, 239, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 30px;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.42);
  transform: rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transition: transform 160ms ease-out;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.intake-card::before {
  content: "";
  position: absolute;
  inset: 8px;
  z-index: -1;
  border: 1px solid rgba(7, 16, 14, 0.06);
  border-radius: 23px;
  pointer-events: none;
}

.console-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 18px;
  color: #536058;
  border-bottom: 1px solid rgba(7, 16, 14, 0.1);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 9px;
  font-weight: 760;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.console-topbar > span:first-child {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.console-topbar i {
  width: 7px;
  height: 7px;
  background: #55c88f;
  border-radius: 50%;
}

.console-code {
  color: #8a928d;
}

.intake-intro {
  padding: 24px 0 16px;
}

.step-chip {
  display: inline-flex;
  align-items: center;
  min-height: 25px;
  padding: 0 10px;
  color: #334039;
  background: rgba(7, 16, 14, 0.06);
  border-radius: 99px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 9px;
  font-weight: 760;
  letter-spacing: 0.1em;
}

.intake-intro h2 {
  max-width: 360px;
  margin: 13px 0 9px;
  font-size: 34px;
  font-weight: 620;
  letter-spacing: -0.045em;
  line-height: 1;
}

.intake-intro p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.field {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.field > span {
  color: #57625b;
  font-size: 10px;
  font-weight: 720;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 50px;
  padding: 0 15px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(7, 16, 14, 0.12);
  border-radius: 12px;
  outline: 0;
  font-size: 13px;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.field textarea {
  min-height: 112px;
  padding-top: 13px;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #9aa29c;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  background: #fff;
  border-color: rgba(7, 16, 14, 0.42);
  box-shadow: 0 0 0 4px rgba(216, 255, 114, 0.3);
}

.field.is-invalid input,
.field.is-invalid select,
.field.is-invalid textarea {
  border-color: var(--coral);
}

.intake-card .button-full {
  margin-top: 16px;
}

.form-note {
  margin: 12px 4px 0;
  color: #788179;
  font-size: 10px;
  line-height: 1.45;
}

.form-status {
  display: none;
  margin: 12px 0 0;
  padding: 11px 13px;
  color: #203126;
  background: rgba(140, 255, 203, 0.36);
  border-radius: 10px;
  font-size: 11px;
  font-weight: 650;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-error {
  color: #7f2a1b;
  background: rgba(255, 118, 95, 0.18);
}

.console-orbit {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(216, 255, 114, 0.17);
  border-radius: 50%;
  pointer-events: none;
}

.console-orbit::before,
.console-orbit::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 8px;
  height: 8px;
  margin-top: -4px;
  background: var(--acid);
  border-radius: 50%;
  box-shadow: 0 0 20px var(--acid);
}

.console-orbit::before { left: -4px; }
.console-orbit::after { right: -4px; }

.orbit-one {
  width: 590px;
  height: 590px;
  animation: orbit-rotate 28s linear infinite;
}

.orbit-two {
  width: 450px;
  height: 450px;
  border-color: rgba(139, 124, 255, 0.24);
  animation: orbit-rotate 22s linear infinite reverse;
}

.orbit-two::before,
.orbit-two::after {
  background: var(--violet);
  box-shadow: 0 0 20px var(--violet);
}

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

.evidence-node {
  position: absolute;
  z-index: 7;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 13px;
  color: rgba(255, 255, 255, 0.74);
  background: rgba(10, 22, 18, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 99px;
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(12px);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 8px;
  font-weight: 760;
  letter-spacing: 0.11em;
}

.evidence-node i {
  width: 7px;
  height: 7px;
  background: var(--mint);
  border-radius: 50%;
  box-shadow: 0 0 16px var(--mint);
}

.node-a { top: 72px; left: -30px; animation: node-float 5s ease-in-out infinite; }
.node-b { top: 194px; right: -52px; animation: node-float 6s ease-in-out -2s infinite; }
.node-c { right: -8px; bottom: 62px; animation: node-float 5.5s ease-in-out -1s infinite; }

@keyframes node-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

.hero-bottom {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 58px;
  color: rgba(255, 255, 255, 0.38);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.hero-bottom i {
  display: block;
  width: clamp(30px, 5vw, 76px);
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
}

.hero-bottom i::after {
  content: "";
  display: block;
  width: 30%;
  height: 100%;
  background: var(--acid);
  animation: signal-travel 3.2s linear infinite;
}

@keyframes signal-travel {
  from { transform: translateX(-120%); }
  to { transform: translateX(440%); }
}

.deadline-strip {
  color: var(--ink);
  background: var(--acid);
  border-bottom: 1px solid rgba(7, 16, 14, 0.14);
}

.deadline-grid {
  display: grid;
  grid-template-columns: 145px 165px minmax(300px, 1fr) auto;
  align-items: center;
  gap: 30px;
  min-height: 114px;
}

.deadline-label,
.deadline-date {
  display: grid;
  gap: 4px;
}

.deadline-label span,
.deadline-date span {
  color: rgba(7, 16, 14, 0.58);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 9px;
  font-weight: 760;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.deadline-label strong {
  font-size: 12px;
}

.deadline-date time {
  font-size: 23px;
  font-weight: 780;
  letter-spacing: -0.04em;
}

.deadline-grid > p {
  max-width: 620px;
  margin: 0;
  color: rgba(7, 16, 14, 0.7);
  font-size: 12px;
}

.deadline-grid > p small {
  display: block;
  margin-top: 5px;
  color: rgba(7, 16, 14, 0.46);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 8px;
  letter-spacing: 0.04em;
}

.strip-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(7, 16, 14, 0.42);
  font-size: 12px;
  font-weight: 780;
  white-space: nowrap;
}

.strip-link span {
  font-size: 17px;
}

.section {
  position: relative;
  padding: clamp(96px, 11vw, 160px) 0;
}

.section-paper {
  background: var(--paper);
}

.section-heading {
  max-width: 860px;
  margin-bottom: 64px;
}

.section-heading h2,
.faq-heading h2,
.consultant-grid h2,
.contact-copy h2 {
  margin: 0;
  font-size: clamp(44px, 5.2vw, 76px);
  font-weight: 560;
  letter-spacing: -0.058em;
  line-height: 0.98;
}

.section-heading > p:last-child {
  max-width: 590px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.section-heading-split {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.55fr);
  align-items: end;
  gap: 70px;
  max-width: none;
}

.section-heading-split > p {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.evidence-map {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}

.evidence-beam {
  position: absolute;
  top: 75px;
  right: 10%;
  left: 10%;
  z-index: 0;
  height: 1px;
  overflow: hidden;
  background: rgba(7, 16, 14, 0.12);
}

.evidence-beam span {
  display: block;
  width: 22%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #70d59f, transparent);
  animation: evidence-travel 4s linear infinite;
}

@keyframes evidence-travel {
  from { transform: translateX(-100%); }
  to { transform: translateX(560%); }
}

.evidence-step {
  position: relative;
  z-index: 1;
  min-width: 0;
  padding: 0 clamp(18px, 2.2vw, 34px);
}

.evidence-step:first-of-type {
  padding-left: 0;
}

.evidence-step:last-child {
  padding-right: 0;
}

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

.evidence-index {
  position: absolute;
  top: -22px;
  right: 18px;
  color: #9ba49e;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 9px;
}

.evidence-icon {
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  margin-bottom: 36px;
  background: #e5e8de;
  border: 1px solid rgba(7, 16, 14, 0.09);
  border-radius: 50%;
}

.evidence-icon svg {
  width: 34px;
  fill: none;
  stroke: #16211d;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mono-label {
  margin: 0 0 12px;
  color: #6d776f;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 9px;
  font-weight: 760;
  letter-spacing: 0.11em;
}

.evidence-step h3 {
  margin: 0 0 12px;
  font-size: 25px;
  font-weight: 660;
  letter-spacing: -0.04em;
}

.evidence-step > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.section-ink,
.process-section {
  color: #f2f5f1;
  background: var(--ink);
  overflow: hidden;
}

.gradient-mesh {
  position: absolute;
  top: -380px;
  right: -260px;
  width: 760px;
  height: 760px;
  background: conic-gradient(from 20deg, rgba(139, 124, 255, 0.23), transparent 30%, rgba(140, 255, 203, 0.16), transparent 68%);
  border-radius: 50%;
  filter: blur(30px);
  animation: orbit-rotate 38s linear infinite;
}

.section-heading-light {
  position: relative;
  z-index: 2;
}

.section-heading-light > p:last-child {
  color: rgba(239, 245, 240, 0.54);
}

.route-selector {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  min-height: 500px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 40px 110px rgba(0, 0, 0, 0.28);
}

.route-tabs {
  display: grid;
  grid-template-rows: repeat(4, 1fr);
  background: rgba(255, 255, 255, 0.025);
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.route-tab {
  position: relative;
  display: grid;
  grid-template-columns: 38px 1fr;
  grid-template-rows: auto auto;
  align-content: center;
  gap: 3px 10px;
  padding: 22px 28px;
  color: rgba(255, 255, 255, 0.48);
  text-align: left;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: color 220ms ease, background 220ms ease;
}

.route-tab:last-child {
  border-bottom: 0;
}

.route-tab::before {
  content: "";
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: 0;
  width: 3px;
  background: var(--acid);
  border-radius: 0 3px 3px 0;
  transform: scaleY(0);
  transition: transform 260ms var(--ease);
}

.route-tab > span {
  grid-row: 1 / 3;
  color: rgba(255, 255, 255, 0.28);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 10px;
  transition: color 220ms ease;
}

.route-tab strong {
  font-size: 15px;
  font-weight: 660;
}

.route-tab small {
  color: inherit;
  font-size: 11px;
}

.route-tab:hover,
.route-tab.is-active {
  color: #fff;
  background: rgba(255, 255, 255, 0.045);
}

.route-tab.is-active::before {
  transform: scaleY(1);
}

.route-tab.is-active > span {
  color: var(--acid);
}

.route-panel {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: clamp(36px, 4vw, 62px);
  background:
    radial-gradient(circle at 90% 15%, rgba(139, 124, 255, 0.14), transparent 34%),
    rgba(255, 255, 255, 0.018);
}

.route-panel.is-changing > * {
  animation: panel-swap 360ms var(--ease);
}

@keyframes panel-swap {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.route-panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.route-panel-top .mono-label {
  margin: 0;
  color: rgba(255, 255, 255, 0.44);
}

.route-status {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  color: var(--acid);
  background: rgba(216, 255, 114, 0.08);
  border: 1px solid rgba(216, 255, 114, 0.2);
  border-radius: 99px;
  font-size: 9px;
  font-weight: 760;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.route-panel-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
  gap: 58px;
  margin-top: 64px;
}

.route-panel h3 {
  max-width: 610px;
  margin: 0;
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 560;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.route-panel-grid > div:first-child > p {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 15px;
  line-height: 1.65;
}

.route-requirements {
  padding: 24px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
}

.route-requirements .mono-label {
  color: rgba(255, 255, 255, 0.36);
}

.route-requirements ul {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.route-requirements li {
  position: relative;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
}

.route-requirements li::before {
  content: "";
  position: absolute;
  top: 0.66em;
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--mint);
  border-radius: 50%;
}

.route-panel-footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-top: auto;
  padding-top: 42px;
}

.route-panel-footer > p {
  display: grid;
  gap: 5px;
  margin: 0;
}

.route-panel-footer > p span {
  color: rgba(255, 255, 255, 0.36);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 8px;
  font-weight: 720;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.route-panel-footer > p strong {
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  font-weight: 600;
}

.route-note {
  position: relative;
  z-index: 2;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.34);
  font-size: 11px;
  text-align: right;
}

.statement-section {
  padding: clamp(100px, 12vw, 180px) 0;
  background: #e8eadf;
}

.statement-grid {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) 280px;
  align-items: start;
  gap: clamp(32px, 5vw, 72px);
}

.statement-grid blockquote {
  margin: 0;
  font-size: clamp(52px, 7vw, 102px);
  font-weight: 500;
  letter-spacing: -0.068em;
  line-height: 0.93;
}

.statement-grid blockquote em {
  color: #5d54d4;
  font-style: normal;
}

.statement-aside {
  padding-top: 210px;
}

.statement-line {
  display: block;
  width: 78px;
  height: 3px;
  margin-bottom: 24px;
  background: var(--violet);
}

.statement-aside p {
  margin: 0;
  color: #5e6962;
  font-size: 13px;
  line-height: 1.7;
}

.deliverable-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.78fr 0.78fr;
  grid-template-rows: 370px 280px;
  gap: 18px;
}

.deliverable-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-width: 0;
  padding: 28px;
  border-radius: 26px;
  overflow: hidden;
}

.deliverable-card h3 {
  margin: 0 0 10px;
  font-size: 26px;
  font-weight: 660;
  letter-spacing: -0.045em;
}

.deliverable-card > p:last-child,
.deliverable-report > div > p:last-child {
  max-width: 420px;
  margin: 0;
  color: rgba(7, 16, 14, 0.64);
  font-size: 13px;
  line-height: 1.6;
}

.deliverable-main {
  grid-row: 1 / 3;
  color: #fff;
  background: var(--ink);
}

.deliverable-main::after {
  content: "";
  position: absolute;
  right: -150px;
  bottom: -190px;
  width: 430px;
  height: 430px;
  background: rgba(140, 255, 203, 0.12);
  border-radius: 50%;
  filter: blur(20px);
}

.deliverable-main > * {
  position: relative;
  z-index: 1;
}

.deliverable-main .mono-label {
  color: rgba(255, 255, 255, 0.42);
}

.deliverable-main > p:last-child {
  color: rgba(255, 255, 255, 0.56);
}

.deliverable-top {
  position: absolute;
  top: 28px;
  right: 28px;
  left: 28px;
  display: flex;
  justify-content: space-between;
}

.card-arrow {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: var(--ink);
  background: var(--acid);
  border-radius: 50%;
}

.matrix-visual {
  display: grid;
  gap: 12px;
  margin: 60px 0 auto;
  padding: 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 18px;
}

.matrix-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.45);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 8px;
  letter-spacing: 0.08em;
}

.matrix-row i {
  position: relative;
  height: 1px;
  background: rgba(255, 255, 255, 0.13);
}

.matrix-row i::after {
  content: "";
  position: absolute;
  top: -2px;
  right: 0;
  width: 5px;
  height: 5px;
  background: var(--mint);
  border-radius: 50%;
}

.matrix-row b {
  font-weight: 600;
}

.matrix-row-active {
  color: var(--acid);
}

.matrix-row-active i {
  background: rgba(216, 255, 114, 0.4);
}

.matrix-row-active i::after {
  background: var(--acid);
  box-shadow: 0 0 12px var(--acid);
}

.deliverable-acid {
  background: var(--acid);
}

.deliverable-violet {
  color: #fff;
  background: var(--violet);
}

.deliverable-violet .mono-label,
.deliverable-violet > p:last-child {
  color: rgba(255, 255, 255, 0.68);
}

.deliverable-report {
  grid-column: 2 / 4;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  background: #dfe2d6;
}

.pulse-visual {
  position: absolute;
  top: 34px;
  right: 28px;
  display: grid;
  place-items: center;
  width: 120px;
  height: 120px;
}

.pulse-visual span {
  position: absolute;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(7, 16, 14, 0.38);
  border-radius: 50%;
  animation: pulse-ring 2.4s var(--ease) infinite;
}

.pulse-visual span:nth-child(2) { animation-delay: 0.6s; }
.pulse-visual span:nth-child(3) { animation-delay: 1.2s; }

@keyframes pulse-ring {
  from { opacity: 0.9; transform: scale(0.4); }
  to { opacity: 0; transform: scale(3.4); }
}

.stack-visual {
  position: absolute;
  top: 35px;
  right: 30px;
  width: 120px;
  height: 100px;
}

.stack-visual i {
  position: absolute;
  right: 0;
  width: 88px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 11px;
  transform: rotate(-7deg);
}

.stack-visual i:nth-child(2) { top: 15px; right: 13px; opacity: 0.66; }
.stack-visual i:nth-child(3) { top: 30px; right: 26px; opacity: 0.36; }

.report-sheet {
  position: relative;
  flex: 0 0 190px;
  height: 220px;
  padding: 35px 24px;
  background: #f8f8f2;
  border: 1px solid rgba(7, 16, 14, 0.1);
  border-radius: 12px 12px 0 0;
  box-shadow: 0 18px 34px rgba(7, 16, 14, 0.1);
  transform: translateY(56px) rotate(4deg);
}

.report-sheet span {
  display: block;
  width: 100%;
  height: 5px;
  margin-bottom: 13px;
  background: #dfe3da;
  border-radius: 99px;
}

.report-sheet span:nth-child(2) { width: 78%; }
.report-sheet span:nth-child(3) { width: 92%; }
.report-sheet span:nth-child(4) { width: 55%; }

.report-sheet i {
  position: absolute;
  right: 22px;
  bottom: 24px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--ink);
  background: var(--acid);
  border-radius: 50%;
  font-style: normal;
  font-weight: 800;
}

.process-section {
  background:
    radial-gradient(circle at 15% 20%, rgba(139, 124, 255, 0.12), transparent 30%),
    #0a1210;
}

.process-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding-top: 54px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.process-progress {
  position: absolute;
  top: -1px;
  right: 0;
  left: 0;
  height: 2px;
  overflow: hidden;
}

.process-progress span {
  display: block;
  width: 22%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--acid), transparent);
  animation: process-travel 5s linear infinite;
}

@keyframes process-travel {
  from { transform: translateX(-100%); }
  to { transform: translateX(560%); }
}

.process-card {
  position: relative;
  min-height: 280px;
  padding: 0 28px;
}

.process-card:first-of-type {
  padding-left: 0;
}

.process-card + .process-card {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.process-number {
  display: block;
  margin-bottom: 72px;
  color: var(--acid);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 12px;
}

.process-card .mono-label {
  color: rgba(255, 255, 255, 0.36);
}

.process-card h3 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 25px;
  font-weight: 620;
  letter-spacing: -0.04em;
}

.process-card p:last-child {
  max-width: 230px;
  margin: 0;
  color: rgba(255, 255, 255, 0.46);
  font-size: 13px;
  line-height: 1.65;
}

.consultant-band {
  padding: 82px 0;
  background: var(--acid);
}

.consultant-grid {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(36px, 5vw, 76px);
}

.consultant-grid .eyebrow {
  color: rgba(7, 16, 14, 0.52);
}

.consultant-grid h2 {
  max-width: 780px;
  font-size: clamp(40px, 4.5vw, 67px);
}

.consultant-grid > div:nth-child(2) > p:last-child {
  max-width: 720px;
  margin: 22px 0 0;
  color: rgba(7, 16, 14, 0.66);
  font-size: 14px;
}

.consultant-symbol {
  position: relative;
  width: 160px;
  height: 160px;
  border: 1px solid rgba(7, 16, 14, 0.22);
  border-radius: 50%;
}

.consultant-symbol span {
  position: absolute;
  width: 15px;
  height: 15px;
  background: var(--ink);
  border: 4px solid var(--acid);
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--ink);
}

.consultant-symbol span:nth-child(1) { top: 16px; left: 72px; }
.consultant-symbol span:nth-child(2) { top: 70px; right: 14px; }
.consultant-symbol span:nth-child(3) { bottom: 15px; left: 72px; }
.consultant-symbol span:nth-child(4) { top: 70px; left: 14px; }

.consultant-symbol i {
  position: absolute;
  inset: 46px;
  background: var(--ink);
  border-radius: 18px;
  transform: rotate(45deg);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  align-items: start;
  gap: clamp(60px, 9vw, 130px);
}

.faq-heading {
  position: sticky;
  top: 120px;
}

.faq-heading p:not(.eyebrow) {
  max-width: 420px;
  margin: 28px 0;
  color: var(--muted);
}

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

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

.faq-list summary {
  display: grid;
  grid-template-columns: 42px 1fr 24px;
  align-items: center;
  gap: 14px;
  min-height: 98px;
  cursor: pointer;
  list-style: none;
  font-size: 19px;
  font-weight: 640;
  letter-spacing: -0.025em;
}

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

.faq-list summary > span {
  color: #8b958e;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 9px;
  letter-spacing: 0.1em;
}

.faq-list summary i {
  position: relative;
  width: 24px;
  height: 24px;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.faq-list summary i::before,
.faq-list summary i::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 1px;
  background: var(--ink);
  transform: translate(-50%, -50%);
  transition: transform 200ms ease;
}

.faq-list summary i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-list details[open] summary i::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-list details > p {
  max-width: 650px;
  margin: -8px 40px 32px 56px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.contact-section {
  position: relative;
  padding: clamp(100px, 11vw, 160px) 0;
  color: #f4f5f0;
  background: #1b1741;
  overflow: hidden;
}

.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to right, black, transparent 80%);
}

.contact-glow {
  position: absolute;
  top: -300px;
  left: -250px;
  width: 750px;
  height: 750px;
  background: rgba(139, 124, 255, 0.36);
  border-radius: 50%;
  filter: blur(110px);
}

.contact-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(460px, 0.74fr);
  align-items: start;
  gap: clamp(60px, 9vw, 130px);
}

.contact-copy {
  padding-top: 30px;
}

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

.contact-copy > p:not(.eyebrow):not(.data-note) {
  max-width: 620px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 17px;
}

.contact-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 54px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  overflow: hidden;
}

.contact-options a {
  display: grid;
  gap: 8px;
  min-height: 96px;
  padding: 22px;
  background: rgba(17, 13, 46, 0.8);
  text-decoration: none;
  transition: background 200ms ease;
}

.contact-options a:hover {
  background: rgba(255, 255, 255, 0.08);
}

.contact-options a:first-child {
  grid-column: 1 / 3;
}

.contact-options span {
  color: rgba(255, 255, 255, 0.4);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-options strong {
  font-size: 15px;
  font-weight: 620;
  overflow-wrap: anywhere;
}

.data-note {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.36);
  font-size: 10px;
}

.contact-form {
  padding: clamp(26px, 3vw, 40px);
  color: var(--text);
  background: rgba(246, 247, 239, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.contact-form > .field,
.contact-form > .field-row {
  margin-top: 16px;
}

.form-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.form-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
}

.contact-form .button-full {
  margin-top: 20px;
}

.site-footer {
  color: rgba(255, 255, 255, 0.78);
  background: var(--ink);
}

.footer-top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 58px;
  min-height: 150px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-top > p {
  max-width: 480px;
  margin: 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 12px;
}

.footer-links {
  display: flex;
  gap: 22px;
}

.footer-links a,
.footer-bottom a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  text-decoration: none;
}

.footer-links a:hover,
.footer-bottom a:hover {
  color: #fff;
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 30px;
  min-height: 76px;
  color: rgba(255, 255, 255, 0.3);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 8px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.mobile-cta {
  display: none;
}

@media (max-width: 1180px) {
  .container {
    width: min(var(--container), calc(100% - 44px));
  }

  .main-nav {
    gap: 20px;
  }

  .nav-phone {
    display: none;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(390px, 0.78fr);
    gap: 46px;
  }

  .hero-copy h1 {
    font-size: clamp(54px, 6.4vw, 76px);
  }

  .node-a { left: -6px; }
  .node-b { right: -10px; }

  .deadline-grid {
    grid-template-columns: 125px 145px 1fr auto;
    gap: 20px;
  }

  .statement-grid {
    grid-template-columns: 110px minmax(0, 1fr) 230px;
  }

  .statement-aside {
    padding-top: 150px;
  }

  .consultant-grid {
    grid-template-columns: 140px minmax(0, 1fr) auto;
  }

  .consultant-symbol {
    width: 130px;
    height: 130px;
  }

  .consultant-symbol span:nth-child(1) { top: 11px; left: 57px; }
  .consultant-symbol span:nth-child(2) { top: 56px; right: 9px; }
  .consultant-symbol span:nth-child(3) { bottom: 10px; left: 57px; }
  .consultant-symbol span:nth-child(4) { top: 56px; left: 9px; }
  .consultant-symbol i { inset: 39px; }
}

@media (max-width: 980px) {
  html {
    scroll-padding-top: 76px;
  }

  .nav-shell {
    grid-template-columns: auto 1fr auto;
    min-height: 72px;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
    grid-column: 3;
  }

  .menu-toggle[aria-expanded="true"] > span:first-child {
    transform: translateY(3px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(2) {
    transform: translateY(-3px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    top: 72px;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    align-content: start;
    gap: 0;
    padding: 42px 22px;
    background: rgba(7, 16, 14, 0.98);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 220ms ease, transform 220ms ease;
  }

  body.menu-open .site-header {
    background: #07100e;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

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

  .main-nav a {
    padding: 20px 6px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 24px;
  }

  .nav-actions {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 132px;
  }

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

  .hero-copy {
    max-width: 820px;
  }

  .hero-copy h1 {
    font-size: clamp(60px, 10vw, 92px);
  }

  .hero-console {
    min-height: 570px;
  }

  .intake-card {
    width: min(100%, 610px);
  }

  .node-a { left: 5%; }
  .node-b { right: 4%; }
  .node-c { right: 8%; }

  .hero-bottom {
    margin-top: 38px;
  }

  .deadline-grid {
    grid-template-columns: 130px 160px 1fr;
    padding-top: 22px;
    padding-bottom: 22px;
  }

  .deadline-grid .strip-link {
    grid-column: 3;
    justify-self: start;
  }

  .section-heading-split {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .evidence-map {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px 0;
  }

  .evidence-step:nth-of-type(3) {
    padding-left: 0;
    border-left: 0;
  }

  .evidence-beam {
    display: none;
  }

  .route-selector {
    grid-template-columns: 1fr;
  }

  .route-tabs {
    grid-template-columns: repeat(4, minmax(180px, 1fr));
    grid-template-rows: auto;
    overflow-x: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .route-tab {
    min-width: 190px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 0;
  }

  .route-tab::before {
    top: auto;
    right: 16px;
    bottom: 0;
    left: 16px;
    width: auto;
    height: 3px;
    transform: scaleX(0);
  }

  .route-tab.is-active::before {
    transform: scaleX(1);
  }

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

  .statement-grid blockquote {
    max-width: 850px;
  }

  .statement-aside {
    display: grid;
    grid-template-columns: 80px minmax(0, 430px);
    align-items: start;
    gap: 24px;
    padding-top: 16px;
  }

  .statement-line {
    margin-top: 9px;
  }

  .deliverable-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: 430px 340px 280px;
  }

  .deliverable-main {
    grid-column: 1 / 3;
    grid-row: auto;
  }

  .deliverable-report {
    grid-column: 1 / 3;
  }

  .process-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 48px 0;
  }

  .process-card:nth-of-type(3) {
    padding-left: 0;
    border-left: 0;
  }

  .consultant-grid {
    grid-template-columns: 130px 1fr;
  }

  .consultant-grid .button {
    grid-column: 2;
    justify-self: start;
  }

  .faq-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .faq-heading {
    position: static;
    max-width: 680px;
  }

  .contact-grid {
    gap: 70px;
  }

  .contact-copy {
    max-width: 760px;
  }

  .contact-form {
    max-width: 680px;
  }

  .footer-top {
    grid-template-columns: 1fr auto;
    gap: 20px 40px;
    padding-top: 34px;
    padding-bottom: 34px;
  }

  .footer-top > p {
    grid-row: 2;
  }
}

@media (max-width: 680px) {
  .container {
    width: calc(100% - 32px);
  }

  .brand-label {
    display: none;
  }

  .brand {
    grid-template-rows: 1fr;
  }

  .brand img {
    grid-row: auto;
  }

  .brand-name {
    align-self: center;
  }

  .hero {
    padding: 116px 0 34px;
  }

  .hero-copy h1 {
    font-size: clamp(47px, 14vw, 67px);
    line-height: 0.97;
  }

  .hero-lead {
    margin-top: 25px;
    font-size: 16px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
  }

  .button-large {
    width: 100%;
  }

  .trust-line {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 38px;
  }

  .trust-line span {
    padding: 0;
  }

  .trust-line span + span {
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    border-left: 0;
  }

  .hero-console {
    min-height: auto;
  }

  .intake-card {
    padding: 19px;
    border-radius: 23px;
  }

  .intake-card::before {
    border-radius: 17px;
  }

  .intake-intro h2 {
    font-size: 30px;
  }

  .field-row {
    grid-template-columns: 1fr;
  }

  .console-orbit,
  .evidence-node {
    display: none;
  }

  .hero-bottom {
    justify-content: flex-start;
    gap: 9px;
    overflow: hidden;
    font-size: 7px;
    white-space: nowrap;
  }

  .hero-bottom i {
    width: 16px;
  }

  .deadline-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .deadline-grid > p,
  .deadline-grid .strip-link {
    grid-column: 1 / 3;
  }

  .deadline-grid > p {
    font-size: 11px;
  }

  .section {
    padding: 88px 0;
  }

  .section-heading {
    margin-bottom: 44px;
  }

  .section-heading h2,
  .faq-heading h2,
  .contact-copy h2 {
    font-size: clamp(40px, 12vw, 54px);
  }

  .section-heading > p:last-child,
  .section-heading-split > p {
    font-size: 14px;
  }

  .evidence-map {
    grid-template-columns: 1fr;
    gap: 0;
    padding-top: 0;
    border-top: 0;
  }

  .evidence-step,
  .evidence-step:first-of-type,
  .evidence-step:nth-of-type(3) {
    display: grid;
    grid-template-columns: 74px 1fr;
    padding: 26px 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .evidence-icon {
    grid-row: 1 / 4;
    width: 58px;
    height: 58px;
    margin: 0;
  }

  .evidence-icon svg {
    width: 27px;
  }

  .evidence-index {
    top: 28px;
    right: 0;
  }

  .evidence-step .mono-label {
    margin-bottom: 6px;
  }

  .evidence-step h3 {
    margin-bottom: 5px;
  }

  .route-selector {
    border-radius: 22px;
  }

  .route-tabs {
    grid-template-columns: repeat(4, 170px);
  }

  .route-tab {
    min-width: 170px;
    padding: 20px 18px;
  }

  .route-panel {
    padding: 28px 20px;
  }

  .route-panel-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .route-panel-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 38px;
  }

  .route-panel h3 {
    font-size: 40px;
  }

  .route-panel-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .route-panel-footer .button {
    width: 100%;
  }

  .route-note {
    text-align: left;
  }

  .statement-section {
    padding: 90px 0;
  }

  .statement-grid blockquote {
    font-size: clamp(50px, 15vw, 70px);
  }

  .statement-aside {
    grid-template-columns: 50px 1fr;
    gap: 16px;
  }

  .statement-line {
    width: 50px;
  }

  .deliverable-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .deliverable-card,
  .deliverable-main,
  .deliverable-report {
    grid-column: auto;
    grid-row: auto;
    min-height: 340px;
  }

  .deliverable-main {
    min-height: 470px;
  }

  .deliverable-report {
    min-height: 380px;
  }

  .report-sheet {
    position: absolute;
    right: 20px;
    bottom: -35px;
    width: 155px;
    height: 185px;
    opacity: 0.5;
  }

  .process-track {
    grid-template-columns: 1fr;
    gap: 0;
    padding-top: 0;
    border-top: 0;
  }

  .process-progress {
    display: none;
  }

  .process-card,
  .process-card:first-of-type,
  .process-card:nth-of-type(3) {
    min-height: auto;
    padding: 30px 0 34px 62px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-left: 0;
  }

  .process-number {
    position: absolute;
    top: 32px;
    left: 0;
    margin: 0;
  }

  .consultant-band {
    padding: 76px 0;
  }

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

  .consultant-symbol {
    width: 100px;
    height: 100px;
  }

  .consultant-symbol span { width: 12px; height: 12px; border-width: 3px; }
  .consultant-symbol span:nth-child(1) { top: 7px; left: 44px; }
  .consultant-symbol span:nth-child(2) { top: 43px; right: 6px; }
  .consultant-symbol span:nth-child(3) { bottom: 7px; left: 44px; }
  .consultant-symbol span:nth-child(4) { top: 43px; left: 6px; }
  .consultant-symbol i { inset: 31px; border-radius: 12px; }

  .consultant-grid h2 {
    font-size: 43px;
  }

  .consultant-grid .button {
    grid-column: auto;
    width: 100%;
  }

  .faq-grid {
    gap: 52px;
  }

  .faq-list summary {
    grid-template-columns: 30px 1fr 24px;
    min-height: 86px;
    font-size: 16px;
  }

  .faq-list details > p {
    margin: -2px 10px 28px 44px;
    font-size: 13px;
  }

  .contact-options {
    grid-template-columns: 1fr;
  }

  .contact-options a:first-child {
    grid-column: auto;
  }

  .contact-form {
    padding: 22px 18px;
    border-radius: 22px;
  }

  .form-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-top > p {
    grid-row: auto;
  }

  .footer-links {
    flex-wrap: wrap;
  }

  .footer-bottom {
    grid-template-columns: 1fr auto;
    padding: 22px 0 92px;
  }

  .footer-bottom span:nth-child(2) {
    display: none;
  }

  .mobile-cta {
    position: fixed;
    right: 12px;
    bottom: 12px;
    left: 12px;
    z-index: 90;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 58px;
    padding: 0 22px;
    color: var(--ink);
    background: var(--acid);
    border: 1px solid rgba(7, 16, 14, 0.16);
    border-radius: 18px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
    font-size: 13px;
    font-weight: 790;
    text-decoration: none;
    transform: translateY(120%);
    transition: transform 320ms var(--ease);
  }

  .mobile-cta.is-visible {
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

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