:root {
  --bg: #050605;
  --bg-soft: #0a0c09;
  --surface: #10130e;
  --surface-2: #151a11;
  --lime: #baff12;
  --lime-strong: #a9f000;
  --lime-soft: rgba(186, 255, 18, 0.12);
  --text: #f5f7f2;
  --muted: #9da698;
  --line: rgba(255, 255, 255, 0.09);
  --radius: 28px;
  --container: 1240px;
  color-scheme: dark;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, Manrope, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body::selection, ::selection { background: var(--lime); color: #071000; }
button, a { font: inherit; }
a { color: inherit; text-decoration: none; }
button { color: inherit; }
img { display: block; max-width: 100%; height: auto; object-fit: contain; }
svg { display: block; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
[hidden] { display: none !important; }
:focus-visible { outline: 2px solid var(--lime); outline-offset: 4px; }
body.nav-open { overflow: hidden; }
.scroll-progress {
  position: fixed;
  z-index: 240;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #86d900, var(--lime), #e3ff8f);
  box-shadow: 0 0 16px rgba(186,255,18,.7);
  pointer-events: none;
}

.container { width: min(calc(100% - 48px), var(--container)); margin-inline: auto; }
.section { position: relative; padding: 132px 0; }
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--lime);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.section-kicker::before { content: ""; width: 28px; height: 1px; background: currentColor; box-shadow: 0 0 10px var(--lime); }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { text-wrap: balance; }
h2 { margin-bottom: 0; font-size: clamp(42px, 5vw, 72px); line-height: .98; letter-spacing: -.055em; font-weight: 700; }
h2 em, h1 em { color: var(--lime); font-style: normal; }
p { color: var(--muted); line-height: 1.7; }

.js [data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s cubic-bezier(.22, 1, .36, 1); transition-delay: var(--delay, 0ms); }
.js [data-reveal].is-visible { opacity: 1; transform: translateY(0); }

.site-header {
  position: fixed;
  z-index: 100;
  top: 18px;
  left: 50%;
  width: min(calc(100% - 40px), 1280px);
  height: 68px;
  padding: 0 14px 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transform: translateX(-50%);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 20px;
  background: rgba(7, 9, 6, .76);
  box-shadow: 0 18px 55px rgba(0, 0, 0, .25);
  backdrop-filter: blur(22px);
}
.logo { display: inline-flex; align-items: center; gap: 10px; font-size: 16px; font-weight: 800; letter-spacing: -.02em; white-space: nowrap; }
.logo b { color: var(--lime); }
.logo-mark {
  width: 36px;
  height: 36px;
  display: inline-grid;
  place-items: center;
  color: #0b1005;
  border-radius: 11px;
  background: linear-gradient(145deg, #d5ff55, var(--lime-strong));
  box-shadow: 0 0 25px rgba(186, 255, 18, .23), inset 0 1px rgba(255,255,255,.5);
}
.site-header nav { display: flex; align-items: center; gap: 30px; }
.site-header nav a { position: relative; color: #c4cbbf; font-size: 13px; transition: color .25s ease; }
.site-header nav a:not(.nav-mobile-cta)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 1px; background: var(--lime); transition: right .25s ease; }
.site-header nav a:hover { color: #fff; }
.site-header nav a:hover::after { right: 0; }
.header-cta {
  height: 42px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 12px;
  background: var(--lime);
  color: #091000;
  font-size: 13px;
  font-weight: 750;
  box-shadow: 0 0 0 1px rgba(186,255,18,.3), 0 10px 30px rgba(126, 183, 0, .14);
  transition: transform .25s ease, box-shadow .25s ease;
}
.header-cta:hover { transform: translateY(-2px); box-shadow: 0 0 30px rgba(186,255,18,.22); }
.menu-toggle, .nav-mobile-cta { display: none; }

.hero {
  --mx: 0px;
  --my: 0px;
  position: relative;
  min-height: 900px;
  height: max(100vh, 900px);
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}
.hero::before { content: ""; position: absolute; z-index: -2; inset: 0; background: linear-gradient(90deg, rgba(4,5,4,.92) 0%, rgba(4,5,4,.76) 42%, rgba(4,5,4,.16) 80%), linear-gradient(0deg, var(--bg) 0, transparent 23%); }
.hero-bg { position: absolute; z-index: -3; inset: -4%; background: url('../images/hero-bg-4k.webp') center / cover no-repeat; filter: saturate(.85) brightness(.86); transform: translate(var(--mx), var(--my)) scale(1.06); transition: transform .25s ease-out; }
.hero-grid { position: absolute; z-index: -1; inset: 0; opacity: .13; mask-image: linear-gradient(90deg, black, transparent 65%); background-image: linear-gradient(rgba(186,255,18,.14) 1px, transparent 1px), linear-gradient(90deg, rgba(186,255,18,.14) 1px, transparent 1px); background-size: 65px 65px; transform: perspective(650px) rotateX(68deg) scale(1.8) translateY(18%); transform-origin: bottom; }
.orb { position: absolute; z-index: -1; width: 280px; height: 280px; border-radius: 50%; background: radial-gradient(circle at 35% 35%, rgba(216,255,94,.9), rgba(144,221,0,.3) 35%, rgba(37,68,0,.08) 66%, transparent 72%); filter: blur(7px); opacity: .27; pointer-events: none; }
.orb-one { left: -160px; bottom: 60px; animation: orbFloat 9s ease-in-out infinite; }
.orb-two { right: -110px; top: 160px; width: 220px; height: 220px; animation: orbFloat 11s ease-in-out -3s infinite reverse; }
@keyframes orbFloat { 50% { transform: translate3d(20px, -25px, 0) scale(1.08); } }
.hero-layout { padding-top: 80px; display: grid; grid-template-columns: 55% 45%; align-items: center; min-height: 760px; }
.hero-copy { position: relative; z-index: 5; max-width: 740px; }
.eyebrow { width: fit-content; margin-bottom: 28px; padding: 9px 13px; display: flex; align-items: center; gap: 9px; border: 1px solid rgba(186,255,18,.17); border-radius: 999px; color: #d2d7cd; background: rgba(186,255,18,.05); font-size: 12px; letter-spacing: .05em; text-transform: uppercase; }
.eyebrow span { width: 7px; height: 7px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 4px rgba(186,255,18,.1), 0 0 12px var(--lime); animation: pulse 1.8s ease-out infinite; }
@keyframes pulse { 50% { box-shadow: 0 0 0 8px rgba(186,255,18,0), 0 0 18px var(--lime); } }
.hero h1 { margin-bottom: 26px; font-size: clamp(58px, 6.1vw, 92px); line-height: .91; letter-spacing: -.07em; font-weight: 760; }
.hero h1 em { display: inline-block; background: linear-gradient(90deg, #d8ff69, var(--lime-strong)); background-clip: text; -webkit-text-fill-color: transparent; text-shadow: 0 0 45px rgba(186,255,18,.12); }
.hero-copy > p { max-width: 590px; margin-bottom: 34px; color: #b8c0b3; font-size: 18px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button { min-height: 54px; padding: 0 22px; display: inline-flex; align-items: center; justify-content: center; gap: 12px; border: 1px solid transparent; border-radius: 15px; font-size: 14px; font-weight: 740; cursor: pointer; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, background .25s ease; }
.button:hover { transform: translateY(-3px); }
.button-primary { color: #0b1102; background: linear-gradient(135deg, #caff2c, #9de900); box-shadow: 0 15px 45px rgba(150, 224, 0, .15), inset 0 1px rgba(255,255,255,.5); }
.button-primary:hover { box-shadow: 0 15px 55px rgba(186,255,18,.26); }
.button-ghost, .button-outline { border-color: rgba(255,255,255,.13); background: rgba(255,255,255,.035); color: #f0f3ed; backdrop-filter: blur(10px); }
.button-ghost:hover, .button-outline:hover { border-color: rgba(186,255,18,.36); background: rgba(186,255,18,.06); }
.tilt-surface {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --glow-x: 50%;
  --glow-y: 50%;
  transform: perspective(1000px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transform-style: preserve-3d;
  transition: transform .22s ease, border-color .3s ease, box-shadow .3s ease;
  will-change: transform;
}
.tilt-surface::after {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at var(--glow-x) var(--glow-y), rgba(214,255,92,.13), transparent 34%);
  opacity: 0;
  transition: opacity .25s ease;
  pointer-events: none;
}
.tilt-surface:hover::after { opacity: 1; }
.tilt-surface > * { position: relative; z-index: 1; }
.hero-proof { margin-top: 48px; padding-top: 28px; display: flex; gap: 34px; border-top: 1px solid rgba(255,255,255,.08); }
.hero-proof > div { display: flex; align-items: center; gap: 10px; color: var(--lime); }
.hero-proof span { color: #8e9889; font-size: 11px; line-height: 1.35; }
.hero-proof b { display: block; color: #e9ede6; font-size: 12px; }
.hero-visual { position: relative; height: 740px; align-self: end; }
.hero-visual > img {
  --mascot-shift-x: 0%;
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  width: auto;
  height: auto;
  max-width: min(100%, 560px);
  max-height: calc(100% - 42px);
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 38px 35px rgba(0,0,0,.58)) drop-shadow(0 0 28px rgba(186,255,18,.05));
  animation: mascotFloat 5.5s ease-in-out infinite;
}
@keyframes mascotFloat { 0%, 100% { transform: translateX(var(--mascot-shift-x)); } 50% { transform: translateX(var(--mascot-shift-x)) translateY(-12px) rotate(.5deg); } }
.mascot-halo { position: absolute; z-index: 0; right: -70px; bottom: 0; width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(186,255,18,.24), rgba(90,150,0,.07) 42%, transparent 69%); filter: blur(18px); }
.glass-card { border: 1px solid rgba(255,255,255,.12); background: linear-gradient(135deg, rgba(22,28,18,.78), rgba(5,7,5,.48)); box-shadow: 0 22px 55px rgba(0,0,0,.34), inset 0 1px rgba(255,255,255,.08); backdrop-filter: blur(18px); }
.floating-card { position: absolute; z-index: 5; border-radius: 18px; }
.connection-card { right: -12px; top: 180px; padding: 14px 18px 14px 12px; display: grid; grid-template-columns: auto auto; align-items: center; column-gap: 11px; }
.connection-card .mini-power { grid-row: 1 / 3; width: 43px; height: 43px; display: grid; place-items: center; border-radius: 13px; color: var(--lime); background: var(--lime-soft); }
.floating-card span { color: #889083; font-size: 10px; }
.floating-card strong { display: block; font-size: 13px; }
.speed-card { left: -8px; bottom: 175px; padding: 14px 17px; }
.speed-card strong { margin-top: 3px; }
.speed-card i { display: inline-block; width: 7px; height: 7px; margin-left: 7px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 10px var(--lime); }
.scroll-hint { position: absolute; bottom: 28px; left: 50%; width: 28px; height: 46px; display: grid; place-items: start center; padding-top: 8px; transform: translateX(-50%); border: 1px solid rgba(255,255,255,.16); border-radius: 20px; }
.scroll-hint span { width: 3px; height: 8px; border-radius: 3px; background: var(--lime); animation: scrollDrop 1.8s ease-in-out infinite; }
@keyframes scrollDrop { 0% { transform: translateY(0); opacity: 0; } 35% { opacity: 1; } 80%, 100% { transform: translateY(18px); opacity: 0; } }

.trust-strip { position: relative; z-index: 4; border-block: 1px solid var(--line); background: rgba(255,255,255,.018); }
.trust-grid { min-height: 118px; display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-grid > div { display: flex; align-items: center; justify-content: center; gap: 16px; border-right: 1px solid var(--line); }
.trust-grid > div:first-child { border-left: 1px solid var(--line); }
.trust-grid b { color: var(--lime); font: 500 30px/1 "SFMono-Regular", Consolas, monospace; opacity: .52; }
.trust-grid span { color: #c2c9bd; font-size: 13px; line-height: 1.4; }

.benefits-section { background: radial-gradient(circle at 78% 10%, rgba(186,255,18,.055), transparent 35%); }
.section-heading { margin-bottom: 62px; display: grid; grid-template-columns: 1.2fr .8fr; align-items: end; gap: 50px; }
.section-heading > p { max-width: 440px; margin: 0 0 4px auto; font-size: 16px; }
.benefit-grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.benefit-card { position: relative; min-height: 390px; padding: 30px 28px; border-right: 1px solid var(--line); background: rgba(255,255,255,.018); overflow: hidden; transition: background .35s ease, transform .35s ease; }
.benefit-card:last-child { border-right: 0; }
.benefit-card::after { content: ""; position: absolute; width: 170px; height: 170px; right: -90px; bottom: -95px; border-radius: 50%; background: radial-gradient(circle, rgba(186,255,18,.18), transparent 68%); opacity: 0; transition: opacity .35s ease, transform .5s ease; }
.benefit-card:hover { background: rgba(186,255,18,.045); transform: translateY(-5px); }
.benefit-card:hover::after { opacity: 1; transform: translate(-25px, -25px); }
.card-number { display: block; text-align: right; color: #40483d; font: 500 12px/1 "SFMono-Regular", Consolas, monospace; }
.icon-shell { width: 60px; height: 60px; margin: 55px 0 28px; display: grid; place-items: center; border: 1px solid rgba(186,255,18,.18); border-radius: 18px; color: var(--lime); background: rgba(186,255,18,.06); box-shadow: inset 0 0 22px rgba(186,255,18,.03); }
.benefit-card h3 { margin-bottom: 13px; font-size: 19px; letter-spacing: -.03em; }
.benefit-card p { margin: 0; font-size: 13px; }
.card-line { position: absolute; left: 28px; right: 28px; bottom: 0; height: 2px; transform: scaleX(0); transform-origin: left; background: linear-gradient(90deg, var(--lime), transparent); transition: transform .4s ease; }
.benefit-card:hover .card-line { transform: scaleX(1); }

.locations-section { border-block: 1px solid var(--line); background: #070907; overflow: hidden; }
.locations-section::before { content: ""; position: absolute; inset: 0; opacity: .18; background-image: radial-gradient(rgba(186,255,18,.35) .6px, transparent .6px); background-size: 22px 22px; mask-image: linear-gradient(90deg, transparent 20%, black 80%); }
.locations-layout { position: relative; display: grid; grid-template-columns: 39% 61%; align-items: center; gap: 40px; }
.locations-copy h2 { font-size: clamp(44px, 4.6vw, 68px); }
.locations-copy > p { max-width: 440px; margin: 27px 0 26px; }
.check-list { margin: 0 0 32px; padding: 0; display: grid; gap: 13px; list-style: none; }
.check-list li { display: flex; align-items: center; gap: 10px; color: #c5ccc0; font-size: 13px; }
.check-list svg { padding: 2px; color: #0d1303; border-radius: 50%; background: var(--lime); }
.text-link { display: inline-flex; align-items: center; gap: 9px; color: var(--lime); font-size: 13px; font-weight: 700; }
.text-link svg { transition: transform .25s ease; }
.text-link:hover svg { transform: translateX(5px); }
.network-map { position: relative; min-height: 570px; border: 1px solid rgba(186,255,18,.13); border-radius: 34px; background: radial-gradient(circle at 60% 45%, rgba(132,199,0,.12), transparent 42%), rgba(5,7,5,.65); box-shadow: inset 0 0 70px rgba(0,0,0,.7), 0 40px 90px rgba(0,0,0,.25); overflow: hidden; }
.map-grid { position: absolute; inset: 0; opacity: .17; background-image: linear-gradient(rgba(186,255,18,.1) 1px, transparent 1px), linear-gradient(90deg, rgba(186,255,18,.1) 1px, transparent 1px); background-size: 38px 38px; mask-image: radial-gradient(circle at center, black, transparent 78%); }
.world-map { position: absolute; inset: 7% 2% auto; width: 96%; height: 76%; }
.continents path { fill: rgba(151, 188, 84, .14); stroke: rgba(186,255,18,.21); stroke-width: 1; }
.map-lines path { fill: none; stroke: rgba(186,255,18,.28); stroke-width: 1.2; stroke-dasharray: 5 9; animation: dashFlow 10s linear infinite; }
@keyframes dashFlow { to { stroke-dashoffset: -140; } }
.map-node { position: absolute; z-index: 4; width: 24px; height: 24px; padding: 0; transform: translate(-50%, -50%); border: 0; border-radius: 50%; background: transparent; cursor: pointer; }
.map-node span { position: absolute; inset: 8px; border-radius: 50%; background: #7a9f2a; transition: background .25s ease, box-shadow .25s ease, transform .25s ease; }
.map-node::before, .map-node::after { content: ""; position: absolute; inset: 5px; border: 1px solid rgba(186,255,18,.28); border-radius: 50%; opacity: 0; }
.map-node.active span { background: var(--lime); box-shadow: 0 0 15px var(--lime); transform: scale(1.3); }
.map-node.active::before { animation: nodePing 1.8s ease-out infinite; }
.map-node.active::after { animation: nodePing 1.8s .6s ease-out infinite; }
@keyframes nodePing { from { opacity: .8; transform: scale(.6); } to { opacity: 0; transform: scale(3.1); } }
.map-status { position: absolute; z-index: 5; left: 24px; bottom: 25px; min-width: 255px; padding: 14px 16px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 12px; border-radius: 16px; }
.status-pulse { width: 9px; height: 9px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 13px var(--lime); }
.map-status span { display: block; color: #778071; font-size: 9px; text-transform: uppercase; letter-spacing: .1em; }
.map-status strong { font-size: 13px; }
.map-status b { color: var(--lime); font: 500 11px "SFMono-Regular", Consolas, monospace; }
.map-legend { position: absolute; z-index: 5; right: 21px; bottom: 28px; display: flex; gap: 6px; }
.map-legend button { padding: 7px 9px; border: 1px solid var(--line); border-radius: 8px; color: #828a7e; background: rgba(0,0,0,.45); font-size: 9px; cursor: pointer; }
.map-legend button.active { border-color: rgba(186,255,18,.4); color: var(--lime); background: rgba(186,255,18,.08); }
.satellite-orbit { position: absolute; z-index: 3; width: 480px; height: 230px; top: 48%; left: 55%; transform: translate(-50%, -50%) rotate(-16deg); border: 1px solid rgba(186,255,18,.13); border-radius: 50%; }
.satellite { position: absolute; top: -10px; left: 50%; width: 42px; height: 20px; animation: satelliteTravel 12s linear infinite; filter: drop-shadow(0 0 8px rgba(186,255,18,.6)); }
@keyframes satelliteTravel { from { offset-distance: 0%; } to { offset-distance: 100%; } }
.sat-body { position: absolute; left: 14px; top: 4px; width: 14px; height: 12px; border: 2px solid var(--lime); border-radius: 3px; background: #19200f; }
.sat-panel { position: absolute; top: 6px; width: 12px; height: 8px; border: 1px solid rgba(186,255,18,.65); background: repeating-linear-gradient(90deg, rgba(186,255,18,.3) 0 2px, transparent 2px 4px); }
.sat-panel-left { left: 0; }.sat-panel-right { right: 0; }
.satellite { offset-path: ellipse(240px 115px at center); offset-rotate: auto; }

.scenarios-section { background: radial-gradient(circle at 50% 100%, rgba(186,255,18,.05), transparent 38%); }
.center-heading { margin-bottom: 55px; text-align: center; }
.center-heading .section-kicker { justify-content: center; }
.center-heading .section-kicker::after { content: ""; width: 28px; height: 1px; background: currentColor; }
.scenario-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.scenario-card { position: relative; min-height: 260px; padding: 30px; border: 1px solid var(--line); border-radius: 24px; background: linear-gradient(145deg, rgba(255,255,255,.035), rgba(255,255,255,.012)); overflow: hidden; transition: border-color .3s ease, transform .3s ease; }
.scenario-card::before { content: ""; position: absolute; width: 190px; height: 190px; right: -80px; top: -100px; border-radius: 50%; background: radial-gradient(circle, rgba(186,255,18,.15), transparent 70%); opacity: .4; transition: transform .4s ease; }
.scenario-card:hover { transform: translateY(-6px); border-color: rgba(186,255,18,.27); }
.scenario-card:hover::before { transform: translate(-25px, 25px) scale(1.15); }
.scenario-icon { width: 52px; height: 52px; margin-bottom: 35px; display: grid; place-items: center; color: var(--lime); border-radius: 16px; background: rgba(186,255,18,.08); }
.scenario-card h3 { margin-bottom: 10px; font-size: 20px; }
.scenario-card p { max-width: 300px; margin: 0; font-size: 13px; }
.scenario-arrow { position: absolute; right: 25px; bottom: 25px; width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: #737c6f; transition: color .3s ease, transform .3s ease; }
.scenario-card:hover .scenario-arrow { color: var(--lime); transform: translateX(4px); }

.pricing-section { overflow: hidden; border-block: 1px solid var(--line); background: #080a07; }
.pricing-glow { position: absolute; left: 3%; bottom: -180px; width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(186,255,18,.13), transparent 70%); filter: blur(25px); }
.pricing-layout { display: grid; grid-template-columns: 31% 69%; align-items: center; gap: 32px; }
.pricing-intro { align-self: stretch; display: flex; flex-direction: column; }
.pricing-intro h2 { font-size: clamp(42px, 4.5vw, 67px); }
.pricing-intro > p { max-width: 420px; margin: 26px 0 0; }
.pricing-mascot-wrap { position: relative; flex: 1; min-height: 320px; }
.pricing-mascot-wrap img {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 0;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center bottom;
  transform: translateX(-50%);
  filter: drop-shadow(0 25px 25px rgba(0,0,0,.42));
}
.price-cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.price-card { position: relative; min-width: 0; padding: 27px 22px; border: 1px solid var(--line); border-radius: 24px; background: linear-gradient(155deg, rgba(255,255,255,.035), rgba(255,255,255,.012)); }
.price-card.featured { border-color: rgba(186,255,18,.48); background: linear-gradient(155deg, rgba(186,255,18,.095), rgba(12,15,9,.68) 48%); box-shadow: 0 24px 70px rgba(0,0,0,.25), inset 0 0 50px rgba(186,255,18,.025); }
.popular-badge { position: absolute; top: -13px; left: 28px; padding: 7px 12px; border-radius: 999px; color: #091000; background: var(--lime); font-size: 9px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
.price-top { min-height: 45px; display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; }
.price-top span { font-size: 17px; font-weight: 700; }
.price-top small { max-width: 94px; color: #6f786b; font-size: 9px; text-align: right; }
.price { margin: 38px 0 8px; display: flex; align-items: flex-start; }
.price b { font-size: clamp(46px, 4vw, 66px); line-height: .8; letter-spacing: -.07em; }
.price > span { margin-left: 8px; color: var(--lime); font-size: 20px; font-weight: 750; }
.price span small { display: block; margin-top: 5px; color: #858e80; font-size: 9px; font-weight: 500; }
.price-note { min-height: 17px; color: var(--lime); font-size: 9px; }
.price-divider { height: 1px; margin: 26px 0; background: var(--line); }
.price-card ul { min-height: 158px; margin: 0 0 28px; padding: 0; display: grid; gap: 13px; list-style: none; }
.price-card li { display: flex; align-items: center; gap: 9px; color: #aab2a5; font-size: 12px; }
.price-card li svg { color: var(--lime); }
.price-card .button { width: 100%; }

.how-section { background: radial-gradient(circle at 22% 55%, rgba(186,255,18,.07), transparent 30%); }
.how-layout { display: grid; grid-template-columns: 48% 52%; align-items: center; gap: 70px; }
.how-visual { position: relative; min-height: 690px; display: grid; place-items: center; }
.how-visual::before { content: ""; position: absolute; width: 500px; height: 500px; border: 1px solid rgba(186,255,18,.12); border-radius: 50%; box-shadow: inset 0 0 100px rgba(186,255,18,.04), 0 0 80px rgba(186,255,18,.025); }
.device-shell { position: relative; z-index: 2; width: 288px; height: 570px; padding: 24px 23px; border: 8px solid #191c18; border-radius: 48px; background: linear-gradient(170deg, #12160e, #050605 75%); box-shadow: 0 60px 90px rgba(0,0,0,.45), inset 0 0 50px rgba(186,255,18,.035), 0 0 0 1px #30362b; transform: rotate(5deg); }
.device-shell::before { content: ""; position: absolute; inset: 2px; border: 1px solid rgba(255,255,255,.08); border-radius: 39px; pointer-events: none; }
.device-top { height: 20px; display: flex; justify-content: space-between; }
.device-top span { width: 62px; height: 16px; margin: -8px auto 0; border-radius: 10px; background: #040504; }
.device-logo { display: flex; align-items: center; justify-content: center; gap: 4px; margin-top: 24px; font-size: 12px; font-weight: 750; }
.device-logo .logo-mark { width: 29px; height: 29px; margin-right: 6px; border-radius: 9px; }
.device-logo b { color: var(--lime); }
.power-ring { width: 148px; height: 148px; margin: 70px auto 18px; display: grid; place-items: center; border: 2px solid rgba(186,255,18,.55); border-radius: 50%; color: var(--lime); background: radial-gradient(circle, rgba(186,255,18,.12), transparent 62%); box-shadow: 0 0 0 12px rgba(186,255,18,.025), 0 0 38px rgba(186,255,18,.2), inset 0 0 35px rgba(186,255,18,.07); animation: powerGlow 2.8s ease-in-out infinite; }
@keyframes powerGlow { 50% { box-shadow: 0 0 0 18px rgba(186,255,18,0), 0 0 55px rgba(186,255,18,.3), inset 0 0 45px rgba(186,255,18,.11); } }
.device-shell > strong { display: block; text-align: center; color: var(--lime); font-size: 13px; }
.device-shell > small { display: block; margin-top: 5px; text-align: center; color: #677061; font-size: 9px; }
.device-location { position: absolute; left: 18px; right: 18px; bottom: 23px; padding: 12px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 9px; border: 1px solid var(--line); border-radius: 15px; background: rgba(255,255,255,.035); }
.device-location > span { font-size: 20px; }.device-location small { display: block; color: #626b5e; font-size: 8px; }.device-location b { font-size: 10px; }.device-location i { color: var(--lime); font: normal 8px "SFMono-Regular", Consolas, monospace; }
.phone-orbit { position: absolute; border: 1px solid rgba(186,255,18,.11); border-radius: 50%; }
.orbit-a { width: 480px; height: 210px; transform: rotate(58deg); }.orbit-b { width: 560px; height: 280px; transform: rotate(-18deg); }
.how-copy h2 { margin-bottom: 45px; }
.steps { margin-bottom: 34px; }
.step { position: relative; padding: 0 0 32px; display: grid; grid-template-columns: 58px 1fr; gap: 20px; }
.step:not(:last-child)::after { content: ""; position: absolute; left: 27px; top: 52px; bottom: 5px; width: 1px; background: linear-gradient(var(--lime), rgba(186,255,18,.08)); }
.step > b { width: 56px; height: 45px; display: grid; place-items: center; border: 1px solid rgba(186,255,18,.2); border-radius: 13px; color: var(--lime); background: rgba(186,255,18,.05); font: 600 11px "SFMono-Regular", Consolas, monospace; }
.step h3 { margin: 2px 0 8px; font-size: 17px; }
.step p { margin: 0; font-size: 13px; }

.articles-section {
  overflow: hidden;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 8% 30%, rgba(186,255,18,.08), transparent 28%),
    radial-gradient(circle at 92% 80%, rgba(186,255,18,.055), transparent 24%),
    #060806;
}
.articles-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .12;
  background-image: linear-gradient(rgba(186,255,18,.1) 1px, transparent 1px), linear-gradient(90deg, rgba(186,255,18,.1) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(90deg, transparent, #000 30%, #000 70%, transparent);
  pointer-events: none;
}
.articles-grid { position: relative; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.article-card {
  position: relative;
  min-height: 330px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 25px;
  background: linear-gradient(145deg, rgba(255,255,255,.038), rgba(255,255,255,.012));
  box-shadow: 0 24px 60px rgba(0,0,0,.15);
}
.article-card:hover { border-color: rgba(186,255,18,.36); box-shadow: 0 30px 75px rgba(0,0,0,.28), 0 0 35px rgba(186,255,18,.04); }
.article-card > b { position: absolute; top: 24px; right: 25px; color: rgba(186,255,18,.28); font: 600 12px/1 "SFMono-Regular", Consolas, monospace; }
.article-tag { display: inline-flex; padding: 7px 10px; border: 1px solid rgba(186,255,18,.15); border-radius: 999px; color: var(--lime); background: rgba(186,255,18,.055); font-size: 9px; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
.article-card h3 { margin: 70px 0 14px; font-size: 22px; line-height: 1.08; letter-spacing: -.035em; }
.article-card p { margin: 0 0 55px; font-size: 13px; line-height: 1.65; }
.article-read { position: absolute; left: 28px; bottom: 27px; display: inline-flex; align-items: center; gap: 9px; color: #dce2d8; font-size: 12px; font-weight: 700; }
.article-read svg { color: var(--lime); transition: transform .25s ease; }
.article-card:hover .article-read svg { transform: translateX(5px); }
.articles-all { position: relative; margin-top: 34px; display: flex; justify-content: center; }

.faq-section { border-top: 1px solid var(--line); background: #070807; }
.faq-layout { display: grid; grid-template-columns: 38% 62%; gap: 90px; }
.faq-title { position: sticky; top: 120px; align-self: start; }
.faq-title h2 { font-size: clamp(43px, 4.5vw, 68px); }
.faq-title p { max-width: 390px; margin-top: 27px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary { padding: 25px 4px; display: flex; align-items: center; justify-content: space-between; gap: 20px; list-style: none; font-size: 16px; font-weight: 620; cursor: pointer; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary span { position: relative; width: 30px; height: 30px; flex: 0 0 auto; border: 1px solid var(--line); border-radius: 50%; transition: background .3s ease, border-color .3s ease, transform .3s ease; }
.faq-item summary span::before, .faq-item summary span::after { content: ""; position: absolute; top: 50%; left: 50%; width: 10px; height: 1px; transform: translate(-50%, -50%); background: #9ba495; }
.faq-item summary span::after { transform: translate(-50%, -50%) rotate(90deg); transition: transform .3s ease; }
.faq-item[open] summary { color: var(--lime); }
.faq-item[open] summary span { border-color: rgba(186,255,18,.4); background: rgba(186,255,18,.08); transform: rotate(180deg); }
.faq-item[open] summary span::after { transform: translate(-50%, -50%) rotate(0deg); }
.faq-item p { max-width: 650px; margin: -6px 50px 25px 4px; font-size: 13px; animation: faqIn .35s ease; }
@keyframes faqIn { from { opacity: 0; transform: translateY(-8px); } }

.final-cta { position: relative; min-height: 600px; display: flex; align-items: center; border-bottom: 1px solid var(--line); background: radial-gradient(circle at 72% 53%, rgba(186,255,18,.18), transparent 31%), linear-gradient(135deg, #0c1008, #050605 65%); overflow: hidden; }
.cta-lines { position: absolute; inset: 0; opacity: .18; background-image: linear-gradient(115deg, transparent 49.8%, rgba(186,255,18,.22) 50%, transparent 50.2%); background-size: 130px 130px; mask-image: linear-gradient(90deg, transparent, black); }
.cta-layout { position: relative; display: grid; grid-template-columns: 56% 44%; align-items: center; }
.cta-copy { position: relative; z-index: 4; padding: 100px 0; }
.cta-copy h2 { font-size: clamp(45px, 5.2vw, 74px); }
.cta-copy p { max-width: 600px; margin: 28px 0 32px; }
.cta-mascot { position: relative; align-self: end; height: 600px; }
.cta-mascot img {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 35px 32px rgba(0,0,0,.5));
}
.cta-mascot .mascot-halo { right: -90px; bottom: -80px; }

footer { padding: 50px 0 24px; background: #040504; }
.footer-main { padding-bottom: 40px; display: grid; grid-template-columns: 1fr 1fr auto; align-items: start; gap: 45px; }
.footer-main p { margin: 0; font-size: 12px; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 27px; }
.footer-links a { color: #8e9789; font-size: 12px; transition: color .2s ease; }.footer-links a:hover { color: var(--lime); }
.footer-bottom { padding-top: 20px; display: flex; justify-content: space-between; gap: 20px; border-top: 1px solid var(--line); color: #51584e; font-size: 10px; }

.error-page {
  min-height: 100vh;
  padding: 48px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(90deg, rgba(4,5,4,.94), rgba(4,5,4,.5)),
    url("../images/hero-bg-4k.webp") center / cover no-repeat;
}
.error-page > div { width: min(100%, 900px); }
.error-page h1 { margin: 18px 0 26px; font-size: clamp(58px, 8vw, 110px); line-height: .9; letter-spacing: -.07em; }
.error-page p { max-width: 620px; margin-bottom: 30px; font-size: 18px; }

@media (max-width: 1100px) {
  .site-header nav { gap: 20px; }
  .hero-layout { grid-template-columns: 58% 42%; }
  .hero-visual > img { right: 0; max-width: min(100%, 510px); }
  .benefit-grid { grid-template-columns: repeat(2, 1fr); }
  .benefit-card { min-height: 330px; }
  .benefit-card:nth-child(2) { border-right: 0; }.benefit-card:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .icon-shell { margin-top: 34px; }
  .locations-layout { grid-template-columns: 42% 58%; gap: 20px; }
  .network-map { min-height: 520px; }
  .map-legend { display: none; }
  .pricing-layout { grid-template-columns: 1fr; }
  .pricing-intro { display: grid; grid-template-columns: 1fr .85fr; align-items: end; }
  .pricing-intro > p { grid-column: 1; }
  .pricing-mascot-wrap { grid-column: 2; grid-row: 1 / 4; min-height: 310px; }
  .pricing-mascot-wrap img { left: 50%; right: auto; bottom: 0; }
  .articles-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 860px) {
  .container { width: min(calc(100% - 34px), var(--container)); }
  .section { padding: 96px 0; }
  .header-cta { display: none; }
  .menu-toggle { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 12px; background: rgba(255,255,255,.04); cursor: pointer; }
  .site-header nav { position: absolute; top: 76px; left: 0; right: 0; padding: 22px; display: grid; gap: 4px; transform: translateY(-12px); border: 1px solid var(--line); border-radius: 18px; background: rgba(7,9,6,.96); backdrop-filter: blur(20px); opacity: 0; visibility: hidden; transition: .25s ease; }
  .site-header nav.open { opacity: 1; visibility: visible; transform: translateY(0); }
  .no-js .site-header nav { opacity: 1; visibility: visible; transform: translateY(0); }
  .site-header nav a { padding: 13px 10px; font-size: 14px; }
  .site-header nav a::after { display: none; }
  .nav-mobile-cta { margin-top: 8px; display: inline-flex !important; justify-content: center; border-radius: 12px; color: #0a1002 !important; background: var(--lime); font-weight: 750; }
  .hero { min-height: 920px; height: auto; padding-top: 115px; }
  .hero::before { background: linear-gradient(0deg, var(--bg), transparent 35%), linear-gradient(90deg, rgba(4,5,4,.92), rgba(4,5,4,.35)); }
  .hero-layout { padding-top: 0; grid-template-columns: 1fr; align-items: start; }
  .hero-copy { max-width: 700px; }
  .hero h1 { font-size: clamp(54px, 10vw, 78px); }
  .hero-visual { height: 520px; margin-top: -20px; }
  .hero-visual > img { --mascot-shift-x: -50%; left: 50%; right: auto; max-width: min(100%, 460px); max-height: 100%; }
  .hero-proof { max-width: 580px; }
  .speed-card { left: 8%; bottom: 135px; }.connection-card { right: 2%; top: 145px; }
  .scroll-hint { display: none; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid > div { min-height: 95px; border-bottom: 1px solid var(--line); }.trust-grid > div:nth-child(2) { border-right: 0; }.trust-grid > div:nth-child(n+3) { border-bottom: 0; }
  .section-heading { grid-template-columns: 1fr; gap: 24px; }.section-heading > p { margin-left: 0; }
  .locations-layout, .how-layout, .faq-layout { grid-template-columns: 1fr; }
  .locations-copy { max-width: 600px; }.network-map { min-height: 560px; }
  .scenario-grid { grid-template-columns: 1fr; }.scenario-card { min-height: 220px; }
  .price-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .price-card:last-child { grid-column: 1 / -1; }
  .price-card:last-child ul { min-height: auto; }
  .how-layout { gap: 25px; }.how-visual { order: 2; min-height: 620px; }.how-copy { order: 1; }
  .faq-layout { gap: 45px; }.faq-title { position: static; }
  .cta-layout { grid-template-columns: 1fr; }.cta-copy { padding: 90px 0 0; }.cta-mascot { height: 500px; }.cta-mascot img { left: 50%; right: auto; max-width: min(100%, 470px); transform: translateX(-50%); }
}

@media (max-width: 620px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 78px 0; }
  .site-header { top: 10px; width: calc(100% - 20px); height: 62px; padding-left: 14px; border-radius: 16px; }
  .hero { min-height: 850px; padding-top: 98px; }
  .hero-bg { background-position: 70% center; opacity: .62; }
  .hero h1 { margin-bottom: 21px; font-size: clamp(46px, 15vw, 68px); line-height: .93; }
  .hero h1 br { display: none; }
  .hero-copy > p { font-size: 15px; }
  .eyebrow { font-size: 9px; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }.hero-actions .button { width: 100%; }
  .hero-proof { margin-top: 30px; padding-top: 22px; gap: 12px; justify-content: space-between; }.hero-proof > div { gap: 6px; }.hero-proof svg { width: 19px; }.hero-proof span { font-size: 8px; }.hero-proof b { font-size: 9px; }
  .hero-visual { height: 410px; margin-top: 0; }.hero-visual > img { left: 50%; right: auto; bottom: 0; max-width: min(100%, 350px); max-height: 100%; }.hero-visual .mascot-halo { width: 400px; height: 400px; }
  .connection-card { top: 100px; right: -2px; transform: scale(.84); transform-origin: right; }.speed-card { left: 0; bottom: 100px; transform: scale(.84); transform-origin: left; }
  .trust-grid b { font-size: 22px; }.trust-grid span { font-size: 10px; }
  h2 { font-size: 43px; }
  .benefit-grid { grid-template-columns: 1fr; }.benefit-card { min-height: 290px; border-right: 0; border-bottom: 1px solid var(--line); }.benefit-card:nth-child(3) { border-bottom: 1px solid var(--line); }.benefit-card:last-child { border-bottom: 0; }
  .network-map { min-height: 430px; border-radius: 24px; }.world-map { top: 5%; height: 70%; }.satellite-orbit { width: 330px; height: 160px; }.satellite { offset-path: ellipse(165px 80px at center); }.map-status { left: 14px; right: 14px; bottom: 15px; min-width: 0; }.map-node { transform: translate(-50%, -50%) scale(.85); }
  .scenario-card { padding: 25px; }
  .pricing-intro { display: block; }.pricing-mascot-wrap { display: none; }.price-cards { grid-template-columns: 1fr; gap: 25px; }.price-card, .price-card:last-child { grid-column: auto; padding: 28px 24px; }.price b { font-size: 70px; }.price-card ul { min-height: auto; }
  .articles-grid { grid-template-columns: 1fr; }
  .article-card { min-height: 290px; }
  .how-visual { min-height: 520px; transform: scale(.85); margin: -35px 0; }.phone-orbit { display: none; }
  .step { grid-template-columns: 48px 1fr; gap: 14px; }.step > b { width: 46px; }.step:not(:last-child)::after { left: 22px; }
  .faq-item summary { font-size: 14px; }.faq-item p { margin-right: 10px; }
  .final-cta { min-height: 750px; }.cta-copy { padding-top: 75px; }.cta-mascot { height: 390px; }.cta-mascot img { left: 50%; right: auto; bottom: 0; max-width: min(100%, 350px); max-height: 100%; transform: translateX(-50%); }
  .footer-main { grid-template-columns: 1fr; gap: 25px; }.footer-links { justify-content: flex-start; }.footer-bottom { flex-direction: column; }
  .error-page { padding: 24px; background-position: 68% center; }
  .error-page p { font-size: 15px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .js [data-reveal] { opacity: 1; transform: none; }
  .hero-bg { transform: none; }
  .tilt-surface { transform: none !important; }
}
