:root {
  --navy-950: #030914;
  --navy-900: #06111f;
  --navy-850: #07182a;
  --navy-800: #0a2036;
  --navy-750: #0c2742;
  --blue-500: #168bff;
  --blue-400: #25a9ff;
  --blue-300: #67c5ff;
  --green-500: #83d13b;
  --green-400: #a6e05f;
  --text: #eaf4ff;
  --muted: #93a9bd;
  --border: #174566;
  --border-soft: rgba(55, 144, 202, 0.2);
  --page: 1320px;
  --font-geist-sans: "Segoe UI";
  --font-geist-mono: "Cascadia Mono";
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--navy-950);
  color: var(--text);
  font-family: var(--font-geist-sans), "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
img { display: block; max-width: 100%; }
.site-shell { min-height: 100vh; overflow: hidden; }
.page-width { width: min(calc(100% - 96px), var(--page)); margin-inline: auto; }

.site-header {
  position: relative;
  z-index: 20;
  border-bottom: 1px solid rgba(50, 131, 184, 0.25);
  background: rgba(3, 9, 20, 0.92);
  backdrop-filter: blur(18px);
}
.header-inner { height: 94px; display: flex; align-items: center; justify-content: space-between; }
.brand { width: 390px; padding-right: 40px; border-right: 1px solid rgba(118, 162, 192, 0.28); }
.brand img { width: 100%; height: auto; }
.desktop-nav { display: flex; align-items: stretch; align-self: stretch; gap: 52px; }
.desktop-nav a {
  position: relative;
  display: flex;
  align-items: center;
  color: #c9d6e2;
  font-size: 15px;
  font-weight: 500;
  transition: color 180ms ease;
}
.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  content: "";
  background: var(--blue-400);
  box-shadow: 0 0 16px rgba(37, 169, 255, 0.75);
  transform: scaleX(0);
  transition: transform 180ms ease;
}
.desktop-nav a:hover, .desktop-nav a:focus-visible, .desktop-nav a.active { color: #fff; }
.desktop-nav a:hover::after, .desktop-nav a:focus-visible::after, .desktop-nav a.active::after { transform: scaleX(1); }
.mobile-menu { display: none; position: relative; }
.mobile-menu summary { list-style: none; width: 46px; height: 42px; padding: 10px; cursor: pointer; }
.mobile-menu summary::-webkit-details-marker { display: none; }
.mobile-menu summary span { display: block; height: 2px; margin: 5px 0; background: var(--blue-300); }
.mobile-menu nav {
  position: absolute;
  top: 51px;
  right: 0;
  width: 270px;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #071523;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.5);
}
.mobile-menu nav a { display: block; padding: 13px 14px; border-radius: 8px; color: #cbd8e4; }
.mobile-menu nav a:hover, .mobile-menu nav a.active { background: #0c2742; color: #fff; }

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 47% 53%;
  height: calc(100svh - 94px);
  min-height: calc(100svh - 94px);
  padding-top: 78px;
  padding-bottom: 42px;
}
.hero::before {
  position: absolute;
  z-index: -2;
  top: -160px;
  right: -260px;
  width: 950px;
  height: 950px;
  content: "";
  background: radial-gradient(circle, rgba(15, 118, 211, 0.19), transparent 66%);
}
.hero::after {
  position: absolute;
  z-index: -3;
  inset: 0 -30vw;
  content: "";
  opacity: 0.3;
  background-image:
    linear-gradient(rgba(25, 112, 170, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(25, 112, 170, 0.08) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, transparent, black 18%, black 80%, transparent);
}
.hero-copy { position: relative; z-index: 8; padding-top: 40px; }
.eyebrow {
  margin: 0 0 20px;
  color: var(--blue-300);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.hero h1 { max-width: 690px; margin: 0; color: #f5f9fc; font-size: clamp(49px, 4.25vw, 64px); font-weight: 700; line-height: 1.08; letter-spacing: -0.045em; }
.hero h1 span { display: block; }
.hero-lede { max-width: 570px; margin: 25px 0 0; color: #9fb4c7; font-size: 18px; line-height: 1.65; }
.hero-actions { display: flex; gap: 16px; margin-top: 34px; }
.hero-actions .button { min-height: 62px; padding-inline: 31px; font-size: 16px; }
.button {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 27px;
  border: 1px solid transparent;
  border-radius: 9px;
  font-size: 15px;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}
.button:hover, .button:focus-visible { transform: translateY(-2px); }
.button-primary { background: linear-gradient(180deg, #1998ff, #086bcf); border-color: #60c0ff; box-shadow: 0 0 24px rgba(22, 139, 255, 0.32); color: #fff; }
.button-primary:hover, .button-primary:focus-visible { background: linear-gradient(180deg, #3ca9ff, #0d79e5); box-shadow: 0 0 32px rgba(22, 139, 255, 0.48); }
.button-secondary { border-color: #1b76b6; background: rgba(4, 16, 30, 0.7); color: var(--blue-300); }
.button-secondary:hover, .button-secondary:focus-visible { border-color: var(--blue-400); background: #0b2339; color: #fff; }
.release-note { display: flex; align-items: center; gap: 10px; margin: 20px 0 0; color: #8097aa; font-size: 13px; }
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green-500); box-shadow: 0 0 12px rgba(131, 209, 59, 0.7); }
.proof-row { display: flex; gap: 12px; margin-top: 32px; }
.proof-chip { min-height: 62px; display: flex; align-items: center; gap: 11px; padding: 10px 14px; border: 1px solid var(--border-soft); border-radius: 10px; background: rgba(7, 24, 42, 0.68); color: #c7d5e2; font-size: 13px; }
.proof-mark { width: 34px; height: 34px; display: grid; place-items: center; border: 1px solid #3e7397; border-radius: 50%; color: var(--green-400); font-family: var(--font-geist-mono), monospace; font-weight: 700; }

.hero-visual { position: relative; min-height: 630px; margin-top: -42px; margin-left: 10px; perspective: 1250px; transform-style: preserve-3d; }
.grid-glow { position: absolute; inset: -80px -110px -70px -85px; opacity: 0.85; background: radial-gradient(circle at 55% 43%, rgba(37,169,255,0.17), transparent 54%); }
.market-backdrop-panel {
  position: absolute;
  z-index: 1;
  top: 170px;
  right: -38px;
  bottom: -2px;
  left: 52px;
  overflow: hidden;
  border: 1px solid rgba(39, 125, 184, .66);
  border-radius: 18px;
  background:
    linear-gradient(rgba(35,113,163,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(35,113,163,.08) 1px, transparent 1px),
    linear-gradient(145deg, rgba(7,31,52,.9), rgba(3,14,26,.96));
  background-size: 35px 35px, 35px 35px, auto;
  box-shadow: 0 42px 100px rgba(0,0,0,.54), inset 0 1px rgba(116,202,255,.14), 0 0 34px rgba(24,142,221,.1);
  transform: rotateY(-7deg) rotateX(1.8deg) rotateZ(.4deg) translateZ(-14px);
  transform-origin: 60% 50%;
}
.backdrop-chart { position: absolute; right: -15px; bottom: 16px; width: 95%; height: auto; overflow: visible; filter: drop-shadow(0 0 8px rgba(37,169,255,.28)); }
.chart-stroke { fill: none; stroke: url(#chartLine); stroke-width: 1.8; vector-effect: non-scaling-stroke; }
.chart-glow { fill: none; stroke: #35b4ff; stroke-width: 7; opacity: .13; vector-effect: non-scaling-stroke; }
.chart-stroke, .chart-glow { stroke-linecap: round; stroke-linejoin: round; }
.chart-area { fill: url(#chartFill); }
.corner-light { position: absolute; z-index: 12; display: block; pointer-events: none; }
.corner-light-top { top: -1px; left: -1px; width: 64px; height: 3px; border-radius: 8px; background: linear-gradient(90deg, #c7f1ff, #1ba9ff 32%, transparent); box-shadow: 0 0 7px #43c2ff, 0 0 17px rgba(37,169,255,.92); }
.corner-light-top::before { position: absolute; top: -1px; left: 0; width: 3px; height: 39px; border-radius: 6px; content: ""; background: linear-gradient(#d6f5ff, #1599ed 38%, transparent); box-shadow: 0 0 7px #43c2ff; }
.corner-light-right { right: -1px; bottom: -1px; width: 3px; height: 62px; border-radius: 8px; background: linear-gradient(transparent, #139be9 56%, #d9f6ff); box-shadow: 0 0 7px #43c2ff, 0 0 17px rgba(37,169,255,.9); }
.corner-light-right::before { position: absolute; right: -1px; bottom: 0; width: 54px; height: 3px; border-radius: 6px; content: ""; background: linear-gradient(90deg, transparent, #189fe8 60%, #e0f8ff); box-shadow: 0 0 7px #43c2ff; }
.dashboard-window {
  position: absolute;
  z-index: 4;
  top: 75px;
  left: -6px;
  width: min(63.2%, 500px);
  padding: 23px 22px 20px;
  border: 1px solid #2878ad;
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(11, 39, 64, 0.985), rgba(4, 18, 32, 0.985));
  box-shadow: 0 34px 80px rgba(0,0,0,.54), inset 0 1px rgba(137,215,255,.16), 0 0 32px rgba(22,139,255,.14);
  transform: rotateY(-7deg) rotateX(1.8deg) rotateZ(.4deg) translateZ(30px);
  transform-origin: 62% 46%;
}
.window-topline { display: flex; align-items: start; justify-content: space-between; gap: 20px; padding-bottom: 15px; border-bottom: 1px solid rgba(86,152,196,0.18); }
.window-topline div { display: flex; flex-direction: column; gap: 5px; }
.window-kicker, .demo-label { color: #6fa7cc; font-size: 9px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.window-topline strong { font-size: 20px; letter-spacing: .01em; }
.demo-label { padding: 6px 8px; border: 1px solid rgba(93,157,200,0.24); border-radius: 5px; white-space: nowrap; }
.opportunity-head, .opportunity-row { display: grid; grid-template-columns: 38px 52px minmax(100px, 1fr) 83px 28px; align-items: center; column-gap: 5px; }
.opportunity-head { margin-top: 12px; padding: 0 8px 7px; color: #9bb4c7; font-size: 12px; font-weight: 700; letter-spacing: .035em; text-transform: uppercase; }
.opportunity-head span:nth-child(4) { grid-column: 4 / 6; text-align: right; }
.opportunity-list { display: grid; gap: 6px; }
.opportunity-row { min-height: 47px; padding: 6px 8px; border: 1px solid rgba(61,133,179,0.2); border-radius: 8px; background: rgba(8, 30, 49, 0.78); }
.rank { width: 27px; height: 27px; display: grid; place-items: center; border-radius: 50%; background: linear-gradient(145deg, rgba(131,209,59,.3), rgba(77,125,38,.16)); color: #c5ed93; font-size: 13px; font-weight: 700; box-shadow: inset 0 0 8px rgba(131,209,59,.12); }
.ticker-symbol { color: #f2f7fb; font-size: 13px; }
.company-name { overflow: hidden; color: #c2d0dc; font-size: 12px; text-overflow: ellipsis; white-space: nowrap; }
.score-track { height: 6px; overflow: hidden; border-radius: 20px; background: #142c3d; }
.score-track span { display: block; height: 100%; border-radius: inherit; background: linear-gradient(90deg, #4ca943, #a8db34); box-shadow: 0 0 9px rgba(131,209,59,.38); }
.score-number { color: #f4f8fb; text-align: right; font-size: 13px; }
.opportunities-link { width: 64%; min-height: 34px; display: flex; align-items: center; justify-content: center; margin: 13px 0 0 auto; border: 1px solid #1774b8; border-radius: 5px; color: #69c7ff; font-size: 11px; transition: color 180ms ease, border-color 180ms ease, background 180ms ease; }
.opportunities-link:hover, .opportunities-link:focus-visible { border-color: #55bfff; background: rgba(20,105,164,.18); color: #fff; }
.floating-card { position: absolute; z-index: 6; border: 1px solid #2b78a9; border-radius: 18px; background: linear-gradient(145deg, #0b2945, #061725); box-shadow: 0 28px 70px rgba(0,0,0,.55), inset 0 1px rgba(137,215,255,.15), 0 0 24px rgba(22,139,255,.1); transform: rotateY(-7deg) rotateX(1.8deg) rotateZ(.4deg) translateZ(30px); transform-origin: 62% 46%; }
.score-card { top: 25px; right: -18px; width: 245px; min-height: 270px; padding: 20px; }
.score-card > span, .pulse-card > span { color: #d3e8f7; font-size: 15px; font-weight: 700; letter-spacing: .055em; text-transform: uppercase; }
.pulse-card > span:not(.corner-light) { display: block; padding-left: 16px; }
.score-ring { width: 151px; height: 151px; position: relative; display: flex; flex-direction: column; align-items: center; justify-content: center; margin: 13px auto 8px; border-radius: 50%; background: radial-gradient(circle, #0a1d30 0 62%, transparent 63%), conic-gradient(from 215deg, #98d72f 0 78%, #173247 78% 100%); box-shadow: inset 0 0 18px rgba(0,0,0,.5), 0 0 22px rgba(131,209,59,.12); }
.score-ring strong { font-size: 45px; line-height: 1; }.score-ring small { margin-top: 5px; color: var(--green-400); font-size: 10px; font-weight: 700; text-transform: uppercase; }
.score-card p { margin: 0; color: #91a8ba; font-size: 10px; line-height: 1.55; text-align: center; }
.pulse-card { top: 310px; right: -18px; width: 255px; min-height: 230px; padding: 16px 16px 12px; }
.pulse-chart { position: relative; height: 135px; margin-top: 3px; }
.pulse-arc { position: absolute; z-index: 3; top: 21px; left: 39px; width: 112px; height: 112px; display: flex; flex-direction: column; align-items: center; justify-content: center; border-radius: 50%; background: radial-gradient(circle, #0a2034 0 61%, transparent 62%), conic-gradient(from 210deg, #29a8ff 0 36%, #18384f 36% 82%, transparent 82% 100%); filter: drop-shadow(0 0 7px rgba(37,169,255,.18)); }
.pulse-arc strong { font-size: 25px; line-height: 1; }.pulse-arc small { margin-top: 7px; color: var(--green-400); font-size: 9px; font-weight: 700; text-transform: uppercase; }.pulse-arc em { margin-top: 4px; color: #9cb1c1; font-size: 8px; font-style: normal; }
.candlestick-chart { position: absolute; z-index: 2; inset: 9px 0 2px; display: flex; align-items: end; justify-content: space-between; padding: 0 1px; }
.candlestick-chart i { position: relative; width: 9px; flex: 0 0 9px; border-radius: 1px; box-shadow: 0 0 6px currentColor; }
.candlestick-chart i::before { position: absolute; z-index: -1; top: 50%; left: 50%; width: 2px; height: var(--wick-height); content: ""; background: currentColor; transform: translate(-50%, -50%); }
.candlestick-chart i.up { color: #16d93b; background: #16d93b; }.candlestick-chart i.down { color: #ef2028; background: #ef2028; }
.volume-bars { height: 25px; display: flex; align-items: end; gap: 4px; padding: 0 4px; border-bottom: 1px solid rgba(82,158,207,.22); }
.volume-bars i { flex: 1; min-width: 2px; background: linear-gradient(180deg, #32b780, #166b62); opacity: .58; }
.hero-wave { position: absolute; z-index: 0; right: -74px; bottom: -22px; width: 820px; opacity: .92; filter: drop-shadow(0 0 6px rgba(37,169,255,.4)); transform: rotateX(54deg) rotateZ(-1.5deg); transform-origin: bottom; }
.hero-wave svg { width: 100%; overflow: visible; }.hero-wave path { fill: none; stroke: #1497ed; stroke-width: 1.4; vector-effect: non-scaling-stroke; }

.trust-strip { border-block: 1px solid rgba(40,118,168,.2); background: #06101c; }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.trust-grid p { display: flex; flex-direction: column; gap: 7px; margin: 0; padding: 30px 34px; border-right: 1px solid rgba(53,123,168,.18); }
.trust-grid p:first-child { padding-left: 0; }.trust-grid p:last-child { border: 0; }
.trust-grid strong { font-size: 14px; }.trust-grid span { color: #71899d; font-size: 12px; }

.section { padding-block: 78px; }
.section-heading { max-width: 760px; margin-bottom: 36px; }
.section h2, .final-cta h2 { margin: 0; font-size: clamp(35px, 3vw, 48px); line-height: 1.15; letter-spacing: -.035em; }
.section-heading > p:last-child, .section-copy, .final-cta p { color: var(--muted); font-size: 18px; line-height: 1.7; }
.feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.feature-card { position: relative; min-height: 260px; padding: 34px; border: 1px solid var(--border-soft); border-radius: 14px; background: linear-gradient(145deg, rgba(9,31,51,.88), rgba(5,18,31,.9)); transition: transform 200ms ease, border-color 200ms ease, background 200ms ease; }
.feature-card:hover { transform: translateY(-4px); border-color: rgba(53,166,236,.48); background: linear-gradient(145deg, rgba(12,39,64,.92), rgba(5,20,34,.94)); }
.feature-card.featured { grid-row: span 2; min-height: 538px; background: radial-gradient(circle at 80% 90%, rgba(22,139,255,.14), transparent 45%), linear-gradient(145deg, #0b2945, #061725); }
.card-index { color: var(--blue-300); font-family: var(--font-geist-mono), monospace; font-size: 11px; letter-spacing: .12em; }
.feature-card h3 { margin: 65px 0 16px; font-size: 24px; }.featured h3 { margin-top: 120px; font-size: 31px; }
.feature-card p { max-width: 560px; margin: 0; color: #8da4b8; font-size: 15px; line-height: 1.75; }
.mini-metrics { display: grid; gap: 19px; margin-top: 48px; padding-top: 28px; border-top: 1px solid rgba(67,145,194,.18); }
.mini-metrics span { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 12px; color: #9db2c4; font-size: 12px; }
.mini-metrics span::before { content: ""; grid-column: 1; height: 6px; border-radius: 20px; background: #163044; }
.mini-metrics i { display: none; }
.workflow-section { border-block: 1px solid rgba(40,118,168,.2); background: radial-gradient(circle at 8% 40%, rgba(22,139,255,.1), transparent 34%), #06101c; }
.workflow-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 100px; align-items: start; }
.section-copy { max-width: 520px; }
.text-link { display: inline-flex; gap: 9px; margin-top: 18px; color: var(--blue-300); font-weight: 700; }.text-link:hover { color: #fff; }
.workflow-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--border-soft); }
.workflow-list li { display: grid; grid-template-columns: 70px 1fr; gap: 20px; padding: 24px 0; border-bottom: 1px solid var(--border-soft); }
.workflow-list li > span { color: var(--green-400); font-family: var(--font-geist-mono), monospace; font-size: 12px; }
.workflow-list strong { font-size: 17px; }.workflow-list p { margin: 7px 0 0; color: #829aae; font-size: 14px; line-height: 1.55; }
.final-cta { display: flex; align-items: center; justify-content: space-between; gap: 52px; margin-block: 64px; padding: 44px; border: 1px solid #23638f; border-radius: 16px; background: radial-gradient(circle at 90% 30%, rgba(37,169,255,.16), transparent 35%), linear-gradient(135deg, #0a2946, #061725); box-shadow: 0 30px 80px rgba(0,0,0,.26); }
.final-cta > div:first-child { max-width: 700px; }.final-cta p { margin-bottom: 0; }.final-actions { display: flex; flex-direction: column; gap: 12px; min-width: 215px; }

.site-footer { padding-top: 62px; border-top: 1px solid rgba(45,124,175,.22); background: #020710; }
.footer-grid { display: grid; grid-template-columns: 1.5fr .8fr 1fr; gap: 60px; padding-bottom: 55px; }
.footer-brand img { width: 260px; }.footer-brand p { max-width: 420px; color: #768da1; font-size: 14px; line-height: 1.6; }
.footer-grid > div:not(.footer-brand) { display: flex; flex-direction: column; align-items: flex-start; gap: 13px; }
.footer-grid strong { margin-bottom: 4px; color: #dce8f3; font-size: 14px; }.footer-grid a { color: #8199ad; font-size: 14px; transition: color 180ms ease; }.footer-grid a:hover { color: var(--blue-300); }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; padding-block: 22px; border-top: 1px solid rgba(45,124,175,.15); color: #5e7385; font-size: 12px; }
.footer-bottom p { margin: 0; }.footer-bottom p:last-child { text-align: right; }

.inner-hero {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 72px;
  align-items: center;
  min-height: 500px;
  padding-block: 70px;
}
.inner-hero::before {
  position: absolute;
  z-index: -2;
  inset: 0 -30vw;
  content: "";
  background:
    radial-gradient(circle at 76% 48%, rgba(22,139,255,.14), transparent 30%),
    linear-gradient(rgba(25,112,170,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(25,112,170,.055) 1px, transparent 1px);
  background-size: auto, 52px 52px, 52px 52px;
  mask-image: linear-gradient(to bottom, transparent, black 20%, black 82%, transparent);
}
.inner-hero h1 { max-width: 820px; margin: 0; font-size: clamp(47px, 4.8vw, 50px); line-height: 1.07; letter-spacing: -.05em; }
.inner-hero > div:first-child > p:last-child { max-width: 720px; margin: 28px 0 0; color: #9cb1c3; font-size: 19px; line-height: 1.7; }
.inner-hero-panel { min-height: 280px; display: flex; flex-direction: column; justify-content: center; gap: 18px; padding: 40px; border: 1px solid #1f608c; border-radius: 15px; background: linear-gradient(145deg, rgba(11,41,69,.9), rgba(5,20,34,.92)); box-shadow: 0 30px 80px rgba(0,0,0,.35); }
.inner-hero-panel span { color: #c8d9e6; font-size: 18px; font-weight: 700; }.inner-hero-panel span:nth-of-type(2) { color: var(--blue-300); }.inner-hero-panel span:nth-of-type(3) { color: var(--green-400); }
.inner-hero-panel i { display: block; width: 100%; height: 1px; background: linear-gradient(90deg, #28698f, transparent); }
.content-band { padding-block: 68px; border-block: 1px solid rgba(40,118,168,.2); background: #06101c; }
.story-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; }
.story-grid h2, .requirements-grid h2, .activation-grid h2, .contact-guide h2, .faq-grid h2 { margin: 0; font-size: clamp(35px, 3.2vw, 49px); line-height: 1.15; letter-spacing: -.04em; }
.long-copy { color: #9bb0c2; font-size: 18px; line-height: 1.75; }.long-copy p:first-child { margin-top: 0; }
.principle-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.principle-grid article { min-height: 240px; padding: 28px; border: 1px solid var(--border-soft); border-radius: 13px; background: linear-gradient(145deg, rgba(9,31,51,.9), rgba(5,18,31,.9)); }
.principle-grid span { color: var(--green-400); font-family: var(--font-geist-mono), monospace; font-size: 12px; }.principle-grid h3 { margin: 46px 0 14px; font-size: 22px; }.principle-grid p { margin: 0; color: #849bae; font-size: 16px; line-height: 1.65; }
.product-boundary { background: radial-gradient(circle at 10% 20%, rgba(22,139,255,.1), transparent 32%), #06101c; border-block: 1px solid rgba(40,118,168,.2); }
.boundary-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }.boundary-card { padding: 36px; border: 1px solid rgba(47,112,154,.25); border-radius: 15px; background: rgba(3,13,24,.66); }.boundary-card.positive { border-color: rgba(52,151,211,.4); background: linear-gradient(145deg, rgba(10,42,70,.82), rgba(4,17,30,.83)); }
.boundary-card h2 { font-size: 31px; }.boundary-card ul { display: grid; gap: 13px; margin: 24px 0 0; padding: 0; list-style: none; color: #91a7b9; font-size: 17px; }.boundary-card li { position: relative; padding-left: 25px; line-height: 1.55; }.boundary-card li::before { position: absolute; left: 0; color: var(--green-400); content: "•"; }
.boundary-card:not(.positive) li::before { color: var(--blue-300); }

.download-hero { grid-template-columns: 1.15fr .65fr; }.release-banner { display: flex; align-items: center; gap: 13px; max-width: 510px; margin-top: 26px; padding: 14px 17px; border: 1px solid rgba(131,209,59,.23); border-radius: 10px; background: rgba(36,70,43,.18); }.release-banner div { display: flex; flex-direction: column; gap: 3px; }.release-banner strong { font-size: 14px; }.release-banner small { color: #8ba494; font-size: 13px; }
.installation-card { align-self: center; padding: 30px; border: 1px solid #286c9b; border-radius: 15px; background: linear-gradient(145deg, #0b2945, #061725); box-shadow: 0 30px 80px rgba(0,0,0,.45); text-align: center; }.window-badge { display: inline-block; padding: 6px 8px; border: 1px solid rgba(86,159,206,.26); border-radius: 5px; color: #7ba9c8; font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.window-icon { width: 76px; height: 76px; display: grid; grid-template-columns: 1fr 1fr; gap: 4px; margin: 30px auto 18px; transform: perspective(180px) rotateY(-8deg); }.window-icon i { display: block; background: linear-gradient(145deg, #2aa9ff, #0b68b7); box-shadow: 0 0 14px rgba(37,169,255,.22); }.installation-card h2 { margin: 0; font-size: 27px; }.installation-card p { margin: 9px 0 23px; color: #839bae; font-size: 15px; }.installation-card button, .activation-window button { width: 100%; min-height: 48px; border: 1px solid #28516e; border-radius: 8px; background: #10283a; color: #698093; font-weight: 700; cursor: not-allowed; }
.compact-heading { margin-bottom: 32px; }.installation-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 0; padding: 0; list-style: none; }.installation-steps li { min-height: 230px; padding: 28px; border: 1px solid var(--border-soft); border-radius: 13px; background: #071523; }.installation-steps > li > span { color: var(--green-400); font-family: var(--font-geist-mono), monospace; font-size: 12px; }.installation-steps h3 { margin: 42px 0 14px; font-size: 16px; }.installation-steps p { margin: 0; color: #8199ad; font-size: 16px; line-height: 1.65; }
.requirements-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 70px; }.requirement-list { border-top: 1px solid var(--border-soft); }.requirement-list article { display: grid; grid-template-columns: 90px 1fr; gap: 25px; padding: 20px 0; border-bottom: 1px solid var(--border-soft); }.requirement-list article > span { color: var(--blue-300); font-family: var(--font-geist-mono), monospace; font-size: 12px; text-transform: uppercase; }.requirement-list strong { font-size: 17px; }.requirement-list p { margin: 7px 0 0; color: #8199ad; font-size: 15px; line-height: 1.6; }
.activation-section { border-block: 1px solid rgba(40,118,168,.2); background: radial-gradient(circle at 25% 50%, rgba(22,139,255,.13), transparent 34%), #06101c; }.activation-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; align-items: center; }.activation-window { padding: 30px; border: 1px solid #286c9b; border-radius: 15px; background: linear-gradient(145deg, #0b2945, #061725); box-shadow: 0 30px 80px rgba(0,0,0,.38); }.activation-window h3 { margin: 24px 0; font-size: 25px; }.activation-window label { display: block; margin: 17px 0 8px; color: #a8bdce; font-size: 14px; font-weight: 700; }.device-field, .key-field { padding: 14px; border: 1px solid #235879; border-radius: 8px; background: #071827; color: #b9cede; font-family: var(--font-geist-mono), monospace; font-size: 13px; }.key-field { color: #748c9d; }.activation-window > p { color: #8299ab; font-size: 13px; line-height: 1.55; }.activation-window button { margin-top: 20px; }.safety-note { margin-top: 24px; padding: 18px; border-left: 3px solid var(--green-500); background: rgba(45,77,41,.18); }.safety-note strong { font-size: 14px; }.safety-note p { margin: 6px 0 0; color: #93aa95; font-size: 14px; line-height: 1.6; }

.contact-hero { grid-template-columns: 1.1fr .7fr; }.contact-signal { height: 280px; display: flex; align-items: end; gap: 14px; padding: 40px; border: 1px solid #1f608c; border-radius: 15px; background: linear-gradient(145deg, rgba(11,41,69,.9), rgba(5,20,34,.92)); }.contact-signal span { flex: 1; height: 35%; border-radius: 3px 3px 0 0; background: linear-gradient(180deg, var(--blue-400), #075490); box-shadow: 0 0 18px rgba(37,169,255,.16); }.contact-signal span:nth-child(2) { height: 55%; }.contact-signal span:nth-child(3) { height: 42%; }.contact-signal span:nth-child(4) { height: 75%; }.contact-signal span:nth-child(5) { height: 64%; }.contact-signal span:nth-child(6) { height: 92%; background: linear-gradient(180deg, var(--green-400), #3c8f31); }
.contact-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }.contact-cards article { padding: 36px; border: 1px solid var(--border-soft); border-radius: 15px; background: #071523; }.contact-cards article:last-child { background: linear-gradient(145deg, #0b2945, #061725); border-color: rgba(40,126,183,.45); }.contact-label { color: var(--green-400); font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }.contact-cards h2 { margin: 44px 0 16px; font-size: 30px; }.contact-cards p { max-width: 570px; min-height: 64px; margin: 0 0 24px; color: #8ca2b5; font-size: 17px; line-height: 1.65; }.contact-cards .button { width: auto; }
.contact-guide { display: grid; grid-template-columns: .85fr 1.15fr; gap: 70px; }.guide-list { border-top: 1px solid var(--border-soft); }.guide-list article { display: grid; grid-template-columns: 110px 1fr; gap: 25px; padding: 22px 0; border-bottom: 1px solid var(--border-soft); }.guide-list span { color: var(--blue-300); font-family: var(--font-geist-mono), monospace; font-size: 12px; text-transform: uppercase; }.guide-list p { margin: 0; color: #899fb2; font-size: 16px; line-height: 1.65; }.guide-list .warning span { color: var(--green-400); }
.faq-section { border-top: 1px solid rgba(40,118,168,.2); background: #06101c; }.faq-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 70px; }.faq-list { border-top: 1px solid var(--border-soft); }.faq-list details { border-bottom: 1px solid var(--border-soft); }.faq-list summary { position: relative; padding: 20px 40px 20px 0; color: #dbe7f1; font-size: 17px; font-weight: 700; cursor: pointer; list-style: none; }.faq-list summary::-webkit-details-marker { display: none; }.faq-list summary::after { position: absolute; top: 18px; right: 2px; color: var(--blue-300); content: "+"; font-size: 22px; font-weight: 400; }.faq-list details[open] summary::after { content: "–"; }.faq-list details p { margin: -2px 40px 20px 0; color: #8198ac; font-size: 16px; line-height: 1.65; }

@media (max-width: 1160px) {
  .page-width { width: min(calc(100% - 64px), var(--page)); }
  .brand { width: 285px; }
  .desktop-nav { gap: 30px; }
  .hero { grid-template-columns: 48% 52%; }
  .hero-visual { margin-left: 0; transform: scale(.9); transform-origin: left center; width: 112%; }
  .dashboard-window { width: 66%; }
  .score-card { right: 0; }
  .pulse-card { right: 0; }
  .proof-row { flex-wrap: wrap; }
}
@media (max-height: 830px) and (min-width: 901px) {
  .hero { padding-top: 38px; padding-bottom: 18px; }
  .hero-copy { padding-top: 20px; transform: scale(.88); transform-origin: left top; width: 114%; }
  .hero-visual { width: 116%; min-height: 630px; margin-top: -28px; transform: scale(.86); transform-origin: left top; }
}
@media (max-width: 900px) {
  .page-width { width: min(calc(100% - 44px), var(--page)); }
  .header-inner { height: 82px; }.brand { width: 255px; border: 0; padding: 0; }.desktop-nav { display: none; }.mobile-menu { display: block; }
  .hero { grid-template-columns: 1fr; height: auto; min-height: auto; padding-top: 72px; }.hero-copy { padding-top: 0; transform: none; width: auto; }.hero h1 { max-width: 720px; }.hero-visual { width: 100%; min-height: 620px; margin-top: 36px; transform: none; }.dashboard-window { left: 0; width: 66%; }.market-backdrop-panel { right: 0; }
  .trust-grid { grid-template-columns: 1fr; }.trust-grid p { padding: 22px 0; border-right: 0; border-bottom: 1px solid rgba(53,123,168,.18); }
  .workflow-grid { grid-template-columns: 1fr; gap: 50px; }.final-cta { align-items: flex-start; flex-direction: column; }.final-actions { width: 100%; flex-direction: row; }.final-actions .button { flex: 1; }
  .footer-grid { grid-template-columns: 1.2fr 1fr; }.footer-brand { grid-column: 1 / -1; }
  .inner-hero { grid-template-columns: 1fr; gap: 42px; min-height: auto; }.inner-hero-panel, .contact-signal { min-height: 220px; }.story-grid, .requirements-grid, .activation-grid, .contact-guide, .faq-grid { grid-template-columns: 1fr; gap: 48px; }.principle-grid { grid-template-columns: repeat(2, 1fr); }.installation-steps { grid-template-columns: 1fr; }.installation-steps li { min-height: 220px; }.installation-steps h3 { margin-top: 45px; }.contact-cards { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .page-width { width: min(calc(100% - 32px), var(--page)); }
  .brand { width: 215px; }.hero { min-height: auto; padding-top: 52px; }.hero h1 { font-size: 43px; }.hero-lede { font-size: 17px; }.hero-actions { flex-direction: column; }.button { width: 100%; }.proof-row { display: grid; grid-template-columns: 1fr; }.proof-chip { width: 100%; }
  .hero-visual { min-height: 565px; margin-top: 26px; }.market-backdrop-panel { top: 180px; right: -18px; bottom: 20px; left: 20px; transform: rotateY(-2deg) rotateX(2deg); }.dashboard-window { top: 62px; left: -2px; width: 90%; padding: 16px 14px 14px; transform: rotateY(-3deg) rotateZ(.2deg); }.score-card { top: 3px; right: -18px; width: 145px; min-height: 172px; padding: 12px; }.score-ring { width: 89px; height: 89px; margin: 9px auto 5px; }.score-ring strong { font-size: 27px; }.score-card p { display: none; }.pulse-card { top: auto; right: -16px; bottom: 9px; width: 178px; min-height: 172px; padding: 12px; }.pulse-chart { height: 94px; }.pulse-arc { top: 18px; left: 27px; width: 74px; height: 74px; }.pulse-arc strong { font-size: 18px; }.pulse-arc small { margin-top: 4px; }.candlestick-chart { inset: 13px 0 1px; }.candlestick-chart i { width: 6px; }.volume-bars { height: 18px; }.opportunity-head, .opportunity-row { grid-template-columns: 31px 42px minmax(80px, 1fr) 62px 24px; column-gap: 3px; }.opportunity-row { min-height: 39px; padding: 4px 6px; }.company-name { font-size: 7px; }.opportunities-link { min-height: 28px; margin-top: 10px; }.hero-wave { right: -35px; bottom: -7px; width: 590px; }
  .section { padding-block: 62px; }.feature-grid { grid-template-columns: 1fr; }.feature-card.featured { grid-row: auto; min-height: 360px; }.featured h3 { margin-top: 70px; }.final-cta { width: calc(100% - 32px); margin-block: 54px; padding: 30px 24px; }.final-actions { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; gap: 38px; }.footer-brand { grid-column: auto; }.footer-bottom { flex-direction: column; }.footer-bottom p:last-child { text-align: left; }
  .inner-hero { padding-block: 56px; }.inner-hero h1 { font-size: 43px; }.inner-hero-panel { padding: 28px; }.content-band { padding-block: 56px; }.principle-grid, .boundary-grid { grid-template-columns: 1fr; }.principle-grid article { min-height: 210px; }.principle-grid h3 { margin-top: 36px; }.boundary-card, .contact-cards article { padding: 30px 24px; }.contact-cards h2 { margin-top: 38px; }.contact-cards .button { width: 100%; font-size: 14px; }.requirement-list article, .guide-list article { grid-template-columns: 1fr; gap: 8px; }.activation-window { padding: 23px; }.device-field { overflow-wrap: anywhere; }.contact-signal { padding: 24px; }
}
@media (max-width: 440px) {
  .dashboard-window { width: 96%; }
  .opportunity-head, .opportunity-row { grid-template-columns: 30px 42px 1fr 24px; }
  .opportunity-head span:nth-child(3), .company-name { display: none; }
  .opportunity-head span:nth-child(4) { grid-column: 3 / 5; }
  .score-card { right: -34px; transform: scale(.88); transform-origin: top right; }
  .pulse-card { right: -25px; transform: scale(.9); transform-origin: bottom right; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}

