:root {
  --black: #05070b;
  --black-2: #080b12;
  --ink: #09101f;
  --paper: #f2f5fa;
  --white: #f6f8fc;
  --muted: #8994a8;
  --line-dark: rgba(150, 171, 211, 0.17);
  --line-light: rgba(20, 37, 68, 0.13);
  --blue: #2867ff;
  --cyan: #60f3e6;
  --purple: #825bff;
  --display: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  --body: Inter, "PingFang SC", "Microsoft YaHei", sans-serif;
  --utility: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --gutter: clamp(22px, 5.2vw, 100px);
  --max: 1540px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--black); }
body { margin: 0; overflow-x: hidden; background: var(--black); color: var(--white); font-family: var(--body); -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
img { display: block; max-width: 100%; }
.mobile-break { display: none; }
::selection { background: var(--blue); color: white; }
:focus-visible { outline: 2px solid var(--cyan); outline-offset: 4px; }

.page-progress { position: fixed; z-index: 100; top: 0; left: 0; right: 0; height: 2px; background: transparent; }
.page-progress span { display: block; width: 0; height: 100%; background: linear-gradient(90deg, var(--cyan), var(--blue)); box-shadow: 0 0 16px var(--blue); }

.site-header {
  position: fixed; z-index: 50; top: 0; left: 0; right: 0;
  height: 92px; padding: 0 var(--gutter);
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  border-bottom: 1px solid transparent;
  transition: height 220ms ease, background 220ms ease, border-color 220ms ease, backdrop-filter 220ms ease;
}
.site-header.scrolled { height: 76px; background: rgba(5, 7, 11, 0.88); border-color: var(--line-dark); backdrop-filter: blur(22px); }
.brand { display: inline-flex; align-items: center; gap: 13px; justify-self: start; }
.brand-mark { width: 44px; height: 44px; display: grid; place-items: center; border: 1px solid rgba(104, 135, 191, 0.28); background: rgba(255,255,255,.015); }
.brand-mark img { width: 30px; }
.brand-name { display: flex; flex-direction: column; gap: 5px; }
.brand-name strong { font-size: 17px; letter-spacing: .09em; font-weight: 650; }
.brand-name small { font: 8px/1 var(--utility); letter-spacing: .2em; color: #73809a; }
.desktop-nav { display: flex; height: 100%; align-items: stretch; gap: clamp(28px, 3vw, 54px); }
.desktop-nav a { position: relative; display: flex; align-items: center; color: #8995aa; font-size: 13px; transition: color 180ms ease; }
.desktop-nav a::after { content: ""; position: absolute; left: 50%; bottom: 0; width: 0; height: 2px; transform: translateX(-50%); background: var(--blue); box-shadow: 0 0 12px var(--blue); transition: width 180ms ease; }
.desktop-nav a:hover, .desktop-nav a.active { color: #eff4ff; }
.desktop-nav a.active::after { width: 22px; }
.header-cta { justify-self: end; min-width: 164px; height: 46px; padding: 0 18px; display: flex; align-items: center; justify-content: space-between; background: var(--blue); color: white; font-size: 13px; font-weight: 650; transition: transform 180ms ease, background 180ms ease; }
.header-cta:hover { transform: translateY(-2px); background: #3c76ff; }
.header-cta span { font-size: 18px; }
.menu-button { display: none; width: 44px; height: 44px; padding: 0; border: 0; background: transparent; flex-direction: column; align-items: center; justify-content: center; gap: 7px; }
.menu-button span { width: 23px; height: 1px; background: white; transition: transform 180ms ease; }
.menu-button[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
.menu-button[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }
.mobile-nav { display: none; }

.hero { position: relative; min-height: min(1000px, 100svh); padding: 92px var(--gutter) 0; overflow: hidden; background: var(--black); }
.hero::before { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(90deg, rgba(5,7,11,.98) 0%, rgba(5,7,11,.93) 27%, rgba(5,7,11,.22) 58%, rgba(5,7,11,.06) 100%); z-index: 1; }
.hero::after { content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .24; background-image: linear-gradient(rgba(88,110,154,.09) 1px, transparent 1px), linear-gradient(90deg, rgba(88,110,154,.07) 1px, transparent 1px); background-size: 112px 112px; mask-image: linear-gradient(90deg, black, transparent 72%); z-index: 1; }
.hero-media { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-media img { position: absolute; width: max(980px, 78vw); max-width: none; height: auto; right: -7vw; top: 50%; transform: translateY(-51%); filter: contrast(1.04) saturate(.96); }
.hero-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(5,7,11,.18), transparent 20%, transparent 65%, #05070b 96%); }
.hero-scan { position: absolute; top: 0; bottom: 0; width: 22%; right: 10%; opacity: .13; background: linear-gradient(90deg, transparent, rgba(77,139,255,.55), transparent); filter: blur(30px); animation: hero-scan 8s ease-in-out infinite alternate; }
@keyframes hero-scan { from { transform: translateX(-80px); } to { transform: translateX(120px); } }
.hero-copy { position: relative; z-index: 3; max-width: 900px; padding-top: clamp(145px, 19vh, 210px); }
.hero-kicker { margin: 0 0 22px; color: #72eee4; font: 10px/1 var(--utility); letter-spacing: .18em; }
.hero-kicker::before { content: ""; display: inline-block; width: 28px; height: 1px; margin: 0 12px 3px 0; background: currentColor; }
.hero h1 { margin: 0; max-width: 920px; font-family: var(--display); font-size: clamp(62px, 5vw, 90px); line-height: 1.06; letter-spacing: 0; font-weight: 780; }
.hero h1 span { color: transparent; background: linear-gradient(90deg, #74f7e8 0%, #40bff9 42%, #2e66ff 95%); -webkit-background-clip: text; background-clip: text; }
.hero-copy > p { margin: 34px 0 0; color: #a2adbf; font-size: clamp(16px, 1.2vw, 20px); line-height: 1.9; letter-spacing: .01em; }
.hero-copy > .hero-kicker { margin: 0 0 22px; color: #72eee4; font-size: 10px; line-height: 1; }
.hero-actions { display: flex; gap: 16px; margin-top: 42px; }
.button { min-width: 186px; height: 54px; padding: 0 22px; display: inline-flex; align-items: center; justify-content: space-between; gap: 28px; font-size: 13px; font-weight: 650; transition: transform 180ms ease, border-color 180ms ease, background 180ms ease; }
.button:hover { transform: translateY(-2px); }
.button span { font-size: 18px; }
.button-primary { background: var(--blue); color: white; }
.button-primary:hover { background: #3d76ff; }
.button-ghost { border: 1px solid rgba(102, 135, 195, .42); color: #d9e2f2; background: rgba(5,7,11,.5); }
.button-ghost:hover { border-color: rgba(96,243,230,.65); }
.hero-axis { display: none; position: absolute; z-index: 3; left: var(--gutter); bottom: 160px; align-items: center; gap: 13px; font: 8px/1 var(--utility); letter-spacing: .14em; color: #5f6d85; }
.hero-axis i { width: 3px; height: 3px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 8px var(--cyan); }
.product-console, .flagship-console { position: absolute; z-index: 4; left: var(--gutter); right: var(--gutter); bottom: 0; height: 124px; display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid rgba(115,143,196,.22); border-bottom: 0; background: linear-gradient(180deg, rgba(13,18,30,.84), rgba(8,12,20,.96)); backdrop-filter: blur(18px); }
.flagship-console { border-color: rgba(96,243,230,.28); box-shadow: 0 -28px 90px rgba(17, 82, 180, .18); }
.product-console a, .flagship-console a { min-width: 0; display: grid; grid-template-columns: 42px 1fr auto; gap: 16px; align-items: center; padding: 0 clamp(16px, 1.8vw, 30px); border-right: 1px solid rgba(115,143,196,.16); transition: background 180ms ease; }
.product-console a:last-child, .flagship-console a:last-child { border-right: 0; }
.product-console a:hover, .flagship-console a:hover { background: rgba(40,103,255,.1); }
.product-console b, .flagship-console b { align-self: start; margin-top: 42px; color: #4a7dff; font: 700 24px/1 var(--utility); }
.flagship-console b { color: #67f1e7; }
.product-console div, .flagship-console div { min-width: 0; display: flex; flex-direction: column; gap: 8px; }
.product-console strong, .flagship-console strong { white-space: nowrap; font-size: 17px; font-weight: 600; }
.product-console div span, .flagship-console div span { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; color: #78869e; font-size: 11px; }
.product-console i, .flagship-console i { color: #7890bc; font-style: normal; }

.section-label { margin: 0 0 26px; color: #42628d; font: 10px/1 var(--utility); letter-spacing: .18em; text-transform: uppercase; }
.section-label::before { content: ""; display: inline-block; width: 28px; height: 1px; margin: 0 12px 3px 0; background: currentColor; }
.flagship-section {
  position: relative;
  min-height: 820px;
  padding: 145px var(--gutter);
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(50px, 7vw, 120px);
  align-items: center;
  overflow: hidden;
  background: #050912;
  color: #f3f7ff;
  border-top: 1px solid rgba(115,143,196,.16);
}
.flagship-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .28;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(97,132,193,.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(97,132,193,.08) 1px, transparent 1px);
  background-size: 78px 78px;
  mask-image: linear-gradient(180deg, black, transparent 85%);
}
.flagship-section::after {
  content: "";
  position: absolute;
  right: -14vw;
  top: 90px;
  width: min(880px, 62vw);
  aspect-ratio: 1.55;
  border: 1px solid rgba(96,243,230,.16);
  transform: skewX(-14deg);
  pointer-events: none;
  background: linear-gradient(145deg, transparent 18%, rgba(40,103,255,.18), transparent 66%);
  box-shadow: inset 0 0 90px rgba(96,243,230,.06);
}
.flagship-copy, .flagship-system { position: relative; z-index: 1; }
.flagship-copy h2 { margin: 0; font-family: var(--display); font-size: clamp(48px, 5vw, 86px); line-height: 1.08; letter-spacing: 0; }
.flagship-copy > p:last-of-type { max-width: 620px; margin: 32px 0 0; color: #95a2b8; font-size: 16px; line-height: 1.95; }
.flagship-actions { margin-top: 42px; display: flex; gap: 16px; }
.flagship-system {
  min-height: 540px;
  border: 1px solid rgba(128,158,214,.22);
  background: linear-gradient(145deg, rgba(12,20,36,.92), rgba(5,9,18,.88));
  box-shadow: 0 40px 120px rgba(0,0,0,.36);
  overflow: hidden;
}
.flagship-system::before {
  content: "";
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(96,243,230,.1);
}
.flagship-system::after {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(96,243,230,.64), transparent);
}
.fde-core {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 50%;
  width: min(280px, 42%);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  border: 1px solid rgba(96,243,230,.38);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(40,103,255,.28), rgba(7,14,29,.98) 68%);
  box-shadow: 0 0 70px rgba(40,103,255,.28), inset 0 0 0 18px rgba(255,255,255,.025);
}
.fde-core span { color: #72eee4; font: 10px var(--utility); letter-spacing: .16em; }
.fde-core strong { max-width: 180px; margin: 18px 0 12px; color: #f3f7ff; font-size: clamp(20px, 1.9vw, 30px); line-height: 1.25; }
.fde-core small { color: #8190aa; font-size: 11px; }
.fde-lane { position: absolute; z-index: 2; top: 62px; bottom: 112px; display: flex; flex-direction: column; justify-content: space-between; width: 34%; }
.lane-left { left: 44px; }
.lane-right { right: 44px; }
.fde-lane article {
  min-height: 126px;
  padding: 22px;
  border: 1px solid rgba(128,158,214,.18);
  background: rgba(8,15,29,.82);
}
.fde-lane span { color: #67f1e7; font: 10px var(--utility); }
.fde-lane b { display: block; margin-top: 22px; color: #f1f6ff; font-size: 18px; font-weight: 650; }
.fde-lane small { display: block; margin-top: 9px; color: #718099; font-size: 11px; line-height: 1.7; }
.fde-toolrail {
  position: absolute;
  z-index: 3;
  left: 44px;
  right: 44px;
  bottom: 40px;
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  border: 1px solid rgba(128,158,214,.15);
  background: rgba(255,255,255,.025);
}
.fde-toolrail span {
  min-width: 0;
  min-height: 46px;
  display: grid;
  place-items: center;
  border-right: 1px solid rgba(128,158,214,.12);
  color: #91a0b8;
  font: 10px var(--utility);
  text-align: center;
}
.fde-toolrail span:last-child { border-right: 0; }

.foundation-section { min-height: 720px; padding: 130px var(--gutter); display: grid; grid-template-columns: .72fr 1.28fr; align-items: center; gap: 7vw; background: #f1f4f9; color: var(--ink); }
.foundation-copy { max-width: 560px; }
.foundation-copy h2, .section-intro h2, .why-copy h2, .software-intro h2, .future-title h2, .about-statement h2, .contact-intro h2 { margin: 0; font-family: var(--display); font-size: clamp(48px, 5vw, 86px); line-height: 1.08; letter-spacing: -.065em; }
.foundation-copy > p:last-child { margin: 32px 0 0; color: #57657b; font-size: 17px; line-height: 1.95; }
.foundation-map { position: relative; width: min(100%, 850px); aspect-ratio: 800 / 470; justify-self: end; }
.foundation-map svg { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
.foundation-map svg path { fill: none; stroke: rgba(45,103,218,.22); stroke-width: 1.5; stroke-dasharray: 5 7; }
.foundation-core { position: absolute; z-index: 2; left: 50%; top: 50%; width: 210px; height: 210px; transform: translate(-50%, -50%); display: flex; flex-direction: column; align-items: center; justify-content: center; border: 1px solid rgba(40,103,255,.4); border-radius: 50%; background: radial-gradient(circle, white 0%, #e9f0ff 58%, #d9e6ff 100%); box-shadow: 0 32px 90px rgba(40,103,255,.17), inset 0 0 0 24px rgba(255,255,255,.55); }
.foundation-core::before { content: ""; position: absolute; inset: -24px; border: 1px solid rgba(40,103,255,.12); border-radius: 50%; }
.foundation-core span { color: #6180bd; font: 8px var(--utility); letter-spacing: .18em; }
.foundation-core strong { margin: 13px 0 8px; color: #1d56d3; font-size: 27px; }
.foundation-core small { color: #7a8ba9; font-size: 10px; }
.foundation-node { position: absolute; z-index: 2; min-width: 152px; padding: 17px 18px 16px 46px; border: 1px solid rgba(48,76,122,.15); background: rgba(255,255,255,.72); box-shadow: 0 18px 50px rgba(35,61,100,.07); backdrop-filter: blur(12px); }
.foundation-node i { position: absolute; left: 18px; top: 20px; width: 15px; height: 15px; border: 2px solid #2e67e9; border-radius: 4px; box-shadow: 0 0 0 6px rgba(46,103,233,.08); }
.foundation-node strong { display: block; font-size: 14px; }
.foundation-node span { display: block; margin-top: 6px; color: #78869b; font-size: 10px; }
.node-data { left: 0; top: 12%; }
.node-device { right: 0; top: 12%; }
.node-access { left: 0; bottom: 12%; }
.node-flow { right: 0; bottom: 12%; }

.product-stories { background: #e9edf4; color: var(--ink); }
.product-story { min-height: 780px; padding: 118px var(--gutter); display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; gap: clamp(55px, 8vw, 140px); border-top: 1px solid var(--line-light); }
.product-story-reverse { grid-template-columns: .92fr 1.08fr; }
.product-story-reverse .product-visual { order: 2; }
.product-story-reverse .product-copy { order: 1; }
.product-visual { position: relative; width: 100%; max-width: 760px; aspect-ratio: 1.22; justify-self: center; overflow: hidden; border: 1px solid rgba(27,57,108,.18); background: #0a0f1a; box-shadow: 0 38px 90px rgba(20,34,60,.18); }
.product-visual::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(95,127,180,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(95,127,180,.08) 1px, transparent 1px); background-size: 48px 48px; mask-image: linear-gradient(black, transparent); }
.visual-label { position: absolute; z-index: 5; top: 22px; left: 24px; right: 24px; display: flex; justify-content: space-between; align-items: center; font: 8px var(--utility); letter-spacing: .16em; color: #6780a7; }
.visual-label b { color: #4c7fff; font-size: 17px; }
.product-copy { max-width: 610px; }
.product-heading { display: flex; gap: 20px; align-items: flex-start; }
.product-heading > span { padding-top: 8px; color: #2867ff; font: 10px var(--utility); }
.product-heading p { margin: 0 0 12px; color: #7890b4; font: 9px var(--utility); letter-spacing: .16em; }
.product-heading h2 { margin: 0; font-size: clamp(43px, 4.1vw, 70px); line-height: 1; letter-spacing: -.055em; }
.product-promise { margin: 30px 0 25px; color: #23324b; font-size: 21px; line-height: 1.7; font-weight: 520; }
.product-problem { padding: 18px 0; display: grid; grid-template-columns: 80px 1fr; gap: 22px; border-top: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); }
.product-problem small { color: #73829a; font-size: 11px; }
.product-problem p { margin: 0; color: #687589; font-size: 13px; line-height: 1.8; }
.feature-list { list-style: none; margin: 17px 0 0; padding: 0; }
.feature-list li { display: grid; grid-template-columns: 150px 1fr; gap: 20px; padding: 14px 0; border-bottom: 1px solid var(--line-light); }
.feature-list span { font-size: 14px; font-weight: 650; }
.feature-list p { margin: 0; color: #6c798d; font-size: 12px; line-height: 1.7; }
.product-result { margin-top: 28px; display: flex; flex-direction: column; gap: 8px; }
.product-result span { color: #74849c; font-size: 10px; }
.product-result strong { color: #215bd9; font-size: 16px; letter-spacing: .05em; }

.wearable-visual { background: radial-gradient(circle at 50% 45%, #132755, #080c15 58%); }
.earbud-device { position: absolute; left: 50%; top: 48%; width: 210px; height: 210px; transform: translate(-50%,-50%); border: 1px solid rgba(96,243,230,.25); border-radius: 50%; box-shadow: 0 0 80px rgba(40,103,255,.22), inset 0 0 45px rgba(40,103,255,.16); }
.earbud-device::before, .earbud-device::after { content: ""; position: absolute; width: 54px; height: 82px; top: 47px; border: 8px solid #3a4f75; border-bottom-width: 20px; border-radius: 32px 32px 28px 28px; background: linear-gradient(150deg,#1d2e4b,#080d17); box-shadow: inset 0 0 0 2px #5f7192, 0 0 22px rgba(74,128,255,.3); }
.earbud-device::before { left: 26px; transform: rotate(-18deg); }
.earbud-device::after { right: 26px; transform: rotate(18deg); }
.earbud-device i { position: absolute; top: 91px; width: 50px; height: 5px; background: var(--blue); box-shadow: 0 0 13px var(--blue); }
.earbud-device i:first-child { left: 30px; transform: rotate(-18deg); }
.earbud-device i:nth-child(2) { right: 30px; transform: rotate(18deg); }
.earbud-device span { position: absolute; left: 50%; top: 50%; width: 34px; height: 34px; transform: translate(-50%,-50%); border-radius: 50%; background: var(--blue); box-shadow: 0 0 30px var(--blue); }
.waveform { position: absolute; left: 50%; bottom: 66px; transform: translateX(-50%); display: flex; align-items: center; gap: 6px; }
.waveform i { width: 3px; height: 18px; background: var(--cyan); border-radius: 3px; box-shadow: 0 0 8px rgba(96,243,230,.65); }
.waveform i:nth-child(2), .waveform i:nth-child(8) { height: 30px; }
.waveform i:nth-child(3), .waveform i:nth-child(7) { height: 45px; }
.waveform i:nth-child(4), .waveform i:nth-child(6) { height: 63px; }
.waveform i:nth-child(5) { height: 82px; }
.micro-panel { position: absolute; width: 170px; padding: 15px; border: 1px solid rgba(91,130,199,.25); background: rgba(9,18,35,.85); }
.micro-panel small { display: block; color: #62789c; font-size: 9px; }
.micro-panel strong { display: block; margin: 8px 0 5px; color: #dae6fa; font-size: 12px; }
.micro-panel span { color: #5e82c6; font-size: 9px; }
.panel-route { left: 26px; top: 96px; }
.panel-team { right: 26px; bottom: 78px; }

.command-visual { background: radial-gradient(circle at 56% 45%, #14295a, #080c15 65%); }
.command-map { position: absolute; left: 6%; right: 6%; top: 17%; height: 58%; border: 1px solid rgba(82,128,219,.25); background: linear-gradient(145deg, rgba(30,66,130,.26), rgba(4,8,15,.75)); overflow: hidden; }
.command-map::before { content:""; position:absolute; inset:0; background-image: linear-gradient(rgba(89,125,187,.1) 1px,transparent 1px),linear-gradient(90deg,rgba(89,125,187,.1) 1px,transparent 1px); background-size:30px 30px; }
.command-map svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.command-map path { fill: none; stroke: rgba(63,124,255,.44); stroke-width: 2; }
.command-map i { position: absolute; z-index: 2; width: 9px; height: 9px; border: 2px solid #71f4e5; border-radius: 50%; box-shadow: 0 0 14px #60f3e6; }
.command-map i:nth-child(1){left:18%;top:62%}.command-map i:nth-child(2){left:43%;top:52%}.command-map i:nth-child(3){left:68%;top:22%}.command-map i:nth-child(4){left:84%;top:40%}
.command-status { position: absolute; left: 6%; right: 6%; bottom: 12%; display: flex; justify-content: space-between; color: #7388aa; font-size: 10px; }
.command-status span:first-child { color: #a3e9dc; }.command-status i{display:inline-block;width:5px;height:5px;margin-right:7px;border-radius:50%;background:#60f3e6;box-shadow:0 0 8px #60f3e6}
.command-log { position: absolute; z-index: 3; right: 9%; top: 25%; width: 138px; padding: 14px; background: rgba(4,9,18,.87); border: 1px solid rgba(83,126,203,.25); }
.command-log small { color: #61789e; font-size: 8px; }.command-log b{display:block;padding:10px 0;border-bottom:1px solid rgba(115,143,196,.13);color:#b8c7dd;font-size:9px;font-weight:500}

.sourcing-visual { background: radial-gradient(circle at 31% 50%, #132856, #080c15 62%); }
.radar { position: absolute; left: 27%; top: 50%; width: 245px; height: 245px; transform: translate(-50%,-50%); border: 1px solid rgba(58,118,238,.38); border-radius: 50%; overflow: hidden; }
.radar::before { content:"";position:absolute;left:50%;top:50%;width:50%;height:50%;transform-origin:0 0;background:conic-gradient(from 0deg,rgba(96,243,230,.46),transparent 28%);animation:radar 4s linear infinite }.radar::after{content:"";position:absolute;inset:33%;border:1px solid rgba(58,118,238,.28);border-radius:50%}
.radar i{position:absolute;inset:16%;border:1px solid rgba(58,118,238,.25);border-radius:50%}.radar i:nth-child(2){inset:33%}.radar i:nth-child(3){inset:49%;background:#60f3e6;box-shadow:0 0 18px #60f3e6}
.radar span{position:absolute;left:19%;top:27%;width:7px;height:7px;border-radius:50%;background:#60f3e6;box-shadow:0 0 13px #60f3e6}.radar b{position:absolute;right:18%;bottom:28%;width:7px;height:7px;border-radius:50%;background:#7a65ff;box-shadow:0 0 13px #7a65ff}
@keyframes radar { to { transform: rotate(360deg); } }
.opportunity-list { position: absolute; right: 7%; top: 21%; width: 45%; padding: 18px; border: 1px solid rgba(84,124,195,.25); background: rgba(7,13,25,.86); }
.opportunity-list small{color:#63799e;font-size:8px}.opportunity-list div{display:grid;grid-template-columns:1fr auto;gap:12px;padding:15px 0;border-bottom:1px solid rgba(115,143,196,.13)}.opportunity-list div:last-child{border:0}.opportunity-list b{color:#c3d0e5;font-size:10px}.opportunity-list span{color:#577bbd;font-size:8px}
.source-flow{position:absolute;left:7%;right:7%;bottom:10%;display:flex;align-items:center;justify-content:space-between;color:#6780a8;font:8px var(--utility)}.source-flow i{color:#3b70de;font-style:normal}

.live-visual { background: radial-gradient(circle at 48% 43%, #192854, #080c15 65%); }
.live-monitor{position:absolute;left:7%;right:7%;top:16%;height:56%;padding:14px;border:1px solid rgba(91,128,195,.27);background:#080e1a}.live-flag{position:absolute;z-index:3;left:23px;top:23px;padding:5px 8px;background:#e43b67;color:white;font:8px var(--utility)}
.live-stage{position:absolute;left:14px;top:14px;bottom:14px;width:65%;overflow:hidden;background:linear-gradient(150deg,#172c55,#0b1427)}.live-stage::before{content:"";position:absolute;left:50%;top:42%;width:130px;height:170px;transform:translate(-50%,-50%);border-radius:62px 62px 18px 18px;background:linear-gradient(#24437d,#121b30);box-shadow:0 0 70px rgba(40,103,255,.38)}.live-stage i{position:absolute;left:50%;bottom:18%;width:210px;height:1px;transform:translateX(-50%);background:linear-gradient(90deg,transparent,#60f3e6,transparent)}
.live-scenes{position:absolute;right:14px;top:14px;bottom:14px;width:30%;display:grid;grid-template-rows:repeat(3,1fr);gap:8px}.live-scenes i{border:1px solid rgba(90,126,192,.23);background:linear-gradient(145deg,#18284a,#0b1322)}.live-scenes i:nth-child(2){border-color:#2f6cfa;box-shadow:inset 0 0 0 2px rgba(47,108,250,.24)}
.live-timeline{position:absolute;left:7%;right:35%;bottom:15%;height:7px;background:#18223a}.live-timeline span{display:block;width:63%;height:100%;background:#2867ff}.live-timeline i{position:absolute;top:-5px;width:1px;height:17px;background:#6d82a7}.live-timeline i:nth-child(2){left:22%}.live-timeline i:nth-child(3){left:48%}.live-timeline i:nth-child(4){left:76%}
.live-assets{position:absolute;right:7%;bottom:10%;width:24%;display:grid;grid-template-columns:1fr 1fr;gap:7px}.live-assets small{grid-column:1/-1;color:#61789e;font-size:8px}.live-assets b{padding:8px;border:1px solid rgba(88,125,191,.2);color:#9badc8;font-size:8px;text-align:center;font-weight:500}

.why-section { padding: 145px var(--gutter); background: var(--black); }
.why-copy { max-width: 1000px; margin: 0 auto 88px; text-align: center; }
.why-copy .section-label { color: #6680aa; }
.why-copy h2 { color: #f2f6ff; }
.why-copy > p:last-child { max-width: 780px; margin: 34px auto 0; color: #8591a8; font-size: 17px; line-height: 1.9; }
.transformation { max-width: 1450px; min-height: 440px; margin: auto; display: grid; grid-template-columns: 1fr 260px 1fr; border: 1px solid var(--line-dark); background: #080c14; }
.transform-side { padding: 42px; }
.transform-side > span { display: block; padding-bottom: 24px; border-bottom: 1px solid var(--line-dark); color: #7e8ca5; font-size: 12px; }
.transform-side ul { list-style: none; margin: 0; padding: 0; }
.transform-side li { position: relative; padding: 24px 0 24px 28px; border-bottom: 1px solid rgba(150,171,211,.11); color: #a5b0c3; font-size: 15px; }
.transform-side li::before { content: ""; position: absolute; left: 0; top: 31px; width: 7px; height: 7px; border: 1px solid #697994; transform: rotate(45deg); }
.value-side li { color: #d7e1f2; }
.value-side li::before { border-color: var(--cyan); box-shadow: 0 0 12px rgba(96,243,230,.35); }
.transform-engine { padding: 38px 0; display: flex; flex-direction: column; align-items: center; justify-content: space-around; border-left: 1px solid var(--line-dark); border-right: 1px solid var(--line-dark); background: radial-gradient(circle, rgba(40,103,255,.2), transparent 60%); }
.transform-engine span { width: 74px; height: 74px; display: grid; place-items: center; border: 1px solid rgba(78,126,222,.32); border-radius: 50%; background: #0b1425; color: #bfd0e9; font-size: 13px; box-shadow: 0 0 28px rgba(40,103,255,.1); }
.transform-engine i { width: 1px; height: 18px; background: linear-gradient(var(--blue),var(--cyan)); }

.capabilities-section { padding: 145px var(--gutter); background: #f3f5f9; color: var(--ink); }
.section-intro { max-width: 960px; }
.section-intro h2 { font-size: clamp(48px,4.9vw,82px); }
.capability-flow { margin-top: 90px; display: grid; grid-template-columns: repeat(5,1fr); border-top: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); }
.capability-flow article { min-height: 265px; padding: 32px 27px; border-right: 1px solid var(--line-light); }
.capability-flow article:last-child { border-right: 0; }
.capability-flow span { color: #2867ff; font: 9px var(--utility); }
.capability-flow h3 { margin: 52px 0 18px; font-size: 22px; }
.capability-flow p { margin: 0; color: #6d798a; font-size: 12px; line-height: 1.85; }
.capability-stack { margin-top: 44px; display: flex; flex-wrap: wrap; gap: 9px; }
.capability-stack span { padding: 11px 15px; border: 1px solid var(--line-light); color: #53617a; font-size: 11px; background: rgba(255,255,255,.55); }

.software-section {
  position: relative;
  padding: 150px var(--gutter);
  overflow: hidden;
  background: #050912;
  color: #eff5ff;
}
.software-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .34;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(97, 132, 193, .1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(97, 132, 193, .08) 1px, transparent 1px);
  background-size: 78px 78px;
  mask-image: linear-gradient(180deg, black, transparent 82%);
}
.software-section::after {
  content: "";
  position: absolute;
  top: 42px;
  right: -90px;
  width: min(58vw, 780px);
  aspect-ratio: 1.6;
  border: 1px solid rgba(71, 132, 255, .18);
  transform: skewX(-12deg);
  pointer-events: none;
  background: linear-gradient(145deg, transparent 20%, rgba(40,103,255,.16), transparent 64%);
  box-shadow: inset 0 0 80px rgba(40,103,255,.08);
}
.software-intro { position: relative; z-index: 1; max-width: 1030px; }
.software-intro .section-label { color: #72eee4; }
.software-intro h2 { color: #f4f7ff; }
.software-intro h2 span { color: #23a5ff; }
.software-intro > p:last-child { max-width: 820px; margin: 30px 0 0; color: #8e9bb1; font-size: 15px; line-height: 1.95; }
.ability-stage {
  position: relative;
  z-index: 1;
  margin-top: 72px;
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  border: 1px solid rgba(135, 160, 205, .2);
  background: rgba(8, 14, 26, .74);
  box-shadow: 0 34px 120px rgba(0, 0, 0, .34);
}
.software-stats {
  display: grid;
  grid-template-columns: 1fr;
  border-right: 1px solid rgba(135, 160, 205, .17);
  background: linear-gradient(180deg, rgba(6,14,28,.96), rgba(5,11,22,.92));
}
.software-stats article {
  min-height: 176px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-bottom: 1px solid rgba(135, 160, 205, .14);
}
.software-stats article:last-child { border-bottom: 0; }
.software-stats strong { color: #67f1e7; font: 780 clamp(40px, 4vw, 64px)/1 var(--utility); text-shadow: 0 0 26px rgba(103,241,231,.22); }
.software-stats span { margin-top: 14px; color: #edf5ff; font-size: 14px; font-weight: 650; }
.software-stats small { margin-top: 9px; color: #63738f; font-size: 10px; line-height: 1.65; }
.ability-grid {
  min-width: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: minmax(184px, auto);
}
.ability-card {
  position: relative;
  min-width: 0;
  padding: 34px 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  border-right: 1px solid rgba(135,160,205,.13);
  border-bottom: 1px solid rgba(135,160,205,.13);
  background: linear-gradient(145deg, rgba(255,255,255,.045), rgba(255,255,255,.012));
  transition: transform 200ms ease, background 200ms ease, border-color 200ms ease;
}
.ability-card:hover {
  transform: translateY(-3px);
  border-color: rgba(96,243,230,.32);
  background: linear-gradient(145deg, rgba(40,103,255,.16), rgba(255,255,255,.025));
}
.ability-card::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(96,243,230,.08);
  opacity: 0;
  transition: opacity 200ms ease;
}
.ability-card:hover::before { opacity: 1; }
.ability-card i {
  position: absolute;
  left: 32px;
  top: 30px;
  width: 62px;
  aspect-ratio: 1;
  border: 1px solid rgba(122,154,214,.24);
  transform: rotate(45deg);
  background: linear-gradient(135deg, rgba(40,103,255,.28), rgba(96,243,230,.04));
  box-shadow: inset 0 0 0 12px rgba(255,255,255,.025);
}
.ability-card i::after {
  content: "";
  position: absolute;
  inset: 20px;
  background: #2d72ff;
  box-shadow: 0 0 24px rgba(45,114,255,.48);
}
.ability-card span { position: relative; z-index: 1; color: #f1f6ff; font-size: clamp(20px, 1.45vw, 27px); line-height: 1.25; font-weight: 650; letter-spacing: 0; }
.ability-card p { position: relative; z-index: 1; margin: 13px 0 0; color: #8390a5; font-size: 13px; line-height: 1.7; }
.ability-card b { position: relative; z-index: 1; margin-top: 24px; color: #327eff; font-size: 12px; font-weight: 600; }
.card-wide { grid-column: span 2; }
.card-tall { grid-column: 4; grid-row: 1 / span 2; min-height: 368px; background: radial-gradient(circle at 64% 32%, rgba(68,122,255,.22), rgba(255,255,255,.025) 52%); }
.flagship-card {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 368px;
  background:
    linear-gradient(145deg, rgba(11,24,46,.92), rgba(7,12,24,.72)),
    radial-gradient(circle at 68% 28%, rgba(96,243,230,.2), transparent 48%);
}
.flagship-card::after {
  content: "FDE";
  position: absolute;
  right: 28px;
  top: 24px;
  color: rgba(103,241,231,.08);
  font: 780 clamp(72px, 8vw, 136px)/1 var(--utility);
}
.flagship-card span { max-width: 360px; font-size: clamp(36px, 3.4vw, 58px); }
.flagship-card p { max-width: 420px; color: #9dacbe; font-size: 15px; }
.flagship-card i { width: 96px; left: 38px; top: 38px; border-color: rgba(96,243,230,.28); }
.card-tall i { width: 88px; left: 36px; top: 38px; }
.card-tall span { font-size: clamp(27px, 2.1vw, 38px); }

.detail-page { background: #050912; }
.detail-hero {
  position: relative;
  min-height: 620px;
  padding: 160px var(--gutter) 84px;
  overflow: hidden;
  background: #050912;
  color: #f3f7ff;
}
.detail-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .36;
  background-image:
    linear-gradient(rgba(97,132,193,.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(97,132,193,.08) 1px, transparent 1px);
  background-size: 78px 78px;
  mask-image: linear-gradient(180deg, black, transparent 78%);
}
.detail-hero::after {
  content: "";
  position: absolute;
  right: -12vw;
  top: 90px;
  width: min(760px, 62vw);
  aspect-ratio: 1.25;
  border: 1px solid rgba(74,130,255,.2);
  transform: rotate(-18deg) skewX(-8deg);
  background: linear-gradient(145deg, transparent, rgba(40,103,255,.2), transparent 68%);
  box-shadow: inset 0 0 90px rgba(40,103,255,.08);
}
.detail-hero > * { position: relative; z-index: 1; }
.detail-hero .section-label { color: #72eee4; }
.detail-hero h1 { max-width: 980px; margin: 0; font-family: var(--display); font-size: clamp(54px, 5.2vw, 92px); line-height: 1.05; letter-spacing: -.065em; }
.detail-hero > p:not(.section-label) { max-width: 720px; margin: 30px 0 0; color: #94a1b7; font-size: 17px; line-height: 1.9; }
.detail-jump { max-width: 1180px; margin-top: 58px; display: flex; flex-wrap: wrap; gap: 9px; }
.detail-jump a {
  padding: 11px 14px;
  border: 1px solid rgba(129,157,211,.2);
  background: rgba(255,255,255,.035);
  color: #aab8d0;
  font-size: 12px;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}
.detail-jump a:hover { color: #f2f7ff; border-color: rgba(96,243,230,.42); background: rgba(40,103,255,.12); }
.detail-list {
  padding: 90px var(--gutter) 140px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  background: #e9eef6;
  color: var(--ink);
}
.detail-card {
  scroll-margin-top: 110px;
  min-height: 360px;
  padding: 38px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(28,57,106,.13);
  background: rgba(255,255,255,.68);
  box-shadow: 0 24px 76px rgba(20,38,70,.07);
}
.detail-card.detail-card-flagship {
  grid-column: 1 / -1;
  min-height: 430px;
  color: #f3f7ff;
  border-color: rgba(96,243,230,.26);
  background: linear-gradient(145deg, #07101f, #0d1930);
  box-shadow: 0 30px 90px rgba(7,17,34,.28);
}
.detail-card.detail-card-flagship span { color: #72eee4; }
.detail-card.detail-card-flagship h2 { max-width: 760px; color: #f3f7ff; letter-spacing: 0; }
.detail-card.detail-card-flagship > p { max-width: 900px; color: #a8b5c9; }
.detail-card.detail-card-flagship div { border-top-color: rgba(135,160,205,.17); }
.detail-card.detail-card-flagship b { color: #74f7e8; }
.detail-card.detail-card-flagship div p { color: #93a1b7; }
.detail-card span {
  color: #41689e;
  font: 10px var(--utility);
  letter-spacing: .14em;
}
.detail-card h2 {
  margin: 24px 0 18px;
  font-size: clamp(30px, 3vw, 48px);
  line-height: 1.15;
  letter-spacing: -.045em;
}
.detail-card > p {
  margin: 0 0 26px;
  color: #536177;
  font-size: 15px;
  line-height: 1.9;
}
.detail-card div {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 20px;
  padding: 16px 0;
  border-top: 1px solid rgba(26,52,94,.11);
}
.detail-card b {
  color: #173a70;
  font-size: 13px;
}
.detail-card div p {
  margin: 0;
  color: #677489;
  font-size: 13px;
  line-height: 1.8;
}

.future-section { padding: 145px var(--gutter); display: grid; grid-template-columns: .72fr 1.28fr; gap: 9vw; background: #0a0d14; }
.future-title { position: sticky; top: 110px; align-self: start; }
.future-title .section-label { color: #60789f; }
.future-title > p:last-child { max-width: 430px; margin: 30px 0 0; color: #7d899d; line-height: 1.9; }
.future-list { border-top: 1px solid var(--line-dark); }
.future-list article { min-height: 132px; display: grid; grid-template-columns: 105px 1fr auto; grid-template-rows: auto auto; column-gap: 24px; align-content: center; border-bottom: 1px solid var(--line-dark); transition: padding 180ms ease, background 180ms ease; }
.future-list article:hover { padding: 0 18px; background: rgba(40,103,255,.055); }
.future-list span { grid-row: 1/3; align-self: center; color: #536b93; font: 9px var(--utility); letter-spacing: .14em; }
.future-list h3 { margin: 0 0 9px; font-size: 22px; font-weight: 590; }
.future-list p { margin: 0; color: #728098; font-size: 12px; }
.future-list b { grid-row: 1/3; grid-column: 3; align-self: center; color: #5c7fc0; font-weight: 400; }

.about-section { padding: 145px var(--gutter); display: grid; grid-template-columns: .9fr 1.1fr; gap: 10vw; background: #121b32; }
.about-statement .section-label { color: #71d7d1; }
.about-content { max-width: 700px; padding-top: 46px; }
.about-content h3 { margin: 0 0 33px; font-size: 24px; font-weight: 590; }
.about-content > p { margin: 0 0 22px; color: #a1aec6; font-size: 16px; line-height: 2; }
.business-scope { margin-top: 38px; display: flex; flex-wrap: wrap; gap: 9px; }
.business-scope span { padding: 10px 13px; border: 1px solid rgba(130,158,209,.23); color: #98a9c7; font-size: 10px; }

.contact-section { padding: 145px var(--gutter); display: grid; grid-template-columns: .86fr 1.14fr; gap: 10vw; background: #edf1f6; color: var(--ink); }
.contact-intro > p:nth-of-type(2) { max-width: 560px; margin: 30px 0 0; color: #637087; font-size: 15px; line-height: 1.9; }
.contact-details { margin-top: 52px; display: grid; gap: 20px; }
.contact-details a, .contact-details div { display: flex; flex-direction: column; gap: 6px; }
.contact-details small { color: #758198; font-size: 10px; }
.contact-details strong { font-size: 14px; font-weight: 580; }
.contact-form { max-width: 720px; padding: 42px; border: 1px solid var(--line-light); background: rgba(255,255,255,.72); box-shadow: 0 28px 80px rgba(30,48,78,.09); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-form label { display: block; margin-bottom: 22px; }
.contact-form label > span { display: block; margin-bottom: 10px; color: #536078; font-size: 11px; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; border: 0; border-bottom: 1px solid rgba(26,48,85,.22); border-radius: 0; padding: 12px 0; background: transparent; color: var(--ink); outline: 0; font-size: 14px; transition: border-color 180ms ease; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--blue); }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: #a2aab8; }
.contact-form textarea { min-height: 120px; resize: vertical; line-height: 1.7; }
.contact-form .consent { display: flex; gap: 10px; align-items: flex-start; margin: 3px 0 21px; }
.contact-form .consent input { width: 16px; height: 16px; flex: none; margin-top: 1px; }
.contact-form .consent span { margin: 0; color: #7a869a; line-height: 1.6; }
.hp-field { position: absolute !important; left: -10000px !important; opacity: 0 !important; }
.submit-button { width: 100%; height: 56px; padding: 0 20px; display: flex; align-items: center; justify-content: space-between; border: 0; background: var(--blue); color: white; cursor: pointer; font-size: 14px; font-weight: 650; transition: background 180ms ease, transform 180ms ease; }
.submit-button:hover { background: #3a75ff; transform: translateY(-1px); }
.submit-button:disabled { cursor: wait; opacity: .6; }
.submit-button b { font-size: 20px; font-weight: 400; }
.form-status { min-height: 20px; margin: 14px 0 0; color: #647189; font-size: 11px; }
.form-status.success { color: #087f73; }
.form-status.error { color: #bd3556; }

footer { min-height: 150px; padding: 34px var(--gutter); display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 30px; border-top: 1px solid var(--line-dark); background: #05070b; }
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-brand img { width: 34px; }
.footer-brand div { display: flex; flex-direction: column; gap: 5px; }
.footer-brand strong { font-size: 14px; letter-spacing: .07em; }
.footer-brand span { color: #59657a; font: 7px var(--utility); letter-spacing: .17em; }
.footer-meta { text-align: center; color: #5d687b; font-size: 10px; }
.footer-meta p { margin: 0 0 8px; }
.footer-meta a:empty { display: none; }
.footer-meta .filing-link { color: #738198; letter-spacing: .04em; transition: color 180ms ease; }
.footer-meta .filing-link:hover { color: var(--cyan); }
.footer-links { display: flex; justify-content: flex-end; gap: 22px; color: #778398; font-size: 10px; }
.footer-links a:hover { color: var(--cyan); }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 700ms cubic-bezier(.2,.8,.2,1), transform 700ms cubic-bezier(.2,.8,.2,1); }
.reveal.in-view { opacity: 1; transform: none; }

@media (max-width: 1180px) {
  .site-header { grid-template-columns: 1fr auto; }
  .desktop-nav, .header-cta { display: none; }
  .menu-button { display: flex; justify-self: end; }
  .mobile-nav { position: fixed; z-index: 45; inset: 0; padding: 105px var(--gutter) 50px; display: flex; align-items: center; background: rgba(5,7,11,.98); opacity: 0; visibility: hidden; transform: translateY(-12px); transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease; }
  .mobile-nav.open { opacity: 1; visibility: visible; transform: none; }
  .mobile-nav nav { width: 100%; border-top: 1px solid var(--line-dark); }
  .mobile-nav a { display: flex; align-items: center; min-height: 68px; border-bottom: 1px solid var(--line-dark); font-size: 22px; }
  .hero-media img { width: 1130px; right: -330px; opacity: .72; }
  .hero-copy { max-width: 650px; }
  .hero h1 { font-size: clamp(64px, 8vw, 92px); }
  .product-console a, .flagship-console a { grid-template-columns: 32px 1fr; }
  .product-console i, .flagship-console i { display: none; }
  .product-console b, .flagship-console b { font-size: 18px; }
  .flagship-section { grid-template-columns: 1fr; gap: 64px; padding-left: 40px; padding-right: 40px; }
  .flagship-system { min-height: 520px; }
  .foundation-section, .product-story, .why-section, .capabilities-section, .software-section, .future-section, .about-section, .contact-section { padding-left: 40px; padding-right: 40px; }
  .product-story { gap: 50px; }
  .product-promise { font-size: 18px; }
  .capability-flow { grid-template-columns: repeat(3,1fr); }
  .capability-flow article:nth-child(3) { border-right: 0; }
  .capability-flow article:nth-child(n+4) { border-top: 1px solid var(--line-light); }
  .ability-stage { grid-template-columns: 1fr; }
  .software-stats { grid-template-columns: repeat(4, 1fr); border-right: 0; border-bottom: 1px solid rgba(29, 61, 112, .16); }
  .software-stats article { min-height: 150px; border-bottom: 0; border-right: 1px solid rgba(139, 168, 220, .16); }
  .software-stats article:last-child { border-right: 0; }
  .ability-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .card-wide { grid-column: span 2; }
  .flagship-card { grid-column: span 2; grid-row: span 2; }
  .card-tall { grid-column: auto; grid-row: auto; min-height: 184px; }
  .detail-list { grid-template-columns: 1fr; }
  .contact-section { gap: 6vw; }
}

@media (max-width: 820px) {
  .site-header { height: 74px; padding: 0 20px; }
  .site-header.scrolled { height: 68px; }
  .brand-name strong { font-size: 14px; }
  .brand-name small { display: none; }
  .brand-mark { width: 38px; height: 38px; }
  .brand-mark img { width: 25px; }
  .hero { min-height: 980px; padding: 74px 20px 0; }
  .hero::before { background: linear-gradient(180deg, rgba(5,7,11,.98) 0%, rgba(5,7,11,.85) 45%, rgba(5,7,11,.35) 70%, #05070b 97%); }
  .hero-copy { padding-top: 84px; }
  .hero h1 { font-size: clamp(50px, 13.5vw, 78px); line-height: 1.07; }
  .mobile-break { display: block; }
  .hero-copy > p { margin-top: 25px; font-size: 15px; }
  .hero-copy > .hero-kicker { margin-bottom: 18px; font-size: 9px; }
  .hero-copy > p br { display: none; }
  .hero-actions { margin-top: 31px; }
  .button { min-width: 0; flex: 1; padding: 0 16px; gap: 10px; }
  .button-ghost { display: none; }
  .hero-media img { width: 860px; right: -315px; top: 67%; opacity: .72; }
  .hero-axis { bottom: 222px; left: 20px; }
  .product-console, .flagship-console { left: 20px; right: 20px; height: 192px; grid-template-columns: 1fr 1fr; }
  .product-console a, .flagship-console a { padding: 0 12px; border-bottom: 1px solid rgba(115,143,196,.16); }
  .product-console a:nth-child(2), .flagship-console a:nth-child(2) { border-right: 0; }
  .product-console b, .flagship-console b { margin-top: 26px; font-size: 13px; }
  .product-console strong, .flagship-console strong { font-size: 13px; }
  .product-console div span, .flagship-console div span { font-size: 9px; }
  .flagship-section, .foundation-section, .product-story, .why-section, .capabilities-section, .software-section, .future-section, .about-section, .contact-section { padding: 86px 20px; }
  .flagship-actions { flex-direction: column; }
  .flagship-system { min-height: 640px; }
  .fde-core { top: 48%; width: min(210px, 58%); }
  .fde-lane { left: 22px; right: 22px; width: auto; top: 28px; bottom: auto; gap: 12px; }
  .lane-left, .lane-right { left: 22px; right: 22px; }
  .lane-right { top: auto; bottom: 100px; }
  .fde-lane article { min-height: 96px; padding: 17px; }
  .fde-lane b { margin-top: 12px; font-size: 15px; }
  .fde-toolrail { left: 22px; right: 22px; bottom: 24px; grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .fde-toolrail span { min-height: 36px; font-size: 9px; }
  .foundation-section { grid-template-columns: 1fr; gap: 60px; }
  .foundation-map { justify-self: center; width: 100%; }
  .foundation-core { width: 132px; height: 132px; box-shadow: 0 20px 55px rgba(40,103,255,.14), inset 0 0 0 15px rgba(255,255,255,.55); }
  .foundation-core::before { inset: -14px; }
  .foundation-core strong { font-size: 20px; }
  .foundation-node { min-width: 110px; padding: 12px 10px 12px 34px; }
  .foundation-node i { left: 12px; top: 14px; width: 12px; height: 12px; }
  .foundation-node span { display: none; }
  .product-story, .product-story-reverse { grid-template-columns: 1fr; gap: 54px; }
  .product-story-reverse .product-visual, .product-story-reverse .product-copy { order: initial; }
  .product-visual { aspect-ratio: 1.1; }
  .product-copy { max-width: none; }
  .product-heading h2 { font-size: 48px; }
  .product-promise { font-size: 18px; }
  .feature-list li { grid-template-columns: 125px 1fr; }
  .micro-panel { transform: scale(.8); }
  .panel-route { left: 0; }.panel-team{right:0}
  .radar { width: 190px; height: 190px; left: 30%; }
  .opportunity-list { right: 4%; width: 47%; }
  .transformation { grid-template-columns: 1fr; }
  .transform-engine { min-height: 190px; padding: 28px; flex-direction: row; border: 0; border-top: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); }
  .transform-engine i { width: 18px; height: 1px; }
  .transform-engine span { width: 58px; height: 58px; }
  .capability-flow { grid-template-columns: 1fr; }
  .capability-flow article { min-height: 190px; border-right: 0; border-bottom: 1px solid var(--line-light); }
  .capability-flow article:nth-child(n) { border-top: 0; }
  .capability-flow article:last-child { border-bottom: 0; }
  .capability-flow h3 { margin-top: 34px; }
  .software-stats { grid-template-columns: 1fr 1fr; }
  .software-stats article:nth-child(2) { border-right: 0; }
  .software-stats article:nth-child(n+3) { border-top: 1px solid var(--line-light); }
  .ability-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ability-card { min-height: 170px; padding: 28px 24px; }
  .ability-card i { width: 52px; left: 24px; top: 24px; }
  .flagship-card, .card-wide, .card-tall { grid-column: auto; grid-row: auto; }
  .flagship-card { min-height: 300px; }
  .detail-hero { min-height: 560px; padding: 130px 20px 70px; }
  .detail-jump { margin-top: 42px; }
  .detail-list { padding: 70px 20px 100px; }
  .detail-card { min-height: 0; padding: 28px 24px; }
  .future-section, .about-section, .contact-section { grid-template-columns: 1fr; gap: 60px; }
  .future-title { position: static; }
  .future-list article { grid-template-columns: 74px 1fr auto; }
  .about-content { padding-top: 0; }
  .contact-form { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  footer { grid-template-columns: 1fr; justify-items: center; text-align: center; padding: 42px 20px; }
  .footer-links { justify-content: center; flex-wrap: wrap; }
}

@media (max-width: 520px) {
  .hero h1 { font-size: 46px; }
  .hero { min-height: 900px; }
  .hero-media img { width: 700px; right: -275px; top: 67%; }
  .foundation-copy h2, .section-intro h2, .why-copy h2, .software-intro h2, .future-title h2, .about-statement h2, .contact-intro h2, .flagship-copy h2 { font-size: 42px; }
  .product-visual { aspect-ratio: .98; }
  .earbud-device { width: 168px; height: 168px; }
  .earbud-device::before,.earbud-device::after{top:36px;transform:scale(.78)}
  .waveform { bottom: 38px; }
  .micro-panel { display: none; }
  .command-log { display: none; }
  .command-map { top: 20%; height: 55%; }
  .radar { left: 30%; width: 150px; height: 150px; }
  .opportunity-list { top: 24%; width: 49%; padding: 11px; }
  .opportunity-list div { padding: 11px 0; }
  .source-flow { gap: 5px; }
  .live-assets { display: none; }
  .live-timeline { right: 7%; }
  .live-monitor { height: 58%; }
  .product-problem, .feature-list li { grid-template-columns: 1fr; gap: 7px; }
  .product-result strong { line-height: 1.6; }
  .transform-side { padding: 28px 22px; }
  .transform-engine { padding: 20px 10px; }
  .transform-engine span { width: 50px; height: 50px; font-size: 11px; }
  .software-stats { grid-template-columns: 1fr; }
  .software-stats article { min-height: 118px; border-right: 0; border-top: 1px solid var(--line-light); }
  .software-stats article:first-child { border-top: 0; }
  .ability-stage { margin-top: 44px; }
  .ability-grid { grid-template-columns: 1fr; }
  .ability-card, .card-tall { min-height: 154px; padding: 24px 22px; }
  .flagship-card { min-height: 270px; }
  .ability-card span, .card-tall span { font-size: 21px; }
  .flagship-card span { font-size: 34px; }
  .ability-card p { font-size: 12px; }
  .detail-hero h1 { font-size: 46px; }
  .detail-hero > p:not(.section-label) { font-size: 15px; }
  .detail-jump a { width: 100%; }
  .detail-card div { grid-template-columns: 1fr; gap: 7px; }
  .future-list article { grid-template-columns: 1fr auto; padding: 22px 0; }
  .future-list span { grid-row: auto; grid-column: 1; }
  .future-list h3 { grid-column: 1; margin-top: 12px; }
  .future-list p { grid-column: 1/3; margin-top: 5px; line-height: 1.7; }
  .future-list b { grid-row: 1/3; grid-column: 2; }
}

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