:root {
  --ink: #0d0e0b;
  --ink-soft: #171915;
  --paper: #f3f0e7;
  --white: #fffef9;
  --soft: #e8e4d9;
  --signal: #c9ff3d;
  --signal-dark: #9fd215;
  --blue: #5d74ff;
  --muted: #6e7069;
  --line: rgba(13, 14, 11, .16);
  --line-dark: rgba(255, 255, 255, .16);
  --max: 1320px;
  --gutter: clamp(20px, 4vw, 56px);
  --radius: 2px;
  --ease: cubic-bezier(.2, .75, .25, 1);
}

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

html {
  scroll-behavior: smooth;
  background: var(--ink);
  scrollbar-gutter: stable;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body.nav-open { overflow: hidden; }
main { min-height: 50vh; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { color: inherit; font: inherit; }
button { border: 0; }
img { display: block; max-width: 100%; }
::selection { background: var(--signal); color: var(--ink); }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  text-wrap: balance;
  font-weight: 800;
  letter-spacing: -.055em;
  overflow-wrap: break-word;
  hyphens: auto;
}
p { text-wrap: pretty; }

.container {
  width: min(calc(100% - (var(--gutter) * 2)), var(--max));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 12px 16px;
  color: var(--ink);
  background: var(--signal);
  transform: translateY(-160%);
  transition: transform .2s ease;
}

.skip-link:focus { transform: none; }

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 4px;
}

@view-transition { navigation: auto; }
::view-transition-old(root) { animation: page-out .18s ease both; }
::view-transition-new(root) { animation: page-in .34s var(--ease) both; }
@keyframes page-out { to { opacity: 0; transform: translateY(-5px); } }
@keyframes page-in { from { opacity: 0; transform: translateY(8px); } }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  color: var(--ink);
  background: rgba(243, 240, 231, .92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.site-header.scrolled { box-shadow: 0 10px 40px rgba(13, 14, 11, .06); }

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

.logo {
  display: inline-flex;
  align-items: baseline;
  font-size: 25px;
  font-weight: 900;
  letter-spacing: -.075em;
  line-height: 1;
}

.logo span { color: var(--blue); }
.logo-light { color: var(--white); }
.logo-light span { color: var(--signal); }

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 2vw, 30px);
}

.nav-links a {
  position: relative;
  padding: 28px 0 26px;
  color: rgba(13, 14, 11, .7);
  font-size: 13px;
  font-weight: 700;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 20px;
  height: 2px;
  background: var(--blue);
  transition: right .3s var(--ease);
}

.nav-links a:hover,
.nav-links a[aria-current="page"] { color: var(--ink); }
.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after { right: 0; }
.mobile-nav-only { display: none; }

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 12px 8px;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 6px 0;
  background: currentColor;
  transition: transform .3s var(--ease), opacity .3s ease;
}

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

.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 0 22px;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -.01em;
  transition: transform .25s var(--ease), color .25s ease, background .25s ease, border-color .25s ease;
}

.btn span { transition: transform .25s var(--ease); }
.btn:hover { transform: translateY(-3px); }
.btn:hover span { transform: translate(3px, -3px); }
.btn-signal { color: var(--ink); background: var(--signal); }
.btn-signal:hover { background: #d7ff70; }
.btn-ink { color: var(--white); background: var(--ink); }
.btn-ink:hover { background: #25271f; }
.btn-outline { color: var(--ink); border-color: var(--ink); background: transparent; }
.btn-outline:hover { color: var(--white); background: var(--ink); }
.btn-outline-light { color: var(--white); border-color: rgba(255,255,255,.45); background: transparent; }
.btn-outline-light:hover { color: var(--ink); background: var(--white); border-color: var(--white); }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  line-height: 1.25;
  text-transform: uppercase;
}

.eyebrow span {
  display: block;
  width: 24px;
  height: 8px;
  background: var(--signal);
}

.hero,
.page-hero,
.article-hero,
.not-found {
  color: var(--white);
  background: var(--ink);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 9vw, 132px) 0 80px;
}

.hero::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -10%;
  width: 52vw;
  aspect-ratio: 1;
  border: 1px solid rgba(201, 255, 61, .16);
  border-radius: 50%;
  box-shadow: 0 0 120px rgba(93, 116, 255, .08) inset;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(430px, .72fr);
  align-items: center;
  gap: clamp(48px, 7vw, 110px);
}

.hero .eyebrow,
.page-hero .eyebrow,
.article-hero .eyebrow,
.not-found .eyebrow { color: rgba(255,255,255,.65); }

.hero h1 {
  max-width: 950px;
  margin: 0;
  font-size: clamp(64px, 7vw, 112px);
  line-height: .82;
  letter-spacing: -.078em;
  text-transform: uppercase;
}

.hero h1 em {
  color: var(--signal);
  font-style: normal;
}

.hero h1 span,
.hero h1 em { display: inline-block; }

.hero-copy-wrap > p {
  max-width: 690px;
  margin: 36px 0 0;
  color: rgba(255,255,255,.68);
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.58;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 38px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 52px;
  padding-top: 26px;
  border-top: 1px solid var(--line-dark);
  color: rgba(255,255,255,.5);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero-proof b {
  margin-right: 5px;
  color: var(--white);
  font-size: 16px;
}

.system-console {
  position: relative;
  min-height: 570px;
  padding: 22px;
  color: var(--ink);
  background: var(--white);
  box-shadow: 30px 30px 0 rgba(93, 116, 255, .18);
}

.system-console::before {
  content: "";
  position: absolute;
  inset: -18px 18px 18px -18px;
  z-index: -1;
  border: 1px solid rgba(201, 255, 61, .55);
}

.console-bar,
.console-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 3px 0 20px;
  border-bottom: 1px solid var(--line);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.console-bar i {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #31700a;
  font-style: normal;
}

.console-bar i::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--signal-dark);
  box-shadow: 0 0 0 5px rgba(159, 210, 21, .15);
  animation: pulse 2s ease infinite;
}

@keyframes pulse { 50% { box-shadow: 0 0 0 10px rgba(159, 210, 21, 0); } }

.console-lead {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin: 22px 0;
  padding: 24px;
  color: var(--white);
  background: var(--ink);
}

.console-lead small,
.console-lead span { display: block; color: rgba(255,255,255,.52); font-size: 10px; text-transform: uppercase; letter-spacing: .08em; }
.console-lead strong { display: block; margin: 10px 0 4px; font-size: 24px; letter-spacing: -.04em; }
.console-lead > b { padding: 8px 10px; color: var(--ink); background: var(--signal); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }

.console-route {
  display: grid;
  gap: 8px;
}

.console-route > div {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
  align-items: center;
  padding: 10px 16px;
  border: 1px solid var(--line);
  transition: background .25s ease, transform .25s var(--ease);
}

.console-route > div:hover { background: var(--paper); transform: translateX(4px); }
.console-route span { color: var(--blue); font-size: 11px; font-weight: 900; }
.console-route p { margin: 0; color: var(--muted); font-size: 11px; }
.console-route p b { display: block; color: var(--ink); font-size: 14px; }

.console-bottom {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  padding: 18px 0 0;
  border-top: 1px solid var(--line);
  border-bottom: 0;
}

.console-bottom strong { margin-left: auto; }
.console-bottom i {
  width: 44px;
  height: 24px;
  border-radius: 30px;
  background: var(--signal);
}
.console-bottom i::after {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  margin: 3px 3px 3px auto;
  border-radius: 50%;
  background: var(--ink);
}

.market-rail {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--signal);
}

.market-rail .container {
  display: grid;
  grid-template-columns: 1.3fr repeat(4, 1fr);
}

.market-rail span,
.market-rail a {
  padding: 16px 18px;
  border-right: 1px solid rgba(13,14,11,.2);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-align: center;
  text-transform: uppercase;
}

.market-rail span:first-child { padding-left: 0; text-align: left; }
.market-rail a:hover { background: rgba(255,255,255,.28); }

.section { padding: clamp(88px, 10vw, 150px) 0; }
.section-paper { background: var(--paper); }
.section-white { background: var(--white); }
.section-soft { background: var(--soft); }
.section-ink { color: var(--white); background: var(--ink); }

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, .55fr);
  gap: clamp(50px, 10vw, 150px);
  align-items: end;
  margin-bottom: clamp(52px, 7vw, 92px);
}

.hero-grid > *,
.section-head > *,
.split-feature > *,
.process-grid > *,
.faq-grid > *,
.cta-grid > *,
.solution-group-head > *,
.audit-grid > *,
.footer-lead > *,
.article-grid > *,
.legal-grid > *,
.proof-banner > *,
.case-detail-head > * { min-width: 0; }

.section-head h2,
.split-feature h2,
.process-sticky h2,
.faq-grid > div > h2,
.solution-group-head h2 {
  max-width: 930px;
  margin: 0;
  font-size: clamp(48px, 6.2vw, 100px);
  line-height: .91;
  letter-spacing: -.07em;
  text-transform: uppercase;
}

.section-head > p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.68;
}

.section-ink .section-head > p { color: rgba(255,255,255,.58); }
.section-ink .eyebrow { color: rgba(255,255,255,.58); }

.leak-list { border-top: 1px solid var(--line); }
.leak-row {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.leak-row > span { color: var(--blue); font-size: 12px; font-weight: 900; }
.leak-row h3 { margin: 0; font-size: clamp(24px, 3vw, 46px); line-height: 1; }
.leak-row > b { color: var(--muted); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }

.system-map {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.system-map article {
  position: relative;
  min-height: 360px;
  padding: 30px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  overflow: hidden;
}

.system-map article::after {
  content: "↘";
  position: absolute;
  right: 24px;
  bottom: 22px;
  color: var(--signal);
  font-size: 30px;
  transition: transform .3s var(--ease);
}

.system-map article:hover::after { transform: translate(6px, 6px); }
.system-map article > span { color: var(--signal); font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.system-map h3 { max-width: 250px; margin: 108px 0 18px; font-size: 28px; line-height: 1; }
.system-map p { max-width: 260px; margin: 0; color: rgba(255,255,255,.52); font-size: 14px; line-height: 1.6; }

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

.industry-card {
  position: relative;
  min-height: 570px;
  padding: 28px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s ease;
}

.industry-card:hover {
  z-index: 2;
  transform: translateY(-8px);
  box-shadow: 0 28px 80px rgba(13,14,11,.12);
}

.industry-2 { background: #e2e6ff; }
.industry-3 { background: #dff3ed; }

.industry-top,
.case-meta,
.post-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.industry-top span:first-child { color: var(--blue); }
.mini-system {
  position: relative;
  height: 205px;
  margin: 42px 0 50px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.46);
}

.mini-system::before,
.mini-system::after {
  content: "";
  position: absolute;
  top: 22px;
  bottom: 22px;
  width: 1px;
  background: var(--line);
}

.mini-system::before { left: 33%; }
.mini-system::after { right: 33%; }

.mini-system span {
  position: absolute;
  top: 48%;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--ink);
  transform: translateY(-50%);
}

.mini-system span:nth-child(1) { left: calc(16.5% - 23px); }
.mini-system span:nth-child(2) { left: calc(50% - 23px); background: var(--blue); }
.mini-system span:nth-child(3) { right: calc(16.5% - 23px); background: var(--signal-dark); }
.mini-system b {
  position: absolute;
  top: calc(48% - 1px);
  right: 18%;
  left: 18%;
  height: 2px;
  background: var(--ink);
}

.industry-card h3 {
  margin: 0 0 18px;
  font-size: clamp(32px, 3vw, 48px);
  line-height: .96;
}
.industry-card p { color: var(--muted); line-height: 1.62; }
.industry-card > a {
  position: absolute;
  right: 28px;
  bottom: 28px;
  left: 28px;
  display: flex;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  font-weight: 800;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.service-card {
  min-height: 290px;
  padding: 28px;
  background: var(--soft);
  transition: background .25s ease;
}

.service-card:hover { background: var(--white); }
.service-card-wide { grid-column: span 2; background: var(--signal); }
.service-card > span { color: var(--blue); font-size: 11px; font-weight: 900; }
.service-card h3 { margin: 92px 0 14px; font-size: 29px; line-height: 1; }
.service-card p { max-width: 330px; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.55; }
.service-card-wide p { color: rgba(13,14,11,.68); }
.section-action { display: flex; justify-content: flex-end; margin-top: 30px; }

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

.case-card { min-width: 0; }
.case-card .case-meta { color: rgba(255,255,255,.5); }
.project-visual {
  position: relative;
  height: 360px;
  margin: 18px 0 30px;
  padding: 24px;
  background: #dbe1ff;
  overflow: hidden;
}
.visual-2 { background: #dff3ed; }
.visual-3 { background: #f4d9c9; }
.visual-window {
  display: flex;
  gap: 5px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(13,14,11,.2);
}
.visual-window span { width: 8px; height: 8px; border-radius: 50%; background: var(--ink); }
.visual-flow {
  position: absolute;
  top: 95px;
  right: 34px;
  left: 34px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
}
.visual-flow::before {
  content: "";
  position: absolute;
  right: 10%;
  left: 10%;
  height: 2px;
  background: var(--ink);
}
.visual-flow i {
  position: relative;
  z-index: 1;
  width: 48px;
  height: 48px;
  margin: auto;
  border: 8px solid currentColor;
  border-radius: 50%;
  color: var(--white);
  background: var(--ink);
}
.visual-flow i:nth-child(2) { background: var(--blue); }
.visual-flow i:nth-child(3) { background: var(--signal-dark); }
.visual-flow i:nth-child(4) { background: var(--white); }
.visual-status {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  padding: 17px;
  color: var(--white);
  background: var(--ink);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.case-card h3 { margin: 0 0 15px; font-size: 31px; line-height: 1; }
.case-card p { color: rgba(255,255,255,.55); font-size: 14px; line-height: 1.6; }
.case-card > a { display: flex; justify-content: space-between; padding-top: 18px; border-top: 1px solid var(--line-dark); color: var(--signal); font-size: 11px; font-weight: 800; text-transform: uppercase; }

.process-grid {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: clamp(60px, 10vw, 150px);
  align-items: start;
}

.process-sticky { position: sticky; top: 120px; }
.process-sticky h2 { font-size: clamp(46px, 5.5vw, 84px); }
.process-sticky > p { max-width: 470px; margin: 30px 0; color: var(--muted); font-size: 17px; }
.process-list { border-top: 1px solid var(--line); }
.process-list article {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 30px;
  padding: 36px 0;
  border-bottom: 1px solid var(--line);
}
.process-list article > span { color: var(--blue); font-size: 11px; font-weight: 900; }
.process-list h3 { margin: 0 0 12px; font-size: 34px; }
.process-list p { max-width: 580px; margin: 0; color: var(--muted); line-height: 1.65; }

.office-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.office-card {
  min-height: 330px;
  padding: 26px;
  background: var(--paper);
}

.office-card:nth-child(even) { background: var(--white); }
.office-index { color: var(--blue); font-size: 10px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.office-card h3 { margin: 100px 0 16px; font-size: 35px; }
.office-card p { min-height: 70px; margin-bottom: 22px; color: var(--muted); font-size: 13px; line-height: 1.55; }
.office-card h3 a { font-size: inherit; border: 0; }
.office-card > a { font-size: 13px; font-weight: 800; border-bottom: 1px solid; }

.faq-grid {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: clamp(60px, 10vw, 150px);
}

.faq-grid > div > h2 { font-size: clamp(44px, 5vw, 76px); }
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
  padding: 28px 0;
  cursor: pointer;
  list-style: none;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 750;
  letter-spacing: -.025em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary span {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: transform .25s ease, background .25s ease;
}
.faq details[open] summary span { background: var(--signal); transform: rotate(45deg); }
.faq details p { max-width: 770px; margin: -6px 0 28px; color: var(--muted); line-height: 1.7; }

.cta-panel {
  padding: clamp(80px, 9vw, 130px) 0;
  color: var(--ink);
  background: var(--signal);
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: end;
}

.cta-grid h2 {
  max-width: 1000px;
  margin: 0;
  font-size: clamp(54px, 7.5vw, 120px);
  line-height: .87;
  text-transform: uppercase;
}

.cta-grid p { max-width: 650px; margin: 28px 0 0; font-size: 18px; }
.cta-grid .eyebrow span { background: var(--ink); }

.site-footer {
  padding: 90px 0 30px;
  color: var(--white);
  background: var(--ink);
}

.footer-lead {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: end;
  padding-bottom: 70px;
  border-bottom: 1px solid var(--line-dark);
}

.footer-lead h2 {
  max-width: 720px;
  margin: 34px 0 0;
  font-size: clamp(46px, 5.2vw, 82px);
  line-height: .9;
  text-transform: uppercase;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding: 58px 0;
}

.footer-grid h3 {
  margin: 0 0 22px;
  color: rgba(255,255,255,.36);
  font-size: 10px;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.footer-grid a {
  display: block;
  width: fit-content;
  margin: 11px 0;
  color: rgba(255,255,255,.7);
  font-size: 13px;
}

.footer-grid a:hover { color: var(--signal); }
.footer-contact,
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 24px 0;
  border-top: 1px solid var(--line-dark);
}
.footer-contact a { font-size: clamp(24px, 3vw, 42px); font-weight: 800; letter-spacing: -.04em; }
.footer-contact span,
.footer-bottom { color: rgba(255,255,255,.42); font-size: 11px; letter-spacing: .07em; text-transform: uppercase; }

.page-hero {
  position: relative;
  min-height: 660px;
  padding: clamp(90px, 10vw, 150px) 0 90px;
  overflow: hidden;
}

.page-hero::after {
  content: "";
  position: absolute;
  right: -10vw;
  bottom: -32vw;
  width: 58vw;
  aspect-ratio: 1;
  border: 1px solid rgba(201,255,61,.18);
  border-radius: 50%;
  box-shadow: 0 0 0 9vw rgba(93,116,255,.025), 0 0 0 18vw rgba(201,255,61,.018);
}

.page-hero .container { position: relative; z-index: 1; }
.page-hero h1,
.article-hero h1,
.not-found h1 {
  max-width: 1160px;
  margin: 0;
  font-size: clamp(60px, 8.2vw, 132px);
  line-height: .85;
  letter-spacing: -.075em;
  text-transform: uppercase;
}
.page-hero p {
  max-width: 760px;
  margin: 36px 0 0;
  color: rgba(255,255,255,.63);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.55;
}
.breadcrumb {
  margin-bottom: 46px;
  color: rgba(255,255,255,.4);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.market-contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 28px;
  margin-top: 38px;
}
.market-contact > a:not(.btn) { color: var(--signal); font-size: 13px; font-weight: 800; border-bottom: 1px solid; }

.solution-group { padding: clamp(80px, 9vw, 130px) 0; }
.solution-group-head {
  display: grid;
  grid-template-columns: .5fr 1.5fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 70px;
}
.solution-group-head .eyebrow { margin-top: 10px; }
.solution-list { border-top: 1px solid var(--line); }
.solution-row {
  display: grid;
  grid-template-columns: 65px minmax(220px, .8fr) minmax(260px, 1fr) 70px;
  gap: 28px;
  align-items: center;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 110px;
}
.solution-row > span { color: var(--blue); font-size: 11px; font-weight: 900; }
.solution-row h3 { margin: 0; font-size: clamp(25px, 3vw, 42px); line-height: 1; }
.solution-row p { margin: 0; color: var(--muted); line-height: 1.6; }
.solution-row > a { text-align: right; font-size: 11px; font-weight: 800; text-transform: uppercase; }
.solution-row > a b { display: block; color: var(--blue); font-size: 20px; }

.split-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(60px, 10vw, 150px);
  align-items: start;
}
.split-feature h2 { font-size: clamp(46px, 5.8vw, 88px); }
.rich-copy p,
.rich-copy li,
.legal-copy p,
.legal-copy li {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}
.rich-copy p + p { margin-top: 24px; }
.rich-copy.light p,
.rich-copy.light li { color: rgba(255,255,255,.62); }
.check-list { padding: 0; margin: 30px 0 0; list-style: none; }
.check-list li { position: relative; padding: 16px 0 16px 28px; border-top: 1px solid currentColor; }
.check-list li::before { content: "+"; position: absolute; left: 0; color: var(--signal-dark); font-weight: 900; }

.principle-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.principle-grid article { min-height: 300px; padding: 26px; background: var(--paper); }
.principle-grid article:nth-child(even) { background: var(--white); }
.principle-grid span { color: var(--blue); font-size: 11px; font-weight: 900; }
.principle-grid h3 { margin: 112px 0 16px; font-size: 27px; line-height: 1; }
.principle-grid p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.55; }
.principle-grid.dark { background: var(--line-dark); border-color: var(--line-dark); }
.principle-grid.dark article { background: var(--ink-soft); }
.principle-grid.dark p { color: rgba(255,255,255,.52); }

.pain-list { padding: 0; margin: 0; border-top: 1px solid var(--line); list-style: none; }
.pain-list li {
  display: grid;
  grid-template-columns: 55px 1fr;
  gap: 20px;
  padding: 23px 0;
  border-bottom: 1px solid var(--line);
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 700;
  letter-spacing: -.03em;
}
.pain-list span { color: var(--blue); font-size: 10px; font-weight: 900; }

.module-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}
.module-grid article {
  min-height: 220px;
  padding: 26px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}
.module-grid span { color: var(--signal); font-size: 10px; font-weight: 900; }
.module-grid h3 { margin: 92px 0 0; font-size: 25px; line-height: 1; }

.measure-list { border-top: 1px solid var(--line); }
.measure-list > div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 23px 0;
  border-bottom: 1px solid var(--line);
  font-size: clamp(20px, 2.5vw, 32px);
  font-weight: 750;
  letter-spacing: -.035em;
}
.measure-list span { color: var(--blue); }

.control-board {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--line);
}
.control-board > div { min-height: 260px; padding: 32px; }
.control-board > div + div { color: var(--white); background: var(--ink); }
.control-board span { font-size: 10px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.control-board p { max-width: 500px; margin: 120px 0 0; font-size: 24px; font-weight: 750; letter-spacing: -.035em; line-height: 1.25; }

.address-panel { padding: 34px; color: var(--white); background: var(--ink); }
.address-panel span { color: var(--signal); font-size: 10px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.address-panel h3 { max-width: 600px; margin: 90px 0 30px; font-size: clamp(30px, 4vw, 52px); line-height: 1; }
.address-panel a { display: block; width: fit-content; margin: 10px 0; color: rgba(255,255,255,.65); border-bottom: 1px solid rgba(255,255,255,.35); }

.crm-board {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  padding: 20px;
  border: 1px solid var(--line);
  background: var(--soft);
}
.crm-stage { min-height: 390px; padding: 20px; background: var(--white); }
.crm-stage > span { color: var(--blue); font-size: 10px; font-weight: 900; }
.crm-stage h3 { margin: 26px 0 4px; font-size: 24px; }
.crm-stage b { color: var(--muted); font-size: 11px; font-weight: 600; }
.crm-stage i {
  display: block;
  height: 60px;
  margin-top: 11px;
  border: 1px solid var(--line);
  background: var(--paper);
}
.crm-stage i:nth-of-type(2) { background: #e2e6ff; }
.crm-stage i:nth-of-type(3) { background: #dff3ed; }

.proof-banner {
  display: grid;
  grid-template-columns: .45fr 1.55fr;
  gap: 50px;
  margin-bottom: 90px;
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--signal);
}
.proof-banner strong { font-size: 25px; letter-spacing: -.04em; }
.proof-banner p { margin: 0; color: rgba(13,14,11,.7); line-height: 1.65; }

.case-detail {
  padding: 80px 0;
  border-top: 1px solid var(--line);
  scroll-margin-top: 100px;
}
.case-detail-head {
  display: grid;
  grid-template-columns: .35fr 1.65fr;
  gap: 50px;
  margin-bottom: 55px;
}
.case-detail-head > span { color: var(--blue); font-size: 11px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.case-detail-head h2 { max-width: 900px; margin: 0; font-size: clamp(44px, 6vw, 88px); line-height: .9; text-transform: uppercase; }
.case-detail-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.case-detail-grid > div { min-height: 260px; padding: 24px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.case-detail-grid h3 { color: var(--blue); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }
.case-detail-grid p,
.case-detail-grid li { color: var(--muted); font-size: 14px; line-height: 1.6; }
.case-detail-grid ul { padding-left: 18px; }

.audit-grid {
  display: grid;
  grid-template-columns: 1.1fr .7fr;
  gap: clamp(60px, 9vw, 130px);
  align-items: start;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.field { display: flex; flex-direction: column; gap: 9px; }
.field.full { grid-column: 1 / -1; }
.field label {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 56px;
  padding: 15px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  outline: 0;
  background: transparent;
  transition: border-color .2s ease;
}
.field textarea { min-height: 145px; resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus { border-color: var(--blue); }
.consent label {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 12px;
  align-items: start;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.5;
  text-transform: none;
}
.consent input { min-height: auto; margin-top: 2px; accent-color: var(--blue); }
.consent a { text-decoration: underline; }
.field button { width: fit-content; }
.form-status { margin: 8px 0 0; color: var(--muted); font-size: 12px; }
.audit-outcome,
.article-side {
  position: sticky;
  top: 116px;
  padding: 36px;
  color: var(--white);
  background: var(--ink);
}
.audit-outcome h2,
.article-side h2 { margin: 0; font-size: 48px; line-height: .94; text-transform: uppercase; }
.audit-outcome .check-list li { color: rgba(255,255,255,.72); border-color: var(--line-dark); }
.audit-note { margin-top: 32px; padding: 14px; color: var(--ink); background: var(--signal); font-size: 11px; font-weight: 900; text-align: center; text-transform: uppercase; }

.direct-contact .email-large {
  display: block;
  margin: 12px 0 30px;
  font-size: clamp(31px, 4vw, 55px);
  font-weight: 800;
  letter-spacing: -.06em;
}
.direct-contact > p { color: var(--muted); line-height: 1.7; }
.office-list { margin-top: 45px; border-top: 1px solid var(--line); }
.office-list .office-card {
  display: grid;
  grid-template-columns: 50px .7fr 1.3fr;
  gap: 18px;
  align-items: start;
  min-height: 0;
  padding: 21px 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
}
.office-list .office-card h3 { margin: 0; font-size: 20px; }
.office-list .office-card p { min-height: 0; margin: 0; }
.office-list .office-card > a { grid-column: 2 / -1; width: fit-content; }

.post-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.post-card {
  min-height: 430px;
  padding: 30px;
  border: 1px solid var(--line);
  background: var(--white);
}
.post-featured { grid-column: 1 / -1; min-height: 520px; color: var(--white); background: var(--ink); }
.post-card .post-meta { color: var(--muted); }
.post-featured .post-meta { color: rgba(255,255,255,.5); }
.post-card h2 { max-width: 850px; margin: 120px 0 22px; font-size: clamp(36px, 4.8vw, 72px); line-height: .95; }
.post-card p { max-width: 680px; color: var(--muted); line-height: 1.65; }
.post-featured p { color: rgba(255,255,255,.56); }
.post-card > a { display: flex; justify-content: space-between; margin-top: 45px; padding-top: 18px; border-top: 1px solid var(--line); font-size: 11px; font-weight: 900; text-transform: uppercase; }
.post-featured > a { color: var(--signal); border-color: var(--line-dark); }

.reading-progress {
  position: fixed;
  top: 78px;
  left: 0;
  z-index: 101;
  width: 0;
  height: 3px;
  background: var(--signal);
}
.article-hero { padding: 110px 0 90px; }
.article-hero h1 { font-size: clamp(55px, 7vw, 110px); }
.article-hero > .container > p { max-width: 760px; margin: 34px 0 0; color: rgba(255,255,255,.62); font-size: 21px; line-height: 1.6; }
.article-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 370px;
  gap: clamp(70px, 10vw, 150px);
  align-items: start;
}
.article-body { max-width: 780px; }
.article-body > p:first-child { color: var(--ink); font-size: clamp(23px, 2.5vw, 31px); line-height: 1.5; }
.article-body h2 { margin: 80px 0 24px; font-size: clamp(40px, 5vw, 68px); line-height: .96; text-transform: uppercase; }
.article-body h3 { margin: 42px 0 14px; font-size: 29px; }
.article-body p,
.article-body li { color: var(--muted); font-size: 18px; line-height: 1.78; }
.article-side > p { color: rgba(255,255,255,.6); line-height: 1.65; }
.article-side .btn { margin-top: 20px; }

.legal-hero { min-height: 520px; }
.legal-grid {
  display: grid;
  grid-template-columns: 260px minmax(0, 800px);
  gap: clamp(70px, 10vw, 150px);
  align-items: start;
}
.legal-nav {
  position: sticky;
  top: 120px;
  display: grid;
  border-top: 1px solid var(--line);
}
.legal-nav a { padding: 13px 0; border-bottom: 1px solid var(--line); color: var(--muted); font-size: 12px; font-weight: 700; }
.legal-nav a:hover { color: var(--blue); }
.legal-copy h2 { scroll-margin-top: 110px; margin: 65px 0 18px; font-size: clamp(31px, 4vw, 50px); line-height: 1; }
.legal-copy h2:first-child { margin-top: 0; }
.legal-copy a { color: var(--blue); text-decoration: underline; }

.not-found {
  min-height: 78vh;
  display: grid;
  align-items: center;
  padding: 100px 0;
}
.not-found p { margin: 30px 0 0; color: rgba(255,255,255,.6); font-size: 20px; }

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }
.no-js .reveal { opacity: 1; transform: none; }

@media (max-width: 1120px) {
  .nav { grid-template-columns: auto auto 1fr; }
  .nav-links {
    position: absolute;
    top: 78px;
    right: 0;
    left: 0;
    min-height: calc(100svh - 78px);
    max-height: calc(100svh - 78px);
    display: grid;
    align-content: start;
    justify-content: stretch;
    gap: 0;
    padding: 34px var(--gutter);
    color: var(--white);
    background: var(--ink);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity .28s ease, transform .28s var(--ease), visibility .28s;
    overflow-y: auto;
  }
  .nav-links.open { opacity: 1; visibility: visible; transform: none; }
  .nav-links a {
    padding: 21px 0;
    border-bottom: 1px solid var(--line-dark);
    color: var(--white);
    font-size: clamp(28px, 6vw, 52px);
    letter-spacing: -.045em;
  }
  .nav-links a::after { display: none; }
  .nav-links .mobile-nav-only { display: block; }
  .header-cta { justify-self: end; }
  .nav-toggle { display: block; grid-column: 2; grid-row: 1; }
  .header-cta { grid-column: 3; grid-row: 1; }
  .hero-grid { grid-template-columns: 1fr; }
  .system-console { width: min(100%, 700px); margin-top: 25px; }
  .system-map,
  .office-grid,
  .principle-grid,
  .case-detail-grid { grid-template-columns: repeat(2, 1fr); }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .case-grid { grid-template-columns: 1fr; gap: 70px; }
  .case-card { display: grid; grid-template-columns: 1fr 1fr; column-gap: 34px; }
  .case-card .case-meta,
  .case-card .project-visual { grid-column: 1; }
  .case-card h3 { align-self: end; margin-top: 80px; font-size: 48px; }
  .case-card p,
  .case-card > a { grid-column: 2; }
  .project-visual { grid-row: 2 / span 3; }
  .module-grid { grid-template-columns: repeat(3, 1fr); }
  .crm-board { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
  .header-cta { display: none; }
  .nav { grid-template-columns: 1fr auto; }
  .nav-toggle { grid-column: 2; }
  .hero { padding-top: 72px; }
  .hero h1,
  .page-hero h1,
  .article-hero h1,
  .not-found h1 { font-size: clamp(54px, 16vw, 92px); }
  .system-console { min-height: 540px; box-shadow: 14px 14px 0 rgba(93,116,255,.18); }
  .market-rail .container { display: flex; width: max-content; padding-left: var(--gutter); animation: rail 24s linear infinite; }
  .market-rail span,
  .market-rail a { min-width: 180px; }
  .market-rail span:first-child { padding-left: 18px; text-align: center; }
  @keyframes rail { to { transform: translateX(-35%); } }
  .section-head,
  .process-grid,
  .faq-grid,
  .split-feature,
  .solution-group-head,
  .audit-grid,
  .footer-lead,
  .cta-grid,
  .article-grid,
  .legal-grid,
  .proof-banner,
  .case-detail-head { grid-template-columns: 1fr; }
  .section-head { gap: 28px; }
  .section-head h2,
  .split-feature h2,
  .process-sticky h2,
  .solution-group-head h2 { font-size: clamp(45px, 12vw, 72px); }
  .system-map { grid-template-columns: 1fr 1fr; }
  .industry-grid { grid-template-columns: 1fr; }
  .industry-card { min-height: 540px; }
  .process-sticky,
  .audit-outcome,
  .article-side,
  .legal-nav { position: static; }
  .process-sticky { margin-bottom: 40px; }
  .cta-grid { align-items: start; }
  .cta-grid .btn { width: fit-content; }
  .solution-row { grid-template-columns: 45px 1fr; }
  .solution-row p,
  .solution-row > a { grid-column: 2; text-align: left; }
  .module-grid { grid-template-columns: repeat(2, 1fr); }
  .control-board { grid-template-columns: 1fr; }
  .case-card { display: block; }
  .case-card h3 { margin-top: 0; font-size: 38px; }
  .crm-board { grid-template-columns: 1fr 1fr; }
  .post-grid { grid-template-columns: 1fr; }
  .post-featured { grid-column: auto; }
  .post-card h2 { margin-top: 90px; }
  .reading-progress { top: 78px; }
  .legal-nav { display: none; }
}

@media (max-width: 560px) {
  :root { --gutter: 18px; }
  .nav { min-height: 70px; }
  .nav-links { top: 70px; }
  .nav-links { min-height: calc(100svh - 70px); max-height: calc(100svh - 70px); }
  .btn { width: 100%; }
  .hero h1 { font-size: clamp(50px, 16vw, 72px); }
  .page-hero h1 { font-size: clamp(42px, 11.4vw, 60px); }
  .article-hero h1,
  .not-found h1 { font-size: clamp(44px, 12vw, 64px); }
  .hero-actions { flex-direction: column; }
  .hero-proof { display: grid; grid-template-columns: 1fr 1fr; }
  .system-console { min-height: 520px; padding: 16px; }
  .system-console::before { display: none; }
  .console-bottom { right: 16px; bottom: 16px; left: 16px; }
  .console-lead { padding: 18px; }
  .console-lead > b { display: none; }
  .section { padding: 78px 0; }
  .section-head h2,
  .split-feature h2,
  .process-sticky h2,
  .solution-group-head h2,
  .faq-grid > div > h2 { font-size: clamp(42px, 13vw, 62px); }
  .leak-row { grid-template-columns: 36px 1fr; gap: 14px; }
  .leak-row > b { grid-column: 2; }
  .system-map,
  .office-grid,
  .principle-grid,
  .case-detail-grid,
  .service-grid,
  .module-grid,
  .crm-board { grid-template-columns: 1fr; }
  .system-map article { min-height: 280px; }
  .system-map h3 { margin-top: 70px; }
  .service-card-wide { grid-column: auto; }
  .project-visual { height: 300px; }
  .visual-flow i { width: 36px; height: 36px; border-width: 6px; }
  .process-list article { grid-template-columns: 42px 1fr; gap: 14px; }
  .office-card { min-height: 290px; }
  .office-card h3 { margin-top: 80px; }
  .cta-grid h2 { font-size: clamp(49px, 14vw, 72px); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-contact,
  .footer-bottom { flex-direction: column; }
  .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .office-list .office-card { grid-template-columns: 42px 1fr; }
  .office-list .office-card p,
  .office-list .office-card > a { grid-column: 2; }
  .post-card { min-height: 390px; padding: 24px; }
  .case-detail { padding: 60px 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .market-rail .container { animation: none; transform: none; }
}
