:root {
  color-scheme: dark;
  --bg: #020917;
  --bg-2: #06152e;
  --bg-3: #092146;
  --surface: rgba(8, 25, 54, .68);
  --surface-solid: #081a38;
  --surface-soft: rgba(18, 49, 93, .48);
  --glass: rgba(8, 29, 62, .58);
  --line: rgba(132, 192, 255, .17);
  --line-strong: rgba(117, 218, 255, .42);
  --text: #f5f9ff;
  --text-soft: #bdd2eb;
  --muted: #7993b5;
  --blue: #3698ff;
  --blue-deep: #1256dc;
  --cyan: #62e8ff;
  --violet: #8a79ff;
  --ice: #ddf8ff;
  --orange: #ff9d18;
  --green: #69e6bd;
  --danger: #ff8b9b;
  --shadow: 0 34px 100px rgba(0, 5, 22, .52);
  --header: rgba(3, 14, 34, .72);
  --grid: rgba(105, 180, 255, .045);
  --shell: min(1240px, calc(100% - 48px));
  --radius: 28px;
  --ease: cubic-bezier(.2, .8, .2, 1);
}

html[data-theme="light"] {
  color-scheme: light;
  --bg: #f2f8ff;
  --bg-2: #e7f3ff;
  --bg-3: #d5eaff;
  --surface: rgba(255, 255, 255, .76);
  --surface-solid: #ffffff;
  --surface-soft: rgba(215, 237, 255, .58);
  --glass: rgba(255, 255, 255, .65);
  --line: rgba(24, 96, 172, .14);
  --line-strong: rgba(12, 110, 202, .35);
  --text: #061a35;
  --text-soft: #2d5178;
  --muted: #6783a0;
  --blue: #0876e8;
  --blue-deep: #064bb1;
  --cyan: #078da9;
  --violet: #6454df;
  --ice: #0c5279;
  --orange: #dd7200;
  --green: #097457;
  --danger: #be3752;
  --shadow: 0 34px 90px rgba(30, 85, 135, .16);
  --header: rgba(245, 251, 255, .78);
  --grid: rgba(17, 93, 169, .055);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 108px; overflow-x: hidden; }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 48% -10%, rgba(27, 113, 255, .23), transparent 35rem),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 48%, var(--bg) 100%);
  font: 500 15px/1.7 "Segoe UI Variable Text", "Segoe UI", Inter, Arial, sans-serif;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -5;
  pointer-events: none;
  background-image: linear-gradient(var(--grid) 1px, transparent 1px), linear-gradient(90deg, var(--grid) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, #000, transparent 78%);
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -4;
  opacity: .22;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.13'/%3E%3C/svg%3E");
}

img { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, p { margin-top: 0; }
:focus-visible { outline: 3px solid var(--cyan); outline-offset: 4px; }
::selection { color: #fff; background: #246fff; }

.sr-only { position: absolute; width: 1px; height: 1px; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
.skip-link { position: fixed; z-index: 999; top: 12px; left: 12px; padding: 10px 16px; color: var(--bg); background: var(--text); border-radius: 10px; transform: translateY(-160%); }
.skip-link:focus { transform: translateY(0); }
.section-shell { width: var(--shell); margin-inline: auto; }

.ambient { position: fixed; inset: 0; z-index: -3; overflow: hidden; pointer-events: none; }
.ambient i { position: absolute; border-radius: 50%; filter: blur(95px); opacity: .16; }
.ambient i:nth-child(1) { width: 42vw; height: 42vw; top: 10%; right: -20%; background: #1d7dff; animation: ambientFloat 16s ease-in-out infinite; }
.ambient i:nth-child(2) { width: 36vw; height: 36vw; top: 48%; left: -18%; background: #2547ff; animation: ambientFloat 19s ease-in-out -7s infinite; }
.ambient i:nth-child(3) { width: 26vw; height: 26vw; bottom: -15%; right: 28%; background: #00c8ff; animation: ambientFloat 18s ease-in-out -3s infinite; }
.cursor-glow { position: fixed; z-index: -2; width: 440px; height: 440px; border-radius: 50%; pointer-events: none; opacity: .13; transform: translate(-50%,-50%); background: radial-gradient(circle, rgba(63, 179, 255, .78), transparent 68%); transition: opacity .25s ease; }

.site-header {
  width: min(1320px, calc(100% - 32px));
  height: 74px;
  margin: 14px auto 0;
  padding: 0 16px 0 11px;
  position: sticky;
  top: 12px;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--header);
  box-shadow: 0 14px 45px rgba(0, 8, 28, .18);
  backdrop-filter: blur(24px) saturate(1.3);
  transition: border-color .25s ease, background .25s ease;
}
.site-header.is-scrolled { border-color: var(--line-strong); }
.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand-logo { width: 50px; height: 50px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 16px; background: radial-gradient(circle, rgba(66, 193, 255, .14), transparent 68%); }
.brand-logo img { width: 43px; height: 43px; object-fit: contain; }
.brand-copy { display: grid; gap: 2px; }
.brand-copy strong { font: 800 22px/1 "Segoe UI Variable Display", "Segoe UI", sans-serif; letter-spacing: .045em; }
.brand-copy small { color: var(--muted); font-size: 8px; font-weight: 800; letter-spacing: .2em; }
.desktop-nav { justify-self: center; display: flex; gap: 34px; }
.desktop-nav a { position: relative; color: var(--text-soft); font-size: 13px; font-weight: 700; }
.desktop-nav a::before { content: ""; position: absolute; left: 0; right: 100%; bottom: -10px; height: 2px; border-radius: 3px; background: linear-gradient(90deg, var(--blue), var(--cyan)); transition: right .25s var(--ease); }
.desktop-nav a:hover::before, .desktop-nav a:focus-visible::before { right: 0; }
.product-dropdown { position: relative; }
.product-dropdown > button { display: flex; align-items: center; gap: 7px; padding: 0; color: var(--text-soft); border: 0; background: transparent; font: inherit; font-size: 13px; font-weight: 700; cursor: pointer; }
.product-dropdown > button span { color: var(--cyan); transition: transform .2s ease; }
.product-dropdown > button[aria-expanded="true"] span { transform: rotate(180deg); }
.products-popover { position: absolute; z-index: 40; top: calc(100% + 22px); left: 50%; width: 310px; padding: 10px; transform: translateX(-50%); border: 1px solid var(--line-strong); border-radius: 18px; background: var(--header); box-shadow: var(--shadow); backdrop-filter: blur(24px); }
.products-popover:not([hidden]) { display: grid; }
.products-popover a { display: grid; grid-template-columns: 34px 1fr; gap: 1px 10px; padding: 10px; border-radius: 12px; }
.products-popover a::before { display: none; }
.products-popover a:hover { background: var(--surface-soft); }
.products-popover b { grid-column: 1; grid-row: 1 / 3; align-self: center; color: var(--cyan); font-size: 10px; }
.products-popover strong { color: var(--text); font-size: 12px; }
.products-popover small { color: var(--muted); font-size: 9px; }
.mobile-products { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 4px; padding: 6px; border-block: 1px solid var(--line); }
.mobile-products a { display: grid !important; min-width: 0; }
.mobile-products a strong { color: var(--text); font-size: 11px; }
.mobile-products a small { overflow: hidden; color: var(--muted); font-size: 8px; text-overflow: ellipsis; white-space: nowrap; }
.header-actions { display: flex; align-items: center; gap: 8px; }
.language-link, .round-button, .menu-button { min-width: 44px; height: 44px; display: grid; place-items: center; padding: 0; cursor: pointer; border: 1px solid var(--line); border-radius: 13px; background: var(--surface-soft); }
.language-link { font-size: 11px; font-weight: 850; letter-spacing: .08em; }
.language-link:hover, .round-button:hover { border-color: var(--line-strong); background: var(--surface-solid); }
.round-button { appearance: none; }
.theme-symbol { width: 18px; height: 18px; position: relative; border: 2px solid var(--text); border-radius: 50%; }
.theme-symbol::before { content: ""; position: absolute; inset: 2px 2px 2px 50%; border-radius: 0 9px 9px 0; background: var(--text); }
.menu-button { display: none; gap: 6px; }
.menu-button i { width: 19px; height: 2px; display: block; border-radius: 2px; background: var(--text); transition: transform .2s ease; }
.mobile-menu { display: none; }

.hero { min-height: 800px; padding: 98px 0 86px; display: grid; grid-template-columns: minmax(440px, .89fr) minmax(540px, 1.11fr); gap: 60px; align-items: center; }
.eyebrow, .section-index { color: var(--cyan); font-size: 11px; font-weight: 800; line-height: 1.4; letter-spacing: .16em; }
.eyebrow { display: flex; align-items: center; gap: 11px; margin-bottom: 24px; }
.signal-dot { width: 9px; height: 9px; position: relative; display: inline-block; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 20px var(--cyan); }
.signal-dot::after { content: ""; position: absolute; inset: -6px; border: 1px solid var(--cyan); border-radius: inherit; animation: signal 2.2s ease-out infinite; }
.hero h1 { max-width: 650px; margin-bottom: 28px; font: 760 clamp(54px, 5.2vw, 82px)/.94 "Segoe UI Variable Display", "Segoe UI", sans-serif; letter-spacing: -.06em; }
.hero h1 em, .section-heading h2 em, .simple-copy h2 em { color: transparent; font-style: normal; background: linear-gradient(105deg, #84f2ff 0%, #3b9cff 44%, #8e7dff 100%); background-clip: text; -webkit-background-clip: text; }
html[data-theme="light"] .hero h1 em, html[data-theme="light"] .section-heading h2 em, html[data-theme="light"] .simple-copy h2 em { background-image: linear-gradient(105deg, #057f9d, #086bd5 52%, #5d49cf); }
.hero-lede { max-width: 620px; margin-bottom: 32px; color: var(--text-soft); font-size: 17px; line-height: 1.72; }
.hero-actions, .cta-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button { min-height: 52px; display: inline-flex; align-items: center; justify-content: center; gap: 12px; padding: 0 21px; border: 1px solid transparent; border-radius: 15px; font-size: 13px; font-weight: 800; transition: transform .25s var(--ease), border-color .25s ease, box-shadow .25s ease, background .25s ease; }
.button:hover { transform: translateY(-3px); }
.button-primary { color: #fff; background: linear-gradient(115deg, #1969ef, #348ffc 55%, #5b7cff); box-shadow: 0 18px 46px rgba(21, 104, 244, .32), inset 0 1px rgba(255,255,255,.2); }
.button-primary:hover { box-shadow: 0 22px 55px rgba(21, 104, 244, .44); }
.button-ghost { border-color: var(--line); background: var(--surface); backdrop-filter: blur(15px); }
.button-ghost:hover { border-color: var(--line-strong); }
.spark { color: var(--cyan); text-shadow: 0 0 14px var(--cyan); }
.hero-promises { max-width: 600px; margin: 42px 0 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; list-style: none; }
.hero-promises li { display: grid; grid-template-columns: auto 1fr; gap: 11px; padding: 14px; border-top: 1px solid var(--line); }
.hero-promises li > i { color: var(--blue); font-size: 10px; font-style: normal; font-weight: 900; }
.hero-promises li span { display: grid; gap: 4px; }
.hero-promises strong { font-size: 12px; }
.hero-promises small { color: var(--muted); font-size: 10px; line-height: 1.45; }

.current-visual { min-height: 680px; position: relative; isolation: isolate; transform-style: preserve-3d; border: 1px solid var(--line); border-radius: 42px; background: linear-gradient(145deg, rgba(15, 48, 95, .38), rgba(3, 14, 37, .18)); box-shadow: var(--shadow), inset 0 1px rgba(255,255,255,.06); overflow: hidden; }
.current-visual::before { content: ""; position: absolute; inset: 0; z-index: -1; background: radial-gradient(circle at 52% 48%, rgba(57, 145, 255, .14), transparent 34%), linear-gradient(120deg, transparent 48%, rgba(91, 223, 255, .035) 50%, transparent 52%); }
.current-visual::after { content: ""; position: absolute; inset: 1px; z-index: -2; border-radius: inherit; background-image: linear-gradient(rgba(105,180,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(105,180,255,.035) 1px, transparent 1px); background-size: 46px 46px; mask-image: radial-gradient(circle at center, #000 20%, transparent 73%); }
.visual-label { position: absolute; z-index: 4; top: 22px; left: 25px; right: 25px; display: flex; justify-content: space-between; color: var(--muted); font-size: 9px; font-weight: 800; letter-spacing: .15em; }
.visual-label span:first-child { display: flex; align-items: center; gap: 8px; color: var(--cyan); }
.visual-label i { width: 6px; height: 6px; display: inline-block; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 10px var(--cyan); }
.blue-moon { position: absolute; z-index: -1; width: 360px; height: 360px; top: 47%; left: 49%; border-radius: 50%; transform: translate(-50%,-50%); background: radial-gradient(circle at 38% 35%, rgba(170,239,255,.28), rgba(45,115,255,.18) 24%, rgba(23,50,146,.08) 52%, transparent 70%); filter: blur(2px); }
.blue-moon::after { content: ""; position: absolute; inset: 15%; border-radius: inherit; border: 1px solid rgba(129,230,255,.28); box-shadow: 0 0 65px rgba(39,126,255,.32), inset 0 0 55px rgba(84,194,255,.14); }
.current-lines { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
.flow-path { fill: none; stroke: rgba(87, 210, 255, .52); stroke-width: 1.35; stroke-dasharray: 6 12; filter: drop-shadow(0 0 6px rgba(76,197,255,.62)); animation: lineShift 12s linear infinite; }
.path-b { stroke: rgba(92, 129, 255, .5); animation-direction: reverse; }
.path-c { stroke: rgba(124, 102, 255, .42); animation-duration: 15s; }
.flow-particle { fill: var(--cyan); filter: drop-shadow(0 0 9px var(--cyan)); }
.flow-input, .flow-output { position: absolute; z-index: 3; border: 1px solid var(--line); background: var(--glass); box-shadow: 0 16px 36px rgba(0,7,26,.24), inset 0 1px rgba(255,255,255,.06); backdrop-filter: blur(16px); transition: transform .22s ease; }
[data-depth] { translate: var(--parallax-x, 0) var(--parallax-y, 0); transition: translate .22s var(--ease); }
.flow-input { min-width: 116px; padding: 12px 15px; border-radius: 13px; }
.flow-input span { display: block; color: var(--cyan); font-size: 10px; font-weight: 900; letter-spacing: .12em; }
.flow-input small { color: var(--text-soft); font-size: 10px; }
.input-one { top: 14%; left: 7%; }
.input-two { top: 38%; left: 3%; }
.input-three { bottom: 18%; left: 9%; }
.flow-output { min-width: 155px; padding: 11px 13px; display: flex; align-items: center; gap: 11px; border-radius: 15px; }
.flow-output > i { width: 34px; height: 34px; display: grid; place-items: center; flex: 0 0 auto; color: var(--cyan); font-style: normal; border-radius: 10px; background: rgba(48, 146, 255, .14); }
.flow-output span { display: grid; }
.flow-output strong { font-size: 10px; letter-spacing: .09em; }
.flow-output small { color: var(--muted); font-size: 9px; }
.output-one { top: 26%; right: 4%; }
.output-two { top: 50%; right: 2%; }
.output-three { bottom: 16%; right: 7%; }
.flow-core { position: absolute; z-index: 5; top: 49%; left: 49%; width: 210px; height: 210px; display: flex; flex-direction: column; align-items: center; justify-content: center; transform: translate(-50%,-50%); }
.core-logo { width: 118px; height: 118px; display: grid; place-items: center; position: relative; border: 1px solid rgba(112,225,255,.35); border-radius: 36px; background: radial-gradient(circle, rgba(53,162,255,.2), rgba(6,25,64,.65) 68%); box-shadow: 0 0 70px rgba(48,144,255,.34), inset 0 0 35px rgba(77,210,255,.11); transform: rotate(-4deg); }
.core-logo img { width: 100px; height: 100px; object-fit: contain; filter: drop-shadow(0 12px 18px rgba(0,0,0,.3)); }
.core-rings, .core-rings i { position: absolute; inset: 0; border-radius: 50%; }
.core-rings i { border: 1px solid rgba(96,200,255,.16); animation: coreSpin 12s linear infinite; }
.core-rings i:nth-child(1) { inset: 5px; border-style: dashed; }
.core-rings i:nth-child(2) { inset: 25px; border-color: rgba(126,100,255,.22); animation-direction: reverse; animation-duration: 8s; }
.core-rings i:nth-child(3) { inset: 42px; border-color: rgba(120,232,255,.24); animation-duration: 6s; }
.flow-core > span { margin-top: 14px; color: var(--ice); font-size: 10px; font-weight: 900; letter-spacing: .18em; }
.flow-core > small { color: var(--muted); font-size: 8px; font-weight: 800; letter-spacing: .1em; }
.visual-caption { position: absolute; z-index: 5; left: 28px; right: 28px; bottom: 24px; display: flex; justify-content: space-between; gap: 20px; padding-top: 16px; border-top: 1px solid var(--line); font-size: 10px; }
.visual-caption span { color: var(--muted); }
.visual-caption strong { color: var(--text-soft); }

.ticker { overflow: hidden; border-block: 1px solid var(--line); background: rgba(12,41,81,.26); }
.ticker-track { width: max-content; min-height: 62px; display: flex; align-items: center; gap: 26px; padding-left: 26px; color: var(--muted); font-size: 10px; font-weight: 850; letter-spacing: .18em; animation: ticker 26s linear infinite; }
.ticker-track i { color: var(--cyan); font-style: normal; text-shadow: 0 0 12px var(--cyan); }

.missions, .universe { padding: 150px 0 130px; }
.section-heading { max-width: 880px; margin-bottom: 56px; }
.section-index { margin-bottom: 20px; }
.section-heading h2, .simple-copy h2 { margin-bottom: 22px; font: 740 clamp(42px, 5.1vw, 68px)/1.03 "Segoe UI Variable Display", "Segoe UI", sans-serif; letter-spacing: -.052em; }
.section-heading > p:last-child { max-width: 720px; margin-bottom: 0; color: var(--text-soft); font-size: 16px; }
.mission-shell { overflow: hidden; border: 1px solid var(--line); border-radius: 34px; background: linear-gradient(145deg, rgba(12,41,84,.68), rgba(3,15,38,.75)); box-shadow: var(--shadow); }
html[data-theme="light"] .mission-shell { background: linear-gradient(145deg, rgba(255,255,255,.92), rgba(222,239,255,.84)); }
.mission-tabs { display: grid; grid-template-columns: repeat(3, 1fr); border-bottom: 1px solid var(--line); }
.mission-tabs button { min-height: 126px; display: grid; grid-template-columns: auto 1fr; grid-template-rows: auto auto; column-gap: 13px; align-content: center; padding: 20px 24px; text-align: left; cursor: pointer; border: 0; border-right: 1px solid var(--line); background: transparent; transition: background .25s ease; }
.mission-tabs button:last-child { border-right: 0; }
.mission-tabs button > span { grid-row: 1 / 3; color: var(--muted); font-size: 10px; font-weight: 900; }
.mission-tabs button b { font-size: 15px; }
.mission-tabs button small { color: var(--muted); font-size: 10px; line-height: 1.5; }
.mission-tabs button[aria-selected="true"] { background: linear-gradient(125deg, rgba(42,127,255,.18), rgba(75,216,255,.05)); box-shadow: inset 0 -3px var(--cyan); }
.mission-tabs button[aria-selected="true"] > span, .mission-tabs button[aria-selected="true"] b { color: var(--cyan); }
.mission-stage { min-height: 555px; }
.mission-panel { padding: 48px 50px 42px; }
.mission-panel.is-active { animation: panelIn .55s var(--ease); }
.mission-top { display: grid; grid-template-columns: 1.1fr .9fr; gap: 60px; align-items: end; }
.mission-kicker { display: block; margin-bottom: 13px; color: var(--blue); font-size: 9px; font-weight: 900; letter-spacing: .15em; }
.mission-top h3 { margin-bottom: 0; font: 720 clamp(30px, 3.2vw, 46px)/1.06 "Segoe UI Variable Display", "Segoe UI", sans-serif; letter-spacing: -.04em; }
.mission-top p { margin: 0; color: var(--text-soft); }
.journey { position: relative; margin: 62px 0 42px; display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.journey-line { position: absolute; height: 1px; top: 20px; left: 9%; right: 9%; background: linear-gradient(90deg, transparent, var(--blue), var(--cyan), var(--violet), transparent); }
.journey-line i { position: absolute; top: -4px; left: 0; width: 9px; height: 9px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 20px var(--cyan); animation: journeyPulse 4.6s ease-in-out infinite; }
.journey-node { position: relative; z-index: 1; display: grid; justify-items: center; text-align: center; }
.journey-node > span { width: 41px; height: 41px; margin-bottom: 18px; display: grid; place-items: center; border: 1px solid var(--line-strong); border-radius: 50%; color: var(--cyan); background: var(--surface-solid); box-shadow: 0 0 0 7px var(--bg-2), 0 0 30px rgba(47,153,255,.15); font-size: 9px; font-weight: 900; }
html[data-theme="light"] .journey-node > span { box-shadow: 0 0 0 7px #e8f4ff, 0 0 30px rgba(47,153,255,.13); }
.journey-node b { font-size: 12px; }
.journey-node small { max-width: 126px; color: var(--muted); font-size: 9px; line-height: 1.5; }
.mission-result { min-height: 112px; display: grid; grid-template-columns: auto 1fr auto; gap: 18px; align-items: center; padding: 22px; border: 1px solid var(--line); border-radius: 20px; background: linear-gradient(115deg, rgba(30,112,239,.14), rgba(65,220,255,.05)); }
.result-icon { width: 54px; height: 54px; display: grid; place-items: center; color: var(--cyan); border: 1px solid var(--line-strong); border-radius: 17px; background: var(--surface-soft); font-size: 22px; }
.mission-result div { display: grid; }
.mission-result small { color: var(--blue); font-size: 8px; font-weight: 900; letter-spacing: .14em; }
.mission-result strong { font-size: 13px; }
.mission-result p { margin: 0; color: var(--muted); font-size: 10px; }
.rights-note { max-width: 850px; margin: 22px auto 0; display: flex; gap: 12px; align-items: flex-start; justify-content: center; color: var(--muted); font-size: 11px; text-align: center; }
.rights-note span { color: var(--cyan); }
.rights-note strong { color: var(--text-soft); }

.simple { min-height: 810px; padding: 105px 0; display: grid; grid-template-columns: 1.02fr .98fr; gap: 94px; align-items: center; }
.simple-visual { min-height: 610px; position: relative; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 38% 62% 48% 52% / 45% 39% 61% 55%; background: radial-gradient(circle at 50% 45%, rgba(63,171,255,.18), rgba(12,40,91,.2) 38%, transparent 69%); }
.simple-visual::before { content: ""; position: absolute; inset: 8%; border: 1px solid rgba(105,213,255,.13); border-radius: inherit; transform: rotate(-7deg); }
.simple-visual img { position: relative; z-index: 4; width: min(76%, 450px); filter: drop-shadow(0 30px 48px rgba(0,13,45,.46)); animation: companionFloat 5.5s ease-in-out infinite; }
.portal { position: absolute; inset: 15%; border-radius: 50%; }
.portal i { position: absolute; inset: 0; border: 1px solid rgba(77,202,255,.22); border-radius: inherit; animation: coreSpin 18s linear infinite; }
.portal i:nth-child(2) { inset: 9%; border-style: dashed; border-color: rgba(102,104,255,.3); animation-duration: 13s; animation-direction: reverse; }
.portal i:nth-child(3) { inset: 18%; border-width: 2px; border-color: rgba(101,227,255,.14); animation-duration: 9s; }
.portal span { position: absolute; inset: 28%; border-radius: 50%; background: radial-gradient(circle, rgba(76,180,255,.2), transparent 70%); filter: blur(15px); }
.floating-note { position: absolute; z-index: 5; min-width: 142px; padding: 13px 16px; display: grid; border: 1px solid var(--line); border-radius: 15px; background: var(--glass); box-shadow: 0 16px 36px rgba(0,8,30,.22); backdrop-filter: blur(14px); }
.floating-note small { color: var(--cyan); font-size: 8px; font-weight: 900; letter-spacing: .13em; }
.floating-note b { font-size: 12px; }
.note-a { top: 17%; left: -3%; }
.note-b { right: -4%; bottom: 21%; }
.simple-lede { color: var(--text-soft); font-size: 16px; }
.decision-list { margin: 34px 0 0; padding: 0; list-style: none; }
.decision-list li { display: grid; grid-template-columns: 50px 1fr; gap: 18px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.decision-list li > span { width: 42px; height: 42px; display: grid; place-items: center; color: var(--cyan); border: 1px solid var(--line); border-radius: 13px; background: var(--surface-soft); font-size: 9px; font-weight: 900; }
.decision-list strong { font-size: 14px; }
.decision-list p { margin: 3px 0 0; color: var(--muted); font-size: 12px; }

.universe { position: relative; }
.universe::before { content: ""; position: absolute; width: 80vw; height: 70%; z-index: -1; left: 50%; top: 24%; transform: translateX(-50%); border-radius: 50%; background: radial-gradient(ellipse, rgba(34,114,255,.12), transparent 68%); filter: blur(35px); }
.universe-layout { min-height: 660px; display: grid; grid-template-columns: minmax(600px, 1.15fr) minmax(380px, .85fr); gap: 76px; align-items: center; }
.product-orbit { min-height: 620px; position: relative; }
.orbit-rings, .orbit-rings i { position: absolute; border-radius: 50%; }
.orbit-rings { inset: 5% 10%; }
.orbit-rings i { inset: 0; border: 1px solid rgba(100,194,255,.14); }
.orbit-rings i:nth-child(2) { inset: 14%; border-style: dashed; border-color: rgba(104,115,255,.18); animation: coreSpin 28s linear infinite; }
.orbit-rings i:nth-child(3) { inset: 29%; border-color: rgba(91,229,255,.2); }
.orbit-core { position: absolute; z-index: 3; top: 50%; left: 50%; width: 162px; height: 162px; transform: translate(-50%,-50%); display: grid; place-items: center; border: 1px solid var(--line-strong); border-radius: 50%; background: radial-gradient(circle, rgba(48,153,255,.22), rgba(6,22,57,.76)); box-shadow: 0 0 65px rgba(40,125,255,.27), inset 0 0 40px rgba(92,218,255,.09); }
.orbit-core img { width: 90px; height: 90px; object-fit: contain; }
.orbit-core span { position: absolute; bottom: 21px; color: var(--cyan); font-size: 7px; font-weight: 900; letter-spacing: .16em; }
.planet { position: absolute; z-index: 4; width: 138px; min-height: 92px; display: grid; grid-template-columns: auto 1fr; grid-template-rows: auto auto; column-gap: 8px; align-content: center; padding: 13px; text-align: left; cursor: pointer; border: 1px solid var(--line); border-radius: 18px; background: var(--glass); box-shadow: 0 14px 34px rgba(0,8,30,.2); backdrop-filter: blur(16px); transition: transform .3s var(--ease), border-color .3s ease, box-shadow .3s ease, background .3s ease; }
.planet:hover, .planet.is-active { transform: translateY(-6px) scale(1.03); border-color: var(--line-strong); background: var(--surface-solid); box-shadow: 0 20px 45px rgba(20,98,231,.24), 0 0 28px rgba(66,199,255,.08); }
.planet > i { grid-row: 1 / 3; color: var(--blue); font-size: 9px; font-style: normal; font-weight: 900; }
.planet b { font-size: 13px; }
.planet small { color: var(--muted); font-size: 9px; }
.planet-cepify { top: 4%; left: 37%; }
.planet-story { top: 23%; right: 2%; }
.planet-audio { right: 8%; bottom: 14%; }
.planet-video { bottom: 3%; left: 34%; }
.planet-seo { left: 2%; bottom: 16%; }
.planet-post { top: 21%; left: 0; }
.product-detail { position: relative; min-height: 510px; padding: 44px; overflow: hidden; border: 1px solid var(--line); border-radius: 30px; background: linear-gradient(150deg, rgba(18,54,105,.66), rgba(5,18,44,.76)); box-shadow: var(--shadow); }
html[data-theme="light"] .product-detail { background: linear-gradient(150deg, rgba(255,255,255,.94), rgba(219,238,255,.86)); }
.product-detail::after { content: ""; position: absolute; width: 230px; height: 230px; right: -90px; bottom: -100px; border: 1px solid rgba(100,220,255,.15); border-radius: 50%; box-shadow: 0 0 80px rgba(35,124,255,.15); }
.product-detail.is-changing > * { animation: detailIn .42s var(--ease); }
.product-number { display: flex; align-items: baseline; gap: 5px; margin-bottom: 55px; }
.product-number span { color: var(--cyan); font: 750 60px/.8 "Segoe UI Variable Display", "Segoe UI", sans-serif; letter-spacing: -.06em; }
.product-number small { color: var(--muted); font-size: 11px; }
.product-role { margin-bottom: 10px; color: var(--blue); font-size: 9px; font-weight: 900; letter-spacing: .15em; }
.product-detail h3 { margin-bottom: 12px; font: 750 43px/1 "Segoe UI Variable Display", "Segoe UI", sans-serif; letter-spacing: -.045em; }
.product-hook { margin-bottom: 12px; color: var(--text); font-size: 16px; font-weight: 750; }
.product-copy { color: var(--text-soft); font-size: 13px; }
.feature-pills { margin: 25px 0 30px; display: flex; flex-wrap: wrap; gap: 7px; }
.feature-pills span { padding: 8px 10px; color: var(--text-soft); border: 1px solid var(--line); border-radius: 999px; background: var(--surface-soft); font-size: 9px; }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--cyan); font-size: 11px; font-weight: 850; }
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translate(3px,-3px); }

.principles { padding: 110px 0 145px; }
.principle-quote { max-width: 1030px; position: relative; margin-bottom: 75px; padding-left: 68px; }
.quote-mark { position: absolute; top: -42px; left: 0; color: rgba(86,207,255,.25); font: 800 110px/1 Georgia, serif; }
.principle-quote p { font: 650 clamp(31px, 4.1vw, 54px)/1.17 "Segoe UI Variable Display", "Segoe UI", sans-serif; letter-spacing: -.045em; }
.principle-quote strong { color: var(--cyan); }
.principle-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.principle-grid article { min-height: 220px; padding: 28px; border: 1px solid var(--line); border-radius: 24px; background: linear-gradient(145deg, var(--surface), rgba(4,17,42,.28)); }
html[data-theme="light"] .principle-grid article { background: rgba(255,255,255,.7); }
.principle-grid article > span { color: var(--blue); font-size: 9px; font-weight: 900; }
.principle-grid h3 { margin: 46px 0 8px; font-size: 18px; }
.principle-grid p { margin: 0; color: var(--muted); font-size: 12px; }

.final-cta { min-height: 380px; position: relative; isolation: isolate; margin-bottom: 80px; padding: 58px 320px 58px 58px; display: grid; grid-template-columns: 1fr auto; gap: 35px; align-items: end; overflow: hidden; color: #fff; border: 1px solid rgba(142,221,255,.3); border-radius: 36px; background: linear-gradient(125deg, #062f7b, #1069db 52%, #1846b8); box-shadow: 0 35px 100px rgba(8,68,177,.35); }
.final-cta::before { content: ""; position: absolute; inset: 0; z-index: -2; opacity: .32; background-image: linear-gradient(rgba(255,255,255,.09) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.09) 1px, transparent 1px); background-size: 46px 46px; mask-image: linear-gradient(90deg,#000,transparent); }
.cta-rays { position: absolute; z-index: -1; width: 520px; height: 520px; right: -90px; top: -70px; border-radius: 50%; background: repeating-conic-gradient(from 20deg, rgba(96,230,255,.12) 0 3deg, transparent 3deg 17deg); animation: coreSpin 38s linear infinite; }
.cta-copy p { margin-bottom: 14px; color: #a9eefe; font-size: 9px; font-weight: 900; letter-spacing: .17em; }
.cta-copy h2 { margin: 0; font: 740 clamp(35px, 4.5vw, 58px)/1.03 "Segoe UI Variable Display", "Segoe UI", sans-serif; letter-spacing: -.052em; }
.button-light { color: #073269; background: #eafaff; box-shadow: 0 14px 35px rgba(0,29,90,.2); }
.button-outline { color: #fff; border-color: rgba(255,255,255,.3); background: rgba(4,27,81,.18); backdrop-filter: blur(10px); }
.cta-orb { position: absolute; z-index: -1; right: 40px; top: 50%; width: 240px; height: 240px; transform: translateY(-50%); display: grid; place-items: center; border: 1px solid rgba(169,239,255,.27); border-radius: 50%; box-shadow: 0 0 0 28px rgba(128,230,255,.035), 0 0 0 62px rgba(128,230,255,.026); }
.cta-orb::before { content: ""; position: absolute; inset: -12px; border: 1px dashed rgba(159,235,255,.3); border-radius: inherit; animation: coreSpin 17s linear infinite; }
.cta-orb div { width: 142px; height: 142px; display: grid; place-items: center; border-radius: 42px; background: rgba(2,22,67,.48); box-shadow: inset 0 0 35px rgba(97,220,255,.18), 0 0 55px rgba(95,210,255,.23); transform: rotate(-4deg); }
.cta-orb img { width: 116px; filter: drop-shadow(0 15px 24px rgba(0,0,0,.35)); }

.site-footer { min-height: 170px; padding: 42px 0 55px; display: grid; grid-template-columns: auto 1fr auto; gap: 40px; align-items: center; border-top: 1px solid var(--line); }
.footer-brand .brand-logo { width: 45px; height: 45px; }
.footer-brand .brand-logo img { width: 38px; height: 38px; }
.site-footer > p { max-width: 380px; margin: 0; justify-self: center; color: var(--muted); font-size: 11px; }
.site-footer > div { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 17px; color: var(--muted); font-size: 10px; }
.site-footer a:hover { color: var(--cyan); }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@keyframes ambientFloat { 0%,100% { transform: translate3d(0,0,0) scale(1); } 50% { transform: translate3d(3vw,-4vh,0) scale(1.08); } }
@keyframes signal { from { opacity: .65; transform: scale(.5); } to { opacity: 0; transform: scale(1.7); } }
@keyframes coreSpin { to { transform: rotate(360deg); } }
@keyframes lineShift { to { stroke-dashoffset: -180; } }
@keyframes ticker { to { transform: translateX(-50%); } }
@keyframes panelIn { from { opacity: 0; transform: translateY(15px); } to { opacity: 1; transform: translateY(0); } }
@keyframes journeyPulse { 0% { left: 0; } 50%,100% { left: calc(100% - 9px); } }
@keyframes companionFloat { 0%,100% { transform: translateY(0) rotate(-1deg); } 50% { transform: translateY(-18px) rotate(1deg); } }
@keyframes detailIn { from { opacity: .15; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 1160px) {
  .hero { grid-template-columns: .92fr 1.08fr; gap: 34px; }
  .current-visual { min-height: 610px; }
  .flow-input { min-width: 100px; }
  .flow-output { min-width: 140px; }
  .universe-layout { grid-template-columns: minmax(520px, 1fr) minmax(350px, .72fr); gap: 35px; }
  .product-orbit { min-height: 570px; }
  .final-cta { padding-right: 280px; grid-template-columns: 1fr; }
}

@media (max-width: 940px) {
  :root { --shell: min(100% - 36px, 760px); }
  .desktop-nav { display: none; }
  .menu-button { display: grid; }
  .site-header.menu-open { border-radius: 22px 22px 0 0; }
  .site-header.menu-open .menu-button i:first-child { transform: translateY(4px) rotate(45deg); }
  .site-header.menu-open .menu-button i:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }
  .mobile-menu { position: absolute; top: calc(100% + 1px); left: -1px; right: -1px; padding: 12px; gap: 4px; border: 1px solid var(--line); border-top: 0; border-radius: 0 0 22px 22px; background: var(--header); backdrop-filter: blur(24px); }
  .mobile-menu:not([hidden]) { display: grid; }
  .mobile-menu a { padding: 12px 14px; color: var(--text-soft); border-radius: 10px; font-size: 12px; font-weight: 700; }
  .mobile-menu a:hover { background: var(--surface-soft); }
  .hero { padding-top: 85px; grid-template-columns: 1fr; }
  .hero-copy { max-width: 730px; }
  .hero h1 { font-size: clamp(58px, 10vw, 82px); }
  .current-visual { width: min(100%, 700px); min-height: 660px; justify-self: center; }
  .missions, .universe { padding: 115px 0 100px; }
  .mission-tabs { grid-template-columns: 1fr; }
  .mission-tabs button { min-height: 88px; border-right: 0; border-bottom: 1px solid var(--line); }
  .mission-tabs button:last-child { border-bottom: 0; }
  .mission-tabs button[aria-selected="true"] { box-shadow: inset 3px 0 var(--cyan); }
  .simple { grid-template-columns: 1fr; gap: 55px; }
  .simple-visual { width: min(100%, 660px); justify-self: center; order: 2; }
  .simple-copy { order: 1; }
  .universe-layout { grid-template-columns: 1fr; }
  .product-orbit { width: min(100%, 650px); justify-self: center; }
  .product-detail { min-height: auto; }
  .principle-grid { grid-template-columns: 1fr; }
  .principle-grid article { min-height: 165px; }
  .principle-grid h3 { margin-top: 28px; }
  .final-cta { min-height: 500px; padding: 50px 270px 50px 44px; align-content: center; }
  .cta-actions { flex-direction: column; align-items: flex-start; }
  .site-footer { grid-template-columns: 1fr 1fr; }
  .site-footer > p { justify-self: end; text-align: right; }
  .site-footer > div { grid-column: 1 / -1; justify-content: flex-start; }
}

@media (max-width: 680px) {
  :root { --shell: calc(100% - 28px); }
  html { scroll-padding-top: 88px; }
  .site-header { width: calc(100% - 20px); height: 64px; top: 8px; margin-top: 8px; border-radius: 18px; }
  .brand-logo { width: 43px; height: 43px; border-radius: 13px; }
  .brand-logo img { width: 37px; height: 37px; }
  .brand-copy strong { font-size: 18px; }
  .brand-copy small { font-size: 6px; }
  .language-link, .round-button, .menu-button { min-width: 39px; height: 39px; border-radius: 11px; }
  .hero { min-height: 0; padding: 72px 0 60px; }
  .eyebrow { font-size: 8px; letter-spacing: .12em; }
  .hero h1 { margin-bottom: 22px; font-size: clamp(47px, 15vw, 68px); line-height: .98; }
  .hero-lede { font-size: 15px; }
  .hero-actions { display: grid; }
  .button { width: 100%; }
  .hero-promises { grid-template-columns: 1fr; margin-top: 30px; }
  .current-visual { min-height: 540px; border-radius: 28px; }
  .visual-label { top: 17px; left: 18px; right: 18px; }
  .flow-core { width: 170px; height: 170px; }
  .core-logo { width: 100px; height: 100px; border-radius: 30px; }
  .core-logo img { width: 86px; height: 86px; }
  .flow-input { min-width: 88px; padding: 9px 10px; }
  .flow-input small { font-size: 8px; }
  .input-one { top: 17%; left: 3%; }
  .input-two { top: 37%; left: 1%; }
  .input-three { bottom: 22%; left: 4%; }
  .flow-output { min-width: 111px; padding: 8px; gap: 7px; }
  .flow-output > i { width: 27px; height: 27px; border-radius: 8px; }
  .flow-output strong { font-size: 8px; }
  .flow-output small { font-size: 7px; }
  .output-one { top: 28%; right: 1%; }
  .output-two { top: 49%; right: 0; }
  .output-three { bottom: 20%; right: 2%; }
  .visual-caption { left: 18px; right: 18px; bottom: 17px; display: grid; gap: 1px; }
  .ticker-track { min-height: 52px; gap: 20px; }
  .missions, .universe { padding: 88px 0 74px; }
  .section-heading { margin-bottom: 38px; }
  .section-heading h2, .simple-copy h2 { font-size: clamp(38px, 12vw, 52px); }
  .section-heading > p:last-child, .simple-lede { font-size: 14px; }
  .mission-shell { border-radius: 25px; }
  .mission-tabs button { padding: 15px; }
  .mission-panel { padding: 29px 18px 20px; }
  .mission-top { grid-template-columns: 1fr; gap: 16px; }
  .mission-top h3 { font-size: 32px; }
  .mission-top p { font-size: 13px; }
  .journey { margin: 38px 0 30px; grid-template-columns: 1fr; gap: 0; padding-left: 8px; }
  .journey-line { width: 1px; height: auto; top: 24px; bottom: 24px; left: 28px; right: auto; background: linear-gradient(180deg, transparent, var(--blue), var(--cyan), var(--violet), transparent); }
  .journey-line i { left: -4px; top: 0; animation: journeyPulseMobile 4.6s ease-in-out infinite; }
  .journey-node { min-height: 74px; grid-template-columns: 43px 1fr; grid-template-rows: auto auto; column-gap: 16px; justify-items: start; align-content: center; text-align: left; }
  .journey-node > span { grid-row: 1 / 3; width: 41px; height: 41px; margin: 0; box-shadow: 0 0 0 5px var(--bg-2), 0 0 24px rgba(47,153,255,.15); }
  .journey-node small { max-width: none; }
  .mission-result { grid-template-columns: auto 1fr; padding: 15px; }
  .mission-result > p { grid-column: 1 / -1; }
  .result-icon { width: 45px; height: 45px; }
  .rights-note { text-align: left; }
  .simple { min-height: 0; padding: 75px 0; }
  .simple-visual { min-height: 430px; }
  .simple-visual img { width: 82%; }
  .floating-note { min-width: 116px; padding: 10px; }
  .note-a { left: -2%; top: 15%; }
  .note-b { right: -2%; bottom: 13%; }
  .universe-layout { min-height: 0; gap: 35px; }
  .product-orbit { min-height: 590px; }
  .orbit-rings { inset: 9% 1%; }
  .orbit-core { width: 136px; height: 136px; }
  .orbit-core img { width: 74px; }
  .planet { width: 116px; min-height: 80px; padding: 10px; }
  .planet-cepify { top: 2%; left: 33%; }
  .planet-story { top: 22%; right: 0; }
  .planet-audio { right: 3%; bottom: 15%; }
  .planet-video { bottom: 2%; left: 33%; }
  .planet-seo { left: 1%; bottom: 16%; }
  .planet-post { top: 22%; left: 0; }
  .product-detail { padding: 28px 22px; border-radius: 24px; }
  .product-number { margin-bottom: 35px; }
  .product-number span { font-size: 49px; }
  .principles { padding: 65px 0 90px; }
  .principle-quote { margin-bottom: 45px; padding-left: 29px; }
  .quote-mark { left: -10px; font-size: 80px; }
  .principle-quote p { font-size: 30px; }
  .final-cta { min-height: 590px; margin-bottom: 55px; padding: 38px 25px 255px; display: flex; flex-direction: column; justify-content: flex-start; border-radius: 27px; }
  .cta-actions { width: 100%; }
  .cta-orb { width: 190px; height: 190px; top: auto; right: 50%; bottom: 36px; transform: translateX(50%); }
  .cta-orb div { width: 116px; height: 116px; border-radius: 34px; }
  .cta-orb img { width: 98px; }
  .site-footer { grid-template-columns: 1fr; gap: 20px; }
  .site-footer > p { justify-self: start; text-align: left; }
  .site-footer > div { grid-column: auto; }
}

@keyframes journeyPulseMobile { 0% { top: 0; } 50%,100% { top: calc(100% - 9px); } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
  .cursor-glow { display: none; }
}

@media (hover: none), (pointer: coarse) { .cursor-glow { display: none; } }
