:root {
  --page-gutter: 8vw;
  --motion-ease: cubic-bezier(.22,1,.36,1);
  --motion-smooth: cubic-bezier(.2,.7,.2,1);
  --green-50: #e8ffe6;
  --green-100: #cdfcda;
  --green-200: #a0fb9b;
  --green-300: #66f561;
  --green-400: #34ea31;
  --green-500: #22d81f;
  --green-500-rgb: 34, 216, 31;
  --green-600: #1eb31c;
  --green-700: #0c7f11;
  --green-800: #106414;
  --green-900: #135417;
  --green-950: #042f08;
  --ink: #010D24;
  --navy: #202A3E;
  --navy-deep: #010D24;
  --orange: var(--green-500);
  --green-soft: var(--green-600);
  --orange-hot: #043AAF;
  --blue: #043AAF;
  --sky: #E4E6EA;
  --paper: #E4E6EA;
  --white: #FFFFFF;
  --muted: #1D3537;
  --taupe: #A89D91;
  --line: rgba(1, 13, 36, 0.13);
  --shadow: 0 24px 70px rgba(1, 13, 36, 0.18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: "Manrope", sans-serif; font-size: 16px; line-height: 1.6; letter-spacing: 0; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { color: inherit; }
svg { width: 1em; height: 1em; stroke-width: 1.8; }

.version-ribbon { position: fixed; z-index: 60; top: 0; left: 0; right: 0; height: 34px; display: flex; align-items: center; justify-content: space-between; padding-inline: var(--page-gutter); color: var(--white); background: #24133f; border-bottom: 1px solid rgba(255,255,255,.12); font-size: 11px; font-weight: 700; line-height: 1; letter-spacing: .04em; }
.version-ribbon > button { display: inline-flex; align-items: center; gap: 7px; min-height: 34px; padding: 0; border: 0; color: rgba(255,255,255,.42); background: transparent; font-size: inherit; font-weight: inherit; line-height: inherit; letter-spacing: inherit; text-transform: uppercase; cursor: pointer; transition: color .2s ease; }
.version-ribbon > button:hover, .version-ribbon > button:focus-visible { color: rgba(255,255,255,.88); }
.version-ribbon > button span { font-size: 10px; }
.version-ribbon a { display: inline-flex; align-items: center; gap: 8px; min-height: 34px; color: rgba(255,255,255,.86); transition: color .2s ease; }
.version-ribbon a:hover, .version-ribbon a:focus-visible { color: var(--green-300); }
.version-ribbon svg { width: 14px; height: 14px; transition: transform .22s var(--motion-ease); }
.version-ribbon a:hover svg { transform: translateX(3px); }
body.version-ribbon-closed .version-ribbon { display: none; }
body.version-ribbon-closed .site-header { top: 0; }

.site-header { position: fixed; z-index: 50; top: 34px; left: 0; right: 0; height: 78px; display: grid; grid-template-columns: auto 1fr auto auto; align-items: center; gap: 24px; padding: 0 var(--page-gutter); color: var(--white); border-bottom: 1px solid rgba(255,255,255,.16); transition: background .35s ease, height .35s ease, box-shadow .35s ease; }
.site-header.scrolled { height: 66px; color: var(--ink); background: rgba(228,230,234,.92); backdrop-filter: blur(18px); box-shadow: 0 8px 30px rgba(1,13,36,.08); }
.brand { justify-self: start; position: relative; display: inline-flex; align-items: center; width: 184px; height: 40px; }
.brand-logo { display: block; width: 184px; height: auto; }
.brand-logo-dark { position: absolute; inset: 0; opacity: 0; transition: opacity .25s ease; }
.brand-logo-light { transition: opacity .25s ease; }
.site-header.scrolled .brand-logo-dark, .site-header.menu-open .brand-logo-dark { opacity: 1; }
.site-header.scrolled .brand-logo-light, .site-header.menu-open .brand-logo-light { opacity: 0; }
.desktop-nav { justify-self: center; display: flex; align-items: center; gap: 34px; font-size: 14px; font-weight: 650; }
.desktop-nav a { position: relative; padding: 10px 0; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; right: 0; bottom: 2px; height: 1px; background: currentColor; transform: scaleX(0); transform-origin: right; transition: transform .22s ease; }
.desktop-nav a:hover::after, .desktop-nav a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.desktop-nav .nav-external { margin-left: 4px; padding-left: 34px; }
.desktop-nav .nav-external::before { content: ""; position: absolute; top: 50%; left: 0; width: 1px; height: 24px; background: currentColor; opacity: .26; transform: translateY(-50%); }
.site-header > .button { justify-self: end; }
.menu-button { display: none; justify-self: end; border: 0; background: transparent; cursor: pointer; }

.language-switcher { justify-self: end; display: inline-flex; align-items: center; gap: 1px; padding: 2px; border: 1px solid rgba(255,255,255,.18); background: rgba(255,255,255,.08); }
.language-option { min-width: 28px; min-height: 0; padding: 5px 7px; border: 0; color: inherit; background: transparent; font-size: 12px; font-weight: 800; line-height: 1; cursor: pointer; transition: color .18s ease, background .18s ease; }
.language-option:hover { background: rgba(255,255,255,.12); }
.language-option.active { color: var(--ink); background: var(--orange); }
.site-header.scrolled .language-switcher, .site-header.menu-open .language-switcher { border-color: var(--line); background: rgba(255,255,255,.54); }

.button { display: inline-flex; align-items: center; justify-content: center; gap: 11px; min-height: 50px; padding: 0 22px; border: 1px solid transparent; font-size: 14px; font-weight: 750; transition: transform .25s var(--motion-ease), box-shadow .25s ease, background .25s ease; }
.button:hover { transform: translateY(-2px); }
.button svg { transition: transform .25s var(--motion-ease); }
.button:hover svg { transform: translate(2px,-2px); }
.button-small { min-height: 40px; padding: 0 17px; font-size: 14px; }
.button-dark { color: var(--white); background: var(--navy); }
.button-orange { color: var(--ink); background: var(--orange); box-shadow: 0 12px 30px rgba(var(--green-500-rgb),.28); }
.button-orange:hover { color: var(--white); background: var(--orange-hot); box-shadow: 0 16px 38px rgba(4,58,175,.32); }
.button-light { color: var(--ink); background: var(--white); }
.text-link { display: inline-flex; align-items: center; gap: 9px; font-size: 14px; font-weight: 800; }
.text-link svg { transition: transform .25s ease; }
.text-link:hover svg { transform: translateX(4px); }
.text-link-light { color: var(--white); }

.hero { position: relative; min-height: 810px; height: 100svh; color: var(--white); overflow: hidden; background: var(--navy-deep); }
.hero-backdrop { position: absolute; inset: 0; background-image: url("assets/hero-audi-q6-sportback.jpg"); background-size: cover; background-position: center; transform: scale(1.02); animation: hero-in 1.4s ease both; }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(1,13,36,.97) 0%, rgba(1,13,36,.84) 35%, rgba(29,53,55,.32) 68%, rgba(1,13,36,.48) 100%); }
.hero-scan { position: absolute; z-index: 1; inset: 0; pointer-events: none; mix-blend-mode: screen; opacity: .95; transform: scale(1.02); }
.hero-scan svg { display: block; width: 100%; height: 100%; overflow: visible; }
.scan-tail { fill: none; filter: url(#tailGlow); stroke: var(--green-500); stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: var(--tail-length) 1200; stroke-dashoffset: var(--tail-start); opacity: 0; animation: contour-tail 7.8s cubic-bezier(.55,0,.2,1) infinite; }
.scan-tail-far { --tail-length: 420; --tail-start: 402; --tail-end: -598; --tail-opacity: .2; stroke-width: 28; }
.scan-tail-mid { --tail-length: 315; --tail-start: 297; --tail-end: -703; --tail-opacity: .32; stroke-width: 15; }
.scan-tail-near { --tail-length: 205; --tail-start: 187; --tail-end: -813; --tail-opacity: .58; stroke-width: 7; }
.scan-tail-hot { --tail-length: 112; --tail-start: 94; --tail-end: -906; --tail-opacity: .95; stroke: var(--green-100); stroke-width: 3; }
.hero-grid, .cta-pattern { position: absolute; inset: 0; opacity: .2; background-image: linear-gradient(rgba(255,255,255,.1) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.1) 1px, transparent 1px); background-size: 72px 72px; mask-image: linear-gradient(to right, black, transparent 65%); }
.hero-content { position: absolute; z-index: 2; left: var(--page-gutter); top: 50%; width: min(690px, 52vw); transform: translateY(-47%); }
.hero-content.reveal { transform: translateY(calc(-47% + 28px)); }
.hero-content.reveal.visible { transform: translateY(-47%); }
.eyebrow { margin: 0 0 24px; display: flex; align-items: center; gap: 11px; color: var(--orange); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .16em; white-space: nowrap; }
.eyebrow > span:first-child { flex: 0 0 28px; width: 28px; height: 2px; background: currentColor; }
.eyebrow > span:not(:first-child) { width: auto; height: auto; background: transparent; }
.eyebrow-light { color: var(--blue); }
.eyebrow-blue { color: var(--blue); }
h1, h2, h3, p { margin-top: 0; }
h1 { margin-bottom: 28px; font-size: clamp(55px, 5.7vw, 88px); line-height: .94; letter-spacing: -.055em; font-weight: 300; }
h1 em, h2 em { color: var(--orange); font-style: normal; }
.hero-copy { width: min(570px, 90%); margin-bottom: 36px; color: rgba(255,255,255,.78); font-size: clamp(17px,1.45vw,21px); line-height: 1.65; }
.hero-actions { display: flex; align-items: center; gap: 28px; }
.hero-actions .button-orange:hover { color: var(--ink); background: var(--white); box-shadow: 0 16px 38px rgba(0,0,0,.18); }
.live-panel { position: absolute; z-index: 3; right: var(--page-gutter); bottom: 12%; width: min(400px, 30vw); padding: 28px; overflow: hidden; color: var(--white); background: linear-gradient(145deg, rgba(9,35,57,.7), rgba(1,13,36,.7)); border: 1px solid rgba(68,184,235,.24); border-radius: 28px; box-shadow: 0 30px 80px rgba(1,13,36,.48), inset 0 1px 0 rgba(255,255,255,.08); backdrop-filter: blur(10px); transform-origin: right bottom; }
.live-panel.reveal { transform: translateY(28px) scale(1.1); }
.live-panel.reveal.visible { transform: translateY(0) scale(1.1); }
.live-panel::before { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(120deg, rgba(68,184,235,.08), transparent 42%, rgba(var(--green-500-rgb),.04)); }
.live-panel > * { position: relative; opacity: 0; transform: translateY(12px); }
.live-panel.panel-ready > * { animation: panel-item-in .7s cubic-bezier(.2,.7,.2,1) forwards; }
.live-panel.panel-ready > :nth-child(2) { animation-delay: .12s; }
.live-panel.panel-ready > :nth-child(3) { animation-delay: .24s; }
.live-panel.panel-ready > :nth-child(4) { animation-delay: .36s; }
.panel-topline { display: flex; align-items: center; justify-content: space-between; margin-bottom: 25px; color: rgba(255,255,255,.58); font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.panel-topline > span { display: flex; align-items: center; gap: 7px; }
.live-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 5px rgba(var(--green-500-rgb),.14); }
.power-reading { display: flex; justify-content: space-between; align-items: flex-end; }
.power-reading small { display: block; margin-bottom: 5px; color: rgba(255,255,255,.55); font-size: 14px; }
.power-reading strong { font-size: 40px; line-height: 1; }
.power-reading strong + span { margin-left: 5px; color: rgba(255,255,255,.55); font-size: 14px; }
.trend { display: flex; align-items: center; gap: 5px; color: var(--blue); font-size: 14px; font-weight: 700; }
.sparkline { height: 88px; margin: 22px 0; display: flex; align-items: flex-end; gap: 7px; border-bottom: 1px solid rgba(255,255,255,.12); }
.sparkline span { flex: 1; background: rgba(68,184,235,.16); border-top: 2px solid var(--blue); }
.sparkline span:nth-child(6), .sparkline span:nth-child(8) { background: rgba(var(--green-500-rgb),.12); border-color: var(--orange); }
.panel-metrics { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
.panel-metrics div { padding-left: 12px; border-left: 1px solid rgba(255,255,255,.12); }
.panel-metrics small { display: block; margin-bottom: 5px; color: rgba(255,255,255,.5); font-size: 14px; }
.panel-metrics b { font-size: 15px; }
.hero-bottom { position: absolute; z-index: 2; bottom: 28px; left: var(--page-gutter); right: var(--page-gutter); display: flex; justify-content: space-between; align-items: center; color: rgba(255,255,255,.58); font-size: 14px; text-transform: uppercase; letter-spacing: 1.5px; }
.hero-bottom a { display: grid; place-items: center; width: 40px; height: 40px; border: 1px solid rgba(255,255,255,.3); border-radius: 50%; color: white; }

.signal-strip { min-height: 72px; display: grid; grid-template-columns: repeat(4, 1fr); align-items: center; padding: 0 var(--page-gutter); color: var(--ink); background: var(--orange); }
.signal-strip div { display: flex; justify-content: center; align-items: center; gap: 10px; padding: 0 15px; border-right: 1px solid rgba(255,255,255,.23); font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: .8px; transition: background .22s ease, transform .22s var(--motion-ease); }
.signal-strip div:hover { background: rgba(255,255,255,.12); transform: translateY(-2px); }
.signal-strip svg { transition: transform .28s var(--motion-ease); }
.signal-strip div:hover svg { transform: scale(1.12) rotate(-4deg); }
.signal-strip div:last-child { border: 0; }
.signal-strip svg { font-size: 18px; }

.section { padding: 130px var(--page-gutter); }
.section-intro { display: grid; grid-template-columns: 1.25fr .75fr; align-items: end; gap: 9vw; margin-bottom: 78px; }
.section-intro > p { margin-bottom: 5px; color: var(--muted); font-size: 17px; line-height: 1.7; }
h2 { margin-bottom: 0; font-size: clamp(46px, 5vw, 72px); line-height: 1.02; letter-spacing: -.045em; font-weight: 300; }
.platform { background: var(--white); }
.platform-layout { display: grid; grid-template-columns: minmax(250px,.35fr) minmax(620px,1fr); align-items: center; gap: 5vw; }
.feature-rail { border-top: 1px solid var(--line); }
.feature-tab { width: 100%; display: grid; grid-template-columns: 32px 1fr auto; align-items: center; gap: 12px; padding: 22px 4px; border: 0; border-bottom: 1px solid var(--line); text-align: left; background: none; cursor: pointer; transition: color .25s ease, padding .25s var(--motion-ease), background .25s ease; }
.feature-tab:hover { padding-right: 10px; padding-left: 10px; background: rgba(1,13,36,.035); }
.feature-tab > span { color: var(--taupe); font-size: 14px; }
.feature-tab div { display: grid; gap: 4px; }
.feature-tab b { font-size: 22px; }
.feature-tab small { color: var(--muted); font-size: 14px; }
.feature-tab svg { opacity: 0; transform: translateX(-8px); transition: .25s ease; }
.feature-tab.active { color: var(--orange); }
.feature-tab.active small { color: var(--ink); }
.feature-tab.active svg { opacity: 1; transform: none; }
.dashboard-shell { min-height: 500px; display: grid; grid-template-columns: 62px 1fr; overflow: hidden; background: var(--paper); border: 8px solid var(--white); border-radius: 7px; box-shadow: var(--shadow); transition: transform .45s var(--motion-ease), box-shadow .45s ease; }
.dashboard-shell.visible:hover { transform: translateY(-5px); box-shadow: 0 34px 90px rgba(1,13,36,.22); }
.dash-sidebar { display: flex; flex-direction: column; align-items: center; gap: 30px; padding: 18px 0; color: rgba(255,255,255,.55); background: var(--navy); }
.dash-sidebar > svg { width: 17px; }
.dash-sidebar > svg { transition: color .2s ease, transform .2s var(--motion-ease); }
.dash-sidebar > svg:hover { color: var(--white); transform: scale(1.16); }
.dash-sidebar > svg:nth-of-type(1) { color: var(--orange); }
.dash-sidebar > svg:last-child { margin-top: auto; }
.mini-brand { display: grid; place-items: center; width: 28px; height: 28px; margin-bottom: 12px; border-radius: 50%; color: white; background: var(--orange); }
.dash-content { padding: 31px; overflow: hidden; }
.dash-content > * { transition: opacity .22s ease, transform .28s var(--motion-ease); }
.dash-content.is-switching > * { opacity: 0; transform: translateY(12px); }
.dash-content:not(.is-switching) > :nth-child(2) { transition-delay: .05s; }
.dash-content:not(.is-switching) > :nth-child(3) { transition-delay: .1s; }
.dash-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 27px; }
.dash-head small { color: var(--orange); font-size: 14px; font-weight: 800; text-transform: uppercase; }
.dash-head h3 { margin: 4px 0 0; font-size: 22px; }
.dash-head > span { display: flex; align-items: center; gap: 8px; padding: 9px 12px; border: 1px solid var(--line); border-radius: 3px; color: var(--muted); background: white; font-size: 14px; }
.dash-kpis { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-bottom: 14px; }
.dash-kpis > div { min-width: 0; padding: 17px; background: white; border: 1px solid rgba(1,13,36,.07); transition: transform .22s var(--motion-ease), box-shadow .22s ease; }
.dash-kpis > div:hover { z-index: 1; transform: translateY(-3px); box-shadow: 0 12px 28px rgba(1,13,36,.1); }
.dash-kpis small, .dash-kpis em { display: block; font-size: 14px; font-style: normal; }
.dash-kpis small { color: var(--muted); }
.dash-kpis b { display: block; margin: 8px 0; font-size: 20px; white-space: nowrap; }
.dash-kpis em { color: var(--blue); }
.dash-kpis .accent-kpi { color: var(--ink); background: var(--orange); }
.dash-kpis .accent-kpi small, .dash-kpis .accent-kpi em { color: rgba(1,13,36,.68); }
.dash-grid { display: grid; grid-template-columns: 1.6fr .8fr; gap: 14px; }
.chart-card, .status-card { min-height: 245px; padding: 18px; background: white; }
.card-label { display: flex; justify-content: space-between; font-size: 14px; }
.card-label span { color: var(--blue); }
.line-chart { height: 175px; margin-top: 24px; background: repeating-linear-gradient(to bottom, transparent, transparent 43px, rgba(1,13,36,.07) 44px); }
.line-chart svg { width: 100%; height: 100%; overflow: visible; }
.line-chart .line { fill: none; stroke: var(--orange); stroke-width: 3; vector-effect: non-scaling-stroke; }
.dashboard-shell.visible .line-chart .line { stroke-dasharray: 1000; stroke-dashoffset: 1000; animation: chart-draw 1.6s .35s var(--motion-smooth) forwards; }
.line-chart .area { fill: rgba(var(--green-500-rgb),.13); }
.status-card { display: flex; flex-direction: column; }
.donut { width: 100px; height: 100px; margin: 22px auto 15px; display: grid; place-items: center; border-radius: 50%; background: conic-gradient(var(--blue) 0 78%, var(--orange) 78% 96%, var(--sky) 96%); position: relative; }
.donut::before { content: ""; position: absolute; inset: 11px; border-radius: 50%; background: white; }
.donut span { z-index: 1; font-size: 22px; font-weight: 800; }.donut small { font-size: 14px; }
.status-card ul { display: grid; gap: 7px; margin: auto 0 0; padding: 0; list-style: none; font-size: 14px; }
.status-card li { display: flex; align-items: center; gap: 6px; color: var(--muted); }.status-card li span { width: 6px; height: 6px; border-radius: 50%; background: var(--blue); }.status-card li:nth-child(2) span { background: var(--orange); }.status-card li:nth-child(3) span { background: var(--sky); }.status-card li b { margin-left: auto; color: var(--ink); }

.journey { min-height: 740px; display: grid; grid-template-columns: .78fr 1.22fr; align-items: center; gap: 8vw; overflow: hidden; color: var(--white); background-color: var(--navy); background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg,rgba(255,255,255,.035) 1px, transparent 1px); background-size: 64px 64px; }
.journey-copy > p:not(.eyebrow) { max-width: 510px; margin: 30px 0; color: rgba(255,255,255,.63); font-size: 17px; line-height: 1.7; }
.journey h2 em { color: var(--blue); }
.orbit-system { position: relative; min-height: 500px; }
.orbit { position: absolute; top: 50%; left: 50%; border: 1px solid rgba(4,58,175,.24); border-radius: 50%; transform: translate(-50%,-50%); }
.orbit::after { content: ""; position: absolute; inset: -1px; border: 1px dashed rgba(var(--green-500-rgb),.28); border-radius: inherit; }
.orbit-system.visible .orbit-one::after { animation: orbit-ring-rotate 22s linear infinite; }
.orbit-system.visible .orbit-two::after { animation: orbit-ring-rotate 32s linear infinite reverse; }
.orbit-system.visible .orbit-three::after { animation: orbit-ring-rotate 42s linear infinite; }
.orbit-system.visible .orbit-one { animation: orbit-eccentric-one 7.6s ease-in-out infinite; }
.orbit-system.visible .orbit-two { animation: orbit-eccentric-two 9.4s -3.1s ease-in-out infinite; }
.orbit-system.visible .orbit-three { animation: orbit-eccentric-three 11.8s -6.2s ease-in-out infinite; }
.orbit-one { width: 220px; height: 220px; }.orbit-two { width: 360px; height: 360px; }.orbit-three { width: 500px; height: 500px; }
.orbit-core { position: absolute; z-index: 2; top: 50%; left: 50%; width: 146px; height: 146px; display: flex; flex-direction: column; align-items: center; justify-content: center; border-radius: 50%; color: var(--ink); background: var(--orange); box-shadow: 0 0 0 14px rgba(var(--green-500-rgb),.12), 0 20px 60px rgba(0,0,0,.25); transform: translate(-50%,-50%); transition: box-shadow .3s ease, scale .3s var(--motion-ease); }
.orbit-system.visible .orbit-core { animation: core-glow 2.8s ease-in-out infinite; }
.orbit-core:hover { scale: 1.04; }
.orbit-core svg { margin-bottom: 7px; font-size: 25px; }.orbit-core b { font-size: 15px; }.orbit-core small { margin-top: 2px; opacity: .65; font-size: 14px; text-transform: uppercase; letter-spacing: 1px; }
.orbit-node { --repel-x: 0px; --repel-y: 0px; position: absolute; z-index: 3; min-width: 95px; display: flex; align-items: center; gap: 8px; padding: 10px 13px; border: 1px solid rgba(255,255,255,.16); border-radius: 20px; background: rgba(1,13,36,.9); box-shadow: 0 8px 28px rgba(0,0,0,.2); font-size: 14px; translate: var(--repel-x) var(--repel-y); transition: translate .18s ease-out, border-color .22s ease, background .22s ease; }
.orbit-system.visible .orbit-node { animation: node-float 4s ease-in-out infinite; animation-delay: var(--float-delay, 0s); }
.orbit-node:hover { border-color: rgba(var(--green-500-rgb),.55); background: rgba(1,13,36,1); }
.node-two { --float-delay: -.8s; }.node-three { --float-delay: -1.6s; }.node-four { --float-delay: -2.4s; }.node-five { --float-delay: -3.2s; }
.orbit-node svg { color: var(--blue); }.node-one { top: 8%; left: 43%; }.node-two { top: 30%; right: 0; }.node-three { right: 10%; bottom: 10%; }.node-four { left: 2%; bottom: 12%; }.node-five { top: 28%; left: 0; }

.operations { display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; gap: 9vw; background: var(--paper); }
.photo-frame { position: relative; min-height: 600px; }
.photo-frame::before { content: ""; position: absolute; left: -30px; bottom: -30px; width: 66%; height: 55%; background: var(--orange); }
.photo-frame img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: saturate(.8) contrast(1.05); transform: scale(1.035); transition: transform 1.1s var(--motion-ease), filter .5s ease; }
.operations-visual.visible .photo-frame img { transform: scale(1); }
.photo-frame:hover img { transform: scale(1.025); filter: saturate(.95) contrast(1.05); }
.charge-badge { position: absolute; z-index: 2; right: -32px; bottom: 45px; width: 170px; display: flex; align-items: center; gap: 13px; padding: 18px; color: white; background: var(--navy); box-shadow: var(--shadow); }
.operations-visual.visible .charge-badge { animation: badge-float 4s .4s ease-in-out infinite; }
.charge-badge > svg { width: 27px; height: 27px; padding: 5px; color: var(--orange); background: rgba(255,255,255,.1); }
.charge-badge small { display: block; opacity: .55; font-size: 14px; text-transform: uppercase; }.charge-badge b { font-size: 23px; }
.operations-copy > p:not(.eyebrow) { margin: 28px 0 36px; color: var(--muted); font-size: 17px; line-height: 1.7; }
.capability-list { border-top: 1px solid var(--line); }
.capability-list > div { display: grid; grid-template-columns: 34px 1fr; gap: 15px; padding: 20px 0; border-bottom: 1px solid var(--line); transition: padding .25s var(--motion-ease), background .25s ease; }
.capability-list > div:hover { padding-right: 12px; padding-left: 12px; background: rgba(255,255,255,.5); }
.operations-copy.visible .capability-list > div { animation: child-rise .55s var(--motion-ease) both; }
.operations-copy.visible .capability-list > div:nth-child(2) { animation-delay: .1s; }
.operations-copy.visible .capability-list > div:nth-child(3) { animation-delay: .2s; }
.capability-list > div > span { color: var(--orange); font-size: 14px; }.capability-list b, .capability-list small { display: block; }.capability-list b { margin-bottom: 6px; font-size: 13px; }.capability-list small { color: var(--muted); font-size: 14px; line-height: 1.6; }

.intelligence { background: var(--sky); }
.ai-stage { position: relative; min-height: 570px; overflow: hidden; border: 1px solid rgba(1,13,36,.1); background-color: var(--white); background-image: radial-gradient(rgba(1,13,36,.12) 1px, transparent 1px); background-size: 20px 20px; }
.ai-rings { position: absolute; top: 50%; left: 50%; width: 440px; height: 440px; border: 1px solid rgba(var(--green-500-rgb),.28); border-radius: 50%; transform: translate(-50%,-50%); }
.ai-stage.visible .ai-rings { animation: intelligence-ring 18s ease-in-out infinite; }
.ai-rings::before, .ai-rings::after { content: ""; position: absolute; border: 1px solid rgba(var(--green-500-rgb),.28); border-radius: 50%; }.ai-rings::before { inset: 58px; }.ai-rings::after { inset: 120px; }
.ai-stage.visible .ai-rings::before { animation: intelligence-ring-middle 9.5s -3s ease-in-out infinite; }
.ai-stage.visible .ai-rings::after { animation: intelligence-ring-inner 7.5s -5s ease-in-out infinite; }
.ai-core { position: absolute; z-index: 3; top: 50%; left: 50%; width: 180px; height: 180px; display: flex; flex-direction: column; align-items: center; justify-content: center; border-radius: 50%; color: var(--ink); background: var(--orange); box-shadow: 0 18px 60px rgba(var(--green-500-rgb),.3); transform: translate(-50%,-50%); transition: scale .3s var(--motion-ease); }
.ai-stage.visible .ai-core { animation: ai-glow 2.8s ease-in-out infinite; }
.ai-core:hover { scale: 1.05; }
.ai-core svg { margin-bottom: 9px; font-size: 28px; }.ai-core b { font-size: 18px; }.ai-core small { margin-top: 4px; opacity: .7; font-size: 14px; text-transform: uppercase; }
.insight-card { --repel-x: 0px; --repel-y: 0px; position: absolute; width: 190px; display: grid; grid-template-columns: 35px 1fr; align-items: center; column-gap: 10px; padding: 14px; background: white; box-shadow: 0 14px 45px rgba(1,13,36,.12); translate: var(--repel-x) var(--repel-y); transition: translate .18s ease-out, box-shadow .25s ease; }
.ai-stage.visible .insight-card { animation: card-float 4.5s ease-in-out infinite; animation-delay: var(--float-delay, 0s); }
.insight-card:hover { box-shadow: 0 20px 55px rgba(1,13,36,.2); }
.insight-card svg { grid-row: 1/3; width: 35px; height: 35px; padding: 9px; border-radius: 50%; color: white; background: var(--navy); }.insight-card span { color: var(--muted); font-size: 14px; }.insight-card b { font-size: 14px; }.insight-one { left: 9%; top: 18%; }.insight-two { --float-delay: -.9s; right: 8%; top: 18%; }.insight-three { --float-delay: -1.8s; left: 12%; bottom: 16%; }.insight-four { --float-delay: -2.7s; right: 11%; bottom: 16%; }

.outcomes { color: white; background: var(--navy-deep); }
.outcome-heading { margin-bottom: 65px; }
.outcome-heading h2 em { color: var(--blue); }
.outcome-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; }
.outcome-card { position: relative; min-height: 390px; padding: 28px; border: 1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.035); transition: transform .3s var(--motion-ease), background .3s ease, box-shadow .3s ease; }
.outcome-card:hover { z-index: 2; transform: translateY(-8px); background: rgba(255,255,255,.07); }
.outcome-card.featured:hover { box-shadow: 0 24px 60px rgba(0,0,0,.24); }
.outcome-card.featured { color: var(--ink); background: var(--white); }
.outcome-card > span { position: absolute; top: 25px; right: 25px; color: rgba(255,255,255,.3); font-size: 14px; }.outcome-card.featured > span { color: rgba(1,13,36,.3); }
.outcome-card > svg { width: 40px; height: 40px; padding: 10px; color: white; background: var(--orange); transition: transform .3s var(--motion-ease); }.outcome-card:hover > svg { transform: rotate(-6deg) scale(1.1); }.outcome-card h3 { margin: 52px 0 14px; font-size: 27px; font-weight: 600; line-height: 1.1; }.outcome-card p { min-height: 72px; color: rgba(255,255,255,.58); font-size: 14px; line-height: 1.7; }.outcome-card.featured p { color: var(--muted); }.outcome-card strong { display: block; width: max-content; margin-top: 35px; font-size: 42px; font-weight: 600; line-height: 1; transform-origin: left bottom; transition: transform .32s var(--motion-ease), color .25s ease; }.outcome-card:hover strong { color: var(--green-300); transform: scale(1.16); }.outcome-card.featured:hover strong { color: var(--green-700); }.outcome-card small { color: var(--blue); font-size: 14px; text-transform: uppercase; letter-spacing: .7px; }.outcome-card.featured small { color: var(--orange); }

.network-showcase { position: relative; display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 8vw; min-height: 760px; padding: 120px var(--page-gutter); overflow: hidden; color: var(--white); background: var(--navy-deep); }
.network-showcase::before { position: absolute; inset: 0; opacity: .42; background: radial-gradient(circle at 82% 24%, rgba(4,58,175,.68), transparent 38%), linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px); background-size: auto, 72px 72px, 72px 72px; content: ""; }
.network-showcase-copy, .network-showcase-data { position: relative; z-index: 1; }
.network-showcase-copy > p:not(.eyebrow) { max-width: 620px; margin: 30px 0 36px; color: rgba(255,255,255,.66); font-size: 17px; line-height: 1.75; }
.network-showcase-copy h2 em { color: var(--green-500); }
.network-showcase-data { display: grid; grid-template-columns: repeat(3,1fr); align-items: end; min-height: 510px; border: 1px solid rgba(255,255,255,.15); background: rgba(1,13,36,.46); }
.network-showcase-data article { min-height: 152px; display: flex; flex-direction: column; justify-content: flex-end; gap: 7px; padding: 24px; border-top: 1px solid rgba(255,255,255,.15); border-right: 1px solid rgba(255,255,255,.15); }
.network-showcase-data article:last-child { border-right: 0; }
.network-showcase-data strong { font-size: clamp(1.45rem,2vw,2.1rem); font-weight: 500; }
.network-showcase-data article span { color: rgba(255,255,255,.55); font-size: 12px; text-transform: uppercase; letter-spacing: .08em; }
.network-radar { position: absolute; top: 9%; left: 50%; width: min(310px,62%); aspect-ratio: 1; border: 1px solid rgba(34,216,31,.32); border-radius: 50%; transform: translateX(-50%); }
.network-radar::before, .network-radar::after, .network-radar span { position: absolute; inset: 14%; border: 1px dashed rgba(34,216,31,.22); border-radius: 50%; content: ""; }
.network-radar::after { inset: 31%; }
.network-radar span:first-child { inset: 50% -16%; height: 1px; border: 0; border-top: 1px solid rgba(34,216,31,.18); border-radius: 0; }
.network-radar span:nth-child(2) { inset: -16% 50%; width: 1px; border: 0; border-left: 1px solid rgba(34,216,31,.18); border-radius: 0; }
.network-radar svg { position: absolute; top: 50%; left: 50%; width: 52px; height: 52px; padding: 14px; color: var(--ink); background: var(--green-500); border-radius: 50%; transform: translate(-50%,-50%); box-shadow: 0 0 0 12px rgba(34,216,31,.1); }

.cta { position: relative; min-height: 590px; display: grid; place-items: center; overflow: hidden; color: white; background: var(--orange); text-align: center; }
.cta::before, .cta::after { content: ""; position: absolute; width: 470px; height: 470px; border: 1px solid rgba(255,255,255,.17); border-radius: 50%; }.cta::before { left: -190px; top: -220px; }.cta::after { right: -200px; bottom: -260px; }
.cta-pattern { opacity: .1; mask-image: none; }
.cta-pattern { animation: pattern-drift 18s linear infinite; }
.cta-content.visible > * { animation: child-rise .65s var(--motion-ease) both; }
.cta-content.visible > :nth-child(2) { animation-delay: .08s; }.cta-content.visible > :nth-child(3) { animation-delay: .16s; }.cta-content.visible > :nth-child(4) { animation-delay: .24s; }
.cta-content { z-index: 2; }.cta .eyebrow { justify-content: center; white-space: normal; text-align: center; }.cta h2 { margin-bottom: 27px; font-size: clamp(52px,7vw,94px); font-weight: 300; line-height: .98; letter-spacing: -.05em; }.cta p:not(.eyebrow) { margin-bottom: 35px; color: rgba(255,255,255,.78); font-size: 17px; }
footer { min-height: 230px; display: grid; grid-template-columns: 1fr 1.2fr auto; grid-template-rows: 1fr auto; align-items: center; gap: 20px; padding: 50px var(--page-gutter) 30px; color: rgba(255,255,255,.62); background: var(--navy-deep); font-size: 12px; }
.brand-light { width: 174px; height: 38px; color: white; }.brand-light .brand-logo { width: 174px; }footer > p:not(.copyright) { margin: 0; font-size: 22px; line-height: 1.3; }.footer-links { display: flex; gap: 28px; color: white; font-size: 12px; font-weight: 700; }.footer-links a { position: relative; transition: color .2s ease; }.footer-links a::after { content: ""; position: absolute; right: 0; bottom: -5px; left: 0; height: 1px; background: var(--orange); transform: scaleX(0); transform-origin: right; transition: transform .22s ease; }.footer-links a:hover::after, .footer-links a:focus-visible::after { transform: scaleX(1); transform-origin: left; }.copyright { grid-column: 1/-1; margin: 0; padding-top: 25px; border-top: 1px solid rgba(255,255,255,.1); }

.back-to-top { position: fixed; z-index: 20; right: 24px; bottom: 24px; width: 48px; height: 48px; display: grid; place-items: center; padding: 0; color: var(--white); background: var(--navy); border: 1px solid rgba(255,255,255,.18); border-radius: 50%; box-shadow: 0 14px 34px rgba(1,13,36,.28); opacity: 0; visibility: hidden; transform: translateY(12px); cursor: pointer; transition: opacity .25s ease, visibility .25s ease, transform .25s var(--motion-ease), color .2s ease, background .2s ease; }
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { color: var(--ink); background: var(--orange); }
.back-to-top:focus-visible { outline: 3px solid rgba(var(--green-500-rgb),.4); outline-offset: 3px; }
.back-to-top svg { width: 19px; height: 19px; }

body.dialog-open { overflow: hidden; }
body.mobile-menu-open { overflow: hidden; }
.contact-dialog { width: min(680px, calc(100vw - 32px)); max-height: calc(100dvh - 32px); padding: 48px; overflow-y: auto; color: var(--ink); background: var(--paper); border: 1px solid rgba(1,13,36,.1); border-radius: 8px; box-shadow: 0 32px 110px rgba(1,13,36,.42); }
.contact-dialog::backdrop { background: rgba(1,13,36,.76); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); }
.contact-dialog[open] { animation: dialog-in .28s var(--motion-ease); }
.contact-dialog[open]::backdrop { animation: dialog-backdrop-in .25s ease both; }
.dialog-close { position: absolute; z-index: 2; top: 16px; right: 16px; width: 40px; height: 40px; display: grid; place-items: center; padding: 0; color: var(--ink); background: transparent; border: 1px solid var(--line); border-radius: 50%; cursor: pointer; transition: color .2s ease, background .2s ease, transform .2s var(--motion-ease); }
.dialog-close:hover { color: var(--white); background: var(--navy); transform: rotate(6deg); }
.dialog-close svg { width: 18px; height: 18px; }
.contact-dialog .eyebrow { margin-bottom: 18px; }
.contact-dialog h2 { max-width: 560px; margin-bottom: 16px; font-size: clamp(38px,4vw,54px); line-height: 1.02; }
.dialog-copy { max-width: 560px; margin-bottom: 30px; color: var(--muted); font-size: 15px; line-height: 1.7; }
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-form label { min-width: 0; display: grid; align-content: start; gap: 8px; color: var(--ink); font-size: 12px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; color: var(--ink); background: var(--white); border: 1px solid var(--line); border-radius: 4px; outline: 0; font: inherit; font-size: 14px; font-weight: 500; letter-spacing: 0; text-transform: none; transition: border-color .2s ease, box-shadow .2s ease, background .2s ease; }
.contact-form input, .contact-form select { height: 52px; padding: 0 14px; }
.contact-form textarea { min-height: 112px; padding: 13px 14px; resize: vertical; line-height: 1.5; }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: rgba(29,53,55,.58); font-weight: 400; }
.contact-form select:invalid { color: rgba(29,53,55,.68); font-weight: 400; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { background: var(--white); border-color: var(--green-600); box-shadow: 0 0 0 3px rgba(var(--green-500-rgb),.14); }
.form-field-wide, .form-submit { grid-column: 1 / -1; }
.form-submit { width: max-content; margin-top: 6px; }
.form-success { padding: 34px 0 20px; text-align: center; }
.form-success > span { width: 72px; height: 72px; display: grid; place-items: center; margin: 0 auto 28px; color: var(--ink); background: var(--orange); border-radius: 50%; box-shadow: 0 0 0 14px rgba(var(--green-500-rgb),.1); }
.form-success > span svg { width: 30px; height: 30px; stroke-width: 2.4; }
.form-success .eyebrow { justify-content: center; }
.form-success h2 { margin-inline: auto; }
.form-success > p:not(.eyebrow) { max-width: 480px; margin: 0 auto 30px; color: var(--muted); font-size: 15px; line-height: 1.7; }
.form-success .button { margin-inline: auto; }
[hidden] { display: none !important; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.7,.2,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }.delay-1 { transition-delay: .12s; }.delay-2 { transition-delay: .22s; }.delay-3 { transition-delay: .32s; }
@keyframes hero-in { from { opacity: 0; transform: scale(1.08); } to { opacity: 1; transform: scale(1.02); } }
@keyframes dialog-in { from { opacity: 0; transform: translateY(22px) scale(.98); } }
@keyframes dialog-backdrop-in { from { opacity: 0; } }
@keyframes panel-item-in { to { opacity: 1; transform: translateY(0); } }
@keyframes chart-draw { to { stroke-dashoffset: 0; } }
@keyframes orbit-ring-rotate { to { transform: rotate(360deg); } }
@keyframes orbit-eccentric-one { 0%, 100% { transform: translate(-50%,-50%); } 35% { transform: translate(-43%,-55%); } 70% { transform: translate(-54%,-44%); } }
@keyframes orbit-eccentric-two { 0%, 100% { transform: translate(-50%,-50%); } 32% { transform: translate(-54%,-46%); } 68% { transform: translate(-46%,-54%); } }
@keyframes orbit-eccentric-three { 0%, 100% { transform: translate(-50%,-50%); } 38% { transform: translate(-47%,-53%); } 72% { transform: translate(-53%,-47%); } }
@keyframes core-glow { 50% { box-shadow: 0 0 0 22px rgba(var(--green-500-rgb),.07), 0 24px 68px rgba(0,0,0,.3); } }
@keyframes node-float { 50% { transform: translateY(-7px); } }
@keyframes badge-float { 50% { transform: translateY(-8px); } }
@keyframes child-rise { from { opacity: 0; transform: translateY(14px); } }
@keyframes intelligence-ring { 0%, 100% { transform: translate(-50%,-50%); } 34% { transform: translate(-47%,-53%); } 68% { transform: translate(-53%,-47%); } }
@keyframes intelligence-ring-middle { 0%, 100% { transform: translate(0); } 38% { transform: translate(-18px, 13px); } 72% { transform: translate(14px, -16px); } }
@keyframes intelligence-ring-inner { 0%, 100% { transform: translate(0); } 32% { transform: translate(16px, 12px); } 66% { transform: translate(-13px, -15px); } }
@keyframes ai-glow { 50% { box-shadow: 0 18px 75px rgba(var(--green-500-rgb),.48), 0 0 0 18px rgba(var(--green-500-rgb),.07); } }
@keyframes card-float { 50% { transform: translateY(-9px); } }
@keyframes pattern-drift { to { background-position: 72px 72px; } }
@keyframes contour-tail {
  0%, 8% { stroke-dashoffset: var(--tail-start); opacity: 0; }
  13% { opacity: var(--tail-opacity); }
  49% { opacity: var(--tail-opacity); }
  53.5% { opacity: calc(var(--tail-opacity) * .66); }
  58% { opacity: calc(var(--tail-opacity) * .33); }
  62% { opacity: 0; }
  64% { stroke-dashoffset: var(--tail-end); opacity: 0; }
  74%, 100% { stroke-dashoffset: calc(var(--tail-end) - 150); opacity: 0; }
}

@media (min-width: 1101px) {
  .hero-content, .hero-content.reveal, .hero-content.reveal.visible { top: auto; bottom: 20%; }
  .hero-content { transform: none; }
  .hero-content.reveal { transform: translateY(28px); }
  .hero-content.reveal.visible { transform: none; }
  .live-panel { bottom: 20%; }
}

@media (max-width: 1100px) {
  .hero-content { width: 63vw; }.live-panel { width: 340px; right: 4vw; bottom: 10%; }.platform-layout { grid-template-columns: 1fr; }.feature-rail { display: grid; grid-template-columns: repeat(4,1fr); }.feature-tab { grid-template-columns: 24px 1fr; }.feature-tab svg, .feature-tab small { display: none; }.journey { grid-template-columns: 1fr 1.25fr; }.orbit-three { width: 430px; height: 430px; }.outcome-card { padding: 22px; }
  .network-showcase { grid-template-columns: 1fr; gap: 72px; }
  .network-showcase-data { width: 100%; max-width: 760px; }
}

@media (max-width: 800px) {
  .site-header { grid-template-columns: 1fr auto auto; gap: 12px; padding: 0 22px; }.site-header .brand { width: 160px; height: 35px; }.site-header .brand-logo { width: 160px; }.desktop-nav, .site-header > .button { display: none; }.language-switcher { justify-self: end; }.menu-button { display: grid; place-items: center; color: inherit; }.menu-button svg { transition: transform .3s var(--motion-ease); }.site-header.menu-open .menu-button svg { transform: rotate(90deg); }.site-header.menu-open { top: 34px; height: calc(100dvh - 34px); min-height: calc(100dvh - 34px); display: block; padding: 0; overflow-y: auto; color: var(--ink); background: var(--paper); }.site-header.menu-open .brand { display: none; }.site-header.menu-open .language-switcher { position: absolute; z-index: 2; top: 25px; left: 22px; }.site-header.menu-open .menu-button { position: absolute; z-index: 2; top: 18px; right: 18px; width: 42px; height: 42px; padding: 0; }.site-header.menu-open .desktop-nav { min-height: 100%; display: flex; flex-direction: column; justify-content: center; gap: 0; width: 100%; padding: clamp(112px,18vh,160px) 22px clamp(64px,10vh,96px); font-size: clamp(28px,8vw,42px); font-weight: 500; }.site-header.menu-open .desktop-nav a { padding: clamp(17px,3.5vh,28px) 0; border-bottom: 1px solid var(--line); line-height: 1.1; animation: child-rise .38s var(--motion-ease) both; }.site-header.menu-open .desktop-nav a:first-child { border-top: 1px solid var(--line); }.site-header.menu-open .desktop-nav a:nth-child(2) { animation-delay: .05s; }.site-header.menu-open .desktop-nav a:nth-child(3) { animation-delay: .1s; }.site-header.menu-open .desktop-nav a:nth-child(4) { animation-delay: .15s; }.site-header.menu-open .desktop-nav .nav-external { margin: 14px 0 0; padding-left: 0; border-top: 1px solid rgba(1,13,36,.34); }.site-header.menu-open .desktop-nav .nav-external::before { display: none; }
  .hero { min-height: 760px; height: 100svh; }.hero-backdrop { background-position: center; }.hero-shade { background: linear-gradient(90deg, rgba(1,13,36,.93), rgba(1,13,36,.5)); }.hero-scan { opacity: .82; }.hero-scan svg { width: 100%; height: 100%; transform: none; }.hero-content { top: 42%; left: 7vw; width: 86vw; }.hero-content h1 { font-size: clamp(48px,15vw,65px); }.hero-copy { font-size: 16px; }.live-panel { right: 7vw; bottom: 7%; width: 86vw; padding: 17px; }.live-panel.reveal { transform: translateY(28px) scale(1); }.live-panel.reveal.visible { transform: translateY(0) scale(1); }.sparkline { display: none; }.power-reading { margin-bottom: 20px; }.hero-bottom { display: none; }
  .signal-strip { grid-template-columns: 1fr 1fr; padding: 0; }.signal-strip div { min-width: 0; min-height: 58px; border-bottom: 1px solid rgba(255,255,255,.23); text-align: center; font-size: 14px; }
  .section { padding: 90px 7vw; }.section-intro { grid-template-columns: 1fr; gap: 28px; margin-bottom: 50px; }h2 { font-size: 45px; }.platform-layout { gap: 30px; }.feature-rail { grid-template-columns: 1fr 1fr; }.dashboard-shell { min-height: 420px; grid-template-columns: 44px 1fr; border-width: 4px; }.dash-sidebar { gap: 25px; }.dash-content { padding: 18px 14px; }.dash-kpis { grid-template-columns: 1fr 1fr; }.dash-kpis > div:nth-child(2) { display: none; }.dash-grid { grid-template-columns: 1fr; }.status-card { display: none; }.chart-card { min-height: 220px; }
  .journey { min-height: 900px; grid-template-columns: 1fr; gap: 30px; }.orbit-system { min-height: 460px; }.orbit-three { width: min(430px, 96vw); height: min(430px, 96vw); }.orbit-two { width: 310px; height: 310px; }.orbit-node { min-width: 82px; padding: 8px 10px; }.node-two { right: -10px; }.node-five { left: -10px; }
  .operations { grid-template-columns: 1fr; }.photo-frame { min-height: 430px; order: 2; }.charge-badge { right: -10px; }.operations-copy { order: 1; }.intelligence .section-intro { margin-bottom: 50px; }.ai-stage { min-height: 590px; }.ai-rings { width: 350px; height: 350px; }.ai-core { width: 140px; height: 140px; }.insight-card { width: 160px; }.insight-one { left: 3%; top: 6%; }.insight-two { right: 3%; top: 6%; }.insight-three { left: 3%; bottom: 6%; }.insight-four { right: 3%; bottom: 6%; }
  .outcome-grid { grid-template-columns: 1fr 1fr; }.outcome-card { min-height: 340px; }footer { grid-template-columns: 1fr; grid-template-rows: auto; gap: 24px; }footer > * { min-width: 0; }.footer-links { max-width: 100%; flex-wrap: wrap; }.copyright { grid-column: auto; width: 100%; }
}

@media (max-width: 520px) {
  .version-ribbon { padding-inline: 14px; font-size: 10px; }
  .contact-dialog { width: calc(100vw - 24px); max-height: calc(100dvh - 24px); padding: 38px 20px 24px; }.contact-dialog h2 { font-size: 38px; }.contact-form { grid-template-columns: 1fr; }.form-field-wide, .form-submit { grid-column: auto; }.form-submit { width: 100%; }
  .site-header .brand { width: 150px; height: 32px; }.site-header .brand-logo { width: 150px; }.hero { min-height: 1080px; height: auto; }.hero-content, .hero-content.reveal, .hero-content.reveal.visible { top: 150px; transform: none; }.hero-actions { align-items: flex-start; flex-direction: column; gap: 17px; }.live-panel { bottom: 45px; }.panel-metrics div { padding-left: 7px; }.panel-metrics b { font-size: 13px; }
  .section { padding: 78px 6vw; }h2 { font-size: 45px; }.eyebrow { margin-bottom: 18px; }.feature-rail { display: block; }.dashboard-shell { margin: 0 -2vw; }.dash-head > span { display: none; }.dash-kpis b { font-size: 16px; }
  .journey { min-height: 860px; }.orbit-system { transform: scale(.88); margin: -20px -6vw; }.orbit-node { font-size: 14px; }.node-one { left: 39%; }.outcome-grid { grid-template-columns: 1fr; }.outcome-card { min-height: 320px; }.outcome-card p { min-height: 45px; }.ai-stage { min-height: 640px; margin: 0 -2vw; }.ai-rings { width: 300px; height: 300px; }.ai-rings::before { inset: 40px; }.ai-rings::after { inset: 90px; }.insight-card { width: 142px; padding: 10px; grid-template-columns: 29px 1fr; }.insight-card svg { width: 29px; height: 29px; padding: 7px; }.insight-card b { font-size: 14px; }.cta { min-height: 520px; padding: 50px 6vw; }.cta h2 { font-size: 53px; }
  .network-showcase { min-height: 0; padding-block: 86px; }
  .network-showcase .eyebrow { white-space: normal; }
  .network-showcase-data { grid-template-columns: 1fr; min-height: 620px; padding-top: 330px; }
  .network-showcase-data article { min-height: 96px; border-right: 0; }
  .network-radar { top: 7%; width: 260px; }
}

@media (min-width: 1920px) {
  :root { --page-gutter: calc((100vw - 1920px) / 2 + 153.6px); }
  .back-to-top { right: calc((100vw - 1920px) / 2 + 24px); }
  .section-intro, .operations { gap: 172.8px; }
  .platform-layout { gap: 96px; }
  .journey { gap: 153.6px; }
}

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