:root {
  color-scheme: light;
  --ink: #101527;
  --muted: #617089;
  --faint: #eef3f9;
  --line: #dce5f2;
  --paper: #ffffff;
  --violet: #4d28d8;
  --blue: #0277d7;
  --cyan: #13bfe8;
  --teal: #075b66;
  --teal-dark: #04383d;
  --orange: #e19a4e;
  --electric: #3f82ff;
  --pink: #ee3f9d;
  --green: #18c99a;
  --yellow: #ffc857;
  --red: #ff6b6b;
  --dark: #101527;
  --dark-2: #17213a;
  --shadow: 0 22px 70px rgba(22, 34, 58, 0.13);
  --sharp-shadow: 0 18px 44px rgba(22, 34, 58, 0.18);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    "PingFang SC", "Microsoft YaHei", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    linear-gradient(180deg, #071b35 0, #071b35 940px, #ffffff 940px),
    #ffffff;
}

body.menu-open {
  overflow: hidden;
}

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

button {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 14px;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1200px, calc(100% - 32px));
  margin: 16px auto 0;
  padding: 12px 14px 12px 18px;
  border: 1px solid rgba(108, 157, 255, 0.26);
  border-radius: 8px;
  background: rgba(7, 27, 53, 0.78);
  box-shadow: 0 16px 46px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(18px);
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.site-header.is-scrolled {
  border-color: rgba(108, 157, 255, 0.26);
  background: rgba(7, 27, 53, 0.94);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.22);
}

.brand img {
  width: 166px;
  height: 44px;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: rgba(230, 249, 252, 0.9);
  font-size: 14px;
  font-weight: 720;
}

.desktop-nav a,
.text-link {
  transition: color 160ms ease;
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lang-toggle {
  display: inline-grid;
  place-items: center;
  min-width: 44px;
  min-height: 38px;
  border: 1px solid rgba(108, 157, 255, 0.32);
  border-radius: 7px;
  color: rgba(230, 249, 252, 0.92);
  background: rgba(255, 255, 255, 0.06);
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

.lang-toggle:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.68);
  background: rgba(255, 255, 255, 0.1);
}

.text-link {
  color: rgba(230, 249, 252, 0.88);
  font-size: 14px;
  font-weight: 780;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 7px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--violet), var(--blue));
  box-shadow: 0 14px 30px rgba(2, 119, 215, 0.26);
  font-size: 15px;
  font-weight: 820;
  white-space: nowrap;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    border-color 160ms ease;
}

.button-warm {
  color: #06343a;
  background: var(--orange);
  box-shadow: 0 16px 34px rgba(225, 154, 78, 0.28);
}

.button-warm:hover {
  box-shadow: 0 20px 42px rgba(225, 154, 78, 0.36);
}

.button-outline-light {
  color: #effcff;
  border-color: rgba(41, 206, 224, 0.75);
  background: rgba(255, 255, 255, 0.02);
  box-shadow: none;
}

.button-outline-light:hover {
  border-color: rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.12);
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(2, 119, 215, 0.33);
}

.button-small {
  min-height: 40px;
  padding: 0 18px;
  font-size: 14px;
}

.button-ghost {
  color: var(--ink);
  border-color: #cfd9e8;
  background: #ffffff;
  box-shadow: none;
}

.button-ghost:hover {
  border-color: rgba(2, 119, 215, 0.58);
  box-shadow: 0 12px 28px rgba(38, 60, 96, 0.13);
}

.button-light {
  color: var(--blue);
  background: #ffffff;
  box-shadow: 0 16px 34px rgba(13, 34, 66, 0.18);
}

.contact-ghost {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 40px;
  border: 1px solid #d7dfec;
  border-radius: 7px;
  background: #ffffff;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.mobile-menu {
  position: fixed;
  inset: 82px 16px auto;
  z-index: 48;
  display: none;
  flex-direction: column;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.mobile-menu.is-open {
  display: flex;
}

.mobile-menu a {
  padding: 14px 8px;
  border-bottom: 1px solid #edf1f7;
  color: #29354a;
  font-weight: 780;
}

.mobile-menu a:last-child {
  border-bottom: 0;
  color: var(--blue);
}

.hero {
  position: relative;
  display: flex;
  width: 100%;
  min-height: 980px;
  flex-direction: column;
  align-items: center;
  gap: 36px;
  margin: -76px auto 0;
  padding: 178px max(16px, calc((100vw - 1200px) / 2)) 0;
  color: #d8f5ff;
  background:
    linear-gradient(rgba(55, 122, 255, 0.11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(55, 122, 255, 0.11) 1px, transparent 1px),
    linear-gradient(180deg, #071b35 0%, #081d38 52%, #042d34 100%);
  background-size:
    184px 184px,
    184px 184px,
    auto;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 120px -80px auto auto;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(63, 130, 255, 0.22), transparent 66%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -12% -140px -12%;
  height: 360px;
  background: linear-gradient(180deg, rgba(7, 27, 53, 0), rgba(4, 45, 52, 0.92));
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 980px;
  text-align: center;
}

.rating-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 24px;
  color: #e5f9ff;
  font-size: 14px;
  font-weight: 900;
}

.rating-row span {
  color: #ff7a52;
}

.rating-row b {
  margin-right: 6px;
  color: #eef8ff;
}

.launch-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  margin-bottom: 30px;
  padding: 0 30px;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(100deg, var(--electric), var(--violet), var(--pink));
  box-shadow: 0 18px 52px rgba(63, 130, 255, 0.34);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 980px;
  margin: 0 auto 24px;
  color: #b9e7fb;
  font-size: clamp(52px, 7.2vw, 92px);
  line-height: 1.02;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 860px;
  margin: 0 auto 30px;
  color: #e0f4fb;
  font-size: 20px;
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-bottom: 14px;
}

.hero-actions .button {
  min-width: 310px;
}

.hero-note {
  margin: 0 0 44px;
  color: rgba(224, 244, 251, 0.62);
  font-size: 16px;
  font-weight: 760;
}

.press-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: 980px;
  margin: 0 auto 30px;
  color: rgba(224, 244, 251, 0.42);
  font-size: 18px;
  font-weight: 900;
}

.hero-tabs {
  display: inline-grid;
  grid-template-columns: repeat(4, auto);
  gap: 6px;
  padding: 6px;
  border: 1px solid rgba(41, 206, 224, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.hero-tabs button {
  min-height: 38px;
  padding: 0 14px;
  border: 0;
  border-radius: 6px;
  color: rgba(224, 244, 251, 0.72);
  background: transparent;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.hero-tabs button.is-active {
  color: #06343a;
  background: #9deeff;
}

.hero-console {
  z-index: 2;
  position: relative;
  width: min(1040px, 100%);
  min-height: 360px;
  margin-top: 18px;
}

.console-card {
  border: 1px solid rgba(41, 206, 224, 0.26);
  border-radius: 8px;
  background: rgba(4, 50, 59, 0.64);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.main-console {
  position: relative;
  z-index: 2;
  margin: 0 auto;
  padding: 18px;
  overflow: hidden;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.3);
}

.main-console::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(2, 119, 215, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(77, 40, 216, 0.07) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.76), transparent 70%);
  pointer-events: none;
}

.console-top,
.console-metrics {
  position: relative;
  z-index: 2;
}

.console-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border: 1px solid rgba(41, 206, 224, 0.24);
  border-radius: 7px;
  color: rgba(224, 244, 251, 0.74);
  background: rgba(255, 255, 255, 0.06);
  font-size: 13px;
  font-weight: 800;
}

.console-top div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.console-top strong {
  color: var(--green);
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(24, 201, 154, 0.12);
  animation: statusPulse 2.2s ease-in-out infinite;
}

.map-grid {
  position: relative;
  z-index: 1;
  height: 350px;
  margin: 16px 0;
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.16), transparent 26%),
    radial-gradient(circle at 18% 72%, rgba(255, 200, 87, 0.18), transparent 24%),
    linear-gradient(145deg, #101527, #17213a 52%, #0f3244);
  overflow: hidden;
}

.map-grid::before,
.map-grid::after {
  content: "";
  position: absolute;
  inset: 66px 62px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
}

.map-grid::after {
  transform: rotate(58deg) scale(0.78, 1.26);
  border-color: rgba(19, 191, 232, 0.34);
}

.pin,
.pulse-core {
  position: absolute;
  display: grid;
  place-items: center;
}

.pin {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
  font-size: 12px;
  font-weight: 900;
  animation: pinGlow 3.4s ease-in-out infinite;
}

.pin-de,
.pin-br {
  animation-delay: 0.8s;
}

.pin-sg {
  animation-delay: 1.4s;
}

.pin-us {
  top: 70px;
  left: 78px;
}

.pin-de {
  top: 56px;
  right: 102px;
}

.pin-sg {
  right: 70px;
  bottom: 76px;
}

.pin-br {
  left: 112px;
  bottom: 64px;
}

.pulse-core {
  inset: 50%;
  width: 122px;
  height: 122px;
  translate: -50% -50%;
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(135deg, var(--violet), var(--cyan));
  box-shadow:
    0 0 0 14px rgba(255, 255, 255, 0.08),
    0 0 48px rgba(19, 191, 232, 0.28);
  text-align: center;
}

.pulse-core b {
  display: block;
  font-size: 17px;
}

.pulse-core small {
  color: rgba(255, 255, 255, 0.78);
  font-size: 11px;
}

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

.console-metrics div,
.floating-card {
  border: 1px solid rgba(41, 206, 224, 0.24);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.console-metrics div {
  padding: 14px;
}

.console-metrics span,
.floating-card span {
  display: block;
  margin-bottom: 6px;
  color: rgba(224, 244, 251, 0.64);
  font-size: 12px;
  font-weight: 780;
}

.console-metrics strong,
.floating-card strong {
  color: #ffffff;
  font-size: 16px;
}

.floating-card {
  position: absolute;
  z-index: 3;
  min-width: 176px;
  padding: 16px;
  box-shadow: var(--sharp-shadow);
}

.floating-top {
  top: 78px;
  right: -96px;
}

.floating-bottom {
  left: -96px;
  bottom: 112px;
}

.proof-strip {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(1200px, calc(100% - 32px));
  margin: -52px auto 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--line);
  box-shadow: 0 24px 64px rgba(22, 34, 58, 0.16);
}

.proof-strip div {
  min-height: 104px;
  padding: 22px;
  background: #ffffff;
}

.proof-strip strong {
  display: block;
  margin-bottom: 8px;
  font-size: 30px;
  line-height: 1;
}

.proof-strip span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 740;
}

.customer-strip {
  width: min(1200px, calc(100% - 32px));
  margin: 64px auto 0;
  color: #8190a5;
  text-align: center;
}

.customer-strip p {
  margin-bottom: 24px;
  font-size: 14px;
  font-weight: 900;
}

.customer-strip div {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.customer-strip span {
  display: grid;
  place-items: center;
  min-height: 54px;
  border: 1px solid #e3ebf5;
  border-radius: 8px;
  background: #f7fbff;
  color: #92a0b4;
  font-size: 15px;
  font-weight: 900;
}

.platform-section {
  position: relative;
  width: 100%;
  padding: 104px max(16px, calc((100vw - 1200px) / 2));
  color: #ffffff;
  background:
    linear-gradient(rgba(55, 122, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(55, 122, 255, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, #071b35, #081d38 56%, #071b35);
  background-size:
    184px 184px,
    184px 184px,
    auto;
  overflow: hidden;
}

.platform-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(19, 191, 232, 0.12), transparent);
  transform: translateX(-70%);
  animation: scanBeam 7s ease-in-out infinite;
  pointer-events: none;
}

.dark-heading {
  position: relative;
  z-index: 1;
}

.dark-heading h2,
.dark-heading p:not(.eyebrow) {
  color: #ffffff;
}

.dark-heading p:not(.eyebrow) {
  color: rgba(226, 241, 255, 0.72);
}

.platform-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 24px;
}

.platform-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.8fr);
  gap: 36px;
  align-items: center;
  padding: 34px;
  border: 1px solid rgba(108, 157, 255, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.055), rgba(63, 130, 255, 0.12)),
    rgba(255, 255, 255, 0.03);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(16px);
}

.accent-card {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.055), rgba(19, 191, 232, 0.14)),
    rgba(255, 255, 255, 0.03);
}

.platform-card p:not(.eyebrow) {
  color: rgba(226, 241, 255, 0.72);
  line-height: 1.7;
}

.platform-card ul {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.platform-card li {
  position: relative;
  padding-left: 22px;
  color: rgba(226, 241, 255, 0.86);
  font-weight: 780;
}

.platform-card li::before {
  content: "";
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
}

.stack-list,
.code-mini {
  display: grid;
  gap: 12px;
}

.stack-list span,
.code-mini span {
  display: block;
  padding: 16px 18px;
  border: 1px solid rgba(108, 157, 255, 0.28);
  border-radius: 7px;
  background: linear-gradient(135deg, rgba(63, 130, 255, 0.65), rgba(19, 191, 232, 0.5));
  color: #ffffff;
  font-size: 14px;
  font-weight: 900;
}

.code-mini {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.code-mini pre {
  grid-column: 1 / -1;
  min-height: 134px;
  border-radius: 8px;
  background: rgba(3, 24, 42, 0.92);
  color: #d9f4ff;
}

.section,
.network-section,
.developer-section,
.faq-section,
.locations-section,
.contact-band,
.site-footer {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
}

.section {
  padding: 96px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 38px;
}

.wide-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.7fr);
  align-items: end;
  gap: 42px;
  max-width: none;
}

.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading p:not(.eyebrow),
.network-copy p,
.developer-copy p,
.faq-copy p,
.contact-band p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}

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

.product-card {
  min-height: 392px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 14px 38px rgba(38, 60, 96, 0.08);
  transition:
    transform 170ms ease,
    box-shadow 170ms ease,
    border-color 170ms ease;
}

.product-card:hover {
  transform: translateY(-5px);
  border-color: rgba(2, 119, 215, 0.34);
  box-shadow: 0 22px 60px rgba(38, 60, 96, 0.13);
}

.product-card-featured {
  color: #ffffff;
  border-color: transparent;
  background:
    radial-gradient(circle at 88% 8%, rgba(19, 191, 232, 0.42), transparent 34%),
    linear-gradient(145deg, #151147, #024f9e);
}

.product-card-featured p,
.product-card-featured li,
.product-card-featured small {
  color: rgba(255, 255, 255, 0.8);
}

.product-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 28px;
}

.product-icon {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 7px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--violet), var(--blue));
  font-weight: 900;
}

.product-card-featured .product-icon {
  background: rgba(255, 255, 255, 0.16);
}

.product-head small {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-card p,
.use-grid p,
.faq-list p,
.price-card p {
  color: var(--muted);
  line-height: 1.66;
}

.product-card ul {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.product-card li {
  position: relative;
  padding-left: 20px;
  color: #334055;
  font-size: 14px;
  font-weight: 720;
}

.product-card li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

.network-section {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1fr);
  align-items: center;
  gap: 58px;
  padding: 42px 0 98px;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.feature-list span {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #ffffff;
  color: #344258;
  font-weight: 760;
}

.network-board {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background:
    radial-gradient(circle at 85% 16%, rgba(19, 191, 232, 0.18), transparent 28%),
    linear-gradient(145deg, #11172a, #17213a);
  box-shadow: var(--shadow);
}

.board-header,
.region-row {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) 48px;
  align-items: center;
  gap: 16px;
}

.board-header {
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  font-weight: 820;
}

.board-header strong {
  color: var(--green);
  text-align: right;
}

.region-row {
  min-height: 60px;
  color: #ffffff;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 14px;
  font-weight: 780;
}

.region-row div {
  height: 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  overflow: hidden;
}

.region-row i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green), var(--cyan));
}

.region-row strong {
  text-align: right;
}

.use-section {
  width: 100%;
  padding-right: max(16px, calc((100vw - 1200px) / 2));
  padding-left: max(16px, calc((100vw - 1200px) / 2));
  background: #f6f9fd;
}

.use-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--line);
}

.use-grid article {
  min-height: 268px;
  padding: 28px;
  background: #ffffff;
}

.use-grid span {
  display: block;
  margin-bottom: 58px;
  color: var(--blue);
  font-weight: 900;
}

.developer-section {
  display: grid;
  grid-template-columns: minmax(420px, 1.02fr) minmax(0, 0.98fr);
  align-items: center;
  gap: 58px;
  padding: 98px 0;
}

.code-panel {
  overflow: hidden;
  border: 1px solid #26334f;
  border-radius: 8px;
  background: #0e1424;
  box-shadow: var(--sharp-shadow);
}

.code-top {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.code-top span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}

.code-top span:nth-child(1) {
  background: var(--red);
}

.code-top span:nth-child(2) {
  background: var(--yellow);
}

.code-top span:nth-child(3) {
  background: var(--green);
}

.code-top strong {
  margin-left: auto;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 780;
}

pre {
  margin: 0;
  padding: 28px;
  color: #d8e7ff;
  font-size: 14px;
  line-height: 1.8;
  white-space: pre-wrap;
}

.mini-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.mini-stats div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.mini-stats strong {
  display: block;
  margin-bottom: 7px;
  font-size: 22px;
}

.mini-stats span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 760;
}

.pricing-wrap {
  padding-top: 92px;
}

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

.price-card {
  display: flex;
  min-height: 320px;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 14px 38px rgba(38, 60, 96, 0.08);
}

.price-card.preferred {
  color: #ffffff;
  border-color: transparent;
  background:
    radial-gradient(circle at 88% 18%, rgba(19, 191, 232, 0.28), transparent 30%),
    linear-gradient(145deg, #141945, #045fb0);
  box-shadow: 0 24px 70px rgba(2, 119, 215, 0.22);
}

.price-card.preferred p {
  color: rgba(255, 255, 255, 0.78);
}

.plan-label {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-bottom: 28px;
  padding: 0 10px;
  border-radius: 999px;
  color: var(--blue);
  background: #eef6ff;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.preferred .plan-label {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
}

.price-card p {
  margin-bottom: 30px;
}

.price-card .button {
  margin-top: auto;
}

@keyframes statusPulse {
  0%,
  100% {
    box-shadow: 0 0 0 6px rgba(24, 201, 154, 0.12);
  }

  50% {
    box-shadow: 0 0 0 10px rgba(24, 201, 154, 0.05);
  }
}

@keyframes pinGlow {
  0%,
  100% {
    box-shadow: 0 0 0 rgba(19, 191, 232, 0);
  }

  50% {
    box-shadow: 0 0 24px rgba(19, 191, 232, 0.24);
  }
}

@keyframes scanBeam {
  0%,
  100% {
    transform: translateX(-78%);
    opacity: 0.34;
  }

  50% {
    transform: translateX(78%);
    opacity: 0.72;
  }
}

@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;
  }
}

.faq-section {
  display: grid;
  grid-template-columns: minmax(0, 0.55fr) minmax(420px, 0.9fr);
  gap: 60px;
  padding: 18px 0 98px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(38, 60, 96, 0.06);
}

summary {
  cursor: pointer;
  padding: 22px 24px;
  font-size: 18px;
  font-weight: 830;
}

details p {
  margin: 0;
  padding: 0 24px 24px;
}

.locations-section {
  padding: 44px 0 104px;
}

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

.location-grid article {
  min-height: 142px;
  padding: 20px;
  border: 1px solid #e3ebf5;
  border-radius: 8px;
  background: #f5fbfc;
  box-shadow: 0 10px 28px rgba(38, 60, 96, 0.06);
  transition:
    transform 170ms ease,
    box-shadow 170ms ease,
    border-color 170ms ease;
}

.location-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(19, 191, 232, 0.35);
  box-shadow: 0 18px 44px rgba(38, 60, 96, 0.12);
}

.location-grid strong {
  display: grid;
  place-items: center;
  width: 54px;
  height: 38px;
  margin-bottom: 16px;
  border-radius: 6px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--electric), var(--cyan));
  font-size: 16px;
}

.location-grid span,
.location-grid small {
  display: block;
}

.location-grid span {
  margin-bottom: 6px;
  color: #213042;
  font-weight: 850;
}

.location-grid small {
  color: var(--muted);
  font-weight: 720;
}

.contact-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 36px;
  margin-bottom: 42px;
  padding: 70px;
  border-radius: 8px;
  color: #ffffff;
  background:
    linear-gradient(rgba(19, 191, 232, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(19, 191, 232, 0.09) 1px, transparent 1px),
    linear-gradient(135deg, #06464c, #04383d 54%, #07223d);
  background-size:
    92px 92px,
    92px 92px,
    auto;
  box-shadow: 0 28px 90px rgba(3, 56, 61, 0.22);
}

.contact-band .eyebrow,
.contact-band p {
  color: rgba(255, 255, 255, 0.78);
}

.contact-band h2 {
  color: #ffffff;
  font-size: clamp(40px, 5vw, 72px);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.legal-hub {
  display: grid;
  grid-template-columns: minmax(220px, 0.35fr) minmax(0, 1fr);
  gap: 48px;
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto 18px;
  padding: 40px;
  border: 1px solid #dfe8f5;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 16px 44px rgba(38, 60, 96, 0.08);
}

.legal-hub h2 {
  margin-bottom: 16px;
  font-size: 34px;
}

.legal-hub > div:first-child a {
  color: var(--blue);
  font-weight: 820;
}

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

.legal-links a {
  position: relative;
  display: flex;
  min-height: 54px;
  align-items: center;
  padding: 14px 16px 14px 40px;
  border: 1px solid #e4edf7;
  border-radius: 8px;
  color: #203048;
  background: #f7fbff;
  font-size: 15px;
  font-weight: 790;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

.legal-links a::before {
  content: "";
  position: absolute;
  left: 16px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--electric), var(--cyan));
}

.legal-links a:hover {
  transform: translateY(-2px);
  border-color: rgba(19, 191, 232, 0.38);
  background: #ffffff;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 0 42px;
  color: #6a7588;
  font-size: 14px;
}

.site-footer img {
  width: 148px;
  height: 38px;
  object-fit: contain;
}

.site-footer a:last-child {
  color: var(--blue);
  font-weight: 820;
}

@media (max-width: 1080px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero,
  .network-section,
  .developer-section,
  .faq-section,
  .platform-card,
  .wide-heading {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 820px;
    padding-top: 150px;
  }

  .hero-console {
    min-height: auto;
  }

  .main-console {
    margin-right: 0;
  }

  .floating-card {
    position: static;
    display: inline-block;
    margin: 12px 12px 0 0;
  }

  .product-grid,
  .use-grid,
  .location-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .customer-strip div {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .site-header {
    top: 10px;
    width: calc(100% - 24px);
    margin-top: 10px;
    padding: 10px;
  }

  .brand img {
    width: 138px;
    height: 36px;
  }

  .text-link,
  .header-actions .button-small {
    display: none;
  }

  .proof-strip,
  .section,
  .network-section,
  .developer-section,
  .faq-section,
  .contact-band,
  .legal-hub,
  .site-footer {
    width: calc(100% - 24px);
  }

  .hero {
    width: 100%;
    min-height: 860px;
    gap: 32px;
    margin-top: -66px;
    padding: 128px 12px 0;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 32px;
  }

  .hero-lede,
  .section-heading p:not(.eyebrow),
  .network-copy p,
  .developer-copy p,
  .faq-copy p,
  .contact-band p {
    font-size: 16px;
  }

  .rating-row {
    flex-direction: column;
    gap: 8px;
    margin-bottom: 18px;
  }

  .launch-pill {
    min-height: 48px;
    padding: 0 18px;
    font-size: 14px;
  }

  .rating-pill {
    margin-bottom: 18px;
  }

  .hero-tabs {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .hero-actions .button {
    min-width: 0;
  }

  .press-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    font-size: 14px;
  }

  .map-grid {
    height: 290px;
  }

  .pin {
    width: 40px;
    height: 40px;
  }

  .pulse-core {
    width: 96px;
    height: 96px;
  }

  .console-metrics,
  .proof-strip,
  .customer-strip div,
  .product-grid,
  .use-grid,
  .feature-list,
  .mini-stats,
  .pricing-grid,
  .location-grid,
  .contact-band,
  .legal-hub,
  .legal-links {
    grid-template-columns: 1fr;
  }

  .platform-section {
    padding-top: 74px;
    padding-bottom: 74px;
  }

  .platform-card {
    padding: 24px;
  }

  .code-mini {
    grid-template-columns: 1fr;
  }

  .product-card,
  .price-card,
  .use-grid article {
    min-height: auto;
  }

  .network-board,
  .contact-band,
  .legal-hub {
    padding: 24px;
  }

  .board-header,
  .region-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .board-header strong,
  .region-row strong {
    text-align: left;
  }

  .code-panel {
    min-width: 0;
  }

  pre {
    padding: 22px;
    font-size: 13px;
  }

  .contact-actions {
    justify-content: flex-start;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 440px) {
  .hero-actions,
  .contact-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 38px;
  }

  .button {
    width: 100%;
  }

  .main-console {
    padding: 12px;
  }

  .map-grid {
    height: 250px;
  }
}

/* Website optimization pass */
body {
  background:
    linear-gradient(180deg, #06162c 0, #06162c 1180px, #ffffff 1180px),
    #ffffff;
}

.site-header {
  width: min(1240px, calc(100% - 32px));
  padding: 10px 12px 10px 16px;
  border-color: rgba(91, 158, 255, 0.3);
  background: rgba(4, 18, 38, 0.82);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 154px;
  overflow: hidden;
}

.brand img {
  width: 158px;
  height: 42px;
  object-fit: contain;
}

.desktop-nav {
  gap: 22px;
}

.hero {
  min-height: 1030px;
  gap: 30px;
  padding-top: 166px;
  background:
    radial-gradient(circle at 20% 22%, rgba(63, 130, 255, 0.2), transparent 25%),
    radial-gradient(circle at 78% 18%, rgba(19, 191, 232, 0.16), transparent 26%),
    linear-gradient(rgba(86, 150, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(86, 150, 255, 0.1) 1px, transparent 1px),
    linear-gradient(180deg, #06162c 0%, #081d38 55%, #062a31 100%);
  background-size:
    auto,
    auto,
    150px 150px,
    150px 150px,
    auto;
}

.hero-copy {
  max-width: 1040px;
}

.launch-pill {
  min-height: 50px;
  margin-bottom: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: linear-gradient(100deg, rgba(63, 130, 255, 0.9), rgba(77, 40, 216, 0.9), rgba(238, 63, 157, 0.86));
  font-size: 16px;
}

h1 {
  max-width: 1060px;
  margin-bottom: 22px;
  color: #effcff;
  font-size: clamp(48px, 6.2vw, 82px);
  line-height: 1.06;
}

.hero-lede {
  max-width: 960px;
  margin-bottom: 28px;
  color: rgba(226, 247, 255, 0.88);
  font-size: 20px;
  line-height: 1.78;
}

.hero-note {
  margin-bottom: 24px;
}

.hero-console {
  width: min(1080px, 100%);
  margin-top: 0;
}

.main-console {
  padding: 16px;
  border-color: rgba(71, 190, 255, 0.34);
  background: rgba(5, 37, 62, 0.72);
}

.map-grid {
  height: 330px;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.16), transparent 20%),
    radial-gradient(circle at 27% 61%, rgba(63, 130, 255, 0.18), transparent 25%),
    radial-gradient(circle at 76% 35%, rgba(24, 201, 154, 0.14), transparent 24%),
    linear-gradient(145deg, #09142a, #121b36 52%, #092a3d);
}

.map-grid::before {
  inset: 58px 96px;
  border-color: rgba(93, 177, 255, 0.32);
}

.map-grid::after {
  inset: 76px 132px;
  border-color: rgba(24, 201, 154, 0.32);
}

.orbit-dot {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #18c99a;
  box-shadow: 0 0 0 8px rgba(24, 201, 154, 0.12), 0 0 22px rgba(24, 201, 154, 0.72);
  transform-origin: 0 0;
}

.orbit-dot-one {
  animation: orbitOne 8.5s linear infinite;
}

.orbit-dot-two {
  animation: orbitTwo 10.5s linear infinite reverse;
}

.console-metrics div {
  display: grid;
  gap: 6px;
  min-height: 82px;
  align-content: center;
}

.console-metrics strong {
  font-size: 18px;
  line-height: 1.15;
}

.proof-strip {
  margin-top: -48px;
}

.proof-strip div {
  min-height: 96px;
  padding: 20px 22px;
}

.proof-strip strong {
  color: #0b1832;
}

.platform-section {
  padding-top: 96px;
  padding-bottom: 96px;
  background:
    radial-gradient(circle at 18% 0%, rgba(77, 40, 216, 0.25), transparent 30%),
    radial-gradient(circle at 85% 36%, rgba(19, 191, 232, 0.14), transparent 28%),
    linear-gradient(rgba(86, 150, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(86, 150, 255, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, #06162c, #081b34 58%, #06162c);
  background-size:
    auto,
    auto,
    150px 150px,
    150px 150px,
    auto;
}

.stack-list span,
.code-mini span {
  display: flex;
  align-items: center;
  min-height: 58px;
  border-color: rgba(83, 170, 255, 0.3);
  background: linear-gradient(135deg, rgba(34, 89, 177, 0.82), rgba(16, 133, 171, 0.62));
}

.code-mini span:nth-child(3) {
  grid-column: 1 / -1;
}

.residential-section,
.integrations-section,
.pricing-wrap {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
}

.residential-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1fr);
  gap: 42px;
  align-items: stretch;
  padding: 104px 0 78px;
}

.residential-copy,
.residential-visual {
  border-radius: 8px;
}

.residential-copy {
  padding: 42px;
  color: #ffffff;
  background:
    radial-gradient(circle at 92% 12%, rgba(19, 191, 232, 0.22), transparent 32%),
    linear-gradient(145deg, #071a36, #092b4d 54%, #06162c);
  box-shadow: var(--sharp-shadow);
}

.residential-copy h2 {
  color: #ffffff;
  font-size: clamp(34px, 4.3vw, 58px);
  line-height: 1.12;
}

.residential-copy p:not(.eyebrow) {
  color: rgba(231, 246, 255, 0.76);
  font-size: 17px;
  line-height: 1.74;
}

.residential-features {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.residential-features article {
  padding: 18px;
  border: 1px solid rgba(91, 158, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
}

.residential-features span {
  display: inline-flex;
  margin-bottom: 10px;
  color: #18c99a;
  font-weight: 900;
}

.residential-features h3 {
  color: #ffffff;
  font-size: 20px;
}

.residential-visual {
  display: grid;
  gap: 16px;
}

.world-panel {
  min-height: 390px;
  padding: 26px;
  border: 1px solid #dbe6f3;
  border-radius: 8px;
  background: #f7fbff;
  box-shadow: 0 20px 60px rgba(38, 60, 96, 0.12);
}

.world-map {
  position: relative;
  height: 252px;
  border-radius: 8px;
  background:
    radial-gradient(ellipse at 28% 42%, rgba(32, 122, 215, 0.26) 0 18%, transparent 19%),
    radial-gradient(ellipse at 52% 34%, rgba(32, 122, 215, 0.2) 0 20%, transparent 21%),
    radial-gradient(ellipse at 74% 55%, rgba(32, 122, 215, 0.22) 0 18%, transparent 19%),
    radial-gradient(ellipse at 58% 70%, rgba(24, 201, 154, 0.16) 0 13%, transparent 14%),
    linear-gradient(180deg, #eaf5ff, #dff0fb);
  overflow: hidden;
}

.world-map::before,
.world-map::after {
  content: "";
  position: absolute;
  inset: 26px;
  border: 1px dashed rgba(13, 96, 177, 0.24);
  border-radius: 50%;
}

.world-map::after {
  transform: rotate(54deg) scale(0.8, 1.26);
}

.map-point {
  position: absolute;
  width: 13px;
  height: 13px;
  border: 3px solid #ffffff;
  border-radius: 50%;
  background: #0277d7;
  box-shadow: 0 10px 24px rgba(2, 119, 215, 0.26);
}

.p1 { top: 33%; left: 25%; }
.p2 { top: 26%; left: 47%; }
.p3 { top: 45%; left: 70%; }
.p4 { top: 64%; left: 56%; }
.p5 { top: 58%; left: 35%; }

.world-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.world-stats div {
  padding: 18px;
  border: 1px solid #dfe8f4;
  border-radius: 8px;
  background: #ffffff;
}

.world-stats strong {
  display: block;
  color: #071a36;
  font-size: 34px;
  line-height: 1;
}

.world-stats span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

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

.use-chip-grid span {
  display: flex;
  align-items: center;
  min-height: 56px;
  padding: 14px 16px;
  border: 1px solid #dfe8f4;
  border-radius: 8px;
  background: #ffffff;
  color: #203048;
  font-weight: 820;
  box-shadow: 0 10px 28px rgba(38, 60, 96, 0.07);
}

.network-section {
  padding-top: 56px;
}

.integrations-section {
  padding: 34px 0 94px;
}

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

.integration-card {
  padding: 30px;
  border: 1px solid #dfe8f4;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 52px rgba(38, 60, 96, 0.1);
}

.api-card {
  background:
    radial-gradient(circle at 90% 12%, rgba(19, 191, 232, 0.16), transparent 28%),
    #ffffff;
}

.integration-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.integration-icon {
  display: grid;
  place-items: center;
  min-width: 48px;
  height: 48px;
  border-radius: 8px;
  color: #ffffff;
  background: linear-gradient(135deg, #4d28d8, #0277d7);
  font-weight: 900;
}

.tool-cloud,
.api-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.tool-cloud span,
.api-chips span {
  padding: 10px 13px;
  border: 1px solid #dfe8f4;
  border-radius: 8px;
  background: #f6fbff;
  color: #203048;
  font-size: 13px;
  font-weight: 850;
}

.integration-card ul,
.pricing-plan ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.integration-card li,
.pricing-plan li {
  position: relative;
  padding-left: 22px;
  color: #3a485d;
  line-height: 1.55;
  font-weight: 730;
}

.integration-card li::before,
.pricing-plan li::before {
  content: "";
  position: absolute;
  top: 0.64em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #18c99a;
}

.locations-section {
  padding-top: 72px;
  border-top: 1px solid #edf3f9;
}

.location-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.location-grid article {
  min-height: 128px;
  background: #ffffff;
}

.location-grid strong {
  width: 46px;
  height: 34px;
  margin-bottom: 14px;
  background: #eef6ff;
  font-size: 24px;
}

.pricing-wrap {
  padding: 92px 0 104px;
}

.pricing-heading {
  max-width: 860px;
}

.billing-toggle {
  display: inline-grid;
  grid-template-columns: repeat(2, minmax(106px, 1fr));
  gap: 6px;
  margin-top: 12px;
  padding: 6px;
  border: 1px solid rgba(77, 40, 216, 0.22);
  border-radius: 8px;
  background: #f1f4ff;
}

.billing-toggle button {
  min-height: 42px;
  border: 0;
  border-radius: 6px;
  color: #35435b;
  background: transparent;
  font-weight: 900;
  cursor: pointer;
}

.billing-toggle button.is-active {
  color: #ffffff;
  background: linear-gradient(135deg, #4d28d8, #0277d7);
  box-shadow: 0 12px 26px rgba(77, 40, 216, 0.22);
}

.pricing-table {
  display: none;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding: 1px;
  border-radius: 8px;
  background: linear-gradient(135deg, #5c2dff, #8e3cff 45%, #0277d7);
  box-shadow: 0 26px 80px rgba(77, 40, 216, 0.22);
  overflow: hidden;
}

.pricing-table.is-active {
  display: grid;
}

.pricing-plan {
  display: flex;
  min-height: 432px;
  flex-direction: column;
  padding: 28px;
  color: #ffffff;
  background:
    radial-gradient(circle at 80% 8%, rgba(255, 255, 255, 0.14), transparent 26%),
    linear-gradient(180deg, #35138f, #23115e);
}

.pricing-plan.highlighted {
  background:
    radial-gradient(circle at 80% 8%, rgba(255, 200, 87, 0.22), transparent 28%),
    linear-gradient(180deg, #641ce2, #2b146d);
}

.pricing-plan > span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  font-weight: 900;
}

.pricing-plan strong {
  display: block;
  margin: 18px 0 22px;
  color: #ffffff;
  font-size: 48px;
  line-height: 1;
}

.pricing-plan small {
  margin-left: 4px;
  font-size: 16px;
}

.pricing-plan .button {
  width: 100%;
  margin-bottom: 26px;
  color: #27105f;
  background: #ffc857;
  box-shadow: 0 16px 34px rgba(255, 200, 87, 0.22);
}

.pricing-plan li {
  color: rgba(255, 255, 255, 0.82);
}

.pricing-plan li::before {
  background: #ffc857;
}

.faq-section {
  padding-top: 28px;
}

.faq-list {
  gap: 10px;
}

details {
  border-color: #dfe8f4;
  box-shadow: 0 12px 34px rgba(38, 60, 96, 0.07);
}

summary {
  position: relative;
  padding-right: 54px;
  line-height: 1.38;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 24px;
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  translate: 0 -50%;
  border-radius: 50%;
  color: #0277d7;
  background: #eef6ff;
  font-weight: 900;
}

details[open] summary::after {
  content: "-";
}

details p {
  color: #526179;
  line-height: 1.76;
}

.footer-v2 {
  display: block;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 74px max(16px, calc((100vw - 1200px) / 2)) 30px;
  color: #dcefff;
  background:
    linear-gradient(rgba(91, 158, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(91, 158, 255, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, #071a36, #041126);
  background-size:
    120px 120px,
    120px 120px,
    auto;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(260px, 0.46fr) minmax(0, 1fr);
  gap: 42px;
  align-items: start;
}

.footer-brand img {
  width: 232px;
  height: 78px;
  object-fit: contain;
}

.footer-brand p {
  max-width: 330px;
  margin: 22px 0 24px;
  color: rgba(220, 239, 255, 0.72);
  line-height: 1.7;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-social a {
  position: relative;
  display: grid;
  place-items: center;
  min-width: 44px;
  height: 38px;
  border: 1px solid rgba(108, 157, 255, 0.28);
  border-radius: 8px;
  color: #eaf8ff;
  background: rgba(255, 255, 255, 0.06);
  font-size: 13px;
  font-weight: 900;
}

.qr-pop {
  position: absolute;
  bottom: calc(100% + 12px);
  left: 50%;
  z-index: 8;
  display: grid;
  gap: 8px;
  justify-items: center;
  width: 152px;
  padding: 12px;
  border: 1px solid rgba(157, 238, 255, 0.35);
  border-radius: 8px;
  color: #dff8ff;
  background: rgba(5, 19, 42, 0.96);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.32);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px) scale(0.96);
  transition:
    opacity 170ms ease,
    transform 170ms ease;
}

.qr-pop::after {
  content: "";
  position: absolute;
  bottom: -7px;
  width: 12px;
  height: 12px;
  rotate: 45deg;
  border-right: 1px solid rgba(157, 238, 255, 0.35);
  border-bottom: 1px solid rgba(157, 238, 255, 0.35);
  background: rgba(5, 19, 42, 0.96);
}

.qr-pop i {
  display: block;
  width: 104px;
  height: 104px;
  border: 8px solid #ffffff;
  border-radius: 6px;
  background:
    linear-gradient(90deg, #071a36 10px, transparent 10px 20px, #071a36 20px 30px, transparent 30px 40px, #071a36 40px 50px, transparent 50px 60px, #071a36 60px 70px, transparent 70px 80px, #071a36 80px),
    linear-gradient(#071a36 10px, transparent 10px 20px, #071a36 20px 30px, transparent 30px 40px, #071a36 40px 50px, transparent 50px 60px, #071a36 60px 70px, transparent 70px 80px, #071a36 80px),
    #ffffff;
  background-blend-mode: multiply;
}

.qr-pop b {
  font-size: 12px;
}

.footer-social a:hover .qr-pop,
.footer-social a:focus-visible .qr-pop {
  opacity: 1;
  transform: translate(-50%, 0) scale(1);
}

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

.footer-cards a {
  min-height: 118px;
  padding: 20px;
  border: 1px solid rgba(208, 229, 255, 0.75);
  border-radius: 8px;
  color: #0d1b33;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.14);
}

.footer-cards strong,
.footer-cards span {
  display: block;
}

.footer-cards strong {
  margin-bottom: 8px;
  font-size: 17px;
}

.footer-cards span {
  color: #64748b;
  font-size: 14px;
  line-height: 1.55;
}

.partner-wall {
  margin: 38px 0 24px;
  padding: 2px 0 28px;
  border-bottom: 1px solid rgba(108, 157, 255, 0.22);
}

.partner-wall h3 {
  margin: 0 0 22px;
  color: #ffffff;
  font-size: 22px;
}

.partner-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px 32px;
  align-items: center;
}

.partner-grid span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 30px;
  color: rgba(235, 247, 255, 0.92);
  font-size: 15px;
  font-weight: 760;
  transition:
    color 170ms ease,
    transform 170ms ease,
    filter 170ms ease;
}

.partner-grid span:hover {
  color: #ffffff;
  filter: drop-shadow(0 8px 18px rgba(63, 130, 255, 0.3));
  transform: translateY(-2px);
}

.partner-grid i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  overflow: hidden;
  border-radius: 8px;
  background: #ffffff;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.72),
    0 8px 18px rgba(0, 0, 0, 0.18);
  font-style: normal;
}

.partner-grid i img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.partner-grid .partner-wordmark {
  width: auto;
  min-width: 58px;
  padding: 0 8px;
  border-radius: 7px;
  color: #10223f;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0;
  white-space: nowrap;
}

.footer-v2 .legal-hub {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.footer-v2 .legal-links {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.footer-v2 .legal-links a {
  min-height: 52px;
  border-color: rgba(108, 157, 255, 0.22);
  color: rgba(220, 239, 255, 0.88);
  background: rgba(255, 255, 255, 0.055);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(108, 157, 255, 0.2);
  color: rgba(220, 239, 255, 0.68);
  font-size: 14px;
}

.footer-lang {
  min-height: 36px;
}

@keyframes orbitOne {
  from {
    transform: rotate(0deg) translateX(300px) rotate(0deg);
  }

  to {
    transform: rotate(360deg) translateX(300px) rotate(-360deg);
  }
}

@keyframes orbitTwo {
  from {
    transform: rotate(0deg) translateX(210px) scaleY(0.72) rotate(0deg);
  }

  to {
    transform: rotate(360deg) translateX(210px) scaleY(0.72) rotate(-360deg);
  }
}

@media (max-width: 1080px) {
  .residential-section,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .location-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .pricing-table,
  .footer-cards,
  .footer-v2 .legal-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .floating-top,
  .floating-bottom {
    display: none;
  }
}

@media (max-width: 760px) {
  .site-header {
    width: calc(100% - 24px);
  }

  .brand {
    min-width: 118px;
  }

  .brand img {
    width: 122px;
    height: 34px;
  }

  .hero {
    min-height: 920px;
    padding-top: 132px;
  }

  h1 {
    font-size: 40px;
  }

  .hero-lede {
    font-size: 16px;
  }

  .console-metrics,
  .world-stats,
  .use-chip-grid,
  .integration-grid,
  .pricing-table,
  .location-grid,
  .footer-cards,
  .footer-v2 .legal-links {
    grid-template-columns: 1fr;
  }

  .residential-section,
  .integrations-section,
  .pricing-wrap {
    width: calc(100% - 24px);
  }

  .residential-section {
    padding-top: 72px;
  }

  .residential-copy {
    padding: 26px;
  }

  .pricing-plan {
    min-height: auto;
  }

  .footer-v2 {
    padding-top: 56px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* July 2 polish requests */
.site-header {
  padding: 12px 14px 12px 22px;
}

.brand {
  min-width: 210px;
}

.brand img {
  width: 192px;
  height: 54px;
}

.desktop-nav {
  flex: 1;
  justify-content: center;
  gap: 38px;
  font-size: 15px;
}

.desktop-nav a {
  position: relative;
  padding: 12px 0;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #18c99a, #13bfe8, #4d28d8);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

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

.hero {
  padding-bottom: 46px;
}

.platform-section {
  margin-top: -1px;
}

.proof-strip {
  isolation: isolate;
  overflow: visible;
}

.proof-strip::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -86px;
  left: 50%;
  width: 100vw;
  height: calc(100% + 150px);
  background: linear-gradient(180deg, #062a31 0%, #07162f 100%);
  transform: translateX(-50%);
}

.proof-strip div:first-child {
  border-radius: 8px 0 0 8px;
}

.proof-strip div:last-child {
  border-radius: 0 8px 8px 0;
}

.hero-tabs {
  position: relative;
  overflow: hidden;
}

.hero-tabs::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(157, 238, 255, 0.18), transparent);
  transform: translateX(-120%);
  transition: transform 420ms ease;
}

.hero-tabs:hover::before {
  transform: translateX(120%);
}

.hero-tabs button {
  position: relative;
  z-index: 1;
  transition:
    color 170ms ease,
    background 170ms ease,
    transform 170ms ease,
    box-shadow 170ms ease;
}

.hero-tabs button:hover {
  color: #06343a;
  background: rgba(157, 238, 255, 0.86);
  box-shadow: 0 8px 24px rgba(19, 191, 232, 0.18);
  transform: translateY(-2px);
}

.console-metrics {
  margin-bottom: 34px;
}

.proof-strip {
  margin-top: -18px;
}

.world-panel {
  display: grid;
  min-height: auto;
  gap: 16px;
}

.filter-graphic {
  display: grid;
  gap: 18px;
  padding: 22px;
  border: 1px solid #dfe8f4;
  border-radius: 8px;
  background:
    radial-gradient(circle at 78% 36%, rgba(24, 201, 154, 0.18), transparent 28%),
    #ffffff;
}

.filter-copy h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

.filter-copy p {
  margin: 0;
  color: #53637a;
  line-height: 1.72;
}

.filter-flow {
  display: grid;
  grid-template-columns: minmax(220px, 0.85fr) minmax(220px, 1fr);
  align-items: center;
  gap: 22px;
}

.filter-steps {
  display: grid;
  gap: 12px;
}

.filter-steps span {
  position: relative;
  display: flex;
  min-height: 44px;
  align-items: center;
  padding: 10px 14px 10px 42px;
  border: 1px solid #dbe6f3;
  border-radius: 6px;
  background: #f6fbff;
  color: #1d2c42;
  font-weight: 850;
}

.filter-steps span::before {
  content: "";
  position: absolute;
  left: 14px;
  width: 16px;
  height: 16px;
  border-radius: 4px;
  background: linear-gradient(135deg, #18c99a, #78f2c5);
  box-shadow: 0 0 0 5px rgba(24, 201, 154, 0.1);
}

.filter-symbol {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 210px;
}

.filter-symbol i,
.filter-symbol b {
  position: absolute;
  display: block;
  background: linear-gradient(180deg, #08e68f, #77edc9);
}

.filter-symbol i:nth-child(1) {
  top: 18px;
  width: 118px;
  height: 118px;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

.filter-symbol i:nth-child(2) {
  top: 86px;
  width: 208px;
  height: 118px;
  border-radius: 120px 120px 0 0;
  opacity: 0.9;
}

.filter-symbol i:nth-child(3) {
  top: 128px;
  width: 240px;
  height: 76px;
  border-radius: 999px;
  opacity: 0.78;
}

.filter-symbol b {
  top: 52px;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: rgba(5, 175, 120, 0.18);
  backdrop-filter: blur(2px);
}

.filter-symbol::before,
.filter-symbol::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 30px 0 rgba(255, 255, 255, 0.9);
}

.filter-symbol::before {
  top: 105px;
}

.filter-symbol::after {
  top: 160px;
}

.location-grid article {
  position: relative;
  overflow: hidden;
  padding: 20px;
}

.location-grid strong {
  width: calc(100% + 40px);
  height: 84px;
  margin: -20px -20px 18px;
  border-radius: 8px 8px 0 0;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.92), rgba(238, 246, 255, 0.74)),
    linear-gradient(135deg, rgba(2, 119, 215, 0.12), rgba(19, 191, 232, 0.12));
  font-size: 56px;
  line-height: 1;
}

.location-grid article:hover {
  transform: translateY(-6px) scale(1.015);
  border-color: rgba(2, 119, 215, 0.35);
  box-shadow: 0 24px 62px rgba(38, 60, 96, 0.16);
}

.use-chip-grid span,
.integration-card,
.pricing-plan,
.footer-cards a {
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.use-chip-grid span:hover,
.integration-card:hover,
.footer-cards a:hover {
  transform: translateY(-6px);
  border-color: rgba(19, 191, 232, 0.38);
  box-shadow: 0 24px 62px rgba(38, 60, 96, 0.14);
}

.pricing-plan {
  transform: translateY(0);
}

.pricing-plan:hover {
  z-index: 2;
  transform: translateY(-10px);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.26),
    0 26px 72px rgba(77, 40, 216, 0.28);
}

.pricing-plan .button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(255, 200, 87, 0.36);
}

@media (max-width: 1080px) {
  .brand {
    min-width: 176px;
  }

  .brand img {
    width: 172px;
    height: 48px;
  }

  .filter-flow {
    grid-template-columns: 1fr;
  }

  .footer-brand img {
    width: 210px;
    height: 70px;
  }
}

@media (max-width: 760px) {
  .brand {
    min-width: 140px;
  }

  .brand img {
    width: 140px;
    height: 40px;
  }

  .footer-brand img {
    width: 188px;
    height: 64px;
  }

  .hero {
    padding-bottom: 30px;
  }

  .proof-strip {
    margin-top: -8px;
  }

  .proof-strip div:first-child {
    border-radius: 8px 8px 0 0;
  }

  .proof-strip div:last-child {
    border-radius: 0 0 8px 8px;
  }

  .filter-graphic {
    padding: 18px;
  }

  .filter-symbol {
    min-height: 180px;
    transform: scale(0.82);
  }

  .location-grid strong {
    height: 78px;
    font-size: 50px;
  }
}

/* July 3 polish requests */
.site-header {
  min-height: 80px;
}

.brand {
  min-width: 258px;
}

.brand img {
  width: 240px;
  height: 64px;
  object-fit: contain;
}

@media (max-width: 1080px) {
  .site-header {
    min-height: 74px;
  }

  .brand {
    min-width: 206px;
  }

  .brand img {
    width: 198px;
    height: 56px;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 64px;
  }

  .brand {
    min-width: 154px;
  }

  .brand img {
    width: 150px;
    height: 44px;
  }
}

/* July 3 visual replacement: network filtering panel */
.world-panel {
  gap: 0;
  padding: 0;
  overflow: hidden;
  border-color: #dbe6f3;
  background: #f7fbff;
}

.network-filter-media {
  margin: 0;
  aspect-ratio: 592 / 420;
  overflow: hidden;
  border-radius: 8px 8px 0 0;
  background: #071a36;
}

.network-filter-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 36% 50%;
}

.filter-graphic {
  margin: 8px 26px 26px;
  padding: 24px 22px 132px;
  background:
    radial-gradient(circle at 72% 28%, rgba(24, 201, 154, 0.15), transparent 26%),
    #ffffff;
}

.filter-flow {
  display: block;
}

.filter-steps {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 472px;
}

.filter-symbol {
  display: none;
}

@media (max-width: 1080px) {
  .filter-graphic {
    padding-bottom: 92px;
  }
}

@media (max-width: 760px) {
  .network-filter-media {
    aspect-ratio: 16 / 10;
  }

  .filter-graphic {
    margin: 8px 18px 18px;
    padding: 20px 16px 70px;
  }

  .filter-steps {
    grid-template-columns: 1fr;
    max-width: none;
  }
}

/* July 3 follow-up fixes */
.site-header {
  min-height: 68px;
}

.brand {
  min-width: 150px;
  justify-content: flex-start;
}

.brand img {
  width: 128px;
  height: 40px;
  object-fit: contain;
}

.footer-brand img {
  width: 188px;
  height: auto;
}

.location-grid strong img.emoji {
  width: 1.08em;
  height: 1.08em;
  margin: 0 auto;
  object-fit: contain;
}

@media (max-width: 1080px) {
  .brand {
    min-width: 136px;
  }

  .brand img {
    width: 122px;
    height: 38px;
  }
}

@media (max-width: 760px) {
  .brand {
    min-width: 116px;
  }

  .brand img {
    width: 110px;
    height: 34px;
  }
}
