:root {
  --ink: #07110f;
  --ink-2: #0b1916;
  --ink-3: #11231f;
  --paper: #bfe2da;
  --paper-2: #8fcabc;
  --paper-panel: rgba(247, 252, 250, .84);
  --paper-panel-strong: #f4faf7;
  --white: #fffdf7;
  --text: #edf4ef;
  --muted: #a3b4ae;
  --paper-text: #0a1b17;
  --paper-muted: #3e5a53;
  --teal: #35e0c1;
  --teal-deep: #067966;
  --cobalt: #4778ff;
  --coral: #ff7a61;
  --line: rgba(236, 245, 240, .16);
  --dark-line: rgba(7, 17, 15, .15);
  --container: 1280px;
  --header: 78px;
  --ease: cubic-bezier(.2, .75, .2, 1);
  --shadow: 0 30px 80px rgba(0, 0, 0, .25);
  --shadow-float: 0 28px 65px rgba(5, 43, 35, .16), 0 4px 12px rgba(5, 43, 35, .08);
  --shadow-float-hover: 0 36px 82px rgba(5, 43, 35, .22), 0 8px 20px rgba(5, 43, 35, .1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header); }
body {
  margin: 0;
  color: var(--text);
  background: var(--ink);
  font-family: Inter, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
::selection { color: var(--ink); background: var(--teal); }
:focus-visible { outline: 2px solid var(--teal); outline-offset: 4px; }
.sr-only, .hp-field {
  position: absolute !important; width: 1px !important; height: 1px !important;
  padding: 0 !important; margin: -1px !important; overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important; white-space: nowrap !important; border: 0 !important;
}
.container { width: min(var(--container), calc(100% - 64px)); margin-inline: auto; }

/* Architectural header */
.site-header {
  position: fixed; inset: 0 0 auto; z-index: 50;
  min-height: var(--header); padding: 15px max(32px, calc((100vw - var(--container)) / 2));
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  color: var(--white); border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease, backdrop-filter .25s ease;
}
.site-header.is-scrolled, .site-header.nav-visible {
  background: rgba(7, 17, 15, .9); border-color: var(--line); backdrop-filter: blur(18px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Avenir Next", Avenir, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .015em;
  white-space: nowrap;
}
.brand-mark { display: grid; place-items: center; width: 32px; height: 32px; }
.brand-mark img { width: 29px; height: 27px; object-fit: contain; }
.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.4vw, 24px);
  font-family: "Avenir Next", Avenir, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .075em;
  text-transform: uppercase;
}
.site-nav > a:not(.nav-cta) { position: relative; padding-block: 10px; color: rgba(255,255,255,.76); }
.site-nav > a:not(.nav-cta)::after { content: ""; position: absolute; inset: auto 0 5px; height: 1px; background: var(--teal); transform: scaleX(0); transform-origin: right; transition: transform .25s var(--ease); }
.site-nav > a:hover, .site-nav > a:focus-visible { color: white; }
.site-nav > a:hover::after, .site-nav > a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.nav-cta { min-height: 42px; display: inline-flex; align-items: center; padding: 8px 17px; border: 1px solid var(--teal); background: var(--teal); color: var(--ink); font-size: 10px; font-weight: 700; letter-spacing: .1em; transition: transform .2s var(--ease), background .2s ease; }
.nav-cta:hover { transform: translateY(-2px); background: #6ef0d8; }
.language-switch { display: grid; grid-template-columns: repeat(2, 35px); padding: 3px; border: 1px solid rgba(255,255,255,.32); background: rgba(255,255,255,.05); }
.language-switch a { min-height: 30px; display: grid; place-items: center; color: rgba(255,255,255,.55); font-size: 10px; font-weight: 850; letter-spacing: .08em; }
.language-switch a:hover { color: white; }
.language-switch a.is-active { color: var(--ink); background: var(--white); }
.language-switch a:focus-visible { outline-offset: 1px; }
.nav-toggle { display: none; position: relative; width: 46px; height: 46px; padding: 0; border: 1px solid var(--line); background: transparent; color: white; }
.nav-toggle > span:not(.sr-only) { position: absolute; left: 13px; width: 19px; height: 1px; background: currentColor; transition: transform .22s ease, top .22s ease; }
.nav-toggle > span:first-child { top: 18px; }
.nav-toggle > span:nth-child(2) { top: 26px; }
.nav-toggle > span:nth-child(3) { display: none; }
.nav-toggle[aria-expanded="true"] > span:first-child { top: 22px; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] > span:nth-child(2) { top: 22px; transform: rotate(-45deg); }

/* Hero / atelier system map */
.hero { position: relative; min-height: max(760px, 100svh); overflow: hidden; border-bottom: 1px solid var(--line); }
.hero-grid, .page-hero::before {
  position: absolute; inset: 0; content: ""; pointer-events: none; opacity: .42;
  background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
}
.hero::after { content: ""; position: absolute; width: 34vw; height: 34vw; top: -15vw; right: -8vw; border: 1px solid rgba(53,224,193,.23); border-radius: 50%; box-shadow: 0 0 100px rgba(53,224,193,.08); }
.hero-content { position: relative; z-index: 3; width: min(56vw, 850px); padding: clamp(150px, 18vh, 210px) 0 250px max(32px, calc((100vw - var(--container)) / 2)); }
.eyebrow { margin: 0 0 24px; color: var(--teal); font-size: 11px; font-weight: 800; letter-spacing: .18em; line-height: 1.4; text-transform: uppercase; }
.eyebrow::before { content: ""; display: inline-block; width: 28px; height: 1px; margin: 0 10px 3px 0; background: currentColor; }
h1, h2, h3, p { overflow-wrap: normal; }
h1, h2, h3 { margin-top: 0; font-weight: 620; letter-spacing: -.045em; line-height: .98; text-wrap: balance; }
.hero h1 { margin: 0; font-size: clamp(54px, 7.6vw, 118px); }
.hero h1 > span { display: block; }
.hero h1 > span { animation: hero-line .75s var(--ease) both; }
.hero h1 > span:nth-child(2) { animation-delay: .08s; }
.hero h1 > span:nth-child(3) { animation-delay: .16s; }
@keyframes hero-line { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
.hero h1 .accent-line { color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.7); }
.hero-copy { width: min(610px, 90%); margin: 34px 0 0; color: #bac9c3; font-size: clamp(17px, 1.4vw, 20px); line-height: 1.55; }
.hero-actions, .page-actions, .section-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }
.button { min-height: 52px; display: inline-flex; align-items: center; justify-content: center; gap: 30px; padding: 12px 21px; border: 1px solid transparent; font-size: 13px; font-weight: 760; letter-spacing: .01em; transition: transform .22s var(--ease), background .22s ease, color .22s ease, border-color .22s ease; }
.button span { transition: transform .22s var(--ease); }
.button:hover { transform: translateY(-3px); }
.button:hover span { transform: translate(4px, -2px); }
.button.primary { color: var(--ink); background: var(--teal); border-color: var(--teal); }
.button.primary:hover { background: #6df0d8; }
.button.secondary { color: inherit; background: transparent; border-color: rgba(255,255,255,.34); }
.button.secondary:hover { border-color: var(--teal); }
.hero-orbit { position: absolute; z-index: 2; top: 15%; right: max(24px, calc((100vw - var(--container)) / 2)); width: min(35vw, 560px); border: 1px solid var(--line); background: rgba(10,26,22,.68); box-shadow: var(--shadow); backdrop-filter: blur(12px); transform: none; }
.orbit-head, .orbit-status { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 11px 14px; border-bottom: 1px solid var(--line); color: var(--muted); font-size: 9px; font-weight: 750; letter-spacing: .13em; }
.orbit-canvas { position: relative; aspect-ratio: 620/420; overflow: hidden; background: radial-gradient(circle at 50% 50%, rgba(71,120,255,.15), transparent 34%); }
.orbit-canvas svg { width: 100%; height: 100%; }
.orbit-canvas path { fill: none; stroke: rgba(255,255,255,.18); stroke-width: 1; }
.orbit-canvas circle { fill: var(--ink); stroke: var(--teal); stroke-width: 2; }
.orbit-canvas .signal-a { stroke: var(--teal); stroke-dasharray: 8 10; animation: signal 8s linear infinite; }
.orbit-canvas .signal-b { stroke: rgba(71,120,255,.8); stroke-dasharray: 3 9; animation: signal 12s linear reverse infinite; }
.orbit-node, .orbit-core { position: absolute; z-index: 2; display: block; color: white; font-size: 10px; font-weight: 800; letter-spacing: .12em; line-height: 1.4; }
.orbit-node { padding: 4px 6px; background: rgba(7,17,15,.88); }
.orbit-node small, .orbit-core small { display: inline-block; color: #afc0ba; font-size: 8px; font-weight: 650; }
.node-web { top: 5%; left: 8%; }.node-code { top: 5%; right: 8%; }.node-data { bottom: 9%; left: 8%; }.node-human { bottom: 9%; right: 7%; }
.orbit-core { inset: 50% auto auto 50%; width: 108px; height: 108px; display: grid; place-items: center; text-align: center; border: 1px solid var(--teal); background: var(--ink-2); transform: translate(-50%,-50%); box-shadow: 0 0 45px rgba(53,224,193,.14); }
.orbit-core img { width: 35px; }
.orbit-status { border-top: 1px solid var(--line); border-bottom: 0; }
.orbit-status i { display: inline-block; width: 6px; height: 6px; margin-right: 7px; background: var(--coral); border-radius: 50%; }
@keyframes signal { to { stroke-dashoffset: -180; } }
.hero-proof { position: absolute; z-index: 4; inset: auto 0 0; min-height: 144px; display: grid; grid-template-columns: repeat(3,1fr); padding-inline: max(32px, calc((100vw - var(--container)) / 2)); border-top: 1px solid var(--line); background: rgba(7,17,15,.78); backdrop-filter: blur(12px); }
.hero-proof > div { position: relative; padding: 24px 30px 24px 0; }
.hero-proof > div + div { padding-left: 30px; border-left: 1px solid var(--line); }
.hero-proof strong, .hero-proof span { display: block; }
.hero-proof strong { margin-bottom: 6px; font-size: 13px; }
.hero-proof span { color: var(--muted); font-size: 12px; line-height: 1.5; }

/* Shared editorial sections */
.section { position: relative; padding: clamp(90px, 11vw, 160px) 0; background: var(--ink); }
.section.light {
  color: var(--paper-text);
  background:
    radial-gradient(circle at 8% 12%, rgba(255,255,255,.38), transparent 28%),
    radial-gradient(circle at 92% 82%, rgba(53,224,193,.18), transparent 30%),
    linear-gradient(135deg, #cbe9e2 0%, var(--paper) 52%, #abd9ce 100%);
}
.section.light .eyebrow { color: var(--teal-deep); }
.section.light .section-lead, .section.light p { color: var(--paper-muted); }
.section.light .service-grid,
.section.light .decision-grid,
.section.light .proof-grid,
.section.light .reference-grid,
.section.light .page-card-grid {
  border: 1px solid rgba(9,45,37,.15);
  background: var(--paper-panel);
  box-shadow: var(--shadow-float);
}
.section.light .service-card::after { background: var(--paper-panel-strong); }
.section.light .page-card-grid article {
  background: rgba(255,255,255,.2);
  transition: transform .28s var(--ease), background .28s ease, box-shadow .28s ease;
}
.section.light .page-card-grid article:hover {
  z-index: 2;
  background: var(--paper-panel-strong);
  box-shadow: var(--shadow-float-hover);
  transform: translateY(-6px);
}
.section.light .content-panel {
  margin-bottom: 14px;
  padding: 27px 30px;
  border: 1px solid rgba(9,45,37,.12);
  background: var(--paper-panel);
  box-shadow: 0 16px 38px rgba(5,43,35,.1);
  transition: transform .25s var(--ease), box-shadow .25s ease;
}
.section.light .content-panel:hover { transform: translateY(-4px); box-shadow: var(--shadow-float); }
.section.light .decision-grid {
  gap: clamp(16px,2vw,26px);
  border: 0;
  background: transparent;
  box-shadow: none;
}
.section.light .decision-grid article,
.section.light .decision-grid article + article {
  min-height: 410px;
  padding: 34px;
  overflow: hidden;
  border: 1px solid rgba(9,45,37,.13);
  background:
    linear-gradient(135deg, rgba(255,255,255,.94), rgba(238,248,244,.82));
  box-shadow: var(--shadow-float);
  transition: transform .28s var(--ease), box-shadow .28s ease, background .28s ease;
}
.section.light .decision-grid article::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 58px;
  height: 3px;
  background: linear-gradient(90deg,var(--teal-deep),var(--teal));
  transition: width .35s var(--ease);
}
.section.light .decision-grid article:hover {
  z-index: 2;
  background: var(--paper-panel-strong);
  box-shadow: var(--shadow-float-hover);
  transform: translateY(-8px);
}
.section.light .decision-grid article:hover::before { width: 100%; }
.section.light .decision-grid article::after { bottom: 0; }
.section-heading { display: grid; grid-template-columns: minmax(170px,.55fr) 1.65fr; gap: 50px; align-items: start; margin-bottom: 74px; }
.section-heading .eyebrow { margin-top: 8px; }
.section-heading h2 { max-width: 890px; margin: 0; font-size: clamp(42px, 5.4vw, 78px); }
.section-heading.compact h2 { max-width: 760px; }
.intro-section { padding-block: clamp(90px,10vw,145px); }
.intro-grid, .split-feature { display: grid; grid-template-columns: 1.2fr .8fr; gap: clamp(40px, 8vw, 130px); align-items: end; }
.intro-grid h2, .split-feature h2, .product-grid h2, .about-grid h2, .contact-grid h2, .contact-grid h1 { font-size: clamp(40px, 4.8vw, 70px); }
.section-lead { margin: 0; color: var(--muted); font-size: clamp(18px,1.7vw,23px); line-height: 1.55; }
.system-list { display: grid; gap: 12px; margin-top: 26px; padding: 0; list-style: none; color: var(--muted); }
.system-list li { position: relative; padding-left: 24px; font-size: 15px; line-height: 1.6; }
.system-list li::before { content: ""; position: absolute; left: 0; top: .75em; width: 10px; height: 1px; background: var(--teal); box-shadow: 6px 0 0 var(--cobalt); }

/* Capabilities: connected ecosystem */
.service-grid { position: relative; display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid var(--dark-line); border-left: 1px solid var(--dark-line); }
.service-grid::after { content: "SYSTEM / 01—08"; position: absolute; right: 0; top: -28px; color: #71807b; font-size: 9px; font-weight: 800; letter-spacing: .15em; }
.service-card { position: relative; min-height: 330px; padding: 30px; border-right: 1px solid var(--dark-line); border-bottom: 1px solid var(--dark-line); background: transparent; transition: color .25s ease, background .25s ease; }
.service-card::after { content: ""; position: absolute; left: -4px; top: 48px; width: 7px; height: 7px; border: 1px solid var(--teal-deep); background: var(--paper); border-radius: 50%; }
.service-card:hover { color: var(--white); background: var(--ink-2); }
.service-card:hover p { color: #aebdb7; }
.service-icon { width: 42px; height: 42px; display: grid; place-items: center; margin-bottom: 70px; color: var(--teal-deep); border: 1px solid currentColor; }
.service-icon svg { width: 23px; fill: none; stroke: currentColor; stroke-width: 1.3; }
.service-card h3 { font-size: clamp(25px,2.2vw,34px); line-height: 1.05; }
.service-card p { margin: 18px 0 0; color: var(--paper-muted); font-size: 14px; }
.service-grid-dark { border-color: var(--line); }
.service-grid-dark .service-card { border-color: var(--line); }
.service-grid-dark .service-card::after { border-color: var(--teal); background: var(--ink); }
.service-grid-dark .service-card p { color: var(--muted); }
.service-grid-dark .article-kicker { color: var(--teal) !important; }

/* Signature system */
.product-section { background: var(--ink-2); overflow: hidden; }
.product-section::before { content: "02"; position: absolute; right: -2vw; top: 20px; color: rgba(255,255,255,.035); font-size: clamp(180px,28vw,420px); font-weight: 700; line-height: 1; }
.product-grid { position: relative; display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(55px,8vw,120px); align-items: center; }
.check-list { margin: 38px 0 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding: 16px 0 16px 35px; border-top: 1px solid var(--line); color: var(--muted); }
.check-list li::before { content: "↳"; position: absolute; left: 3px; color: var(--teal); }
.system-preview { position: relative; padding: 20px; border: 1px solid rgba(53,224,193,.34); background: #0a1513; box-shadow: var(--shadow); }
.system-preview::before { content: "LIVE SYSTEM / FLOW"; position: absolute; top: -26px; right: 0; color: var(--teal); font-size: 9px; letter-spacing: .15em; }
.preview-top { display: flex; gap: 7px; padding-bottom: 15px; border-bottom: 1px solid var(--line); }
.preview-top span { width: 7px; height: 7px; border: 1px solid var(--muted); border-radius: 50%; }
.preview-panel { padding: 30px; margin: 20px 0; border: 1px solid var(--line); background: var(--ink-3); }
.preview-panel p, .preview-panel strong { display: block; }
.preview-panel p { margin: 0 0 8px; color: var(--teal); font-size: 10px; letter-spacing: .15em; text-transform: uppercase; }
.preview-panel strong { max-width: 460px; font-size: clamp(24px,3vw,40px); line-height: 1.1; }
.bar { height: 2px; margin-top: 25px; background: rgba(255,255,255,.1); overflow: hidden; }
.bar span { display: block; width: 72%; height: 100%; background: linear-gradient(90deg,var(--teal),var(--cobalt)); }
.preview-columns { display: grid; grid-template-columns: repeat(2,1fr); border: 1px solid var(--line); }
.preview-columns > div { padding: 20px; }.preview-columns > div + div { border-left: 1px solid var(--line); }
.preview-columns small, .preview-columns strong { display: block; }.preview-columns small { color: var(--muted); }.preview-columns strong { margin-top: 5px; }
.preview-list { margin-top: 20px; border-top: 1px solid var(--line); }
.preview-list span { display: block; padding: 13px 5px; border-bottom: 1px solid var(--line); color: var(--muted); font-size: 13px; }
.preview-list span::before { content: "●"; margin-right: 12px; color: var(--teal); font-size: 8px; }

/* Technology */
.decision-grid { display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid var(--dark-line); }
.decision-grid article { position: relative; min-height: 390px; padding: 34px 34px 34px 0; border-bottom: 1px solid var(--dark-line); }
.decision-grid article + article { padding-left: 34px; border-left: 1px solid var(--dark-line); }
.decision-grid article > span { display: block; margin-bottom: 110px; color: var(--teal-deep); font: 800 11px/1 monospace; }
.decision-grid h3 { font-size: clamp(28px,2.7vw,40px); line-height: 1.05; }
.decision-grid p { max-width: 34ch; color: var(--paper-muted); }
.decision-grid article:hover::after { width: 100%; }
.decision-grid article::after { content: ""; position: absolute; left: 0; bottom: -1px; width: 0; height: 2px; background: var(--teal-deep); transition: width .4s var(--ease); }

/* Image band */
.visual-band { position: relative; min-height: 680px; display: grid; grid-template-columns: 1.25fr .75fr; background: var(--ink); overflow: hidden; }
.visual-band img { width: 100%; height: 100%; min-height: 680px; object-fit: cover; filter: saturate(.65) contrast(1.08); }
.optimization-visual { position: relative; min-height: 680px; display: flex; flex-direction: column; overflow: hidden; border-right: 1px solid var(--line); background: radial-gradient(circle at 50% 46%,rgba(53,224,193,.12),transparent 25%),linear-gradient(145deg,#091713,#0d2520); }
.optimization-visual::before { content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .35; background-image: linear-gradient(rgba(255,255,255,.035) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.035) 1px,transparent 1px); background-size: 40px 40px; mask-image: linear-gradient(to bottom,black,transparent 95%); }
.optimization-visual::after { content: ""; position: absolute; z-index: 1; inset: 43px auto 43px -18%; width: 16%; pointer-events: none; opacity: 0; background: linear-gradient(90deg,transparent,rgba(53,224,193,.1),transparent); transform: skewX(-12deg); }
.optimization-visual:hover::after { animation: optimizer-scan 1.35s var(--ease) both; }
.opt-head, .opt-foot { position: relative; z-index: 3; min-height: 43px; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 11px clamp(16px,2.4vw,32px); color: #9eb2ab; font: 750 9px/1.3 "SFMono-Regular",Consolas,monospace; letter-spacing: .13em; }
.opt-head { border-bottom: 1px solid var(--line); }.opt-foot { border-top: 1px solid var(--line); }
.opt-head span:first-child, .opt-foot span:first-child { color: var(--teal); }
.opt-head span:last-child { color: var(--coral); }
.opt-foot i { display: inline-block; width: 6px; height: 6px; margin-right: 7px; background: var(--teal); border-radius: 50%; box-shadow: 0 0 12px rgba(53,224,193,.7); }
.opt-stage { position: relative; z-index: 2; flex: 1; min-height: 590px; }
.opt-stage > svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.opt-grid path { fill: none; stroke: rgba(255,255,255,.09); stroke-width: 1; vector-effect: non-scaling-stroke; }
.opt-path path { fill: none; stroke-width: 1.5; vector-effect: non-scaling-stroke; }
.input-path path { stroke: rgba(53,224,193,.78); }.output-path path { stroke: rgba(71,120,255,.88); }
.opt-nodes circle { fill: var(--ink); stroke: var(--teal); stroke-width: 2; vector-effect: non-scaling-stroke; }
.opt-column { position: absolute; z-index: 3; top: 8%; bottom: 22%; width: 24%; display: grid; grid-template-rows: auto repeat(4,1fr); gap: 8px; }
.opt-inputs { left: 5%; }.opt-outputs { right: 5%; }
.opt-column > span:not(.opt-caption) { display: flex; align-items: center; gap: 10px; min-height: 42px; padding: 9px 11px; border: 1px solid var(--line); color: #d9e4df; background: rgba(7,17,15,.86); box-shadow: 0 10px 24px rgba(0,0,0,.18); font-size: clamp(10px,1vw,13px); font-weight: 690; transition: transform .3s var(--ease), border-color .3s ease, background .3s ease, box-shadow .3s ease; }
.opt-column > span:not(.opt-caption) small { color: var(--teal); font: 750 8px/1 monospace; }
.opt-outputs > span:not(.opt-caption) { border-color: rgba(71,120,255,.35); background: rgba(14,31,35,.92); }
.opt-outputs > span:not(.opt-caption) small { color: #83a2ff; }
.opt-caption { align-self: center; color: #8fa49d; font: 750 8px/1.3 monospace; letter-spacing: .12em; }
.opt-core { position: absolute; z-index: 4; left: 50%; top: 47%; width: 25%; aspect-ratio: 1; display: grid; place-content: center; gap: 8px; padding: 18px; text-align: center; border: 1px solid var(--teal); color: white; background: #0c1d19; box-shadow: 0 0 0 12px rgba(53,224,193,.035),0 24px 55px rgba(0,0,0,.32),0 0 42px rgba(53,224,193,.12); transform: translate(-50%,-50%); transition: transform .35s var(--ease), box-shadow .35s ease, background .35s ease; }
.opt-core::before, .opt-core::after { content: ""; position: absolute; width: 10px; height: 10px; border-color: var(--coral); }
.opt-core::before { top: -1px; left: -1px; border-top: 2px solid; border-left: 2px solid; }.opt-core::after { right: -1px; bottom: -1px; border-right: 2px solid; border-bottom: 2px solid; }
.opt-core > span { color: var(--teal); font: 800 8px/1 monospace; letter-spacing: .13em; }
.opt-core strong { font-size: clamp(14px,1.6vw,22px); line-height: 1.05; letter-spacing: -.03em; }
.opt-core small { color: var(--muted); font-size: clamp(8px,.8vw,10px); line-height: 1.35; }
.opt-human { position: absolute; z-index: 4; left: 14%; right: 14%; bottom: 6%; min-height: 52px; display: grid; grid-template-columns: 10px 1fr auto; align-items: center; gap: 12px; padding: 10px 15px; border: 1px solid rgba(255,122,97,.38); color: #f3f7f5; background: rgba(7,17,15,.92); box-shadow: 0 16px 35px rgba(0,0,0,.24); transition: transform .3s var(--ease), border-color .3s ease, box-shadow .3s ease; }
.opt-human i { width: 7px; height: 7px; background: var(--coral); border-radius: 50%; box-shadow: 0 0 12px rgba(255,122,97,.6); }.opt-human span { font-size: 12px; font-weight: 750; }.opt-human small { color: #c98d80; font: 700 8px/1 monospace; letter-spacing: .1em; }
.js .optimization-visual.reveal .opt-path path { stroke-dasharray: 1200; stroke-dashoffset: 1200; transition: stroke-dashoffset 1.4s var(--ease) .2s; }
.js .optimization-visual.reveal .opt-nodes { opacity: 0; transition: opacity .35s ease .9s; }
.js .optimization-visual.reveal.is-visible .opt-path path { stroke-dashoffset: 0; }
.js .optimization-visual.reveal.is-visible .opt-nodes { opacity: 1; }
.optimization-visual:hover .opt-inputs > span:not(.opt-caption) { border-color: rgba(53,224,193,.5); background: rgba(10,31,26,.96); box-shadow: 0 14px 30px rgba(0,0,0,.24); transform: translateX(7px); }
.optimization-visual:hover .opt-outputs > span:not(.opt-caption) { border-color: rgba(108,143,255,.65); background: rgba(17,38,43,.98); box-shadow: 0 14px 30px rgba(0,0,0,.24); transform: translateX(-7px); }
.optimization-visual:hover .opt-column > span:nth-child(3) { transition-delay: .04s; }
.optimization-visual:hover .opt-column > span:nth-child(4) { transition-delay: .08s; }
.optimization-visual:hover .opt-column > span:nth-child(5) { transition-delay: .12s; }
.optimization-visual:hover .opt-core { background: #102a23; box-shadow: 0 0 0 15px rgba(53,224,193,.055),0 30px 65px rgba(0,0,0,.38),0 0 62px rgba(53,224,193,.28); transform: translate(-50%,-50%) scale(1.045); }
.optimization-visual:hover .opt-human { border-color: rgba(255,122,97,.75); box-shadow: 0 20px 42px rgba(0,0,0,.3),0 0 24px rgba(255,122,97,.09); transform: translateY(-4px); }
.optimization-visual:hover .opt-human i { animation: optimizer-pulse .65s var(--ease) 2 alternate; }
.js .optimization-visual.reveal.is-visible:hover .opt-path path { stroke-dasharray: 9 10; animation: optimizer-flow .8s linear infinite; }
.optimization-visual:hover .opt-nodes circle { filter: drop-shadow(0 0 5px var(--teal)); animation: optimizer-node .55s var(--ease) 2 alternate; }
@keyframes optimizer-scan { 0% { left: -18%; opacity: 0; } 20% { opacity: 1; } 100% { left: 105%; opacity: 0; } }
@keyframes optimizer-flow { to { stroke-dashoffset: -38; } }
@keyframes optimizer-pulse { to { transform: scale(1.55); box-shadow: 0 0 18px rgba(255,122,97,.9); } }
@keyframes optimizer-node { to { stroke-width: 4; } }
.visual-copy { padding: clamp(60px,8vw,120px) max(32px,calc((100vw - var(--container))/2)); padding-left: clamp(45px,6vw,90px); align-self: center; }
.visual-copy h2 { font-size: clamp(42px,4.5vw,68px); }
.visual-copy p:not(.eyebrow) { color: var(--muted); }
.planning-list { border-top: 1px solid var(--dark-line); }
.planning-list p { margin: 0; padding: 24px 0; border-bottom: 1px solid var(--dark-line); }

/* Process line */
.process-grid { position: relative; display: grid; grid-template-columns: repeat(5,1fr); }
.process-grid::before { content: ""; position: absolute; left: 3%; right: 3%; top: 14px; height: 1px; background: linear-gradient(90deg,var(--teal),var(--cobalt),var(--teal)); background-size: 200% 100%; transform-origin: left; }
.process-grid::after { content: ""; position: absolute; z-index: 3; left: 3%; top: 9px; width: 11px; height: 11px; border: 2px solid var(--ink); background: var(--teal); border-radius: 50%; box-shadow: 0 0 0 4px rgba(53,224,193,.1),0 0 18px rgba(53,224,193,.65); opacity: 0; pointer-events: none; }
.js .process-grid.reveal::before { transform: scaleX(0); transition: transform 1s var(--ease) .15s; }
.js .process-grid.reveal.is-visible::before { transform: scaleX(1); }
.js .process-grid.reveal.is-visible::after { animation: process-travel-x 2.1s var(--ease) .45s both; }
.process-grid article { position: relative; min-height: 275px; padding: 62px 26px 24px 18px; border: 1px solid transparent; }
.process-grid article::before { content: ""; position: absolute; z-index: 4; top: 8px; left: 0; width: 12px; height: 12px; border: 1px solid var(--teal); background: var(--ink); border-radius: 50%; transition: transform .25s var(--ease), background .25s ease, box-shadow .25s ease; }
.process-grid article::after { content: "↗"; position: absolute; right: 18px; top: 52px; color: var(--teal); font-size: 16px; opacity: 0; transform: translate(-5px,5px); transition: opacity .25s ease, transform .25s var(--ease); }
.process-grid article > span { color: var(--teal); font: 750 10px/1 monospace; }
.process-grid h3 { margin: 22px 0 14px; font-size: clamp(25px,2.5vw,36px); transition: color .25s ease, transform .25s var(--ease); }
.process-grid p { color: var(--muted); font-size: 14px; }
.process-grid article:hover { z-index: 2; border-color: rgba(53,224,193,.14); background: linear-gradient(145deg,rgba(255,255,255,.055),rgba(53,224,193,.025)); box-shadow: 0 22px 50px rgba(0,0,0,.2); transform: translateY(-8px); }
.process-grid article:hover::before { background: var(--teal); box-shadow: 0 0 0 6px rgba(53,224,193,.1),0 0 20px rgba(53,224,193,.7); transform: scale(1.2); }
.process-grid article:hover::after { opacity: 1; transform: none; }
.process-grid article:hover h3 { color: var(--teal); transform: translateX(3px); }
@media (hover:hover) {
  .process-grid:hover::before { animation: process-line-shift 1.6s linear infinite; }
  .js .process-grid.reveal.is-visible:hover::after { animation: process-travel-x 1.65s linear infinite; }
}
@keyframes process-travel-x { 0% { left: 3%; opacity: 0; } 8%,92% { opacity: 1; } 100% { left: calc(97% - 11px); opacity: 0; } }
@keyframes process-line-shift { to { background-position: -200% 0; } }

/* Starting points */
.packages-section { background: var(--ink-2); }
.package-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.package-card { min-height: 380px; padding: 34px; background: var(--ink-2); transition: background .25s ease, transform .25s var(--ease); }
.package-card:hover { z-index: 1; background: var(--ink-3); transform: translateY(-5px); }
.package-card.highlighted { background: #10302a; }
.scope-pill { color: var(--teal); font: 750 10px/1 monospace; letter-spacing: .12em; text-transform: uppercase; }
.package-card h3 { margin-top: 110px; font-size: clamp(28px,2.7vw,40px); }
.package-card p { color: var(--muted); }
.package-card > a { display: inline-block; margin-top: 18px; padding-bottom: 3px; border-bottom: 1px solid var(--teal); font-size: 13px; font-weight: 700; }

/* Editorial cases */
.proof-grid { display: grid; grid-template-columns: 1.25fr .75fr; border-top: 1px solid var(--dark-line); }
.proof-grid article { position: relative; min-height: 410px; padding: 38px; border-right: 1px solid var(--dark-line); border-bottom: 1px solid var(--dark-line); transition: background .25s ease, color .25s ease; }
.proof-grid article:nth-child(3) { grid-column: 1/-1; min-height: 300px; }
.proof-grid article:hover { color: white; background: var(--ink-2); }
.proof-grid article:hover p { color: #afbbb7; }
.proof-grid article > span { color: var(--teal-deep); font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.proof-grid h3 { margin: 74px 0 22px; font-size: clamp(35px,4vw,58px); }
.proof-grid article:nth-child(3) h3 { margin-top: 55px; }
.proof-grid p { max-width: 680px; color: var(--paper-muted); }
.case-link, .case-links a { display: inline-block; margin-top: 22px; font-size: 13px; font-weight: 750; }
.case-link span, .case-links a span, .case-status-button span { display: inline-block; margin-left: 8px; transition: transform .2s; }
.case-link:hover span, .case-links a:hover span { transform: translate(4px,-3px); }
.section.light .proof-grid { gap: clamp(16px,2vw,24px); border: 0; background: transparent; box-shadow: none; }
.section.light .proof-grid article {
  overflow: hidden;
  border: 1px solid rgba(9,45,37,.13);
  box-shadow: var(--shadow-float);
  transition: transform .32s var(--ease), box-shadow .32s ease, border-color .32s ease, background .32s ease;
}
.section.light .proof-grid article::before {
  display: none;
  position: absolute;
  z-index: 0;
  right: 26px;
  top: 16px;
  color: rgba(255,255,255,.07);
  font: 750 clamp(88px,10vw,150px)/1 "Helvetica Neue",Arial,sans-serif;
  letter-spacing: -.08em;
  pointer-events: none;
}
.section.light .proof-grid article::after {
  content: "";
  position: absolute;
  z-index: 2;
  left: 0;
  top: 0;
  width: 72px;
  height: 3px;
  background: var(--teal);
  transition: width .4s var(--ease);
}
.section.light .proof-grid article:nth-child(1) { color: var(--text); background: radial-gradient(circle at 92% 8%,rgba(53,224,193,.13),transparent 30%),var(--ink-2); }
.section.light .proof-grid article:nth-child(2) { color: var(--text); background: radial-gradient(circle at 90% 10%,rgba(71,120,255,.24),transparent 34%),linear-gradient(145deg,#0d1c25,#101d31); }
.section.light .proof-grid article:nth-child(2)::after { background: var(--cobalt); }
.section.light .proof-grid article:nth-child(3) {
  grid-column: 1/-1;
  min-height: 330px;
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  grid-template-rows: auto 1fr auto;
  gap: 20px clamp(40px,7vw,110px);
  color: var(--paper-text);
  background: linear-gradient(135deg,rgba(255,255,255,.96),rgba(229,246,240,.88));
}
.section.light .proof-grid article:nth-child(3)::after { background: var(--coral); }
.section.light .proof-grid article:nth-child(3) > span { grid-column: 1; }
.section.light .proof-grid article:nth-child(3) h3 { grid-column: 1; grid-row: 2/4; align-self: end; margin: 55px 0 0; }
.section.light .proof-grid article:nth-child(3) p { grid-column: 2; grid-row: 2; align-self: end; }
.section.light .proof-grid article:nth-child(3) .case-link { grid-column: 2; grid-row: 3; justify-self: start; }
.section.light .proof-grid article:nth-child(-n+2) p { color: #afc0ba; }
.section.light .proof-grid article:nth-child(-n+2) > span { color: var(--teal); }
.section.light .proof-grid article:nth-child(2) > span { color: #8aa7ff; }
.section.light .proof-grid article > * { position: relative; z-index: 1; }
.section.light .proof-grid article:hover { border-color: rgba(53,224,193,.42); box-shadow: var(--shadow-float-hover); transform: translateY(-9px); }
.section.light .proof-grid article:nth-child(2):hover { border-color: rgba(108,143,255,.55); }
.section.light .proof-grid article:nth-child(2):hover h3,
.section.light .proof-grid article:nth-child(2):hover .case-link { color: #79ead4; }
.section.light .proof-grid article:nth-child(2):hover p { color: #c2e7df; }
.section.light .proof-grid article:nth-child(2):hover > span { color: #92f0de; }
.section.light .proof-grid article:nth-child(3):hover { color: var(--paper-text); background: var(--paper-panel-strong); border-color: rgba(255,122,97,.45); }
.section.light .proof-grid article:hover::after { width: 100%; }
.section.light .proof-grid .case-link { padding-bottom: 4px; border-bottom: 1px solid currentColor; }
.reference-grid { display: grid; grid-template-columns: repeat(2,1fr); border-top: 1px solid var(--dark-line); border-left: 1px solid var(--dark-line); }
.reference-card { position: relative; min-height: 390px; padding: clamp(28px,4vw,48px); border-right: 1px solid var(--dark-line); border-bottom: 1px solid var(--dark-line); transition: color .25s ease, background .25s ease; }
.reference-card-featured { grid-column: 1/-1; min-height: 480px; display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(40px,7vw,100px); align-items: end; }
.reference-card:hover { color: white; background: var(--ink-2); }
.reference-card:hover p { color: #adbbb5; }
.reference-card h2 { margin: 76px 0 0; font-size: clamp(40px,5.4vw,78px); }
.reference-card h3 { margin: 76px 0 20px; font-size: clamp(31px,3.7vw,52px); }
.reference-card p { color: var(--paper-muted); }
.case-label { color: var(--teal-deep); font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.case-tags { display: flex; flex-wrap: wrap; gap: 1px; margin-top: 25px; }
.case-tags span { padding: 7px 10px; color: inherit; border: 1px solid currentColor; font-size: 9px; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
.section.light .reference-grid { gap: clamp(16px,2vw,24px); border: 0; background: transparent; box-shadow: none; }
.section.light .reference-card {
  overflow: hidden;
  border: 1px solid rgba(9,45,37,.13);
  background: linear-gradient(145deg,rgba(255,255,255,.92),rgba(232,247,242,.82));
  box-shadow: var(--shadow-float);
  transition: opacity .7s var(--ease),transform .7s var(--ease),box-shadow .3s ease,border-color .3s ease,background .3s ease,color .3s ease;
}
.section.light .reference-card::before {
  display: none;
  position: absolute;
  z-index: 0;
  right: 22px;
  top: 14px;
  color: rgba(6,121,102,.075);
  font: 760 clamp(78px,8vw,125px)/1 "Helvetica Neue",Arial,sans-serif;
  letter-spacing: -.08em;
  pointer-events: none;
}
.section.light .reference-card::after { content: ""; position: absolute; z-index: 2; left: 0; top: 0; width: 58px; height: 3px; background: var(--teal-deep); transition: width .4s var(--ease); }
.section.light .reference-card-featured { color: var(--text); background: radial-gradient(circle at 88% 10%,rgba(53,224,193,.15),transparent 30%),linear-gradient(145deg,#0b1b17,#102a24); border-color: rgba(53,224,193,.25); }
.section.light .reference-card-featured::before { color: rgba(255,255,255,.055); font-size: clamp(120px,15vw,220px); }
.section.light .reference-card-featured p { color: #afc0ba; }
.section.light .reference-card-featured .case-label { color: var(--teal); }
.section.light .reference-card:nth-child(2) { color: var(--text); background: radial-gradient(circle at 90% 8%,rgba(71,120,255,.25),transparent 32%),linear-gradient(145deg,#101d27,#111d33); border-color: rgba(108,143,255,.3); }
.section.light .reference-card:nth-child(2)::before { color: rgba(255,255,255,.055); }
.section.light .reference-card:nth-child(2)::after { background: var(--cobalt); }
.section.light .reference-card:nth-child(2) p { color: #b1bec5; }
.section.light .reference-card:nth-child(2) .case-label { color: #8ea8ff; }
.section.light .reference-card:nth-child(4n+3)::after { background: var(--coral); }
.section.light .reference-card > * { position: relative; z-index: 1; }
.section.light .reference-card:hover { color: var(--paper-text); border-color: rgba(53,224,193,.46); background: var(--paper-panel-strong); box-shadow: var(--shadow-float-hover); transform: translateY(-9px); }
.section.light .reference-card:hover h3,
.section.light .reference-card:hover .case-links a { color: var(--paper-text); }
.section.light .reference-card:hover p { color: var(--paper-muted); }
.section.light .reference-card:hover .case-tags span { color: var(--paper-text); border-color: rgba(9,45,37,.28); }
.section.light .reference-card-featured:hover { color: var(--text); background: radial-gradient(circle at 88% 10%,rgba(53,224,193,.22),transparent 34%),linear-gradient(145deg,#0d211c,#12332b); }
.section.light .reference-card-featured:hover h2,
.section.light .reference-card-featured:hover h3,
.section.light .reference-card-featured:hover .case-links a { color: var(--text); }
.section.light .reference-card-featured:hover p { color: #afc0ba; }
.section.light .reference-card-featured:hover .case-tags span { color: var(--text); border-color: rgba(255,255,255,.4); }
.section.light .reference-card:nth-child(2):hover { color: var(--text); background: radial-gradient(circle at 90% 8%,rgba(71,120,255,.32),transparent 38%),linear-gradient(145deg,#12232e,#14213a); border-color: rgba(108,143,255,.58); }
.section.light .reference-card:nth-child(2):hover h3,
.section.light .reference-card:nth-child(2):hover .case-links a { color: #79ead4; }
.section.light .reference-card:nth-child(2):hover p { color: #c2e7df; }
.section.light .reference-card:nth-child(2):hover .case-label { color: #92f0de; }
.section.light .reference-card:nth-child(2):hover .case-tags span { color: #a7f3e5; border-color: rgba(121,234,212,.55); }
.section.light .reference-card:hover::after { width: 100%; }
.section.light .reference-card .case-links a { padding-bottom: 4px; border-bottom: 1px solid currentColor; }
.js body.scrolling-down .reference-card.reveal:not(.is-visible):nth-child(odd) { transform: translate(-26px,30px); }
.js body.scrolling-down .reference-card.reveal:not(.is-visible):nth-child(even) { transform: translate(26px,30px); }
.js body.scrolling-up .reference-card.reveal:not(.is-visible):nth-child(odd) { transform: translate(-26px,-30px); }
.js body.scrolling-up .reference-card.reveal:not(.is-visible):nth-child(even) { transform: translate(26px,-30px); }
.js .reference-card.reveal.is-visible:hover { transform: translateY(-9px); transition-delay: 0s; }
.js .reference-card.reveal:nth-child(even) { transition-delay: .08s; }
.section.light .reference-card .case-purpose {
  margin: 22px 0 16px;
  padding: 13px 15px;
  border-left: 2px solid var(--teal-deep);
  color: #27473f;
  background: rgba(6,121,102,.065);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.5;
}
.section.light .reference-card .case-purpose span {
  display: block;
  margin-bottom: 4px;
  color: var(--teal-deep);
  font: 800 8px/1.2 "SFMono-Regular",Consolas,monospace;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.section.light .reference-card-featured .case-purpose { color: #d5e3dd; border-color: var(--teal); background: rgba(53,224,193,.075); }
.section.light .reference-card-featured .case-purpose span { color: var(--teal); }
.section.light .reference-card:nth-child(2) .case-purpose { color: #d8e1e7; border-color: #819fff; background: rgba(71,120,255,.1); }
.section.light .reference-card:nth-child(2) .case-purpose span { color: #9cb2ff; }
.section.light .reference-card:hover .case-purpose { color: #27473f; }
.section.light .reference-card-featured:hover .case-purpose { color: #d5e3dd; }
.section.light .reference-card:nth-child(2):hover .case-purpose { color: #d9f1eb; }

/* Founder */
.about-section { overflow: hidden; background: radial-gradient(circle at 12% 55%,rgba(53,224,193,.08),transparent 24%),linear-gradient(145deg,#081410,#0a1a16); }
.about-section::before { content: "01"; position: absolute; left: -2vw; bottom: -8vw; color: rgba(255,255,255,.025); font-size: clamp(220px,34vw,520px); font-weight: 760; line-height: 1; pointer-events: none; }
.about-grid { position: relative; display: grid; grid-template-columns: .62fr 1.38fr; gap: clamp(55px,9vw,140px); align-items: center; }
.founder-photo { position: relative; z-index: 1; width: min(100%,340px); justify-self: start; padding: 0; border: 0; background: transparent; }
.founder-photo::before { content: ""; position: absolute; z-index: -1; inset: 20px -18px -18px 20px; border: 1px solid rgba(71,120,255,.32); background: rgba(71,120,255,.025); transition: transform .4s var(--ease),border-color .4s ease; }
.founder-photo::after { content: "47.2692° N / 14.5789° E"; position: absolute; left: -22px; bottom: 38px; color: #7d928a; font: 700 7px/1 monospace; letter-spacing: .12em; transform: rotate(-90deg); transform-origin: left bottom; }
.founder-frame-head,.founder-frame-foot { position: relative; z-index: 3; min-height: 38px; display: flex; align-items: center; justify-content: space-between; gap: 15px; padding: 9px 12px; border: 1px solid var(--line); color: #a2b4ad; background: #0d201b; font: 750 7px/1.3 "SFMono-Regular",Consolas,monospace; letter-spacing: .11em; }
.founder-frame-head { border-bottom: 0; }.founder-frame-foot { border-top: 0; }
.founder-frame-head span:first-child { color: var(--teal); }.founder-frame-foot span:last-child { color: #8aa7ff; }
.founder-frame-foot i { display: inline-block; width: 6px; height: 6px; margin-right: 5px; background: var(--coral); border-radius: 50%; box-shadow: 0 0 11px rgba(255,122,97,.6); }
.founder-image-wrap { position: relative; z-index: 2; overflow: hidden; border: 1px solid rgba(53,224,193,.28); background: #10251f; box-shadow: 0 26px 60px rgba(0,0,0,.32); transition: transform .45s var(--ease),box-shadow .45s ease,border-color .45s ease; }
.founder-image-wrap::before { content: ""; position: absolute; z-index: 2; inset: 0; pointer-events: none; background: linear-gradient(180deg,transparent 65%,rgba(7,17,15,.16)); }
.founder-image-wrap::after { content: ""; position: absolute; z-index: 3; top: 0; bottom: 0; left: -18%; width: 12%; pointer-events: none; opacity: 0; background: linear-gradient(90deg,transparent,rgba(53,224,193,.16),transparent); transform: skewX(-10deg); }
.founder-photo img { width: 100%; height: auto; min-height: 0; display: block; object-fit: contain; object-position: center; filter: saturate(.84) contrast(1.02); transform: none; transition: filter .4s ease; }
.founder-photo:hover::before { border-color: rgba(71,120,255,.65); transform: translate(5px,5px); }
.founder-photo:hover .founder-image-wrap { border-color: rgba(53,224,193,.62); box-shadow: 0 34px 75px rgba(0,0,0,.4),0 0 36px rgba(53,224,193,.08); transform: translateY(-7px); }
.founder-photo:hover .founder-image-wrap::after { animation: founder-scan 1.1s var(--ease) both; }
.founder-photo:hover img { filter: saturate(1) contrast(1.02); }
.js .about-grid.reveal .founder-image-wrap { clip-path: inset(0 0 100% 0); transition: clip-path 1s var(--ease) .12s,transform .45s var(--ease),box-shadow .45s ease,border-color .45s ease; }
.js body.scrolling-up .about-grid.reveal:not(.is-visible) .founder-image-wrap { clip-path: inset(100% 0 0 0); }
.js .about-grid.reveal.is-visible .founder-image-wrap { clip-path: inset(0); }
@keyframes founder-scan { 0% { left: -18%; opacity: 0; } 20% { opacity: 1; } 100% { left: 108%; opacity: 0; } }
.founder-link { display: inline-flex; align-items: center; gap: 10px; margin-top: 28px; padding-bottom: 4px; border-bottom: 1px solid var(--teal); color: var(--text); font-size: 13px; font-weight: 750; }
.section.light .founder-link { color: var(--paper-text); border-color: var(--teal-deep); }
.founder-link span { transition: transform .2s var(--ease); }.founder-link:hover span { transform: translate(3px,-3px); }
.cred-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 9px; margin-top: 48px; border: 0; }
.cred-grid > div { position: relative; min-height: 92px; padding: 22px; overflow: hidden; border: 1px solid var(--line); background: rgba(14,34,28,.72); box-shadow: 0 14px 32px rgba(0,0,0,.13); transition: transform .28s var(--ease),border-color .28s ease,background .28s ease,box-shadow .28s ease; }
.cred-grid > div::before { content: ""; position: absolute; left: 0; top: 0; width: 2px; height: 0; background: var(--teal); transition: height .35s var(--ease); }
.cred-grid > div:nth-child(2)::before { background: var(--cobalt); }.cred-grid > div:nth-child(5)::before { background: var(--coral); }
.cred-grid > div:hover { z-index: 1; border-color: rgba(53,224,193,.35); background: rgba(18,45,37,.88); box-shadow: 0 22px 46px rgba(0,0,0,.2); transform: translateY(-5px); }
.cred-grid > div:hover::before { height: 100%; }
.cred-grid strong, .cred-grid span { display: block; }.cred-grid strong { font-size: 14px; }.cred-grid span { margin-top: 5px; color: var(--muted); font-size: 12px; }
.section.light .cred-grid > div { border-color: rgba(9,45,37,.13); color: var(--paper-text); background: var(--paper-panel); box-shadow: 0 14px 32px rgba(5,43,35,.1); }
.section.light .cred-grid > div:hover { background: var(--paper-panel-strong); box-shadow: var(--shadow-float); }.section.light .cred-grid span { color: var(--paper-muted); }
.js .cred-grid > div.reveal:nth-child(2) { transition-delay: .06s; }.js .cred-grid > div.reveal:nth-child(3) { transition-delay: .12s; }.js .cred-grid > div.reveal:nth-child(4) { transition-delay: .18s; }.js .cred-grid > div.reveal:nth-child(5) { transition-delay: .24s; }
.js .cred-grid > div.reveal.is-visible:hover { transform: translateY(-5px); transition-delay: 0s; }

/* Audit */
.contact-section {
  padding: clamp(90px,11vw,150px) 0;
  color: var(--paper-text);
  background:
    radial-gradient(circle at 10% 10%, rgba(255,255,255,.42), transparent 30%),
    linear-gradient(135deg, #cbe9e2, var(--paper) 55%, #acd9cf);
}
.contact-route .site-header { background: rgba(7,17,15,.96); border-color: var(--line); }
.contact-page { padding-top: calc(var(--header) + clamp(70px,9vw,120px)); }
.contact-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(50px,8vw,120px); align-items: start; }
.contact-grid > div:first-child { position: sticky; top: calc(var(--header) + 30px); }
.contact-grid .eyebrow { color: var(--teal-deep); }
.contact-grid > div > p:not(.eyebrow) { color: var(--paper-muted); }
.contact-details { margin-top: 36px; padding-top: 24px; border-top: 1px solid var(--dark-line); }
.contact-details a, .contact-details span { display: block; }.contact-details a { font-weight: 750; }.contact-details span { margin-top: 8px; color: var(--paper-muted); font-size: 13px; }
.contact-form { display: grid; grid-template-columns: repeat(2,1fr); gap: 0 24px; padding: clamp(25px,4vw,55px); color: var(--text); background: var(--ink-2); box-shadow: 18px 18px 0 var(--paper-2); }
.contact-form::before { content: "PROJECT INTAKE / 01"; grid-column: 1/-1; margin-bottom: 28px; padding-bottom: 15px; border-bottom: 1px solid var(--line); color: var(--teal); font: 750 9px/1 monospace; letter-spacing: .15em; }
.contact-form label { display: grid; align-content: start; gap: 9px; margin-bottom: 21px; color: #d5dfda; font-size: 11px; font-weight: 730; letter-spacing: .05em; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; min-height: 50px; padding: 12px 0; color: white; border: 0; border-bottom: 1px solid rgba(255,255,255,.28); border-radius: 0; background: transparent; outline: 0; transition: border-color .2s, background .2s; }
.contact-form textarea { resize: vertical; }
.contact-form select { color-scheme: dark; }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: #72827c; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--teal); background: rgba(53,224,193,.035); }
.full-field { grid-column: 1/-1; }
.consent { grid-template-columns: 25px 1fr; align-items: start; gap: 12px !important; margin-top: 8px; color: var(--muted) !important; font-weight: 500 !important; line-height: 1.5; }
.consent input { width: 20px; min-height: 20px; margin: 2px 0 0; accent-color: var(--teal); }
.consent a { border-bottom: 1px solid currentColor; }
.consent a:hover { color: var(--teal-deep); }
.contact-form .button { width: 100%; margin-top: 10px; border: 0; }
.contact-form .button:disabled { cursor: wait; opacity: .55; }
.form-status { min-height: 25px; margin: 18px 0 0; color: var(--teal); font-size: 13px; }
.form-status.is-error { color: #ff9a85; }
.success-panel { margin-top: 15px; padding: 24px; border-left: 2px solid var(--teal); background: rgba(53,224,193,.08); }
.success-panel[hidden] { display: none; }.success-panel strong, .success-panel span { display: block; }.success-panel span { margin: 5px 0 18px; color: var(--muted); }

/* Secondary pages */
.page-hero { position: relative; min-height: 760px; display: flex; align-items: flex-end; padding: 170px 0 100px; overflow: hidden; border-bottom: 1px solid var(--line); }
.page-hero::after { content: attr(data-index); position: absolute; right: max(32px,calc((100vw - var(--container))/2)); bottom: -60px; color: rgba(255,255,255,.04); font-size: 330px; font-weight: 750; line-height: 1; }
.page-hero .container { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0,1fr) minmax(340px,440px); column-gap: clamp(42px,6vw,92px); align-items: end; }
.page-hero .container > :not(.page-schematic) { position: relative; z-index: 2; }
.page-hero .container > :not(.page-schematic) { grid-column: 1; }
.page-hero h1 { max-width: none; margin-bottom: 28px; font-size: clamp(54px,6.3vw,94px); }
.page-hero .container > p:not(.eyebrow) { max-width: 610px; color: var(--muted); font-size: clamp(18px,1.55vw,21px); }
.page-hero .page-schematic { position: relative; inset: auto; grid-column: 2; grid-row: 1 / 6; align-self: end; justify-self: end; width: 100%; }

/* Page-specific animated system instruments */
.page-schematic {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 6px;
  width: min(35vw, 440px);
  color: var(--text);
  border: 1px solid rgba(53,224,193,.34);
  background: rgba(8,23,19,.84);
  box-shadow: 20px 24px 0 rgba(71,120,255,.07), var(--shadow);
  backdrop-filter: blur(12px);
  clip-path: polygon(0 0, calc(100% - 22px) 0, 100% 22px, 100% 100%, 22px 100%, 0 calc(100% - 22px));
  transform: rotate(1deg);
}
.page-schematic::before { content: ""; position: absolute; z-index: 3; top: 36px; left: 0; width: 2px; height: 0; background: var(--coral); transition: height .8s var(--ease) .25s; }
.page-schematic.is-active::before { height: calc(100% - 72px); }
.schematic-head, .schematic-foot { display: flex; align-items: center; justify-content: space-between; gap: 18px; min-height: 36px; padding: 9px 12px; color: #a4b5af; font: 750 9px/1.3 "SFMono-Regular", Consolas, monospace; letter-spacing: .11em; }
.schematic-head { border-bottom: 1px solid var(--line); }
.schematic-head span:first-child { color: var(--teal); }
.schematic-foot { border-top: 1px solid var(--line); }
.schematic-foot i { display: inline-block; width: 5px; height: 5px; margin-right: 7px; background: var(--coral); border-radius: 50%; }
.schematic-canvas { position: relative; aspect-ratio: 4/3; overflow: hidden; background-image: linear-gradient(rgba(255,255,255,.025) 1px,transparent 1px), linear-gradient(90deg,rgba(255,255,255,.025) 1px,transparent 1px); background-size: 20px 20px; }
.schematic-canvas::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(105deg,transparent 42%,rgba(53,224,193,.09) 50%,transparent 58%); transform: translateX(-120%); }
.page-schematic.is-active .schematic-canvas::after { animation: schema-scan 1.15s var(--ease) .45s both; }
.schematic-canvas svg { width: 100%; height: 100%; }
.schematic-canvas path, .schematic-canvas circle, .schematic-canvas rect { vector-effect: non-scaling-stroke; }
.schema-grid path, .schema-grid circle { fill: none; stroke: rgba(255,255,255,.12); stroke-width: 1; stroke-dasharray: 900; stroke-dashoffset: 900; transition: stroke-dashoffset 1.2s var(--ease); }
.schema-path path { fill: none; stroke-width: 1.5; stroke-dasharray: 900; stroke-dashoffset: 900; transition: stroke-dashoffset 1.25s var(--ease) .18s; }
.schema-path.signal-teal path { stroke: var(--teal); }.schema-path.signal-blue path { stroke: var(--cobalt); }
.schema-node circle, .schema-node rect { fill: var(--ink-2); stroke: var(--teal); stroke-width: 1.5; opacity: 0; transition: opacity .35s ease .65s; }
.schema-label { fill: #d1dcd8; font: 700 10px/1 "SFMono-Regular", Consolas, monospace; letter-spacing: 1px; opacity: 0; transition: opacity .4s ease .75s; }
.decision-labels text { fill: #d9e6e1; font-size: 11px; letter-spacing: .8px; }
.decision-labels .decision-core-label { fill: white; font-size: 12px; font-weight: 850; letter-spacing: .5px; }
.constellation-labels text { fill: #d9e6e1; font-size: 9px; font-weight: 800; letter-spacing: .6px; }
.constellation-labels .constellation-core-label { fill: white; font-size: 11px; }
.constellation-labels .constellation-system-label { font-size: 7px; letter-spacing: .25px; }
.founder-labels .founder-core-label { fill: white; font-size: 11px; font-weight: 850; letter-spacing: .55px; }
.schema-sweep path { fill: rgba(53,224,193,.11); stroke: none; opacity: 0; transform-origin: 220px 165px; }
.page-schematic.is-active .schema-grid path, .page-schematic.is-active .schema-grid circle, .page-schematic.is-active .schema-path path { stroke-dashoffset: 0; }
.page-schematic.is-active .schema-node circle, .page-schematic.is-active .schema-node rect, .page-schematic.is-active .schema-label { opacity: 1; }
.page-schematic.is-active .schema-sweep path { opacity: 1; animation: radar-sweep 1.2s var(--ease) .45s both; }
.page-schematic.is-active .schema-node > :last-child { animation: node-hit .65s var(--ease) .85s 2 alternate; }
.audit-schematic { position: relative; inset: auto; width: 100%; margin-top: 42px; box-shadow: 12px 14px 0 rgba(71,120,255,.07); transform: rotate(-1deg); }
@keyframes schema-scan { from { transform: translateX(-120%); } to { transform: translateX(120%); } }
@keyframes radar-sweep { from { transform: rotate(-55deg); opacity: 0; } to { transform: rotate(0); opacity: 1; } }
@keyframes node-hit { to { filter: drop-shadow(0 0 7px var(--teal)); stroke-width: 3; } }
.content-panel { position: relative; padding: 28px 0; border-top: 1px solid currentColor; }
.content-panel h3 { margin-bottom: 10px; font-size: 28px; }.content-panel p { color: var(--paper-muted); }
.page-card-grid { display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid var(--dark-line); border-left: 1px solid var(--dark-line); }
.page-card-grid article { min-height: 300px; padding: 30px; border-right: 1px solid var(--dark-line); border-bottom: 1px solid var(--dark-line); }
.page-card-grid h3 { margin-top: 80px; font-size: 30px; }.page-card-grid p { color: var(--paper-muted); }
.security-assurance-section { position: relative; overflow: hidden; background:
  radial-gradient(circle at 18% 20%, rgba(53,224,193,.08), transparent 32%),
  radial-gradient(circle at 88% 72%, rgba(71,120,255,.12), transparent 34%),
  var(--ink);
}
.security-assurance-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .55;
  background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, transparent, #000 16%, #000 82%, transparent);
}
.security-assurance-section .section-heading { position: relative; z-index: 1; margin-bottom: clamp(28px,4vw,56px); }
.security-assurance-section .section-heading h2 { color: var(--text); }
.security-assurance-grid {
  position: relative;
  z-index: 1;
  gap: clamp(16px,2vw,24px);
  border: 0;
}
.security-assurance-grid article {
  position: relative;
  min-height: 410px;
  overflow: hidden;
  padding: clamp(28px,3.6vw,46px);
  border: 1px solid rgba(53,224,193,.19);
  background: linear-gradient(145deg, rgba(13,32,27,.92), rgba(8,22,19,.88));
  box-shadow: 0 34px 90px rgba(0,0,0,.26);
  transition: transform .32s var(--ease), box-shadow .32s ease, border-color .32s ease, background .32s ease;
}
.security-assurance-grid article::before {
  content: "0" counter(security);
  counter-increment: security;
  position: absolute;
  right: 22px;
  top: 12px;
  color: rgba(255,255,255,.055);
  font-size: clamp(76px,7vw,122px);
  font-weight: 850;
  letter-spacing: -.08em;
  line-height: 1;
}
.security-assurance-grid { counter-reset: security; }
.security-assurance-grid article::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 56px;
  background: linear-gradient(180deg, var(--coral), var(--teal));
  box-shadow: 0 0 24px rgba(53,224,193,.2);
  transition: height .35s var(--ease);
}
.security-assurance-grid .case-label { color: var(--teal); }
.security-assurance-grid h3 {
  position: relative;
  max-width: 11ch;
  margin-top: clamp(96px,9vw,138px);
  color: var(--text);
  font-size: clamp(34px,3.1vw,50px);
  letter-spacing: -.055em;
}
.security-assurance-grid p {
  position: relative;
  max-width: 36ch;
  color: #a9beb6;
  font-size: clamp(16px,1.35vw,19px);
  line-height: 1.7;
}
.security-assurance-grid article:hover {
  transform: translateY(-10px);
  border-color: rgba(53,224,193,.48);
  background: linear-gradient(145deg, rgba(15,39,33,.98), rgba(9,25,22,.94));
  box-shadow: 0 46px 105px rgba(0,0,0,.34), 0 0 42px rgba(53,224,193,.08);
}
.security-assurance-grid article:hover::after { height: 100%; }
.case-study { display: grid; grid-template-columns: .7fr 1.3fr; gap: 60px; padding: 70px 0; border-top: 1px solid var(--dark-line); }
.case-study-meta { color: var(--teal-deep); font-size: 10px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.case-study h2 { font-size: clamp(42px,5vw,72px); }.case-study h3 { font-size: 20px; letter-spacing: -.02em; line-height: 1.2; }
.case-study p { color: var(--paper-muted); }.case-study-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 25px; }
.case-links { display: flex; flex-wrap: wrap; gap: 22px; }
.case-status-button {
  display: inline-flex;
  align-items: center;
  margin-top: 22px;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  color: var(--paper-muted);
  font-size: 13px;
  font-weight: 750;
  cursor: default;
}
.section.light .reference-card-soon { background: linear-gradient(145deg,rgba(238,250,246,.84),rgba(217,240,233,.92)); }
.section.light .reference-card-soon .case-label::after {
  content: " / COMING SOON";
  color: var(--coral);
}
.section.light .reference-card-soon:hover .case-status-button { color: var(--paper-text); }

/* Legal and local service pages */
.legal-hero { min-height: 570px; }
.legal-layout { display: grid; grid-template-columns: minmax(190px,260px) minmax(0,760px); justify-content: center; gap: clamp(55px,8vw,120px); align-items: start; }
.legal-summary { position: sticky; top: calc(var(--header) + 30px); display: grid; gap: 7px; padding: 24px; border: 1px solid rgba(9,45,37,.12); background: var(--paper-panel); box-shadow: 0 16px 38px rgba(5,43,35,.1); }
.legal-summary strong { font-size: 18px; }.legal-summary span { color: var(--paper-muted); font-size: 13px; }.legal-summary a { margin-top: 8px; color: var(--teal-deep); font-size: 13px; font-weight: 750; }
.legal-content { padding: clamp(28px,5vw,64px); border: 1px solid rgba(9,45,37,.1); background: var(--paper-panel); box-shadow: var(--shadow-float); font-size: 17px; line-height: 1.75; }
.legal-content section + section { margin-top: 58px; padding-top: 4px; }
.legal-content h2 { margin-bottom: 20px; font-size: clamp(31px,3.5vw,45px); line-height: 1.08; }
.legal-content p { margin: 0 0 20px; color: var(--paper-muted); }
.legal-content address { margin-bottom: 20px; font-style: normal; }
.legal-content a { border-bottom: 1px solid currentColor; font-weight: 680; }
.legal-content dl { margin: 0; }.legal-content dt { padding-top: 18px; border-top: 1px solid var(--dark-line); font-weight: 760; }.legal-content dd { margin: 5px 0 18px; color: var(--paper-muted); }
.legal-updated { margin-top: 70px !important; padding-top: 20px; border-top: 1px solid var(--dark-line); font-size: 12px; }
.local-check-list { margin-top: 0; }.local-check-list li { color: var(--paper-muted); border-color: var(--dark-line); }.local-check-list li::before { color: var(--teal-deep); }
.local-cta-panel { padding: clamp(30px,5vw,55px); color: var(--text); background: var(--ink-2); box-shadow: 14px 14px 0 var(--paper-2); }
.local-cta-panel > strong { display: block; color: var(--teal); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; }.local-cta-panel p { color: var(--muted); }.local-cta-panel .text-link { display: block; color: var(--text); }

/* Insights and long-form articles */
.insight-grid article { min-height: 340px; display: flex; flex-direction: column; }
.insight-grid h2 { margin: 36px 0 18px; font-size: clamp(27px,2.5vw,38px); line-height: 1.08; }
.insight-grid h2 a:hover { color: var(--teal-deep); }
.article-kicker { margin: 0 !important; color: var(--teal-deep) !important; font-size: 10px; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.text-link { display: inline-block; margin-top: auto; padding-top: 25px; font-size: 13px; font-weight: 760; }
.text-link span { display: inline-block; margin-left: 7px; transition: transform .2s var(--ease); }
.text-link:hover span { transform: translateX(5px); }
.article-hero { min-height: 820px; padding: calc(var(--header) + 105px) 0 95px; border-bottom: 1px solid var(--line); background: radial-gradient(circle at 84% 22%,rgba(53,224,193,.09),transparent 30%),var(--ink); }
.article-narrow { position: relative; max-width: 1180px; display: grid; grid-template-columns: minmax(0,1fr) minmax(340px,440px); column-gap: clamp(42px,6vw,92px); align-items: end; }
.article-narrow > :not(.page-schematic) { position: relative; z-index: 2; grid-column: 1; max-width: 650px; }
.article-schematic { position: relative; inset: auto; grid-column: 2; grid-row: 1 / 7; align-self: end; justify-self: end; width: 100%; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 55px; color: var(--muted); font-size: 12px; }
.breadcrumbs a:hover { color: var(--teal); }
.article-hero h1 { margin-bottom: 30px; font-size: clamp(48px,5.7vw,80px); }
.article-lead { max-width: 790px; margin: 0; color: #becbc6; font-size: clamp(19px,2vw,25px); line-height: 1.55; }
.article-meta { display: flex; flex-wrap: wrap; gap: 12px 30px; margin-top: 38px; padding-top: 22px; border-top: 1px solid var(--line); color: var(--muted); font-size: 12px; }
.article-meta a { color: var(--text); font-weight: 700; }
.article-layout { display: grid; grid-template-columns: 220px minmax(0,760px); justify-content: center; gap: clamp(45px,7vw,100px); align-items: start; }
.article-toc { position: sticky; top: calc(var(--header) + 30px); display: grid; gap: 10px; padding: 22px; border: 1px solid rgba(9,45,37,.12); background: var(--paper-panel); box-shadow: 0 16px 38px rgba(5,43,35,.1); font-size: 12px; }
.article-toc strong { margin-bottom: 6px; color: var(--teal-deep); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }
.article-toc a { color: var(--paper-muted); }
.article-toc a:hover { color: var(--teal-deep); }
.article-content { padding: clamp(28px,5vw,64px); border: 1px solid rgba(9,45,37,.1); background: var(--paper-panel); box-shadow: var(--shadow-float); font-size: 18px; line-height: 1.78; }
.article-content section { scroll-margin-top: calc(var(--header) + 30px); }
.article-content section + section { margin-top: 75px; padding-top: 5px; }
.article-content h2 { margin-bottom: 25px; font-size: clamp(35px,4vw,53px); line-height: 1.05; }
.article-content h3 { margin: 42px 0 16px; font-size: 27px; line-height: 1.15; }
.article-content p { margin: 0 0 24px; }
.article-content ul, .article-content ol { margin: 25px 0 32px; padding-left: 1.35em; }
.article-content li { margin-bottom: 12px; padding-left: 8px; }
.article-content li::marker { color: var(--teal-deep); font-weight: 800; }
.article-cta { margin-top: 85px; padding: clamp(30px,5vw,55px); color: var(--text); background: var(--ink-2); }
.article-cta .eyebrow { margin-bottom: 25px; }
.article-cta h2 { font-size: clamp(34px,4vw,50px); }
.article-cta p:not(.eyebrow) { color: var(--muted); }
.related-links { display: grid; gap: 0; margin-top: 45px; border-top: 1px solid var(--dark-line); }
.related-links strong { padding: 18px 0; color: var(--teal-deep); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }
.related-links a { padding: 16px 0; border-top: 1px solid var(--dark-line); font-weight: 680; }
.related-links a:hover { color: var(--teal-deep); }

/* Footer */
.site-footer { padding: 70px 0 35px; color: var(--text); background: #040a08; border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.footer-brand { margin-bottom: 22px; }.site-footer p { color: var(--muted); }
.footer-links { display: grid; grid-template-columns: repeat(2,1fr); gap: 0 30px; }
.footer-links a { padding: 12px 0; border-bottom: 1px solid var(--line); color: #c0cec8; font-size: 13px; }
.footer-links a:hover { color: var(--teal); }

/* Progressive motion, content visible by default */
.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js .reveal.is-visible { opacity: 1; transform: none; }
.js body.scrolling-up .reveal:not(.is-visible) { transform: translateY(-26px); }
.js body.scrolling-down .reveal:not(.is-visible) { transform: translateY(26px); }
.js .process-grid article.reveal:nth-child(2), .js .service-card.reveal:nth-child(2) { transition-delay: .08s; }
.js .process-grid article.reveal:nth-child(3), .js .service-card.reveal:nth-child(3) { transition-delay: .16s; }
.js .process-grid article.reveal:nth-child(4), .js .service-card.reveal:nth-child(4) { transition-delay: .24s; }
.js .process-grid article.reveal:nth-child(5) { transition-delay: .32s; }
.js .process-grid article.reveal { transition-property: opacity,transform,background,box-shadow,border-color; }
.js .process-grid article.reveal.is-visible:hover { transform: translateY(-8px); transition-delay: 0s; }

@media (max-width: 1100px) {
  .site-nav { gap: 10px; font-size: 10px; }.site-nav > a:nth-child(2), .site-nav > a:nth-child(3) { display: none; }
  .hero-content { width: 56vw; }.hero-orbit { top: 25%; width: 35vw; opacity: .75; }
  .service-grid { grid-template-columns: repeat(2,1fr); }
  .visual-band { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }.contact-grid > div:first-child { position: static; }
  .page-hero .container, .article-narrow { grid-template-columns: minmax(0,1fr) minmax(320px,38vw); column-gap: 38px; }
}

@media (max-width: 900px) {
  .hero { display: flex; flex-direction: column; min-height: auto; }
  .hero-content { order: 1; width: 100%; padding: 135px 32px 48px; }
  .hero-orbit { position: relative; order: 2; inset: auto; width: min(calc(100% - 64px),600px); margin: 0 auto 145px; opacity: .9; transform: none; }
  .page-hero .container, .article-narrow { display: block; }
  .page-hero .page-schematic, .article-schematic { position: relative; inset: auto; width: min(100%,560px); margin: 55px auto 0; transform: none; }
  .article-narrow > :not(.page-schematic) { max-width: none; }
}

@media (max-width: 760px) {
  :root { --header: 68px; }
  .container { width: min(100% - 34px,var(--container)); }
  .site-header { min-height: var(--header); padding: 10px 17px; }
  .brand { font-size: 14px; position: relative; z-index: 2; }
  .nav-toggle { display: block; z-index: 3; }
  .site-nav { position: fixed; z-index: 1; inset: 0 auto auto 0; width: 100vw; height: 100vh; height: 100dvh; min-height: 100vh; min-height: 100dvh; display: flex; flex-direction: column; align-items: stretch; justify-content: center; gap: 8px; padding: calc(var(--header) + 40px) 30px 36px; background: rgba(7,17,15,.98); transform: translateX(100%); visibility: hidden; transition: transform .3s var(--ease), visibility .3s; }
  .site-nav.is-open { transform: none; visibility: visible; }
  .site-nav > a, .site-nav > a:nth-child(2), .site-nav > a:nth-child(3) { display: block; min-height: 58px; padding: 17px 0; border-bottom: 1px solid var(--line); font-size: clamp(18px,5vw,23px); line-height: 1.2; letter-spacing: .035em; }
  .site-nav > a::after { display: none; }.site-nav .nav-cta { min-height: 58px; margin-top: 20px; justify-content: center; color: var(--ink); font-size: 16px; }
  .language-switch { order: -1; width: 128px; grid-template-columns: repeat(2, 64px); margin-bottom: 24px; }
  .language-switch a { min-height: 46px; font-size: 14px; }
  .hero { min-height: auto; }
  .hero-content { width: auto; padding: 120px 17px 42px; }
  .hero h1 { font-size: clamp(48px,14vw,72px); }.hero-copy { width: 100%; margin-top: 26px; font-size: 16px; }
  .hero-actions { align-items: stretch; flex-direction: column; }.hero-actions .button { width: 100%; }
  .hero-orbit { position: relative; inset: auto; width: calc(100% - 34px); margin: 0 auto 125px; opacity: .88; transform: none; }
  .orbit-head span:last-child { display: none; }
  .orbit-status { display: flex; }
  .orbit-status span:last-child { display: none; }
  .orbit-canvas {
    height: auto;
    min-height: 0;
    aspect-ratio: 1.08;
    display: block;
    padding: 0;
  }
  .orbit-canvas svg {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
  }
  .orbit-node,
  .orbit-core {
    position: absolute;
    z-index: 2;
    display: block;
    transform: none;
  }
  .orbit-node {
    min-height: 0;
    padding: 5px 7px;
    border: 0;
    background: rgba(7,17,15,.9);
    font-size: 9px;
    letter-spacing: .09em;
  }
  .orbit-node small { margin-top: 0; font-size: 7px; }
  .node-web { top: 8%; left: 7%; }
  .node-code { top: 8%; right: 7%; }
  .node-data { bottom: 8%; left: 7%; }
  .node-human { bottom: 8%; right: 7%; }
  .orbit-core {
    inset: 50% auto auto 50%;
    width: 98px;
    height: 98px;
    transform: translate(-50%,-50%);
  }
  .hero-proof { display: none; }
  .section { padding-block: 85px; }.section-heading, .intro-grid, .split-feature, .product-grid, .about-grid, .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .section-heading { margin-bottom: 48px; }.section-heading h2, .intro-grid h2, .product-grid h2, .about-grid h2, .contact-grid h2, .contact-grid h1 { font-size: clamp(38px,11vw,54px); }
  .section-lead { font-size: 18px; }.service-grid { grid-template-columns: 1fr; }.service-card { min-height: auto; padding: 28px; }.service-icon { margin-bottom: 45px; }
  .system-preview { margin-top: 20px; padding: 13px; }.preview-panel { padding: 22px; }.preview-columns { grid-template-columns: 1fr; }.preview-columns > div + div { border-left: 0; border-top: 1px solid var(--line); }
  .decision-grid { grid-template-columns: 1fr; }.decision-grid article, .decision-grid article + article { min-height: auto; padding: 30px 0; border-left: 0; }.section.light .decision-grid article, .section.light .decision-grid article + article { min-height: auto; padding: 28px; }.decision-grid article > span { margin-bottom: 45px; }
  .visual-band { display: block; }.visual-band img { min-height: 360px; height: 360px; }.optimization-visual { min-height: 620px; border-right: 0; border-bottom: 1px solid var(--line); }.opt-stage { min-height: 535px; }.opt-column { width: 29%; top: 7%; bottom: 23%; }.opt-inputs { left: 2.5%; }.opt-outputs { right: 2.5%; }.opt-core { width: 31%; padding: 10px; }.opt-column > span:not(.opt-caption) { min-height: 38px; gap: 6px; padding: 7px; font-size: 10px; }.opt-caption { font-size: 7px; }.opt-human { left: 5%; right: 5%; grid-template-columns: 8px 1fr; }.opt-human small { display: none; }.opt-head span:last-child, .opt-foot span:last-child { display: none; }.visual-copy { padding: 70px 17px; }
  .process-grid { grid-template-columns: 1fr; padding-left: 38px; }.process-grid::before { left: 5px; right: auto; top: 8px; bottom: 0; width: 1px; height: auto; background: linear-gradient(180deg,var(--teal),var(--cobalt),var(--teal)); background-size: 100% 200%; }.process-grid::after { left: 1px; top: 8px; }.process-grid article { min-height: 0; padding: 0 18px 45px 30px; }.process-grid article::before { top: 2px; left: -39px; }.process-grid article::after { top: 0; }
  .js .process-grid.reveal::before { transform: scaleY(0); transform-origin: top; }.js .process-grid.reveal.is-visible::before { transform: scaleY(1); }
  .js .process-grid.reveal.is-visible::after { animation-name: process-travel-y; }
  @keyframes process-travel-y { 0% { top: 8px; opacity: 0; } 8%,92% { opacity: 1; } 100% { top: calc(100% - 12px); opacity: 0; } }
  .security-assurance-grid article { min-height: 330px; }.security-assurance-grid h3 { max-width: 13ch; margin-top: 86px; }
  .package-grid, .proof-grid, .page-card-grid { grid-template-columns: 1fr; }.package-card { min-height: 320px; }.proof-grid article, .proof-grid article:nth-child(3) { grid-column: auto; min-height: 330px; padding: 28px; }.section.light .proof-grid article:nth-child(3) { display: block; }.section.light .proof-grid article:nth-child(3) p { margin-top: 22px; }.proof-grid h3, .proof-grid article:nth-child(3) h3, .section.light .proof-grid article:nth-child(3) h3 { margin-top: 70px; }
  .reference-grid { grid-template-columns: 1fr; }.reference-card, .reference-card-featured { grid-column: auto; min-height: 340px; display: block; }.reference-card h2, .reference-card h3 { margin-top: 70px; }
  .founder-photo { width: min(88vw,330px); justify-self: center; }.founder-photo img { min-height: 0; }.founder-photo::after { display: none; }.cred-grid { grid-template-columns: 1fr; }
  .contact-form { grid-template-columns: 1fr; padding: 25px 20px; box-shadow: 8px 8px 0 var(--paper-2); }.contact-form label, .full-field { grid-column: 1; }
  .page-hero { min-height: auto; padding: 140px 0 75px; }.page-hero h1, .page-hero .container > p:not(.eyebrow) { max-width: none; }.page-hero h1 { font-size: clamp(46px,13vw,68px); }.page-hero::after { font-size: 190px; }
  .page-schematic { position: relative; inset: auto; width: 100%; margin-top: 55px; transform: none; }.audit-schematic { margin-top: 38px; }
  .case-study, .case-study-grid { grid-template-columns: 1fr; gap: 28px; }.case-study { padding: 55px 0; }
  .legal-layout { grid-template-columns: 1fr; gap: 45px; }.legal-summary { position: static; }.legal-hero { min-height: 520px; }
  .insight-grid article { min-height: 290px; }.insight-grid h2 { margin-top: 30px; }
  .article-hero { min-height: auto; padding: calc(var(--header) + 70px) 0 70px; }.article-narrow > :not(.page-schematic) { max-width: none; }.article-hero h1 { font-size: clamp(43px,12vw,64px); }.breadcrumbs { margin-bottom: 40px; }
  .article-layout { grid-template-columns: 1fr; gap: 45px; }.article-toc { position: static; }.article-content { font-size: 17px; }.article-content section + section { margin-top: 60px; }.article-cta { margin-top: 65px; }
  .footer-links { grid-template-columns: 1fr; }

  /* Mobile refinement layer */
  html, body { max-width: 100%; overflow-x: hidden; }
  body { font-size: 15px; line-height: 1.58; }
  h1, h2, h3 { line-height: 1.04; letter-spacing: -.038em; overflow-wrap: normal; word-break: normal; hyphens: none; }
  p, li { hyphens: none; }
  .contact-details a,
  .legal-content a,
  .article-content a,
  .footer-links a,
  .case-links a { overflow-wrap: anywhere; }
  .container { width: min(100% - 30px,var(--container)); }
  .site-header { padding-inline: 15px; }
  .brand { gap: 10px; font-size: 13px; }
  .brand-mark { width: 30px; height: 30px; }
  .brand-mark img { width: 26px; height: 24px; }
  .nav-toggle { width: 52px; height: 52px; }
  .nav-toggle > span:not(.sr-only) { left: 15px; width: 22px; height: 2px; }
  .nav-toggle > span:first-child { top: 20px; }
  .nav-toggle > span:nth-child(2) { top: 30px; }
  .nav-toggle[aria-expanded="true"] > span:first-child,
  .nav-toggle[aria-expanded="true"] > span:nth-child(2) { top: 25px; }
  .site-nav {
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    min-height: 100vh;
    min-height: 100dvh;
    justify-content: flex-start;
    overflow-y: auto;
    padding: calc(var(--header) + 42px) 30px 36px;
    -webkit-overflow-scrolling: touch;
  }
  .site-nav > a,
  .site-nav > a:nth-child(2),
  .site-nav > a:nth-child(3) {
    min-height: 58px;
    padding: 17px 0;
    font-size: clamp(18px,5vw,23px);
    line-height: 1.2;
  }
  .site-nav .nav-cta { min-height: 58px; margin-top: 20px; font-size: 16px; }
  .language-switch { width: 128px; grid-template-columns: repeat(2, 64px); margin-bottom: 24px; }
  .language-switch a { min-height: 46px; font-size: 14px; }

  .eyebrow { margin-bottom: 16px; font-size: 9px; letter-spacing: .14em; }
  .eyebrow::before { width: 20px; margin-right: 8px; }
  .hero::after,
  .about-section::before { display: none; }
  .hero-content { padding: calc(var(--header) + 40px) 15px 34px; }
  .hero h1 { max-width: 13ch; font-size: clamp(38px, 11vw, 56px); line-height: 1; }
  .hero h1 .accent-line { white-space: nowrap; }
  .hero-copy { max-width: 36rem; margin-top: 22px; font-size: 15.5px; line-height: 1.58; }
  .hero-actions, .page-actions { gap: 10px; margin-top: 28px; }
  .button { width: 100%; min-height: 48px; padding: 11px 16px; gap: 18px; font-size: 12.5px; }
  .hero-orbit { width: min(calc(100% - 30px), 430px); margin-bottom: 84px; opacity: 1; box-shadow: 0 20px 50px rgba(0,0,0,.28); }
  .orbit-head, .orbit-status { min-height: 38px; padding: 10px 12px; font-size: 7px; letter-spacing: .1em; }
  .orbit-canvas { min-height: 0; aspect-ratio: 1.08; padding: 0; }
  .orbit-node { min-height: 0; font-size: 9px; letter-spacing: .08em; }
  .orbit-node small { font-size: 7px; }
  .orbit-core { width: 96px; height: 96px; display: grid; place-items: center; text-align: center; }
  .orbit-core img { width: 36px; margin-inline: auto; }
  .orbit-core small { font-size: 7px; text-align: center; }

  .section { padding-block: 68px; }
  .intro-section { padding-block: 68px; }
  .section-heading, .intro-grid, .split-feature, .product-grid, .about-grid, .footer-grid { gap: 30px; }
  .section-heading { margin-bottom: 34px; }
  .section-heading h2,
  .intro-grid h2,
  .split-feature h2,
  .product-grid h2,
  .about-grid h2,
  .contact-grid h2,
  .contact-grid h1,
  .visual-copy h2 {
    font-size: clamp(30px, 8.6vw, 44px);
    line-height: 1.06;
  }
  .section-lead { font-size: 16px; line-height: 1.62; }

  .service-grid::after { display: none; }
  .service-card { padding: 24px; }
  .service-icon { width: 38px; height: 38px; margin-bottom: 30px; }
  .service-card h3 { font-size: clamp(24px,7vw,31px); }
  .service-card p { font-size: 14px; line-height: 1.58; }
  .product-section::before { display: none; }
  .system-preview { padding: 12px; box-shadow: 0 18px 45px rgba(0,0,0,.28); }
  .system-preview::before { position: static; display: block; margin-bottom: 10px; font-size: 8px; }
  .preview-panel { margin: 14px 0; padding: 19px; }
  .preview-panel strong { font-size: clamp(22px,7vw,31px); }

  .decision-grid article > span { margin-bottom: 24px; font-size: 10px; }
  .decision-grid h3 { font-size: clamp(25px,7.4vw,33px); }
  .decision-grid p { max-width: none; font-size: 14.5px; line-height: 1.62; }
  .section.light .decision-grid article,
  .section.light .decision-grid article + article { padding: 24px; }

  .visual-band { min-height: 0; }
  .optimization-visual { min-height: 540px; }
  .opt-stage { min-height: 462px; }
  .opt-head, .opt-foot { min-height: 36px; padding-inline: 13px; font-size: 7px; letter-spacing: .1em; }
  .opt-column { width: 31%; top: 6%; bottom: 24%; gap: 6px; }
  .opt-column > span:not(.opt-caption) { min-height: 34px; padding: 6px; font-size: 9px; line-height: 1.2; box-shadow: 0 8px 18px rgba(0,0,0,.16); }
  .opt-column > span:not(.opt-caption) small { font-size: 7px; }
  .opt-core { width: 34%; padding: 8px; }
  .opt-core > span { font-size: 7px; }
  .opt-core strong { font-size: clamp(13px,4vw,18px); }
  .opt-core small { display: none; }
  .opt-human { left: 4%; right: 4%; bottom: 5%; min-height: 48px; padding: 9px 12px; }
  .opt-human span { font-size: 11px; }
  .visual-copy { padding: 58px 15px 66px; }

  .process-grid { padding-left: 34px; }
  .process-grid article { padding: 0 8px 38px 24px; }
  .process-grid h3 { margin: 16px 0 10px; font-size: clamp(24px,7vw,32px); }
  .process-grid p { margin: 0; font-size: 14px; line-height: 1.58; }
  .package-card { min-height: 0; padding: 25px; }
  .package-card h3 { margin-top: 52px; font-size: clamp(25px,7.3vw,33px); }

  .proof-grid article,
  .proof-grid article:nth-child(3),
  .reference-card,
  .reference-card-featured {
    min-height: 0;
    padding: 24px;
  }
  .proof-grid h3,
  .proof-grid article:nth-child(3) h3,
  .section.light .proof-grid article:nth-child(3) h3 {
    margin-top: 42px;
    font-size: clamp(28px,8vw,39px);
  }
  .reference-card h2,
  .reference-card h3 {
    margin-top: 42px;
    font-size: clamp(27px,8vw,39px);
  }
  .reference-card p,
  .proof-grid p { font-size: 14.5px; line-height: 1.62; }
  .section.light .reference-card .case-purpose {
    margin: 16px 0 14px;
    padding: 11px 12px;
    font-size: 13.5px;
  }
  .case-tags { margin-top: 18px; }
  .case-tags span { padding: 6px 8px; font-size: 8px; letter-spacing: .06em; }
  .case-links { gap: 14px; }
  .case-link, .case-links a, .case-status-button { font-size: 12.5px; }

  .security-assurance-grid article { min-height: 0; padding: 24px; }
  .security-assurance-grid article::before { display: none; }
  .security-assurance-grid h3 { max-width: none; margin-top: 34px; font-size: clamp(27px,8vw,38px); }
  .security-assurance-grid p { max-width: none; font-size: 15px; line-height: 1.62; }

  .founder-photo { width: min(76vw,285px); }
  .founder-photo::before { inset: 14px -12px -12px 14px; }
  .founder-frame-head, .founder-frame-foot { min-height: 34px; padding: 8px 10px; font-size: 6px; letter-spacing: .09em; }
  .founder-link { margin-top: 22px; }
  .cred-grid { gap: 8px; margin-top: 30px; }
  .cred-grid > div { min-height: 0; padding: 18px; }

  .contact-section { padding-block: 66px; }
  .contact-page { padding-top: calc(var(--header) + 50px); }
  .contact-grid { gap: 32px; }
  .contact-details { margin-top: 26px; padding-top: 18px; }
  .contact-form { padding: 22px 18px; box-shadow: 0 18px 50px rgba(5,43,35,.22), 6px 6px 0 var(--paper-2); }
  .contact-form::before { margin-bottom: 20px; font-size: 8px; }
  .contact-form label { margin-bottom: 18px; font-size: 10px; letter-spacing: .04em; }
  .contact-form input, .contact-form select, .contact-form textarea { min-height: 48px; font-size: 16px; }
  .consent { grid-template-columns: 22px 1fr; font-size: 12.5px !important; }

  .page-hero { padding: calc(var(--header) + 44px) 0 58px; }
  .page-hero::after { display: none; }
  .page-hero h1 { margin-bottom: 20px; font-size: clamp(34px,9.8vw,50px); line-height: 1.04; }
  .page-hero .container > p:not(.eyebrow) { font-size: 16px; line-height: 1.62; }
  .page-schematic { width: min(100%,440px); margin: 34px auto 0; box-shadow: 8px 10px 0 rgba(71,120,255,.06), 0 18px 45px rgba(0,0,0,.24); }
  .schematic-head, .schematic-foot { min-height: 32px; padding: 8px 10px; font-size: 7px; letter-spacing: .08em; }
  .schematic-head span:last-child, .schematic-foot span:last-child { display: none; }
  .schema-label { font-size: 8px; }
  .audit-schematic { margin-top: 30px; }
  .page-card-grid article { min-height: 0; padding: 24px; }
  .page-card-grid h3 { margin-top: 38px; font-size: clamp(24px,7vw,32px); }
  .content-panel { padding: 22px 0; }
  .section.light .content-panel { padding: 22px; }
  .content-panel h3 { font-size: 24px; }

  .legal-hero { min-height: 0; }
  .legal-layout { gap: 30px; }
  .legal-summary { padding: 20px; }
  .legal-content { padding: 22px; font-size: 15.5px; line-height: 1.7; }
  .legal-content section + section { margin-top: 40px; }
  .legal-content h2 { font-size: clamp(24px,7vw,32px); }
  .legal-updated { margin-top: 48px !important; }

  .article-hero { padding: calc(var(--header) + 54px) 0 58px; }
  .article-hero h1 { font-size: clamp(34px,9.6vw,49px); }
  .article-lead { font-size: 17px; line-height: 1.6; }
  .article-meta { gap: 8px 18px; margin-top: 28px; }
  .article-content { padding: 22px; font-size: 16px; line-height: 1.72; }
  .article-content h2 { font-size: clamp(26px,7.8vw,36px); }
  .article-content h3 { font-size: 22px; }
  .article-cta { padding: 24px; }
  .article-cta h2 { font-size: clamp(26px,7.8vw,36px); }

  .site-footer { padding: 54px 0 28px; }
  .footer-grid { gap: 28px; }
  .footer-brand { margin-bottom: 14px; }
  .footer-links a { min-height: 44px; padding: 11px 0; font-size: 13px; }
}

@media (max-width: 390px) {
  .brand span:last-child { font-size: 12px; }
  .hero h1 { font-size: 38px; }
  .page-hero h1, .article-hero h1 { font-size: 33px; }
  .section-heading h2,
  .intro-grid h2,
  .split-feature h2,
  .product-grid h2,
  .about-grid h2,
  .contact-grid h2,
  .contact-grid h1,
  .visual-copy h2 { font-size: 30px; }
  .button { padding-inline: 14px; gap: 12px; }
  .orbit-canvas { min-height: 0; aspect-ratio: 1.02; padding: 0; }
  .orbit-node { min-height: 0; padding: 4px 6px; font-size: 8px; }
  .orbit-core { width: 86px; height: 86px; display: grid; place-items: center; text-align: center; }
  .hero-content { padding-top: calc(var(--header) + 34px); }
  .optimization-visual { min-height: 500px; }
  .opt-stage { min-height: 424px; }
  .opt-column > span:not(.opt-caption) { font-size: 8px; }
  .founder-photo { width: min(72vw,255px); }
}

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