:root {
  color-scheme: dark;
  --bg: #020714;
  --panel: rgba(232, 242, 255, 0.08);
  --panel-strong: rgba(232, 242, 255, 0.14);
  --text: #f4f8ff;
  --muted: #aebcd3;
  --line: rgba(232, 242, 255, 0.16);
  --blue: #1687ff;
  --blue-2: #65d6ff;
  --blue-3: #083dff;
  --ink: #020714;
  --radius: 8px;
  --max: 1180px;
}

* { box-sizing: border-box; }

html {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  width: 100%;
  max-width: 100%;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 12% 4%, rgba(22, 135, 255, 0.24), transparent 28rem),
    radial-gradient(circle at 88% 0%, rgba(101, 214, 255, 0.18), transparent 30rem),
    linear-gradient(180deg, #020714 0%, #07111f 46%, #020714 100%);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -4;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: linear-gradient(to bottom, black, transparent 72%);
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }

.tech-background {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  background: #020612;
}

#network-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
}

.tech-background__vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 22%, transparent 0%, rgba(2, 6, 18, 0.08) 46%, rgba(2, 6, 18, 0.5) 100%),
    linear-gradient(180deg, rgba(2, 6, 18, 0) 0%, rgba(2, 6, 18, 0.16) 58%, rgba(2, 6, 18, 0.58) 100%);
}

.aurora {
  position: fixed;
  inset: -25% -20% auto;
  z-index: 1;
  height: 72vh;
  background:
    radial-gradient(circle at 28% 42%, rgba(22, 135, 255, 0.38), transparent 32%),
    radial-gradient(circle at 70% 34%, rgba(101, 214, 255, 0.24), transparent 36%);
  filter: blur(42px);
  animation: auroraDrift 9s ease-in-out infinite alternate;
  pointer-events: none;
}

.cosmic-layer {
  position: fixed;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
  opacity: 0.42;
  mix-blend-mode: screen;
  mask-image: linear-gradient(to bottom, black 0%, black 74%, transparent 100%);
}

.star-point {
  position: absolute;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: rgba(213, 238, 255, 0.9);
  box-shadow: 0 0 12px rgba(101, 214, 255, 0.72);
  opacity: 0.22;
  animation: starDrift var(--speed, 11s) ease-in-out infinite alternate;
}

.poly-shard {
  position: absolute;
  width: var(--size, 74px);
  height: var(--size, 74px);
  opacity: 0.11;
  border: 1px solid rgba(101, 214, 255, 0.44);
  background: linear-gradient(135deg, rgba(22, 135, 255, 0.12), rgba(101, 214, 255, 0.02));
  clip-path: polygon(50% 0, 100% 36%, 80% 100%, 18% 86%, 0 26%);
  filter: drop-shadow(0 0 18px rgba(22, 135, 255, 0.28));
  transform: rotate(var(--rotate, 0deg));
  animation: polyFloat var(--speed, 18s) ease-in-out infinite alternate;
}

@keyframes starDrift {
  from {
    transform: translate3d(0, 0, 0) scale(0.85);
    opacity: 0.14;
  }
  50% {
    opacity: 0.58;
  }
  to {
    transform: translate3d(var(--dx, 18px), var(--dy, -26px), 0) scale(1.12);
    opacity: 0.28;
  }
}

@keyframes polyFloat {
  from {
    transform: translate3d(0, 0, 0) rotate(var(--rotate, 0deg));
  }
  to {
    transform: translate3d(var(--dx, 18px), var(--dy, -22px), 0) rotate(calc(var(--rotate, 0deg) + 18deg));
  }
}

@keyframes auroraDrift {
  from { transform: translate3d(-2%, 0, 0) scale(1); }
  to { transform: translate3d(2%, 5%, 0) scale(1.08); }
}

.page-shell {
  position: relative;
  z-index: 2;
  width: 100%;
  overflow: hidden;
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  width: min(calc(100% - 28px), var(--max));
  margin: 14px auto 0;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(2, 7, 20, 0.72);
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.28);
}

.brand, .nav-links, .header-cta, .hero-actions, .trust-row {
  display: flex;
  align-items: center;
  min-width: 0;
}

.brand {
  gap: 10px;
  font-weight: 900;
}

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 900;
}

.nav-links {
  justify-content: center;
  gap: 6px;
}

.nav-links a, .header-cta {
  border-radius: var(--radius);
  color: var(--muted);
}

.nav-links a {
  padding: 10px 12px;
  font-size: 0.92rem;
  font-weight: 700;
}

.nav-links a:hover, .nav-links .active {
  background: rgba(22, 135, 255, 0.12);
  color: var(--text);
}

.lead-header .nav-links a {
  padding: 12px 18px;
  border: 1px solid rgba(101, 214, 255, 0.26);
  background: rgba(232, 242, 255, 0.08);
  color: #dce9ff;
  font-size: 1.04rem;
  font-weight: 900;
}

.lead-header .nav-links a:hover {
  border-color: rgba(101, 214, 255, 0.5);
  background: rgba(22, 135, 255, 0.18);
  color: #ffffff;
}

.header-cta {
  gap: 8px;
  min-height: 42px;
  padding: 0 13px;
  border: 1px solid rgba(101, 214, 255, 0.36);
  color: var(--blue-2);
  font-weight: 800;
}

.hero, .section {
  width: min(calc(100% - 36px), var(--max));
  margin-inline: auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(320px, 0.86fr);
  align-items: center;
  gap: clamp(28px, 6vw, 72px);
  min-height: min(850px, calc(100svh - 84px));
  padding: clamp(46px, 7vw, 92px) 0 84px;
}

.interior-hero {
  min-height: auto;
  padding-bottom: 54px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--blue-2);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1, h2, h3, p { margin-top: 0; }

.hero-copy,
.section-copy,
.quote-copy,
.hero-lede,
p {
  min-width: 0;
  max-width: 100%;
}

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: clamp(3.15rem, 7.5vw, 6.1rem);
  line-height: 0.94;
  letter-spacing: 0;
}

h1 span { display: block; }

.kinetic-text {
  will-change: transform, opacity;
}

.headline-sheen {
  position: relative;
  overflow: hidden;
}

.headline-sheen::after {
  position: absolute;
  top: -12%;
  bottom: -12%;
  left: -60%;
  width: 42%;
  content: "";
  background: linear-gradient(105deg, transparent 0%, rgba(101, 214, 255, 0.03) 30%, rgba(255, 255, 255, 0.18) 50%, rgba(101, 214, 255, 0.04) 68%, transparent 100%);
  transform: skewX(-18deg);
  pointer-events: none;
  mix-blend-mode: screen;
}

.headline-sheen.sheen-run::after {
  animation: textSheen 1.25s ease-out both;
}

@keyframes textSheen {
  to { transform: translateX(390%) skewX(-18deg); }
}

h2 {
  max-width: 850px;
  margin-bottom: 18px;
  font-size: clamp(2rem, 5vw, 4.1rem);
  line-height: 1.02;
  letter-spacing: 0;
}

p {
  color: var(--muted);
  line-height: 1.66;
}

.hero-lede {
  max-width: 650px;
  margin-bottom: 28px;
  font-size: clamp(1.02rem, 1.85vw, 1.24rem);
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid rgba(101, 214, 255, 0.48);
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  color: #001326;
  font-weight: 900;
  box-shadow: 0 18px 55px rgba(22, 135, 255, 0.2);
  cursor: pointer;
}

.button-ghost {
  background: rgba(232, 242, 255, 0.07);
  color: var(--text);
  box-shadow: none;
}

.trust-row {
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.trust-row span {
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(232, 242, 255, 0.06);
  color: #dce9ff;
  font-size: 0.88rem;
  font-weight: 800;
}

.hero-device, .image-hero {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(232, 242, 255, 0.075);
  backdrop-filter: blur(14px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 38px 130px rgba(0, 0, 0, 0.36);
}

.hero-device {
  position: relative;
  overflow: hidden;
  min-height: 520px;
}

.hero-device.ap-hero {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
}

.device-top {
  display: flex;
  gap: 8px;
  padding: 18px;
}

.device-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(232, 242, 255, 0.16);
}

.floorplan-visual {
  position: relative;
  min-height: 360px;
  margin: 0 18px 16px;
  overflow: hidden;
  border: 1px solid rgba(101, 214, 255, 0.16);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 82% 82%, rgba(22, 135, 255, 0.18), transparent 15rem),
    linear-gradient(135deg, rgba(232, 242, 255, 0.055), rgba(232, 242, 255, 0.02));
}

.floorplan-large {
  min-height: 410px;
  margin: 92px 22px 16px;
}

.floorplan-visual svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.floor-shell,
.floor-wall {
  fill: none;
  stroke: rgba(232, 242, 255, 0.2);
  stroke-width: 1.35;
}

.floor-shell {
  stroke-width: 1.6;
}

.floor-wall {
  stroke-dasharray: 7 9;
}

.plan-node {
  position: absolute;
  z-index: 3;
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border: 1px solid rgba(101, 214, 255, 0.45);
  border-radius: 50%;
  background:
    radial-gradient(circle at 44% 38%, rgba(101, 214, 255, 0.34), rgba(2, 7, 20, 0.96) 62%);
  color: var(--blue-2);
  box-shadow: 0 0 0 20px rgba(22, 135, 255, 0.09), 0 0 44px rgba(101, 214, 255, 0.22);
  animation: apBreathe 3.2s ease-in-out infinite;
}

.plan-node svg {
  width: 30px;
  height: 30px;
}

.router-node {
  right: 9%;
  bottom: 10%;
}

.ap-node-one {
  left: 18%;
  top: 16%;
  animation-delay: 0.25s;
}

.ap-node-two {
  right: 12%;
  top: 14%;
  animation-delay: 0.5s;
}

.ap-node-three {
  left: 15%;
  bottom: 14%;
  animation-delay: 0.75s;
}

.room-label {
  position: absolute;
  z-index: 2;
  padding: 7px 9px;
  border: 1px solid rgba(101, 214, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(2, 7, 20, 0.48);
  color: rgba(244, 248, 255, 0.72);
  font-size: 0.74rem;
  font-weight: 900;
}

.room-living {
  left: 17%;
  top: 42%;
}

.room-office {
  right: 18%;
  top: 40%;
}

.room-patio {
  left: 17%;
  bottom: 37%;
}

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

.coverage-chips span {
  min-height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(101, 214, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(2, 7, 20, 0.62);
  color: #ddecff;
  font-size: 0.82rem;
  font-weight: 900;
  text-align: center;
}

.network-ap-system {
  position: relative;
  width: min(calc(100% - 44px), 520px);
  aspect-ratio: 1;
  margin: 102px auto 16px;
  overflow: hidden;
  border: 1px solid rgba(154, 224, 255, 0.18);
  border-radius: 34px;
  background:
    radial-gradient(circle at 50% 44%, rgba(101, 214, 255, 0.16), transparent 36%),
    radial-gradient(circle at 70% 70%, rgba(255, 145, 43, 0.09), transparent 35%),
    linear-gradient(145deg, rgba(3, 10, 22, 0.88), rgba(7, 22, 38, 0.68));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    inset 0 0 90px rgba(101, 214, 255, 0.065),
    0 34px 110px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(14px);
}

.network-ap-system::before {
  position: absolute;
  inset: 14%;
  content: "";
  border-radius: 999px;
  background: radial-gradient(circle, rgba(101, 214, 255, 0.13), transparent 63%);
  filter: blur(18px);
}

.network-wire-svg {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.network-orbit {
  fill: none;
  stroke: rgba(101, 214, 255, 0.12);
  stroke-width: 0.45;
  stroke-dasharray: 0.24 0.2;
  animation: electricDash 20s linear infinite;
}

.orbit-tight {
  stroke: rgba(255, 169, 79, 0.15);
  animation-direction: reverse;
}

.network-route {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.network-route-glow {
  stroke: rgba(101, 214, 255, 0.26);
  stroke-width: 2.3;
  filter: url(#network-glow) drop-shadow(0 0 16px rgba(101, 214, 255, 0.34));
}

.network-route-core {
  stroke: rgba(123, 226, 255, 0.86);
  stroke-width: 0.95;
  stroke-dasharray: 0.1 0.055;
  filter: drop-shadow(0 0 7px rgba(101, 214, 255, 0.72));
  animation: electricDash 2.8s linear infinite;
}

.network-charge {
  fill: #f3fdff;
  filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.95)) drop-shadow(0 0 13px rgba(101, 214, 255, 0.9));
}

.network-tile {
  position: absolute;
  z-index: 5;
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  border: 1px solid rgba(101, 214, 255, 0.26);
  border-radius: 26px;
  background: rgba(5, 18, 33, 0.92);
  color: #eafbff;
  box-shadow:
    0 0 0 15px rgba(101, 214, 255, 0.055),
    0 24px 70px rgba(0, 0, 0, 0.35);
  transform: translate(-50%, -50%);
}

.network-tile svg {
  width: 25px;
  height: 25px;
}

.network-tile b {
  position: absolute;
  bottom: -25px;
  left: 50%;
  padding: 2px 7px;
  border: 1px solid rgba(101, 214, 255, 0.16);
  border-radius: 999px;
  background: rgba(2, 7, 20, 0.72);
  transform: translateX(-50%);
  color: rgba(232, 243, 255, 0.86);
  font-size: 0.72rem;
  font-weight: 900;
  white-space: nowrap;
}

.router-tile {
  left: 50%;
  top: 52%;
  width: 96px;
  height: 96px;
  border-color: rgba(255, 173, 83, 0.34);
  border-radius: 30px;
  background:
    radial-gradient(circle at 34% 20%, rgba(255, 255, 255, 0.64), transparent 8%),
    linear-gradient(145deg, rgba(13, 32, 51, 0.96), rgba(5, 12, 24, 0.96));
  box-shadow:
    0 0 0 18px rgba(255, 145, 43, 0.08),
    0 0 54px rgba(255, 145, 43, 0.18),
    0 26px 80px rgba(0, 0, 0, 0.4);
  animation-delay: -0.6s;
}

.router-tile svg {
  width: 38px;
  height: 38px;
  stroke-width: 2.6;
}

.ap-tile {
  border-radius: 999px;
}

.ap-top { left: 50%; top: 18%; }
.ap-left { left: 23%; top: 35%; }
.ap-right { left: 77%; top: 35%; }
.ap-bottom-left { left: 30%; top: 76%; }
.ap-bottom-right { left: 72%; top: 76%; }

.ap-beam,
.ap-beam::before,
.ap-beam::after {
  position: absolute;
  inset: -22px;
  border: 1px solid rgba(101, 214, 255, 0.24);
  border-radius: 999px;
  content: "";
  opacity: 0;
  pointer-events: none;
  animation: wifiBeam 3.4s ease-out infinite;
}

.ap-beam::before {
  inset: -10px;
  animation-delay: 0.8s;
}

.ap-beam::after {
  inset: -34px;
  animation-delay: 1.6s;
}

.ap-left .ap-beam { animation-delay: 0.2s; }
.ap-right .ap-beam { animation-delay: 0.5s; }
.ap-bottom-left .ap-beam { animation-delay: 0.8s; }
.ap-bottom-right .ap-beam { animation-delay: 1.1s; }

@keyframes wifiBeam {
  0% {
    opacity: 0;
    transform: scale(0.68);
  }
  22% {
    opacity: 0.48;
  }
  100% {
    opacity: 0;
    transform: scale(1.4);
  }
}

.signal-stage {
  position: absolute;
  inset: 58px 24px 88px;
  display: grid;
  place-items: center;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(101, 214, 255, 0.22);
  border-radius: 50%;
  animation: spin 16s linear infinite;
}

.orbit-a { width: 72%; aspect-ratio: 1; }
.orbit-b { width: 52%; aspect-ratio: 1; animation-duration: 11s; animation-direction: reverse; }
.orbit-c { width: 35%; aspect-ratio: 1; animation-duration: 8s; }

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

.signal-node {
  position: absolute;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid rgba(101, 214, 255, 0.34);
  border-radius: 50%;
  background: rgba(4, 20, 42, 0.88);
  color: var(--blue-2);
  box-shadow: 0 0 0 0 rgba(22, 135, 255, 0.32);
  animation: pulse 2.6s infinite;
}

.signal-hub {
  width: 72px;
  height: 72px;
  color: white;
  background: linear-gradient(135deg, var(--blue-3), var(--blue-2));
}

.node-a { top: 9%; left: 18%; animation-delay: 0.2s; }
.node-b { top: 22%; right: 12%; animation-delay: 0.45s; }
.node-c { bottom: 14%; left: 16%; animation-delay: 0.7s; }
.node-d { right: 18%; bottom: 10%; animation-delay: 0.95s; }

@keyframes pulse {
  70% { box-shadow: 0 0 0 28px rgba(22, 135, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(22, 135, 255, 0); }
}

.ap-hero {
  isolation: isolate;
}

.ap-flow-mini {
  position: absolute;
  inset: 62px 18px 104px;
  overflow: hidden;
}

.ap-flow-mini svg,
.ap-lab-stage svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.mini-floor,
.lab-grid-outline,
.lab-wall {
  fill: none;
  stroke: rgba(232, 242, 255, 0.14);
  stroke-width: 1.25;
}

.mini-floor {
  stroke-dasharray: 10 10;
}

.electric-path {
  fill: none;
  stroke: url(#home-electric);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 10px rgba(101, 214, 255, 0.72));
  stroke-dasharray: 12 18;
  animation: electricDash 1.15s linear infinite;
}

@keyframes electricDash {
  to { stroke-dashoffset: -60; }
}

.flow-packet {
  fill: #ffffff;
  filter: drop-shadow(0 0 12px rgba(101, 214, 255, 1));
}

.flow-label {
  position: absolute;
  z-index: 2;
  padding: 8px 10px;
  border: 1px solid rgba(101, 214, 255, 0.24);
  border-radius: var(--radius);
  background: rgba(2, 7, 20, 0.78);
  color: #dbeeff;
  font-size: 0.78rem;
  font-weight: 900;
  box-shadow: 0 0 26px rgba(22, 135, 255, 0.14);
}

.label-router { left: 5%; bottom: 8%; }
.label-ap-a { right: 5%; top: 12%; }
.label-ap-b { right: 6%; bottom: 14%; }

.ap-node {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  border: 1px solid rgba(101, 214, 255, 0.36);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(101, 214, 255, 0.28), rgba(4, 20, 42, 0.92));
  color: var(--blue-2);
  box-shadow: 0 0 0 18px rgba(22, 135, 255, 0.08), 0 0 36px rgba(22, 135, 255, 0.26);
  animation: apBreathe 3.4s ease-in-out infinite;
}

.ap-core { left: 14%; bottom: 20%; }
.ap-one { right: 13%; top: 17%; animation-delay: 0.4s; }
.ap-two { right: 14%; bottom: 18%; animation-delay: 0.8s; }
.ap-three { right: 27%; top: 46%; animation-delay: 1.1s; }

@keyframes apBreathe {
  50% {
    transform: translateY(-4px) scale(1.04);
    box-shadow: 0 0 0 28px rgba(22, 135, 255, 0), 0 0 46px rgba(101, 214, 255, 0.38);
  }
}

.device-caption, .floating-spec {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(2, 7, 20, 0.76);
}

.device-caption strong, .floating-spec strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.05rem;
}

.device-caption span, .floating-spec span {
  color: var(--muted);
}

.section {
  padding: clamp(58px, 8vw, 104px) 0;
}

.split-section, .proof-section, .quote-section, .system-section {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: clamp(26px, 5vw, 64px);
  align-items: start;
}

.metric-grid, .feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.feature-grid {
  grid-template-columns: repeat(4, 1fr);
}

.metric-card, .review-card, .lead-form, .system-map, .ap-flow-lab, .radar-card, .scene-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(232, 242, 255, 0.075);
  backdrop-filter: blur(14px);
}

.metric-card {
  padding: 24px;
}

.metric-card i {
  color: var(--blue-2);
}

.metric-card strong {
  display: block;
  margin: 16px 0 8px;
  font-size: 1.15rem;
}

.services-section .section-copy {
  margin-bottom: 34px;
}

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

.service-tile {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #07111f;
}

.service-tile img, .image-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.05);
}

.service-tile::after, .image-hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 18%, rgba(2, 7, 20, 0.86));
}

.service-tile span, .service-tile strong {
  position: absolute;
  z-index: 1;
  left: 22px;
  right: 22px;
}

.service-tile span {
  bottom: 112px;
  color: var(--blue-2);
  font-weight: 900;
  text-transform: uppercase;
}

.service-tile strong {
  bottom: 24px;
  font-size: clamp(1.2rem, 2.4vw, 1.8rem);
  line-height: 1.15;
}

.proof-panel {
  position: sticky;
  top: 120px;
}

.quote-rail {
  display: grid;
  gap: 14px;
}

.review-card {
  margin: 0;
  padding: clamp(22px, 3vw, 34px);
}

.review-card blockquote {
  margin: 0 0 18px;
  color: var(--text);
  font-size: clamp(1.05rem, 2vw, 1.5rem);
  line-height: 1.36;
}

.review-card figcaption {
  color: var(--blue-2);
  font-weight: 900;
}

.lead-form {
  display: grid;
  gap: 16px;
  padding: clamp(20px, 4vw, 34px);
}

.lead-form label {
  display: grid;
  gap: 8px;
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 800;
}

.lead-form input, .lead-form select, .lead-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(2, 7, 20, 0.68);
  color: var(--text);
  padding: 12px 13px;
  outline: none;
}

.lead-form textarea {
  resize: vertical;
}

.image-hero {
  position: relative;
  overflow: hidden;
  min-height: 560px;
}

.floating-spec {
  z-index: 2;
}

.system-map, .ap-flow-lab, .radar-card, .scene-card {
  position: relative;
  overflow: hidden;
  min-height: 360px;
}

.network-story {
  display: grid;
  grid-template-columns: 1.16fr 0.84fr;
  gap: clamp(26px, 5vw, 64px);
  align-items: center;
}

.ap-flow-lab {
  min-height: 560px;
  background:
    radial-gradient(circle at 22% 20%, rgba(22, 135, 255, 0.2), transparent 22rem),
    linear-gradient(135deg, rgba(232, 242, 255, 0.1), rgba(232, 242, 255, 0.045));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 36px 120px rgba(0, 0, 0, 0.28);
}

.coverage-lab {
  min-height: auto;
  padding: 22px 0 0;
}

.coverage-lab .coverage-chips {
  margin-inline: 22px;
  margin-bottom: 22px;
}

.coverage-heading {
  display: grid;
  gap: 12px;
  padding: 6px 22px 4px;
}

.coverage-heading h2 {
  max-width: 920px;
  margin-bottom: 0;
  font-size: clamp(2rem, 3.7vw, 3.45rem);
  line-height: 1.08;
  padding-bottom: 0.08em;
}

.coverage-heading h2.headline-sheen {
  overflow: visible;
}

.coverage-heading p {
  max-width: 940px;
  margin: 0;
  font-size: clamp(1rem, 1.7vw, 1.2rem);
}

.coverage-lab .network-hero-visual {
  min-height: clamp(240px, 27vw, 360px);
  margin: 18px 22px 0;
  border-radius: 30px;
  border-color: rgba(101, 214, 255, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 28px 90px rgba(0, 0, 0, 0.32);
  -webkit-mask-image: linear-gradient(to bottom, black 0%, black 70%, rgba(0, 0, 0, 0.88) 83%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 0%, black 70%, rgba(0, 0, 0, 0.88) 83%, transparent 100%);
}

.coverage-lab .network-hero-visual .floating-spec {
  right: 18px;
  bottom: 30px;
  left: 18px;
}

.coverage-lab .network-ap-system {
  width: min(calc(100% - 44px), 440px);
  margin: -30px auto 16px;
}

.lab-header {
  position: absolute;
  top: 18px;
  right: 18px;
  left: 18px;
  z-index: 3;
  display: grid;
  gap: 5px;
  padding: 15px;
  border: 1px solid rgba(101, 214, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(2, 7, 20, 0.62);
}

.lab-header span {
  color: var(--blue-2);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.lab-header strong {
  font-size: clamp(1rem, 2vw, 1.35rem);
}

.ap-lab-stage {
  position: absolute;
  inset: 90px 16px 16px;
}

.lab-path {
  stroke: url(#electric-main);
  stroke-width: 4;
  filter: url(#electric-glow);
}

.lab-node {
  position: absolute;
  z-index: 3;
  display: grid;
  place-items: center;
  gap: 6px;
  width: 92px;
  height: 92px;
  border: 1px solid rgba(101, 214, 255, 0.32);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(101, 214, 255, 0.26), rgba(2, 7, 20, 0.9) 64%);
  color: var(--blue-2);
  text-align: center;
  box-shadow: 0 0 0 18px rgba(22, 135, 255, 0.08);
  animation: apBreathe 3.6s ease-in-out infinite;
}

.lab-node b {
  display: none;
}

.lab-node svg {
  width: 34px;
  height: 34px;
}

.ap-node svg {
  width: 28px;
  height: 28px;
}

.node-router { left: 6%; top: 42%; }
.node-ap-1 { right: 6%; top: 9%; animation-delay: 0.35s; }
.node-ap-2 { right: 6%; top: 42%; animation-delay: 0.7s; }
.node-ap-3 { right: 6%; bottom: 7%; animation-delay: 1.05s; }

.flow-word {
  position: absolute;
  z-index: 4;
  color: transparent;
  background: linear-gradient(90deg, rgba(255,255,255,0.38), #ffffff, var(--blue-2), rgba(255,255,255,0.38));
  background-size: 240% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  font-size: clamp(1.35rem, 3.5vw, 2.6rem);
  font-weight: 900;
  letter-spacing: 0;
  text-shadow: 0 0 22px rgba(101, 214, 255, 0.3);
  animation: wordCharge 2.5s linear infinite;
}

.word-speed { left: 20%; top: 25%; }
.word-roam { left: 25%; bottom: 18%; animation-delay: 0.45s; }
.word-stable { right: 13%; top: 55%; animation-delay: 0.9s; }

@keyframes wordCharge {
  to { background-position: -240% 0; }
}

.path-line {
  position: absolute;
  inset: 50%;
  width: 84%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue-2), transparent);
  transform: translate(-50%, -50%) rotate(-18deg);
}

.map-dot, .camera-dot {
  position: absolute;
  display: block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--blue-2);
  box-shadow: 0 0 0 20px rgba(22, 135, 255, 0.08);
}

.dot-1 { top: 22%; left: 18%; }
.dot-2 { top: 36%; right: 24%; }
.dot-3 { bottom: 22%; left: 32%; }
.dot-4 { right: 16%; bottom: 18%; }

.radar-card::before {
  position: absolute;
  inset: 16%;
  content: "";
  border: 1px solid rgba(101, 214, 255, 0.22);
  border-radius: 50%;
  box-shadow: 0 0 0 54px rgba(22, 135, 255, 0.05), 0 0 0 108px rgba(22, 135, 255, 0.035);
}

.radar-sweep {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 42%;
  height: 2px;
  background: linear-gradient(90deg, var(--blue-2), transparent);
  transform-origin: left center;
  animation: spin 3.4s linear infinite;
}

.camera-dot { top: 25%; left: 30%; }
.camera-dot.dot-b { top: 52%; right: 28%; left: auto; }
.camera-dot.dot-c { bottom: 24%; left: 42%; }

.scene-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding: 24px;
  align-content: center;
}

.scene-card button {
  min-height: 78px;
  border: 1px solid rgba(101, 214, 255, 0.3);
  border-radius: var(--radius);
  background: rgba(22, 135, 255, 0.12);
  color: var(--text);
  font-weight: 900;
  animation: sceneGlow 4s ease-in-out infinite;
}

.scene-card button:nth-child(2) { animation-delay: 0.4s; }
.scene-card button:nth-child(3) { animation-delay: 0.8s; }
.scene-card button:nth-child(4) { animation-delay: 1.2s; }

@keyframes sceneGlow {
  50% {
    background: rgba(101, 214, 255, 0.22);
    transform: translateY(-3px);
  }
}

svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.reveal {
  opacity: 1;
  transform: none;
}

.lead-header {
  grid-template-columns: auto minmax(0, 1fr) auto;
  border-radius: 22px;
  background: rgba(4, 16, 30, 0.74);
}

.logo-brand img {
  width: clamp(210px, 25vw, 320px);
  height: 66px;
  object-fit: contain;
}

.networking-landing-hero {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 440px);
  align-items: start;
  min-height: auto;
  padding-top: clamp(42px, 6vw, 76px);
  padding-bottom: 38px;
}

.networking-landing-hero h1 {
  max-width: 760px;
  font-size: clamp(3.25rem, 6vw, 5.35rem);
}

.hero-proof span {
  gap: 7px;
  border-color: rgba(101, 214, 255, 0.22);
  background: rgba(5, 18, 33, 0.72);
}

.hero-proof svg {
  color: var(--blue-2);
}

.wifi-quote-card {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 12px;
  scroll-margin-top: 120px;
  padding: clamp(22px, 4vw, 30px);
  border-radius: 24px;
  background: rgba(248, 251, 255, 0.96);
  color: #031426;
  box-shadow:
    0 34px 120px rgba(0, 0, 0, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.wifi-quote-card::before {
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: inherit;
  content: "";
  background: linear-gradient(135deg, rgba(101, 214, 255, 0.72), rgba(255, 145, 43, 0.46), rgba(255, 255, 255, 0));
  opacity: 0.48;
}

.wifi-quote-card h2 {
  margin-bottom: 2px;
  color: #020714;
  font-size: clamp(1.55rem, 3vw, 2.25rem);
  line-height: 1.04;
}

.wifi-quote-card p {
  color: #486076;
}

.form-eyebrow {
  margin: 0;
  color: #006b94 !important;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quote-pulse {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 38px;
  margin: 4px 0 2px;
  padding: 8px 12px;
  border: 1px solid rgba(22, 135, 255, 0.22);
  border-radius: 8px;
  background: rgba(22, 135, 255, 0.08);
  color: #004a7b;
  font-size: 0.87rem;
  font-weight: 900;
}

.quote-pulse span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--blue-2);
  box-shadow: 0 0 0 6px rgba(101, 214, 255, 0.2);
  animation: quotePulse 2.1s ease-in-out infinite;
}

.wifi-quote-card .lead-form {
  gap: 13px;
  padding: 0;
  border: 0;
  background: transparent;
  backdrop-filter: none;
}

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

.wifi-quote-card .lead-form label {
  color: #021324;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.wifi-quote-card .lead-form em {
  color: #6f8295;
  font-style: normal;
  font-weight: 700;
  text-transform: none;
}

.wifi-quote-card .lead-form input,
.wifi-quote-card .lead-form select {
  min-height: 42px;
  border-color: #d5e0eb;
  background: #f7faff;
  color: #11283d;
}

.isp-message {
  display: none;
  margin: -0.25rem 0 0.9rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(245, 158, 11, .4);
  border-radius: 9px;
  background: rgba(255, 247, 237, .92);
  color: #7c2d12;
  font-size: 0.86rem;
  line-height: 1.55;
}

.isp-message.is-visible {
  display: grid;
  gap: 0.35rem;
}

.isp-message strong {
  color: #9a3412;
  font-size: 0.88rem;
}

.quote-submit {
  width: 100%;
  min-height: 50px;
  margin-top: 2px;
  border-color: rgba(22, 135, 255, 0.3);
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  color: #001326;
}

.quote-submit:disabled {
  cursor: not-allowed;
  opacity: .55;
}

.direct-contact {
  display: grid;
  gap: 8px;
  justify-items: center;
  color: #52697f;
  font-size: 0.83rem;
}

.direct-contact a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #0070a8;
  font-weight: 900;
}

.form-note {
  margin: 0;
  text-align: center;
  font-size: 0.78rem;
}

.form-status {
  min-height: 20px;
  margin: 0;
  color: #0070a8 !important;
  text-align: center;
  font-size: 0.84rem;
  font-weight: 900;
}

.hero-image-section {
  padding-top: 18px;
}

.network-hero-visual {
  min-height: clamp(360px, 54vw, 650px);
  border-radius: 30px;
}

.network-hero-visual::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    radial-gradient(circle at 50% 8%, rgba(101, 214, 255, 0.18), transparent 35%),
    linear-gradient(180deg, rgba(2, 7, 20, 0.04), rgba(2, 7, 20, 0.62));
  pointer-events: none;
}

.network-hero-visual .floating-spec {
  z-index: 3;
}

.section-jump {
  margin-top: 20px;
}

.button-ghost.section-jump {
  border-color: rgba(101, 214, 255, 0.48);
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  color: #001326;
  box-shadow: 0 18px 55px rgba(22, 135, 255, 0.2);
}

.process-story {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(26px, 5vw, 64px);
  align-items: start;
}

.process-head {
  position: sticky;
  top: 120px;
}

.process-head h2 {
  max-width: 9.5ch;
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 0.94;
}

.process-head h2 span {
  display: block;
  white-space: nowrap;
}

.story-track {
  position: relative;
  display: grid;
  gap: 20px;
  padding-left: 22px;
}

.story-track::before {
  position: absolute;
  top: 12px;
  bottom: 12px;
  left: 7px;
  width: 2px;
  content: "";
  background: rgba(255, 255, 255, 0.1);
}

.story-progress-line {
  position: absolute;
  top: 12px;
  bottom: 12px;
  left: 7px;
  z-index: 1;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--blue-2), var(--blue), #ffad53);
  box-shadow: 0 0 24px rgba(101, 214, 255, 0.75);
  transform: scaleY(0);
  transform-origin: top;
  pointer-events: none;
}

.story-panel {
  position: relative;
  z-index: 2;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(232, 242, 255, 0.085), rgba(232, 242, 255, 0.032));
  backdrop-filter: blur(14px);
  box-shadow: 0 24px 84px rgba(0, 0, 0, 0.24);
  will-change: transform, opacity, filter;
}

.story-panel::before {
  position: absolute;
  top: 31px;
  left: -28px;
  width: 16px;
  height: 16px;
  border: 1px solid rgba(101, 214, 255, 0.8);
  border-radius: 999px;
  content: "";
  background: #07111f;
  box-shadow: 0 0 22px rgba(101, 214, 255, 0.7);
}

.story-panel span {
  color: var(--blue-2);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.story-panel strong {
  display: block;
  margin-top: 12px;
  color: var(--text);
  font-size: clamp(1.25rem, 2.4vw, 1.55rem);
  line-height: 1.15;
}

.story-panel p {
  margin: 12px 0 0;
}

.wifi-reviews {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(26px, 5vw, 64px);
  align-items: start;
}

.rating-card {
  display: grid;
  gap: 10px;
  max-width: 380px;
  margin-top: 26px;
  padding: 24px;
  border: 1px solid rgba(101, 214, 255, 0.22);
  border-radius: 28px;
  background: rgba(5, 18, 33, 0.76);
  backdrop-filter: blur(16px);
}

.blue-stars {
  display: flex;
  gap: 5px;
  color: var(--blue-2);
  filter: drop-shadow(0 0 12px rgba(101, 214, 255, 0.62));
}

.blue-stars svg {
  width: 23px;
  height: 23px;
  fill: currentColor;
}

.rating-card strong {
  color: var(--text);
  font-size: 4.2rem;
  line-height: 0.9;
}

.rating-card span {
  color: var(--muted);
  font-weight: 800;
}

.wifi-speed-proof {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(260px, 0.75fr);
  gap: clamp(26px, 6vw, 72px);
  align-items: center;
  position: relative;
  padding-bottom: clamp(28px, 5vw, 58px);
}

.wifi-speed-proof::before {
  content: "";
  position: absolute;
  inset: 8% 16% auto auto;
  width: min(420px, 70vw);
  aspect-ratio: 1;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(101, 214, 255, 0.16), transparent 68%);
  filter: blur(18px);
  pointer-events: none;
}

.speed-proof-copy {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.speed-proof-copy h2 {
  margin-bottom: 18px;
}

.speed-proof-copy p {
  max-width: 540px;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.18rem);
  line-height: 1.65;
}

.speed-proof-stat {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6px 14px;
  align-items: center;
  width: min(100%, 420px);
  margin-top: 28px;
  padding: 18px;
  border: 1px solid rgba(101, 214, 255, 0.24);
  border-radius: 26px;
  background:
    radial-gradient(circle at 22% 18%, rgba(101, 214, 255, 0.18), transparent 15rem),
    rgba(5, 18, 33, 0.74);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(16px);
}

.speed-proof-stat svg {
  grid-row: span 2;
  width: 30px;
  height: 30px;
  color: var(--blue-2);
  filter: drop-shadow(0 0 14px rgba(101, 214, 255, 0.58));
}

.speed-proof-stat span {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.speed-proof-stat strong {
  color: var(--text);
  font-size: clamp(1.85rem, 4.8vw, 3.35rem);
  line-height: 0.95;
}

.speed-test-phone {
  position: relative;
  z-index: 1;
  justify-self: center;
  width: min(100%, 430px);
  margin: 0;
  padding: 6px;
  border: 1px solid rgba(101, 214, 255, 0.3);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(232, 242, 255, 0.13), rgba(232, 242, 255, 0.03)),
    rgba(5, 18, 33, 0.66);
  box-shadow:
    0 34px 110px rgba(0, 0, 0, 0.42),
    0 0 55px rgba(101, 214, 255, 0.12);
  backdrop-filter: blur(18px);
}

.speed-test-phone::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(130deg, rgba(101, 214, 255, 0.28), transparent 34%, rgba(255, 145, 43, 0.22));
  opacity: 0.7;
  pointer-events: none;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  padding: 1px;
}

.speed-test-phone img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 22px;
}

.final-network-panel {
  display: grid;
  gap: 18px;
  justify-items: start;
  max-width: 900px;
  margin-inline: auto;
  padding: clamp(28px, 5vw, 50px);
  border: 1px solid var(--line);
  border-radius: 34px;
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 145, 43, 0.12), transparent 22rem),
    linear-gradient(135deg, rgba(232, 242, 255, 0.1), rgba(232, 242, 255, 0.04));
  box-shadow: 0 34px 120px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(16px);
}

.final-network-panel h2 {
  margin-bottom: 0;
}

@keyframes quotePulse {
  50% {
    transform: scale(1.15);
    box-shadow: 0 0 0 10px rgba(101, 214, 255, 0);
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .nav-links {
    order: 3;
    grid-column: 1 / -1;
    justify-content: space-between;
    overflow-x: auto;
    padding-top: 4px;
  }

  .header-cta {
    justify-self: end;
  }

  .hero, .split-section, .proof-section, .quote-section, .system-section, .network-story {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 50px;
  }

  .hero-device, .image-hero {
    min-height: 420px;
  }

  .metric-grid, .service-grid, .feature-grid {
    grid-template-columns: 1fr;
  }

  .service-tile {
    min-height: 430px;
  }

  .proof-panel {
    position: static;
  }
}

@media (max-width: 640px) {
  .site-header {
    top: 8px;
    width: calc(100vw - 16px);
    max-width: calc(100vw - 16px);
    padding: 9px;
    gap: 8px;
  }

  .brand span:last-child,
  .header-cta span {
    display: none;
  }

  .header-cta {
    width: 42px;
    padding: 0;
    justify-content: center;
  }

  .nav-links a {
    padding: 9px 10px;
    white-space: nowrap;
    font-size: 0.84rem;
  }

  .nav-links {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 4px;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
  }

  .nav-links a {
    display: grid;
    place-items: center;
    min-width: 0;
    padding-inline: 6px;
    text-align: center;
  }

  .hero, .section {
    width: calc(100vw - 24px);
    max-width: calc(100vw - 24px);
  }

  .hero-copy,
  .section-copy,
  .quote-copy {
    width: 100%;
    overflow: visible;
  }

  p {
    overflow-wrap: break-word;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.25rem, 11vw, 2.85rem);
    line-height: 0.98;
  }

  h2 {
    font-size: clamp(1.9rem, 8.6vw, 2.55rem);
  }

  .hero {
    display: block;
    padding-bottom: 42px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .trust-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .trust-row span {
    display: grid;
    place-items: center;
  }

  .hero-device, .image-hero {
    min-height: 350px;
    margin-top: 28px;
  }

  .hero-device.ap-hero {
    min-height: auto;
  }

  .signal-stage {
    inset: 42px 10px 76px;
  }

  .signal-node {
    width: 44px;
    height: 44px;
  }

  .signal-hub {
    width: 60px;
    height: 60px;
  }

  .device-caption {
    padding: 13px;
  }

  .section {
    padding: 54px 0;
  }

  .service-tile {
    min-height: 360px;
  }

  .image-hero {
    min-height: 330px;
  }

  .system-map, .ap-flow-lab, .radar-card, .scene-card {
    min-height: 300px;
  }

  .coverage-lab {
    min-height: auto;
  }

  .floorplan-visual {
    min-height: 286px;
    margin: 0 12px 12px;
  }

  .floorplan-large {
    min-height: 360px;
    margin: 88px 12px 12px;
  }

  .network-ap-system {
    width: min(calc(100% - 24px), 334px);
    margin: 88px auto 12px;
  }

  .network-route-glow {
    stroke-width: 1.95;
  }

  .network-route-core {
    stroke-width: 0.84;
  }

  .network-tile {
    width: 56px;
    height: 56px;
    border-radius: 22px;
    box-shadow:
      0 0 0 10px rgba(101, 214, 255, 0.055),
      0 18px 48px rgba(0, 0, 0, 0.34);
  }

  .network-tile svg {
    width: 21px;
    height: 21px;
  }

  .network-tile b {
    bottom: -24px;
    font-size: 0.66rem;
  }

  .ap-tile {
    border-radius: 999px;
  }

  .router-tile {
    width: 74px;
    height: 74px;
    border-radius: 25px;
    box-shadow:
      0 0 0 12px rgba(255, 145, 43, 0.075),
      0 0 42px rgba(255, 145, 43, 0.16),
      0 22px 64px rgba(0, 0, 0, 0.38);
  }

  .router-tile svg {
    width: 31px;
    height: 31px;
  }

  .ap-beam,
  .ap-beam::before,
  .ap-beam::after {
    inset: -18px;
  }

  .ap-beam::after {
    inset: -28px;
  }

  .plan-node {
    width: 52px;
    height: 52px;
    box-shadow: 0 0 0 14px rgba(22, 135, 255, 0.08), 0 0 34px rgba(101, 214, 255, 0.2);
  }

  .plan-node svg {
    width: 24px;
    height: 24px;
  }

  .room-label {
    display: none;
  }

  .coverage-chips,
  .coverage-lab .coverage-chips {
    grid-template-columns: 1fr;
    margin: 0 12px 12px;
  }

  .coverage-chips span {
    min-height: 36px;
  }

  .ap-flow-mini {
    inset: 42px 8px 96px;
  }

  .flow-label {
    padding: 7px 8px;
    font-size: 0.68rem;
  }

  .label-ap-a {
    right: 15%;
    top: 7%;
  }

  .label-ap-b {
    right: 15%;
    bottom: 8%;
  }

  .ap-node {
    width: 48px;
    height: 48px;
  }

  .ap-core {
    left: 42%;
  }

  .ap-flow-lab {
    min-height: 430px;
  }

  .lab-header {
    right: 12px;
    left: 12px;
    padding: 12px;
  }

  .ap-lab-stage {
    inset: 94px 6px 10px;
  }

  .lab-node {
    width: 64px;
    height: 64px;
  }

  .lab-node b {
    display: none;
  }

  .flow-word {
    font-size: clamp(1rem, 7vw, 1.55rem);
  }

  .word-speed { left: 12%; top: 31%; }
  .word-roam { left: 20%; bottom: 18%; }
  .word-stable { right: 7%; top: 57%; }
}

@media (max-width: 520px) {
  .site-header {
    width: min(calc(100vw - 16px), 374px);
  }

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

  .header-cta {
    width: 38px;
    min-height: 38px;
  }

  .nav-links {
    gap: 3px;
  }

  .nav-links a {
    padding-inline: 4px;
    font-size: 0.78rem;
  }

  .hero,
  .section {
    width: min(calc(100vw - 24px), 366px);
  }

  .hero-lede {
    font-size: 1rem;
  }

  .floorplan-visual {
    margin-inline: 10px;
  }

  .floorplan-large {
    margin-inline: 10px;
  }

  .network-ap-system {
    width: min(calc(100% - 20px), 322px);
  }

  .coverage-lab .network-ap-system {
    width: min(calc(100% - 20px), 322px);
  }

  .plan-node {
    width: 48px;
    height: 48px;
  }

  .coverage-chips,
  .coverage-lab .coverage-chips {
    margin-inline: 10px;
  }
}

@media (max-width: 980px) {
  .networking-landing-hero,
  .process-story,
  .wifi-reviews,
  .wifi-speed-proof {
    grid-template-columns: 1fr;
  }

  .process-head {
    position: static;
  }

  .process-head h2 {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .lead-header {
    border-radius: 22px;
  }

  .logo-brand img {
    width: 242px;
    height: 60px;
  }

  .lead-header .nav-links {
    grid-template-columns: minmax(0, 1fr);
  }

  .lead-header .nav-links a {
    min-height: 42px;
    padding: 10px 12px;
    font-size: 0.98rem;
  }

  .networking-landing-hero {
    padding-top: 34px;
  }

  .networking-landing-hero h1 {
    font-size: clamp(2.35rem, 10.8vw, 2.65rem);
    line-height: 0.96;
  }

  .networking-landing-hero .hero-lede {
    margin-bottom: 18px;
    line-height: 1.52;
  }

  .networking-landing-hero .hero-actions .button-ghost {
    display: none;
  }

  .hero-proof {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    margin-top: 16px;
  }

  .hero-proof span {
    min-height: 42px;
    padding: 7px 6px;
    text-align: center;
    font-size: 0.68rem;
    line-height: 1.15;
  }

  .wifi-quote-card {
    margin-top: 20px;
    padding: 22px;
    border-radius: 22px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .hero-image-section {
    padding-top: 0;
  }

  .network-hero-visual {
    min-height: 310px;
    border-radius: 24px;
  }

  .coverage-heading {
    padding: 4px 14px 2px;
  }

  .coverage-heading h2 {
    font-size: clamp(2rem, 10vw, 2.75rem);
  }

  .coverage-lab .network-hero-visual {
    min-height: 230px;
    margin: 14px 12px 0;
    border-radius: 24px;
  }

  .coverage-lab .network-hero-visual .floating-spec {
    bottom: 24px;
  }

  .coverage-lab .network-ap-system {
    width: min(calc(100% - 24px), 334px);
    margin-top: -18px;
  }

  .process-head h2 {
    font-size: clamp(2.85rem, 14.8vw, 3.7rem);
    line-height: 0.96;
  }

  .story-track {
    padding-left: 20px;
  }

  .story-panel {
    border-radius: 24px;
  }

  .rating-card {
    max-width: none;
  }

  .wifi-speed-proof {
    gap: 18px;
    padding-bottom: 30px;
  }

  .speed-proof-copy p {
    font-size: 1rem;
  }

  .speed-proof-stat {
    margin-top: 20px;
    border-radius: 22px;
  }

  .speed-test-phone {
    width: 100%;
    max-width: 366px;
    padding: 5px;
    border-radius: 24px;
  }

  .speed-test-phone img {
    border-radius: 19px;
  }

  .final-network-panel {
    border-radius: 26px;
  }
}

@media (max-width: 420px) {
  .logo-brand img {
    width: 230px;
    height: 58px;
  }

  .lead-header .nav-links a {
    font-size: 0.92rem;
  }

  .wifi-quote-card {
    padding: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .story-progress-line {
    transform: scaleY(1);
  }
}
