:root {
  color-scheme: light;
  --ink-980: #030a13;
  --ink-950: #06111f;
  --ink-900: #0a1728;
  --ink-800: #10233a;
  --ink-700: #16304e;
  --ink-600: #294866;
  --ink-500: #546b86;
  --ink-300: #92a4ba;
  --paper: #f7f4ee;
  --paper-2: #fffaf2;
  --paper-3: #eef5fb;
  --white: #ffffff;
  --cyan: #51d7ff;
  --cyan-deep: #268ed7;
  --blue: #4388ff;
  --terra: #d87539;
  --terra-soft: #ffb47d;
  --green: #70f2be;
  --line: rgba(125, 174, 219, .16);
  --shadow: 0 30px 80px rgba(6, 17, 31, 0.18);
  --shadow-dark: 0 34px 110px rgba(0, 0, 0, .42);
  --shadow-soft: 0 22px 60px rgba(16, 35, 58, 0.1);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --container: 1200px;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "Courier New", Courier, ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  background: var(--paper);
  color: var(--ink-900);
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }

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

.site-header {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 50;
  width: min(1180px, calc(100% - 28px));
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 12px 14px 12px 20px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 24px;
  background: rgba(5, 14, 25, 0.76);
  backdrop-filter: blur(22px);
  box-shadow: 0 18px 50px rgba(0,0,0,0.24);
}
.site-header.is-scrolled { background: rgba(5, 14, 25, 0.88); }
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 6px 12px 6px 8px;
  border-radius: 18px;
}
.brand-mark {
  width: 44px;
  height: 48px;
  object-fit: contain;
  flex: 0 0 auto;
}
.brand-wordmark {
  display: inline-flex;
  align-items: baseline;
  white-space: nowrap;
  font-family: var(--mono);
  font-size: 25px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.09em;
  color: #fff;
  text-rendering: geometricPrecision;
}
.brand-wordmark .accent {
  color: #ff914d;
}
.main-nav {
  display: flex;
  gap: 24px;
  margin-left: auto;
  color: rgba(255,255,255,0.72);
  font-size: 14px;
  font-weight: 650;
}
.main-nav a { transition: color .2s ease; }
.main-nav a:hover { color: var(--white); }
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.16);
  color: #fff;
  font-size: 14px;
  font-weight: 750;
}
.menu-toggle {
  display: none;
  margin-left: auto;
  border: 0;
  color: #fff;
  background: rgba(255,255,255,.1);
  border-radius: 999px;
  padding: 10px 14px;
}
.mobile-nav {
  position: fixed;
  z-index: 49;
  top: 88px;
  left: 20px;
  right: 20px;
  display: grid;
  gap: 4px;
  padding: 14px;
  border-radius: 20px;
  background: rgba(6, 17, 31, 0.96);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 24px 80px rgba(0,0,0,.28);
}
.mobile-nav a { color: #fff; padding: 12px 14px; border-radius: 14px; }
.mobile-nav a:hover { background: rgba(255,255,255,.08); }
.mobile-nav[hidden] { display: none !important; }

section { position: relative; }
.section-terminal {
  position: relative;
  overflow: hidden;
  min-height: 980px;
  padding: 124px 0 0;
  color: white;
  background:
    radial-gradient(circle at 12% 12%, rgba(216, 117, 57, .22), transparent 24%),
    radial-gradient(circle at 78% 16%, rgba(81, 215, 255, .14), transparent 28%),
    linear-gradient(125deg, #040b14 0%, #081523 52%, #0a1a2c 100%);
}
.section-terminal::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(125,174,219,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(125,174,219,.05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at 53% 45%, black, transparent 74%);
  pointer-events: none;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.code-rail {
  position: absolute;
  left: clamp(20px, 3vw, 54px);
  top: 180px;
  display: grid;
  gap: 14px;
  color: rgba(126, 164, 203, .36);
  font-family: var(--mono);
  font-size: 14px;
  z-index: 1;
}
.flow-lines {
  position: absolute;
  inset: auto 0 0 0;
  width: 100%;
  height: 56%;
  opacity: .44;
}
.flow-lines path {
  fill: none;
  stroke: rgba(71, 151, 255, .38);
  stroke-width: 1.2;
  stroke-dasharray: 7 12;
  animation: dash 18s linear infinite;
}
.flow-lines path:nth-child(2) { stroke: rgba(81, 215, 255, .22); animation-duration: 22s; }
.flow-lines path:nth-child(3) { stroke: rgba(216, 117, 57, .24); animation-duration: 26s; }

.workbench-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 240px minmax(440px, 1fr) minmax(320px, 410px);
  grid-template-areas:
    "brand hero panel"
    "domain code build";
  gap: 24px;
  align-items: start;
}
.brand-column {
  grid-area: brand;
  display: grid;
  grid-template-columns: 1fr 1px;
  align-items: center;
  justify-items: center;
  min-height: 280px;
}
.hero-mark {
  width: min(225px, 82%);
  filter: drop-shadow(0 28px 58px rgba(0,0,0,.38));
}
.brand-rule {
  width: 1px;
  height: 78%;
  background: linear-gradient(transparent, rgba(255,255,255,.28), transparent);
}
.hero-copy {
  grid-area: hero;
  align-self: start;
  padding: 18px 22px 34px 0;
}
.hero-wordmark { width: min(680px, 100%); margin-bottom: 18px; }
.hero-copy .tagline { margin-top: 6px; }
.tagline {
  margin: 0 0 26px;
  font-family: var(--mono);
  color: #9db6d0;
  letter-spacing: .24em;
  text-transform: uppercase;
  font-size: 14px;
}

.no-break {
  white-space: nowrap;
}

.hero h1 {
  margin: 0;
  max-width: 780px;
  color: #f7f4ee;
  font-size: clamp(40px, 4.45vw, 64px);
  line-height: 1.01;
  letter-spacing: -0.058em;
}

.hero-title-brand {
  display: block;
  margin-bottom: 10px;
  font-family: var(--mono);
  font-size: clamp(42px, 4.4vw, 64px);
  line-height: 1;
  letter-spacing: -0.075em;
  color: #fff;
  text-shadow: 0 18px 54px rgba(0,0,0,.32);
}
.hero-title-brand .accent {
  color: #ff914d;
}
.hero-title-promise {
  display: block;
  max-width: 820px;
}

.hero-lede {
  margin: 24px 0 0;
  max-width: 610px;
  color: rgba(241, 247, 255, .74);
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.55;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 32px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 52px;
  border-radius: 12px;
  padding: 0 24px;
  font-weight: 850;
  letter-spacing: -0.01em;
  border: 1px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button.primary {
  background: linear-gradient(135deg, #ffb47d, #e9823d 54%, #c96a3a);
  color: #fff;
  box-shadow: 0 18px 52px rgba(216,117,57,.28);
}
.button.ghost {
  color: white;
  background: rgba(255,255,255,.055);
  border-color: rgba(255,255,255,.2);
}
.button.secondary {
  color: white;
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.16);
  margin-top: 16px;
}
.button.full { width: 100%; border: 0; }

.engineering-card {
  grid-area: panel;
  align-self: start;
  margin-top: clamp(138px, 9vw, 166px);
  padding: 24px 26px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,.09), rgba(255,255,255,.045));
  border: 1px solid rgba(255,255,255,.13);
  box-shadow: var(--shadow-dark);
  backdrop-filter: blur(16px);
  max-width: 410px;
}
.panel-kicker {
  margin: 0 0 18px;
  font-family: var(--mono);
  color: #a9c4e1;
  text-transform: uppercase;
  letter-spacing: .22em;
  font-weight: 700;
  font-size: 12px;
}
.panel-kicker span { color: var(--terra-soft); font-size: 18px; vertical-align: -2px; }
.engineering-row {
  display: block;
  padding: 11px 0;
  border-left: 1px solid rgba(216,117,57,.46);
  padding-left: 18px;
  margin-left: 52px;
  position: relative;
}
.engineering-row .row-icon {
  position: absolute;
  left: -52px;
  top: 12px;
  width: 38px;
  color: #f2f6ff;
  font-family: var(--mono);
  font-size: 26px;
  line-height: 1;
  text-align: center;
}
.engineering-row .row-icon.mono { color: #fff; }
.engineering-row strong {
  display: block;
  margin-bottom: 5px;
  color: #fff;
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: .09em;
  font-size: 14px;
}
.engineering-row small { display: block; color: rgba(226,236,248,.64); font-size: 14px; line-height: 1.45; max-width: 30ch; }
.card-signoff {
  margin: 16px 0 0;
  color: #93b5db;
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 12.5px;
}

.domain-panel, .code-window, .build-panel {
  min-height: 360px;
  border-top: 1px solid rgba(255,255,255,.1);
  border-right: 1px solid rgba(255,255,255,.08);
  background: rgba(6, 17, 31, .42);
  backdrop-filter: blur(12px);
}
.domain-panel {
  grid-area: domain;
  padding: 34px 28px;
  border-left: 1px solid rgba(255,255,255,.08);
}
.compass-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid rgba(70, 151, 255, .9);
  position: relative;
  margin-bottom: 30px;
  box-shadow: 0 0 40px rgba(70,151,255,.18);
}
.compass-icon::before, .compass-icon::after, .compass-icon span::before, .compass-icon span::after {
  content: "";
  position: absolute;
  background: rgba(70,151,255,.9);
}
.compass-icon::before { width: 2px; height: 70px; left: 50%; top: -8px; transform: translateX(-50%); }
.compass-icon::after { height: 2px; width: 70px; top: 50%; left: -8px; transform: translateY(-50%); }
.compass-icon span::before { width: 16px; height: 16px; border-radius: 50%; left: 18px; top: 18px; background: transparent; border: 2px solid rgba(70,151,255,.9); }
.domain-panel h2, .build-panel h2 {
  margin: 0 0 24px;
  color: #fff;
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 17px;
  line-height: 1.35;
}
.domain-panel p { margin: 0 0 20px; color: rgba(226,236,248,.72); font-size: 16px; }
.domain-list { list-style: none; display: grid; gap: 14px; padding: 0; margin: 28px 0 0; }
.domain-list li {
  color: rgba(226,236,248,.75);
  display: flex;
  align-items: center;
  gap: 12px;
}
.domain-list li::before {
  content: "✓";
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(81,215,255,.7);
  color: #72e7ff;
  font-size: 12px;
}
.code-window { grid-area: code; overflow: hidden; }
.window-bar {
  display: flex;
  align-items: center;
  height: 46px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.025);
  padding: 0 18px;
}
.window-bar span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,.42);
  margin-right: 8px;
}
.window-bar strong {
  margin-left: 10px;
  padding: 14px 18px;
  align-self: stretch;
  display: flex;
  align-items: center;
  border-left: 1px solid rgba(255,255,255,.08);
  border-right: 1px solid rgba(255,255,255,.08);
  color: rgba(201,216,231,.74);
  font-family: var(--mono);
  font-size: 12.5px;
  font-weight: 400;
}
.code-window pre {
  margin: 0;
  padding: 28px 32px;
  overflow: auto;
  color: #bed0e3;
  font-family: var(--mono);
  font-size: 14px;
  line-height: 1.8;
}
.code-window code { font-family: inherit; }
.code-window .line { display: inline-block; width: 36px; color: rgba(151,173,196,.42); user-select: none; }
.kw { color: #57a7ff; }
.type { color: #f6a35f; }
.comment { color: rgba(159,181,205,.56); }
.build-panel {
  grid-area: build;
  padding: 34px 28px;
  border-right: 1px solid rgba(255,255,255,.08);
  position: relative;
  overflow: hidden;
}
.build-panel::after {
  content: "";
  position: absolute;
  inset: auto -30% -20% 20%;
  height: 220px;
  background:
    radial-gradient(circle at 50% 50%, rgba(81,215,255,.1), transparent 50%),
    repeating-radial-gradient(ellipse at center, rgba(70,151,255,.20) 0 1px, transparent 1px 18px);
  transform: rotate(-8deg);
  opacity: .5;
}
.build-icon svg { width: 58px; height: 58px; margin-bottom: 26px; }
.build-icon path { fill: none; stroke: #4c94ff; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.build-list { position: relative; z-index: 1; display: grid; gap: 18px; }
.build-list div { display: grid; grid-template-columns: 28px 1fr; column-gap: 16px; }
.build-list span { grid-row: span 2; color: #58a6ff; font-size: 24px; line-height: 1; }
.build-list strong { display: block; color: #fff; font-size: 16px; }
.build-list small { color: rgba(201,216,231,.65); font-size: 14px; }

.proof-strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 220px minmax(220px, 1fr) repeat(3, 110px) minmax(280px, 360px);
  gap: 22px;
  align-items: center;
  margin-top: 0;
  padding: 24px 32px;
  border-top: 1px solid rgba(255,255,255,.1);
  background: rgba(8, 20, 34, .84);
  backdrop-filter: blur(18px);
}
.strip-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
}
.strip-brand-mark {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 12px;
  flex: 0 0 auto;
}
.strip-brand-wordmark {
  display: inline-flex;
  align-items: baseline;
  white-space: nowrap;
  font-family: var(--mono);
  font-size: 23px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.09em;
  color: #fff;
  text-rendering: geometricPrecision;
}
.strip-brand-wordmark .accent { color: #ff914d; }
.proof-strip p { margin: 0; color: rgba(226,236,248,.68); font-size: 14px; }
.strip-metric { text-align: center; }
.strip-metric strong { display: block; color: #fff; font-size: 30px; line-height: 1; }
.strip-metric span { display: block; margin-top: 6px; color: #8fa9c8; text-transform: uppercase; letter-spacing: .1em; font-size: 10px; }
.proof-strip blockquote {
  margin: 0;
  padding: 18px 20px;
  border-radius: 14px;
  background: rgba(255,255,255,.055);
  color: rgba(245,248,255,.86);
  font-size: 14px;
}
.proof-strip blockquote::before { content: "“"; color: var(--terra-soft); font-size: 28px; line-height: 0; margin-right: 6px; }
.proof-strip cite { display: block; margin-top: 10px; color: #9bb2cc; font-style: normal; }

.eyebrow {
  margin: 0 0 18px;
  color: rgba(255,255,255,.68);
  font-size: 12.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 850;
}
.eyebrow.dark { color: var(--terra); }
h2 {
  margin: 0;
  font-size: clamp(36px, 4.4vw, 58px);
  line-height: 1.02;
  letter-spacing: -0.055em;
  color: var(--ink-950);
}
.intro-section { padding: 94px 0; background: linear-gradient(180deg, #f7f4ee, #fffaf2); }
.split-intro {
  display: grid;
  grid-template-columns: minmax(280px, 440px) 1fr;
  gap: 80px;
  align-items: start;
}
.split-intro p:last-child {
  margin: 38px 0 0;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.35;
  letter-spacing: -0.035em;
  color: var(--ink-700);
}
.section-light { padding: 104px 0; background: var(--paper-2); }
.section-heading { max-width: 760px; margin-bottom: 46px; }
.section-heading.left { margin-bottom: 0; }
.section-heading p:not(.eyebrow) { margin: 20px 0 0; color: var(--ink-500); font-size: 18px; }
.card-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.service-card {
  padding: 26px;
  border-radius: 28px;
  background: white;
  border: 1px solid rgba(16,35,58,.09);
  box-shadow: var(--shadow-soft);
  min-height: 300px;
}
.service-icon {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 15px;
  background: #f1efe8;
  color: var(--terra);
  font-family: var(--mono);
  font-weight: 900;
}
.service-card h3 { margin: 44px 0 12px; color: var(--ink-950); font-size: 21px; line-height: 1.1; letter-spacing: -0.03em; }
.service-card p { margin: 0; color: var(--ink-500); font-size: 15px; }
.section-light-alt {
  padding: 104px 0;
  background: radial-gradient(circle at 18% 14%, rgba(201, 106, 58, 0.12), transparent 28%), linear-gradient(180deg, #fffaf2, #eef5fb);
}
.fit-layout { display: grid; grid-template-columns: minmax(0, 520px) minmax(360px, 1fr); gap: 72px; align-items: center; }
.fit-card {
  position: relative;
  overflow: hidden;
  padding: 34px;
  border-radius: 32px;
  background: radial-gradient(circle at 90% 4%, rgba(81, 215, 255, 0.2), transparent 30%), linear-gradient(145deg, #0a1728, #10233a 58%, #132f4c);
  border: 1px solid rgba(16, 35, 58, 0.16);
  box-shadow: var(--shadow);
  color: white;
}
.fit-card::before {
  content: "";
  position: absolute;
  inset: 24px 28px auto auto;
  width: 96px;
  height: 96px;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,.14);
  background: linear-gradient(135deg, rgba(81,215,255,.22), rgba(201,106,58,.16)), repeating-linear-gradient(90deg, transparent 0 12px, rgba(255,255,255,.06) 12px 13px);
  transform: rotate(8deg);
}
.fit-kicker { display: inline-flex; margin-bottom: 22px; color: #ffcea9; font-size: 12.5px; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.fit-card h3 { position: relative; max-width: 560px; margin: 0 0 14px; font-size: clamp(28px, 3vw, 42px); line-height: 1.03; letter-spacing: -0.05em; }
.fit-card p { position: relative; margin: 0; max-width: 620px; color: rgba(255,255,255,.68); font-size: 17px; }
.fit-points { position: relative; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin-top: 28px; }
.fit-points span { padding: 13px 14px; border-radius: 16px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.78); font-size: 14px; font-weight: 750; }
.section-blue { padding: 110px 0; color: white; background: radial-gradient(circle at 84% 24%, rgba(81,215,255,.14), transparent 31%), linear-gradient(135deg, #0b1a2d, #132f4c 60%, #10233a); }
.section-blue h2 { color: white; }
.section-blue .section-heading p:not(.eyebrow) { color: rgba(255,255,255,.66); }
.principles-layout { display: grid; grid-template-columns: minmax(0, 470px) 1fr; gap: 74px; align-items: start; }
.principle-list { display: grid; gap: 14px; }
.principle-item { display: grid; grid-template-columns: 140px 1fr; gap: 20px; padding: 20px; border-radius: 22px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); }
.principle-item strong { color: #fff; font-size: 18px; }
.principle-item span { color: rgba(255,255,255,.68); }
.section-dark-soft { padding: 112px 0; color: white; background: radial-gradient(circle at 24% 22%, rgba(201,106,58,.22), transparent 26%), radial-gradient(circle at 85% 70%, rgba(81,215,255,.16), transparent 31%), linear-gradient(180deg, #071322, #0c1d31); }
.section-dark-soft h2 { color: white; }
.section-dark-soft .section-heading p:not(.eyebrow) { color: rgba(255,255,255,.67); }
.neurons-layout { display: grid; grid-template-columns: minmax(0, 500px) 1fr; gap: 74px; align-items: center; }
.neurons-card { position: relative; padding: 28px; min-height: 500px; border-radius: 34px; background: linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.05)); border: 1px solid rgba(255,255,255,.15); box-shadow: 0 40px 120px rgba(0,0,0,.34); overflow: hidden; }
.mesh-visual { position: relative; height: 250px; border-radius: 26px; background: radial-gradient(circle at 50% 50%, rgba(81,215,255,.18), rgba(8,23,40,.92) 56%); border: 1px solid rgba(255,255,255,.08); overflow: hidden; }
.mesh-visual svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.mesh-visual path { fill: none; stroke: rgba(103,218,255,.58); stroke-width: 2; stroke-linecap: round; stroke-dasharray: 8 10; animation: dash 5s linear infinite; }
.mesh-node { position: absolute; z-index: 2; width: 14px; height: 14px; border-radius: 50%; background: #fff; box-shadow: 0 0 22px rgba(103,218,255,.95), 0 0 50px rgba(103,218,255,.42); }
.mesh-node.n1 { left: 22%; top: 47%; }
.mesh-node.n2 { left: 71%; top: 30%; background: #70e2ff; }
.mesh-node.n3 { left: 76%; top: 57%; background: #ffb27e; }
.mesh-node.n4 { left: 48%; top: 62%; background: #70f2be; }
.product-label { display: inline-flex; margin-top: 24px; color: #ffcea9; font-size: 12.5px; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.neurons-card h3 { margin: 14px 0 10px; font-size: 38px; letter-spacing: -0.045em; }
.neurons-card p { color: rgba(255,255,255,.66); margin: 0; font-size: 17px; }
.about-layout { display: grid; grid-template-columns: 360px 1fr; gap: 76px; align-items: start; }
.portrait-card { position: sticky; top: 128px; padding: 28px; border-radius: 32px; background: #fff; border: 1px solid rgba(16,35,58,.09); box-shadow: var(--shadow-soft); }
.portrait-mark { width: 132px; height: 132px; display: grid; place-items: center; border-radius: 36px; background: linear-gradient(135deg, #0f2338, #06111f); color: #fff; font-size: 42px; font-weight: 900; letter-spacing: -0.06em; box-shadow: 0 24px 70px rgba(6,17,31,.24); }
.portrait-card h3 { margin: 24px 0 8px; font-size: 25px; letter-spacing: -0.04em; }
.portrait-card p { margin: 0; color: var(--ink-500); }

/* v37 — Alessandro personal site is linked from the AD mark, not the name */
.portrait-mark-link {
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, filter 180ms ease;
  border: 1px solid rgba(255,255,255,.12);
}

.portrait-mark-link:hover,
.portrait-mark-link:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 30px 86px rgba(6,17,31,.28), 0 0 34px rgba(255, 129, 59, .14), inset 0 1px 0 rgba(255,255,255,.18);
  border-color: rgba(255, 129, 59, .32);
  filter: saturate(1.04);
}

.portrait-mark-link:focus-visible {
  outline: 3px solid rgba(255, 129, 59, .55);
  outline-offset: 6px;
}

.about-copy p:not(.eyebrow) { color: var(--ink-600); font-size: 19px; max-width: 780px; }
.about-stats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; margin-top: 34px; }
.about-stats div { padding: 20px; border-radius: 22px; background: #f1efe8; }
.about-stats strong { display: block; font-size: 32px; color: var(--terra); }
.about-stats span { display: block; color: var(--ink-500); font-size: 14px; }
.section-contact { padding: 110px 0; background: linear-gradient(180deg, #eef5fb, #f7f4ee); }
.contact-layout { display: grid; grid-template-columns: minmax(0, 490px) minmax(360px, 520px); gap: 80px; align-items: start; }
.contact-form { display: grid; gap: 18px; padding: 30px; border-radius: 32px; background: rgba(255,255,255,.82); border: 1px solid rgba(16,35,58,.09); box-shadow: var(--shadow-soft); backdrop-filter: blur(12px); }
.contact-form label { display: grid; gap: 8px; }
.contact-form span { color: var(--ink-800); font-weight: 800; font-size: 14px; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; border: 1px solid rgba(16,35,58,.13); border-radius: 17px; background: white; color: var(--ink-900); padding: 15px 16px; outline: none; transition: border-color .2s ease, box-shadow .2s ease; }
.contact-form textarea { resize: vertical; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: rgba(46,167,255,.62); box-shadow: 0 0 0 4px rgba(46,167,255,.12); }
.site-footer { padding: 42px 0; background: var(--ink-950); color: rgba(255,255,255,.66); }
.footer-layout { display: flex; align-items: center; gap: 28px; }
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: #fff;
  text-decoration: none;
  flex: 0 0 auto;
}
.footer-brand-mark {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 12px;
}
.footer-brand-wordmark {
  display: inline-flex;
  align-items: baseline;
  white-space: nowrap;
  font-family: var(--mono);
  font-size: 23px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.09em;
  color: #fff;
  text-rendering: geometricPrecision;
}
.footer-brand-wordmark .accent { color: #ff914d; }
.footer-layout p { margin: 0; }
.footer-legal { line-height: 1.55; }
.footer-legal strong { color: #fff; font-weight: 750; }

.footer-links {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-left: auto;
  flex-wrap: wrap;
}
.footer-links a {
  color: #fff;
  font-weight: 750;
  text-decoration: none;
}
.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--accent);
}
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
@keyframes dash { to { stroke-dashoffset: -120; } }

@media (max-width: 1180px) {
  .workbench-grid { grid-template-columns: 180px 1fr; grid-template-areas: "brand hero" "panel panel" "domain code" "build build"; }
  .engineering-card { margin-top: 18px; max-width: none; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px 26px; }
  .engineering-card .panel-kicker, .engineering-card .card-signoff { grid-column: 1 / -1; }
  .proof-strip { grid-template-columns: 220px 1fr repeat(3, 100px); }
  .proof-strip blockquote { grid-column: 1 / -1; }
}
@media (max-width: 1040px) {
  .main-nav, .nav-cta { display: none; }
  .menu-toggle { display: inline-flex; }
  .principles-layout, .neurons-layout, .about-layout, .contact-layout, .split-intro, .fit-layout { grid-template-columns: 1fr; }
  .card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .about-layout, .contact-layout { gap: 42px; }
  .portrait-card { position: static; }
  .proof-strip { grid-template-columns: 1fr 1fr; }
  .strip-brand { grid-column: span 1; }
  .proof-strip p { grid-column: span 1; }
}
@media (max-width: 760px) {
  .container { width: min(100% - 28px, var(--container)); }
  .site-header { top: 10px; width: calc(100% - 20px); border-radius: 20px; }
  .brand { padding: 5px 8px 5px 6px; gap: 9px; }
  .brand-mark { width: 42px; height: 42px; }
  .brand-wordmark { font-size: 21px; letter-spacing: -0.085em; }
  .strip-brand-mark { width: 40px; height: 40px; }
  .strip-brand-wordmark { font-size: 21px; letter-spacing: -0.085em; }
  .section-terminal { padding-top: 124px; }
  .workbench-grid { grid-template-columns: 1fr; grid-template-areas: "hero" "brand" "panel" "domain" "code" "build"; }
  .brand-column { min-height: 180px; grid-template-columns: 1fr; }
  .brand-rule { display: none; }
  .hero-copy { padding: 0; }
  .hero-wordmark { width: min(540px, 100%); }
  .hero h1 { font-size: clamp(38px, 10vw, 56px); }
  .hero-title-brand { font-size: clamp(42px, 12vw, 62px); }
  .tagline { font-size: 10px; letter-spacing: .16em; }
  .engineering-card { margin-top: 0; grid-template-columns: 1fr; padding: 22px; }
  .engineering-row { margin-left: 44px; padding-left: 16px; }
  .engineering-row .row-icon { left: -44px; width: 32px; font-size: 23px; }
  .engineering-row small { max-width: none; }
  .domain-panel, .code-window, .build-panel { min-height: auto; border-left: 1px solid rgba(255,255,255,.08); }
  .code-window pre { font-size: 12px; padding: 20px 18px; }
  .proof-strip { grid-template-columns: 1fr; padding: 24px 22px; }
  .strip-metric { text-align: left; }
  .section-light, .section-light-alt, .section-blue, .section-dark-soft, .section-contact, .intro-section { padding: 74px 0; }
  h2 { font-size: clamp(34px, 11vw, 48px); }
  .card-grid, .about-stats, .fit-points { grid-template-columns: 1fr; }
  .principle-item { grid-template-columns: 1fr; gap: 8px; }
  .neurons-card { min-height: auto; }
  .footer-layout { flex-direction: column; align-items: flex-start; }
  .footer-brand-mark { width: 40px; height: 40px; }
  .footer-brand-wordmark { font-size: 21px; letter-spacing: -0.085em; }
  .footer-links { margin-left: 0; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

/* v12 — stronger Neurons product evidence */
.hero-product-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  padding: 12px 16px;
  border-radius: 999px;
  color: rgba(238, 247, 255, .78);
  background: rgba(71, 151, 255, .075);
  border: 1px solid rgba(81, 215, 255, .18);
  font-size: 14px;
  font-weight: 650;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}
.hero-product-link strong { color: #fff; }
.product-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #58d9ff;
  box-shadow: 0 0 0 6px rgba(81, 215, 255, .1), 0 0 22px rgba(81, 215, 255, .8);
}

.product-showcase {
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 20%, rgba(71,151,255,.22), transparent 28%),
    radial-gradient(circle at 82% 34%, rgba(81,215,255,.16), transparent 27%),
    radial-gradient(circle at 32% 82%, rgba(216,117,57,.14), transparent 24%),
    linear-gradient(180deg, #06111f 0%, #0a1728 48%, #071322 100%);
}
.product-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(125,174,219,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(125,174,219,.045) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: radial-gradient(circle at 58% 45%, black, transparent 74%);
  pointer-events: none;
}
.neurons-showcase-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr);
  gap: clamp(36px, 5vw, 60px);
  align-items: center;
}
.neurons-intro { max-width: 520px; }
.neurons-logo-lockup {
  width: min(360px, 100%);
  margin: 0 0 28px;
  filter: drop-shadow(0 24px 60px rgba(0,0,0,.32));
}
.neurons-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 26px;
}
.neurons-actions .button { margin-top: 0; }
.text-link {
  color: #7ee4ff;
  font-weight: 850;
  text-decoration: underline;
  text-decoration-color: rgba(126, 228, 255, .38);
  text-underline-offset: 5px;
}
.neurons-product-card {
  position: relative;
  padding: 28px;
  border-radius: 34px;
  color: white;
  background:
    linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.045)),
    radial-gradient(circle at 78% 18%, rgba(81,215,255,.16), transparent 34%);
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 44px 130px rgba(0,0,0,.38);
  backdrop-filter: blur(18px);
}
.neurons-product-top {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 20px;
  align-items: center;
  margin-bottom: 22px;
}
.neurons-product-top img {
  width: 70px;
  padding: 15px;
  border-radius: 22px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
}
.neurons-product-top .product-label {
  margin-top: 0;
  color: #7ee4ff;
}
.neurons-product-top h3 {
  margin: 6px 0 0;
  max-width: 560px;
  font-size: clamp(28px, 2.8vw, 42px);
  line-height: 1.06;
  letter-spacing: -.05em;
}
.neurons-platform-map {
  position: relative;
  margin: 0 0 18px;
  padding: 24px;
  border-radius: 24px;
  overflow: hidden;
  background:
    radial-gradient(circle at 48% 44%, rgba(35, 92, 255, .22), transparent 42%),
    linear-gradient(145deg, rgba(3, 10, 25, .94), rgba(7, 24, 53, .9));
  border: 1px solid rgba(94, 161, 255, .25);
}
.neurons-platform-map::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(126, 228, 255, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(126, 228, 255, .045) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(circle at 50% 48%, black, transparent 84%);
  pointer-events: none;
}
.platform-map-flow {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(60px, .48fr) minmax(0, 1.18fr) minmax(60px, .48fr) minmax(0, 1fr);
  gap: 8px;
  align-items: center;
}
.platform-map-node {
  min-width: 0;
  min-height: 138px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 16px;
  border-radius: 18px;
  background: rgba(13, 39, 78, .76);
  border: 1px solid rgba(81, 215, 255, .32);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
}
.platform-map-node strong {
  display: block;
  color: #fff;
  font-size: 15px;
  line-height: 1.25;
}
.platform-map-node small {
  display: block;
  margin-top: 8px;
  color: rgba(226, 236, 248, .72);
  font-size: 11px;
  line-height: 1.45;
}
.platform-map-node .map-node-tag {
  display: block;
  margin-bottom: 8px;
  color: #7ee4ff;
  font-family: var(--mono);
  font-size: 9.5px;
  font-weight: 900;
  line-height: 1.3;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.platform-map-aws {
  min-height: 170px;
  text-align: center;
  align-items: center;
  background:
    radial-gradient(circle at 50% 15%, rgba(81, 215, 255, .14), transparent 36%),
    rgba(10, 34, 76, .94);
  border-color: rgba(81, 215, 255, .6);
}
.platform-map-aws img {
  width: 38px;
  margin-bottom: 10px;
  filter: drop-shadow(0 0 14px rgba(81, 215, 255, .3));
}
.platform-map-matrix {
  background: rgba(42, 24, 88, .66);
  border-color: rgba(139, 100, 255, .58);
}
.platform-map-matrix .map-node-tag { color: #bfa8ff; }
.platform-map-matrix strong { font-size: 14px; }
.platform-map-connector {
  min-width: 0;
  min-height: 68px;
  display: grid;
  justify-items: center;
  gap: 5px;
  color: #7ee4ff;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: .05em;
  text-align: center;
  text-transform: uppercase;
}
.platform-map-connector-federation { color: #bfa8ff; }
.map-connector-arrow {
  color: currentColor;
  font-family: var(--font);
  font-size: 25px;
  line-height: 1;
}
.platform-map-outcomes {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 16px;
}
.platform-map-outcomes span {
  padding: 9px 10px;
  border-radius: 10px;
  color: rgba(226, 236, 248, .84);
  background: rgba(35, 92, 255, .17);
  border: 1px solid rgba(94, 161, 255, .18);
  font-size: 10px;
  font-weight: 800;
  line-height: 1.3;
  text-align: center;
}
.neurons-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.neurons-proof-grid div {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
}
.neurons-proof-grid strong {
  display: block;
  color: #fff;
  margin-bottom: 8px;
  font-size: 15px;
}
.neurons-proof-grid span {
  display: block;
  color: rgba(226,236,248,.64);
  font-size: 12.5px;
  line-height: 1.45;
}
.neurons-evidence {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 42px;
}
.neurons-evidence div {
  padding: 24px;
  border-radius: 26px;
  background: rgba(255,255,255,.065);
  border: 1px solid rgba(255,255,255,.1);
}
.neurons-evidence span {
  display: inline-flex;
  margin-bottom: 18px;
  color: #7ee4ff;
  font-family: var(--mono);
  font-weight: 900;
}
.neurons-evidence strong {
  display: block;
  color: #fff;
  font-size: 18px;
  margin-bottom: 8px;
}
.neurons-evidence p {
  margin: 0;
  color: rgba(226,236,248,.66);
  font-size: 14px;
}

@media (max-width: 1040px) {
  .neurons-showcase-layout { grid-template-columns: 1fr; }
  .neurons-product-card { max-width: 760px; }
  .neurons-evidence { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .hero-product-link { align-items: flex-start; border-radius: 18px; }
  .neurons-logo-lockup { width: min(300px, 100%); }

  .neurons-logo-composite { gap: 12px; margin-bottom: 22px; }
  .neurons-logo-mark-inline { width: 54px; height: 54px; }
  .neurons-logo-word { font-size: clamp(34px, 13vw, 52px); letter-spacing: .055em; }

  .neurons-product-top { grid-template-columns: 1fr; gap: 14px; }
  .neurons-product-top img { width: 56px; padding: 12px; border-radius: 18px; }
  .neurons-product-card { padding: 20px; border-radius: 26px; }
  .neurons-product-top h3 { font-size: clamp(26px, 8.5vw, 36px); }
  .neurons-platform-map { padding: 18px; }
  .platform-map-flow { grid-template-columns: 1fr; gap: 10px; }
  .platform-map-node,
  .platform-map-aws { min-height: auto; padding: 16px; text-align: left; align-items: flex-start; }
  .platform-map-aws img { width: 34px; }
  .platform-map-connector { grid-template-columns: auto auto; justify-content: center; align-items: center; gap: 8px; }
  .map-connector-arrow { transform: rotate(90deg); }
  .platform-map-connector-federation .map-connector-arrow { transform: rotate(90deg); }
  .platform-map-outcomes { grid-template-columns: 1fr; }
  .neurons-proof-grid { grid-template-columns: 1fr; }
}

.neurons-logo-link {
  display: inline-flex;
  width: fit-content;
  transition: transform 180ms ease, opacity 180ms ease;
}

.neurons-logo-link:hover {
  transform: translateY(-1px);
  opacity: 0.9;
}


.neurons-logo-composite {
  align-items: center;
  gap: 18px;
  margin: 0 0 28px;
  filter: drop-shadow(0 24px 60px rgba(0,0,0,.32));
}

.neurons-logo-mark-inline {
  width: 74px;
  height: 74px;
  display: block;
  flex: 0 0 auto;
}

.neurons-logo-word {
  display: inline-flex;
  align-items: center;
  color: #fff;
  font-family: Oxanium, "Space Grotesk", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(44px, 5.2vw, 76px);
  line-height: .92;
  font-weight: 600;
  letter-spacing: .075em;
  text-transform: lowercase;
}

.product-site-link {
  display: inline-flex;
  margin-top: 0.35rem;
  color: #7ee4ff;
  font-family: var(--mono);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer p a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 163, 95, 0.5);
}

.site-footer p a:hover {
  color: var(--accent);
}

/* v14 — Neurons product card is the primary link target */
a.neurons-product-card {
  display: block;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

a.neurons-product-card:hover {
  transform: translateY(-3px);
  border-color: rgba(126, 228, 255, .34);
  box-shadow: 0 50px 150px rgba(0,0,0,.46), 0 0 0 1px rgba(126,228,255,.08) inset;
}

a.neurons-product-card:focus-visible {
  outline: 3px solid rgba(126, 228, 255, .78);
  outline-offset: 6px;
}

/* v16 — graphical Neurons reference in the hero */
.hero-neurons-card {
  position: relative;
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  width: min(500px, 100%);
  margin-top: 26px;
  padding: 16px 18px;
  border-radius: 24px;
  color: #fff;
  background:
    radial-gradient(circle at 18% 50%, rgba(81, 215, 255, .22), transparent 42%),
    radial-gradient(circle at 86% 26%, rgba(67, 136, 255, .18), transparent 40%),
    linear-gradient(135deg, rgba(8, 24, 41, .82), rgba(12, 32, 54, .62));
  border: 1px solid rgba(81, 215, 255, .24);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .24), inset 0 1px 0 rgba(255,255,255,.11);
  overflow: hidden;
  isolation: isolate;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}
.hero-neurons-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent, rgba(81, 215, 255, .08), transparent),
    linear-gradient(rgba(125,174,219,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(125,174,219,.055) 1px, transparent 1px);
  background-size: 100% 100%, 36px 36px, 36px 36px;
  opacity: .72;
  pointer-events: none;
  z-index: -1;
}
.hero-neurons-card:hover,
.hero-neurons-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(81, 215, 255, .46);
  box-shadow: 0 30px 86px rgba(0, 0, 0, .3), 0 0 38px rgba(81, 215, 255, .14), inset 0 1px 0 rgba(255,255,255,.15);
}
.hero-neurons-visual {
  position: relative;
  display: grid;
  place-items: center;
  height: 68px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 42%, rgba(81, 215, 255, .24), transparent 62%),
    rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.11);
  overflow: hidden;
}
.hero-neurons-mark {
  position: relative;
  z-index: 2;
  width: 44px;
  filter: drop-shadow(0 0 16px rgba(81, 215, 255, .42));
}
.hero-mini-mesh,
.hero-mini-mesh svg {
  position: absolute;
  inset: 0;
}
.hero-mini-mesh svg path {
  fill: none;
  stroke: rgba(81, 215, 255, .34);
  stroke-width: 1.8;
  stroke-dasharray: 5 7;
  animation: dash 14s linear infinite;
}
.mini-node {
  position: absolute;
  z-index: 1;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #5edfff;
  box-shadow: 0 0 16px rgba(81, 215, 255, .82);
}
.mini-node-a { left: 16%; top: 58%; }
.mini-node-b { right: 18%; top: 28%; background: #fff; }
.mini-node-c { right: 25%; bottom: 22%; background: #4388ff; }
.hero-neurons-content {
  min-width: 0;
  display: grid;
  gap: 5px;
  justify-items: start;
  text-align: left;
}
.hero-neurons-kicker {
  color: #7ee4ff;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.hero-neurons-logo {
  width: min(210px, 100%);
  filter: drop-shadow(0 14px 32px rgba(0,0,0,.28));
}
.hero-neurons-meta {
  color: rgba(226, 236, 248, .68);
  font-size: 12.5px;
  font-weight: 700;
}
.hero-neurons-arrow {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  color: #06111f;
  background: linear-gradient(135deg, #7ee4ff, #4388ff);
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(67, 136, 255, .25);
}
@media (max-width: 760px) {
  .hero-neurons-card {
    grid-template-columns: 72px minmax(0, 1fr);
    padding: 14px;
    border-radius: 22px;
  }
  .hero-neurons-visual { height: 64px; border-radius: 18px; }
  .hero-neurons-mark { width: 40px; }
  .hero-neurons-arrow { display: none; }
  .hero-neurons-kicker { font-size: 10px; letter-spacing: .08em; }
  .hero-neurons-logo { width: min(210px, 100%); }
  .hero-neurons-meta { font-size: 12px; }
}


/* v24 focused delivery refinement */
.delivery-callout {
  margin: 0;
  padding: 18px 20px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255,145,77,.12), rgba(81,215,255,.07));
  border: 1px solid rgba(255,255,255,.09);
  color: rgba(245,248,255,.88);
}
.delivery-callout strong {
  display: block;
  margin-bottom: 7px;
  color: #fff;
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: 12px;
}
.delivery-callout span {
  display: block;
  color: rgba(226,236,248,.72);
  font-size: 14px;
  line-height: 1.45;
}
.build-list small { line-height: 1.4; }

/* --------------------------------------------------------------------------
   v35 color study: Electric Energy
   Goal: lighter, more innovation-oriented palette; less Neurons-like navy/cyan
   and less warm/brown than v34. Structure and content are unchanged.
---------------------------------------------------------------------------- */
:root {
  --ink-980: #020713;
  --ink-950: #061226;
  --ink-900: #08162d;
  --ink-800: #11264a;
  --ink-700: #1c3b6a;
  --ink-600: #33557f;
  --ink-500: #667b99;
  --ink-300: #aebbd0;
  --paper: #f6f9ff;
  --paper-2: #ffffff;
  --paper-3: #eaf2ff;
  --white: #ffffff;
  --cyan: #00b7ff;
  --cyan-deep: #0077ff;
  --blue: #235cff;
  --terra: #ff4b1f;
  --terra-soft: #ff8a00;
  --green: #12d88f;
  --line: rgba(35, 92, 255, .14);
  --shadow: 0 30px 80px rgba(17, 38, 74, 0.18);
  --shadow-dark: 0 34px 110px rgba(2, 7, 19, .42);
  --shadow-soft: 0 24px 70px rgba(17, 38, 74, 0.12);
}

body {
  background:
    radial-gradient(circle at 12% 8%, rgba(35, 92, 255, .07), transparent 28%),
    radial-gradient(circle at 88% 14%, rgba(255, 75, 31, .07), transparent 24%),
    var(--paper);
}

.site-header {
  background: rgba(4, 13, 31, 0.78);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 20px 58px rgba(3, 15, 38, 0.25);
}
.site-header.is-scrolled { background: rgba(4, 13, 31, 0.9); }
.brand-wordmark .accent,
.footer-brand-wordmark .accent,
.strip-brand-wordmark .accent { color: #ff7a1a; }
.nav-cta {
  background: linear-gradient(135deg, rgba(255, 75, 31, .95), rgba(255, 138, 0, .92));
  border-color: rgba(255, 255, 255, .16);
  box-shadow: 0 12px 34px rgba(255, 75, 31, .24);
}

.section-terminal {
  color: white;
  background:
    radial-gradient(circle at 8% 18%, rgba(255, 75, 31, .22), transparent 25%),
    radial-gradient(circle at 75% 8%, rgba(35, 92, 255, .34), transparent 32%),
    radial-gradient(circle at 64% 55%, rgba(0, 183, 255, .14), transparent 28%),
    linear-gradient(122deg, #050915 0%, #071b3c 42%, #093b8f 100%);
}
.section-terminal::after {
  background:
    linear-gradient(rgba(255,255,255,.052) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.052) 1px, transparent 1px);
}
.hero h1 { color: #ffffff; text-shadow: 0 18px 48px rgba(0,0,0,.24); }
.hero-copy .tagline,
.tagline { color: #b9caff; }
.hero p { color: rgba(246, 249, 255, .78); }
.button.primary {
  background: linear-gradient(135deg, #ff8a00 0%, #ff4b1f 58%, #e81943 100%);
  box-shadow: 0 18px 54px rgba(255, 75, 31, .36);
}
.button.secondary {
  background: rgba(255,255,255,.075);
  border-color: rgba(255,255,255,.24);
}
.button:hover { transform: translateY(-2px); }

.engineering-panel,
.domain-panel,
.code-window,
.build-panel,
.proof-strip {
  background-color: rgba(5, 16, 38, .56);
  border-color: rgba(255,255,255,.14);
}
.engineering-row { border-left-color: rgba(255, 119, 26, .56); }
.panel-kicker span,
.fit-kicker,
.product-label,
.proof-strip blockquote::before { color: #ff9c39; }
.row-icon,
.build-list span,
.kw { color: #5ea1ff; }
.check { border-color: rgba(0, 183, 255, .78); color: #65dcff; }

.intro-section {
  background:
    radial-gradient(circle at 7% 8%, rgba(255, 75, 31, .08), transparent 25%),
    linear-gradient(180deg, #ffffff, #f3f7ff);
}
.section-light {
  background:
    radial-gradient(circle at 92% 10%, rgba(35, 92, 255, .055), transparent 28%),
    #ffffff;
}
.section-light-alt {
  background:
    radial-gradient(circle at 15% 10%, rgba(255, 75, 31, .08), transparent 25%),
    radial-gradient(circle at 85% 24%, rgba(35, 92, 255, .08), transparent 24%),
    linear-gradient(180deg, #fff, #eef4ff);
}
.section-contact {
  background:
    radial-gradient(circle at 12% 22%, rgba(35, 92, 255, .09), transparent 25%),
    radial-gradient(circle at 90% 16%, rgba(255, 75, 31, .11), transparent 24%),
    linear-gradient(180deg, #eef4ff, #ffffff);
}
.eyebrow.dark { color: #e54822; }
.section-heading p:not(.eyebrow),
.intro-copy p,
.service-card p,
.portrait-card p,
.about-copy p:not(.eyebrow) { color: #526984; }
.section-heading h2,
.intro-copy h2,
.about-copy h2,
.contact-copy h2 { color: #071226; }
.service-card,
.portrait-card,
.contact-form {
  background: rgba(255,255,255,.92);
  border-color: rgba(8, 22, 45, .09);
  box-shadow: 0 28px 80px rgba(17, 38, 74, .11);
}
.service-index,
.about-stats div {
  background: #edf3ff;
  color: #ff4b1f;
}
.about-stats strong { color: #ff4b1f; }

.fit-card {
  background:
    radial-gradient(circle at 86% 0%, rgba(255, 75, 31, .25), transparent 34%),
    radial-gradient(circle at 12% 120%, rgba(35, 92, 255, .24), transparent 42%),
    linear-gradient(135deg, #071226, #0d2e6f 62%, #123f97);
  box-shadow: 0 32px 92px rgba(10, 46, 111, .28);
}
.fit-visual {
  background:
    linear-gradient(135deg, rgba(35,92,255,.28), rgba(255,75,31,.18)),
    repeating-linear-gradient(90deg, transparent 0 12px, rgba(255,255,255,.06) 12px 13px);
}
.fit-points span {
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.18);
}

.section-blue {
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 75, 31, .18), transparent 26%),
    radial-gradient(circle at 88% 18%, rgba(0, 183, 255, .16), transparent 30%),
    linear-gradient(135deg, #061226, #123f97 100%);
}
.principle-item {
  background: rgba(255,255,255,.11);
  border-color: rgba(255,255,255,.16);
}
.section-dark-soft {
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 75, 31, .18), transparent 25%),
    radial-gradient(circle at 82% 72%, rgba(35, 92, 255, .22), transparent 34%),
    linear-gradient(180deg, #061226, #081f4a 100%);
}
.neurons-card {
  background:
    linear-gradient(180deg, rgba(255,255,255,.14), rgba(255,255,255,.06));
  border-color: rgba(255,255,255,.16);
}
.mesh-visual {
  background:
    radial-gradient(circle at 50% 50%, rgba(35, 92, 255, .22), rgba(3, 10, 19, .94) 58%);
}
.product-hero {
  background:
    radial-gradient(circle at 16% 18%, rgba(255, 75, 31, .22), transparent 28%),
    radial-gradient(circle at 85% 20%, rgba(35, 92, 255, .30), transparent 34%),
    linear-gradient(135deg, #061226, #123f97);
  border-color: rgba(255,255,255,.18);
}
.product-chip,
.hero-product-link {
  border-color: rgba(35, 92, 255, .22);
  background: rgba(35, 92, 255, .10);
}
.hero-product-link::before {
  background: #ff5a1f;
  box-shadow: 0 0 0 6px rgba(255, 75, 31, .12), 0 0 22px rgba(255, 75, 31, .65);
}
.hero-product-link strong,
.product-chip strong { color: #fff; }
.product-facts li {
  background: rgba(255,255,255,.09);
  border-color: rgba(255,255,255,.14);
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(35, 92, 255, .58);
  box-shadow: 0 0 0 4px rgba(35, 92, 255, .12);
}
.contact-form .consent-line {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  color: #526984;
  font-size: 13px;
  line-height: 1.45;
}
.contact-form .consent-line input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  padding: 0;
  accent-color: #e54822;
}
.contact-form .consent-line span {
  color: #526984;
  font-weight: 700;
  font-size: 13px;
}
.contact-form .privacy-note {
  margin: -2px 0 0;
  color: #526984;
  font-size: 13px;
  line-height: 1.55;
}
.contact-form .privacy-note a {
  color: #c93a18;
  font-weight: 850;
  text-underline-offset: 3px;
}
.contact-form .hidden-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.contact-form .form-status {
  min-height: 22px;
  margin: 0;
  color: #526984;
  font-size: 14px;
  font-weight: 750;
}
.contact-form .form-status.success { color: #0a7f52; }
.contact-form .form-status.error { color: #bf2f13; }
.contact-form button[disabled] {
  cursor: wait;
  opacity: .72;
  transform: none;
}
.site-footer {
  background: #061226;
}

/* Privacy notice page */
.privacy-page {
  min-height: 100svh;
  background: #ffffff;
}

.privacy-hero {
  padding: 150px 0 96px;
}

.privacy-layout,
.privacy-form-layout {
  display: grid;
  grid-template-columns: minmax(280px, 460px) minmax(0, 760px);
  gap: clamp(42px, 6vw, 82px);
  align-items: start;
}

.privacy-page h1 {
  margin: 0;
  color: #071226;
  font-family: var(--font);
  font-size: clamp(42px, 5.8vw, 78px);
  line-height: .96;
  letter-spacing: -.065em;
}

.privacy-content {
  display: grid;
  gap: 18px;
}

.privacy-block {
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid rgba(8, 22, 45, .09);
  border-radius: 24px;
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 22px 68px rgba(17, 38, 74, .08);
}

.privacy-block h2 {
  margin: 0 0 10px;
  color: #071226;
  font-family: var(--font);
  font-size: clamp(22px, 2.4vw, 31px);
  line-height: 1.05;
  letter-spacing: -.04em;
}

.privacy-block p {
  margin: 0;
  color: #526984;
  font-size: 16.5px;
  line-height: 1.65;
}

.privacy-block a {
  color: #c93a18;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.privacy-request-section {
  padding-top: 96px;
}

.privacy-request-form textarea {
  min-height: 132px;
}

@media (max-width: 960px) {
  .privacy-hero {
    padding: 122px 0 72px;
  }

  .privacy-layout,
  .privacy-form-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

/* v36 contrast fix: keep headings readable on the electric-blue/dark sections. */
.section-blue,
.section-dark-soft {
  color: #ffffff;
}

.section-blue h2,
.section-blue .section-heading h2,
.section-blue .principles-copy h2,
.section-dark-soft h2,
.section-dark-soft .section-heading h2,
.section-dark-soft .neurons-intro h2 {
  color: #ffffff;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.18);
}

.section-blue .section-heading p:not(.eyebrow),
.section-blue .principles-copy p,
.section-dark-soft .section-heading p:not(.eyebrow),
.section-dark-soft .neurons-intro p {
  color: rgba(255, 255, 255, 0.74);
}

.section-blue .eyebrow,
.section-dark-soft .eyebrow {
  color: rgba(255, 255, 255, 0.72);
}
