:root {
  --navy-950: #050b13;
  --navy-900: #07111f;
  --navy-850: #0a1727;
  --navy-800: #0d1b2a;
  --navy-700: #172c44;
  --blue: #176bff;
  --cyan: #36c2ff;
  --mint: #62e6a7;
  --ink: #111c2d;
  --muted: #607086;
  --line: #dfe6ee;
  --surface: #f4f7fa;
  --white: #fff;
  --container: 1240px;
  --shadow: 0 24px 70px rgba(7, 17, 31, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--white); font-family: Inter, "Segoe UI", Arial, sans-serif; -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
img, svg { display: block; }
.container { width: min(calc(100% - 48px), var(--container)); margin-inline: auto; }
.narrow { width: min(calc(100% - 48px), 850px); }
.icon { width: 1.2em; height: 1.2em; flex: 0 0 auto; }
.skip-link { position: fixed; left: 16px; top: -80px; z-index: 9999; background: var(--white); color: var(--ink); padding: 12px 18px; transition: top .2s; }
.skip-link:focus { top: 16px; }

.site-header { position: fixed; inset: 0 0 auto; z-index: 1000; height: 78px; border-bottom: 1px solid rgba(255,255,255,.12); transition: background .25s, box-shadow .25s, height .25s; }
.site-header.scrolled, .site-header.nav-open { background: rgba(5,11,19,.96); box-shadow: 0 12px 40px rgba(0,0,0,.22); backdrop-filter: blur(18px); height: 70px; }
.header-inner { height: 100%; display: flex; align-items: center; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--white); flex: 0 0 auto; }
.brand-mark { width: 32px; height: 36px; position: relative; display: grid; place-items: center; clip-path: polygon(50% 0, 100% 25%, 84% 83%, 50% 100%, 16% 83%, 0 25%); background: linear-gradient(145deg, var(--cyan), var(--blue)); }
.brand-mark::before { content: ""; position: absolute; inset: 2px; background: var(--navy-900); clip-path: inherit; }
.brand-mark span { position: relative; width: 10px; height: 16px; border-left: 3px solid var(--cyan); border-right: 3px solid var(--blue); transform: skew(-12deg); }
.brand-word { font-size: 18px; font-weight: 800; letter-spacing: .16em; line-height: .9; }
.brand-word small { display: block; margin-top: 7px; font-size: 7px; font-weight: 600; letter-spacing: .34em; opacity: .58; }
.desktop-nav { display: flex; align-items: stretch; height: 100%; margin-left: auto; }
.nav-item { height: 100%; display: flex; align-items: center; position: relative; }
.nav-link { height: 100%; display: flex; align-items: center; gap: 5px; padding: 0 12px; color: rgba(255,255,255,.76); font-size: 13px; font-weight: 600; white-space: nowrap; transition: color .2s; }
.nav-link:hover, .nav-link.active { color: var(--white); }
.nav-link.active::after { content: ""; position: absolute; left: 12px; right: 12px; bottom: -1px; height: 2px; background: var(--cyan); }
.nav-chevron { font-size: 14px; margin-top: -4px; opacity: .7; }
.dropdown { position: absolute; left: 0; top: calc(100% + 1px); width: 255px; padding: 8px; background: var(--white); color: var(--ink); box-shadow: 0 24px 60px rgba(0,0,0,.22); opacity: 0; visibility: hidden; transform: translateY(8px); transition: .2s; }
.has-dropdown:hover .dropdown, .has-dropdown:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a { display: flex; justify-content: space-between; align-items: center; min-height: 45px; padding: 10px 12px; border-bottom: 1px solid #edf1f5; font-size: 13px; font-weight: 650; transition: background .2s, color .2s; }
.dropdown a:last-child { border-bottom: 0; }
.dropdown a:hover, .dropdown a:focus { background: var(--surface); color: var(--blue); }
.dropdown a span { color: var(--blue); }
.header-cta { margin-left: 4px; }
.mobile-toggle { display: none; width: 46px; height: 46px; border: 1px solid rgba(255,255,255,.22); background: transparent; color: var(--white); align-items: center; justify-content: center; }
.mobile-toggle .icon { width: 24px; height: 24px; }
.close-icon { display: none; }
.nav-open .open-icon { display: none; }
.nav-open .close-icon { display: block; }
.mobile-menu { position: fixed; inset: 70px 0 0; overflow-y: auto; background: var(--navy-950); color: var(--white); }
.mobile-menu-inner { padding-block: 20px 48px; }
.mobile-menu details { border-bottom: 1px solid rgba(255,255,255,.12); }
.mobile-menu summary, .mobile-direct { min-height: 58px; display: flex; align-items: center; justify-content: space-between; list-style: none; font-size: 17px; font-weight: 650; }
.mobile-menu summary::-webkit-details-marker { display: none; }
.mobile-menu details[open] summary span { transform: rotate(45deg); }
.mobile-submenu { display: grid; gap: 2px; padding: 0 0 14px 14px; border-left: 1px solid rgba(54,194,255,.45); }
.mobile-submenu a { padding: 10px 12px; color: rgba(255,255,255,.7); font-size: 14px; }
.mobile-menu .button { margin-top: 24px; width: 100%; }

.button { min-height: 52px; display: inline-flex; align-items: center; justify-content: center; gap: 12px; padding: 0 23px; border: 1px solid var(--blue); border-radius: 2px; background: var(--blue); color: var(--white); font-size: 13px; font-weight: 750; letter-spacing: .02em; transition: transform .2s, background .2s, border-color .2s, color .2s; }
.button:hover { transform: translateY(-2px); background: #0d5ff1; border-color: #0d5ff1; }
.button-small { min-height: 42px; padding-inline: 17px; font-size: 12px; }
.button-ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,.36); }
.button-ghost:hover { background: rgba(255,255,255,.08); border-color: var(--white); }
.button-light { background: var(--white); border-color: var(--white); color: var(--navy-900); }
.button-light:hover { background: var(--cyan); border-color: var(--cyan); color: var(--navy-900); }
.text-link { display: inline-flex; align-items: center; gap: 10px; color: var(--cyan); font-size: 13px; font-weight: 750; }
.text-link .icon { transition: transform .2s; }
.text-link:hover .icon { transform: translateX(4px); }
.text-link.dark { color: var(--blue); }
.eyebrow { display: flex; align-items: center; gap: 10px; color: var(--blue); font-size: 11px; font-weight: 800; letter-spacing: .18em; }
.eyebrow span { width: 28px; height: 1px; background: currentColor; }
.eyebrow-light { color: var(--cyan); }
.section { padding: 112px 0; }
.section-light { background: var(--surface); }
.section-heading { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(280px, .7fr); gap: 80px; align-items: end; margin-bottom: 48px; }
.section-heading h2, .split-heading h2 { margin: 16px 0 0; max-width: 760px; font-size: clamp(34px, 4.2vw, 58px); line-height: 1.08; letter-spacing: -.045em; }
.section-heading h2 { font-size: clamp(32px, 3.4vw, 48px); }
.section-heading h2 em, .split-heading h2 em { color: var(--blue); font-style: normal; }
.section-heading > p { margin: 0; color: var(--muted); font-size: 16px; line-height: 1.85; }

.hero { min-height: 880px; position: relative; overflow: hidden; padding: 78px 0 0; color: var(--white); background: radial-gradient(circle at 73% 43%, rgba(23,107,255,.18), transparent 32%), linear-gradient(135deg, var(--navy-950), var(--navy-900) 55%, #061525); }
.hero-grid, .page-grid, .cta-grid, .footer-grid-bg { position: absolute; inset: 0; pointer-events: none; background-image: linear-gradient(rgba(54,194,255,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(54,194,255,.045) 1px, transparent 1px); background-size: 56px 56px; mask-image: linear-gradient(to bottom, #000, transparent 92%); }
.hero::after { content: ""; position: absolute; left: 0; right: 0; bottom: 154px; height: 1px; background: rgba(255,255,255,.1); }
.hero-orbit { position: absolute; border: 1px solid rgba(54,194,255,.08); border-radius: 50%; }
.orbit-one { width: 760px; height: 760px; top: -110px; right: -220px; }
.orbit-two { width: 460px; height: 460px; top: 40px; right: -20px; }
.hero-layout { min-height: 648px; position: relative; z-index: 2; display: grid; grid-template-columns: 1.06fr .94fr; gap: 64px; align-items: center; }
.hero-copy { padding: 70px 0 54px; }
.hero-copy h1 { margin: 22px 0 24px; max-width: 720px; font-size: clamp(48px, 5.4vw, 76px); line-height: .99; letter-spacing: -.055em; font-weight: 720; }
.hero-copy h1 em { display: inline; color: var(--cyan); font-style: normal; }
.hero-copy > p { max-width: 650px; margin: 0; color: rgba(255,255,255,.68); font-size: 18px; line-height: 1.78; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }
.hero-proof { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 34px; color: rgba(255,255,255,.6); font-size: 11px; font-weight: 700; letter-spacing: .06em; }
.hero-proof span { display: flex; align-items: center; gap: 7px; }
.hero-proof .icon { color: var(--cyan); }
.hero-system { position: relative; min-height: 485px; border: 1px solid rgba(54,194,255,.24); background: linear-gradient(145deg, rgba(9,27,46,.84), rgba(6,17,31,.74)); box-shadow: 0 35px 90px rgba(0,0,0,.35); backdrop-filter: blur(8px); }
.hero-system::before, .hero-system::after { content: ""; position: absolute; width: 20px; height: 20px; border-color: var(--cyan); opacity: .7; }
.hero-system::before { left: -1px; top: -1px; border-left: 2px solid; border-top: 2px solid; }
.hero-system::after { right: -1px; bottom: -1px; border-right: 2px solid; border-bottom: 2px solid; }
.system-top { height: 48px; display: flex; justify-content: space-between; align-items: center; padding: 0 16px; border-bottom: 1px solid rgba(255,255,255,.1); font-family: ui-monospace, SFMono-Regular, Consolas, monospace; font-size: 9px; letter-spacing: .18em; color: rgba(255,255,255,.48); }
.online { display: flex; align-items: center; gap: 7px; color: var(--mint); }
.online i { width: 6px; height: 6px; border-radius: 50%; background: currentColor; box-shadow: 0 0 12px currentColor; }
.system-core { position: relative; min-height: 354px; overflow: hidden; }
.system-core::before, .system-core::after { content: ""; position: absolute; background: rgba(54,194,255,.1); }
.system-core::before { width: 1px; height: 100%; left: 50%; }
.system-core::after { height: 1px; width: 100%; top: 50%; }
.core-rings { position: absolute; left: 50%; top: 50%; width: 210px; height: 210px; transform: translate(-50%,-50%); display: grid; place-items: center; }
.ring { position: absolute; border: 1px solid rgba(54,194,255,.2); border-radius: 50%; }
.ring-a { inset: 0; animation: spin 18s linear infinite; border-style: dashed; }
.ring-b { inset: 27px; border-color: rgba(23,107,255,.5); }
.ring-c { inset: 55px; border-color: rgba(98,230,167,.35); box-shadow: inset 0 0 35px rgba(23,107,255,.12); }
.ring-a::after, .ring-b::after { content: ""; position: absolute; top: 50%; left: -3px; width: 6px; height: 6px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 12px var(--cyan); }
.core-mark { position: relative; display: grid; place-items: center; }
.core-mark b { font-size: 46px; line-height: 1; color: var(--white); }
.core-mark small { margin-top: 5px; color: var(--cyan); font-family: monospace; font-size: 8px; letter-spacing: .25em; }
.system-node { position: absolute; width: 128px; padding: 11px 12px; border-left: 2px solid var(--cyan); background: rgba(4,11,20,.78); box-shadow: 0 12px 30px rgba(0,0,0,.25); }
.system-node span { position: absolute; right: 9px; top: 9px; color: var(--cyan); }
.system-node b, .system-node small { display: block; }
.system-node b { font-size: 10px; letter-spacing: .1em; }
.system-node small { margin-top: 4px; color: rgba(255,255,255,.42); font-family: monospace; font-size: 7px; letter-spacing: .08em; }
.node-code { left: 18px; top: 35px; }
.node-chip { right: 18px; top: 65px; border-color: var(--mint); }
.node-shield { right: 35px; bottom: 30px; border-color: var(--blue); }
.system-bottom { height: 82px; display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid rgba(255,255,255,.1); }
.system-bottom div { padding: 17px 13px; border-right: 1px solid rgba(255,255,255,.08); }
.system-bottom div:last-child { border: 0; }
.system-bottom small, .system-bottom b { display: block; font-family: monospace; }
.system-bottom small { color: rgba(255,255,255,.35); font-size: 7px; letter-spacing: .1em; }
.system-bottom b { margin-top: 8px; color: var(--cyan); font-size: 10px; letter-spacing: .1em; }
.capability-strip { height: 154px; position: relative; z-index: 2; display: grid; grid-template-columns: repeat(4,1fr); }
.capability-strip > div { display: grid; grid-template-columns: 32px 1fr; grid-template-rows: 1fr 1fr; align-content: center; padding: 25px 24px; border-left: 1px solid rgba(255,255,255,.1); }
.capability-strip > div:last-child { border-right: 1px solid rgba(255,255,255,.1); }
.capability-strip span { grid-row: 1/3; color: var(--cyan); font-family: monospace; font-size: 10px; }
.capability-strip b { align-self: end; font-size: 14px; }
.capability-strip small { margin-top: 7px; color: rgba(255,255,255,.45); font-size: 11px; }
@keyframes spin { to { transform: rotate(360deg); } }

.split-heading { display: grid; grid-template-columns: 1.05fr .95fr; gap: 100px; align-items: start; }
.intro-copy { padding-top: 30px; }
.intro-copy p { margin: 0 0 20px; color: var(--muted); font-size: 17px; line-height: 1.85; }
.intro-copy .text-link { margin-top: 12px; }
.capabilities-section { background: var(--white); }
.capability-grid { display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.cap-card { min-height: 320px; position: relative; padding: 34px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: background .25s, color .25s, transform .25s; }
.cap-card:hover { z-index: 2; transform: translateY(-5px); background: var(--navy-900); color: var(--white); box-shadow: var(--shadow); }
.cap-number { position: absolute; right: 24px; top: 24px; color: #a3b0bf; font-family: monospace; font-size: 10px; letter-spacing: .14em; }
.cap-icon { width: 54px; height: 54px; display: grid; place-items: center; margin-bottom: 45px; border: 1px solid #cad5e0; color: var(--blue); transition: border-color .25s; }
.cap-icon .icon { width: 25px; height: 25px; }
.cap-card:hover .cap-icon { border-color: rgba(54,194,255,.5); color: var(--cyan); }
.cap-card h3 { margin: 0 0 13px; font-size: 21px; letter-spacing: -.02em; }
.cap-card p { min-height: 65px; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.65; transition: color .25s; }
.cap-card:hover p { color: rgba(255,255,255,.6); }
.cap-link { display: flex; align-items: center; gap: 8px; margin-top: 28px; color: var(--blue); font-size: 12px; font-weight: 750; }
.cap-card:hover .cap-link { color: var(--cyan); }

.defence-block { min-height: 720px; position: relative; overflow: hidden; padding: 105px 0; color: var(--white); background: linear-gradient(115deg, #050d17, #071625 62%, #082038); }
.defence-lines { position: absolute; inset: 0; opacity: .7; background-image: linear-gradient(125deg, transparent 20%, rgba(54,194,255,.06) 20.2%, transparent 20.4%), linear-gradient(45deg, transparent 72%, rgba(23,107,255,.08) 72.2%, transparent 72.4%); }
.defence-layout { position: relative; display: grid; grid-template-columns: 1fr .9fr; gap: 110px; align-items: center; }
.defence-visual { min-height: 510px; position: relative; border: 1px solid rgba(54,194,255,.14); background: radial-gradient(circle at center, rgba(23,107,255,.16), transparent 52%); }
.radar { position: absolute; left: 50%; top: 50%; width: 330px; height: 330px; transform: translate(-50%,-50%); border: 1px solid rgba(54,194,255,.22); border-radius: 50%; display: grid; place-items: center; }
.radar::before, .radar::after { content: ""; position: absolute; background: rgba(54,194,255,.18); }
.radar::before { width: 100%; height: 1px; }
.radar::after { height: 100%; width: 1px; }
.radar i { position: absolute; border: 1px solid rgba(54,194,255,.15); border-radius: 50%; }
.radar i:nth-child(1) { inset: 38px; }.radar i:nth-child(2) { inset: 82px; }.radar i:nth-child(3) { inset: 124px; }
.radar span { position: absolute; inset: 0; border-radius: 50%; overflow: hidden; animation: spin 6s linear infinite; }
.radar span::before { content: ""; position: absolute; left: 50%; top: 50%; width: 46%; height: 1px; background: linear-gradient(90deg, var(--cyan), transparent); transform-origin: left; box-shadow: 0 0 18px var(--cyan); }
.radar b { font-size: 65px; color: rgba(255,255,255,.9); text-shadow: 0 0 28px rgba(54,194,255,.45); }
.visual-tag { position: absolute; min-width: 145px; padding: 13px 15px; border-left: 2px solid var(--cyan); background: rgba(5,13,23,.9); }
.visual-tag small, .visual-tag b { display: block; font-family: monospace; }
.visual-tag small { color: rgba(255,255,255,.36); font-size: 7px; letter-spacing: .12em; }.visual-tag b { margin-top: 6px; color: var(--cyan); font-size: 10px; letter-spacing: .14em; }
.tag-one { top: 45px; left: 25px; }.tag-two { right: 20px; top: 125px; border-color: var(--mint); }.tag-three { bottom: 35px; left: 50px; border-color: var(--blue); }
.defence-copy h2 { margin: 20px 0 24px; font-size: clamp(38px,4vw,58px); line-height: 1.04; letter-spacing: -.045em; }
.defence-copy > p { color: rgba(255,255,255,.62); font-size: 16px; line-height: 1.8; }
.check-list { list-style: none; display: grid; gap: 18px; padding: 0; margin: 32px 0 36px; }
.check-list li { display: flex; gap: 14px; align-items: flex-start; }
.check-list li > .icon { margin-top: 3px; color: var(--cyan); }
.check-list b, .check-list span { display: block; }.check-list b { margin-bottom: 4px; font-size: 13px; }.check-list span { color: rgba(255,255,255,.48); font-size: 12px; line-height: 1.55; }

.projects-section { background: var(--surface); }
.project-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.project-card { display: block; background: var(--white); border: 1px solid var(--line); transition: transform .25s, box-shadow .25s; }
.project-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.project-art { height: 250px; position: relative; overflow: hidden; background: linear-gradient(135deg, #081321, #102944); }
.project-art::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px); background-size: 34px 34px; }
.art-2 { background: linear-gradient(135deg, #071a27, #0d3850); }.art-3 { background: linear-gradient(135deg, #101827, #263045); }
.project-code { position: absolute; left: 18px; top: 18px; color: rgba(255,255,255,.5); font: 9px/1 monospace; letter-spacing: .16em; }
.project-shape { position: absolute; left: 50%; top: 52%; width: 135px; height: 135px; transform: translate(-50%,-50%) rotate(45deg); border: 1px solid color-mix(in srgb, var(--accent), transparent 30%); display: grid; place-items: center; }
.project-shape::before, .project-shape::after { content: ""; position: absolute; inset: 18px; border: 1px solid rgba(255,255,255,.14); }
.project-shape::after { inset: 42px; border-color: var(--accent); box-shadow: 0 0 30px color-mix(in srgb, var(--accent), transparent 60%); }
.project-shape i { position: absolute; width: 5px; height: 5px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 10px var(--accent); }.project-shape i:nth-child(1){left:-3px;top:50%}.project-shape i:nth-child(2){right:-3px;top:15%}.project-shape i:nth-child(3){bottom:-3px;right:28%}
.project-shape b { position: relative; z-index: 1; transform: rotate(-45deg); color: var(--white); font-size: 27px; }
.project-body { padding: 27px 28px 30px; }
.project-body > span { color: var(--blue); font-size: 9px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.project-body h3, .project-body h2 { margin: 12px 0; font-size: 22px; letter-spacing: -.025em; }
.project-body p { min-height: 72px; margin: 0; color: var(--muted); font-size: 13px; line-height: 1.7; }
.project-body > b { display: flex; align-items: center; gap: 8px; margin-top: 24px; color: var(--blue); font-size: 12px; }
.process-section { background: var(--white); }
.process-grid { display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.process-card { min-height: 245px; padding: 30px 26px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.process-card > span { display: inline-flex; padding-bottom: 26px; color: var(--blue); font-family: monospace; font-size: 11px; border-bottom: 1px solid var(--blue); }
.process-card h3 { margin: 30px 0 13px; font-size: 18px; }.process-card p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.7; }
.insights-section { background: var(--surface); }
.article-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.article-card { min-height: 320px; display: flex; flex-direction: column; padding: 31px; background: var(--white); border-top: 3px solid var(--blue); box-shadow: 0 8px 30px rgba(7,17,31,.05); transition: transform .25s, box-shadow .25s; }
.article-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.article-card > span { color: var(--blue); font: 9px/1 monospace; letter-spacing: .18em; }
.article-card h3, .article-card h2 { margin: 26px 0 15px; font-size: 21px; line-height: 1.28; letter-spacing: -.025em; }
.article-card p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.72; }
.article-card > b { display: flex; align-items: center; gap: 8px; margin-top: auto; padding-top: 24px; color: var(--blue); font-size: 12px; }
.cta-section { position: relative; overflow: hidden; padding: 80px 0; color: var(--white); background: linear-gradient(110deg, var(--blue), #0b4fc5); }
.cta-grid { opacity: .45; mask-image: linear-gradient(90deg, #000, transparent); }
.cta-inner { position: relative; display: flex; justify-content: space-between; align-items: center; gap: 60px; }
.cta-inner h2 { max-width: 820px; margin: 15px 0 0; font-size: clamp(32px, 4vw, 50px); line-height: 1.08; letter-spacing: -.04em; }

.page-hero, .project-detail-hero, .article-hero, .contact-hero { position: relative; overflow: hidden; padding: 150px 0 92px; color: var(--white); background: radial-gradient(circle at 82% 30%, rgba(23,107,255,.19), transparent 30%), linear-gradient(120deg, var(--navy-950), var(--navy-900)); }
.page-hero .page-grid, .project-detail-hero .page-grid, .article-hero .page-grid, .contact-hero .page-grid { opacity: .8; }
.breadcrumbs { position: relative; display: flex; align-items: center; flex-wrap: wrap; gap: 9px; margin-bottom: 48px; color: rgba(255,255,255,.45); font-size: 11px; }
.breadcrumbs a:hover { color: var(--cyan); }.breadcrumbs b { color: rgba(255,255,255,.78); font-weight: 600; }.breadcrumbs span { opacity: .35; }
.page-hero-copy { position: relative; max-width: 880px; }
.page-hero-copy h1 { margin: 20px 0 25px; font-size: clamp(44px, 5.4vw, 72px); line-height: 1; letter-spacing: -.052em; }
.page-hero-copy > p { max-width: 720px; margin: 0; color: rgba(255,255,255,.65); font-size: 18px; line-height: 1.78; }
.page-hero-actions { display: flex; gap: 12px; margin-top: 35px; }
.page-index { position: absolute; right: max(24px, calc((100% - var(--container))/2)); bottom: 50px; display: flex; flex-direction: column; align-items: flex-end; color: rgba(255,255,255,.12); }
.page-index span { font: 8px/1 monospace; letter-spacing: .2em; }.page-index b { font: 100px/.8 monospace; }
.compact-hero { padding-bottom: 90px; }.compact-hero .page-hero-copy { max-width: 820px; }
.page-content { background: var(--white); }
.detail-layout { display: grid; grid-template-columns: minmax(0,1fr) 350px; gap: 90px; align-items: start; }
.content-lead > span, .related-inner > div > span, .aside-card > span, .story-grid article > span { color: var(--blue); font: 9px/1 monospace; letter-spacing: .18em; }
.content-lead h2 { max-width: 760px; margin: 18px 0 45px; font-size: clamp(30px,3.2vw,44px); line-height: 1.25; letter-spacing: -.035em; }
.detail-sections { border-top: 1px solid var(--line); }
.detail-row { display: grid; grid-template-columns: 60px 1fr; gap: 20px; padding: 36px 0; border-bottom: 1px solid var(--line); }
.detail-row > span { color: var(--blue); font-family: monospace; font-size: 11px; }.detail-row h3 { margin: 0 0 12px; font-size: 22px; }.detail-row p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.8; }
.detail-aside { position: sticky; top: 100px; }
.aside-card { padding: 33px; color: var(--white); background: var(--navy-900); box-shadow: var(--shadow); }
.aside-card h3 { margin: 18px 0 14px; font-size: 24px; line-height: 1.25; }.aside-card p { color: rgba(255,255,255,.56); font-size: 13px; line-height: 1.7; }.aside-card .button { width: 100%; margin-top: 18px; padding-inline: 12px; }
.aside-facts { border: 1px solid var(--line); border-top: 0; background: var(--surface); }
.aside-facts div { display: flex; gap: 13px; padding: 16px 20px; border-bottom: 1px solid var(--line); font-size: 12px; }.aside-facts div:last-child{border:0}.aside-facts b{color:var(--blue);font-family:monospace}.aside-facts span{color:var(--muted)}
.related-section { padding: 72px 0; background: var(--surface); border-top: 1px solid var(--line); }
.related-inner { display: flex; align-items: center; justify-content: space-between; gap: 70px; }
.related-inner h2 { margin: 13px 0 0; font-size: 32px; letter-spacing: -.035em; }
.related-links { min-width: 420px; display: grid; }
.related-links a { display: flex; align-items: center; justify-content: space-between; padding: 13px 0; border-bottom: 1px solid #cfd9e3; font-size: 13px; font-weight: 700; }.related-links a:hover{color:var(--blue)}

.project-filter, .article-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 35px; }
.project-filter button, .article-tabs a { min-height: 42px; padding: 0 18px; display: inline-flex; align-items: center; border: 1px solid var(--line); background: var(--white); color: var(--muted); font-size: 12px; font-weight: 700; }
.project-filter button.active, .project-filter button:hover, .article-tabs a.active, .article-tabs a:hover { border-color: var(--blue); background: var(--blue); color: var(--white); }
.project-grid-large { grid-template-columns: repeat(2,1fr); }.project-grid-large .project-art { height: 320px; }.project-card.filtered-out { display: none; }
.project-detail-hero { padding-bottom: 100px; background: radial-gradient(circle at 75% 52%, color-mix(in srgb, var(--accent), transparent 76%), transparent 28%), linear-gradient(120deg,var(--navy-950),var(--navy-900)); }
.project-detail-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 70px; align-items: center; }
.project-title h1 { margin: 20px 0; font-size: clamp(48px,6vw,78px); line-height: .98; letter-spacing: -.055em; }.project-title > p { max-width: 680px; color: rgba(255,255,255,.65); font-size: 17px; line-height: 1.75; }.project-title .button{margin-top:24px}
.project-detail-art { min-height: 420px; position: relative; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.1); 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:38px 38px}
.project-shape.big { width: 230px; height: 230px; }.project-shape.big::before{inset:30px}.project-shape.big::after{inset:75px}.project-detail-art>span{position:absolute;left:20px;bottom:18px;color:rgba(255,255,255,.35);font:8px/1 monospace;letter-spacing:.18em}
.story-meta { display: grid; grid-template-columns: repeat(3,1fr); margin-bottom: 90px; border: 1px solid var(--line); }.story-meta div{padding:25px;border-right:1px solid var(--line)}.story-meta div:last-child{border:0}.story-meta span,.story-meta b{display:block}.story-meta span{color:var(--blue);font:8px/1 monospace;letter-spacing:.14em}.story-meta b{margin-top:10px;font-size:13px}
.story-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 50px; }.story-grid article{padding-top:22px;border-top:2px solid var(--blue)}.story-grid h2{margin:25px 0 14px;font-size:25px;line-height:1.25;letter-spacing:-.03em}.story-grid p{margin:0;color:var(--muted);font-size:14px;line-height:1.8}

.article-grid-page { grid-template-columns: repeat(2,1fr); }.article-grid-page .article-card{min-height:360px}.article-meta{display:flex;justify-content:space-between;align-items:center;margin-top:auto;padding-top:25px}.article-meta time{color:#94a1b1;font:10px/1 monospace}.article-meta b{display:flex;align-items:center;gap:7px;color:var(--blue);font-size:12px}
.article-hero { padding-bottom: 100px; }.article-hero h1{margin:22px 0;font-size:clamp(42px,5.5vw,70px);line-height:1.03;letter-spacing:-.052em}.article-hero p{color:rgba(255,255,255,.65);font-size:18px;line-height:1.75}.article-byline{display:flex;gap:30px;margin-top:30px;color:rgba(255,255,255,.42);font:9px/1 monospace;letter-spacing:.12em}
.article-content { font-family: Georgia,serif; font-size: 19px; line-height: 1.9; color: #2e3b4e; }.article-content p{margin:0 0 28px}.article-content p:first-child::first-letter{float:left;margin:8px 10px 0 0;color:var(--blue);font:700 65px/.75 Georgia,serif}
.article-keywords{display:flex;align-items:center;flex-wrap:wrap;gap:8px;margin-top:55px;padding-top:25px;border-top:1px solid var(--line)}.article-keywords span{margin-right:8px;color:var(--muted);font-size:12px}.article-keywords a{padding:8px 12px;background:var(--surface);color:var(--blue);font-size:11px;font-weight:700}

.contact-hero { padding-bottom: 75px; }.contact-heading{display:grid;grid-template-columns:1.2fr .8fr;gap:80px;align-items:end}.contact-heading h1{margin:20px 0 0;font-size:clamp(46px,5.8vw,76px);line-height:1;letter-spacing:-.055em}.contact-heading>p{margin:0;color:rgba(255,255,255,.62);font-size:16px;line-height:1.8}
.contact-section { padding: 95px 0; background: var(--surface); }.contact-layout{display:grid;grid-template-columns:.75fr 1.25fr;gap:70px;align-items:start}.contact-info>span{color:var(--blue);font:9px/1 monospace;letter-spacing:.16em}.contact-info h2{margin:20px 0 35px;font-size:34px;line-height:1.25;letter-spacing:-.04em}.contact-links{display:grid;border-top:1px solid var(--line)}.contact-links a{display:flex;align-items:center;gap:15px;padding:20px 0;border-bottom:1px solid var(--line)}.contact-links a>.icon{width:23px;height:23px;color:var(--blue)}.contact-links small,.contact-links b{display:block}.contact-links small{margin-bottom:6px;color:var(--muted);font:8px/1 monospace;letter-spacing:.14em}.contact-links b{font-size:14px}.contact-note{margin-top:35px;padding:22px;border-left:3px solid var(--blue);background:var(--white)}.contact-note b{font-size:13px}.contact-note p{margin:8px 0 0;color:var(--muted);font-size:12px;line-height:1.65}
.form-card { padding: 42px; background: var(--white); box-shadow: var(--shadow); }.form-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:23px}.form-grid label{display:grid;gap:9px;color:var(--ink);font-size:12px;font-weight:700}.form-grid label>span{color:var(--blue)}.form-grid .full{grid-column:1/-1}.form-grid input,.form-grid select,.form-grid textarea{width:100%;border:1px solid #cfd8e2;border-radius:0;background:#fbfcfd;color:var(--ink);outline:none;padding:14px 15px;font-size:14px;transition:border-color .2s,box-shadow .2s}.form-grid input,.form-grid select{height:51px}.form-grid textarea{resize:vertical;min-height:150px}.form-grid input:focus,.form-grid select:focus,.form-grid textarea:focus{border-color:var(--blue);box-shadow:0 0 0 3px rgba(23,107,255,.1)}.file-label{position:relative;padding:18px;border:1px dashed #bdc9d6}.file-label>small{color:var(--muted);font-weight:400}.file-label input{position:absolute;opacity:0;pointer-events:none}.file-button{width:max-content;padding:10px 13px;background:var(--navy-900)!important;color:var(--white)!important;font-size:11px}.file-label>b{font-size:11px;color:var(--muted);font-weight:500}.consent{display:flex;align-items:flex-start;gap:10px;margin:22px 0;color:var(--muted);font-size:11px;line-height:1.5}.consent input{margin-top:2px;accent-color:var(--blue)}.submit-button{border:0}.hp-field{position:absolute!important;left:-9999px!important}.alert{display:flex;gap:12px;margin-bottom:24px;padding:16px;border-left:3px solid}.alert.success{background:#edfff7;border-color:#21a56a;color:#126b45}.alert.error{display:block;background:#fff2f2;border-color:#d83b3b;color:#8b2020}.alert.error b{display:block;margin-bottom:8px}.alert.error ul{margin:0;padding-left:18px;font-size:12px;line-height:1.6}
.not-found{min-height:100vh;display:grid;place-items:center;position:relative;overflow:hidden;padding:130px 0;color:var(--white);background:var(--navy-950)}.not-found .container{position:relative;text-align:center}.not-found span{color:var(--cyan);font:10px/1 monospace;letter-spacing:.2em}.not-found h1{max-width:800px;margin:24px auto;font-size:clamp(45px,6vw,76px);line-height:1;letter-spacing:-.05em}.not-found p{color:rgba(255,255,255,.58)}.not-found>div>div{display:flex;justify-content:center;gap:12px;margin-top:30px}

.site-footer { position: relative; overflow: hidden; padding: 82px 0 0; color: var(--white); background: var(--navy-950); }
.footer-grid-bg { opacity: .5; mask-image: linear-gradient(to bottom,#000,transparent 80%); }
.footer-top { position: relative; display: grid; grid-template-columns: 1.55fr repeat(3,1fr); gap: 60px; padding-bottom: 65px; }
.footer-intro p { max-width: 330px; margin: 27px 0; color: rgba(255,255,255,.48); font-size: 13px; line-height: 1.75; }
.footer-column { display: flex; flex-direction: column; align-items: flex-start; gap: 13px; }.footer-column h2{margin:0 0 12px;color:rgba(255,255,255,.35);font:9px/1 monospace;letter-spacing:.16em}.footer-column a,.footer-column p{margin:0;color:rgba(255,255,255,.66);font-size:12px;line-height:1.6}.footer-column a:hover{color:var(--cyan)}
.footer-bottom { position: relative; min-height: 68px; display: flex; align-items: center; justify-content: space-between; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.34); font-size: 10px; }.footer-bottom div{display:flex;gap:18px}.footer-bottom a:hover{color:var(--white)}

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .1s; }
@media (prefers-reduced-motion: reduce) { html{scroll-behavior:auto}.reveal{opacity:1;transform:none;transition:none}.ring-a,.radar span{animation:none}.button,.project-card,.cap-card{transition:none} }

@media (max-width: 1120px) {
  .desktop-nav, .header-cta { display: none; }.mobile-toggle{display:flex;margin-left:auto}
  .hero-layout{grid-template-columns:1fr 420px;gap:32px}.hero-copy h1{font-size:58px}.capability-strip>div{padding-inline:15px}
  .defence-layout{gap:60px}.detail-layout{gap:50px}.footer-top{grid-template-columns:1.3fr repeat(3,1fr);gap:34px}
}
@media (max-width: 900px) {
  .section{padding:82px 0}.hero{min-height:auto}.hero-layout{grid-template-columns:1fr;padding:30px 0 0}.hero-copy{padding-bottom:20px}.hero-system{width:min(100%,580px);margin:0 auto 48px}.capability-strip{height:auto;grid-template-columns:repeat(2,1fr)}.capability-strip>div{min-height:110px;border-top:1px solid rgba(255,255,255,.1)}.hero::after{display:none}
  .split-heading,.section-heading,.defence-layout,.detail-layout,.project-detail-grid,.contact-heading,.contact-layout{grid-template-columns:1fr;gap:42px}.section-heading{align-items:start}.section-heading>p{max-width:650px}.capability-grid{grid-template-columns:repeat(2,1fr)}.defence-visual{width:min(100%,600px);margin:auto}.defence-copy{max-width:650px}.project-grid{grid-template-columns:repeat(2,1fr)}.project-card:last-child:nth-child(odd){grid-column:1/-1}.process-grid{grid-template-columns:repeat(2,1fr)}.article-grid{grid-template-columns:1fr}.article-card{min-height:260px}.detail-aside{position:static}.related-inner{align-items:flex-start;flex-direction:column;gap:35px}.related-links{width:100%;min-width:0}.page-index{display:none}.story-grid{grid-template-columns:1fr;gap:32px}.story-meta{margin-bottom:60px}.project-detail-art{min-height:350px}.contact-heading>p{max-width:680px}.footer-top{grid-template-columns:repeat(3,1fr)}.footer-intro{grid-column:1/-1}
}
@media (max-width: 640px) {
  .container,.narrow{width:min(calc(100% - 32px),var(--container))}.site-header{height:68px}.site-header.scrolled,.site-header.nav-open{height:68px}.mobile-menu{top:68px}.brand-mark{width:29px;height:33px}.brand-word{font-size:16px}.hero{padding-top:68px}.hero-layout{min-height:0}.hero-copy{padding-top:58px}.hero-copy h1{font-size:clamp(42px,13vw,58px)}.hero-copy>p{font-size:16px}.hero-actions,.page-hero-actions{flex-direction:column;align-items:stretch}.hero-proof{display:grid;gap:11px}.hero-system{min-height:400px;margin-top:20px}.system-core{min-height:290px}.core-rings{width:165px;height:165px}.ring-b{inset:23px}.ring-c{inset:47px}.system-node{width:112px;padding:9px}.node-code{left:8px;top:24px}.node-chip{right:8px;top:50px}.node-shield{right:18px;bottom:18px}.system-bottom{height:62px}.system-bottom div{padding:12px 8px}.capability-strip{grid-template-columns:1fr}.capability-strip>div{min-height:86px;grid-template-columns:32px 1fr;padding-block:16px}.section{padding:70px 0}.section-heading{gap:24px;margin-bottom:32px}.section-heading h2,.split-heading h2{font-size:34px}.split-heading{gap:25px}.intro-copy{padding-top:0}.capability-grid{grid-template-columns:1fr}.cap-card{min-height:280px;padding:28px}.defence-block{padding:70px 0}.defence-visual{min-height:350px}.radar{width:230px;height:230px}.tag-two{right:7px;top:78px}.tag-one{left:8px;top:22px}.tag-three{left:18px;bottom:20px}.visual-tag{min-width:125px}.defence-copy h2{font-size:38px}.project-grid,.project-grid-large{grid-template-columns:1fr}.project-card:last-child:nth-child(odd){grid-column:auto}.project-art,.project-grid-large .project-art{height:245px}.process-grid{grid-template-columns:1fr}.process-card{min-height:205px}.cta-section{padding:65px 0}.cta-inner{align-items:flex-start;flex-direction:column;gap:30px}.cta-inner .button{width:100%}.page-hero,.project-detail-hero,.article-hero,.contact-hero{padding:120px 0 70px}.breadcrumbs{margin-bottom:35px}.page-hero-copy h1,.project-title h1,.article-hero h1,.contact-heading h1{font-size:42px}.page-hero-copy>p{font-size:16px}.detail-row{grid-template-columns:38px 1fr;gap:12px;padding:28px 0}.detail-row h3{font-size:19px}.aside-card{padding:27px}.related-inner h2{font-size:28px}.project-detail-art{min-height:290px}.project-shape.big{width:165px;height:165px}.project-shape.big::after{inset:54px}.story-meta{grid-template-columns:1fr}.story-meta div{border-right:0;border-bottom:1px solid var(--line)}.story-meta div:last-child{border-bottom:0}.article-byline{flex-direction:column;gap:10px}.article-content{font-size:17px}.contact-layout{gap:35px}.contact-section{padding:70px 0}.contact-info h2{font-size:29px}.form-card{padding:26px 20px}.form-grid{grid-template-columns:1fr}.form-grid .full{grid-column:auto}.not-found>div>div{flex-direction:column}.footer-top{grid-template-columns:1fr}.footer-intro{grid-column:auto}.footer-bottom{align-items:flex-start;flex-direction:column;justify-content:center;gap:10px;padding:20px 0}.footer-bottom p{margin:0}
}

/* Full-screen home slider */
.sr-only { 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; }
.hero.hero-slider { width: 100%; height: 100vh; height: 100svh; min-height: 720px; padding: 0; isolation: isolate; }
.hero-slider::after { bottom: 0; z-index: 4; }
.hero-slider .hero-grid { z-index: 3; opacity: .2; }
.hero-slider .hero-orbit { z-index: 1; transition: border-color .7s ease, transform 1.2s ease; }
.hero-slides { position: absolute; inset: 0; z-index: 2; }
.hero-slide { position: absolute; inset: 0; overflow: hidden; opacity: 0; visibility: hidden; transform: scale(1.015); background-color: var(--navy-950); background-image: var(--slide-image); background-position: var(--slide-position, center); background-repeat: no-repeat; background-size: cover; transition: opacity .75s ease, visibility .75s ease, transform 1.1s ease; }
.hero-slide::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(3,9,17,.98) 0%, rgba(3,9,17,.94) 25%, rgba(3,9,17,.74) 44%, rgba(3,9,17,.3) 68%, rgba(3,9,17,.16) 100%), linear-gradient(180deg, rgba(3,9,17,.48) 0%, rgba(3,9,17,.04) 36%, rgba(3,9,17,.52) 100%); }
.hero-slide.is-active { z-index: 2; opacity: 1; visibility: visible; transform: scale(1); }
.hero-slider .hero-layout { height: 100%; min-height: 0; grid-template-columns: 1fr; padding: 112px 0 92px; }
.hero-slide .hero-copy > * { opacity: 0; transform: translateY(26px); transition: opacity .6s ease, transform .7s ease; }
.hero-slide.is-active .hero-copy > * { opacity: 1; transform: translateY(0); }
.hero-slide.is-active .hero-copy > :nth-child(1) { transition-delay: .18s; }
.hero-slide.is-active .hero-copy > :nth-child(2) { transition-delay: .25s; }
.hero-slide.is-active .hero-copy > :nth-child(3) { transition-delay: .32s; }
.hero-slide.is-active .hero-copy > :nth-child(4) { transition-delay: .39s; }
.hero-slide.is-active .hero-copy > :nth-child(5) { transition-delay: .46s; }
.hero-slide .hero-copy { position: relative; z-index: 2; max-width: 790px; padding: 30px 0; }
.hero-slide .hero-copy h1 { margin-top: 0; font-size: clamp(46px, 5.15vw, 74px); }
.hero-slide .eyebrow-light { color: var(--slide-accent); }
.hero-slide .hero-copy h1 em { color: var(--slide-accent); }
.hero-slide .button:not(.button-ghost) { background: var(--slide-accent); border-color: var(--slide-accent); color: var(--navy-950); }
.hero-slide .button:not(.button-ghost):hover { background: var(--white); border-color: var(--white); }
.hero-slide .hero-proof .icon { color: var(--slide-accent); }

.slider-footer { position: absolute; z-index: 6; left: 50%; bottom: 32px; transform: translateX(-50%); display: flex; align-items: center; justify-content: space-between; pointer-events: none; }
.slider-scroll, .slider-controls { pointer-events: auto; }
.slider-scroll { display: inline-flex; align-items: center; gap: 12px; color: rgba(255,255,255,.45); font: 8px/1 ui-monospace, SFMono-Regular, Consolas, monospace; letter-spacing: .18em; }
.slider-scroll span { position: relative; width: 1px; height: 34px; overflow: hidden; background: rgba(255,255,255,.18); }
.slider-scroll span::after { content: ""; position: absolute; left: 0; top: -100%; width: 1px; height: 100%; background: var(--cyan); animation: scroll-line 2s ease-in-out infinite; }
.slider-controls { width: min(430px, 43vw); display: flex; align-items: center; gap: 18px; }
.slider-counter { min-width: 56px; display: flex; align-items: baseline; gap: 6px; font-family: ui-monospace, SFMono-Regular, Consolas, monospace; }
.slider-counter b { color: var(--white); font-size: 15px; }
.slider-counter span, .slider-counter small { color: rgba(255,255,255,.34); font-size: 9px; }
.slider-progress { position: relative; height: 2px; flex: 1; overflow: hidden; background: rgba(255,255,255,.18); }
.slider-progress span { position: absolute; inset: 0 auto 0 0; width: 0; background: linear-gradient(90deg, var(--blue), var(--cyan)); box-shadow: 0 0 12px rgba(54,194,255,.7); }
.slider-buttons { display: flex; gap: 7px; }
.slider-buttons button { width: 39px; height: 39px; display: grid; place-items: center; padding: 0; border: 1px solid rgba(255,255,255,.23); background: rgba(5,11,19,.36); color: var(--white); transition: background .2s, border-color .2s, color .2s; }
.slider-buttons button:first-child .icon { transform: rotate(180deg); }
.slider-buttons button:hover, .slider-buttons button:focus-visible { border-color: var(--cyan); background: var(--cyan); color: var(--navy-950); outline: none; }
.slider-buttons .icon { width: 17px; height: 17px; }
@keyframes scroll-line { 0% { top: -100%; } 55%,100% { top: 100%; } }

.home-capability-strip { color: var(--white); background: var(--navy-900); border-top: 1px solid rgba(255,255,255,.08); }
.home-capability-strip .capability-strip { height: 142px; }
.home-capability-strip .capability-strip > div { border-color: rgba(255,255,255,.1); }

@media (max-width: 900px) {
  .hero.hero-slider { height: 100vh; height: 100svh; min-height: 670px; }
  .hero-slider .hero-layout { grid-template-columns: 1fr; align-content: center; padding: 92px 0 102px; }
  .hero-slider .hero-copy { max-width: 720px; padding: 0; }
  .hero-slide .hero-copy h1 { font-size: clamp(44px, 8.5vw, 68px); }
  .slider-footer { bottom: 24px; }
  .slider-controls { width: min(430px, 57vw); }
  .home-capability-strip .capability-strip { height: auto; }
}

@media (max-width: 640px) {
  .hero.hero-slider { min-height: 640px; }
  .hero-slide { background-position: 68% center; }
  .hero-slide::before { background: linear-gradient(90deg, rgba(3,9,17,.98) 0%, rgba(3,9,17,.93) 58%, rgba(3,9,17,.62) 100%), linear-gradient(180deg, rgba(3,9,17,.48) 0%, rgba(3,9,17,.12) 42%, rgba(3,9,17,.66) 100%); }
  .hero-slider .hero-layout { padding: 88px 0 106px; }
  .hero-slider .hero-copy h1 { margin: 17px 0 18px; font-size: clamp(38px, 11vw, 48px); line-height: 1.01; }
  .hero-slider .hero-copy > p { font-size: 14px; line-height: 1.62; }
  .hero-slider .hero-actions { gap: 8px; margin-top: 23px; }
  .hero-slider .hero-actions .button { min-height: 46px; }
  .hero-slider .hero-proof { grid-template-columns: 1fr 1fr; gap: 8px 15px; margin-top: 22px; font-size: 9px; }
  .hero-slider .hero-proof span:last-child { grid-column: 1 / -1; }
  .slider-scroll { display: none; }
  .slider-footer { bottom: 17px; }
  .slider-controls { width: 100%; gap: 11px; }
  .slider-counter { min-width: 48px; }
  .slider-buttons button { width: 36px; height: 36px; }
  .home-capability-strip .capability-strip { grid-template-columns: 1fr 1fr; }
  .home-capability-strip .capability-strip > div { min-height: 92px; }
}

@media (max-height: 760px) and (min-width: 901px) {
  .hero.hero-slider { min-height: 650px; }
  .hero-slider .hero-layout { padding-top: 96px; padding-bottom: 78px; }
  .hero-slide .hero-copy h1 { font-size: clamp(43px, 4.5vw, 62px); }
  .hero-slide .hero-copy > p { font-size: 15px; }
  .slider-footer { bottom: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide, .hero-slide .hero-copy > * { transition: none; }
  .slider-scroll span::after { animation: none; }
}
