:root {
  --ink: #07111d;
  --ink-2: #0b1a2b;
  --paper: #f5f5f2;
  --paper-2: #eceeea;
  --line: rgba(7,17,29,.14);
  --blue: #0b60ff;
  --blue-deep: #063fbd;
  --white: #ffffff;
  --muted: #6b747c;
  --radius: 26px;
  --pad: clamp(20px, 4vw, 72px);
  --max: 1600px;
  --ease: cubic-bezier(.2,.75,.2,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 20% 0%, rgba(11,96,255,.045), transparent 28%),
    var(--paper);
  font-family: Inter, Arial, sans-serif;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .22;
  z-index: 999;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.08'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { color: inherit; }
img { display: block; max-width: 100%; }
.site-shell { width: 100%; }
.section-pad { padding-left: var(--pad); padding-right: var(--pad); }

/* Preloader */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: var(--ink);
  color: white;
  display: grid;
  place-items: center;
  transition: transform .85s cubic-bezier(.77,0,.18,1), visibility .85s;
}
.preloader.hide { transform: translateY(-100%); visibility: hidden; }
.preloader-word { font-size: 13px; letter-spacing: .42em; margin-top: 130px; position: absolute; }
.preloader-mark { width: 110px; height: 110px; position: relative; }
.preloader-mark span { position: absolute; width: 140%; height: 3px; background: linear-gradient(90deg, white 20%, var(--blue)); left: -20%; top: 50%; transform-origin: center; }
.preloader-mark span:first-child { transform: rotate(42deg) scaleX(0); animation: drawA .75s .15s forwards cubic-bezier(.77,0,.18,1); }
.preloader-mark span:last-child { transform: rotate(-42deg) scaleX(0); animation: drawB .75s .38s forwards cubic-bezier(.77,0,.18,1); }
@keyframes drawA { to { transform: rotate(42deg) scaleX(1); } }
@keyframes drawB { to { transform: rotate(-42deg) scaleX(1); } }

/* Header */
.topbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: 88px;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  transition: background .35s, height .35s, border-color .35s, backdrop-filter .35s;
}
.topbar.scrolled { height: 72px; background: rgba(245,245,242,.86); border-bottom: 1px solid var(--line); backdrop-filter: blur(18px); }
.brand { width: 178px; display: inline-block; position: relative; z-index: 103; }
.brand img { width: 100%; }
.desktop-nav { display: flex; gap: 34px; font-size: 13px; color: #39424a; }
.desktop-nav a { transition: color .2s; }
.desktop-nav a:hover { color: var(--blue); }
.topbar-actions { justify-self: end; display: flex; align-items: center; gap: 22px; }
.nav-cta { font-size: 13px; font-weight: 600; padding: 11px 0; border-bottom: 1px solid currentColor; white-space: nowrap; }
.nav-cta b { color: var(--blue); font-size: 15px; font-weight: 500; }
.menu-toggle, .mobile-panel { display: none; }

.lang-switcher { position: relative; }
.lang-current {
  min-width: 62px;
  height: 34px;
  padding: 0 10px;
  border: 1px solid rgba(7,17,29,.16);
  border-radius: 999px;
  background: rgba(255,255,255,.36);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  cursor: pointer;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  transition: border-color .2s, background .2s;
}
.lang-current:hover { border-color: rgba(7,17,29,.35); background: rgba(255,255,255,.65); }
.lang-chevron { font-size: 11px; transform: translateY(-1px); transition: transform .25s; }
.lang-switcher.open .lang-chevron { transform: rotate(180deg) translateY(1px); }
.lang-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 195px;
  padding: 7px;
  border-radius: 16px;
  border: 1px solid rgba(7,17,29,.12);
  background: rgba(250,250,248,.96);
  box-shadow: 0 20px 65px rgba(7,17,29,.13);
  backdrop-filter: blur(22px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px) scale(.98);
  transform-origin: top right;
  transition: opacity .22s, transform .22s, visibility .22s;
}
.lang-switcher.open .lang-menu { opacity: 1; visibility: visible; transform: none; }
.lang-menu button {
  width: 100%;
  border: 0;
  background: transparent;
  border-radius: 11px;
  padding: 11px 10px;
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 5px;
  text-align: left;
  cursor: pointer;
  font-size: 10px;
  letter-spacing: .1em;
  font-weight: 700;
}
.lang-menu button span { font-size: 12px; letter-spacing: 0; font-weight: 500; color: #707982; }
.lang-menu button:hover, .lang-menu button.active { background: #e9eced; }
.lang-menu button.active { color: var(--blue); }

/* Hero */
.hero {
  min-height: 100svh;
  padding-top: 136px;
  padding-bottom: 0;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 88px var(--pad) 0;
  border-left: 1px solid rgba(7,17,29,.07);
  border-right: 1px solid rgba(7,17,29,.07);
  pointer-events: none;
}
.hero-ambient { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.ambient-grid {
  position: absolute;
  inset: 88px 0 0 0;
  opacity: .32;
  background-image:
    linear-gradient(rgba(7,17,29,.038) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7,17,29,.038) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.7), rgba(0,0,0,.08) 78%, transparent 96%);
}
.hero-layout {
  position: relative;
  z-index: 3;
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.38fr) minmax(390px, .62fr);
  gap: clamp(34px, 5vw, 86px);
  align-items: end;
}
.hero-primary { min-width: 0; }
.hero-kicker, .eyebrow { font-size: 11px; letter-spacing: .19em; font-weight: 700; color: #58616a; }
.hero-kicker { display: flex; align-items: center; gap: 10px; }
.status-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 0 5px rgba(11,96,255,.09); }
.hero-title {
  margin: clamp(30px, 4.6vw, 64px) 0 0;
  font-family: Manrope, Inter, sans-serif;
  font-size: clamp(66px, 8.1vw, 142px);
  line-height: .83;
  letter-spacing: -.073em;
  font-weight: 600;
  max-width: 1120px;
}
.hero-title span { display: block; }
.hero-title span:last-child { color: transparent; -webkit-text-stroke: 1.45px var(--ink); }
.hero-lower { margin-top: clamp(36px, 4.2vw, 66px); display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 28px; align-items: end; max-width: 1050px; }
.hero-copy { margin: 0; max-width: 650px; font-size: clamp(16px, 1.35vw, 22px); line-height: 1.52; letter-spacing: -.025em; color: #3d464e; }
.hero-actions { display: flex; flex-direction: column; align-items: flex-start; gap: 17px; }
.btn { display: inline-flex; align-items: center; justify-content: space-between; gap: 42px; min-width: 245px; padding: 18px 22px; border-radius: 999px; font-size: 13px; font-weight: 600; transition: transform .2s, background .2s, color .2s; }
.btn-dark { background: var(--ink); color: white; }
.btn-dark b, .btn-blue b { font-size: 18px; font-weight: 500; }
.btn-blue { background: var(--blue); color: white; }
.text-link { font-size: 12px; display: inline-flex; gap: 12px; align-items: center; }
.text-link b { color: var(--blue); font-size: 14px; }

.hero-x { position: absolute; width: min(90vw, 1500px); height: 87vh; right: -19vw; top: 7vh; z-index: 1; opacity: .10; }
.hero-x svg { width: 100%; height: 100%; overflow: visible; }
.x-stroke { fill: none; stroke: url(#xgrad); stroke-width: 7; stroke-linecap: round; vector-effect: non-scaling-stroke; stroke-dasharray: 1600; stroke-dashoffset: 1600; }
body.loaded .x-a { animation: drawX 1.8s .25s forwards cubic-bezier(.4,0,.2,1); }
body.loaded .x-b { animation: drawX 1.8s .48s forwards cubic-bezier(.4,0,.2,1); }
@keyframes drawX { to { stroke-dashoffset: 0; } }

.hero-console {
  min-height: 495px;
  border-radius: 28px;
  background: rgba(7,17,29,.965);
  color: white;
  border: 1px solid rgba(255,255,255,.11);
  box-shadow: 0 36px 100px rgba(7,17,29,.17);
  position: relative;
  overflow: hidden;
  padding: 24px;
  isolation: isolate;
}
.hero-console::before {
  content: "";
  position: absolute;
  width: 390px;
  height: 390px;
  right: -160px;
  top: 18px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(11,96,255,.28), rgba(11,96,255,.055) 38%, transparent 69%);
  z-index: -1;
}
.hero-console::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.027) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.027) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.85), transparent 90%);
  pointer-events: none;
  z-index: -1;
}
.console-head { display: flex; justify-content: space-between; gap: 20px; padding-bottom: 22px; border-bottom: 1px solid rgba(255,255,255,.1); }
.console-head > div:first-child { display: flex; flex-direction: column; gap: 8px; }
.console-eyebrow { color: #778a9d; font-size: 8px; letter-spacing: .19em; font-weight: 700; }
.console-head strong { font-size: 11px; letter-spacing: .12em; font-weight: 600; }
.console-live { display: flex; align-items: center; gap: 7px; color: #9aabba; font-size: 8px; letter-spacing: .13em; }
.console-live i { width: 7px; height: 7px; border-radius: 50%; background: #3b82f6; box-shadow: 0 0 0 0 rgba(59,130,246,.5); animation: pulse 2s infinite; }
@keyframes pulse { 60% { box-shadow: 0 0 0 7px rgba(59,130,246,0); } 100% { box-shadow: 0 0 0 0 rgba(59,130,246,0); } }
.console-flow { position: relative; margin: 44px 4px 0; height: 94px; display: grid; grid-template-columns: repeat(5,1fr); align-items: center; }
.flow-line { position: absolute; height: 1px; left: 9%; right: 9%; top: 50%; background: linear-gradient(90deg, rgba(255,255,255,.12), #0b60ff 50%, rgba(255,255,255,.12)); }
.flow-line::after { content:""; position:absolute; left:0; top:-1px; height:3px; width:23%; background: linear-gradient(90deg, transparent, #69a1ff, transparent); animation: flow 3.1s linear infinite; }
@keyframes flow { from { transform: translateX(-80%); } to { transform: translateX(420%); } }
.flow-node { position: relative; z-index: 1; justify-self: center; width: 50px; height: 50px; background: #091625; border: 1px solid rgba(255,255,255,.14); border-radius: 50%; display: grid; place-items: center; align-content: center; gap: 2px; box-shadow: 0 0 0 8px rgba(7,17,29,.9); }
.flow-node span { color: #647789; font-size: 6px; letter-spacing: .1em; }
.flow-node b { font-size: 8px; letter-spacing: .11em; font-weight: 600; }
.flow-node.active { width: 62px; height: 62px; border-color: rgba(64,132,255,.7); background: radial-gradient(circle at 35% 30%, #135fd9, #08234a 58%, #081522); box-shadow: 0 0 38px rgba(11,96,255,.34), 0 0 0 9px rgba(7,17,29,.9); }
.flow-node.active span { color: #a9c8ff; }
.console-message { margin-top: 35px; display: grid; grid-template-columns: 38px 1fr; gap: 14px; align-items: start; }
.console-index { color: #5087dd; font-size: 9px; letter-spacing: .13em; padding-top: 4px; }
.console-message p { margin: 0; color: #b7c1cb; font-size: 13px; line-height: 1.65; max-width: 355px; }
.console-grid { position: absolute; left: 24px; right: 24px; bottom: 24px; display: grid; grid-template-columns: repeat(3,1fr); border: 1px solid rgba(255,255,255,.09); border-radius: 14px; overflow: hidden; background: rgba(255,255,255,.02); }
.console-grid div { min-height: 64px; padding: 12px; display: flex; flex-direction: column; justify-content: space-between; gap: 7px; }
.console-grid div + div { border-left: 1px solid rgba(255,255,255,.09); }
.console-grid span { color: #607386; font-size: 6px; letter-spacing: .14em; }
.console-grid strong { color: #d6dee6; font-size: 7px; letter-spacing: .1em; font-weight: 600; line-height: 1.3; }
.console-orbit { position: absolute; width: 122px; height: 122px; border: 1px dashed rgba(90,149,255,.18); border-radius: 50%; right: -44px; top: 131px; animation: spin 15s linear infinite; }
.console-orbit i { position:absolute; width:4px; height:4px; border-radius:50%; background:#4180ee; }
.console-orbit i:nth-child(1){ left:58px; top:-2px; }.console-orbit i:nth-child(2){ right:2px; top:76px; }.console-orbit i:nth-child(3){ left:10px; bottom:22px; }

.hero-bottom {
  position: relative;
  z-index: 4;
  max-width: var(--max);
  width: 100%;
  margin: clamp(54px, 6vh, 88px) auto 0;
  min-height: 92px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 210px 1fr;
  align-items: stretch;
}
.hero-bottom-label { display: flex; align-items: center; font-size: 9px; letter-spacing: .18em; color: #707a83; font-weight: 700; }
.hero-process { display: grid; grid-template-columns: repeat(5,1fr); border-left: 1px solid var(--line); }
.hero-process span { display: flex; align-items: center; gap: 10px; padding: 0 18px; border-right: 1px solid var(--line); min-width: 0; }
.hero-process span:last-child { border-right: 0; }
.hero-process b { font-size: 8px; color: #8b949c; font-weight: 500; }
.hero-process i { font-size: 9px; font-style: normal; letter-spacing: .12em; font-weight: 700; white-space: nowrap; }

/* Core sections */
.manifesto { padding-top: 170px; padding-bottom: 180px; max-width: var(--max); margin: 0 auto; }
.manifesto-grid { display: grid; grid-template-columns: 1fr 3fr; gap: 7vw; margin-top: 52px; }
.manifesto-small { margin: 0; max-width: 300px; color: var(--muted); line-height: 1.6; font-size: 14px; }
.manifesto-title { margin: 0; font-family: Manrope, sans-serif; font-size: clamp(42px, 5.5vw, 88px); line-height: 1.04; letter-spacing: -.055em; font-weight: 500; }
.manifesto-title em { font-style: normal; color: var(--blue); }

.capabilities { padding-top: 120px; padding-bottom: 170px; border-top: 1px solid var(--line); max-width: var(--max); margin: 0 auto; }
.section-head { display: grid; grid-template-columns: 2fr 1fr; gap: 7vw; align-items: end; margin-bottom: 62px; }
.section-head h2 { margin: 16px 0 0; font-family: Manrope, sans-serif; font-size: clamp(44px, 6vw, 88px); line-height: .98; letter-spacing: -.055em; font-weight: 500; }
.section-head p { color: var(--muted); font-size: 15px; line-height: 1.65; max-width: 430px; margin: 0 0 8px; }
.cap-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.cap-card { min-height: 390px; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; position: relative; overflow: hidden; transition: transform .45s var(--ease), background .3s, color .3s; }
.cap-card::after { content: attr(data-num); position: absolute; right: -12px; bottom: -58px; font-family: Manrope, sans-serif; font-size: 180px; letter-spacing: -.09em; opacity: .035; }
.cap-card:hover { transform: translateY(-7px); background: var(--ink); color: white; }
.cap-card:hover p, .cap-card:hover .cap-top { color: #aeb9c3; }
.cap-card:hover .tags span { border-color: rgba(255,255,255,.18); color: #d4dae0; }
.cap-card:nth-child(2):hover { background: var(--blue); }
.cap-top { display: flex; justify-content: space-between; font-size: 12px; color: #66717a; }
.cap-card h3 { margin: 100px 0 18px; font-family: Manrope, sans-serif; font-size: clamp(30px, 3vw, 46px); line-height: 1; letter-spacing: -.04em; font-weight: 500; }
.cap-card p { margin: 0; max-width: 470px; color: var(--muted); font-size: 14px; line-height: 1.6; transition: color .3s; }
.tags { position: absolute; left: 28px; bottom: 28px; display: flex; gap: 8px; flex-wrap: wrap; }
.tags span { font-size: 9px; letter-spacing: .12em; border: 1px solid var(--line); border-radius: 999px; padding: 8px 10px; color: #64707a; }

.system-section { background: var(--ink); color: white; overflow: hidden; }
.system-inner { min-height: 860px; max-width: var(--max); margin: 0 auto; padding-top: 130px; padding-bottom: 130px; display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 4vw; }
.eyebrow-light { color: #7f91a2; }
.system-copy h2 { margin: 22px 0 28px; font-family: Manrope, sans-serif; font-size: clamp(46px, 5.3vw, 82px); line-height: .98; letter-spacing: -.055em; font-weight: 500; }
.system-copy p { max-width: 520px; color: #8fa0ae; line-height: 1.7; font-size: 15px; }
.system-stage { aspect-ratio: 1 / .88; max-width: 760px; width: 100%; justify-self: end; position: relative; }
.network-ring { position: absolute; border: 1px solid rgba(255,255,255,.08); border-radius: 50%; left: 50%; top: 50%; transform: translate(-50%,-50%); }
.ring-one { width: 63%; aspect-ratio:1; }
.ring-two { width: 88%; aspect-ratio:1; border-style: dashed; animation: spin 38s linear infinite; }
@keyframes spin { to { transform: translate(-50%,-50%) rotate(360deg); } }
.core { position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); width: 142px; height: 142px; border-radius: 50%; display: grid; place-items: center; background: radial-gradient(circle at 40% 35%, #1d6cff, #083b95 38%, #07111d 72%); box-shadow: 0 0 70px rgba(11,96,255,.26); font-size: 11px; letter-spacing: .16em; z-index: 3; }
.node { position: absolute; width: 76px; height: 76px; border-radius: 50%; border: 1px solid rgba(255,255,255,.18); background: rgba(7,17,29,.78); backdrop-filter: blur(12px); display: grid; place-items: center; font-size: 10px; letter-spacing: .14em; color: #bac5cf; z-index: 2; }
.node-1 { left: 13%; top: 13%; } .node-2 { right: 12%; top: 11%; } .node-3 { right: 3%; top: 48%; } .node-4 { right: 18%; bottom: 3%; } .node-5 { left: 18%; bottom: 2%; } .node-6 { left: 1%; top: 48%; }
.network-lines { position: absolute; inset: 0; width: 100%; height: 100%; }
.network-lines path { fill: none; stroke: rgba(95,135,183,.28); stroke-width: 1; stroke-dasharray: 7 10; animation: dash 12s linear infinite; }
@keyframes dash { to { stroke-dashoffset: -180; } }

.before-after { max-width: var(--max); margin: 0 auto; padding-top: 150px; padding-bottom: 160px; }
.ba-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.ba-card { min-height: 560px; border-radius: var(--radius); padding: 30px; display: flex; flex-direction: column; }
.ba-card.before { background: #e7e9e6; }
.ba-card.after { background: var(--blue); color: white; }
.ba-label { font-size: 10px; letter-spacing: .18em; font-weight: 700; }
.ba-list { margin: 115px 0 80px; display: flex; flex-direction: column; }
.ba-list span { font-family: Manrope, sans-serif; font-size: clamp(29px, 3.4vw, 54px); line-height: 1.22; letter-spacing: -.04em; padding: 6px 0; border-bottom: 1px solid rgba(7,17,29,.1); }
.after .ba-list span { border-bottom-color: rgba(255,255,255,.18); }
.ba-foot { margin-top: auto; font-size: 13px; opacity: .7; }

.industries { max-width: var(--max); margin: 0 auto; padding-bottom: 170px; }
.industry-row { display: grid; grid-template-columns: 80px 1fr auto; align-items: center; gap: 20px; min-height: 130px; border-bottom: 1px solid var(--line); transition: padding .25s, color .25s; }
.industry-row:hover { padding-left: 16px; color: var(--blue); }
.industry-row > span { font-size: 11px; color: #7c868f; }
.industry-row > span:last-child { font-size: 23px; color: var(--blue); }
.industry-row h3 { margin: 0; font-family: Manrope, sans-serif; font-size: clamp(28px, 4vw, 58px); letter-spacing: -.045em; font-weight: 500; }

.method { max-width: var(--max); margin: 0 auto; padding-top: 110px; padding-bottom: 180px; border-top: 1px solid var(--line); }
.method-track { display: grid; grid-template-columns: repeat(5,1fr); margin-top: 72px; border-top: 1px solid var(--line); }
.step { min-height: 300px; padding: 22px 22px 22px 0; border-right: 1px solid var(--line); }
.step:not(:first-child) { padding-left: 22px; }
.step:last-child { border-right: 0; }
.step > span { font-size: 10px; color: #89929a; letter-spacing: .14em; }
.step h3 { font-family: Manrope, sans-serif; font-size: 28px; font-weight: 500; letter-spacing: -.035em; margin: 100px 0 16px; }
.step p { color: var(--muted); font-size: 13px; line-height: 1.6; }

.statement { min-height: 80vh; background: var(--ink); color: white; position: relative; overflow: hidden; display: grid; place-items: center; padding: 80px var(--pad); }
.statement-copy { position: relative; z-index: 2; max-width: 1200px; text-align: center; }
.statement-copy h2 { font-family: Manrope, sans-serif; font-size: clamp(46px, 7vw, 108px); line-height: .97; letter-spacing: -.06em; font-weight: 500; margin: 24px 0 0; }
.statement-x::before, .statement-x::after { content:""; position:absolute; width: 120vw; height: 2px; left: -10vw; top: 50%; background: linear-gradient(90deg, transparent, rgba(11,96,255,.2), #0b60ff, rgba(255,255,255,.24), transparent); transform-origin:center; }
.statement-x::before { transform: rotate(27deg); }
.statement-x::after { transform: rotate(-27deg); }

.contact { max-width: var(--max); margin: 0 auto; padding-top: 150px; padding-bottom: 150px; }
.contact-grid { display: grid; grid-template-columns: 1.35fr .65fr; gap: 10vw; align-items: end; }
.contact h2 { margin: 24px 0 0; max-width: 920px; font-family: Manrope, sans-serif; font-size: clamp(50px, 7vw, 104px); line-height: .97; letter-spacing: -.06em; font-weight: 500; }
.contact-box { padding-bottom: 8px; }
.contact-box p { color: var(--muted); font-size: 15px; line-height: 1.65; margin: 0 0 34px; }

.footer { border-top: 1px solid var(--line); padding-top: 42px; padding-bottom: 42px; display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; }
.footer img { width: 190px; }
.footer-meta { display: flex; gap: 50px; font-size: 9px; letter-spacing: .13em; color: #7f8992; }

.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }

@media (max-width: 1220px) {
  .hero-layout { grid-template-columns: minmax(0, 1.15fr) minmax(360px, .85fr); gap: 34px; }
  .hero-title { font-size: clamp(64px, 7.7vw, 112px); }
  .hero-lower { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: row; align-items: center; }
  .hero-process span { padding: 0 12px; }
}

@media (max-width: 980px) {
  .topbar { grid-template-columns: 1fr auto; height: 76px; }
  .brand { width: 150px; }
  .desktop-nav, .nav-cta, .lang-switcher { display: none; }
  .topbar-actions { gap: 0; }
  .menu-toggle { display: block; background: none; border: 0; width: 40px; height: 40px; padding: 0; position: relative; z-index: 102; cursor: pointer; }
  .menu-toggle span { position:absolute; width:22px; height:1px; background:var(--ink); left:9px; transition:.3s; }
  .menu-toggle span:first-child { top:15px; } .menu-toggle span:last-child { top:23px; }
  .menu-toggle.open span:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-toggle.open span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .mobile-panel { display: flex; position: fixed; z-index: 99; inset: 0; background: var(--paper); padding: 120px var(--pad) 38px; flex-direction: column; justify-content: space-between; transform: translateY(-100%); transition: transform .6s cubic-bezier(.77,0,.18,1); }
  .mobile-panel.open { transform: translateY(0); }
  .mobile-nav-links { display: flex; flex-direction: column; }
  .mobile-nav-links a { font-family: Manrope, sans-serif; font-size: clamp(40px, 8vw, 64px); line-height: 1; letter-spacing: -.05em; padding: 12px 0; border-bottom: 1px solid var(--line); }
  .mobile-language-block { margin-top: auto; padding-top: 36px; }
  .mobile-lang-title { display:block; margin-bottom: 12px; font-size:9px; letter-spacing:.17em; color:#75808a; font-weight:700; }
  .mobile-langs { display:flex; gap:7px; flex-wrap:wrap; }
  .mobile-langs button { width:46px; height:38px; border:1px solid var(--line); border-radius:999px; background:transparent; font-size:10px; font-weight:700; letter-spacing:.1em; }
  .mobile-langs button.active { background:var(--ink); border-color:var(--ink); color:white; }
  .mobile-start { margin-top: 26px; min-height: 58px; background: var(--blue); color:white; border-radius:999px; display:flex; align-items:center; justify-content:space-between; padding:0 20px; font-size:13px; font-weight:600; }

  .hero { min-height: auto; padding-top: 132px; }
  .hero::before { inset-left: var(--pad); }
  .hero-layout { grid-template-columns: 1fr; gap: 46px; }
  .hero-primary { max-width: 900px; }
  .hero-title { font-size: clamp(64px, 13vw, 118px); }
  .hero-x { width: 130vw; right: -58vw; top: 4vh; opacity: .08; }
  .hero-console { width: min(100%, 720px); min-height: 440px; justify-self: end; }
  .hero-bottom { margin-top: 54px; grid-template-columns: 1fr; }
  .hero-bottom-label { min-height: 48px; border-bottom: 1px solid var(--line); }
  .hero-process { border-left: 0; min-height: 70px; overflow-x: auto; scrollbar-width: none; }
  .hero-process::-webkit-scrollbar { display: none; }
  .hero-process span { min-width: 145px; }

  .manifesto-grid, .section-head, .system-inner, .contact-grid { grid-template-columns: 1fr; }
  .manifesto-grid { gap: 40px; }
  .manifesto-small { max-width: 500px; }
  .cap-grid, .ba-grid { grid-template-columns: 1fr; }
  .system-inner { min-height: auto; }
  .system-stage { justify-self: center; max-width: 650px; margin-top: 50px; }
  .method-track { grid-template-columns: 1fr 1fr; }
  .step { border-bottom: 1px solid var(--line); }
  .step:nth-child(2n) { border-right:0; }
  .contact-grid { gap: 54px; }
}

@media (max-width: 640px) {
  :root { --pad: 18px; --radius: 20px; }
  .preloader-mark { width: 82px; height: 82px; }
  .topbar { height: 70px; }
  .topbar.scrolled { height: 64px; }
  .brand { width: 145px; }
  .hero { padding-top: 112px; }
  .hero::before { inset: 70px var(--pad) 0; }
  .ambient-grid { inset-top:70px; background-size: 52px 52px; }
  .hero-kicker { font-size: 9px; letter-spacing: .14em; }
  .hero-title { font-size: clamp(54px, 17.1vw, 88px); line-height: .87; letter-spacing: -.071em; margin-top: 29px; }
  .hero-title span:last-child { -webkit-text-stroke-width: 1px; }
  .hero-lower { margin-top: 34px; gap: 26px; }
  .hero-copy { font-size: 16px; line-height: 1.55; max-width: 94%; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 18px; width:100%; }
  .btn { width: 100%; min-width: 0; }
  .hero-console { min-height: 405px; border-radius: 22px; padding: 18px; }
  .console-head { padding-bottom: 17px; }
  .console-head strong { font-size: 9px; }
  .console-flow { margin-top: 29px; height: 78px; }
  .flow-node { width: 42px; height:42px; box-shadow:0 0 0 5px rgba(7,17,29,.9); }
  .flow-node.active { width:52px; height:52px; box-shadow:0 0 30px rgba(11,96,255,.28), 0 0 0 6px rgba(7,17,29,.9); }
  .console-message { margin-top: 25px; }
  .console-message p { font-size: 12px; line-height:1.55; }
  .console-grid { left:18px; right:18px; bottom:18px; }
  .console-grid div { min-height: 58px; padding: 9px; }
  .console-grid strong { font-size:6px; }
  .hero-bottom { margin-top: 34px; }
  .hero-bottom-label { min-height:44px; }
  .hero-process { margin-left: calc(var(--pad) * -1); margin-right: calc(var(--pad) * -1); padding-left:var(--pad); border-bottom:1px solid var(--line); }
  .hero-process span { min-width: 128px; min-height: 62px; padding:0 12px; }
  .hero-process i { font-size:8px; }

  .manifesto { padding-top: 110px; padding-bottom: 110px; }
  .manifesto-title { font-size: 43px; }
  .capabilities { padding-top: 80px; padding-bottom: 110px; }
  .section-head { margin-bottom: 38px; }
  .section-head h2 { font-size: 49px; }
  .cap-card { min-height: 340px; padding: 22px; }
  .cap-card h3 { margin-top: 82px; font-size: 36px; }
  .tags { left:22px; bottom:22px; }
  .system-inner { padding-top: 94px; padding-bottom: 94px; }
  .system-copy h2 { font-size: 48px; }
  .system-stage { aspect-ratio: .95; margin-top: 30px; transform: scale(1.05); }
  .core { width: 100px; height:100px; font-size:8px; }
  .node { width:58px; height:58px; font-size:8px; }
  .before-after { padding-top:100px; padding-bottom:110px; }
  .ba-card { min-height:450px; }
  .ba-list { margin-top:80px; }
  .ba-list span { font-size:31px; }
  .industry-row { grid-template-columns: 46px 1fr auto; min-height:100px; }
  .industry-row h3 { font-size:30px; }
  .method { padding-top:80px; padding-bottom:110px; }
  .method-track { grid-template-columns: 1fr; }
  .step, .step:not(:first-child) { min-height:210px; padding:22px 0; border-right:0; }
  .step h3 { margin-top:55px; }
  .statement { min-height:70vh; }
  .statement-copy h2 { font-size:48px; }
  .contact { padding-top:100px; padding-bottom:100px; }
  .contact h2 { font-size:49px; }
  .footer { align-items:flex-start; flex-direction:column; }
  .footer-meta { flex-direction:column; gap:12px; }
}

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