:root {
  --ink: #12213c;
  --muted: #66748a;
  --line: #e4e9f2;
  --primary: #6254f5;
  --primary-dark: #4435d8;
  --cyan: #1dc7dd;
  --green: #18b783;
  --surface: #f6f8fc;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: Inter, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
}
a {
  color: inherit;
  text-decoration: none;
}
.site-header {
  height: 76px;
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 42px;
  padding: 0 max(28px, calc((100vw - 1240px) / 2));
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(228, 233, 242, 0.9);
  backdrop-filter: blur(16px);
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 21px;
}
.brand-mark {
  width: 24px;
  height: 24px;
  position: relative;
  display: inline-block;
  background: linear-gradient(135deg, #6e60ff, #17c9dc);
  border-radius: 7px;
  box-shadow: 0 6px 18px rgba(98, 84, 245, 0.23);
}
.brand-mark:after {
  content: "";
  position: absolute;
  inset: 6px;
  background: #fff;
  border-radius: 3px;
}
.site-nav {
  display: flex;
  gap: 30px;
  margin: auto;
}
.site-nav a,
.text-link {
  color: #536178;
  font-size: 14px;
}
.site-nav a:hover,
.text-link:hover {
  color: var(--primary);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}
.primary,
.secondary {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 24px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 750;
  transition: 0.2s;
}
.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  box-shadow: 0 12px 26px rgba(98, 84, 245, 0.22);
}
.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(98, 84, 245, 0.3);
}
.primary.small {
  min-height: 42px;
  padding: 0 18px;
  border-radius: 10px;
  font-size: 13px;
}
.secondary {
  background: #fff;
  border: 1px solid var(--line);
}
.secondary:hover {
  color: var(--primary);
  border-color: #bdb7ff;
}
.mobile-menu {
  display: none;
  border: 0;
  background: transparent;
  font-size: 24px;
}
.hero {
  min-height: 690px;
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  align-items: center;
  gap: 76px;
  padding: 78px max(28px, calc((100vw - 1240px) / 2)) 92px;
  background:
    radial-gradient(
      circle at 81% 26%,
      rgba(92, 78, 247, 0.12),
      transparent 24%
    ),
    radial-gradient(
      circle at 8% 86%,
      rgba(29, 199, 221, 0.08),
      transparent 25%
    ),
    linear-gradient(180deg, #fbfcff, #f5f7fc);
}
.status-pill {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px 13px;
  color: #497067;
  background: #edf9f5;
  border: 1px solid #d2f0e5;
  border-radius: 20px;
  font-size: 12px;
}
.status-pill i {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(24, 183, 131, 0.1);
}
.hero h1 {
  margin: 24px 0 20px;
  font-size: 58px;
  line-height: 1.14;
  letter-spacing: -2.4px;
}
.hero h1 em {
  color: var(--primary);
  font-style: normal;
}
.hero-copy > p {
  max-width: 610px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.85;
}
.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 34px;
}
.hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 26px;
  color: #637087;
  font-size: 12px;
}
.network-card {
  position: relative;
  padding: 26px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(218, 224, 238, 0.92);
  border-radius: 24px;
  box-shadow: 0 30px 70px rgba(31, 45, 78, 0.14);
}
.network-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.network-top small,
.network-top strong {
  display: block;
}
.network-top small {
  color: #8a95a8;
  font-size: 9px;
  letter-spacing: 1.5px;
}
.network-top strong {
  margin-top: 5px;
  font-size: 17px;
}
.live-badge {
  padding: 5px 8px;
  color: #0c9c6c;
  background: #e8f9f3;
  border-radius: 8px;
  font-size: 9px;
  font-weight: 800;
}
.globe {
  height: 270px;
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  margin: 24px 0;
  background: radial-gradient(
    circle,
    rgba(98, 84, 245, 0.13),
    rgba(98, 84, 245, 0.03) 44%,
    transparent 45%
  );
  border-radius: 20px;
}
.globe:before,
.globe:after {
  content: "";
  position: absolute;
  border: 1px solid rgba(98, 84, 245, 0.16);
  border-radius: 50%;
}
.globe:before {
  width: 210px;
  height: 210px;
}
.globe:after {
  width: 145px;
  height: 145px;
}
.globe-core {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  z-index: 2;
  color: #fff;
  background: linear-gradient(135deg, #6b5df8, #1dc7dd);
  border: 8px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  font-size: 27px;
  font-weight: 900;
  box-shadow: 0 14px 35px rgba(82, 70, 222, 0.3);
}
.orbit {
  position: absolute;
  border: 1px dashed rgba(98, 84, 245, 0.24);
  border-radius: 50%;
  transform: rotate(-20deg);
}
.orbit-one {
  width: 280px;
  height: 110px;
}
.orbit-two {
  width: 110px;
  height: 260px;
}
.node {
  width: 10px;
  height: 10px;
  position: absolute;
  z-index: 3;
  background: #fff;
  border: 3px solid var(--primary);
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(60, 48, 180, 0.3);
}
.n1 {
  left: 17%;
  top: 28%;
}
.n2 {
  right: 15%;
  top: 32%;
}
.n3 {
  left: 27%;
  bottom: 18%;
}
.n4 {
  right: 27%;
  bottom: 20%;
}
.n5 {
  right: 9%;
  bottom: 44%;
}
.network-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.network-stats div {
  padding: 12px;
  background: #f7f8fc;
  border-radius: 11px;
}
.network-stats small,
.network-stats strong {
  display: block;
}
.network-stats small {
  color: #8591a3;
  font-size: 9px;
}
.network-stats strong {
  margin-top: 5px;
  font-size: 19px;
}
.route-list {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 9px;
  margin-top: 17px;
  color: #637087;
  font-size: 10px;
}
.route-list span {
  display: flex;
  align-items: center;
  gap: 7px;
}
.route-list span i {
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
}
.route-list b {
  color: #11986c;
  font-size: 9px;
}
.proof-strip {
  max-width: 1240px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: -34px auto 0;
  position: relative;
  z-index: 3;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 17px;
  box-shadow: 0 18px 42px rgba(30, 44, 73, 0.1);
}
.proof-strip div {
  padding: 24px 28px;
  border-right: 1px solid var(--line);
}
.proof-strip div:last-child {
  border: 0;
}
.proof-strip strong,
.proof-strip span {
  display: block;
}
.proof-strip strong {
  font-size: 24px;
}
.proof-strip span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 11px;
}
.market-section {
  padding: 118px max(28px, calc((100vw - 1320px) / 2));
  background: #fff;
}
.site-nav a.active {
  color: var(--primary);
  font-weight: 750;
}
.product-page-hero {
  padding: 72px max(28px, calc((100vw - 1240px) / 2)) 46px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0, rgba(98, 84, 245, 0.13), transparent 42%),
    linear-gradient(180deg, #fafaff, #fff);
}
.product-page-hero > span {
  color: var(--primary);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 2.4px;
}
.product-page-hero h1 {
  margin: 16px 0 14px;
  color: var(--ink);
  font-size: clamp(36px, 4vw, 54px);
  letter-spacing: -1.8px;
}
.product-page-hero p {
  max-width: 760px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}
.product-page-notes {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-top: 24px;
  color: #536178;
  font-size: 13px;
}
.product-market {
  padding-top: 28px;
  padding-bottom: 88px;
  background: #fff;
}
.product-market .pricing-explorer {
  margin-top: 0;
}
.pricing-explorer {
  margin-top: 42px;
  overflow: hidden;
  background: #f7f8fc;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 22px 58px rgba(35, 48, 78, 0.1);
}
.market-loading,
.market-empty {
  min-height: 260px;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 10px;
  color: var(--muted);
}
.market-loading i {
  width: 34px;
  height: 34px;
  border: 3px solid #e3e6ef;
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: marketSpin 0.8s linear infinite;
}
@keyframes marketSpin {
  to {
    transform: rotate(360deg);
  }
}
.market-product-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}
.market-product-tabs button {
  min-height: 92px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 17px 20px;
  border: 0;
  background: #fff;
  text-align: left;
  cursor: pointer;
}
.market-product-tabs button.active {
  background: linear-gradient(180deg, #f5f3ff, #fff);
  box-shadow: inset 0 -3px var(--primary);
}
.market-product-tabs i {
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: #fff;
  background: linear-gradient(135deg, #7062fa, #5141d8);
  border-radius: 11px;
  font-style: normal;
}
.market-product-tabs span strong,
.market-product-tabs span small {
  display: block;
}
.market-product-tabs span strong {
  font-size: 13px;
}
.market-product-tabs span small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 8px;
}
.market-product-tabs em {
  position: absolute;
  right: 10px;
  top: 8px;
  padding: 4px 6px;
  color: var(--primary);
  background: #efedff;
  border-radius: 7px;
  font-size: 7px;
  font-style: normal;
}
.market-workspace {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
}
.market-main {
  min-width: 0;
  padding: 25px;
  background: #fff;
}
.market-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}
.market-title-row > div {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 10px;
}
.market-step {
  grid-row: 1/3;
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  color: var(--primary);
  background: #eeecff;
  border-radius: 9px;
  font-size: 8px;
  font-weight: 800;
}
.market-title-row strong {
  font-size: 13px;
}
.market-title-row small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 8px;
}
.market-count {
  padding: 6px 9px;
  color: #637087;
  background: #f4f6f9;
  border-radius: 8px;
  font-size: 8px;
}
.market-region-tabs {
  display: flex;
  gap: 6px;
  overflow: auto;
  margin: 20px 0 12px;
}
.market-region-tabs button {
  flex: 0 0 auto;
  display: flex;
  gap: 5px;
  padding: 7px 11px;
  color: #66748a;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 9px;
  cursor: pointer;
}
.market-region-tabs button small {
  padding: 1px 4px;
  background: #eff1f5;
  border-radius: 7px;
}
.market-region-tabs button.active {
  color: var(--primary);
  background: #f2f0ff;
  border-color: #bcb5ff;
}
.market-location-table-wrap {
  max-height: 326px;
  overflow: auto;
  border: 1px solid #dfe4ee;
  border-radius: 11px;
}
.market-location-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  font-size: 9px;
}
.market-location-table th {
  position: sticky;
  top: 0;
  z-index: 1;
  padding: 10px 12px;
  color: #778399;
  background: #f6f7fb;
  border-bottom: 1px solid #dfe4ee;
  text-align: left;
  font-weight: 750;
  white-space: nowrap;
}
.market-location-table td {
  padding: 10px 12px;
  border-bottom: 1px solid #edf0f5;
  color: #536078;
}
.market-location-table tbody tr {
  cursor: pointer;
  transition: 0.18s ease;
}
.market-location-table tbody tr:hover,
.market-location-table tbody tr.active {
  background: #f5f3ff;
}
.market-location-table tbody tr.active {
  box-shadow: inset 3px 0 var(--primary);
}
.market-location-table code {
  color: #6e61e9;
  font-size: 8px;
  font-weight: 800;
}
.market-location-table td > strong,
.market-location-table td > b,
.market-location-table td > small {
  display: block;
}
.market-location-table td > strong {
  color: #14233f;
  font-size: 10px;
}
.market-location-table td > b {
  color: var(--primary);
  font-size: 11px;
}
.market-location-table td > small {
  margin-top: 2px;
  color: #9aa4b4;
  font-size: 7px;
}
.market-region-badge,
.market-availability {
  display: inline-flex;
  padding: 4px 7px;
  border-radius: 7px;
  white-space: nowrap;
}
.market-region-badge {
  color: #6b7690;
  background: #f0f2f7;
}
.market-availability {
  color: #168d6b;
  background: #eafaf4;
}
.market-location-table td > button {
  padding: 5px 10px;
  color: var(--primary);
  background: #efedff;
  border: 0;
  border-radius: 7px;
  font-size: 8px;
  font-weight: 750;
  cursor: pointer;
}
.market-location-table tr.active td > button {
  color: #fff;
  background: var(--primary);
}
.segment-query {
  padding: 5px 8px;
  color: var(--primary);
  background: #efedff;
  border: 0;
  border-radius: 7px;
  font-size: 8px;
  font-weight: 750;
  cursor: pointer;
  white-space: nowrap;
}
.segment-query.error {
  color: #c24e5c;
  background: #fff0f2;
}
.segment-loading,
.segment-empty {
  color: #8b96a8;
  font-size: 8px;
  white-space: nowrap;
}
.segment-preview {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 3px;
  min-width: 118px;
}
.segment-preview code {
  padding: 3px 5px;
  color: #58667d;
  background: #f0f2f7;
  border-radius: 5px;
  font-size: 7px;
  white-space: nowrap;
}
.segment-preview small {
  color: var(--primary);
  font-size: 7px;
  font-weight: 800;
}
.market-table-empty {
  height: 140px;
  color: var(--muted);
  text-align: center;
}
.market-node-grid {
  max-height: 326px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  overflow: auto;
  padding: 2px;
}
.market-node {
  min-height: 90px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px;
  padding: 12px;
  background: #fff;
  border: 1px solid #dfe4ee;
  border-radius: 10px;
  text-align: left;
  cursor: pointer;
}
.market-node:hover,
.market-node.active {
  border-color: #7669fb;
  box-shadow: 0 0 0 1px #7669fb;
}
.node-code {
  color: #909bad;
  font-size: 7px;
}
.market-node > strong {
  grid-column: 1;
  font-size: 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.market-node > b {
  grid-column: 2;
  grid-row: 1/3;
  align-self: center;
  color: var(--primary);
  font-size: 14px;
}
.market-node > b small,
.market-node em {
  font-size: 7px;
}
.market-node em {
  grid-column: 1/-1;
  color: #919cab;
  font-style: normal;
}
.market-config {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 10px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.market-config label > span {
  display: block;
  margin-bottom: 7px;
  color: #68768b;
  font-size: 8px;
}
.market-config select,
.market-quantity {
  width: 100%;
  height: 39px;
  border: 1px solid #dce2ec;
  border-radius: 8px;
  background: #fff;
}
.market-config select {
  padding: 0 10px;
}
.market-quantity-discount {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-top: 12px;
  padding: 12px 14px;
  background: linear-gradient(135deg, #f5f3ff, #f5fbff);
  border: 1px solid #deddf8;
  border-radius: 10px;
}
.market-quantity-discount strong,
.market-quantity-discount small {
  display: block;
}
.market-quantity-discount strong {
  color: #4e43aa;
  font-size: 10px;
}
.market-quantity-discount small {
  margin-top: 3px;
  color: #768198;
  font-size: 8px;
}
.quantity-tier-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 5px;
}
.quantity-tier-list span {
  padding: 5px 7px;
  color: #7b8495;
  background: #fff;
  border: 1px solid #e1e5ed;
  border-radius: 7px;
  font-size: 7px;
}
.quantity-tier-list span.active {
  color: var(--primary);
  background: #eeecff;
  border-color: #bdb6ff;
}
.quantity-tier-list b {
  margin-left: 3px;
}
.protocol-pills {
  height: 39px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.protocol-pills b {
  padding: 8px;
  color: var(--primary);
  background: #efedff;
  border-radius: 7px;
  font-size: 8px;
}
.market-quantity {
  display: grid;
  grid-template-columns: 36px 1fr 36px;
  overflow: hidden;
}
.market-quantity button {
  border: 0;
  background: #f1efff;
  color: var(--primary);
  font-size: 16px;
}
.market-quantity input {
  width: 100%;
  border: 0;
  text-align: center;
}
.market-order {
  padding: 25px;
  background: #f7f8fc;
  border-left: 1px solid var(--line);
}
.order-eyebrow {
  color: var(--primary);
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 1.2px;
}
.market-order h3 {
  margin: 7px 0 18px;
}
.selected-node {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 13px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
}
.selected-node i {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, #7061fa, #4f41d3);
  border-radius: 10px;
  font-size: 9px;
  font-style: normal;
}
.selected-node strong,
.selected-node small {
  display: block;
}
.selected-node small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 8px;
}
.market-order dl {
  margin: 15px 0;
}
.market-order dl > div {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #e4e8ef;
  font-size: 9px;
}
.market-order dt {
  color: var(--muted);
}
.market-order dd {
  margin: 0;
  font-weight: 750;
}
.market-formula {
  padding: 10px;
  background: #efedff;
  border-radius: 8px;
}
.market-formula span,
.market-formula small {
  display: block;
}
.market-formula span {
  color: var(--primary);
  font-weight: 800;
}
.market-formula small {
  margin-top: 3px;
  color: #837eaa;
  font-size: 7px;
}
.market-total {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin: 18px 0;
}
.market-total span {
  color: var(--muted);
  font-size: 9px;
}
.market-total del {
  display: block;
}
.market-total strong {
  color: var(--primary);
  font-size: 27px;
}
.market-order > p {
  color: #929cad;
  text-align: center;
  font-size: 7px;
}
.traffic-tier-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 9px;
  margin-top: 20px;
}
.traffic-tier {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  padding: 17px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  text-align: left;
  cursor: pointer;
}
.traffic-tier:hover,
.traffic-tier.active {
  border-color: #7466fa;
  box-shadow: 0 0 0 1px #7466fa;
}
.traffic-tier > strong {
  margin: 16px 0;
  font-size: 24px;
}
.traffic-tier > strong sup {
  color: var(--primary);
  font-size: 10px;
}
.traffic-tier > strong small,
.traffic-tier > div,
.traffic-tier p {
  font-size: 8px;
}
.traffic-tier > div {
  display: flex;
  justify-content: space-between;
}
.traffic-tier > div em {
  color: var(--muted);
  font-style: normal;
}
.traffic-tier p {
  color: var(--muted);
}
.traffic-tier > i {
  margin-top: auto;
  padding: 8px;
  color: var(--primary);
  background: #efedff;
  border-radius: 7px;
  text-align: center;
  font-size: 8px;
  font-style: normal;
}
.traffic-tier.active > i {
  color: #fff;
  background: var(--primary);
}
.dynamic-features {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 18px;
}
.dynamic-features span {
  padding: 7px 9px;
  color: #557063;
  background: #eff9f5;
  border-radius: 8px;
  font-size: 8px;
}
.market-empty {
  grid-column: 1/-1;
}
.market-empty a {
  color: var(--primary);
}
@media (max-width: 1050px) {
  .market-product-tabs {
    grid-template-columns: 1fr 1fr;
  }
  .market-workspace {
    grid-template-columns: 1fr;
  }
  .market-order {
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  .market-node-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 650px) {
  .market-section {
    padding: 78px 18px;
  }
  .market-product-tabs {
    grid-template-columns: 1fr;
  }
  .market-product-tabs button {
    min-height: 72px;
  }
  .market-node-grid {
    grid-template-columns: 1fr 1fr;
  }
  .market-config {
    grid-template-columns: 1fr;
  }
  .market-quantity-discount {
    align-items: flex-start;
    flex-direction: column;
  }
  .quantity-tier-list {
    justify-content: flex-start;
  }
  .traffic-tier-grid {
    grid-template-columns: 1fr 1fr;
  }
  .market-main,
  .market-order {
    padding: 18px;
  }
  .product-page-hero {
    padding: 54px 18px 32px;
  }
  .product-page-notes {
    flex-wrap: wrap;
    gap: 10px 18px;
  }
  .product-market {
    padding-top: 14px;
    padding-bottom: 58px;
  }
}
.section {
  max-width: 1240px;
  margin: auto;
  padding: 112px 0;
}
.section-heading {
  text-align: center;
}
.section-heading > span,
.pricing-copy > span,
.final-cta span {
  color: var(--primary);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 1.8px;
}
.section-heading h2,
.pricing-copy h2 {
  margin: 12px 0;
  font-size: 38px;
  letter-spacing: -1px;
}
.section-heading p {
  margin: 0 auto;
  max-width: 600px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 44px;
}
.product-card {
  position: relative;
  padding: 26px 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 17px;
  transition: 0.2s;
}
.product-card:hover {
  transform: translateY(-5px);
  border-color: #c9c4ff;
  box-shadow: 0 18px 42px rgba(41, 53, 82, 0.1);
}
.product-card.featured {
  background: linear-gradient(180deg, #fbfaff, #fff);
  border-color: #bbb4ff;
}
.product-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, #7163fb, #5847e4);
  border-radius: 13px;
  font-size: 19px;
}
.product-icon.blue {
  background: linear-gradient(135deg, #2784ef, #24b7dc);
}
.product-icon.green {
  background: linear-gradient(135deg, #17ae7b, #35d0a1);
}
.product-icon.orange {
  background: linear-gradient(135deg, #ef8b36, #f7b347);
}
.tag {
  position: absolute;
  right: 20px;
  top: 25px;
  padding: 5px 8px;
  color: #6c5de9;
  background: #f0eeff;
  border-radius: 8px;
  font-size: 8px;
}
.product-card h3 {
  margin: 22px 0 10px;
  font-size: 20px;
}
.product-card p {
  min-height: 68px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.75;
}
.product-card ul {
  display: grid;
  gap: 9px;
  margin: 20px 0;
  padding: 17px 0;
  list-style: none;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: #526078;
  font-size: 11px;
}
.product-card li:before {
  content: "✓";
  margin-right: 8px;
  color: var(--green);
}
.product-card > a {
  color: var(--primary);
  font-size: 11px;
  font-weight: 800;
}
.pricing-section {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 100px;
  align-items: center;
  padding: 100px max(28px, calc((100vw - 1120px) / 2));
  background: var(--surface);
}
.pricing-copy p {
  max-width: 600px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.85;
}
.pricing-points {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}
.pricing-points > div {
  display: flex;
  align-items: center;
  gap: 14px;
}
.pricing-points b {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: var(--primary);
  background: #ece9ff;
  border-radius: 11px;
  font-size: 10px;
}
.pricing-points strong,
.pricing-points small {
  display: block;
}
.pricing-points strong {
  font-size: 13px;
}
.pricing-points small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 10px;
}
.quote-demo {
  padding: 27px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 19px;
  box-shadow: 0 22px 50px rgba(39, 52, 82, 0.1);
}
.quote-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 17px;
  border-bottom: 1px solid var(--line);
}
.quote-head span {
  font-weight: 800;
}
.quote-head small {
  color: var(--primary);
  background: #efedff;
  padding: 5px 8px;
  border-radius: 7px;
}
.quote-demo label {
  display: flex;
  justify-content: space-between;
  padding: 13px 0;
  color: var(--muted);
  border-bottom: 1px solid #edf0f5;
  font-size: 11px;
}
.quote-demo label strong {
  color: var(--ink);
}
.quote-demo label em {
  margin-left: 5px;
  color: var(--primary);
  font-style: normal;
}
.quote-formula {
  display: flex;
  justify-content: space-between;
  padding: 14px;
  margin: 16px 0;
  background: #f5f3ff;
  border-radius: 10px;
}
.quote-formula span {
  color: var(--primary);
  font-weight: 800;
}
.quote-formula small {
  color: var(--muted);
}
.quote-total {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin: 20px 0;
}
.quote-total span {
  color: var(--muted);
}
.quote-total strong {
  color: var(--primary);
  font-size: 31px;
}
.primary.full {
  width: 100%;
}
.advantage-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 42px;
}
.advantage-grid article {
  padding: 25px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 15px;
}
.advantage-grid i {
  color: #aaa2ff;
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
}
.advantage-grid h3 {
  margin: 17px 0 9px;
  font-size: 16px;
}
.advantage-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.75;
}
.steps-section {
  padding: 88px max(28px, calc((100vw - 1120px) / 2));
  color: #fff;
  background: linear-gradient(135deg, #172440, #212b51 62%, #352d75);
}
.section-heading.light h2 {
  color: #fff;
}
.section-heading.light > span {
  color: #66d4e3;
}
.steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  margin-top: 43px;
}
.steps div {
  padding: 22px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
}
.steps b,
.steps strong,
.steps span {
  display: block;
}
.steps b {
  color: #6fd6e4;
  font-size: 10px;
}
.steps strong {
  margin-top: 14px;
  font-size: 15px;
}
.steps span {
  margin-top: 6px;
  color: #aeb9ce;
  font-size: 10px;
}
.steps > i {
  color: #7c88a2;
  font-style: normal;
}
.final-cta {
  max-width: 1240px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 100px auto;
  padding: 48px 54px;
  color: #fff;
  background:
    radial-gradient(
      circle at 80% 10%,
      rgba(69, 211, 224, 0.23),
      transparent 27%
    ),
    linear-gradient(135deg, #6557f5, #4537c9);
  border-radius: 22px;
}
.final-cta span {
  color: #d3d0ff;
}
.final-cta h2 {
  margin: 11px 0 7px;
  font-size: 32px;
}
.final-cta p {
  margin: 0;
  color: #dad8ff;
}
.light-button {
  color: var(--primary);
  background: #fff;
  box-shadow: none;
}
footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 42px max(28px, calc((100vw - 1240px) / 2));
  background: #f7f8fb;
  border-top: 1px solid var(--line);
}
footer p {
  color: var(--muted);
  font-size: 11px;
}
footer > div {
  display: flex;
  gap: 20px;
  color: #5d6a7e;
  font-size: 11px;
}
footer small {
  grid-column: 1/-1;
  color: #9aa3b1;
  font-size: 9px;
}
.footer-brand {
  font-size: 17px;
}
.footer-brand .brand-mark {
  width: 20px;
  height: 20px;
}
.footer-brand .brand-mark:after {
  inset: 5px;
}
@media (max-width: 1000px) {
  .site-nav {
    display: none;
    position: absolute;
    left: 18px;
    right: 18px;
    top: 68px;
    flex-direction: column;
    gap: 0;
    padding: 12px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    box-shadow: 0 18px 35px rgba(25, 38, 68, 0.14);
  }
  .site-nav.open {
    display: flex;
  }
  .site-nav a {
    padding: 12px;
  }
  .mobile-menu {
    display: block;
    margin-left: auto;
  }
  .header-actions {
    margin-left: 0;
  }
  .hero {
    grid-template-columns: 1fr;
    padding-top: 60px;
  }
  .network-card {
    max-width: 610px;
  }
  .product-grid,
  .advantage-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .section {
    padding-left: 28px;
    padding-right: 28px;
  }
  .pricing-section {
    grid-template-columns: 1fr;
    gap: 45px;
  }
  .proof-strip {
    margin: -25px 28px 0;
  }
  .steps {
    grid-template-columns: 1fr 1fr;
  }
  .steps > i {
    display: none;
  }
  .final-cta {
    margin-left: 28px;
    margin-right: 28px;
  }
  footer {
    grid-template-columns: 1fr auto;
  }
}
@media (max-width: 620px) {
  .site-header {
    height: 66px;
    padding: 0 18px;
  }
  .header-actions .text-link {
    display: none;
  }
  .primary.small {
    min-height: 38px;
    padding: 0 13px;
  }
  .hero {
    padding: 48px 20px 70px;
  }
  .hero h1 {
    font-size: 40px;
    letter-spacing: -1.5px;
  }
  .hero-copy > p {
    font-size: 14px;
  }
  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }
  .hero-notes {
    gap: 10px;
  }
  .network-card {
    padding: 18px;
  }
  .proof-strip {
    grid-template-columns: 1fr 1fr;
    margin: -24px 18px 0;
  }
  .proof-strip div:nth-child(2) {
    border-right: 0;
  }
  .proof-strip div {
    padding: 18px;
  }
  .section {
    padding: 78px 18px;
  }
  .section-heading h2,
  .pricing-copy h2 {
    font-size: 30px;
  }
  .product-grid,
  .advantage-grid {
    grid-template-columns: 1fr;
  }
  .pricing-section {
    padding: 75px 18px;
  }
  .steps-section {
    padding: 70px 18px;
  }
  .steps {
    grid-template-columns: 1fr;
  }
  .final-cta {
    align-items: flex-start;
    flex-direction: column;
    gap: 25px;
    margin: 70px 18px;
    padding: 34px 25px;
  }
  .final-cta h2 {
    font-size: 27px;
  }
  footer {
    grid-template-columns: 1fr;
    padding: 35px 20px;
  }
  footer > div {
    flex-wrap: wrap;
  }
  .footer-brand,
  footer p {
    grid-column: 1/-1;
  }
}

/* IPIPProxy home refresh — inspired by high-conversion proxy storefronts */
.home-page {
  --home-blue: #1262ff;
  --home-blue-dark: #084bd6;
  --home-navy: #0b1426;
  --home-ink: #101828;
  --home-muted: #667085;
  --home-line: #e5eaf2;
  --home-soft: #f5f8ff;
  color: var(--home-ink);
  background: #fff;
}
.home-page .home-announcement {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  padding: 7px 20px;
  color: #dbe7ff;
  background: #0a1427;
  font-size: 11px;
}
.home-announcement span,
.home-announcement a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.home-announcement span i {
  width: 7px;
  height: 7px;
  background: #40d99b;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(64, 217, 155, 0.12);
}
.home-announcement a {
  color: #fff;
  font-weight: 750;
}
.home-page .home-header {
  height: 74px;
  padding: 0 max(28px, calc((100vw - 1240px) / 2));
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(229, 234, 242, 0.9);
  box-shadow: 0 8px 30px rgba(16, 24, 40, 0.03);
}
.home-page .brand {
  color: var(--home-navy);
  font-size: 22px;
  letter-spacing: -0.5px;
}
.home-page .brand-mark {
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, #1769ff, #03a4ff);
  border-radius: 50% 50% 50% 12px;
  box-shadow: 0 8px 22px rgba(18, 98, 255, 0.25);
  transform: rotate(-9deg);
}
.home-page .brand-mark::after {
  inset: 8px;
  border-radius: 50%;
}
.home-page .site-nav {
  gap: 34px;
}
.home-page .site-nav a,
.home-page .text-link {
  color: #475467;
  font-size: 13px;
  font-weight: 650;
}
.home-page .site-nav a:hover,
.home-page .text-link:hover {
  color: var(--home-blue);
}
.home-page .primary {
  background: linear-gradient(135deg, var(--home-blue), var(--home-blue-dark));
  border: 1px solid transparent;
  box-shadow: 0 12px 28px rgba(18, 98, 255, 0.22);
}
.home-page .primary:hover {
  box-shadow: 0 16px 34px rgba(18, 98, 255, 0.3);
}
.home-page .primary.small {
  min-height: 40px;
  border-radius: 9px;
}
.home-hero {
  min-height: 720px;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(440px, 0.95fr);
  align-items: center;
  gap: 82px;
  padding: 90px max(28px, calc((100vw - 1240px) / 2)) 110px;
  background:
    radial-gradient(
      circle at 83% 20%,
      rgba(18, 98, 255, 0.11),
      transparent 30%
    ),
    radial-gradient(circle at 5% 90%, rgba(3, 164, 255, 0.08), transparent 29%),
    linear-gradient(180deg, #fff, #f7faff);
}
.hero-grid-glow {
  position: absolute;
  inset: 0;
  opacity: 0.45;
  background-image:
    linear-gradient(rgba(18, 98, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 98, 255, 0.04) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(
    to right,
    transparent,
    #000 35%,
    #000 75%,
    transparent
  );
  pointer-events: none;
}
.home-hero-copy,
.hero-network {
  position: relative;
  z-index: 1;
}
.rating-row {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #344054;
  font-size: 12px;
}
.rating-stars {
  color: #ff9f2f;
  font-size: 16px;
  letter-spacing: 2px;
}
.rating-row strong {
  margin-left: 5px;
  font-size: 13px;
}
.rating-row small {
  color: #7a8597;
}
.home-hero h1 {
  max-width: 720px;
  margin: 27px 0 22px;
  color: #0b1220;
  font-size: clamp(48px, 5.1vw, 72px);
  line-height: 1.08;
  letter-spacing: -3.2px;
}
.home-hero h1 em {
  color: var(--home-blue);
  font-style: normal;
}
.home-hero-copy > p {
  max-width: 620px;
  margin: 0;
  color: var(--home-muted);
  font-size: 17px;
  line-height: 1.85;
}
.home-page .hero-actions {
  margin-top: 34px;
}
.home-page .hero-buy {
  min-width: 190px;
}
.home-page .secondary {
  min-width: 150px;
  color: #344054;
  background: #fff;
  border-color: #dce3ee;
  box-shadow: 0 8px 20px rgba(16, 24, 40, 0.05);
}
.hero-guarantees {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 25px;
  color: #667085;
  font-size: 11px;
}
.hero-network {
  padding: 25px;
  color: #fff;
  background:
    radial-gradient(
      circle at 60% 40%,
      rgba(34, 127, 255, 0.32),
      transparent 39%
    ),
    linear-gradient(145deg, #0c172b, #101e38 62%, #0a1427);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  box-shadow: 0 35px 80px rgba(11, 20, 38, 0.24);
}
.network-panel-head,
.network-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.network-panel-head span,
.network-bottom span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.network-panel-head span {
  color: #a9b9d3;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.8px;
}
.network-panel-head span i,
.network-bottom span i {
  width: 7px;
  height: 7px;
  background: #41dda1;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(65, 221, 161, 0.12);
}
.network-panel-head > b {
  padding: 6px 9px;
  color: #65e1b0;
  background: rgba(65, 221, 161, 0.1);
  border: 1px solid rgba(65, 221, 161, 0.16);
  border-radius: 8px;
  font-size: 9px;
}
.network-map {
  height: 300px;
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  margin: 19px 0;
  background:
    radial-gradient(circle, rgba(29, 116, 255, 0.2), transparent 48%),
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size:
    auto,
    32px 32px,
    32px 32px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
}
.map-ring {
  position: absolute;
  border: 1px solid rgba(82, 149, 255, 0.24);
  border-radius: 50%;
}
.ring-a {
  width: 250px;
  height: 250px;
}
.ring-b {
  width: 330px;
  height: 132px;
  border-style: dashed;
  transform: rotate(-13deg);
}
.map-core {
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  z-index: 2;
  background: linear-gradient(145deg, #2173ff, #0aa7ff);
  border: 8px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  box-shadow: 0 18px 40px rgba(18, 98, 255, 0.38);
}
.map-core span,
.map-core small {
  grid-area: 1 / 1;
}
.map-core span {
  margin-top: -11px;
  font-size: 30px;
  font-weight: 900;
}
.map-core small {
  margin-top: 38px;
  color: #d7e5ff;
  font-size: 7px;
  letter-spacing: 1.5px;
}
.map-point {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 7px 9px;
  background: rgba(14, 31, 59, 0.92);
  border: 1px solid rgba(96, 157, 255, 0.28);
  border-radius: 9px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.2);
}
.map-point i {
  color: #8eb8ff;
  font-size: 8px;
  font-style: normal;
  font-weight: 800;
}
.map-point b {
  font-size: 9px;
}
.point-us {
  left: 7%;
  top: 26%;
}
.point-jp {
  right: 8%;
  top: 23%;
}
.point-gb {
  left: 13%;
  bottom: 18%;
}
.point-sg {
  right: 11%;
  bottom: 20%;
}
.route {
  position: absolute;
  width: 46%;
  height: 1px;
  opacity: 0.55;
  background: linear-gradient(90deg, transparent, #4c9aff, transparent);
}
.route-one {
  transform: rotate(24deg);
}
.route-two {
  transform: rotate(-26deg);
}
.network-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.network-metrics div {
  padding: 14px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
}
.network-metrics small,
.network-metrics strong {
  display: block;
}
.network-metrics small {
  color: #8999b4;
  font-size: 8px;
}
.network-metrics strong {
  margin-top: 5px;
  font-size: 21px;
}
.network-bottom {
  margin-top: 17px;
  color: #b8c5d9;
  font-size: 9px;
}
.network-bottom small {
  color: #71829e;
}
.usecase-strip {
  max-width: 1240px;
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
  margin: -40px auto 0;
  position: relative;
  z-index: 3;
  padding: 20px 30px;
  background: #fff;
  border: 1px solid var(--home-line);
  border-radius: 16px;
  box-shadow: 0 18px 48px rgba(16, 24, 40, 0.09);
}
.usecase-strip > span {
  color: #98a2b3;
  font-size: 10px;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}
.usecase-strip strong {
  color: #344054;
  font-size: 12px;
}
.usecase-strip i {
  width: 4px;
  height: 4px;
  background: #cbd3df;
  border-radius: 50%;
}
.home-section {
  max-width: 1240px;
  margin: auto;
  padding: 116px 0;
}
.home-section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
}
.home-section-heading.centered {
  justify-content: center;
  text-align: center;
}
.home-section-heading > div > span,
.start-copy > span,
.faq-heading > span,
.home-final-cta > div > span {
  color: var(--home-blue);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 2px;
}
.home-section-heading h2,
.start-copy h2,
.faq-heading h2 {
  margin: 12px 0 10px;
  color: #0b1426;
  font-size: 42px;
  line-height: 1.18;
  letter-spacing: -1.5px;
}
.home-section-heading p,
.start-copy > p,
.faq-heading > p {
  margin: 0;
  color: var(--home-muted);
  font-size: 14px;
  line-height: 1.8;
}
.home-section-heading > a,
.feature-copy > a,
.faq-heading > a {
  color: var(--home-blue);
  font-size: 12px;
  font-weight: 800;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 42px;
}
.service-card {
  position: relative;
  padding: 25px;
  background: #fff;
  border: 1px solid var(--home-line);
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(16, 24, 40, 0.04);
  transition: 0.22s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: #b7ccff;
  box-shadow: 0 22px 44px rgba(18, 98, 255, 0.1);
}
.service-card.service-featured {
  background: linear-gradient(180deg, #f6f9ff, #fff 45%);
  border-color: #8db3ff;
  box-shadow: 0 18px 42px rgba(18, 98, 255, 0.1);
}
.service-card.service-featured::before {
  position: absolute;
  top: -1px;
  left: 22px;
  right: 22px;
  height: 3px;
  background: linear-gradient(90deg, #1262ff, #08a5ff);
  border-radius: 0 0 4px 4px;
  content: "";
}
.service-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.service-top > span {
  padding: 5px 8px;
  color: #4d69a0;
  background: #edf3ff;
  border-radius: 7px;
  font-size: 8px;
  font-weight: 750;
}
.service-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, #176aff, #0c9eff);
  border-radius: 13px;
  font-size: 18px;
  font-style: normal;
  box-shadow: 0 10px 22px rgba(18, 98, 255, 0.2);
}
.service-icon.blue {
  background: linear-gradient(135deg, #2587ea, #35b5df);
}
.service-icon.green {
  background: linear-gradient(135deg, #12a876, #32c995);
}
.service-icon.orange {
  background: linear-gradient(135deg, #f18b32, #ffb446);
}
.service-card h3 {
  margin: 21px 0 9px;
  font-size: 20px;
}
.service-card > p {
  min-height: 67px;
  margin: 0;
  color: var(--home-muted);
  font-size: 11px;
  line-height: 1.75;
}
.service-price {
  margin-top: 18px;
  padding: 17px 0;
  border-top: 1px solid #edf0f5;
  border-bottom: 1px solid #edf0f5;
}
.service-price small {
  display: block;
  margin-bottom: 5px;
  color: #98a2b3;
  font-size: 8px;
}
.service-price strong {
  color: #0b1426;
  font-size: 29px;
  letter-spacing: -1px;
}
.service-price em {
  margin-left: 4px;
  color: #667085;
  font-size: 10px;
  font-style: normal;
}
.service-card ul {
  display: grid;
  gap: 9px;
  margin: 18px 0;
  padding: 0;
  color: #475467;
  font-size: 10px;
  list-style: none;
}
.service-card li::before {
  margin-right: 8px;
  color: #12b981;
  content: "✓";
}
.service-card > a {
  color: var(--home-blue);
  font-size: 11px;
  font-weight: 800;
}
.locations-section {
  padding: 105px max(28px, calc((100vw - 1240px) / 2));
  background: var(--home-soft);
  border-top: 1px solid #edf1f7;
  border-bottom: 1px solid #edf1f7;
}
.location-showcase {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 13px;
  margin-top: 40px;
}
.location-showcase a {
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: center;
  column-gap: 13px;
  padding: 18px;
  background: #fff;
  border: 1px solid #e1e7f0;
  border-radius: 14px;
  box-shadow: 0 7px 20px rgba(16, 24, 40, 0.035);
  transition: 0.2s;
}
.location-showcase a:hover {
  transform: translateY(-3px);
  border-color: #a9c5ff;
  box-shadow: 0 14px 28px rgba(18, 98, 255, 0.09);
}
.location-showcase i {
  width: 44px;
  height: 44px;
  display: grid;
  grid-row: 1 / 3;
  place-items: center;
  background: #f5f7fb;
  border-radius: 50%;
  font-size: 22px;
  font-style: normal;
}
.location-showcase strong {
  align-self: end;
  font-size: 13px;
}
.location-showcase small {
  align-self: start;
  color: #98a2b3;
  font-size: 8px;
}
.location-showcase .location-all {
  color: #fff;
  background: linear-gradient(135deg, #1262ff, #084bd6);
  border-color: transparent;
}
.location-showcase .location-all i {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
}
.location-showcase .location-all small {
  color: #cfe0ff;
}
.feature-section {
  padding-top: 112px;
  padding-bottom: 112px;
}
.feature-bento {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-top: 42px;
}
.feature-bento > article {
  min-height: 180px;
  padding: 27px;
  background: #fff;
  border: 1px solid var(--home-line);
  border-radius: 18px;
}
.feature-bento > article:not(.feature-large) {
  display: grid;
  grid-template-columns: 44px 1fr;
  align-content: center;
  column-gap: 15px;
}
.feature-bento > article:not(.feature-large) h3,
.feature-bento > article:not(.feature-large) p {
  grid-column: 2;
}
.feature-large {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  min-height: 300px !important;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(
      circle at 80% 25%,
      rgba(38, 130, 255, 0.35),
      transparent 35%
    ),
    linear-gradient(135deg, #0c172a, #112441) !important;
  border-color: transparent !important;
}
.feature-copy > span {
  color: #7ca9f8;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 1.7px;
}
.feature-copy h3 {
  margin: 14px 0 10px;
  font-size: 30px;
}
.feature-copy p {
  max-width: 500px;
  margin: 0 0 22px;
  color: #aebcd1;
  font-size: 12px;
  line-height: 1.8;
}
.mini-dashboard {
  padding: 22px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.18);
}
.mini-dashboard > div:first-child {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
}
.mini-dashboard span {
  color: #aab8cd;
  font-size: 9px;
}
.mini-dashboard strong {
  grid-column: 1;
  margin-top: 6px;
  font-size: 30px;
}
.mini-dashboard > div:first-child i {
  grid-column: 2;
  grid-row: 1 / 3;
  align-self: center;
  padding: 5px 7px;
  color: #5fe0ae;
  background: rgba(54, 213, 153, 0.1);
  border-radius: 6px;
  font-size: 8px;
  font-style: normal;
}
.mini-chart {
  height: 92px;
  display: flex;
  align-items: end;
  gap: 9px;
  margin: 20px 0 15px;
  padding: 0 5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.mini-chart b {
  flex: 1;
  height: 34%;
  background: linear-gradient(180deg, #2d7eff, #1553c8);
  border-radius: 5px 5px 0 0;
}
.mini-chart b:nth-child(2) {
  height: 52%;
}
.mini-chart b:nth-child(3) {
  height: 44%;
}
.mini-chart b:nth-child(4) {
  height: 72%;
}
.mini-chart b:nth-child(5) {
  height: 61%;
}
.mini-chart b:nth-child(6) {
  height: 83%;
}
.mini-chart b:nth-child(7) {
  height: 95%;
}
.mini-dashboard > small {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #aab8cd;
  font-size: 8px;
}
.mini-dashboard > small i {
  width: 6px;
  height: 6px;
  background: #45d99f;
  border-radius: 50%;
}
.feature-symbol {
  width: 44px;
  height: 44px;
  display: grid;
  grid-row: 1 / 3;
  place-items: center;
  color: var(--home-blue);
  background: #edf3ff;
  border-radius: 13px;
  font-size: 18px;
  font-style: normal;
}
.feature-bento h3 {
  margin: 0 0 8px;
  font-size: 17px;
}
.feature-bento > article:not(.feature-large) p {
  margin: 0;
  color: var(--home-muted);
  font-size: 10px;
  line-height: 1.7;
}
.start-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 75px;
  padding: 105px max(28px, calc((100vw - 1240px) / 2));
  background: #f6f8fc;
}
.start-copy {
  align-self: center;
}
.start-copy .primary {
  margin-top: 25px;
}
.start-steps {
  display: grid;
  gap: 12px;
}
.start-steps article {
  display: grid;
  grid-template-columns: 48px 70px 1fr;
  align-items: center;
  column-gap: 13px;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--home-line);
  border-radius: 14px;
}
.start-steps article > b {
  width: 48px;
  height: 48px;
  display: grid;
  grid-row: 1 / 3;
  place-items: center;
  color: var(--home-blue);
  background: #edf3ff;
  border-radius: 12px;
  font-size: 11px;
}
.start-steps article > i {
  grid-row: 1 / 3;
  color: #98a2b3;
  font-size: 9px;
  font-style: normal;
  font-weight: 750;
}
.start-steps article strong {
  align-self: end;
  font-size: 14px;
}
.start-steps article p {
  align-self: start;
  margin: 4px 0 0;
  color: var(--home-muted);
  font-size: 9px;
}
.faq-section {
  max-width: 1140px;
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 80px;
  margin: auto;
  padding: 110px 0;
}
.faq-heading > a {
  display: inline-block;
  margin-top: 22px;
}
.faq-list details {
  border-bottom: 1px solid var(--home-line);
}
.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 19px 0;
  color: #1d2939;
  cursor: pointer;
  font-size: 13px;
  font-weight: 750;
  list-style: none;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary i {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  color: var(--home-blue);
  background: #edf3ff;
  border-radius: 50%;
  font-size: 13px;
  font-style: normal;
  transition: 0.2s;
}
.faq-list details[open] summary i {
  transform: rotate(45deg);
}
.faq-list details p {
  margin: -5px 45px 20px 0;
  color: var(--home-muted);
  font-size: 11px;
  line-height: 1.75;
}
.home-final-cta {
  max-width: 1240px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin: 0 auto 110px;
  padding: 50px 55px;
  color: #fff;
  background:
    radial-gradient(
      circle at 78% 10%,
      rgba(56, 161, 255, 0.36),
      transparent 31%
    ),
    linear-gradient(135deg, #0c1830, #102f62);
  border-radius: 22px;
  box-shadow: 0 24px 54px rgba(11, 20, 38, 0.18);
}
.home-final-cta > div > span {
  color: #7fb0ff;
}
.home-final-cta h2 {
  margin: 12px 0 8px;
  font-size: 32px;
}
.home-final-cta p {
  margin: 0;
  color: #b4c3d9;
  font-size: 12px;
}
.home-final-cta > div:last-child {
  display: grid;
  justify-items: center;
  gap: 12px;
}
.home-final-cta .light-button {
  min-width: 190px;
  color: var(--home-blue);
  background: #fff;
  box-shadow: none;
}
.cta-text {
  color: #b9c8dc;
  font-size: 9px;
}
.home-page .home-footer {
  display: block;
  padding: 65px max(28px, calc((100vw - 1240px) / 2)) 28px;
  background: #0a1427;
  border: 0;
}
.footer-main {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 60px;
}
.footer-main > div:not(.footer-about) {
  display: grid;
  align-content: start;
  gap: 12px;
}
.footer-main > div > strong {
  margin-bottom: 7px;
  color: #fff;
  font-size: 11px;
}
.footer-main > div > a {
  color: #8e9cb2;
  font-size: 9px;
}
.footer-main > div > a:hover {
  color: #fff;
}
.footer-about .brand {
  color: #fff;
}
.footer-about p {
  max-width: 280px;
  margin: 18px 0;
  color: #8e9cb2;
  font-size: 10px;
  line-height: 1.7;
}
.footer-about > span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #93a3ba;
  font-size: 8px;
}
.footer-about > span i {
  width: 6px;
  height: 6px;
  background: #41dda1;
  border-radius: 50%;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 48px;
  padding-top: 22px;
  color: #66758b;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 8px;
}

@media (max-width: 1050px) {
  .home-hero {
    grid-template-columns: 1fr;
    gap: 55px;
    padding-top: 70px;
  }
  .home-hero-copy {
    text-align: center;
  }
  .rating-row,
  .home-page .hero-actions,
  .hero-guarantees {
    justify-content: center;
  }
  .home-hero-copy > p {
    margin: auto;
  }
  .hero-network {
    width: min(650px, 100%);
    margin: auto;
  }
  .usecase-strip {
    margin-left: 28px;
    margin-right: 28px;
  }
  .home-section {
    padding-left: 28px;
    padding-right: 28px;
  }
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .location-showcase {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .start-section {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .faq-section {
    grid-template-columns: 1fr;
    gap: 35px;
    padding-left: 28px;
    padding-right: 28px;
  }
  .home-final-cta {
    margin-left: 28px;
    margin-right: 28px;
  }
}

@media (max-width: 700px) {
  .home-page .home-announcement {
    justify-content: space-between;
    gap: 12px;
    font-size: 8px;
  }
  .home-page .home-header {
    height: 66px;
    padding: 0 18px;
  }
  .home-page .site-nav {
    top: 64px;
  }
  .home-page .header-actions .text-link {
    display: none;
  }
  .home-page .primary.small {
    font-size: 10px;
  }
  .home-hero {
    min-height: 0;
    gap: 42px;
    padding: 58px 18px 82px;
  }
  .home-hero h1 {
    margin-top: 22px;
    font-size: 42px;
    letter-spacing: -2px;
  }
  .home-hero-copy > p {
    font-size: 14px;
  }
  .home-page .hero-actions {
    flex-direction: column;
  }
  .hero-guarantees {
    gap: 9px 14px;
  }
  .hero-network {
    padding: 17px;
    border-radius: 20px;
  }
  .network-map {
    height: 235px;
  }
  .ring-a {
    width: 190px;
    height: 190px;
  }
  .ring-b {
    width: 245px;
  }
  .map-point {
    padding: 5px 7px;
  }
  .network-metrics div {
    padding: 11px;
  }
  .network-metrics strong {
    font-size: 18px;
  }
  .usecase-strip {
    justify-content: flex-start;
    gap: 13px;
    margin: -35px 18px 0;
    padding: 18px;
  }
  .usecase-strip > span {
    width: 100%;
  }
  .usecase-strip i {
    display: none;
  }
  .home-section {
    padding: 82px 18px;
  }
  .home-section-heading {
    align-items: flex-start;
    flex-direction: column;
  }
  .home-section-heading.centered {
    align-items: center;
  }
  .home-section-heading h2,
  .start-copy h2,
  .faq-heading h2 {
    font-size: 32px;
  }
  .service-grid {
    grid-template-columns: 1fr;
  }
  .service-card > p {
    min-height: 0;
  }
  .locations-section {
    padding: 80px 18px;
  }
  .location-showcase {
    grid-template-columns: 1fr 1fr;
    gap: 9px;
  }
  .location-showcase a {
    grid-template-columns: 36px 1fr;
    padding: 13px;
    column-gap: 9px;
  }
  .location-showcase i {
    width: 36px;
    height: 36px;
    font-size: 18px;
  }
  .feature-bento {
    grid-template-columns: 1fr;
  }
  .feature-large {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .feature-bento > article:not(.feature-large) {
    min-height: 150px;
  }
  .start-section {
    padding: 80px 18px;
  }
  .start-steps article {
    grid-template-columns: 42px 1fr;
  }
  .start-steps article > b {
    width: 42px;
    height: 42px;
  }
  .start-steps article > i {
    display: none;
  }
  .start-steps article strong,
  .start-steps article p {
    grid-column: 2;
  }
  .faq-section {
    padding: 80px 18px;
  }
  .home-final-cta {
    align-items: flex-start;
    flex-direction: column;
    margin: 0 18px 80px;
    padding: 34px 25px;
  }
  .home-final-cta h2 {
    font-size: 28px;
  }
  .home-final-cta > div:last-child {
    width: 100%;
    justify-items: stretch;
  }
  .home-page .home-footer {
    padding: 50px 20px 24px;
  }
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 35px 24px;
  }
  .footer-about {
    grid-column: 1 / -1;
  }
  .footer-bottom {
    gap: 15px;
    flex-direction: column;
  }
}
