:root {
  color-scheme: light;
  --navy-950: #0b1f33;
  --navy-900: #102a43;
  --navy-800: #163f5c;
  --navy-700: #1d526e;
  --teal-700: #0f6f68;
  --teal-600: #0f766e;
  --teal-500: #19a394;
  --teal-300: #69d4c3;
  --orange-500: #f59e0b;
  --orange-100: #fef3c7;
  --slate-950: #0f172a;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-300: #cbd5e1;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50: #f8fafc;
  --white: #fff;
  --danger: #b42318;
  --danger-bg: #fef3f2;
  --warning: #a15c00;
  --success: #08745f;
  --page: #fff;
  --surface: #fff;
  --surface-muted: #f8fafc;
  --text: #0f172a;
  --text-muted: #475569;
  --border: #e2e8f0;
  --header: rgba(255,255,255,.96);
  --shadow-sm: 0 8px 24px rgba(15, 23, 42, .06);
  --shadow-md: 0 20px 48px rgba(15, 23, 42, .11);
  --radius-sm: .75rem;
  --radius: 1rem;
  --radius-lg: 1.5rem;
  --container: 72rem;
  --header-height: 4.5rem;
  --transition: 180ms ease-out;
}

html[data-theme="dark"] {
  color-scheme: dark;
  --page: #0b1726;
  --surface: #102337;
  --surface-muted: #0e1d2e;
  --text: #f8fafc;
  --text-muted: #b8c5d4;
  --border: #294157;
  --header: rgba(11, 31, 51, .96);
  --danger-bg: #3b1818;
  --danger: #fda29b;
  --shadow-sm: 0 8px 24px rgba(0, 0, 0, .2);
  --shadow-md: 0 20px 48px rgba(0, 0, 0, .3);
}

@media (prefers-color-scheme: dark) {
  html:not([data-theme]) {
    color-scheme: dark;
    --page: #0b1726;
    --surface: #102337;
    --surface-muted: #0e1d2e;
    --text: #f8fafc;
    --text-muted: #b8c5d4;
    --border: #294157;
    --header: rgba(11, 31, 51, .96);
    --danger-bg: #3b1818;
    --danger: #fda29b;
    --shadow-sm: 0 8px 24px rgba(0, 0, 0, .2);
    --shadow-md: 0 20px 48px rgba(0, 0, 0, .3);
  }
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height) + 1rem); }
body {
  margin: 0;
  min-width: 20rem;
  overflow-x: hidden;
  background: var(--page);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
[hidden] { display: none !important; }
img, svg { display: block; max-width: 100%; }
svg { fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button, a { touch-action: manipulation; }
button { color: inherit; }
h1, h2, h3, p, blockquote { margin-top: 0; }
h1, h2, h3 { line-height: 1.15; letter-spacing: -.035em; }
address { font-style: normal; }

:focus-visible {
  outline: 3px solid var(--orange-500);
  outline-offset: 3px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: .75rem;
  left: .75rem;
  z-index: 200;
  transform: translateY(-160%);
  border-radius: .5rem;
  background: var(--white);
  color: var(--navy-950);
  font-weight: 800;
  padding: .7rem 1rem;
  transition: transform var(--transition);
}
.skip-link:focus { transform: translateY(0); }

.container { width: min(calc(100% - 2rem), var(--container)); margin-inline: auto; }
.section { padding: clamp(4.5rem, 8vw, 7rem) 0; }
.section-light { background: var(--page); }
.section-muted { background: var(--surface-muted); border-block: 1px solid var(--border); }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  min-height: var(--header-height);
  background: transparent;
  border-bottom: 1px solid transparent;
  color: var(--white);
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.site-header.is-scrolled,
.site-header.is-menu-open {
  background: var(--header);
  border-bottom-color: var(--border);
  box-shadow: 0 8px 28px rgba(15,23,42,.08);
  color: var(--text);
  backdrop-filter: blur(14px);
}
.header-inner { display: flex; min-height: var(--header-height); align-items: center; justify-content: space-between; gap: 1rem; }
.brand { display: inline-flex; min-width: 0; align-items: center; gap: .65rem; font-weight: 850; }
.brand-symbol {
  width: 2.5rem;
  height: 2.5rem;
  flex: 0 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(2,15,28,.16));
}
.brand-name { overflow: hidden; color: var(--text); font-size: 1.18rem; letter-spacing: -.02em; text-overflow: ellipsis; white-space: nowrap; }
.site-header:not(.is-scrolled):not(.is-menu-open) .brand-name,
.site-header:not(.is-scrolled):not(.is-menu-open) .desktop-nav a { color: var(--white); }
.site-header:not(.is-scrolled):not(.is-menu-open) .icon-button { border-color: rgba(255,255,255,.32); color: var(--white); }
.site-header:not(.is-scrolled):not(.is-menu-open) .icon-button:hover { border-color: rgba(255,255,255,.62); background: rgba(255,255,255,.1); }
.site-header:not(.is-scrolled):not(.is-menu-open) .desktop-login { border-color: rgba(255,255,255,.35); background: rgba(255,255,255,.12); box-shadow: none; color: var(--white); }
.site-header:not(.is-scrolled):not(.is-menu-open) .desktop-login:hover { background: rgba(255,255,255,.2); }
.desktop-nav { display: none; align-items: center; gap: .25rem; }
.desktop-nav a, .mobile-menu a:not(.button) {
  min-height: 2.75rem;
  padding: .62rem .8rem;
  border-radius: .55rem;
  color: var(--text-muted);
  font-size: .93rem;
  font-weight: 700;
  transition: color var(--transition), background var(--transition);
}
.desktop-nav a:hover, .desktop-nav a[aria-current="true"], .mobile-menu a:not(.button):hover { background: var(--surface-muted); color: var(--teal-700); }
.header-actions { display: flex; align-items: center; gap: .45rem; }
.desktop-login { display: none !important; }

.icon-button {
  display: inline-grid;
  width: 2.75rem;
  height: 2.75rem;
  place-items: center;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: .7rem;
  background: transparent;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}
.icon-button:hover { background: var(--surface-muted); border-color: var(--slate-300); }
.icon-button svg { width: 1.3rem; }
.theme-icon-sun, html[data-theme="dark"] .theme-icon-moon { display: none; }
html[data-theme="dark"] .theme-icon-sun { display: block; }
.menu-icon-close, .mobile-menu-toggle[aria-expanded="true"] .menu-icon-open { display: none; }
.mobile-menu-toggle[aria-expanded="true"] .menu-icon-close { display: block; }
.mobile-menu { border-top: 1px solid var(--border); background: var(--surface); }
.mobile-menu-inner { display: grid; gap: .3rem; padding-block: .75rem 1rem; }
.mobile-menu .button { margin-top: .35rem; }

.button {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  border: 1px solid transparent;
  border-radius: .75rem;
  padding: .72rem 1.2rem;
  cursor: pointer;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  transition: background var(--transition), color var(--transition), border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.button:hover { transform: translateY(-1px); }
.button:active { transform: translateY(0); }
.button[disabled] { cursor: wait; opacity: .65; transform: none; }
.button svg { width: 1.2rem; }
.button-small { min-height: 2.75rem; padding: .58rem 1rem; font-size: .9rem; }
.button-block { width: 100%; }
.button-primary { background: var(--teal-700); color: var(--white); box-shadow: 0 8px 18px rgba(15, 111, 104, .2); }
.button-primary:hover { background: #0b5d58; }
.button-accent { background: var(--orange-500); color: var(--navy-950); box-shadow: 0 10px 24px rgba(245, 158, 11, .23); }
.button-accent:hover { background: #fbbf24; }
.button-ghost { border-color: rgba(255,255,255,.48); background: rgba(255,255,255,.06); color: var(--white); }
.button-ghost:hover { border-color: rgba(255,255,255,.8); background: rgba(255,255,255,.12); }
.button-outline { border-color: var(--border); background: transparent; color: var(--text); }
.button-outline:hover { border-color: var(--teal-600); color: var(--teal-700); }

.hero {
  position: relative;
  overflow: hidden;
  min-height: min(52rem, 100dvh);
  background:
    radial-gradient(circle at 86% 24%, rgba(105, 212, 195, .18), transparent 28%),
    linear-gradient(135deg, var(--navy-950), var(--navy-800) 62%, #17665f 135%);
  color: var(--white);
}
.hero-grid { position: relative; z-index: 1; display: grid; min-height: inherit; align-items: center; gap: 3rem; padding-block: calc(var(--header-height) + clamp(2.5rem, 7vw, 6rem)) clamp(5.5rem, 9vw, 8rem); }
.hero-copy { max-width: 41rem; }
.eyebrow { margin-bottom: .8rem; color: var(--teal-700); font-size: .78rem; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.eyebrow-light { color: var(--teal-300); }
.eyebrow-dot { display: inline-block; width: .5rem; height: .5rem; margin-right: .45rem; border-radius: 50%; background: var(--orange-500); }
.hero h1 { max-width: 12ch; margin-bottom: 1.4rem; font-size: clamp(2.6rem, 7vw, 4.75rem); font-weight: 850; letter-spacing: -.055em; }
.hero-subtitle { max-width: 37rem; margin-bottom: 2rem; color: #dbe7ef; font-size: clamp(1.05rem, 2vw, 1.25rem); line-height: 1.7; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .85rem; }
.hero-note { display: flex; max-width: 36rem; align-items: flex-start; gap: .65rem; margin-top: 1.5rem; color: #c6d7e2; font-size: .85rem; }
.hero-note svg { width: 1.2rem; flex: 0 0 auto; color: var(--teal-300); }
.hero-visual { position: relative; display: grid; min-width: 0; place-items: center; isolation: isolate; }
.hero-cyber-scene { position: relative; width: min(100%, 36rem); aspect-ratio: 1; overflow: hidden; border: 1px solid rgba(134,230,216,.19); border-radius: clamp(1.2rem, 4vw, 2.25rem); background: radial-gradient(circle at 50% 48%, rgba(33,134,145,.2), transparent 44%), rgba(3,19,33,.36); box-shadow: inset 0 0 60px rgba(105,212,195,.05), 0 28px 60px rgba(0,0,0,.2); }
.hero-cyber-grid { position: absolute; inset: -12%; background-image: linear-gradient(rgba(105,212,195,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(105,212,195,.08) 1px, transparent 1px); background-size: 2.4rem 2.4rem; mask-image: radial-gradient(circle, #000 20%, transparent 74%); transform: perspective(28rem) rotateX(58deg) translateY(27%); transform-origin: center bottom; }
.hero-cyber-globe { position: absolute; z-index: 2; inset: 11%; filter: drop-shadow(0 28px 38px rgba(0,0,0,.34)); }
.hero-cyber-globe svg { display: block; width: 100%; height: 100%; }
.hero-cyber-halo { fill: rgba(105,212,195,.025); stroke: rgba(105,212,195,.18); stroke-width: 2; stroke-dasharray: 4 12; }
.hero-cyber-sphere { stroke: rgba(167,243,232,.38); stroke-width: 2; }
.hero-cyber-mesh { fill: none; stroke: rgba(151,234,223,.27); stroke-width: 1.4; vector-effect: non-scaling-stroke; }
.hero-cyber-routes { fill: none; stroke: var(--teal-300); stroke-width: 2.4; stroke-dasharray: 5 10; stroke-linecap: round; opacity: .82; vector-effect: non-scaling-stroke; }
.hero-cyber-routes path:nth-child(2) { stroke: #93c5fd; stroke-dasharray: 3 12; }
.hero-cyber-routes path:nth-child(3) { stroke: var(--orange-500); stroke-dasharray: 2 13; }
.hero-cyber-nodes { fill: var(--teal-300); }
.hero-cyber-nodes circle:nth-child(2n) { fill: var(--orange-500); }
.hero-cyber-scan { position: absolute; inset: 5% 7%; overflow: hidden; border-radius: 50%; background: linear-gradient(180deg, transparent 0 42%, rgba(134,230,216,.2) 49%, rgba(134,230,216,.52) 50%, rgba(134,230,216,.16) 52%, transparent 59%); mix-blend-mode: screen; animation: cyber-scan 5.5s ease-in-out infinite alternate; }
.hero-cyber-wifi { position: absolute; z-index: 3; top: 50%; left: 50%; width: 22%; height: auto; transform: translate(-50%,-50%); filter: drop-shadow(0 10px 20px rgba(1,12,23,.5)); }
.hero-cyber-orbit { position: absolute; z-index: 1; inset: 17% 5%; border: 1px solid rgba(134,230,216,.2); border-radius: 50%; transform: rotate(-20deg); }
.hero-cyber-orbit::before, .hero-cyber-orbit::after { position: absolute; width: .55rem; height: .55rem; border-radius: 50%; background: var(--teal-300); box-shadow: 0 0 0 .42rem rgba(105,212,195,.09), 0 0 1.5rem rgba(105,212,195,.58); content: ""; animation: cyber-pulse 2.8s ease-in-out infinite; }
.hero-cyber-orbit::before { top: 12%; right: 12%; }
.hero-cyber-orbit::after { bottom: 10%; left: 16%; background: var(--orange-500); box-shadow: 0 0 0 .42rem rgba(245,158,11,.08), 0 0 1.5rem rgba(245,158,11,.45); animation-delay: -1.4s; }
.hero-cyber-orbit-front { z-index: 3; inset: 8% 23%; border-color: rgba(255,255,255,.13); transform: rotate(67deg); }
.hero-cyber-pulse { position: absolute; z-index: 4; width: .45rem; height: .45rem; border-radius: 50%; background: #bfdbfe; box-shadow: 0 0 0 .45rem rgba(147,197,253,.08), 0 0 1.4rem rgba(147,197,253,.65); }
.hero-cyber-pulse-one { top: 25%; left: 14%; }
.hero-cyber-pulse-two { right: 13%; bottom: 24%; background: var(--orange-500); box-shadow: 0 0 0 .45rem rgba(245,158,11,.08), 0 0 1.4rem rgba(245,158,11,.5); }
@keyframes cyber-scan { from { transform: translateY(-13%); opacity: .35; } to { transform: translateY(13%); opacity: .72; } }
@keyframes cyber-pulse { 0%,100% { opacity: .48; transform: scale(.82); } 50% { opacity: 1; transform: scale(1.12); } }
.signal-card { position: absolute; display: flex; min-height: 3.4rem; align-items: center; gap: .65rem; padding: .7rem 1rem; border: 1px solid rgba(255,255,255,.18); border-radius: .85rem; background: rgba(11,31,51,.84); box-shadow: 0 18px 32px rgba(0,0,0,.16); color: #eaf3f7; font-size: .85rem; }
.signal-card-top { top: 8%; right: -.75rem; }
.signal-card-bottom { bottom: 8%; left: -.75rem; }
.status-dot { display: inline-block; width: .55rem; height: .55rem; border-radius: 50%; flex: 0 0 auto; }
.status-dot-teal { background: var(--teal-300); }
.status-dot-orange { background: var(--orange-500); }
.hero-boundary { position: absolute; z-index: 4; right: 0; bottom: -1px; left: 0; height: clamp(3.1rem, 6vw, 5.1rem); overflow: hidden; pointer-events: none; }
.hero-boundary svg { width: 100%; height: 100%; }
.hero-boundary-trace { fill: none; stroke: rgba(105,212,195,.42); stroke-width: 1.3; vector-effect: non-scaling-stroke; }
.hero-boundary-back { fill: color-mix(in srgb, var(--teal-300) 24%, var(--surface)); stroke: none; }
.hero-boundary-front { fill: var(--surface); stroke: none; }

.section-transition {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: -1px;
  left: 0;
  height: clamp(2.5rem, 5vw, 4rem);
  overflow: hidden;
  pointer-events: none;
}
.section-transition svg { width: 100%; height: 100%; }
.section-transition path { stroke: none; }
.transition-to-network .section-transition-back { fill: rgba(105,212,195,.18); }
.transition-to-network .section-transition-front { fill: #07192a; }
.transition-to-page .section-transition-back { fill: color-mix(in srgb, var(--teal-300) 18%, var(--page)); }
.transition-to-page .section-transition-front { fill: var(--page); }
.transition-to-muted .section-transition-back { fill: color-mix(in srgb, var(--teal-300) 15%, var(--surface-muted)); }
.transition-to-muted .section-transition-front { fill: var(--surface-muted); }
.transition-to-navy .section-transition-back { fill: color-mix(in srgb, var(--teal-300) 18%, var(--navy-900)); }
.transition-to-navy .section-transition-front { fill: var(--navy-900); }
.has-section-transition { position: relative; overflow: clip; padding-bottom: calc(clamp(4.5rem, 8vw, 7rem) + clamp(2.5rem, 5vw, 4rem)); }

.trust-strip { position: relative; overflow: clip; padding-bottom: clamp(2.5rem, 5vw, 4rem); background: var(--surface); }
.trust-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); }
.trust-item { min-width: 0; padding: 1.25rem 1rem; border-bottom: 1px solid var(--border); }
.trust-item:nth-last-child(-n+2) { border-bottom: 0; }
.trust-item:nth-child(odd) { border-right: 1px solid var(--border); }
.trust-item:last-child { border-bottom: 0; }
.trust-highlight span, .trust-highlight strong, .trust-highlight small { display: block; overflow-wrap: anywhere; }
.trust-highlight span { margin-bottom: .3rem; color: var(--text-muted); font-size: .7rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.trust-highlight strong { color: var(--text); font-size: clamp(1.05rem, 2.5vw, 1.45rem); font-variant-numeric: tabular-nums; letter-spacing: -.03em; line-height: 1.15; }
.trust-highlight small { margin-top: .25rem; color: var(--text-muted); font-size: .72rem; }

.network-story {
  position: relative;
  overflow: clip;
  border-block: 1px solid rgba(105,212,195,.14);
  background: linear-gradient(145deg, #07192a, var(--navy-950) 55%, #0c4c50 145%);
  color: var(--white);
}
.network-grid-pattern { position: absolute; inset: 0; opacity: .28; background-image: linear-gradient(rgba(105,212,195,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(105,212,195,.08) 1px, transparent 1px); background-size: 3.25rem 3.25rem; mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 82%, transparent); }
.network-story-grid { position: relative; z-index: 1; display: grid; gap: clamp(2rem, 7vw, 6rem); align-items: center; padding-block: clamp(4.5rem, 8vw, 7rem); }
.network-story-copy { max-width: 36rem; }
.network-story-copy h2 { margin-bottom: 1.25rem; font-size: clamp(2.25rem, 5vw, 4rem); letter-spacing: -.05em; }
.network-story-copy-text > p:not(.eyebrow) { color: #c8dae4; font-size: 1.05rem; }
.network-facts { display: grid; gap: .65rem; margin: 1.7rem 0 2rem; padding: 0; list-style: none; }
.network-facts li { display: grid; grid-template-columns: minmax(7.5rem,.75fr) minmax(0,1.25fr); gap: .8rem; padding-block: .75rem; border-bottom: 1px solid rgba(255,255,255,.12); }
.network-facts strong { color: var(--teal-300); }
.network-facts span { color: #b8ccd8; font-size: .9rem; }
.network-scene-wrap { min-width: 0; }
.network-scene { position: relative; width: min(100%, 36rem); aspect-ratio: 1; margin-inline: auto; pointer-events: none; }
.network-globe-shell { position: absolute; z-index: 2; inset: 9%; filter: drop-shadow(0 32px 48px rgba(0,0,0,.34)); }
.network-globe { width: 100%; height: 100%; overflow: visible; }
.globe-surface { stroke: rgba(105,212,195,.42); stroke-width: 2; }
.globe-grid { color: rgba(157,230,221,.2); }
.globe-grid ellipse, .globe-grid path { stroke: currentColor; stroke-width: 1.15; vector-effect: non-scaling-stroke; }
.globe-routes { color: var(--teal-300); transform-box: fill-box; transform-origin: center; }
.globe-routes path { stroke: currentColor; stroke-width: 2.3; stroke-dasharray: 5 10; vector-effect: non-scaling-stroke; }
.globe-nodes { color: var(--teal-300); }
.globe-nodes circle { fill: currentColor; stroke: rgba(255,255,255,.7); stroke-width: 2; }
.globe-nodes .node-orange { color: var(--orange-500); }
.network-wifi { position: absolute; top: 50%; left: 50%; width: 18%; height: auto; transform: translate(-50%,-50%); filter: drop-shadow(0 10px 18px rgba(0,0,0,.32)); }
.network-orbit { position: absolute; inset: 16% 2%; border: 1px solid rgba(105,212,195,.24); border-radius: 50%; }
.network-orbit::before, .network-orbit::after { position: absolute; width: .55rem; height: .55rem; border-radius: 50%; background: var(--teal-300); box-shadow: 0 0 0 .4rem rgba(105,212,195,.09); content: ""; }
.network-orbit::before { top: 16%; right: 11%; }
.network-orbit::after { bottom: 12%; left: 15%; background: var(--orange-500); box-shadow: 0 0 0 .4rem rgba(245,158,11,.09); }
.network-orbit-back { transform: rotate(-18deg); }
.network-orbit-front { inset: 7% 20%; transform: rotate(66deg); border-color: rgba(255,255,255,.14); }
.network-chip { position: absolute; display: inline-flex; align-items: center; gap: .55rem; min-height: 2.7rem; padding: .55rem .8rem; border: 1px solid rgba(255,255,255,.16); border-radius: .7rem; background: rgba(7,25,42,.84); box-shadow: 0 14px 30px rgba(0,0,0,.22); color: #eaf4f6; font-size: .76rem; font-weight: 750; white-space: nowrap; }
.network-chip i { width: .48rem; height: .48rem; border-radius: 50%; background: var(--teal-300); box-shadow: 0 0 0 .25rem rgba(105,212,195,.08); }
.network-chip-one { top: 14%; right: 0; }
.network-chip-two { bottom: 12%; left: 0; }
.network-chip-two i { background: var(--orange-500); box-shadow: 0 0 0 .25rem rgba(245,158,11,.08); }
.network-pulse { position: absolute; width: .55rem; height: .55rem; border-radius: 50%; background: var(--teal-300); box-shadow: 0 0 0 .5rem rgba(105,212,195,.08), 0 0 1.8rem rgba(105,212,195,.65); }
.network-pulse-one { top: 28%; left: 8%; }
.network-pulse-two { right: 12%; bottom: 25%; background: var(--orange-500); box-shadow: 0 0 0 .5rem rgba(245,158,11,.08), 0 0 1.8rem rgba(245,158,11,.5); }

.motion-ready [data-reveal] { opacity: 0; transition: opacity .56s ease-out, transform .56s cubic-bezier(.2,.7,.2,1); will-change: transform, opacity; }
.motion-ready [data-reveal="fade-up"] { transform: translate3d(0,1.5rem,0); }
.motion-ready [data-reveal="fade-right"] { transform: translate3d(-1.5rem,0,0); }
.motion-ready [data-reveal="fade-left"] { transform: translate3d(1.5rem,0,0); }
.motion-ready [data-reveal="scale-in"] { transform: scale(.96); }
.motion-ready [data-reveal].is-revealed { opacity: 1; transform: none; will-change: auto; }
.motion-ready [data-reveal-delay="60"] { transition-delay: 60ms; }
.motion-ready [data-reveal-delay="80"] { transition-delay: 80ms; }
.motion-ready [data-reveal-delay="120"] { transition-delay: 120ms; }
.motion-ready [data-reveal-delay="180"] { transition-delay: 180ms; }
.motion-ready [data-reveal-delay="240"] { transition-delay: 240ms; }

.section-heading { max-width: 45rem; margin: 0 auto clamp(2.2rem, 4vw, 3.4rem); text-align: center; }
.section-heading h2 { margin-bottom: 1rem; font-size: clamp(2rem, 4vw, 3.25rem); }
.section-heading > p:last-child { max-width: 42rem; margin: 0 auto; color: var(--text-muted); }

.feature-grid, .pricing-grid, .testimonial-grid { display: grid; gap: 1rem; }
.feature-card, .package-card, .testimonial-card { border: 1px solid var(--border); background: var(--surface); box-shadow: var(--shadow-sm); }
.feature-card { position: relative; overflow: hidden; border-radius: var(--radius); }
.feature-card::before { position: absolute; inset: 0 auto 0 0; width: 3px; background: var(--teal-600); content: ""; }
.feature-body { padding: 1.4rem 1.4rem 1.4rem 1.55rem; }
.feature-icon { display: grid; width: 3rem; height: 3rem; margin-bottom: 1rem; place-items: center; border-radius: .8rem; background: color-mix(in srgb, var(--teal-600) 11%, transparent); color: var(--teal-700); }
.feature-icon.is-orange { background: color-mix(in srgb, var(--orange-500) 15%, transparent); color: #a14f0b; }
.feature-icon.is-navy { background: color-mix(in srgb, var(--navy-700) 12%, transparent); color: var(--navy-700); }
html[data-theme="dark"] .feature-icon.is-navy { color: #9bc4d8; }
.feature-icon svg { width: 1.7rem; }
.feature-card h3 { margin-bottom: .6rem; font-size: 1.18rem; }
.feature-card p { margin-bottom: 0; color: var(--text-muted); font-size: .94rem; }

.pricing-grid { align-items: stretch; }
.package-card { position: relative; display: flex; min-width: 0; flex-direction: column; padding: 1.5rem; border-radius: var(--radius-lg); }
.package-card.is-popular { border-color: var(--teal-600); background: linear-gradient(145deg, var(--navy-950), var(--navy-800)); color: var(--white); box-shadow: var(--shadow-md); }
.popular-badge { align-self: flex-start; margin-bottom: 1rem; border-radius: 99rem; background: var(--orange-500); color: var(--navy-950); padding: .35rem .7rem; font-size: .7rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.package-name { margin-bottom: .35rem; color: var(--text-muted); font-weight: 800; }
.package-card.is-popular .package-name, .package-card.is-popular .package-description { color: #c9dce6; }
.package-speed { display: flex; align-items: baseline; gap: .4rem; margin-bottom: .8rem; }
.package-speed strong { font-size: clamp(2.5rem, 7vw, 3.5rem); line-height: 1; letter-spacing: -.05em; }
.package-speed span { color: var(--text-muted); font-weight: 750; }
.package-card.is-popular .package-speed span { color: #c9dce6; }
.package-price { min-height: 2rem; margin-bottom: 1rem; }
.package-price strong { font-size: 1.45rem; }
.package-price span { margin-left: .25rem; color: var(--text-muted); font-size: .8rem; }
.package-card.is-popular .package-price span { color: #c9dce6; }
.package-description { min-height: 1.5rem; margin-bottom: 1rem; color: var(--text-muted); font-size: .85rem; }
.package-features { display: grid; gap: .7rem; margin: 0 0 1.5rem; padding: 0; list-style: none; }
.package-features li { display: flex; align-items: flex-start; gap: .55rem; color: var(--text-muted); font-size: .9rem; }
.package-features svg { width: 1.1rem; flex: 0 0 auto; color: var(--teal-600); }
.package-card.is-popular .package-features li { color: #e1ebf0; }
.package-card.is-popular .package-features svg { color: var(--teal-300); }
.package-card .button { margin-top: auto; }
.package-card.is-popular .button { border-color: var(--white); background: var(--white); color: var(--navy-950); }
.pricing-assurance { max-width: 46rem; margin: 1.5rem auto 0; color: var(--text-muted); font-size: .8rem; text-align: center; }

.coverage-section { background: var(--page); }
.coverage-shell { display: grid; gap: clamp(2rem, 6vw, 5rem); align-items: center; }
.coverage-copy h2 { max-width: 17ch; margin-bottom: 1rem; font-size: clamp(2rem, 4vw, 3.25rem); }
.coverage-copy > p:not(.eyebrow) { max-width: 37rem; color: var(--text-muted); }
.coverage-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.6rem; }
.coverage-card { min-width: 0; padding: clamp(1.4rem, 4vw, 2rem); border: 1px solid var(--border); border-radius: var(--radius-lg); background: linear-gradient(145deg, var(--surface), var(--surface-muted)); box-shadow: var(--shadow-sm); }
.coverage-card-header { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-bottom: 1.15rem; border-bottom: 1px solid var(--border); }
.coverage-card-header span, .coverage-card-header strong { display: block; }
.coverage-card-header span { margin-bottom: .25rem; color: var(--text-muted); font-size: .72rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.coverage-card-header strong { font-size: 1.35rem; }
.coverage-card-header svg { width: 3rem; height: 3rem; padding: .7rem; border-radius: .85rem; background: color-mix(in srgb, var(--teal-600) 12%, transparent); color: var(--teal-700); }
.coverage-locations { display: flex; flex-wrap: wrap; gap: .55rem; padding-top: 1.15rem; }
.coverage-location { display: inline-flex; min-height: 2.5rem; align-items: center; border: 1px solid var(--border); border-radius: 99rem; background: var(--surface); color: var(--text); padding: .48rem .75rem; font-size: .8rem; font-weight: 750; }
.coverage-note { margin: 1rem 0 0; color: var(--text-muted); font-size: .82rem; }

.billing-section { background: var(--navy-900); color: var(--white); }
.billing-shell { display: grid; gap: 2.5rem; align-items: center; }
.billing-copy h2 { margin-bottom: 1rem; font-size: clamp(2rem, 4vw, 3.35rem); }
.billing-copy > p:not(.eyebrow) { max-width: 35rem; color: #c9dce6; }
.billing-benefits { display: grid; gap: .75rem; margin: 1.75rem 0 0; padding: 0; list-style: none; }
.billing-benefits li { display: flex; align-items: flex-start; gap: .6rem; color: #e1ebf0; }
.billing-benefits svg { width: 1.2rem; flex: 0 0 auto; color: var(--teal-300); }
.billing-card { min-width: 0; padding: clamp(1.25rem, 4vw, 2rem); border: 1px solid rgba(255,255,255,.16); border-radius: var(--radius-lg); background: var(--surface); box-shadow: var(--shadow-md); color: var(--text); }
.billing-tabs { display: grid; grid-template-columns: 1fr 1fr; gap: .3rem; margin-bottom: 1.25rem; padding: .28rem; border-radius: .8rem; background: var(--surface-muted); }
.billing-tab { min-height: 2.75rem; border: 0; border-radius: .6rem; background: transparent; color: var(--text-muted); cursor: pointer; font-weight: 800; }
.billing-tab.is-active { background: var(--surface); box-shadow: 0 3px 10px rgba(15,23,42,.08); color: var(--teal-700); }
.form-field { margin-bottom: 1rem; }
.form-field label { display: block; margin-bottom: .4rem; font-size: .85rem; font-weight: 800; }
.form-field input, .chatbot-form input { width: 100%; min-height: 3rem; border: 1px solid var(--border); border-radius: .7rem; background: var(--surface); color: var(--text); padding: .72rem .9rem; outline: none; }
.form-field input:focus, .chatbot-form input:focus { border-color: var(--teal-600); box-shadow: 0 0 0 3px color-mix(in srgb, var(--teal-600) 20%, transparent); }
.form-field input::placeholder, .chatbot-form input::placeholder { color: var(--slate-500); }
.form-helper { margin: .8rem 0 0; color: var(--text-muted); font-size: .75rem; text-align: center; }
.notice { margin-top: 1rem; border-radius: .7rem; padding: .8rem 1rem; font-size: .88rem; }
.notice-error { border: 1px solid color-mix(in srgb, var(--danger) 35%, transparent); background: var(--danger-bg); color: var(--danger); }
.billing-result { margin-top: 1.4rem; padding-top: 1.4rem; border-top: 1px solid var(--border); }
.customer-summary { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: 1rem; margin-bottom: 1rem; }
.customer-summary > div:last-child { text-align: right; }
.customer-summary span, .customer-summary strong, .customer-summary small { display: block; overflow-wrap: anywhere; }
.customer-summary > div > span { color: var(--text-muted); font-size: .75rem; }
.customer-summary strong { font-size: .98rem; }
.customer-summary small { color: var(--text-muted); }
.status-badge { display: inline-flex !important; width: fit-content; margin-top: .35rem; border-radius: 99rem; padding: .25rem .55rem; font-size: .68rem; font-weight: 900; }
.customer-summary > div:last-child .status-badge { margin-left: auto; }
.status-paid, .status-active { background: #dcfae6; color: #086b4f; }
.status-unpaid, .status-suspended { background: #fff1c2; color: #8b4b00; }
.status-overdue, .status-terminated { background: #fee4e2; color: #a51d18; }
.status-cancelled { background: var(--slate-200); color: var(--slate-700); }
.invoice-list { display: grid; gap: .75rem; }
.invoice-card { padding: 1rem; border: 1px solid var(--border); border-radius: .8rem; background: var(--surface-muted); }
.invoice-heading, .invoice-row { display: flex; justify-content: space-between; gap: .8rem; }
.invoice-heading { align-items: flex-start; margin-bottom: .7rem; }
.invoice-heading small, .invoice-heading span { display: block; overflow-wrap: anywhere; }
.invoice-heading small, .invoice-due { color: var(--text-muted); font-size: .72rem; }
.invoice-heading div > span { font-size: .82rem; }
.invoice-row { align-items: center; margin-top: .3rem; font-size: .86rem; }
.invoice-penalty { color: var(--danger); }
.invoice-pay { width: 100%; margin-top: .8rem; }

.testimonial-card { display: flex; min-width: 0; flex-direction: column; padding: 1.5rem; border-radius: var(--radius); }
.testimonial-stars { display: flex; gap: .15rem; margin-bottom: 1rem; color: var(--orange-500); }
.testimonial-stars svg { width: 1rem; fill: currentColor; stroke: none; }
.testimonial-card blockquote { flex: 1; margin-bottom: 1.3rem; color: var(--text-muted); font-size: .95rem; }
.testimonial-person { display: flex; align-items: center; gap: .75rem; }
.testimonial-avatar { display: grid; width: 2.7rem; height: 2.7rem; place-items: center; border-radius: 50%; background: var(--navy-800); color: var(--white); font-weight: 900; }
.testimonial-person strong, .testimonial-person small { display: block; max-width: 13rem; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.testimonial-person small { color: var(--text-muted); }

.final-cta { padding: clamp(3.5rem, 7vw, 5rem) 0; background: linear-gradient(130deg, var(--navy-950), var(--navy-800) 70%, #17665f 140%); color: var(--white); }
.final-cta-inner { display: flex; flex-direction: column; align-items: flex-start; gap: 1.5rem; }
.final-cta h2 { max-width: 22ch; margin-bottom: .7rem; font-size: clamp(1.9rem, 4vw, 3rem); }
.final-cta p:not(.eyebrow) { max-width: 40rem; margin-bottom: 0; color: #c9dce6; }

.site-footer { padding-top: 4rem; background: var(--navy-950); color: #bdccda; }
.footer-grid { display: grid; gap: 2.5rem; padding-bottom: 3rem; }
.brand-footer .brand-name { color: var(--white); }
.footer-brand-column > p { max-width: 23rem; margin: 1rem 0 0; }
.site-footer h2 { margin-bottom: 1rem; color: var(--white); font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; }
.contact-list { display: grid; gap: .75rem; }
.contact-list p { display: flex; align-items: flex-start; gap: .65rem; margin-bottom: 0; overflow-wrap: anywhere; }
.contact-list svg { width: 1.15rem; flex: 0 0 auto; color: var(--teal-300); }
.footer-links { display: grid; gap: .55rem; }
.footer-links a, .footer-bottom a { transition: color var(--transition); }
.footer-links a:hover, .footer-bottom a:hover { color: var(--white); }
.social-links { display: flex; flex-wrap: wrap; gap: .55rem; }
.social-link { display: grid; width: 2.75rem; height: 2.75rem; place-items: center; border: 1px solid rgba(255,255,255,.14); border-radius: .7rem; color: var(--white); transition: background var(--transition), border-color var(--transition); }
.social-link:hover { border-color: var(--teal-300); background: rgba(105,212,195,.14); }
.social-link svg { width: 1.2rem; }
.support-note { margin: 1rem 0 0; font-size: .82rem; }
.footer-bottom { display: flex; flex-direction: column; gap: .8rem; padding-block: 1.4rem; border-top: 1px solid rgba(255,255,255,.12); font-size: .75rem; }
.footer-bottom p { margin: 0; }
.footer-bottom div { display: flex; flex-wrap: wrap; gap: 1rem; }

.floating-actions { position: fixed; right: max(1rem, env(safe-area-inset-right)); bottom: max(1rem, env(safe-area-inset-bottom)); z-index: 90; display: flex; flex-direction: column; gap: .6rem; }
.floating-button { display: grid; width: 3.25rem; height: 3.25rem; place-items: center; border: 0; border-radius: 50%; cursor: pointer; box-shadow: 0 12px 28px rgba(0,0,0,.2); color: var(--white); transition: transform var(--transition), background var(--transition); }
.floating-button:hover { transform: translateY(-2px); }
.floating-button svg { width: 1.45rem; }
.floating-button-wa { background: #087d58; }
.floating-button-chat { background: var(--teal-700); }
.chat-close-icon, .floating-button-chat[aria-expanded="true"] .chat-open-icon { display: none; }
.floating-button-chat[aria-expanded="true"] .chat-close-icon { display: block; }

.chatbot-panel {
  position: fixed;
  right: max(1rem, env(safe-area-inset-right));
  bottom: calc(max(1rem, env(safe-area-inset-bottom)) + 3.9rem);
  z-index: 95;
  display: flex;
  width: min(24rem, calc(100vw - 2rem));
  max-height: min(37rem, calc(100dvh - 7rem));
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-md);
  color: var(--text);
}
.chatbot-header { display: flex; align-items: center; gap: .7rem; padding: .9rem; background: var(--navy-900); color: var(--white); }
.chatbot-avatar { display: grid; width: 2.5rem; height: 2.5rem; place-items: center; border-radius: .7rem; background: rgba(255,255,255,.1); }
.chatbot-avatar svg { width: 1.4rem; }
.chatbot-header > div:nth-child(2) { min-width: 0; flex: 1; }
.chatbot-header h2 { margin: 0; font-size: .95rem; letter-spacing: 0; }
.chatbot-header p { display: flex; align-items: center; gap: .4rem; margin: .1rem 0 0; color: #c9dce6; font-size: .7rem; }
.icon-button-light { border-color: rgba(255,255,255,.18); color: var(--white); }
.icon-button-light:hover { border-color: rgba(255,255,255,.35); background: rgba(255,255,255,.1); }
.chatbot-messages { min-height: 12rem; flex: 1; overflow-y: auto; overscroll-behavior: contain; padding: 1rem; background: var(--surface-muted); }
.chat-message { display: flex; margin-bottom: .65rem; }
.chat-message span { max-width: 84%; border-radius: .9rem; padding: .65rem .8rem; font-size: .84rem; line-height: 1.5; white-space: pre-wrap; }
.chat-message-bot span { border: 1px solid var(--border); border-top-left-radius: .25rem; background: var(--surface); }
.chat-message-user { justify-content: flex-end; }
.chat-message-user span { border-top-right-radius: .25rem; background: var(--teal-700); color: var(--white); }
.typing-dots { display: inline-flex; gap: .25rem; align-items: center; }
.typing-dots i { width: .35rem; height: .35rem; border-radius: 50%; background: var(--slate-500); animation: typing 1s ease-in-out infinite alternate; }
.typing-dots i:nth-child(2) { animation-delay: .15s; }
.typing-dots i:nth-child(3) { animation-delay: .3s; }
@keyframes typing { to { opacity: .3; transform: translateY(-2px); } }
.chatbot-quick { display: flex; flex-wrap: wrap; gap: .45rem; padding: .65rem .8rem; border-top: 1px solid var(--border); background: var(--surface); }
.chatbot-quick button { display: inline-flex; min-height: 2.5rem; align-items: center; gap: .35rem; border: 1px solid var(--border); border-radius: 99rem; background: var(--surface-muted); color: var(--text); padding: .42rem .65rem; cursor: pointer; font-size: .74rem; font-weight: 750; }
.chatbot-quick button:hover { border-color: var(--teal-600); color: var(--teal-700); }
.chatbot-quick svg { width: .9rem; }
.chatbot-form { display: flex; gap: .45rem; padding: .75rem; border-top: 1px solid var(--border); background: var(--surface); }
.chatbot-form input { min-width: 0; }
.send-button { flex: 0 0 auto; border-color: var(--teal-700); background: var(--teal-700); color: var(--white); }
.send-button:hover { background: #0b5d58; }

.empty-state { grid-column: 1 / -1; padding: 2rem; border: 1px dashed var(--border); border-radius: var(--radius); color: var(--text-muted); text-align: center; }
.spinner { width: 1rem; height: 1rem; border: 2px solid rgba(255,255,255,.35); border-top-color: currentColor; border-radius: 50%; animation: spin .7s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

@media (min-width: 40rem) {
  .container { width: min(calc(100% - 3rem), var(--container)); }
  .trust-grid { grid-template-columns: repeat(4, minmax(0,1fr)); }
  .trust-item { padding: 1.35rem 1.5rem; border-right: 1px solid var(--border); border-bottom: 0; }
  .trust-item:nth-child(odd) { border-right: 1px solid var(--border); }
  .trust-item:last-child { border-right: 0; }
  .feature-grid, .testimonial-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .signal-card { display: flex; }
  .pricing-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .final-cta-inner { flex-direction: row; align-items: center; justify-content: space-between; }
  .final-cta-inner .button { flex: 0 0 auto; }
  .footer-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .footer-bottom { flex-direction: row; align-items: center; justify-content: space-between; }
}

@media (min-width: 54rem) {
  .desktop-nav { display: flex; }
  .desktop-login { display: inline-flex !important; }
  .mobile-menu-toggle { display: none; }
  .hero-grid { grid-template-columns: minmax(0,1.05fr) minmax(22rem,.95fr); }
  .network-story-grid { min-height: 54rem; grid-template-columns: minmax(0,.9fr) minmax(26rem,1.1fr); align-items: start; }
  .network-story-copy { align-self: center; }
  .network-scene-wrap { position: sticky; top: calc(var(--header-height) + 2rem); padding-top: 3rem; }
  .feature-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .pricing-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .coverage-shell { grid-template-columns: minmax(0,.92fr) minmax(25rem,1.08fr); }
  .billing-shell { grid-template-columns: minmax(0, .9fr) minmax(25rem, 1.1fr); gap: clamp(3rem, 7vw, 6rem); }
  .testimonial-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .footer-grid { grid-template-columns: 1.25fr repeat(3,1fr); }
}

@media (max-width: 30rem) {
  .hero-actions .button { width: 100%; }
  .coverage-actions .button { width: 100%; }
  .customer-summary { grid-template-columns: 1fr; }
  .customer-summary > div:last-child { text-align: left; }
  .customer-summary > div:last-child .status-badge { margin-left: 0; }
}

@media (max-width: 39.99rem) {
  .signal-card { display: none; }
  .motion-ready [data-reveal="fade-right"],
  .motion-ready [data-reveal="fade-left"] { transform: translate3d(0,1.5rem,0); }
}

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

@media (forced-colors: active) {
  .button, .icon-button, .billing-tab, .feature-card, .package-card, .testimonial-card, .coverage-card, .coverage-location { border: 1px solid CanvasText; }
}
