@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  --ink: #03050a;
  --ink-soft: #060a12;
  --ink-raised: #0b1220;
  --paper: #05070d;
  --paper-warm: #080c14;
  --paper-card: #0b111c;
  --line: rgba(148, 163, 184, 0.14);
  --line-light: rgba(148, 163, 184, 0.12);
  --text: #f5f8ff;
  --text-muted: #94a3b8;
  --text-light: #f8fbff;
  --text-light-muted: #8b9ab3;
  --green: #2f7dff;
  --green-strong: #168cff;
  --cyan: #39c8ff;
  --cyan-soft: #a7e7ff;
  --danger: #ff806d;
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  --font-display: "Manrope", "PingFang SC", "Microsoft YaHei", sans-serif;
  --font-body: "DM Sans", "PingFang SC", "Microsoft YaHei", sans-serif;
  --font-mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  color: inherit;
}

img,
svg {
  display: block;
  max-width: 100%;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.site-shell {
  width: 100%;
  overflow: clip;
}

.telegram-rail {
  position: fixed;
  z-index: 90;
  top: 50%;
  right: max(18px, env(safe-area-inset-right));
  display: flex;
  flex-direction: column;
  gap: 9px;
  transform: translateY(-50%);
}

.telegram-rail__item {
  display: flex;
  width: 58px;
  min-height: 62px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 1px solid rgba(79, 157, 255, 0.3);
  border-radius: 15px;
  background: rgba(7, 14, 26, 0.86);
  color: #42a5ff;
  backdrop-filter: blur(16px);
  transition: border-color 180ms ease, background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.telegram-rail__item:hover {
  border-color: rgba(80, 181, 255, 0.72);
  background: rgba(16, 40, 72, 0.94);
  color: #72c8ff;
  transform: translateX(-3px);
}

.telegram-rail__item:focus-visible {
  outline: 2px solid #55baff;
  outline-offset: 3px;
}

.telegram-rail__item svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.telegram-rail__item span {
  color: #a8bad0;
  font-size: 9px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}

.container {
  width: min(1240px, calc(100% - 48px));
  margin-inline: auto;
}

.section-dark {
  position: relative;
  background: var(--ink);
  color: var(--text-light);
}

.section-light {
  position: relative;
  background: var(--paper);
}

.section-mist {
  position: relative;
  background: var(--paper-warm);
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 22px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button svg,
.text-link svg,
.status-pill svg,
.resource-arrow {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 180ms ease;
}

.button:hover svg,
.text-link:hover svg,
.resource-card:hover .resource-arrow {
  transform: translateX(4px);
}

.button--primary {
  background: var(--green);
  color: var(--ink);
  box-shadow: 0 0 0 rgba(145, 255, 173, 0);
}

.button--primary:hover {
  background: #b0ffc2;
  box-shadow: 0 10px 34px rgba(145, 255, 173, 0.18);
}

.button--ghost {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.045);
  color: var(--text-light);
  backdrop-filter: blur(12px);
}

.button--ghost:hover {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
}

.button--outline-light {
  border-color: rgba(255, 255, 255, 0.18);
  background: transparent;
  color: var(--text-light);
}

.button--outline-light:hover {
  border-color: var(--green);
  color: var(--green);
}

.button--small {
  min-height: 42px;
  padding-inline: 18px;
  font-size: 13px;
}

.button--large {
  min-height: 58px;
  padding-inline: 26px;
  font-size: 15px;
}

.button--block {
  width: 100%;
}

.button-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 14px var(--cyan);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #396256;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow i {
  width: 22px;
  height: 1px;
  background: var(--green-strong);
}

.eyebrow--light {
  color: #a9beb6;
}

.section-heading h2,
.security-copy h2,
.network-copy h2,
.final-cta h2 {
  margin: 18px 0 0;
  font-family: var(--font-display);
  font-size: clamp(36px, 3.9vw, 58px);
  font-weight: 700;
  letter-spacing: -0.052em;
  line-height: 1.08;
  text-wrap: balance;
}

.split-heading {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: end;
  gap: 80px;
  margin-bottom: 54px;
}

.heading-copy {
  max-width: 490px;
  padding-bottom: 8px;
}

.heading-copy p,
.centered-heading > p {
  margin: 0 0 24px;
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.75;
}

.centered-heading {
  max-width: 820px;
  margin: 0 auto 50px;
  text-align: center;
}

.centered-heading .eyebrow {
  justify-content: center;
}

.centered-heading h2 {
  margin-bottom: 20px;
}

.centered-heading > p {
  max-width: 630px;
  margin-inline: auto;
}

.centered-heading--dark h2 {
  color: var(--text-light);
}

.centered-heading--dark > p {
  color: var(--text-light-muted);
}

/* Header */
.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid transparent;
  color: var(--text-light);
  transition: background-color 220ms ease, border-color 220ms ease, backdrop-filter 220ms ease;
}

.site-header.is-scrolled,
.site-header.is-menu-open {
  border-bottom-color: rgba(255, 255, 255, 0.08);
  background: rgba(7, 17, 15, 0.84);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  display: flex;
  height: 76px;
  align-items: center;
  gap: 44px;
}

.brand {
  display: inline-flex;
  flex: none;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
}

.brand-mark {
  position: relative;
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(145, 255, 173, 0.26);
  border-radius: 11px;
  background: rgba(145, 255, 173, 0.08);
  transform: rotate(-6deg);
}

.brand-mark::after {
  position: absolute;
  width: 17px;
  height: 17px;
  border: 1px solid rgba(109, 231, 255, 0.4);
  border-radius: 50%;
  content: "";
}

.brand-mark span {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px rgba(145, 255, 173, 0.8);
}

.brand-mark span:nth-child(1) { transform: translate(-8px, 4px); }
.brand-mark span:nth-child(2) { transform: translate(7px, -6px); }
.brand-mark span:nth-child(3) { transform: translate(6px, 8px); background: var(--cyan); }

.brand-name {
  color: #f6fffa;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.brand-name span {
  color: var(--green);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.desktop-nav a,
.nav-login {
  position: relative;
  color: rgba(236, 247, 241, 0.72);
  font-size: 13px;
  font-weight: 500;
  transition: color 180ms ease;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 1px;
  background: var(--green);
  content: "";
  opacity: 0;
  transform: scaleX(0);
  transition: opacity 180ms ease, transform 180ms ease;
}

.desktop-nav a:hover,
.nav-login:hover {
  color: #fff;
}

.desktop-nav a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: auto;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
}

.menu-toggle span {
  width: 17px;
  height: 1px;
  background: #fff;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  z-index: 99;
  top: 76px;
  right: 0;
  left: 0;
  max-height: 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(7, 17, 15, 0.98);
  opacity: 0;
  transition: max-height 280ms ease, opacity 180ms ease;
}

.mobile-menu.is-open {
  max-height: calc(100vh - 76px);
  opacity: 1;
}

.mobile-menu__inner {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-block: 18px 30px;
}

.mobile-menu__inner > a:not(.button) {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
}

.mobile-menu__inner > a span {
  color: var(--text-light-muted);
  font-family: var(--font-mono);
  font-size: 10px;
}

.mobile-menu .button {
  margin-top: 24px;
}

/* Hero */
.hero {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh;
  overflow: hidden;
  padding: 150px 0 30px;
}

.hero-aurora {
  position: absolute;
  top: -26%;
  right: -8%;
  width: 68vw;
  height: 68vw;
  border-radius: 50%;
  background:
    radial-gradient(circle at 42% 48%, rgba(76, 227, 150, 0.16), transparent 30%),
    conic-gradient(from 180deg at 50% 50%, rgba(109, 231, 255, 0.08), rgba(145, 255, 173, 0.15), transparent 38%, rgba(50, 113, 96, 0.08), rgba(109, 231, 255, 0.08));
  filter: blur(50px);
  opacity: 0.9;
  pointer-events: none;
  animation: auroraSpin 24s linear infinite;
}

.hero::after {
  position: absolute;
  top: 180px;
  left: -230px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: rgba(69, 219, 160, 0.07);
  content: "";
  filter: blur(80px);
  pointer-events: none;
}

.hero-grid-lines,
.network-grid-bg,
.cta-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
  pointer-events: none;
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  flex: 1;
  grid-template-columns: minmax(0, 0.88fr) minmax(520px, 1.12fr);
  align-items: center;
  align-content: center;
  gap: 60px;
}

.hero-copy {
  position: relative;
  z-index: 3;
  padding-bottom: 10px;
}

.status-pill {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  padding: 0 13px 0 10px;
  color: #b8c9c2;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.04em;
  backdrop-filter: blur(12px);
}

.status-pill svg {
  width: 14px;
  height: 14px;
  color: var(--green);
}

.status-pulse,
.live-dot {
  position: relative;
  display: inline-block;
  width: 7px;
  height: 7px;
  flex: none;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 12px rgba(145, 255, 173, 0.7);
}

.status-pulse::after,
.live-dot::after {
  position: absolute;
  inset: -4px;
  border: 1px solid rgba(145, 255, 173, 0.35);
  border-radius: 50%;
  content: "";
  animation: pulseRing 2s ease-out infinite;
}

.hero h1 {
  max-width: 700px;
  margin: 28px 0 24px;
  font-family: var(--font-display);
  font-size: clamp(52px, 5.25vw, 80px);
  font-weight: 700;
  letter-spacing: -0.066em;
  line-height: 1.04;
  text-wrap: balance;
}

.hero h1 span {
  background: linear-gradient(96deg, var(--green) 5%, var(--cyan) 74%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-description {
  max-width: 600px;
  margin: 0;
  color: var(--text-light-muted);
  font-size: 17px;
  line-height: 1.85;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 34px;
}

.hero-stats {
  display: grid;
  max-width: 590px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 48px;
  padding-top: 23px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-right: 1px solid rgba(255, 255, 255, 0.09);
  padding-right: 20px;
}

.hero-stat + .hero-stat {
  padding-left: 24px;
}

.hero-stat:last-child {
  border-right: 0;
}

.hero-stat strong {
  color: #fff;
  font-family: var(--font-display);
  font-size: 27px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.15;
}

.hero-stat em {
  color: var(--green);
  font-family: var(--font-mono);
  font-size: 15px;
  font-style: normal;
}

.hero-stat > span {
  color: #7e958d;
  font-size: 12px;
}

.hero-visual {
  position: relative;
  min-width: 0;
  perspective: 1200px;
}

.network-console {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  background: linear-gradient(155deg, rgba(18, 40, 34, 0.9), rgba(6, 17, 14, 0.94));
  box-shadow: 0 42px 120px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transform: rotateX(var(--tilt-y, 0deg)) rotateY(var(--tilt-x, 0deg));
  transform-style: preserve-3d;
  transition: transform 220ms ease-out;
}

.network-console::before {
  position: absolute;
  top: -180px;
  left: 24%;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(109, 231, 255, 0.08);
  content: "";
  filter: blur(55px);
}

.console-topbar,
.map-panel-head {
  position: relative;
  z-index: 3;
  display: flex;
  height: 54px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0 20px;
  color: #90a69e;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.08em;
}

.console-title {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #c1d4cd;
}

.orbital-map {
  position: relative;
  min-height: 430px;
  overflow: hidden;
}

.three-globe-canvas {
  position: absolute;
  z-index: 2;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 500ms ease;
}

.orbital-map.has-three .three-globe-canvas {
  opacity: 1;
}

.orbital-map.has-three .world-map {
  opacity: 0.055;
  filter: blur(0.4px);
}

.orbital-map.has-three .world-map * {
  animation-play-state: paused;
}

.orbital-map::after {
  position: absolute;
  z-index: 2;
  inset: 0;
  background: radial-gradient(circle at 54% 47%, transparent 25%, rgba(2, 5, 12, 0.08) 60%, rgba(2, 5, 12, 0.5) 100%);
  content: "";
  pointer-events: none;
}

.map-glow {
  position: absolute;
  top: 31%;
  left: 34%;
  width: 230px;
  height: 180px;
  border-radius: 50%;
  background: rgba(78, 222, 154, 0.1);
  filter: blur(50px);
}

.orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(109, 231, 255, 0.09);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(-15deg);
}

.orbit--one { width: 540px; height: 265px; }
.orbit--two { width: 410px; height: 360px; transform: translate(-50%, -50%) rotate(36deg); }

.world-map {
  position: absolute;
  z-index: 1;
  inset: 4px -8px auto;
  width: calc(100% + 16px);
  height: 405px;
  transition: opacity 400ms ease, filter 400ms ease;
}

.map-latitudes {
  fill: none;
  stroke: rgba(151, 208, 190, 0.09);
  stroke-width: 0.75;
}

.continent-shapes {
  fill: rgba(130, 198, 176, 0.07);
  stroke: rgba(160, 220, 201, 0.16);
  stroke-width: 1;
}

.route-lines {
  fill: none;
  stroke: url(#routeGradient);
  stroke-dasharray: 4 7;
  stroke-linecap: round;
  stroke-width: 1.3;
}

.route {
  animation: dashFlow 5s linear infinite;
}

.route--2 { animation-delay: -1.3s; }
.route--3 { animation-delay: -2.7s; }
.route--4 { animation-delay: -3.6s; }

.map-nodes circle:not(.node-ring) {
  fill: var(--green);
}

.map-nodes circle:nth-of-type(4n) {
  fill: var(--cyan);
}

.node-ring {
  fill: none;
  stroke: rgba(145, 255, 173, 0.55);
  stroke-width: 1;
  transform-box: fill-box;
  transform-origin: center;
  animation: nodePulse 2.3s ease-out infinite;
}

.node-ring--delay { animation-delay: -1.1s; }

.route-packet {
  fill: #fff;
  filter: drop-shadow(0 0 5px var(--cyan));
  opacity: 0.8;
}

.route-packet--one {
  offset-path: path("M150 145 Q293 40 430 151");
  animation: packetTravel 3.2s linear infinite;
}

.route-packet--two {
  offset-path: path("M430 151 Q435 235 500 323");
  animation: packetTravel 4s 1.5s linear infinite;
}

.node-label {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;
  background: rgba(7, 17, 15, 0.7);
  padding: 5px 8px;
  color: #adc0b9;
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.04em;
  backdrop-filter: blur(10px);
}

.node-label span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
}

.node-label--sg { right: 8%; bottom: 24%; }
.node-label--hk { top: 22%; right: 22%; }

.floating-card {
  position: absolute;
  z-index: 4;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: rgba(9, 25, 21, 0.78);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(14px);
}

.floating-card--traffic {
  top: 27px;
  left: 23px;
  width: 174px;
  padding: 14px 15px 12px;
}

.floating-card--traffic > span,
.floating-card--security span {
  color: #8fa39b;
  font-size: 9px;
}

.floating-card--traffic strong {
  display: block;
  margin-top: 3px;
  color: #f7fffa;
  font-family: var(--font-mono);
  font-size: 19px;
}

.floating-card--traffic small {
  color: #7e928b;
  font-size: 8px;
  font-weight: 400;
}

.mini-bars {
  display: flex;
  height: 32px;
  align-items: end;
  gap: 4px;
  margin-top: 8px;
}

.mini-bars i {
  width: 100%;
  height: var(--h);
  border-radius: 2px 2px 0 0;
  background: linear-gradient(to top, rgba(145, 255, 173, 0.16), var(--green));
  opacity: 0.78;
  transform-origin: bottom;
  animation: barBreathe 2.6s ease-in-out infinite alternate;
}

.mini-bars i:nth-child(2n) { animation-delay: -1.2s; }
.mini-bars i:nth-child(3n) { animation-delay: -0.6s; }

.floating-card--security {
  right: 20px;
  bottom: 25px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 11px 12px;
}

.shield-icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(145, 255, 173, 0.25);
  border-radius: 9px;
  background: rgba(145, 255, 173, 0.08);
  color: var(--green);
}

.shield-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.floating-card--security strong {
  display: block;
  color: #fff;
  font-family: var(--font-mono);
  font-size: 15px;
}

.floating-card--security em {
  border-radius: 999px;
  background: rgba(145, 255, 173, 0.09);
  padding: 4px 6px;
  color: var(--green);
  font-family: var(--font-mono);
  font-size: 7px;
  font-style: normal;
}

.console-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.console-metrics > div {
  position: relative;
  min-width: 0;
  padding: 15px 16px 17px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.console-metrics > div:last-child { border-right: 0; }
.console-metrics span { display: block; color: #758a82; font-size: 9px; }
.console-metrics strong { display: block; margin-top: 2px; color: #f5fff9; font-family: var(--font-mono); font-size: 15px; }
.console-metrics i { position: absolute; right: 13px; bottom: 18px; font-family: var(--font-mono); font-size: 7px; font-style: normal; }
.metric-up, .metric-good, .metric-live { color: var(--green); }
.metric-live::before { display: inline-block; width: 5px; height: 5px; margin-right: 4px; border-radius: 50%; background: var(--green); content: ""; }

.trust-row {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 38px;
  margin-top: 70px;
  padding-top: 27px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.trust-row__label {
  flex: none;
  color: #687e76;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.1em;
}

.trust-items {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  color: #879b94;
  font-size: 12px;
}

.trust-items span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.trust-items svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: #709f90;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Product section */
.products {
  padding: 132px 0;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.product-card {
  position: relative;
  min-height: 430px;
  grid-column: span 5;
  overflow: hidden;
  border: 1px solid rgba(12, 35, 28, 0.1);
  border-radius: var(--radius-lg);
  background: var(--paper-card);
  padding: 28px;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.7) inset;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.product-card:hover {
  border-color: rgba(46, 142, 102, 0.22);
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.product-card--featured {
  grid-column: span 7;
  background: #0b1714;
  color: var(--text-light);
}

.product-card--shield {
  grid-column: span 5;
}

.product-card--analytics {
  grid-column: span 7;
}

.card-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #80928c;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.1em;
}

.card-kicker span {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border: 1px solid rgba(10, 39, 31, 0.12);
  border-radius: 50%;
  color: #5d776e;
}

.product-card--featured .card-kicker span {
  border-color: rgba(255, 255, 255, 0.12);
}

.product-card__copy {
  position: relative;
  z-index: 3;
  max-width: 330px;
}

.product-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-top: 34px;
  border: 1px solid rgba(39, 99, 80, 0.14);
  border-radius: 14px;
  background: rgba(78, 221, 139, 0.09);
  color: #268b5d;
}

.product-card--featured .product-icon {
  border-color: rgba(145, 255, 173, 0.2);
  background: rgba(145, 255, 173, 0.08);
  color: var(--green);
}

.product-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.product-card h3 {
  margin: 22px 0 10px;
  font-family: var(--font-display);
  font-size: 25px;
  letter-spacing: -0.035em;
  line-height: 1.2;
}

.product-card > p,
.product-card__copy > p {
  max-width: 390px;
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.75;
}

.product-card--featured p {
  color: #8fa49c;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
}

.card-link svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.edge-flow {
  position: absolute;
  right: -24px;
  bottom: 0;
  width: 58%;
  height: 76%;
  border-top-left-radius: 180px;
  background: radial-gradient(circle at 0 50%, rgba(145, 255, 173, 0.15), transparent 55%);
}

.edge-flow::after {
  position: absolute;
  inset: 15% 0 0;
  background-image: radial-gradient(rgba(145, 255, 173, 0.16) 1px, transparent 1px);
  background-size: 16px 16px;
  content: "";
  mask-image: radial-gradient(circle at 50% 50%, black, transparent 70%);
}

.edge-flow > svg {
  position: absolute;
  z-index: 2;
  top: 72px;
  left: 4px;
  width: 92%;
}

.flow-path {
  fill: none;
  stroke: rgba(145, 255, 173, 0.38);
  stroke-dasharray: 4 7;
  stroke-width: 1.2;
}

.flow-packet {
  fill: #d8ffe2;
  filter: drop-shadow(0 0 5px var(--green));
}

.packet-one { animation: floatPacketOne 4s linear infinite; }
.packet-two { animation: floatPacketTwo 3.4s 0.8s linear infinite; }
.packet-three { animation: floatPacketThree 4.5s 1.4s linear infinite; }

.flow-origin {
  position: absolute;
  z-index: 4;
  top: 45%;
  left: 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: #799088;
  font-family: var(--font-mono);
  font-size: 8px;
}

.flow-server {
  display: flex;
  width: 46px;
  height: 46px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 12px;
  background: #10221d;
  padding: 8px;
}

.flow-server i {
  height: 2px;
  border-radius: 9px;
  background: #61766f;
}

.flow-server i::before {
  display: block;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--green);
  content: "";
  transform: translateY(-0.5px);
}

.edge-node {
  position: absolute;
  z-index: 5;
  display: flex;
  width: 54px;
  height: 54px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(145, 255, 173, 0.25);
  border-radius: 50%;
  background: #10221d;
  box-shadow: 0 0 0 8px rgba(145, 255, 173, 0.035), 0 10px 30px rgba(0, 0, 0, 0.2);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 10px;
}

.edge-node small { color: var(--green); font-size: 7px; }
.edge-node--one { top: 18%; right: 15%; }
.edge-node--two { top: 47%; right: 6%; }
.edge-node--three { right: 18%; bottom: 11%; }

.shield-meter {
  position: absolute;
  right: 27px;
  bottom: 26px;
  left: 27px;
  display: flex;
  align-items: center;
  gap: 22px;
  border: 1px solid rgba(12, 35, 28, 0.09);
  border-radius: 18px;
  background: #f0f5ee;
  padding: 18px;
}

.shield-rings {
  position: relative;
  display: grid;
  width: 88px;
  height: 88px;
  flex: none;
  place-items: center;
}

.shield-rings i {
  position: absolute;
  border: 1px solid rgba(49, 166, 105, 0.16);
  border-radius: 50%;
}

.shield-rings i:nth-child(1) { width: 84px; height: 84px; animation: shieldSpin 12s linear infinite; border-top-color: var(--green-strong); }
.shield-rings i:nth-child(2) { width: 64px; height: 64px; animation: shieldSpin 8s linear infinite reverse; border-right-color: var(--cyan); }
.shield-rings i:nth-child(3) { width: 45px; height: 45px; background: rgba(76, 220, 139, 0.09); }

.shield-rings svg {
  position: relative;
  z-index: 2;
  width: 23px;
  height: 23px;
  fill: none;
  stroke: #1b915b;
  stroke-width: 1.6;
}

.shield-meter span { display: block; color: #71817b; font-size: 10px; }
.shield-meter strong { display: block; margin-top: 5px; color: #178051; font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.03em; }

.rule-list {
  position: absolute;
  right: 26px;
  bottom: 26px;
  left: 26px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(12, 35, 28, 0.09);
  border-radius: 16px;
  background: #f0f5ee;
  padding: 5px 13px;
}

.rule-list span {
  display: grid;
  min-height: 38px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 9px;
  border-bottom: 1px solid rgba(12, 35, 28, 0.07);
  color: #485b54;
  font-family: var(--font-mono);
  font-size: 8px;
}

.rule-list span:last-child { border-bottom: 0; }
.rule-list i { width: 6px; height: 6px; border-radius: 50%; }
.rule-block { background: var(--danger); box-shadow: 0 0 7px rgba(255, 128, 109, 0.35); }
.rule-pass { background: var(--green-strong); box-shadow: 0 0 7px rgba(84, 232, 137, 0.35); }
.rule-list em { color: #6e817a; font-size: 7px; font-style: normal; }

.analytics-chart {
  position: absolute;
  right: 25px;
  bottom: 24px;
  left: 25px;
  height: 145px;
  overflow: hidden;
  border: 1px solid rgba(12, 35, 28, 0.08);
  border-radius: 16px;
  background:
    linear-gradient(rgba(27, 92, 70, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(27, 92, 70, 0.06) 1px, transparent 1px),
    #f1f5ef;
  background-size: 100% 30px, 70px 100%, auto;
  padding: 16px 16px 25px;
}

.analytics-chart svg { width: 100%; height: 100%; overflow: visible; }
.chart-area { fill: url(#chartFill); }
.chart-line { fill: none; stroke: #37ad72; stroke-linecap: round; stroke-linejoin: round; stroke-width: 2; vector-effect: non-scaling-stroke; }
.chart-labels { position: absolute; right: 16px; bottom: 7px; left: 16px; display: flex; justify-content: space-between; color: #82918c; font-family: var(--font-mono); font-size: 7px; }

/* Network section */
.network {
  overflow: hidden;
  padding: 132px 0;
}

.network::before {
  position: absolute;
  top: -320px;
  right: 20%;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: rgba(68, 224, 155, 0.06);
  content: "";
  filter: blur(100px);
}

.network-grid-bg { mask-image: radial-gradient(circle at 70% 50%, black, transparent 70%); }

.network-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(580px, 1.28fr);
  align-items: center;
  gap: 70px;
}

.network-copy h2 {
  color: #f4fff8;
}

.network-copy h2 span {
  color: var(--green);
}

.network-copy > p {
  max-width: 470px;
  margin: 25px 0 0;
  color: var(--text-light-muted);
  font-size: 16px;
  line-height: 1.8;
}

.region-switcher {
  display: inline-flex;
  margin: 34px 0 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  padding: 4px;
}

.region-tab {
  min-height: 34px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  padding: 0 15px;
  color: #849a92;
  font-size: 11px;
  cursor: pointer;
  transition: background-color 180ms ease, color 180ms ease;
}

.region-tab.is-active {
  background: var(--green);
  color: var(--ink);
  font-weight: 700;
}

.network-stat-grid {
  display: grid;
  max-width: 450px;
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.network-stat-grid > div {
  display: flex;
  min-height: 86px;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 14px 18px;
}

.network-stat-grid strong {
  color: #fff;
  font-family: var(--font-display);
  font-size: 23px;
  letter-spacing: -0.03em;
}

.network-stat-grid span {
  color: #6f857d;
  font-size: 10px;
}

.network-map-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  background: rgba(11, 28, 23, 0.74);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.26);
}

.map-panel-head > div {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #b9cec6;
}

.flat-map {
  position: relative;
  min-height: 470px;
  overflow: hidden;
}

.flat-map > svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.flat-map-grid {
  fill: none;
  stroke: rgba(255, 255, 255, 0.035);
  stroke-width: 1;
}

.flat-continents {
  fill: rgba(126, 190, 169, 0.06);
  stroke: rgba(145, 207, 186, 0.18);
  stroke-width: 1;
}

.flat-routes {
  fill: none;
  stroke: rgba(109, 231, 255, 0.33);
  stroke-dasharray: 4 7;
  stroke-linecap: round;
  stroke-width: 1.1;
  animation: dashFlow 5s linear infinite;
}

.flat-nodes circle {
  fill: var(--green);
  transition: opacity 220ms ease, transform 220ms ease;
  transform-box: fill-box;
  transform-origin: center;
}

.flat-nodes circle:nth-child(3n) { fill: var(--cyan); }
.flat-map[data-filter]:not([data-filter="global"]) .flat-nodes circle { opacity: 0.12; }
.flat-map[data-filter="asia"] .flat-nodes circle[data-node-region="asia"],
.flat-map[data-filter="europe"] .flat-nodes circle[data-node-region="europe"],
.flat-map[data-filter="america"] .flat-nodes circle[data-node-region="america"] { opacity: 1; transform: scale(1.55); }

.map-location {
  position: absolute;
  display: grid;
  grid-template-columns: auto auto;
  gap: 0 7px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  background: rgba(7, 17, 15, 0.78);
  padding: 7px 9px;
  backdrop-filter: blur(10px);
}

.map-location > span {
  width: 6px;
  height: 6px;
  grid-row: span 2;
  align-self: center;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px var(--green);
}

.map-location strong { color: #dbe9e4; font-size: 9px; font-weight: 600; }
.map-location small { color: var(--green); font-family: var(--font-mono); font-size: 7px; }
.map-location--hk { top: 27%; right: 18%; }
.map-location--sg { top: 46%; right: 10%; }
.map-location--fra { top: 25%; left: 48%; }

.map-legend {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  display: flex;
  justify-content: flex-end;
  gap: 18px;
  color: #738981;
  font-size: 8px;
}

.map-legend span { display: flex; align-items: center; gap: 6px; }
.map-legend i { width: 5px; height: 5px; border-radius: 50%; background: var(--green); }
.map-legend span:last-child i { background: var(--cyan); box-shadow: 0 0 9px var(--cyan); }

/* Solutions */
.solutions {
  padding: 132px 0;
}

.solution-tabs {
  display: flex;
  width: fit-content;
  max-width: 100%;
  align-items: center;
  gap: 5px;
  margin: 0 auto 25px;
  border: 1px solid rgba(8, 36, 28, 0.1);
  border-radius: 999px;
  background: #e9efe7;
  padding: 5px;
}

.solution-tab {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  padding: 0 19px;
  color: #60716b;
  font-size: 12px;
  cursor: pointer;
  transition: background-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.solution-tab svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.55;
}

.solution-tab.is-active {
  background: #fff;
  box-shadow: 0 4px 16px rgba(10, 34, 27, 0.08);
  color: var(--text);
  font-weight: 700;
}

.solution-panel {
  display: grid;
  min-height: 600px;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: center;
  gap: 64px;
  overflow: hidden;
  border: 1px solid rgba(7, 30, 23, 0.1);
  border-radius: 32px;
  background: #fbfdf9;
  padding: 58px 42px 58px 58px;
  box-shadow: 0 30px 80px rgba(10, 34, 27, 0.08);
}

.solution-panel.is-switching .solution-copy,
.solution-panel.is-switching .solution-visual {
  opacity: 0;
  transform: translateY(8px);
}

.solution-copy,
.solution-visual {
  transition: opacity 180ms ease, transform 180ms ease;
}

.solution-index {
  color: #3f7d68;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
}

.solution-copy h3 {
  margin: 19px 0 19px;
  font-family: var(--font-display);
  font-size: clamp(30px, 3vw, 44px);
  letter-spacing: -0.048em;
  line-height: 1.2;
}

.solution-copy > p {
  margin: 0;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.8;
}

.solution-copy ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 27px 0 29px;
  padding: 0;
  list-style: none;
}

.solution-copy li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #40534c;
  font-size: 13px;
}

.solution-copy li svg {
  width: 17px;
  height: 17px;
  flex: none;
  border-radius: 50%;
  background: rgba(70, 211, 132, 0.12);
  padding: 3px;
  fill: none;
  stroke: #1e965e;
  stroke-width: 2.2;
}

.solution-visual {
  position: relative;
  min-width: 0;
  min-height: 460px;
}

.solution-visual::before {
  position: absolute;
  inset: 5% 0 0 10%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(88, 228, 154, 0.16), transparent 67%);
  content: "";
  filter: blur(16px);
}

.browser-frame {
  position: absolute;
  top: 26px;
  right: 0;
  left: 15px;
  overflow: hidden;
  border: 1px solid rgba(8, 31, 24, 0.16);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 30px 70px rgba(8, 38, 29, 0.16);
  transform: perspective(1200px) rotateY(-4deg) rotateX(2deg);
}

.browser-bar {
  display: flex;
  height: 42px;
  align-items: center;
  gap: 5px;
  border-bottom: 1px solid rgba(9, 35, 27, 0.09);
  background: #f6f8f5;
  padding: 0 12px;
}

.browser-bar > i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #c8d0cc;
}

.browser-bar > i:first-child { background: #ff8e7e; }
.browser-bar > i:nth-child(2) { background: #ffd36b; }
.browser-bar > i:nth-child(3) { background: #7ee7a9; }

.browser-bar > span {
  margin-left: 8px;
  color: #75847f;
  font-family: var(--font-mono);
  font-size: 7px;
}

.browser-bar em {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
  color: #21895a;
  font-family: var(--font-mono);
  font-size: 7px;
  font-style: normal;
}

.browser-bar em svg {
  width: 12px;
  height: 12px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

.shop-preview {
  display: grid;
  min-height: 350px;
  grid-template-columns: 70px 1fr;
}

.shop-sidebar {
  display: flex;
  flex-direction: column;
  gap: 15px;
  border-right: 1px solid #edf0ed;
  padding: 19px 14px;
}

.shop-sidebar b {
  width: 38px;
  height: 8px;
  border-radius: 5px;
  background: #0e1d19;
}

.shop-sidebar span {
  width: 30px;
  height: 4px;
  border-radius: 3px;
  background: #dce3df;
}

.shop-content { padding: 14px; }

.shop-hero {
  position: relative;
  height: 210px;
  overflow: hidden;
  border-radius: 12px;
  background:
    radial-gradient(circle at 75% 30%, rgba(255,255,255,.3), transparent 15%),
    linear-gradient(120deg, #c6ffb8, #6be7c3 58%, #5dbfd5);
  padding: 27px;
}

.solution-visual[data-solution-visual="gaming"] .shop-hero {
  background: radial-gradient(circle at 78% 26%, rgba(255,255,255,.26), transparent 13%), linear-gradient(120deg, #bdc7ff, #8587f1 55%, #6648bf);
}

.solution-visual[data-solution-visual="media"] .shop-hero {
  background: radial-gradient(circle at 72% 30%, rgba(255,255,255,.28), transparent 14%), linear-gradient(120deg, #ffd7ad, #ff997d 55%, #df5f91);
}

.solution-visual[data-solution-visual="api"] .shop-hero {
  background: radial-gradient(circle at 72% 28%, rgba(255,255,255,.25), transparent 14%), linear-gradient(120deg, #a9f4ff, #6cc9dc 55%, #4381a7);
}

.shop-hero::after {
  position: absolute;
  right: -20px;
  bottom: -90px;
  width: 250px;
  height: 250px;
  border: 40px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  content: "";
}

.shop-hero span { position: relative; z-index: 2; color: rgba(7,17,15,.65); font-family: var(--font-mono); font-size: 7px; }
.shop-hero strong { position: relative; z-index: 2; display: block; margin: 15px 0 17px; color: #0b2119; font-family: var(--font-display); font-size: 34px; letter-spacing: -0.06em; line-height: .9; }
.shop-hero button { position: relative; z-index: 2; min-height: 28px; border: 0; border-radius: 999px; background: #0b1d17; padding: 0 13px; color: #fff; font-family: var(--font-mono); font-size: 6px; }

.shop-products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  margin-top: 10px;
}

.shop-products i {
  height: 78px;
  border-radius: 9px;
  background: linear-gradient(145deg, #edf0ed, #dce9e3);
}

.shop-products i:nth-child(2) { background: linear-gradient(145deg, #e5ecff, #d6e2ee); }
.shop-products i:nth-child(3) { background: linear-gradient(145deg, #fff0d9, #ece1cf); }

.speed-card {
  position: absolute;
  z-index: 5;
  display: grid;
  min-width: 150px;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 1px 12px;
  border: 1px solid rgba(9, 34, 27, 0.11);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 15px 40px rgba(7, 37, 27, 0.12);
  padding: 12px 14px;
  backdrop-filter: blur(10px);
}

.speed-card span { grid-column: span 2; color: #71817b; font-size: 9px; }
.speed-card strong { font-family: var(--font-mono); font-size: 20px; line-height: 1; }
.speed-card em { color: #168752; font-family: var(--font-mono); font-size: 8px; font-style: normal; }
.speed-card--top { top: 0; right: -12px; }
.speed-card--bottom { bottom: 7px; left: -7px; }

/* Security flow */
.security-stack {
  overflow: hidden;
  padding: 132px 0;
}

.security-layout {
  display: grid;
  grid-template-columns: minmax(550px, 1.15fr) minmax(350px, 0.85fr);
  align-items: center;
  gap: 82px;
}

.security-visual {
  position: relative;
}

.security-visual::before {
  position: absolute;
  inset: -60px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(65, 220, 137, 0.14), transparent 65%);
  content: "";
  filter: blur(30px);
}

.request-flow-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(7, 34, 25, 0.14);
  border-radius: 28px;
  background: #0b1814;
  box-shadow: 0 35px 90px rgba(7, 30, 23, 0.18);
  color: #eef9f3;
}

.request-flow-card::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 32px 32px;
  content: "";
  pointer-events: none;
}

.request-head {
  position: relative;
  display: flex;
  height: 50px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0 18px;
  color: #8ba097;
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.08em;
}

.request-head em { display: flex; align-items: center; gap: 7px; color: #a4b7b0; font-style: normal; }
.request-head i { width: 6px; height: 6px; border-radius: 50%; background: var(--green); box-shadow: 0 0 9px var(--green); }

.pipeline {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 48px 1fr 48px 1fr;
  align-items: center;
  padding: 30px 22px 27px;
}

.pipeline-step {
  position: relative;
  display: flex;
  min-height: 155px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
}

.pipeline-step > span {
  position: absolute;
  top: 10px;
  left: 11px;
  color: #526960;
  font-family: var(--font-mono);
  font-size: 7px;
}

.pipeline-step svg {
  width: 31px;
  height: 31px;
  margin-bottom: 13px;
  fill: none;
  stroke: #94aaa1;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.35;
}

.pipeline-step b { font-size: 12px; font-weight: 600; }
.pipeline-step small { margin-top: 4px; color: #71867e; font-family: var(--font-mono); font-size: 7px; }
.pipeline-step--edge { border-color: rgba(145, 255, 173, 0.25); background: rgba(145, 255, 173, 0.065); box-shadow: inset 0 0 40px rgba(145, 255, 173, 0.04); }
.pipeline-step--edge svg { color: var(--green); stroke: currentColor; filter: drop-shadow(0 0 8px rgba(145,255,173,.4)); }
.pipeline-step--edge small { color: var(--green); }

.pipeline-arrow {
  display: flex;
  justify-content: center;
  gap: 4px;
}

.pipeline-arrow i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #546a62;
  animation: arrowDot 1.2s ease-in-out infinite;
}

.pipeline-arrow i:nth-child(2) { animation-delay: .15s; }
.pipeline-arrow i:nth-child(3) { animation-delay: .3s; }

.blocked-stream {
  position: relative;
  margin: 0 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: rgba(4, 12, 10, 0.4);
}

.blocked-stream > div {
  display: grid;
  min-height: 36px;
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 0 13px;
  font-family: var(--font-mono);
  font-size: 7px;
}

.blocked-stream > div:last-child { border-bottom: 0; }
.blocked-stream span { color: #7d9189; }
.blocked-stream b { color: #aebfb8; font-size: 7px; font-weight: 500; }
.blocked-stream em { border-radius: 4px; background: rgba(255, 128, 109, 0.11); padding: 3px 5px; color: var(--danger); font-size: 6px; font-style: normal; }
.blocked-stream > div:last-child em { background: rgba(109, 231, 255, 0.1); color: var(--cyan); }

.request-footer {
  position: relative;
  display: flex;
  height: 54px;
  align-items: center;
  gap: 18px;
  margin-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0 20px;
  color: #7f948c;
  font-size: 8px;
}

.request-footer span { display: flex; align-items: center; gap: 6px; }
.request-footer i { width: 6px; height: 6px; border-radius: 50%; background: var(--green); }
.request-footer span:nth-child(2) i { background: var(--danger); }
.request-footer strong { margin-left: auto; color: var(--green); font-family: var(--font-mono); font-size: 7px; }

.security-copy h2 {
  font-size: clamp(36px, 3.7vw, 54px);
}

.security-copy > p {
  margin: 24px 0 29px;
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.8;
}

.security-list {
  border-top: 1px solid rgba(9, 40, 31, 0.12);
}

.security-list > div {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 14px;
  border-bottom: 1px solid rgba(9, 40, 31, 0.12);
  padding: 20px 0;
}

.security-list > div > span {
  padding-top: 3px;
  color: #4a7869;
  font-family: var(--font-mono);
  font-size: 9px;
}

.security-list h3 {
  margin: 0 0 5px;
  font-family: var(--font-display);
  font-size: 16px;
}

.security-list p {
  margin: 0;
  color: var(--text-muted);
  font-size: 12px;
}

/* Onboarding */
.onboarding {
  padding: 132px 0;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.step-card {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  border: 1px solid rgba(8, 35, 27, 0.1);
  border-radius: var(--radius-lg);
  background: #fbfdf9;
  padding: 29px;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.step-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }

.step-card::after {
  position: absolute;
  top: -90px;
  right: -70px;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(50, 170, 112, 0.08);
  border-radius: 50%;
  box-shadow: 0 0 0 30px rgba(50, 170, 112, 0.025), 0 0 0 60px rgba(50, 170, 112, 0.018);
  content: "";
}

.step-number {
  color: #769087;
  font-family: var(--font-mono);
  font-size: 9px;
}

.step-icon {
  display: grid;
  width: 47px;
  height: 47px;
  place-items: center;
  margin-top: 37px;
  border-radius: 14px;
  background: #e7f4e9;
  color: #258c5c;
}

.step-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.55;
}

.step-card h3 { margin: 20px 0 8px; font-family: var(--font-display); font-size: 20px; letter-spacing: -0.03em; }
.step-card p { max-width: 300px; margin: 0; color: var(--text-muted); font-size: 13px; }
.step-card code { position: absolute; right: 29px; bottom: 27px; left: 29px; overflow: hidden; border: 1px solid rgba(12, 49, 37, 0.09); border-radius: 10px; background: #eef3ec; padding: 10px 12px; color: #3a6657; font-family: var(--font-mono); font-size: 9px; text-overflow: ellipsis; white-space: nowrap; }

.step-toggles {
  position: absolute;
  right: 29px;
  bottom: 27px;
  left: 29px;
  display: flex;
  gap: 8px;
}

.step-toggles span { display: flex; align-items: center; gap: 6px; border: 1px solid rgba(11, 49, 37, 0.09); border-radius: 999px; background: #eef3ec; padding: 7px 10px; color: #61766e; font-size: 8px; }
.step-toggles i { position: relative; width: 18px; height: 10px; border-radius: 999px; background: var(--green-strong); }
.step-toggles i::after { position: absolute; top: 2px; right: 2px; width: 6px; height: 6px; border-radius: 50%; background: #fff; content: ""; }

.step-success {
  position: absolute;
  right: 29px;
  bottom: 27px;
  left: 29px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(46, 177, 108, 0.15);
  border-radius: 11px;
  background: rgba(69, 211, 132, 0.08);
  padding: 9px 11px;
  color: #226f4c;
  font-size: 10px;
}

.step-success svg { width: 20px; height: 20px; border-radius: 50%; background: #3dca7d; padding: 4px; fill: none; stroke: #fff; stroke-width: 2; }
.step-success span { display: flex; flex-direction: column; font-weight: 600; }
.step-success small { color: #71847d; font-size: 7px; font-weight: 400; }

/* Pricing */
.pricing {
  overflow: hidden;
  padding: 132px 0 70px;
}

.pricing-glow {
  position: absolute;
  top: -280px;
  left: 50%;
  width: 800px;
  height: 600px;
  border-radius: 50%;
  background: rgba(70, 224, 150, 0.08);
  filter: blur(90px);
  transform: translateX(-50%);
}

.billing-toggle {
  display: flex;
  width: fit-content;
  margin: 30px auto 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  padding: 4px;
}

.billing-toggle button {
  min-height: 34px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  padding: 0 14px;
  color: #82978f;
  font-size: 10px;
  cursor: pointer;
}

.billing-toggle button.is-active { background: #f4fff7; color: var(--ink); font-weight: 700; }
.billing-toggle span { margin-left: 3px; color: #218353; font-size: 7px; }

.pricing-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: stretch;
  gap: 14px;
}

.price-card {
  position: relative;
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.035);
  padding: 24px;
  transition: border-color 200ms ease, transform 200ms ease, background-color 200ms ease;
}

.price-card:hover { border-color: rgba(145, 255, 173, 0.25); background: rgba(255, 255, 255, 0.05); transform: translateY(-5px); }
.price-card--popular { border-color: rgba(145, 255, 173, 0.42); background: linear-gradient(180deg, rgba(145, 255, 173, 0.08), rgba(255, 255, 255, 0.04)); box-shadow: 0 24px 70px rgba(0, 0, 0, 0.2); }
.popular-label { position: absolute; top: 18px; right: 18px; border-radius: 999px; background: var(--green); padding: 5px 9px; color: var(--ink); font-size: 8px; font-weight: 700; }

.price-card__head { display: flex; align-items: center; gap: 9px; color: #789088; font-family: var(--font-mono); font-size: 8px; letter-spacing: 0.09em; }
.price-card__head em { border-left: 1px solid rgba(255, 255, 255, 0.15); padding-left: 9px; color: #657b73; font-style: normal; letter-spacing: 0; }
.price-card h3 { margin: 24px 0 5px; color: #f3fbf6; font-family: var(--font-display); font-size: 25px; letter-spacing: -0.035em; }
.price-card > p { min-height: 45px; margin: 0; color: #849991; font-size: 12px; }

.price { display: flex; min-height: 64px; align-items: baseline; margin: 23px 0 21px; color: #fff; }
.price small { margin-right: 4px; color: var(--green); font-family: var(--font-display); font-size: 16px; }
.price strong { font-family: var(--font-display); font-size: 45px; letter-spacing: -0.06em; line-height: 1; transition: opacity 140ms ease, transform 140ms ease; }
.price strong.is-changing { opacity: 0; transform: translateY(5px); }
.price > span { margin-left: 8px; color: #748a82; font-size: 10px; }
.price--custom { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; }
.price--custom strong { font-size: 37px; }
.price--custom span { margin: 2px 0 0; }

.button--price { width: 100%; border-color: rgba(255, 255, 255, 0.14); background: rgba(255, 255, 255, 0.05); color: #f2fff6; }
.button--price:hover { border-color: var(--green); color: var(--green); }
.price-card ul { display: flex; flex-direction: column; gap: 13px; margin: 27px 0 0; padding: 27px 0 0; border-top: 1px solid rgba(255, 255, 255, 0.08); list-style: none; }
.price-card li { display: flex; align-items: center; gap: 9px; color: #9cafA8; font-size: 11px; }
.price-card li svg { width: 16px; height: 16px; flex: none; border-radius: 50%; background: rgba(145, 255, 173, 0.08); padding: 3px; fill: none; stroke: var(--green); stroke-width: 2.2; }
.price-card li.is-unavailable { color: #59677d; }
.price-card li.is-unavailable svg { background: rgba(100, 116, 139, 0.1); stroke: #59677d; }
.price-addon { margin-top: 18px; border: 1px dashed rgba(96, 165, 250, 0.22); border-radius: 12px; background: rgba(47, 125, 255, 0.055); padding: 11px 13px; color: #8293aa; font-size: 10px; line-height: 1.65; }
.price-addon a { color: #8ec8ff; }
.pricing-note { margin: 25px 0 0; color: #536a61; font-size: 9px; text-align: center; }

/* Resources / FAQ */
.resources {
  padding: 132px 0;
}

.resources-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
  gap: 90px;
}

.faq-area .section-heading { margin-bottom: 34px; }
.faq-area .section-heading h2 { font-size: clamp(36px, 3.7vw, 52px); }
.faq-list { border-top: 1px solid rgba(8, 38, 29, 0.13); }

.faq-item { border-bottom: 1px solid rgba(8, 38, 29, 0.13); }
.faq-item button { display: flex; width: 100%; min-height: 76px; align-items: center; justify-content: space-between; gap: 20px; border: 0; background: transparent; padding: 0; color: var(--text); text-align: left; cursor: pointer; }
.faq-item button span { font-family: var(--font-display); font-size: 16px; font-weight: 600; }
.faq-item button i { position: relative; width: 30px; height: 30px; flex: none; border: 1px solid rgba(7, 37, 28, 0.13); border-radius: 50%; }
.faq-item button i::before, .faq-item button i::after { position: absolute; top: 50%; left: 50%; width: 10px; height: 1px; background: #49665c; content: ""; transform: translate(-50%, -50%); transition: transform 180ms ease; }
.faq-item button i::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-item.is-open button i::after { transform: translate(-50%, -50%) rotate(0); }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 240ms ease; }
.faq-answer p { min-height: 0; overflow: hidden; margin: 0; color: var(--text-muted); font-size: 13px; line-height: 1.75; }
.faq-item.is-open .faq-answer { grid-template-rows: 1fr; }
.faq-item.is-open .faq-answer p { padding: 0 50px 24px 0; }

.resource-cards {
  align-self: start;
  border: 1px solid rgba(7, 37, 28, 0.1);
  border-radius: 28px;
  background: #eaf0e8;
  padding: 24px;
}

.resource-label { display: block; margin: 4px 0 17px; color: #637970; font-family: var(--font-mono); font-size: 9px; letter-spacing: .1em; }
.resource-card { display: grid; min-height: 92px; grid-template-columns: auto 1fr auto; align-items: center; gap: 14px; border-top: 1px solid rgba(7, 37, 28, 0.1); transition: transform 180ms ease; }
.resource-card:hover { transform: translateX(4px); }
.resource-icon { display: grid; width: 42px; height: 42px; place-items: center; border: 1px solid rgba(31, 119, 81, 0.12); border-radius: 12px; background: rgba(76, 211, 135, 0.09); color: #26855a; }
.resource-icon svg { width: 21px; height: 21px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.5; }
.resource-card h3 { margin: 0 0 3px; font-family: var(--font-display); font-size: 14px; }
.resource-card p { margin: 0; color: var(--text-muted); font-size: 10px; }
.resource-arrow { width: 17px; height: 17px; color: #647a72; }
.support-status { display: flex; min-height: 56px; align-items: center; justify-content: space-between; margin-top: 7px; border-radius: 12px; background: #dfe9df; padding: 0 14px; color: #5f746c; font-size: 9px; }
.support-status span { display: flex; align-items: center; gap: 7px; }
.support-status i { width: 6px; height: 6px; border-radius: 50%; background: var(--green-strong); box-shadow: 0 0 8px rgba(84,232,137,.5); }
.support-status strong { color: #277a54; font-family: var(--font-mono); font-size: 9px; }

/* Final CTA */
.final-cta {
  overflow: hidden;
  padding: 118px 0;
  text-align: center;
}

.cta-grid { background-size: 50px 50px; mask-image: radial-gradient(circle at center, black, transparent 70%); }
.cta-orb { position: absolute; border-radius: 50%; filter: blur(70px); }
.cta-orb--one { top: -160px; left: 20%; width: 420px; height: 320px; background: rgba(77, 224, 153, 0.1); }
.cta-orb--two { right: 18%; bottom: -180px; width: 420px; height: 320px; background: rgba(109, 231, 255, 0.08); }
.final-cta__inner { position: relative; z-index: 2; }
.final-cta h2 { color: #f5fff9; font-size: clamp(42px, 5vw, 68px); }
.final-cta p { margin: 24px auto 0; color: var(--text-light-muted); font-size: 16px; }
.final-actions { display: flex; justify-content: center; gap: 13px; margin-top: 34px; }
.cta-assurance { display: flex; justify-content: center; gap: 28px; margin-top: 28px; color: #758c83; font-size: 10px; }
.cta-assurance span { display: flex; align-items: center; gap: 6px; }
.cta-assurance svg { width: 15px; height: 15px; border-radius: 50%; background: rgba(145,255,173,.09); padding: 3px; fill: none; stroke: var(--green); stroke-width: 2.2; }

/* Footer */
.site-footer {
  background: #050d0b;
  color: var(--text-light);
}

.footer-main {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 100px;
  padding: 76px 0 64px;
}

.brand--footer { width: fit-content; }
.footer-brand p { margin: 23px 0 22px; color: #748a82; font-size: 12px; line-height: 1.8; }
.footer-status { display: inline-flex; align-items: center; gap: 8px; border: 1px solid rgba(255,255,255,.08); border-radius: 999px; padding: 7px 10px; color: #789087; font-family: var(--font-mono); font-size: 7px; }
.footer-status i { width: 6px; height: 6px; border-radius: 50%; background: var(--green); box-shadow: 0 0 8px var(--green); }

.footer-links { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.footer-links h3 { margin: 0 0 20px; color: #d7e5df; font-family: var(--font-display); font-size: 11px; }
.footer-links a { display: block; width: fit-content; margin-top: 12px; color: #6f837b; font-size: 10px; transition: color 180ms ease; }
.footer-links a:hover { color: var(--green); }
.footer-bottom { display: flex; min-height: 60px; align-items: center; justify-content: space-between; border-top: 1px solid rgba(255,255,255,.07); color: #4f655d; font-size: 8px; }

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms cubic-bezier(.2,.75,.25,1), transform 700ms cubic-bezier(.2,.75,.25,1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 90ms; }
.reveal-delay-2 { transition-delay: 180ms; }
.reveal-delay-3 { transition-delay: 270ms; }
.reveal-delay-4 { transition-delay: 360ms; }

/* Keyframes */
@keyframes pulseRing {
  0% { opacity: 0.8; transform: scale(.6); }
  70%, 100% { opacity: 0; transform: scale(1.6); }
}

@keyframes auroraSpin {
  to { transform: rotate(360deg); }
}

@keyframes dashFlow {
  to { stroke-dashoffset: -55; }
}

@keyframes nodePulse {
  0% { opacity: .8; transform: scale(.35); }
  85%, 100% { opacity: 0; transform: scale(1.6); }
}

@keyframes packetTravel {
  0% { offset-distance: 0%; opacity: 0; }
  10%, 90% { opacity: 1; }
  100% { offset-distance: 100%; opacity: 0; }
}

@keyframes barBreathe {
  to { transform: scaleY(.72); opacity: .5; }
}

@keyframes shieldSpin { to { transform: rotate(360deg); } }

@keyframes arrowDot {
  0%, 100% { background: #536860; transform: scale(.8); }
  50% { background: var(--green); box-shadow: 0 0 8px rgba(145,255,173,.6); transform: scale(1.1); }
}

@keyframes floatPacketOne {
  0% { cx: 56px; cy: 96px; opacity: 0; }
  12% { opacity: 1; }
  100% { cx: 360px; cy: 55px; opacity: 0; }
}

@keyframes floatPacketTwo {
  0% { cx: 56px; cy: 96px; opacity: 0; }
  12% { opacity: 1; }
  100% { cx: 370px; cy: 96px; opacity: 0; }
}

@keyframes floatPacketThree {
  0% { cx: 56px; cy: 96px; opacity: 0; }
  12% { opacity: 1; }
  100% { cx: 360px; cy: 137px; opacity: 0; }
}

/* Responsive */
@media (max-width: 1120px) {
  .desktop-nav { gap: 20px; }
  .nav-wrap { gap: 28px; }
  .hero-layout { grid-template-columns: minmax(0, .9fr) minmax(470px, 1.1fr); gap: 34px; }
  .hero h1 { font-size: clamp(48px, 5.5vw, 67px); }
  .network-layout { grid-template-columns: minmax(300px, .75fr) minmax(500px, 1.25fr); gap: 42px; }
  .security-layout { grid-template-columns: minmax(490px, 1.05fr) minmax(330px, .95fr); gap: 52px; }
  .pricing-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .resources-layout { gap: 55px; }
}

@media (max-width: 980px) {
  .container { width: min(calc(100% - 40px), 780px); }
  .desktop-nav, .nav-actions { display: none; }
  .menu-toggle { display: flex; margin-left: auto; }
  .hero { min-height: auto; padding-top: 132px; }
  .hero-layout { grid-template-columns: 1fr; gap: 58px; }
  .hero-copy { max-width: 720px; }
  .hero-description { max-width: 660px; }
  .hero-visual { width: 100%; max-width: 720px; margin-inline: auto; }
  .trust-row { align-items: flex-start; }
  .trust-items { flex-wrap: wrap; justify-content: flex-start; }
  .split-heading { grid-template-columns: 1fr; gap: 28px; }
  .heading-copy { padding-bottom: 0; }
  .product-card--featured, .product-card--analytics { grid-column: span 12; }
  .product-card, .product-card--shield { grid-column: span 6; }
  .product-card--analytics { min-height: 410px; }
  .network-layout { grid-template-columns: 1fr; gap: 58px; }
  .network-copy { max-width: 650px; }
  .network-map-panel { width: 100%; }
  .solution-panel { grid-template-columns: 1fr; gap: 45px; padding: 45px; }
  .solution-copy { max-width: 650px; }
  .solution-visual { min-height: 500px; }
  .security-layout { grid-template-columns: 1fr; gap: 60px; }
  .security-copy { max-width: 680px; }
  .steps-grid { grid-template-columns: 1fr; }
  .step-card { min-height: 290px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 590px; margin-inline: auto; }
  .price-card > p { min-height: auto; }
  .resources-layout { grid-template-columns: 1fr; }
  .resource-cards { max-width: 590px; }
  .footer-main { grid-template-columns: 1fr; gap: 50px; }
}

@media (max-width: 680px) {
  .container { width: min(calc(100% - 30px), 600px); }
  .telegram-rail { top: auto; right: max(14px, env(safe-area-inset-right)); bottom: max(14px, env(safe-area-inset-bottom)); flex-direction: row; transform: none; }
  .telegram-rail__item { width: 44px; min-height: 44px; border-radius: 13px; }
  .telegram-rail__item svg { width: 21px; height: 21px; }
  .telegram-rail__item span { display: none; }
  .nav-wrap { height: 68px; }
  .mobile-menu { top: 68px; }
  .brand-mark { width: 31px; height: 31px; }
  .brand-name { font-size: 16px; }
  .hero { padding: 112px 0 26px; }
  .hero-aurora { animation: none; }
  .hero h1 { margin-top: 23px; font-size: clamp(43px, 12.7vw, 64px); letter-spacing: -0.06em; }
  .hero-description { font-size: 15px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-stats { grid-template-columns: repeat(3, minmax(0, 1fr)); margin-top: 38px; }
  .hero-stat { padding-right: 10px; }
  .hero-stat + .hero-stat { padding-left: 12px; }
  .hero-stat strong { font-size: 20px; }
  .hero-stat em { font-size: 11px; }
  .hero-stat > span { font-size: 9px; line-height: 1.4; }
  .network-console { border-radius: 20px; }
  .console-topbar { height: 45px; padding-inline: 13px; font-size: 7px; }
  .orbital-map { min-height: 335px; }
  .world-map { top: 4px; height: 315px; }
  .floating-card--traffic { top: 15px; left: 12px; width: 132px; padding: 10px; }
  .floating-card--traffic strong { font-size: 14px; }
  .mini-bars { height: 22px; }
  .floating-card--security { right: 10px; bottom: 15px; gap: 7px; padding: 8px; }
  .floating-card--security strong { font-size: 11px; }
  .shield-icon { width: 28px; height: 28px; }
  .node-label--hk { right: 14%; }
  .node-label--sg { display: none; }
  .console-metrics > div { padding: 12px 8px; }
  .console-metrics span { font-size: 7px; }
  .console-metrics strong { font-size: 10px; }
  .console-metrics i { display: none; }
  .trust-row { flex-direction: column; gap: 18px; margin-top: 48px; }
  .trust-items { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; }
  .trust-items span { font-size: 10px; }
  .products, .network, .solutions, .security-stack, .onboarding, .resources { padding: 90px 0; }
  .section-heading h2, .security-copy h2, .network-copy h2 { font-size: clamp(34px, 9.8vw, 46px); }
  .split-heading { margin-bottom: 37px; }
  .heading-copy p, .centered-heading > p { font-size: 14px; }
  .product-grid { grid-template-columns: 1fr; }
  .product-card, .product-card--featured, .product-card--shield, .product-card--analytics { min-height: 420px; grid-column: auto; }
  .product-card { padding: 23px; }
  .product-card--featured { min-height: 590px; }
  .product-card__copy { max-width: 100%; }
  .edge-flow { right: -10px; width: 100%; height: 57%; }
  .edge-node--one { right: 12%; }
  .edge-node--two { right: 3%; }
  .edge-node--three { right: 15%; }
  .network-stat-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .region-switcher { width: 100%; }
  .region-tab { flex: 1; padding-inline: 5px; }
  .flat-map { min-height: 360px; }
  .map-location--fra { display: none; }
  .map-location--hk { right: 11%; }
  .solution-tabs { width: 100%; overflow-x: auto; justify-content: flex-start; border-radius: 14px; scrollbar-width: none; }
  .solution-tabs::-webkit-scrollbar { display: none; }
  .solution-tab { flex: none; }
  .solution-panel { min-height: 0; border-radius: 24px; padding: 30px 22px; }
  .solution-copy h3 { font-size: 31px; }
  .solution-visual { min-height: 390px; }
  .browser-frame { top: 30px; left: 0; transform: none; }
  .shop-preview { min-height: 280px; grid-template-columns: 50px 1fr; }
  .shop-hero { height: 175px; padding: 20px; }
  .shop-hero strong { font-size: 27px; }
  .shop-products i { height: 60px; }
  .speed-card { min-width: 125px; padding: 9px 11px; }
  .speed-card strong { font-size: 15px; }
  .speed-card--top { right: -5px; }
  .speed-card--bottom { bottom: -1px; left: -3px; }
  .request-flow-card { border-radius: 21px; }
  .pipeline { grid-template-columns: 1fr; gap: 15px; padding-inline: 18px; }
  .pipeline-step { min-height: 120px; }
  .pipeline-arrow { height: 22px; flex-direction: column; align-items: center; }
  .blocked-stream { margin-inline: 18px; }
  .blocked-stream > div { grid-template-columns: 1fr auto; }
  .blocked-stream b { display: none; }
  .request-footer { padding-inline: 13px; gap: 10px; }
  .request-footer strong { display: none; }
  .step-card { min-height: 310px; padding: 24px; }
  .pricing { padding: 90px 0 55px; }
  .price-card { padding: 25px; }
  .resources-layout { gap: 50px; }
  .resource-cards { padding: 18px; }
  .final-cta { padding: 90px 0; }
  .final-cta h2 { font-size: clamp(38px, 11vw, 54px); }
  .final-actions { flex-direction: column; }
  .final-actions .button { width: 100%; }
  .cta-assurance { flex-wrap: wrap; gap: 12px 18px; }
  .footer-main { padding-top: 60px; }
  .footer-links { grid-template-columns: repeat(2, 1fr); row-gap: 38px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; justify-content: center; gap: 4px; padding-block: 16px; }
}

@media (max-width: 390px) {
  .hero h1 { font-size: 42px; }
  .hero-stats { grid-template-columns: 1fr; gap: 15px; }
  .hero-stat { border-right: 0; padding: 0 0 12px; border-bottom: 1px solid rgba(255,255,255,.08); }
  .hero-stat + .hero-stat { padding-left: 0; }
  .trust-items { grid-template-columns: 1fr; }
  .console-time { display: none; }
  .floating-card--security em { display: none; }
  .network-stat-grid { grid-template-columns: 1fr; }
  .solution-panel { padding-inline: 18px; }
  .shop-sidebar { display: none; }
  .shop-preview { grid-template-columns: 1fr; }
  .speed-card--top { top: 4px; }
}

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

/* Black + electric blue theme */
body {
  background: #03050a;
}

.section-light {
  background:
    radial-gradient(circle at 88% 12%, rgba(47, 125, 255, 0.065), transparent 31%),
    #05070d;
  color: var(--text);
}

.section-mist {
  background:
    radial-gradient(circle at 14% 46%, rgba(57, 200, 255, 0.045), transparent 34%),
    #080c14;
  color: var(--text);
}

.site-header.is-scrolled,
.site-header.is-menu-open {
  background: rgba(3, 5, 10, 0.88);
}

.mobile-menu {
  background: rgba(3, 5, 10, 0.985);
}

.brand-mark {
  border-color: rgba(47, 125, 255, 0.34);
  background: rgba(47, 125, 255, 0.12);
  box-shadow: inset 0 0 18px rgba(47, 125, 255, 0.08);
}

.brand-mark::after {
  border-color: rgba(57, 200, 255, 0.58);
}

.brand-mark span {
  box-shadow: 0 0 11px rgba(47, 125, 255, 0.9);
}

.brand-mark span:nth-child(3) {
  background: var(--cyan);
}

.brand-name,
.brand-name span {
  color: #f7f9ff;
}

.brand-name span {
  color: #56a2ff;
}

.desktop-nav a,
.nav-login {
  color: #96a3b8;
}

.desktop-nav a:hover,
.nav-login:hover {
  color: #ffffff;
}

.desktop-nav a::after {
  background: linear-gradient(90deg, var(--green), var(--cyan));
}

.button--primary {
  background: linear-gradient(135deg, #2468f2, #329dff);
  color: #ffffff;
  box-shadow: 0 8px 32px rgba(47, 125, 255, 0.18);
}

.button--primary:hover {
  background: linear-gradient(135deg, #397fff, #48b4ff);
  box-shadow: 0 12px 38px rgba(47, 125, 255, 0.32);
}

.button--ghost,
.button--outline-light,
.button--price {
  border-color: rgba(96, 165, 250, 0.22);
  background: rgba(47, 125, 255, 0.045);
}

.button--ghost:hover,
.button--outline-light:hover,
.button--price:hover {
  border-color: #4996ff;
  background: rgba(47, 125, 255, 0.09);
  color: #8ec8ff;
}

.button-dot,
.status-pulse,
.live-dot {
  background: #3fa2ff;
  box-shadow: 0 0 14px rgba(57, 200, 255, 0.82);
}

.status-pulse::after,
.live-dot::after {
  border-color: rgba(57, 200, 255, 0.42);
}

.eyebrow,
.solution-index {
  color: #74aef8;
}

.eyebrow i {
  background: linear-gradient(90deg, #2f7dff, #39c8ff);
}

.text-link,
.section-heading h2,
.security-copy h2,
.network-copy h2,
.faq-item button,
.product-card h3,
.solution-copy h3,
.security-list h3,
.step-card h3,
.resource-card h3 {
  color: var(--text);
}

.heading-copy p,
.centered-heading > p,
.product-card > p,
.product-card__copy > p,
.solution-copy > p,
.security-copy > p,
.security-list p,
.step-card p,
.faq-answer p,
.resource-card p {
  color: var(--text-muted);
}

.hero-aurora {
  background:
    radial-gradient(circle at 42% 48%, rgba(47, 125, 255, 0.2), transparent 30%),
    conic-gradient(from 180deg at 50% 50%, rgba(57, 200, 255, 0.1), rgba(47, 125, 255, 0.18), transparent 38%, rgba(28, 69, 145, 0.1), rgba(57, 200, 255, 0.1));
}

.hero::after {
  background: rgba(36, 104, 242, 0.1);
}

.hero-grid-lines,
.network-grid-bg,
.cta-grid {
  background-image:
    linear-gradient(rgba(80, 133, 218, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(80, 133, 218, 0.045) 1px, transparent 1px);
}

.hero h1 span {
  background: linear-gradient(96deg, #5598ff 4%, #43d4ff 82%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.status-pill {
  border-color: rgba(96, 165, 250, 0.2);
  background: rgba(47, 125, 255, 0.055);
  color: #9dacbf;
}

.network-console {
  border-color: rgba(96, 165, 250, 0.2);
  background: linear-gradient(150deg, rgba(12, 27, 53, 0.96), rgba(3, 7, 16, 0.98));
  box-shadow: 0 42px 120px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(130, 180, 255, 0.08);
}

.network-console::before {
  background: rgba(47, 125, 255, 0.13);
}

.console-topbar,
.map-panel-head {
  border-color: rgba(96, 165, 250, 0.12);
  color: #7e8ba2;
}

.console-title,
.map-panel-head > div {
  color: #b9c8df;
}

.map-glow {
  background: rgba(47, 125, 255, 0.15);
}

.orbit {
  border-color: rgba(57, 200, 255, 0.12);
}

.map-latitudes {
  stroke: rgba(96, 165, 250, 0.12);
}

.continent-shapes,
.flat-continents {
  fill: rgba(47, 125, 255, 0.075);
  stroke: rgba(96, 165, 250, 0.24);
}

.node-ring {
  stroke: rgba(57, 200, 255, 0.72);
}

.map-nodes circle:not(.node-ring),
.flat-nodes circle {
  fill: #3e90ff;
}

.map-nodes circle:nth-of-type(4n),
.flat-nodes circle:nth-child(3n) {
  fill: #53d4ff;
}

.node-label,
.floating-card {
  border-color: rgba(96, 165, 250, 0.18);
  background: rgba(4, 10, 22, 0.82);
}

.node-label span,
.map-location > span {
  background: #3f9fff;
  box-shadow: 0 0 11px rgba(57, 200, 255, 0.72);
}

.mini-bars i {
  background: linear-gradient(to top, rgba(47, 125, 255, 0.18), #3fa2ff);
}

.shield-icon {
  border-color: rgba(57, 200, 255, 0.3);
  background: rgba(47, 125, 255, 0.13);
  color: #69c9ff;
}

.floating-card--security em,
.metric-up,
.metric-good,
.metric-live {
  color: #67c7ff;
}

.floating-card--security em {
  background: rgba(47, 125, 255, 0.14);
}

.metric-live::before {
  background: #3fa2ff;
}

.console-metrics,
.console-metrics > div,
.trust-row {
  border-color: rgba(96, 165, 250, 0.12);
}

.trust-row__label,
.trust-items,
.trust-items svg {
  color: #718199;
  stroke: #6584ad;
}

.products::before {
  position: absolute;
  top: 8%;
  right: -15%;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: rgba(47, 125, 255, 0.05);
  content: "";
  filter: blur(100px);
  pointer-events: none;
}

.product-card,
.step-card {
  border-color: rgba(96, 165, 250, 0.16);
  background: linear-gradient(145deg, #0d1421, #080c14);
  box-shadow: inset 0 1px 0 rgba(148, 180, 232, 0.055);
}

.product-card:hover,
.step-card:hover {
  border-color: rgba(64, 145, 255, 0.42);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.4), 0 0 45px rgba(47, 125, 255, 0.055);
}

.product-card--featured {
  background: linear-gradient(145deg, #0a1427, #050912);
}

.card-kicker,
.step-number {
  color: #6f8099;
}

.card-kicker span {
  border-color: rgba(96, 165, 250, 0.2);
  color: #7f9bc2;
}

.product-icon,
.step-icon,
.resource-icon {
  border-color: rgba(96, 165, 250, 0.24);
  background: rgba(47, 125, 255, 0.12);
  color: #56b8ff;
}

.card-link {
  color: #67baff;
}

.edge-flow {
  background: radial-gradient(circle at 0 50%, rgba(47, 125, 255, 0.19), transparent 58%);
}

.edge-flow::after {
  background-image: radial-gradient(rgba(57, 200, 255, 0.22) 1px, transparent 1px);
}

.flow-path {
  stroke: rgba(57, 200, 255, 0.48);
}

.flow-packet {
  fill: #dff5ff;
  filter: drop-shadow(0 0 6px #39c8ff);
}

.flow-server,
.edge-node {
  border-color: rgba(96, 165, 250, 0.28);
  background: #0b1528;
}

.flow-server i::before,
.map-legend i {
  background: #3f9fff;
}

.edge-node {
  box-shadow: 0 0 0 8px rgba(47, 125, 255, 0.055), 0 10px 30px rgba(0, 0, 0, 0.32);
}

.edge-node small,
.shield-meter strong,
.rule-list em,
.chart-line,
.network-copy h2 span,
.map-location small {
  color: #5fc2ff;
}

.shield-meter,
.rule-list,
.analytics-chart {
  border-color: rgba(96, 165, 250, 0.16);
  background: #080e19;
}

.shield-rings i {
  border-color: rgba(47, 125, 255, 0.22);
}

.shield-rings i:nth-child(1) {
  border-top-color: #2f7dff;
}

.shield-rings i:nth-child(2) {
  border-right-color: #39c8ff;
}

.shield-rings i:nth-child(3),
.rule-pass {
  background: rgba(47, 125, 255, 0.14);
}

.shield-rings svg {
  stroke: #52b9ff;
}

.shield-meter span,
.rule-list span,
.chart-labels {
  color: #8391a8;
}

.rule-list span {
  border-color: rgba(96, 165, 250, 0.1);
}

.rule-pass {
  box-shadow: 0 0 8px rgba(47, 125, 255, 0.48);
}

.analytics-chart {
  background:
    linear-gradient(rgba(64, 116, 200, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(64, 116, 200, 0.08) 1px, transparent 1px),
    #080e19;
  background-size: 100% 30px, 70px 100%, auto;
}

.chart-line {
  stroke: #3f9fff;
}

.network::before,
.pricing-glow {
  background: rgba(47, 125, 255, 0.09);
}

.network-map-panel {
  border-color: rgba(96, 165, 250, 0.18);
  background: rgba(6, 12, 24, 0.88);
}

.flat-map-grid {
  stroke: rgba(96, 165, 250, 0.06);
}

.map-location {
  border-color: rgba(96, 165, 250, 0.18);
  background: rgba(4, 9, 20, 0.88);
}

.region-switcher,
.billing-toggle {
  border-color: rgba(96, 165, 250, 0.2);
  background: rgba(47, 125, 255, 0.055);
}

.region-tab.is-active,
.billing-toggle button.is-active,
.popular-label {
  background: linear-gradient(135deg, #276df4, #36a6ff);
  color: #ffffff;
}

.solution-tabs {
  border-color: rgba(96, 165, 250, 0.16);
  background: #090f1a;
}

.solution-tab {
  color: #8795ab;
}

.solution-tab.is-active {
  background: #121d30;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.32);
  color: #f4f8ff;
}

.solution-panel {
  border-color: rgba(96, 165, 250, 0.17);
  background: linear-gradient(145deg, #0d1421, #070b13);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
}

.solution-copy li {
  color: #b4c0d2;
}

.solution-copy li svg {
  background: rgba(47, 125, 255, 0.16);
  stroke: #65c5ff;
}

.solution-visual::before {
  background: radial-gradient(circle, rgba(47, 125, 255, 0.22), transparent 67%);
}

.browser-frame {
  border-color: rgba(96, 165, 250, 0.2);
  background: #080e19;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.48);
}

.browser-bar {
  border-color: rgba(96, 165, 250, 0.12);
  background: #0d1524;
}

.browser-bar > span {
  color: #718099;
}

.browser-bar em {
  color: #62c4ff;
}

.shop-sidebar {
  border-color: rgba(96, 165, 250, 0.1);
}

.shop-sidebar b {
  background: #dbeafe;
}

.shop-sidebar span {
  background: #24344d;
}

.shop-hero,
.solution-visual[data-solution-visual="gaming"] .shop-hero,
.solution-visual[data-solution-visual="media"] .shop-hero,
.solution-visual[data-solution-visual="api"] .shop-hero {
  background:
    radial-gradient(circle at 76% 25%, rgba(114, 205, 255, 0.42), transparent 15%),
    linear-gradient(120deg, #0b2d73, #145fe4 56%, #26b9f2);
}

.shop-hero span {
  color: rgba(232, 244, 255, 0.74);
}

.shop-hero strong {
  color: #ffffff;
}

.shop-hero button {
  background: #030711;
  color: #ffffff;
}

.shop-products i,
.shop-products i:nth-child(2),
.shop-products i:nth-child(3) {
  background: linear-gradient(145deg, #111d31, #172b48);
}

.speed-card {
  border-color: rgba(96, 165, 250, 0.2);
  background: rgba(8, 15, 28, 0.92);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.42);
  color: #f4f8ff;
}

.speed-card span {
  color: #8795aa;
}

.speed-card em {
  color: #55bdff;
}

.security-visual::before {
  background: radial-gradient(circle, rgba(47, 125, 255, 0.18), transparent 65%);
}

.request-flow-card {
  border-color: rgba(96, 165, 250, 0.2);
  background: #050a13;
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.48);
}

.request-flow-card::before {
  background-image:
    linear-gradient(rgba(74, 127, 213, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(74, 127, 213, 0.05) 1px, transparent 1px);
}

.request-head i,
.request-footer i {
  background: #399dff;
  box-shadow: 0 0 10px rgba(57, 200, 255, 0.72);
}

.pipeline-step {
  border-color: rgba(96, 165, 250, 0.15);
  background: rgba(47, 125, 255, 0.035);
}

.pipeline-step--edge {
  border-color: rgba(57, 200, 255, 0.38);
  background: rgba(47, 125, 255, 0.13);
  box-shadow: inset 0 0 44px rgba(47, 125, 255, 0.075);
}

.pipeline-step--edge svg,
.pipeline-step--edge small,
.request-footer strong {
  color: #5bc2ff;
}

.pipeline-step--edge svg {
  filter: drop-shadow(0 0 8px rgba(57, 200, 255, 0.55));
}

.blocked-stream {
  border-color: rgba(96, 165, 250, 0.12);
  background: rgba(2, 5, 11, 0.55);
}

.security-list,
.security-list > div,
.faq-list,
.faq-item,
.resource-card,
.footer-bottom {
  border-color: rgba(96, 165, 250, 0.15);
}

.security-list > div > span {
  color: #6ba9f8;
}

.step-card::after {
  border-color: rgba(47, 125, 255, 0.12);
  box-shadow: 0 0 0 30px rgba(47, 125, 255, 0.035), 0 0 0 60px rgba(47, 125, 255, 0.02);
}

.step-card code,
.step-toggles span {
  border-color: rgba(96, 165, 250, 0.16);
  background: #0a1220;
  color: #8fa8c7;
}

.step-toggles i {
  background: linear-gradient(90deg, #2f7dff, #39c8ff);
}

.step-success {
  border-color: rgba(57, 200, 255, 0.28);
  background: rgba(47, 125, 255, 0.12);
  color: #8ed6ff;
}

.step-success svg {
  background: #2f7dff;
}

.step-success small {
  color: #8293aa;
}

.price-card {
  border-color: rgba(96, 165, 250, 0.16);
  background: rgba(10, 16, 28, 0.86);
}

.price-card:hover {
  border-color: rgba(63, 157, 255, 0.4);
  background: rgba(13, 23, 40, 0.94);
}

.price-card--popular {
  border-color: rgba(63, 157, 255, 0.58);
  background: linear-gradient(180deg, rgba(47, 125, 255, 0.14), rgba(10, 16, 28, 0.9));
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.34), 0 0 45px rgba(47, 125, 255, 0.06);
}

.price small,
.price-card li svg {
  color: #5fc2ff;
  stroke: #5fc2ff;
}

.price-card li svg,
.cta-assurance svg {
  background: rgba(47, 125, 255, 0.14);
}

.resources {
  background:
    radial-gradient(circle at 80% 30%, rgba(47, 125, 255, 0.06), transparent 28%),
    #05070d;
}

.faq-item button i {
  border-color: rgba(96, 165, 250, 0.22);
}

.faq-item button i::before,
.faq-item button i::after {
  background: #7098c9;
}

.resource-cards {
  border-color: rgba(96, 165, 250, 0.18);
  background: linear-gradient(145deg, #0d1421, #090e18);
}

.resource-label {
  color: #73849d;
}

.support-status {
  background: #0a1423;
  color: #7f8fa7;
}

.support-status i,
.footer-status i {
  background: #3f9fff;
  box-shadow: 0 0 9px rgba(57, 200, 255, 0.78);
}

.support-status strong,
.footer-links a:hover {
  color: #61c3ff;
}

.cta-orb--one {
  background: rgba(47, 125, 255, 0.14);
}

.cta-orb--two {
  background: rgba(57, 200, 255, 0.1);
}

.site-footer {
  background: #020409;
}

.footer-status {
  border-color: rgba(96, 165, 250, 0.16);
}

@keyframes arrowDot {
  0%, 100% { background: #4c607d; transform: scale(.8); }
  50% { background: #3f9fff; box-shadow: 0 0 9px rgba(57, 200, 255, 0.65); transform: scale(1.1); }
}

/* Multi-page layout */
.inner-page {
  min-height: 100vh;
  background: #03050a;
  color: var(--text);
}

.desktop-nav a[aria-current="page"] {
  color: #ffffff;
}

.desktop-nav a[aria-current="page"]::after {
  opacity: 1;
  transform: scaleX(1);
}

.page-main {
  padding-top: 76px;
}

.page-hero {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  border-bottom: 1px solid rgba(96, 165, 250, 0.12);
  background:
    radial-gradient(circle at 76% 25%, rgba(47, 125, 255, 0.15), transparent 31%),
    radial-gradient(circle at 18% 70%, rgba(57, 200, 255, 0.05), transparent 28%),
    #03050a;
  padding: 112px 0 90px;
}

.page-hero::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(74, 127, 213, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(74, 127, 213, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  content: "";
  mask-image: linear-gradient(to bottom, black, transparent 92%);
  pointer-events: none;
}

.page-hero__layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.93fr) minmax(460px, 1.07fr);
  align-items: center;
  gap: 74px;
}

.page-hero__copy {
  max-width: 690px;
}

.page-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #72b6ff;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.page-kicker::before {
  width: 24px;
  height: 1px;
  background: linear-gradient(90deg, #2f7dff, #39c8ff);
  content: "";
}

.page-hero h1 {
  margin: 24px 0 24px;
  color: #f7f9ff;
  font-family: var(--font-display);
  font-size: clamp(52px, 5.2vw, 78px);
  font-weight: 700;
  letter-spacing: -0.064em;
  line-height: 1.05;
  text-wrap: balance;
}

.page-hero h1 span {
  background: linear-gradient(96deg, #4b8cff, #42d3ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.page-lead {
  max-width: 620px;
  margin: 0;
  color: #91a0b8;
  font-size: 17px;
  line-height: 1.85;
}

.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.page-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.page-points span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(96, 165, 250, 0.16);
  border-radius: 999px;
  background: rgba(47, 125, 255, 0.05);
  padding: 0 11px;
  color: #8292aa;
  font-size: 9px;
}

.page-points span::before {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #3f9fff;
  box-shadow: 0 0 8px rgba(57, 200, 255, 0.7);
  content: "";
}

.page-visual {
  position: relative;
  min-width: 0;
}

.page-console {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  border: 1px solid rgba(96, 165, 250, 0.2);
  border-radius: 26px;
  background:
    linear-gradient(rgba(74, 127, 213, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(74, 127, 213, 0.045) 1px, transparent 1px),
    linear-gradient(145deg, #0c1629, #060a12);
  background-size: 34px 34px, 34px 34px, auto;
  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.46);
}

.page-console__head {
  display: flex;
  height: 52px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(96, 165, 250, 0.12);
  padding: 0 18px;
  color: #7688a2;
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.08em;
}

.page-console__head span:first-child {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #a9b8cd;
}

.page-console__head span:first-child::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #3f9fff;
  box-shadow: 0 0 9px rgba(57, 200, 255, 0.75);
  content: "";
}

.terminal-lines {
  display: flex;
  flex-direction: column;
  gap: 13px;
  padding: 30px;
  font-family: var(--font-mono);
  font-size: 9px;
}

.terminal-lines div {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  align-items: center;
  gap: 12px;
  color: #75869f;
}

.terminal-lines b {
  color: #c7d4e7;
  font-weight: 500;
}

.terminal-lines em {
  border-radius: 5px;
  background: rgba(47, 125, 255, 0.14);
  padding: 3px 6px;
  color: #62c3ff;
  font-size: 7px;
  font-style: normal;
}

.console-chart {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  height: 170px;
  overflow: hidden;
  border: 1px solid rgba(96, 165, 250, 0.14);
  border-radius: 16px;
  background: rgba(3, 7, 15, 0.72);
}

.console-chart::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(74, 127, 213, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(74, 127, 213, 0.07) 1px, transparent 1px);
  background-size: 100% 34px, 70px 100%;
  content: "";
}

.console-chart__bars {
  position: absolute;
  inset: 22px 20px 18px;
  display: flex;
  align-items: end;
  gap: 7px;
}

.console-chart__bars i {
  width: 100%;
  height: var(--bar);
  border-radius: 3px 3px 0 0;
  background: linear-gradient(to top, rgba(47, 125, 255, 0.1), #3187ff);
  box-shadow: 0 0 13px rgba(47, 125, 255, 0.15);
}

.page-subnav {
  position: sticky;
  z-index: 40;
  top: 76px;
  border-bottom: 1px solid rgba(96, 165, 250, 0.12);
  background: rgba(3, 5, 10, 0.88);
  backdrop-filter: blur(16px);
}

.page-subnav__inner {
  display: flex;
  min-height: 54px;
  align-items: center;
  gap: 28px;
  overflow-x: auto;
  scrollbar-width: none;
}

.page-subnav__inner::-webkit-scrollbar {
  display: none;
}

.page-subnav a {
  flex: none;
  color: #7989a2;
  font-size: 11px;
  transition: color 180ms ease;
}

.page-subnav a:hover {
  color: #62c3ff;
}

.content-section {
  position: relative;
  overflow: hidden;
  padding: 112px 0;
  background: #05070d;
}

.content-section--alt {
  background:
    radial-gradient(circle at 88% 18%, rgba(47, 125, 255, 0.055), transparent 29%),
    #080c14;
}

.content-heading {
  max-width: 760px;
  margin-bottom: 48px;
}

.content-heading--center {
  margin-inline: auto;
  text-align: center;
}

.content-heading h2 {
  margin: 18px 0 17px;
  color: #f5f8ff;
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  letter-spacing: -0.052em;
  line-height: 1.08;
}

.content-heading p {
  margin: 0;
  color: #8c9bb2;
  font-size: 16px;
  line-height: 1.8;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.detail-card {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  border: 1px solid rgba(96, 165, 250, 0.16);
  border-radius: 24px;
  background: linear-gradient(145deg, #0d1421, #080c14);
  padding: 28px;
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.detail-card:hover {
  border-color: rgba(63, 157, 255, 0.4);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  transform: translateY(-4px);
}

.detail-card--wide {
  grid-column: span 2;
}

.detail-card__number {
  color: #6582aa;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.08em;
}

.detail-card__icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  margin-top: 34px;
  border: 1px solid rgba(96, 165, 250, 0.23);
  border-radius: 13px;
  background: rgba(47, 125, 255, 0.11);
  color: #62c3ff;
  font-family: var(--font-mono);
  font-size: 13px;
}

.detail-card h3 {
  margin: 20px 0 10px;
  color: #f2f6ff;
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: -0.035em;
}

.detail-card p {
  margin: 0;
  color: #8998ae;
  font-size: 13px;
  line-height: 1.75;
}

.detail-card ul,
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.detail-card li,
.feature-list li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #a7b4c7;
  font-size: 11px;
}

.detail-card li::before,
.feature-list li::before,
.check-mark {
  display: grid;
  width: 16px;
  height: 16px;
  flex: none;
  place-items: center;
  border-radius: 50%;
  background: rgba(47, 125, 255, 0.15);
  color: #64c4ff;
  content: "✓";
  font-family: var(--font-mono);
  font-size: 8px;
}

.product-row,
.split-content {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(460px, 1.1fr);
  align-items: center;
  gap: 74px;
}

.product-row + .product-row {
  margin-top: 100px;
}

.product-row:nth-child(even) .product-row__visual {
  order: -1;
}

.product-row__copy h2,
.split-content__copy h2 {
  margin: 17px 0 18px;
  color: #f4f7ff;
  font-family: var(--font-display);
  font-size: clamp(36px, 3.7vw, 52px);
  letter-spacing: -0.05em;
  line-height: 1.1;
}

.product-row__copy p,
.split-content__copy > p {
  margin: 0;
  color: #8d9bb1;
  font-size: 15px;
  line-height: 1.8;
}

.product-row__visual,
.architecture-panel {
  position: relative;
  min-height: 380px;
  overflow: hidden;
  border: 1px solid rgba(96, 165, 250, 0.18);
  border-radius: 26px;
  background:
    linear-gradient(rgba(74, 127, 213, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(74, 127, 213, 0.05) 1px, transparent 1px),
    #08101d;
  background-size: 38px 38px, 38px 38px, auto;
}

.visual-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 250px;
  height: 250px;
  border: 1px solid rgba(57, 200, 255, 0.2);
  border-radius: 50%;
  box-shadow: 0 0 0 44px rgba(47, 125, 255, 0.025), 0 0 0 88px rgba(47, 125, 255, 0.015);
  transform: translate(-50%, -50%);
}

.visual-orbit::before,
.visual-orbit::after {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(57, 200, 255, 0.25);
  border-radius: 50%;
  content: "";
  transform: translate(-50%, -50%) rotate(35deg);
}

.visual-orbit::before {
  width: 310px;
  height: 105px;
}

.visual-orbit::after {
  width: 110px;
  height: 310px;
  transform: translate(-50%, -50%) rotate(-28deg);
}

.visual-core {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  border: 1px solid rgba(57, 200, 255, 0.4);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(57, 200, 255, 0.35), rgba(47, 125, 255, 0.08) 54%, transparent 70%);
  box-shadow: 0 0 50px rgba(47, 125, 255, 0.22);
  color: #dff5ff;
  font-family: var(--font-mono);
  font-size: 10px;
  transform: translate(-50%, -50%);
}

.region-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.region-card {
  min-height: 235px;
  border: 1px solid rgba(96, 165, 250, 0.16);
  border-radius: 22px;
  background: linear-gradient(145deg, #0d1421, #080c14);
  padding: 24px;
}

.region-card span {
  color: #6484af;
  font-family: var(--font-mono);
  font-size: 9px;
}

.region-card h3 {
  margin: 35px 0 10px;
  color: #f2f6ff;
  font-family: var(--font-display);
  font-size: 21px;
}

.region-card p {
  margin: 0;
  color: #8594aa;
  font-size: 12px;
  line-height: 1.7;
}

.region-card strong {
  display: block;
  margin-top: 24px;
  color: #61c3ff;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
}

.architecture-flow {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.architecture-step {
  position: relative;
  min-height: 180px;
  border: 1px solid rgba(96, 165, 250, 0.16);
  border-radius: 19px;
  background: rgba(47, 125, 255, 0.04);
  padding: 22px;
}

.architecture-step:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: -11px;
  width: 10px;
  height: 1px;
  background: #3187ff;
  content: "";
}

.architecture-step span {
  color: #5f80ae;
  font-family: var(--font-mono);
  font-size: 8px;
}

.architecture-step h3 {
  margin: 35px 0 8px;
  color: #edf3ff;
  font-family: var(--font-display);
  font-size: 16px;
}

.architecture-step p {
  margin: 0;
  color: #7f8fa6;
  font-size: 10px;
  line-height: 1.65;
}

.solution-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.solution-detail {
  min-height: 450px;
  overflow: hidden;
  border: 1px solid rgba(96, 165, 250, 0.17);
  border-radius: 26px;
  background: linear-gradient(145deg, #0d1421, #070b13);
  padding: 34px;
}

.solution-detail__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.solution-detail__tag {
  color: #6aaaf5;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.09em;
}

.solution-detail__metric {
  border: 1px solid rgba(96, 165, 250, 0.2);
  border-radius: 999px;
  background: rgba(47, 125, 255, 0.08);
  padding: 6px 10px;
  color: #62c3ff;
  font-family: var(--font-mono);
  font-size: 8px;
}

.solution-detail h2 {
  max-width: 540px;
  margin: 48px 0 16px;
  color: #f2f6ff;
  font-family: var(--font-display);
  font-size: clamp(28px, 2.8vw, 39px);
  letter-spacing: -0.045em;
  line-height: 1.18;
}

.solution-detail > p {
  margin: 0;
  color: #8a99af;
  font-size: 13px;
  line-height: 1.75;
}

.compare-wrap {
  overflow-x: auto;
  border: 1px solid rgba(96, 165, 250, 0.16);
  border-radius: 24px;
  background: #080e19;
}

.compare-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.compare-table th,
.compare-table td {
  border-bottom: 1px solid rgba(96, 165, 250, 0.12);
  padding: 18px 22px;
  color: #8c9bb1;
  font-size: 11px;
  text-align: left;
}

.compare-table th {
  background: rgba(47, 125, 255, 0.055);
  color: #dce7f8;
  font-family: var(--font-display);
  font-size: 12px;
}

.compare-table td:first-child {
  color: #d3deed;
  font-weight: 600;
}

.compare-table tr:last-child td {
  border-bottom: 0;
}

.compare-yes {
  color: #61c3ff;
  font-family: var(--font-mono);
}

.trial-panel {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 58px;
  border: 1px solid rgba(96, 165, 250, 0.18);
  border-radius: 28px;
  background: linear-gradient(145deg, #0d1628, #070b13);
  padding: 48px;
}

.trial-panel h2 {
  margin: 18px 0 15px;
  color: #f4f7ff;
  font-family: var(--font-display);
  font-size: clamp(34px, 3.7vw, 52px);
  letter-spacing: -0.05em;
  line-height: 1.12;
}

.trial-panel p {
  margin: 0;
  color: #8998ae;
  font-size: 14px;
  line-height: 1.75;
}

.trial-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.trial-form label {
  display: flex;
  flex-direction: column;
  gap: 7px;
  color: #7889a2;
  font-size: 9px;
}

.trial-form label:last-of-type {
  grid-column: span 2;
}

.trial-form input,
.trial-form select,
.docs-search input {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(96, 165, 250, 0.18);
  border-radius: 12px;
  outline: none;
  background: #070d18;
  padding: 0 14px;
  color: #eaf1ff;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.trial-form input:focus,
.trial-form select:focus,
.docs-search input:focus {
  border-color: #398fff;
  box-shadow: 0 0 0 3px rgba(47, 125, 255, 0.1);
}

.trial-form .button {
  grid-column: span 2;
  margin-top: 4px;
}

.docs-search {
  position: relative;
  max-width: 620px;
  margin-top: 30px;
}

.docs-search input {
  min-height: 58px;
  border-radius: 999px;
  padding: 0 124px 0 22px;
  font-size: 13px;
}

.docs-search .button {
  position: absolute;
  top: 6px;
  right: 6px;
  min-height: 46px;
}

.resource-topic-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.resource-topic {
  min-height: 280px;
  border: 1px solid rgba(96, 165, 250, 0.16);
  border-radius: 23px;
  background: linear-gradient(145deg, #0d1421, #080c14);
  padding: 27px;
}

.resource-topic code {
  color: #62c3ff;
  font-family: var(--font-mono);
  font-size: 9px;
}

.resource-topic h3 {
  margin: 46px 0 10px;
  color: #f1f5ff;
  font-family: var(--font-display);
  font-size: 21px;
}

.resource-topic p {
  margin: 0;
  color: #8796ac;
  font-size: 12px;
  line-height: 1.7;
}

.resource-topic a {
  display: inline-flex;
  margin-top: 24px;
  color: #62c3ff;
  font-size: 11px;
  font-weight: 700;
}

.status-board {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  border: 1px solid rgba(96, 165, 250, 0.17);
  border-radius: 22px;
  background: #080f1c;
  padding: 30px;
}

.status-board h3 {
  margin: 0 0 8px;
  color: #f0f5ff;
  font-family: var(--font-display);
  font-size: 22px;
}

.status-board p {
  margin: 0;
  color: #8291a8;
  font-size: 12px;
}

.status-board strong {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #63c5ff;
  font-family: var(--font-mono);
  font-size: 10px;
}

.status-board strong::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #3f9fff;
  box-shadow: 0 0 10px rgba(57, 200, 255, 0.75);
  content: "";
}

.page-cta {
  padding: 100px 0;
  border-top: 1px solid rgba(96, 165, 250, 0.1);
  background:
    radial-gradient(circle at 50% 20%, rgba(47, 125, 255, 0.13), transparent 37%),
    #03050a;
  text-align: center;
}

.page-cta h2 {
  margin: 18px auto 18px;
  color: #f5f8ff;
  font-family: var(--font-display);
  font-size: clamp(38px, 4.6vw, 60px);
  letter-spacing: -0.055em;
  line-height: 1.1;
}

.page-cta p {
  margin: 0 auto;
  color: #8897ae;
  font-size: 14px;
}

.page-cta .page-actions {
  justify-content: center;
}

.network-hero-console .orbital-map {
  min-height: 430px;
}

.login-main {
  display: grid;
  min-height: 100vh;
  place-items: center;
  background:
    radial-gradient(circle at 70% 20%, rgba(47, 125, 255, 0.17), transparent 31%),
    #03050a;
  padding: 100px 20px 50px;
}

.login-card {
  width: min(460px, 100%);
  border: 1px solid rgba(96, 165, 250, 0.2);
  border-radius: 26px;
  background: rgba(10, 16, 28, 0.9);
  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.5);
  padding: 38px;
}

.login-card h1 {
  margin: 28px 0 8px;
  color: #f6f9ff;
  font-family: var(--font-display);
  font-size: 34px;
  letter-spacing: -0.04em;
}

.login-card > p {
  margin: 0 0 28px;
  color: #8291a8;
  font-size: 13px;
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.login-form label {
  display: flex;
  flex-direction: column;
  gap: 7px;
  color: #8796ab;
  font-size: 10px;
}

.login-form input {
  min-height: 50px;
  border: 1px solid rgba(96, 165, 250, 0.18);
  border-radius: 12px;
  outline: 0;
  background: #060b14;
  padding: 0 14px;
  color: #eef4ff;
}

.login-form input:focus {
  border-color: #398fff;
  box-shadow: 0 0 0 3px rgba(47, 125, 255, 0.1);
}

.login-meta {
  display: flex;
  justify-content: space-between;
  margin-top: 3px;
  color: #71829a;
  font-size: 9px;
}

.login-meta a {
  color: #61c3ff;
}

.login-back {
  display: inline-flex;
  margin-top: 20px;
  color: #7f8fa7;
  font-size: 10px;
}

@media (max-width: 980px) {
  .page-main { padding-top: 68px; }
  .page-hero { min-height: auto; padding: 90px 0 80px; }
  .page-hero__layout { grid-template-columns: 1fr; gap: 54px; }
  .page-hero__copy { max-width: 760px; }
  .page-visual { max-width: 720px; width: 100%; margin-inline: auto; }
  .page-subnav { top: 68px; }
  .detail-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .detail-card--wide { grid-column: span 2; }
  .product-row, .split-content { grid-template-columns: 1fr; gap: 44px; }
  .product-row:nth-child(even) .product-row__visual { order: initial; }
  .region-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .architecture-flow { grid-template-columns: 1fr; }
  .architecture-step:not(:last-child)::after { top: auto; right: 50%; bottom: -12px; width: 1px; height: 11px; }
  .trial-panel { grid-template-columns: 1fr; }
  .resource-topic-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 680px) {
  .page-hero { padding: 72px 0 65px; }
  .page-hero h1 { font-size: clamp(42px, 12vw, 58px); }
  .page-lead { font-size: 15px; }
  .page-actions { flex-direction: column; }
  .page-actions .button { width: 100%; }
  .page-console { min-height: 390px; border-radius: 21px; }
  .page-console__head { font-size: 7px; }
  .terminal-lines { padding: 23px 17px; }
  .terminal-lines div { grid-template-columns: 52px 1fr; }
  .terminal-lines em { display: none; }
  .page-subnav__inner { gap: 22px; }
  .content-section { padding: 82px 0; }
  .content-heading { margin-bottom: 35px; }
  .content-heading h2 { font-size: clamp(34px, 9.8vw, 44px); }
  .detail-grid, .solution-detail-grid, .resource-topic-grid { grid-template-columns: 1fr; }
  .detail-card, .detail-card--wide { grid-column: auto; }
  .product-row + .product-row { margin-top: 72px; }
  .product-row__visual, .architecture-panel { min-height: 310px; }
  .region-grid { grid-template-columns: 1fr; }
  .solution-detail { min-height: 410px; padding: 27px; }
  .trial-panel { gap: 38px; border-radius: 22px; padding: 27px; }
  .trial-form { grid-template-columns: 1fr; }
  .trial-form label:last-of-type, .trial-form .button { grid-column: auto; }
  .docs-search input { padding-right: 20px; }
  .docs-search .button { position: static; width: 100%; margin-top: 10px; }
  .status-board { grid-template-columns: 1fr; }
  .page-cta { padding: 80px 0; }
  .page-cta h2 { font-size: 38px; }
  .login-card { padding: 28px 23px; }
}

/* Homepage hero — open orbital stage */
.hero--revamp {
  min-height: 100vh;
  padding: 142px 0 34px;
}

.hero--revamp .hero-aurora {
  top: -43%;
  right: -12%;
  width: 74vw;
  height: 74vw;
  opacity: 0.72;
}

.hero-layout--revamp {
  grid-template-columns: minmax(0, 0.88fr) minmax(540px, 1.12fr);
  gap: 42px;
}

.hero--revamp .hero-copy {
  max-width: 650px;
  padding: 18px 0 0;
}

.hero-overline {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 11px;
  color: #7abaff;
  font-family: var(--font-mono);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.hero-overline span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.hero-overline span i {
  width: 18px;
  height: 1px;
  background: linear-gradient(90deg, #2f7dff, #39c8ff);
}

.hero-overline em {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-left: 1px solid rgba(96, 165, 250, 0.18);
  padding-left: 11px;
  color: #58708f;
  font-size: 7px;
  font-style: normal;
  letter-spacing: 0.1em;
}

.hero-overline em b {
  font-weight: 600;
}

.hero--revamp h1 {
  max-width: 720px;
  margin: 28px 0 25px;
  font-size: clamp(58px, 5vw, 76px);
  font-weight: 650;
  letter-spacing: -0.062em;
  line-height: 1.02;
}

.hero--revamp h1 span {
  background: linear-gradient(96deg, #4b8fff 3%, #45d1ff 86%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero--revamp .hero-description {
  max-width: 590px;
  color: #91a0b7;
  font-size: 16px;
  line-height: 1.85;
}

.hero--revamp .hero-actions {
  display: flex;
  width: auto;
  align-items: center;
  gap: 12px;
  margin-top: 29px;
}

.hero-cta {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 0 21px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 650;
  white-space: nowrap;
  transition: border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease, color 180ms ease, transform 180ms ease;
}

.hero-cta svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 180ms ease;
}

.hero-cta--primary {
  border-color: rgba(126, 187, 255, 0.35);
  background: linear-gradient(135deg, #1f68ea, #319dff);
  box-shadow: 0 8px 24px rgba(37, 116, 239, 0.18);
  color: #ffffff;
}

.hero-cta--secondary {
  border-color: rgba(142, 177, 220, 0.2);
  background: rgba(10, 20, 38, 0.62);
  color: #c0cde0;
  backdrop-filter: blur(10px);
}

.hero-cta:hover {
  transform: translateY(-1px);
}

.hero-cta--primary:hover {
  border-color: rgba(170, 215, 255, 0.52);
  background: linear-gradient(135deg, #2c78f5, #42adff);
  box-shadow: 0 11px 28px rgba(37, 116, 239, 0.26);
}

.hero-cta--secondary:hover {
  border-color: rgba(115, 175, 255, 0.32);
  background: rgba(47, 125, 255, 0.09);
  color: #ffffff;
}

.hero-cta:hover svg {
  transform: translateX(3px);
}

.hero-cta:focus-visible {
  outline: 2px solid rgba(82, 153, 255, 0.9);
  outline-offset: 3px;
}

.hero-assurance {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 0;
  margin-top: 22px;
  color: #64758e;
  font-size: 10px;
}

.hero-assurance span {
  display: inline-flex;
  align-items: center;
}

.hero-assurance span + span::before {
  width: 3px;
  height: 3px;
  margin: 0 12px;
  border-radius: 50%;
  background: #318cff;
  content: "";
}

.hero-visual--open {
  min-height: 575px;
  perspective: none;
}

.hero-orbit-stage {
  position: relative;
  min-height: 575px;
  isolation: isolate;
}

.hero-orbit-stage::before {
  position: absolute;
  z-index: 0;
  top: 50%;
  left: 54%;
  width: min(520px, 86%);
  aspect-ratio: 1;
  border: 1px solid rgba(74, 153, 255, 0.15);
  border-radius: 50%;
  box-shadow: none;
  content: "";
  transform: translate(-50%, -50%);
}

.hero-orbit-stage::after {
  display: none;
}

.hero-orbit-heading {
  position: absolute;
  z-index: 5;
  top: 14px;
  right: 18px;
  left: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #6f829e;
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.11em;
}

.hero-orbit-heading span {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #a7b8ce;
}

.hero-orbit-heading span b {
  font-weight: 600;
}

.hero-orbit-heading span small {
  padding-left: 2px;
  color: #59a9ff;
  font-size: 7px;
  letter-spacing: 0.12em;
}

.hero-orbit-heading span i,
.hero-route-status > i,
.hero-signal--security .hero-signal__value em i {
  width: 6px;
  height: 6px;
  flex: none;
  border-radius: 50%;
  background: #3f9fff;
  box-shadow: 0 0 10px rgba(57, 200, 255, 0.75);
}

.hero-orbit-heading em {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-style: normal;
}

.hero-orbit-heading em b {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 500;
}

.hero-orbit-heading em b + b::before {
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: #3b638e;
  content: "";
}

.hero-orbital {
  position: absolute;
  z-index: 2;
  inset: 0;
  min-height: 0;
  height: 100%;
  overflow: visible;
}

.hero-orbital::after {
  display: none;
}

.hero--revamp .map-glow {
  display: none;
}

.hero-orbital > .orbit {
  display: none;
}

.hero-orbital.has-three .world-map {
  display: none;
}

.hero-orbital,
.hero-orbital .three-globe-canvas {
  background: transparent;
  filter: none;
}

.hero-orbital .world-map {
  top: 67px;
  height: 445px;
}

.hero-signal {
  position: absolute;
  z-index: 6;
  min-width: 152px;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 10px 12px 9px;
  backdrop-filter: blur(8px);
}

.hero-signal::before {
  position: absolute;
  top: 0;
  width: 42px;
  height: 1px;
  content: "";
}

.hero-signal__label,
.hero-signal__value {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.hero-signal__label {
  color: #6f829e;
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.09em;
}

.hero-signal__label span {
  white-space: nowrap;
}

.hero-signal__label small {
  color: #405a7a;
  font-size: 7px;
}

.hero-signal__value {
  align-items: flex-end;
  margin-top: 7px;
}

.hero-signal__value strong {
  color: #f5f9ff;
  font-family: var(--font-mono);
  font-size: 22px;
  letter-spacing: -0.04em;
  line-height: 1;
}

.hero-signal__value strong small {
  margin-left: 3px;
  color: #70849f;
  font-size: 8px;
  font-weight: 400;
}

.hero-signal__value em {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #4eb6ff;
  font-family: var(--font-mono);
  font-size: 8px;
  font-style: normal;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.hero-signal--latency {
  top: 104px;
  right: 4px;
  border-right: 1px solid rgba(73, 152, 255, 0.48);
  background: linear-gradient(270deg, rgba(5, 14, 30, 0.78), rgba(4, 10, 22, 0.34) 70%, transparent);
}

.hero-signal--latency::before {
  right: 0;
  background: linear-gradient(270deg, #318cff, rgba(57, 200, 255, 0));
}

.hero-signal--security {
  bottom: 88px;
  left: 4px;
  border-left: 1px solid rgba(73, 152, 255, 0.48);
  background: linear-gradient(90deg, rgba(5, 14, 30, 0.78), rgba(4, 10, 22, 0.34) 70%, transparent);
}

.hero-signal--security::before {
  left: 0;
  background: linear-gradient(90deg, #318cff, rgba(57, 200, 255, 0));
}

.hero-signal--security .hero-signal__value strong {
  color: #68c8ff;
  font-size: 13px;
  letter-spacing: 0.1em;
}

.hero-signal--security .hero-signal__value em i {
  width: 10px;
  height: 1px;
  border-radius: 0;
  box-shadow: none;
}

.hero-route-status {
  position: absolute;
  z-index: 6;
  right: 22px;
  bottom: 23px;
  display: flex;
  align-items: center;
  gap: 7px;
  min-width: 174px;
  justify-content: flex-end;
  border-top: 1px solid rgba(96, 165, 250, 0.16);
  padding-top: 8px;
  color: #71839d;
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.09em;
}

.hero-route-status > i {
  width: 4px;
  height: 4px;
  box-shadow: none;
}

.hero-route-status strong {
  color: #d8e8fb;
  font-size: 12px;
  letter-spacing: -0.02em;
}

.hero-route-status em {
  color: #4d6684;
  font-size: 7px;
  font-style: normal;
  white-space: nowrap;
}

.hero-kpi-rail {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 16px;
  border-top: 1px solid rgba(96, 165, 250, 0.14);
  border-bottom: 0;
  background: linear-gradient(90deg, rgba(47, 125, 255, 0.025), transparent 32%, rgba(47, 125, 255, 0.018) 68%, transparent);
}

.hero-kpi {
  position: relative;
  display: grid;
  min-height: 88px;
  grid-template-columns: auto 1fr;
  align-content: center;
  gap: 2px 14px;
  border-right: 0;
  padding: 15px 26px;
}

.hero-kpi + .hero-kpi::before {
  position: absolute;
  top: 20px;
  bottom: 20px;
  left: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(96, 165, 250, 0.18), transparent);
  content: "";
}

.hero-kpi::after {
  position: absolute;
  top: -1px;
  left: 26px;
  width: 30px;
  height: 1px;
  background: linear-gradient(90deg, #318cff, rgba(57, 200, 255, 0));
  content: "";
}

.hero-kpi small {
  grid-column: span 2;
  color: #5c7290;
  font-family: var(--font-mono);
  font-size: 7px;
  letter-spacing: 0.11em;
}

.hero-kpi strong {
  color: #f1f6ff;
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.hero-kpi strong em {
  margin-left: 2px;
  color: #4eb7ff;
  font-family: var(--font-mono);
  font-size: 11px;
  font-style: normal;
}

.hero-kpi p {
  align-self: center;
  margin: 0;
  color: #71829b;
  font-size: 9px;
}

@media (max-width: 1120px) {
  .hero-layout--revamp {
    grid-template-columns: minmax(0, 0.85fr) minmax(490px, 1.15fr);
    gap: 25px;
  }

  .hero--revamp h1 {
    font-size: clamp(53px, 5.3vw, 68px);
  }
}

@media (max-width: 980px) {
  .hero--revamp {
    min-height: auto;
    padding-top: 126px;
  }

  .hero-layout--revamp {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hero--revamp .hero-copy {
    max-width: 720px;
  }

  .hero-visual--open {
    max-width: 720px;
    min-height: 520px;
  }

  .hero-orbit-stage {
    min-height: 520px;
  }
}

@media (max-width: 680px) {
  .hero--revamp {
    padding: 106px 0 28px;
  }

  .hero--revamp h1 {
    margin-top: 22px;
    font-size: clamp(43px, 12vw, 54px);
    line-height: 1.04;
  }

  .hero-overline em {
    display: inline-flex;
    gap: 6px;
    padding-left: 8px;
    font-size: 6px;
  }

  .hero--revamp .hero-actions {
    display: grid;
    width: 100%;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
  }

  .hero-cta {
    min-height: 48px;
    padding-inline: 12px;
    font-size: 12px;
  }

  .hero-assurance {
    font-size: 9px;
  }

  .hero-assurance span + span::before {
    margin-inline: 8px;
  }

  .hero-visual--open,
  .hero-orbit-stage {
    min-height: 500px;
  }

  .hero-orbit-stage::before {
    top: 205px;
    left: 50%;
    width: 335px;
    box-shadow: none;
  }

  .hero-orbit-heading {
    top: 4px;
    right: 4px;
    left: 4px;
    font-size: 7px;
  }

  .hero-orbit-heading em {
    display: inline-flex;
    gap: 5px;
    font-size: 6px;
  }

  .hero-orbit-heading em b {
    gap: 5px;
  }

  .hero-orbital {
    inset: 30px 0 auto;
    height: 350px;
  }

  .hero-orbital .world-map {
    top: 0;
    height: 340px;
  }

  .hero-signal {
    width: calc(50% - 5px);
    min-width: 0;
    border-radius: 0;
    padding: 9px 10px 8px;
  }

  .hero-signal__value {
    margin-top: 6px;
  }

  .hero-signal__value strong {
    font-size: 18px;
  }

  .hero-signal__label {
    font-size: 7px;
  }

  .hero-signal--latency {
    top: auto;
    right: auto;
    bottom: 45px;
    left: 0;
    border-right: 0;
    border-left: 1px solid rgba(73, 152, 255, 0.48);
    background: linear-gradient(90deg, rgba(5, 14, 30, 0.78), rgba(4, 10, 22, 0.34) 70%, transparent);
  }

  .hero-signal--latency::before {
    right: auto;
    left: 0;
    background: linear-gradient(90deg, #318cff, rgba(57, 200, 255, 0));
  }

  .hero-signal--security {
    right: 0;
    bottom: 45px;
    left: auto;
  }

  .hero-route-status {
    right: 0;
    bottom: 4px;
    min-width: 170px;
    gap: 5px;
    padding-top: 6px;
    font-size: 7px;
  }

  .hero-route-status strong {
    font-size: 10px;
  }

  .hero-kpi-rail {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 0;
  }

  .hero-kpi {
    min-height: 82px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 12px 10px;
  }

  .hero-kpi + .hero-kpi::before {
    top: 16px;
    bottom: 16px;
  }

  .hero-kpi::after {
    left: 10px;
    width: 24px;
  }

  .hero-kpi small {
    font-size: 7px;
  }

  .hero-kpi strong {
    font-size: 20px;
  }

  .hero-kpi p {
    font-size: 8px;
    line-height: 1.35;
  }
}

@media (max-width: 390px) {
  .hero-assurance span:last-child {
    width: 100%;
  }

  .hero-assurance span:last-child::before {
    display: none;
  }
}

/* Single-page section rhythm */
#products,
#network,
#solutions,
#security,
#onboarding,
#pricing,
#resources,
#contact {
  scroll-margin-top: 96px;
}

/* Navigation refresh */
.site-header {
  padding-top: 0;
  border-bottom: 1px solid rgba(96, 165, 250, 0.09);
  background: rgba(3, 7, 15, 0.72);
  pointer-events: none;
  backdrop-filter: blur(18px) saturate(125%);
}

.site-header.is-scrolled,
.site-header.is-menu-open {
  border-bottom-color: rgba(96, 165, 250, 0.14);
  background: rgba(3, 7, 15, 0.92);
  backdrop-filter: blur(22px) saturate(130%);
}

.nav-wrap {
  display: grid;
  width: min(1240px, calc(100% - 48px));
  height: 70px;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
  pointer-events: auto;
  backdrop-filter: none;
}

.site-header:not(.is-scrolled) .nav-wrap {
  border-color: transparent;
  background: transparent;
  box-shadow: none;
}

.brand {
  grid-column: 1;
  justify-self: start;
  min-height: 40px;
  gap: 10px;
  border-right: 0;
  padding-right: 0;
}

.brand-mark {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  transform: none;
}

.brand-name {
  font-size: 17px;
  letter-spacing: 0.025em;
}

.desktop-nav {
  grid-column: 2;
  justify-self: center;
  gap: 28px;
  margin-left: 0;
}

.desktop-nav a {
  display: inline-flex;
  min-height: 70px;
  align-items: center;
  border: 0;
  border-radius: 0;
  padding: 0;
  color: #8493a9;
  font-size: 12px;
  transition: color 180ms ease;
}

.desktop-nav a::after {
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  height: 2px;
  background: linear-gradient(90deg, #377fff, #42c8ff);
  opacity: 0;
  transform: scaleX(0.4);
  transition: opacity 180ms ease, transform 180ms ease;
}

.desktop-nav a:hover {
  border-color: transparent;
  background: transparent;
  color: #eaf2ff;
}

.desktop-nav a:hover::after,
.desktop-nav a[aria-current="page"]::after {
  opacity: 1;
  transform: scaleX(1);
}

.desktop-nav a[aria-current="page"] {
  border-color: transparent;
  background: transparent;
  box-shadow: none;
  color: #ffffff;
}

.nav-actions {
  grid-column: 3;
  justify-self: end;
  gap: 18px;
  margin-left: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
}

.nav-login {
  display: inline-flex;
  min-height: auto;
  align-items: center;
  border: 0;
  border-radius: 0;
  padding: 0;
  color: #91a1b8;
  font-size: 12px;
  transition: color 180ms ease;
}

.nav-actions .nav-login::before {
  display: none;
}

.nav-login:hover {
  border-color: transparent;
  background: transparent;
  color: #ffffff;
}

.nav-wrap > .nav-login:last-child {
  margin-left: auto;
}

.nav-actions .button--small {
  min-height: 38px;
  gap: 9px;
  border-color: rgba(126, 187, 255, 0.32);
  border-radius: 8px;
  padding: 0 13px 0 15px;
  background: linear-gradient(135deg, #1f68ea, #309cff);
  box-shadow: 0 7px 20px rgba(37, 116, 239, 0.18);
  font-size: 12px;
}

.nav-actions .button--small:hover {
  border-color: rgba(153, 207, 255, 0.46);
  background: linear-gradient(135deg, #286ff4 0%, #339cff 68%, #45b0ff 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 10px 26px rgba(37, 116, 239, 0.28);
  transform: translateY(-1px);
}

.nav-actions .button--small svg {
  box-sizing: content-box;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(2, 8, 20, 0.16);
  padding: 4px;
}

.nav-actions .nav-action-arrow {
  display: inline-block;
  width: auto;
  height: auto;
  border-radius: 0;
  background: transparent;
  font-size: 14px;
  transition: transform 180ms ease;
}

.nav-actions .button--small:hover .nav-action-arrow {
  background: transparent;
  transform: translateX(2px);
}

.nav-wrap a:focus-visible,
.menu-toggle:focus-visible,
.mobile-menu a:focus-visible {
  outline: 2px solid rgba(82, 153, 255, 0.9);
  outline-offset: 2px;
}

.menu-toggle {
  grid-column: 3;
  justify-self: end;
  width: 42px;
  height: 42px;
  border-color: rgba(96, 165, 250, 0.18);
  border-radius: 11px;
  background: rgba(47, 125, 255, 0.055);
}

.mobile-menu {
  top: 86px;
  right: 16px;
  left: 16px;
  width: auto;
  border: 1px solid rgba(96, 165, 250, 0.17);
  border-radius: 16px;
  background: rgba(4, 9, 19, 0.97);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.5);
  pointer-events: none;
  backdrop-filter: blur(22px) saturate(130%);
}

.mobile-menu.is-open {
  max-height: calc(100vh - 102px);
  pointer-events: auto;
}

.mobile-menu__inner {
  width: 100%;
  padding: 12px 14px 24px;
}

.mobile-menu__inner > a:not(.button) {
  min-height: 56px;
  border-bottom-color: rgba(96, 165, 250, 0.1);
  border-radius: 9px;
  padding: 0 10px;
  font-size: 16px;
  transition: background-color 180ms ease, color 180ms ease;
}

.mobile-menu__inner > a:not(.button):hover {
  background: rgba(47, 125, 255, 0.075);
  color: #ffffff;
}

.mobile-menu .button {
  border-radius: 10px;
}

.mobile-menu__actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin-top: 14px;
}

.mobile-menu__actions .button {
  min-height: 48px;
  margin-top: 0;
  padding-inline: 14px;
  font-size: 13px;
}

.mobile-menu__login {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 1px solid rgba(96, 165, 250, 0.16);
  border-radius: 10px;
  background: rgba(47, 125, 255, 0.045);
  color: #a9b7cb;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 650;
  transition: border-color 180ms ease, background-color 180ms ease, color 180ms ease;
}

.mobile-menu__login::before {
  display: none;
}

.mobile-menu__login:hover {
  border-color: rgba(96, 165, 250, 0.28);
  background: rgba(47, 125, 255, 0.085);
  color: #ffffff;
}

@media (max-width: 1120px) {
  .nav-wrap {
    gap: 0;
  }

  .brand {
    padding-right: 0;
  }

  .desktop-nav {
    gap: 22px;
    margin-left: 0;
  }

  .desktop-nav a {
    padding-inline: 0;
  }

  .nav-actions {
    gap: 14px;
  }
}

@media (max-width: 980px) {
  .site-header {
    padding-top: 0;
  }

  .nav-wrap {
    width: calc(100% - 30px);
    height: 64px;
    border-radius: 0;
    padding: 0;
  }

  .menu-toggle {
    margin-left: 0;
  }

  .brand {
    border-right: 0;
    padding-right: 0;
  }

  .brand-mark {
    width: 30px;
    height: 30px;
  }

  .mobile-menu {
    top: 72px;
    right: 10px;
    left: 10px;
  }

  .mobile-menu.is-open {
    max-height: calc(100vh - 82px);
  }
}


/* Focused visual refinement — preserve the electric-blue palette */
.brand-mark::after {
  content: none;
}

.brand-mark svg {
  width: 20px;
  height: 20px;
  overflow: visible;
}

.brand-logo {
  fill: #56a2ff;
}

.brand-name span {
  margin-left: 0.28em;
}

.hero--revamp .hero-aurora {
  opacity: 0.54;
}

.hero-grid-lines {
  opacity: 0.72;
}

.product-card,
.step-card,
.price-card,
.resource-cards,
.solution-panel,
.request-flow-card {
  border-radius: 16px;
}

.product-card:hover,
.step-card:hover,
.price-card:hover {
  border-color: rgba(64, 145, 255, 0.32);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.34);
  transform: translateY(-3px);
}

@media (min-width: 981px) {
  .brand-mark {
    width: 32px;
    height: 32px;
  }

  .brand-name {
    font-size: 18px;
    letter-spacing: 0.01em;
  }

  .desktop-nav a {
    font-size: 13px;
  }

  .hero--revamp .hero-description {
    font-size: 17px;
    line-height: 1.78;
  }

  .hero-cta {
    min-height: 52px;
    font-size: 14px;
  }

  .hero-assurance {
    font-size: 10px;
  }
}

@media (max-width: 980px) {
  .brand-name {
    font-size: 17px;
    letter-spacing: 0.01em;
  }
}

/* Navigation polish */
@media (min-width: 981px) {
  .site-header {
    border-bottom-color: rgba(96, 165, 250, 0.11);
    background: rgba(3, 7, 15, 0.8);
    backdrop-filter: blur(20px) saturate(120%);
  }

  .site-header.is-scrolled {
    border-bottom-color: rgba(96, 165, 250, 0.16);
    background: rgba(3, 7, 15, 0.94);
  }

  .nav-wrap {
    height: 76px;
  }

  .brand {
    gap: 12px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
    border-color: rgba(82, 153, 255, 0.34);
    border-radius: 10px;
    background: linear-gradient(145deg, rgba(47, 125, 255, 0.18), rgba(57, 200, 255, 0.06));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  }

  .brand-mark svg {
    width: 21px;
    height: 21px;
  }

  .brand-name {
    font-size: 18px;
    font-weight: 750;
    letter-spacing: 0;
  }

  .desktop-nav {
    gap: 2px;
    border: 1px solid rgba(96, 165, 250, 0.11);
    border-radius: 12px;
    background: rgba(11, 23, 41, 0.62);
    padding: 4px;
  }

  .desktop-nav a {
    min-height: 36px;
    border-radius: 8px;
    padding: 0 14px;
    font-size: 13px;
    font-weight: 550;
  }

  .desktop-nav a::after {
    display: none;
  }

  .desktop-nav a:hover,
  .desktop-nav a[aria-current="page"] {
    background: rgba(47, 125, 255, 0.1);
    color: #f5f9ff;
  }

  .nav-actions .button--small {
    min-height: 40px;
    border-radius: 10px;
    padding: 0 15px 0 17px;
    box-shadow: 0 7px 18px rgba(37, 116, 239, 0.16);
    font-size: 13px;
    font-weight: 650;
  }
}

@media (max-width: 980px) {
  .brand-mark svg {
    width: 19px;
    height: 19px;
  }

  .menu-toggle {
    border-color: rgba(96, 165, 250, 0.22);
    background: rgba(47, 125, 255, 0.07);
  }
}

/* Frameless brand logo */
.brand-mark {
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.brand-mark svg {
  width: 30px;
  height: 30px;
}

@media (max-width: 980px) {
  .brand-mark svg {
    width: 27px;
    height: 27px;
  }
}
