:root {
  --ink: #070b14;
  --ink-2: #0d1322;
  --ink-3: #151d30;
  --paper: #f4f3ee;
  --paper-2: #ebeae4;
  --white: #ffffff;
  --muted: #aab2c3;
  --paper-muted: #5d6270;
  --blue: #5d84ff;
  --blue-bright: #76a0ff;
  --coral: #ff6b5f;
  --mint: #63e5c5;
  --line-dark: rgba(255, 255, 255, 0.12);
  --line-light: rgba(7, 11, 20, 0.14);
  --mono: "DM Mono", ui-monospace, SFMono-Regular, Consolas, monospace;
  --sans: "Manrope", Inter, ui-sans-serif, system-ui, sans-serif;
  --shell: min(1180px, calc(100vw - 48px));
  --radius: 22px;
  --ease: cubic-bezier(.2, .8, .2, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.nav-open { overflow: hidden; }
a { color: inherit; }
img { max-width: 100%; display: block; }
button, input, textarea { font: inherit; }
button { color: inherit; }
::selection { color: var(--ink); background: var(--mint); }
.shell { width: var(--shell); margin-inline: auto; }
.section-pad { padding: 120px 0; position: relative; }
.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 1000;
  padding: 10px 16px;
  background: var(--white);
  color: var(--ink);
  transform: translateY(-150%);
  transition: transform .2s;
}
.skip-link:focus { transform: translateY(0); }
.page-noise {
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  opacity: .025;
  background-image: repeating-radial-gradient(circle at 20% 30%, rgba(255,255,255,.38) 0 0.4px, transparent 0.7px 3px);
}
.eyebrow {
  margin: 0 0 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: currentColor;
  font: 500 11px/1.2 var(--mono);
  letter-spacing: .15em;
  text-transform: uppercase;
}
.eyebrow > span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 5px rgba(255, 107, 95, .13);
}
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { letter-spacing: -.045em; }
h1 em, h2 em { color: var(--blue-bright); font-style: normal; }
.button {
  min-height: 52px;
  padding: 14px 19px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  border: 1px solid transparent;
  border-radius: 7px;
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: transform .25s var(--ease), background .25s, color .25s, border-color .25s;
}
.button span { transition: transform .25s var(--ease); }
.button:hover { transform: translateY(-2px); }
.button:hover span { transform: translate(2px, -2px); }
.button-primary { color: var(--white); background: var(--blue); box-shadow: 0 12px 38px rgba(55, 96, 242, .28); }
.button-primary:hover { background: #6c90ff; }
.button-secondary { border-color: var(--line-light); color: var(--ink); background: transparent; }
.button-secondary:hover { background: var(--ink); color: var(--white); }
.button-light { background: var(--white); color: var(--ink); }
.button-light:hover { background: var(--mint); }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  color: inherit;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
}
.text-link span { color: var(--coral); transition: transform .2s; }
.text-link:hover span { transform: translateY(3px); }

/* Header */
.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 100;
  height: 84px;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,.09);
  transition: background .25s, border-color .25s;
}
.site-header.is-stuck {
  position: fixed;
  height: 72px;
  background: rgba(7, 11, 20, .88);
  border-color: rgba(255,255,255,.12);
  backdrop-filter: blur(18px);
  animation: headerIn .35s var(--ease);
}
@keyframes headerIn { from { transform: translateY(-100%); } }
.nav-wrap { height: 100%; display: flex; align-items: center; justify-content: space-between; }
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: inherit;
  font-weight: 800;
  font-size: 19px;
  letter-spacing: -.045em;
  text-decoration: none;
}
.brand-mark { position: relative; width: 28px; height: 17px; display: inline-block; }
.brand-mark i {
  position: absolute;
  top: 1px;
  width: 17px;
  height: 15px;
  border: 3px solid var(--blue-bright);
  border-radius: 50%;
  transform: rotate(-26deg);
}
.brand-mark i:first-child { left: 0; border-right-color: transparent; }
.brand-mark i:last-child { right: 0; border-left-color: transparent; border-color: var(--coral); border-left-color: transparent; }
.site-nav { display: flex; align-items: center; gap: 32px; }
.site-nav > a {
  color: rgba(255,255,255,.75);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: color .2s;
}
.site-nav > a:hover { color: var(--white); }
.site-nav .nav-cta {
  margin-left: 6px;
  padding: 11px 14px;
  color: var(--white);
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 6px;
}
.nav-toggle { display: none; border: 0; background: none; cursor: pointer; }

/* Hero */
.hero {
  min-height: 790px;
  padding-top: 170px;
  padding-bottom: 54px;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(255,255,255,.026) 1px, transparent 1px) 0 0 / 72px 72px,
    linear-gradient(rgba(255,255,255,.026) 1px, transparent 1px) 0 0 / 72px 72px,
    var(--ink);
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 140px;
  background: linear-gradient(transparent, rgba(0,0,0,.17));
  pointer-events: none;
}
.hero-aurora {
  position: absolute;
  width: 720px;
  height: 720px;
  right: -230px;
  top: -230px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(93, 132, 255, .23), rgba(255, 107, 95, .08) 42%, transparent 70%);
  filter: blur(4px);
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  gap: 82px;
  align-items: center;
}
.hero-copy h1 {
  max-width: 720px;
  margin: 0 0 28px;
  font-size: clamp(52px, 6vw, 82px);
  line-height: .99;
  font-weight: 600;
}
.hero-lede { max-width: 650px; color: #b7bfd0; font-size: 18px; line-height: 1.75; }
.hero-actions { margin-top: 36px; display: flex; align-items: center; gap: 32px; }
.hero-proof {
  margin-top: 55px;
  padding-top: 23px;
  display: flex;
  gap: 26px;
  border-top: 1px solid var(--line-dark);
  color: #8f98a9;
  font: 500 10px/1.3 var(--mono);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.hero-proof span { display: flex; align-items: center; gap: 10px; }
.hero-proof span::before { content: ""; width: 3px; height: 3px; background: var(--mint); border-radius: 50%; }

.system-stage {
  position: relative;
  min-height: 495px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 4px;
  background: rgba(13, 19, 34, .9);
  box-shadow: 0 40px 100px rgba(0,0,0,.45);
  transform-style: preserve-3d;
  transition: transform .2s ease-out;
}
.stage-glow {
  position: absolute;
  width: 360px;
  height: 360px;
  right: -140px;
  top: 20px;
  background: rgba(93,132,255,.25);
  filter: blur(90px);
  border-radius: 50%;
}
.stage-topbar, .stage-footer {
  position: relative;
  z-index: 2;
  height: 44px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #828ba0;
  border-bottom: 1px solid rgba(255,255,255,.09);
  font: 500 9px/1 var(--mono);
  letter-spacing: .11em;
}
.stage-time { margin-left: auto; }
.status-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 12px var(--mint); animation: pulse 2s infinite; }
@keyframes pulse { 50% { opacity: .4; transform: scale(.8); } }
.stage-map { position: relative; height: 407px; }
.map-grid {
  position: absolute;
  inset: 0;
  opacity: .3;
  background:
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px) 0 0 / 37px 37px,
    linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px) 0 0 / 37px 37px;
  mask-image: linear-gradient(to bottom, black, transparent);
}
.signal-card {
  position: absolute;
  z-index: 3;
  width: 150px;
  padding: 14px;
  display: grid;
  gap: 4px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(17,25,43,.88);
  box-shadow: 0 12px 30px rgba(0,0,0,.25);
}
.signal-card::before { content: ""; position: absolute; inset: -1px auto -1px -1px; width: 2px; background: var(--blue); }
.signal-card strong { font-size: 13px; }
.signal-card small { color: #7f899f; font: 400 8px/1.4 var(--mono); text-transform: uppercase; }
.signal-index { color: var(--blue-bright); font: 500 9px/1 var(--mono); }
.signal-one { left: 32px; top: 48px; animation: drift 5s ease-in-out infinite; }
.signal-two { right: 30px; top: 152px; animation: drift 5s 1s ease-in-out infinite; }
.signal-three { left: 48px; bottom: 48px; animation: drift 5s 2s ease-in-out infinite; }
@keyframes drift { 50% { transform: translateY(-6px); } }
.route { position: absolute; z-index: 1; height: 1px; background: rgba(118,160,255,.36); transform-origin: left; }
.route-one { width: 170px; left: 155px; top: 123px; transform: rotate(22deg); }
.route-two { width: 175px; left: 170px; top: 275px; transform: rotate(-18deg); }
.route i { position: absolute; width: 5px; height: 5px; top: -2px; border-radius: 50%; background: var(--coral); box-shadow: 0 0 12px var(--coral); animation: routeMove 2.6s linear infinite; }
@keyframes routeMove { from { left: 0; } to { left: 100%; } }
.stage-orbit {
  position: absolute;
  width: 150px;
  height: 150px;
  left: 50%;
  top: 50%;
  border: 1px dashed rgba(255,255,255,.14);
  border-radius: 50%;
  transform: translate(-50%,-50%);
  animation: spin 16s linear infinite;
}
.stage-orbit span { position: absolute; width: 8px; height: 8px; left: 23px; top: 15px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 14px var(--mint); }
@keyframes spin { to { transform: translate(-50%,-50%) rotate(360deg); } }
.stage-result {
  position: absolute;
  z-index: 4;
  left: 50%;
  top: 51%;
  width: 154px;
  padding: 16px;
  transform: translate(-50%,-50%);
  border: 1px solid rgba(99,229,197,.33);
  background: rgba(7,11,20,.92);
  box-shadow: 0 0 50px rgba(99,229,197,.1);
}
.stage-result > span { display: block; color: var(--mint); font: 500 8px/1 var(--mono); letter-spacing: .12em; }
.stage-result > strong { display: block; margin-top: 8px; font-size: 14px; }
.activity-bars { margin-top: 12px; height: 20px; display: flex; align-items: end; gap: 4px; }
.activity-bars b { width: 11px; background: var(--blue); animation: bars 1.4s ease-in-out infinite alternate; }
.activity-bars b:nth-child(1) { height: 35%; }
.activity-bars b:nth-child(2) { height: 70%; animation-delay: .2s; }
.activity-bars b:nth-child(3) { height: 48%; animation-delay: .4s; }
.activity-bars b:nth-child(4) { height: 90%; animation-delay: .6s; background: var(--coral); }
.activity-bars b:nth-child(5) { height: 62%; animation-delay: .8s; }
@keyframes bars { to { height: 25%; opacity: .6; } }
.stage-footer { height: 43px; border: 0; border-top: 1px solid rgba(255,255,255,.09); }
.stage-footer i { flex: 1; height: 1px; background: rgba(255,255,255,.13); }
.capability-strip {
  position: relative;
  z-index: 3;
  margin-top: 90px;
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: #9ba4b7;
  border-top: 1px solid var(--line-dark);
  font: 500 11px/1 var(--mono);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.capability-strip i { width: 4px; height: 4px; border-radius: 50%; background: rgba(255,255,255,.32); }

/* Shared headings */
.section-heading { max-width: 700px; margin-bottom: 64px; }
.section-heading h2, .principles-copy h2, .claim-copy h2, .contact-copy h2 {
  margin-bottom: 24px;
  font-size: clamp(42px, 5vw, 66px);
  line-height: 1.05;
  font-weight: 600;
}
.section-heading > p:last-child { max-width: 560px; color: var(--paper-muted); font-size: 17px; }
.section-heading-row { max-width: none; display: flex; justify-content: space-between; align-items: end; gap: 60px; }
.section-heading-row > p { max-width: 470px; margin-bottom: 8px; }

/* Services */
.services { background: var(--paper); }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.service-card {
  min-height: 550px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  color: var(--ink);
  border: 1px solid var(--line-light);
  border-radius: 2px;
  background: rgba(255,255,255,.23);
  text-decoration: none;
  transition: transform .35s var(--ease), background .35s, border-color .35s, box-shadow .35s;
}
.service-card:hover {
  z-index: 2;
  transform: translateY(-8px);
  border-color: rgba(93,132,255,.6);
  background: var(--white);
  box-shadow: 0 30px 70px rgba(7,11,20,.12);
}
.service-card-featured { background: var(--ink); color: var(--white); border-color: var(--ink); }
.service-card-featured:hover { background: var(--ink-2); }
.service-top { display: flex; justify-content: space-between; align-items: center; font: 500 10px/1 var(--mono); }
.card-arrow { width: 31px; height: 31px; display: grid; place-items: center; border: 1px solid currentColor; border-radius: 50%; font-style: normal; opacity: .5; transition: opacity .2s, transform .25s; }
.service-card:hover .card-arrow { opacity: 1; transform: rotate(45deg); }
.service-icon { position: relative; width: 72px; height: 72px; margin: 56px 0 37px; }
.ai-icon { border: 1px solid rgba(93,132,255,.44); border-radius: 50%; }
.ai-icon i { position: absolute; width: 9px; height: 9px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 16px rgba(93,132,255,.7); }
.ai-icon i:nth-child(1) { top: 9px; left: 26px; }
.ai-icon i:nth-child(2) { left: 11px; bottom: 14px; background: var(--coral); }
.ai-icon i:nth-child(3) { right: 8px; bottom: 17px; background: var(--mint); }
.app-icon { border: 1px solid currentColor; border-radius: 6px; opacity: .8; }
.app-icon::before { content: ""; position: absolute; left: 9px; top: 11px; width: 50px; height: 1px; background: currentColor; opacity: .4; }
.app-icon i { position: absolute; border: 1px solid var(--blue); }
.app-icon i:first-child { left: 10px; top: 24px; width: 21px; height: 34px; background: rgba(93,132,255,.15); }
.app-icon i:last-child { right: 10px; top: 24px; width: 21px; height: 15px; background: rgba(255,107,95,.15); border-color: var(--coral); }
.claims-icon i { position: absolute; inset: 9px; border: 1px solid var(--blue-bright); transform: rotate(45deg); }
.claims-icon i:nth-child(2) { inset: 18px; border-color: var(--coral); }
.claims-icon i:nth-child(3) { inset: 28px; background: var(--mint); border-color: var(--mint); }
.service-card h3 { margin-bottom: 17px; font-size: 27px; line-height: 1.15; }
.service-card > p { color: var(--paper-muted); font-size: 14px; }
.service-card-featured > p { color: #aeb7ca; }
.service-card ul { margin: 22px 0 0; padding: 20px 0 0; list-style: none; border-top: 1px solid currentColor; border-color: rgba(120,126,140,.28); }
.service-card li { margin: 8px 0; color: inherit; font-size: 13px; }
.service-card li::before { content: "•"; margin-right: 10px; color: var(--coral); }
.card-link { margin-top: auto; padding-top: 28px; color: var(--blue); font: 500 10px/1 var(--mono); letter-spacing: .08em; text-transform: uppercase; }

/* Principles */
.principles { color: var(--white); background: var(--ink-2); overflow: hidden; }
.principles::before { content: ""; position: absolute; left: -10%; top: -55%; width: 800px; height: 800px; border: 1px solid rgba(255,255,255,.05); border-radius: 50%; box-shadow: 0 0 0 90px rgba(255,255,255,.018), 0 0 0 180px rgba(255,255,255,.012); }
.principles-grid { position: relative; display: grid; grid-template-columns: .82fr 1.18fr; gap: 110px; }
.principles-copy { position: sticky; top: 130px; align-self: start; }
.principles-copy h2 { font-size: clamp(40px, 4.4vw, 62px); }
.principles-copy > p:not(.eyebrow) { max-width: 510px; color: #a8b0c1; }
.principles-copy .text-link { margin-top: 28px; }
.principle { padding: 32px 0; display: grid; grid-template-columns: 70px 1fr; gap: 18px; border-top: 1px solid var(--line-dark); }
.principle:last-child { border-bottom: 1px solid var(--line-dark); }
.principle > span { color: var(--blue-bright); font: 500 11px/1 var(--mono); }
.principle h3 { margin-bottom: 12px; font-size: 24px; font-weight: 600; }
.principle p { margin-bottom: 0; color: #9fa8ba; font-size: 14px; }

/* Product case */
.work { overflow: hidden; background: var(--paper-2); }
.product-case {
  min-height: 560px;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  border: 1px solid var(--line-light);
  background: var(--paper);
}
.product-visual { position: relative; min-width: 0; padding: 72px 28px 56px; display: grid; place-items: center; overflow: hidden; background: var(--ink); }
.product-visual::before { content: ""; position: absolute; width: 450px; height: 450px; border-radius: 50%; background: radial-gradient(circle, rgba(93,132,255,.29), transparent 68%); }
.product-window { position: relative; width: min(510px, 90%); border: 1px solid rgba(255,255,255,.17); border-radius: 9px; background: #121a2a; box-shadow: 0 34px 80px rgba(0,0,0,.5); transform: perspective(1000px) rotateY(7deg) rotateX(2deg); }
.window-bar { height: 36px; padding: 0 12px; display: flex; align-items: center; gap: 6px; color: #6f7a8e; border-bottom: 1px solid rgba(255,255,255,.08); font: 400 8px/1 var(--mono); }
.window-bar i { width: 6px; height: 6px; border-radius: 50%; background: #394358; }
.window-bar i:nth-child(1) { background: var(--coral); }
.window-bar i:nth-child(2) { background: #f5c55c; }
.window-bar i:nth-child(3) { background: var(--mint); }
.window-bar span { margin-left: auto; }
.window-body { height: 310px; display: grid; grid-template-columns: 55px 1fr; }
.product-sidebar { padding-top: 15px; display: flex; flex-direction: column; align-items: center; gap: 18px; border-right: 1px solid rgba(255,255,255,.07); }
.product-sidebar b { width: 26px; height: 26px; display: grid; place-items: center; color: var(--white); background: var(--blue); border-radius: 7px; font-size: 10px; }
.product-sidebar i { width: 17px; height: 3px; background: #3d485d; border-radius: 2px; }
.product-main { min-width: 0; padding: 20px; }
.metric-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.metric-row > div { padding: 14px; display: grid; gap: 5px; border: 1px solid rgba(255,255,255,.08); background: #161f31; }
.metric-row span, .chart-card > span { color: #798397; font: 500 7px/1 var(--mono); letter-spacing: .1em; }
.metric-row strong { color: var(--white); font-size: 18px; letter-spacing: -.03em; }
.metric-row small { color: var(--mint); font: 400 7px/1 var(--mono); }
.chart-card { height: 164px; margin-top: 12px; padding: 16px; border: 1px solid rgba(255,255,255,.08); background: #161f31; }
.agent-flow { min-height: 96px; margin-top: 14px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 7px; }
.agent-flow div { padding: 11px 8px; display: flex; flex-direction: column; justify-content: space-between; border: 1px solid rgba(255,255,255,.09); background: #121a2a; }
.agent-flow div:nth-child(4) { border-color: rgba(88,225,188,.35); }
.agent-flow span, .agent-flow small { color: #798397; font: 500 7px/1.25 var(--mono); letter-spacing: .08em; }
.agent-flow strong { color: var(--white); font-size: 10px; }
.chart-bars { height: 110px; margin-top: 14px; display: flex; align-items: end; gap: 9px; border-bottom: 1px solid rgba(255,255,255,.08); }
.chart-bars i { flex: 1; height: 30%; background: linear-gradient(to top, var(--blue), #8ca9ff); opacity: .74; animation: graph 4s var(--ease) infinite alternate; }
.chart-bars i:nth-child(2) { height: 46%; }
.chart-bars i:nth-child(3) { height: 39%; }
.chart-bars i:nth-child(4) { height: 67%; }
.chart-bars i:nth-child(5) { height: 56%; }
.chart-bars i:nth-child(6) { height: 81%; }
.chart-bars i:nth-child(7) { height: 72%; }
.chart-bars i:nth-child(8) { height: 94%; background: linear-gradient(to top, var(--coral), #ffaaa2); }
@keyframes graph { 50% { filter: brightness(1.22); } }
.floating-label { position: absolute; z-index: 3; padding: 10px 13px; color: #dce2ef; border: 1px solid rgba(255,255,255,.18); background: rgba(7,11,20,.88); box-shadow: 0 12px 30px rgba(0,0,0,.25); font: 500 8px/1 var(--mono); letter-spacing: .11em; }
.label-one { left: 25px; bottom: 42px; }
.label-one span { display: inline-block; width: 5px; height: 5px; margin-right: 8px; border-radius: 50%; background: var(--mint); }
.label-two { right: 24px; top: 42px; }
.product-copy { padding: 68px 60px; display: flex; flex-direction: column; align-items: flex-start; }
.product-copy h3 { margin: 0 0 18px; font-size: clamp(42px, 5vw, 62px); font-weight: 600; }
.product-lede { color: var(--paper-muted); font-size: 17px; }
.product-context { color: var(--paper-muted); font-size: 14px; }
.product-details { width: 100%; margin: 26px 0 38px; border-top: 1px solid var(--line-light); }
.product-details div { padding: 14px 0; display: flex; justify-content: space-between; gap: 18px; border-bottom: 1px solid var(--line-light); }
.product-details span { color: var(--paper-muted); font: 500 9px/1.4 var(--mono); letter-spacing: .1em; }
.product-details strong { font-size: 12px; }

/* ClaimCenter */
.claimcenter-band { overflow: hidden; color: var(--white); background: #315fcf; }
.claimcenter-band::before { content: ""; position: absolute; inset: 0; opacity: .19; background: linear-gradient(90deg, rgba(255,255,255,.1) 1px, transparent 1px) 0 0 / 62px 62px, linear-gradient(rgba(255,255,255,.1) 1px, transparent 1px) 0 0 / 62px 62px; }
.claim-glow { position: absolute; right: -140px; top: -270px; width: 700px; height: 700px; border: 120px solid rgba(255,255,255,.05); border-radius: 50%; }
.claim-grid { position: relative; display: grid; grid-template-columns: 1fr .9fr; align-items: center; gap: 100px; }
.claim-copy > p:not(.eyebrow) { max-width: 590px; color: rgba(255,255,255,.76); font-size: 17px; }
.claim-copy .button { margin-top: 25px; }
.claim-copy h2 em { color: var(--mint); }
.claim-matrix { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid rgba(255,255,255,.25); }
.claim-matrix div { min-height: 180px; padding: 25px; display: flex; flex-direction: column; border: 1px solid rgba(255,255,255,.16); }
.claim-matrix span { color: rgba(255,255,255,.56); font: 500 9px/1 var(--mono); }
.claim-matrix strong { margin: auto 0 6px; font-size: 18px; }
.claim-matrix small { color: rgba(255,255,255,.65); font: 400 9px/1.4 var(--mono); }

/* Process */
.process { background: var(--paper); }
.process-track { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line-light); }
.process-step { min-height: 375px; padding: 32px 24px 0 0; display: flex; flex-direction: column; border-right: 1px solid var(--line-light); }
.process-step + .process-step { padding-left: 24px; }
.process-step:last-child { border-right: 0; }
.step-number { color: var(--blue); font: 500 11px/1 var(--mono); }
.step-line { position: relative; height: 1px; margin: 34px 0 52px; background: var(--line-light); }
.step-line i { position: absolute; left: 0; top: -4px; width: 9px; height: 9px; border-radius: 50%; background: var(--paper); border: 2px solid var(--coral); }
.process-step h3 { margin-bottom: 14px; font-size: 22px; }
.process-step p { color: var(--paper-muted); font-size: 14px; }
.process-step small { margin-top: auto; padding-bottom: 20px; color: #878c98; font: 500 8px/1 var(--mono); letter-spacing: .1em; }

/* Contact and footer */
.contact { color: var(--white); background: var(--ink); }
.contact-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 110px; }
.contact-copy > p:not(.eyebrow) { max-width: 470px; color: #aab2c3; font-size: 17px; }
.contact-direct { margin-top: 48px; border-top: 1px solid var(--line-dark); }
.contact-direct a { padding: 17px 0; display: flex; justify-content: space-between; gap: 20px; border-bottom: 1px solid var(--line-dark); text-decoration: none; }
.contact-direct span { color: #7f899c; font: 500 9px/1.6 var(--mono); letter-spacing: .1em; }
.contact-direct strong { font-size: 13px; }
.contact-form { padding: 38px; border: 1px solid var(--line-dark); background: rgba(255,255,255,.025); }
.contact-form label { display: grid; gap: 9px; margin-bottom: 22px; }
.contact-form label > span, .contact-form legend { color: #8e98aa; font: 500 9px/1.2 var(--mono); letter-spacing: .08em; text-transform: uppercase; }
.contact-form input[type="text"], .contact-form input[type="email"], .contact-form textarea {
  width: 100%;
  padding: 12px 0;
  color: var(--white);
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.2);
  border-radius: 0;
  outline: 0;
  background: transparent;
  resize: vertical;
  transition: border-color .2s;
}
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--blue-bright); }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: #596275; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.contact-form fieldset { margin: 0 0 26px; padding: 0; border: 0; }
.contact-form legend { margin-bottom: 13px; }
.choice-row { display: flex; flex-wrap: wrap; gap: 8px; }
.choice-row label { margin: 0; display: block; cursor: pointer; }
.choice-row input { position: absolute; opacity: 0; pointer-events: none; }
.choice-row span { padding: 9px 11px; display: block; color: #aab2c3; border: 1px solid rgba(255,255,255,.17); border-radius: 5px; font: 500 9px/1 var(--mono); transition: border-color .2s, background .2s, color .2s; }
.choice-row input:checked + span { color: var(--white); border-color: var(--blue); background: rgba(93,132,255,.17); }
.form-submit { margin-top: 28px; display: flex; align-items: center; gap: 24px; }
.form-submit p { margin: 0; color: #737d90; font-size: 11px; }
.form-submit a { color: #b6bfce; }
.site-footer { padding: 82px 0 0; color: var(--white); background: #05070d; }
.footer-main { display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; }
.footer-brand { margin-bottom: 18px; }
.footer-main > div:first-child p { max-width: 390px; color: #7f889a; font-size: 14px; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.footer-links div { display: grid; align-content: start; gap: 10px; }
.footer-links span { margin-bottom: 9px; color: #667084; font: 500 9px/1 var(--mono); letter-spacing: .12em; }
.footer-links a { color: #aeb6c6; font-size: 12px; text-decoration: none; }
.footer-links a:hover { color: var(--white); }
.footer-bottom { margin-top: 72px; padding: 22px 0; display: flex; justify-content: space-between; gap: 28px; color: #5d6678; border-top: 1px solid rgba(255,255,255,.08); font: 400 8px/1.5 var(--mono); }

/* Service detail pages */
.service-page { color: var(--ink); background: var(--paper); }
.service-page .site-header { background: var(--ink); }
.service-hero {
  padding: 180px 0 105px;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(255,255,255,.026) 1px, transparent 1px) 0 0 / 70px 70px,
    linear-gradient(rgba(255,255,255,.026) 1px, transparent 1px) 0 0 / 70px 70px,
    var(--ink);
}
.breadcrumb { margin-bottom: 45px; display: flex; align-items: center; gap: 10px; color: #7f899c; font: 500 9px/1 var(--mono); text-transform: uppercase; }
.breadcrumb a { color: #aeb7c7; text-decoration: none; }
.service-hero-grid { display: grid; grid-template-columns: 1.12fr .88fr; gap: 100px; align-items: end; }
.service-hero h1 { margin-bottom: 30px; max-width: 800px; font-size: clamp(52px, 7vw, 88px); line-height: .99; font-weight: 600; }
.service-hero h1 em { color: var(--blue-bright); font-style: normal; }
.service-hero-lede { max-width: 670px; color: #aeb7c9; font-size: 18px; line-height: 1.75; }
.service-hero-aside { padding: 28px; border: 1px solid var(--line-dark); background: rgba(255,255,255,.025); }
.service-hero-aside > span { color: var(--mint); font: 500 9px/1 var(--mono); letter-spacing: .1em; }
.service-hero-aside ul { margin: 22px 0 28px; padding: 0; list-style: none; }
.service-hero-aside li { padding: 10px 0; border-bottom: 1px solid var(--line-dark); color: #c3cad7; font-size: 13px; }
.service-hero-aside li::before { content: "↳"; margin-right: 10px; color: var(--coral); }
.service-intro-grid { display: grid; grid-template-columns: .73fr 1.27fr; gap: 120px; }
.service-intro-grid h2 { margin: 0; font-size: clamp(38px, 4vw, 57px); line-height: 1.1; font-weight: 600; }
.service-intro-grid h2 em { color: var(--blue); font-style: normal; }
.prose-large { color: var(--paper-muted); font-size: 18px; line-height: 1.85; }
.prose-large strong { color: var(--ink); }
.capability-section { background: var(--paper-2); }
.capability-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.capability-card { min-height: 300px; padding: 34px; border: 1px solid var(--line-light); background: var(--paper); }
.capability-card > span { color: var(--blue); font: 500 10px/1 var(--mono); }
.capability-card h3 { margin: 48px 0 15px; font-size: 25px; }
.capability-card p { color: var(--paper-muted); font-size: 14px; }
.capability-card ul { margin: 22px 0 0; padding: 18px 0 0; list-style: none; border-top: 1px solid var(--line-light); }
.capability-card li { margin: 7px 0; font-size: 12px; }
.capability-card li::before { content: "•"; margin-right: 9px; color: var(--coral); }
.outcome-band { color: var(--white); background: var(--ink-2); }
.outcome-grid { display: grid; grid-template-columns: .88fr 1.12fr; gap: 110px; align-items: center; }
.outcome-grid h2 { font-size: clamp(40px, 4.5vw, 64px); line-height: 1.08; font-weight: 600; }
.outcome-grid h2 em { color: var(--mint); font-style: normal; }
.outcome-list { border-top: 1px solid var(--line-dark); }
.outcome-list div { padding: 20px 0; display: grid; grid-template-columns: 55px 1fr; gap: 15px; border-bottom: 1px solid var(--line-dark); }
.outcome-list span { color: var(--blue-bright); font: 500 10px/1.6 var(--mono); }
.outcome-list strong { font-size: 17px; }
.outcome-list p { margin: 5px 0 0; color: #909aac; font-size: 13px; }
.outcome-list .experience-note { margin: 24px 0 0; color: #7f899c; font-size: 11px; line-height: 1.7; }
.faq-grid { display: grid; grid-template-columns: .65fr 1.35fr; gap: 110px; }
.faq-grid h2 { font-size: clamp(40px, 4vw, 57px); line-height: 1.05; }
.faq-list { border-top: 1px solid var(--line-light); }
.faq-item { border-bottom: 1px solid var(--line-light); }
.faq-item button { width: 100%; padding: 22px 0; display: flex; justify-content: space-between; gap: 20px; border: 0; background: transparent; text-align: left; font-weight: 700; cursor: pointer; }
.faq-item button span:last-child { color: var(--blue); font-family: var(--mono); }
.faq-answer { display: none; padding: 0 45px 23px 0; color: var(--paper-muted); font-size: 14px; }
.faq-item.is-open .faq-answer { display: block; }
.service-cta { padding: 90px 0; color: var(--white); background: #315fcf; }
.service-cta .shell { display: flex; align-items: center; justify-content: space-between; gap: 60px; }
.service-cta h2 { max-width: 700px; margin: 0; font-size: clamp(38px, 4vw, 58px); line-height: 1.05; }
.legal-page { padding: 160px 0 100px; background: var(--paper); }
.legal-wrap { width: min(760px, calc(100vw - 48px)); margin: auto; }
.legal-wrap h1 { font-size: clamp(46px, 6vw, 70px); }
.legal-wrap h2 { margin-top: 42px; font-size: 24px; }
.legal-wrap p, .legal-wrap li { color: var(--paper-muted); }
.legal-wrap a { color: var(--blue); }

/* Reveal and accessibility */
.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.js .reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .08s !important; }
.reveal-delay-2 { transition-delay: .16s !important; }
.reveal-delay-3 { transition-delay: .24s !important; }
.reveal-delay-4 { transition-delay: .32s !important; }
:focus-visible { outline: 3px solid var(--mint); outline-offset: 4px; }

/* Responsive */
@media (max-width: 1020px) {
  .hero-grid { grid-template-columns: 1fr; gap: 70px; }
  .hero { min-height: 0; }
  .system-stage { width: min(620px, 100%); }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .service-card:last-child { grid-column: 1 / -1; min-height: 440px; }
  .principles-grid, .contact-grid, .claim-grid, .service-intro-grid, .outcome-grid, .faq-grid { gap: 60px; }
  .product-case { grid-template-columns: 1fr; }
  .product-visual { min-height: 530px; }
  .service-hero-grid { grid-template-columns: 1fr; gap: 50px; }
  .service-hero-aside { max-width: 560px; }
  .process-track { grid-template-columns: 1fr 1fr; }
  .process-step { border-bottom: 1px solid var(--line-light); }
  .process-step:nth-child(2) { border-right: 0; }
  .footer-main { grid-template-columns: 1fr; gap: 50px; }
}

@media (max-width: 760px) {
  :root { --shell: min(100% - 32px, 640px); }
  .section-pad { padding: 82px 0; }
  .site-header, .site-header.is-stuck { height: 68px; }
  .nav-toggle { position: relative; z-index: 3; width: 54px; height: 42px; padding: 0; display: block; color: var(--white); }
  .nav-toggle span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
  .nav-toggle i { position: absolute; right: 0; width: 23px; height: 1px; background: currentColor; transition: transform .25s, top .25s; }
  .nav-toggle i:nth-of-type(1) { top: 16px; }
  .nav-toggle i:nth-of-type(2) { top: 25px; }
  .nav-toggle[aria-expanded="true"] i:nth-of-type(1) { top: 21px; transform: rotate(45deg); }
  .nav-toggle[aria-expanded="true"] i:nth-of-type(2) { top: 21px; transform: rotate(-45deg); }
  .site-nav {
    position: fixed;
    inset: 0;
    padding: 110px 24px 40px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(7,11,20,.98);
  }
  .site-nav.is-open { display: flex; }
  .site-nav > a { padding: 16px 0; font-size: 23px; border-bottom: 1px solid var(--line-dark); }
  .site-nav .nav-cta { margin: 25px 0 0; padding: 15px; justify-content: space-between; font-size: 15px; }
  .hero { padding-top: 128px; padding-bottom: 42px; }
  .hero-grid { gap: 52px; }
  .hero-copy h1 { font-size: clamp(47px, 14vw, 68px); }
  .hero-lede { font-size: 16px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 21px; }
  .hero-proof { flex-wrap: wrap; gap: 13px 20px; margin-top: 40px; }
  .system-stage { min-height: 420px; }
  .stage-map { height: 332px; }
  .signal-card { width: 125px; padding: 10px; }
  .signal-one { left: 16px; top: 34px; }
  .signal-two { right: 12px; top: 122px; }
  .signal-three { left: 22px; bottom: 36px; }
  .stage-result { width: 132px; }
  .route-one { left: 114px; width: 130px; }
  .route-two { left: 126px; width: 135px; top: 232px; }
  .capability-strip { margin-top: 56px; display: grid; grid-template-columns: 1fr 1fr; gap: 17px; }
  .capability-strip i { display: none; }
  .section-heading { margin-bottom: 45px; }
  .section-heading h2, .principles-copy h2, .claim-copy h2, .contact-copy h2 { font-size: 42px; }
  .section-heading-row { display: block; }
  .section-heading-row > p { margin-top: 25px; }
  .service-grid, .principles-grid, .claim-grid, .contact-grid, .service-intro-grid, .outcome-grid, .faq-grid, .capability-cards { grid-template-columns: 1fr; }
  .service-card, .service-card:last-child { grid-column: auto; min-height: 510px; }
  .principles-copy { position: relative; top: 0; }
  .principle { grid-template-columns: 45px 1fr; }
  .product-visual { min-height: 410px; padding-inline: 10px; }
  .product-window { width: 92%; transform: none; }
  .window-body { height: 260px; }
  .chart-card { height: 125px; }
  .agent-flow { min-height: 68px; margin-top: 8px; gap: 4px; }
  .agent-flow div { padding: 6px 4px; }
  .agent-flow span, .agent-flow small { font-size: 6px; }
  .agent-flow strong { font-size: 8px; }
  .chart-bars { height: 74px; }
  .floating-label { display: none; }
  .product-copy { padding: 45px 27px; }
  .claim-matrix div { min-height: 145px; padding: 18px; }
  .process-track { grid-template-columns: 1fr; }
  .process-step, .process-step + .process-step { min-height: 315px; padding: 28px 0; border-right: 0; }
  .step-line { margin: 25px 0 35px; }
  .contact-form { padding: 27px 20px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .form-submit { align-items: flex-start; flex-direction: column; }
  .footer-links { grid-template-columns: 1fr 1fr; gap: 38px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .service-hero { padding: 135px 0 80px; }
  .service-hero h1 { font-size: clamp(48px, 14vw, 70px); }
  .service-hero-grid { gap: 38px; }
  .service-intro-grid, .outcome-grid, .faq-grid { gap: 40px; }
  .service-cta .shell { align-items: flex-start; flex-direction: column; gap: 35px; }
}

@media (max-width: 460px) {
  .claim-matrix, .metric-row { grid-template-columns: 1fr; }
  .metric-row > div:nth-child(2) { display: none; }
  .footer-links { grid-template-columns: 1fr; }
  .choice-row { flex-direction: column; }
  .choice-row label { width: 100%; text-align: center; }
}

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