/* 基础变量与全局样式 */
:root {
  --bg: #080b10;
  --panel: #0e131c;
  --line: #202733;
  --text: #f3f5fa;
  --muted: #939eaf;
  --blue: #669fff;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 14px;
  line-height: 1.7;
}

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

button {
  font: inherit;
  cursor: pointer;
}

a, button {
  -webkit-tap-highlight-color: transparent;
}

a:focus-visible, button:focus-visible {
  outline: 2px solid #91bcff;
  outline-offset: 5px;
}

::selection {
  background: #285ca0;
  color: white;
}

.container {
  width: min(1160px, calc(100% - 80px));
  margin: auto;
}

/* 顶部导航 */
.header {
  height: 88px;
  border-bottom: 1px solid #ffffff09;
  background: #080b10ee;
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 21px;
  font-weight: 750;
  letter-spacing: -.7px;
  white-space: nowrap;
}

.brand-name {
  font-weight: inherit;
  color: inherit;
}

.brand-logo {
  display: block;
  width: 36px;
  height: 36px;
  object-fit: contain;
  flex-shrink: 0;
}

.header nav {
  display: flex;
  align-items: center;
  gap: 31px;
}

.header nav>a {
  font-size: 13px;
  color: #aeb6c3;
  transition: color .2s;
}

.header nav>a:hover, .header nav>a.active {
  color: #fff;
}

.nav-divider {
  height: 17px;
  width: 1px;
  background: var(--line);
  margin: 0 3px;
}

.header nav>a.nav-register {
  border: 1px solid #364255;
  border-radius: 7px;
  color: #e2eaff;
  padding: 8px 19px;
}

.menu-toggle {
  display: none;
}

.skip {
  position: fixed;
  top: -100px;
  background: #3578d8;
  padding: 12px;
  z-index: 40;
}

.skip:focus {
  top: 0;
}

/* 首页首屏与网络视觉 */
.hero {
  min-height: 610px;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  align-items: center;
  position: relative;
  padding-top: 34px;
  padding-bottom: 40px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  letter-spacing: 2px;
  font-size: 11px;
  font-weight: 550;
  color: #7da6df;
}

.pulse {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 100%;
  background: #80afff;
  box-shadow: 0 0 12px #408cff;
  flex-shrink: 0;
}

.hero h1 {
  font-size: clamp(38px, 4.1vw, 58px);
  letter-spacing: -2px;
  line-height: 1.35;
  font-weight: 650;
  margin: 25px 0 22px;
}

.gradient-text {
  background: linear-gradient(110deg, #85b5ff, #4f7dd1);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.hero-copy>p {
  font-size: 14px;
  line-height: 2;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 29px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 35px;
  padding: 12px 24px;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 550;
  border: 1px solid transparent;
  transition: background .2s, transform .2s;
}

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

.primary {
  background: linear-gradient(115deg, #438aef, #3069cc);
  border-color: #5796ed;
  color: #fff;
  box-shadow: 0 4px 20px #2679ef16;
}

.primary:hover {
  background: #4e8deb;
}

.secondary {
  background: #141d2b;
  border-color: #2c3a50;
  color: #dde7fa;
}

.secondary:hover {
  background: #1d2b40;
}

.text-link {
  font-size: 13px;
  color: #b7c7dd;
}

.text-link span {
  margin-left: 17px;
}

.text-link:hover {
  color: #fff;
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 15px;
  color: #727e90;
  font-size: 11px;
  margin-top: 27px;
}

.hero-note i {
  width: 3px;
  height: 3px;
  background: #445069;
  border-radius: 100%;
}

.network-art {
  position: relative;
  width: 112%;
  margin-left: -4%;
  aspect-ratio: 1.09;
  background: radial-gradient(ellipse at center, #134b9629, transparent 65%);
}

.network-art svg {
  position: relative;
  width: 100%;
  height: 100%;
  transform: rotate(-12deg);
}

.orbit {
  position: absolute;
  border: 1px solid #3272bf24;
  width: 95%;
  height: 41%;
  left: 3%;
  top: 28%;
  border-radius: 50%;
  transform: rotate(-31deg);
}

.orbit-two {
  transform: rotate(30deg);
  width: 100%;
  left: 0;
}

.node-label {
  position: absolute;
  font-size: 10px;
  letter-spacing: 1px;
  padding: 6px 12px;
  border: 1px solid #2a4566;
  background: #0b1522de;
  border-radius: 5px;
  color: #b4c9e7;
  box-shadow: 0 5px 20px #0005;
}

.node-label i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #75acfa;
  display: inline-block;
  margin-right: 6px;
}

.node-one {
  left: 11%;
  top: 36%;
}

.node-two {
  right: 0;
  top: 32%;
}

.node-three {
  right: 11%;
  bottom: 23%;
}

.art-caption {
  position: absolute;
  bottom: 3%;
  width: 100%;
  text-align: center;
  font-size: 10px;
  letter-spacing: 2px;
  color: #657d9d;
}

.art-caption .pulse {
  margin-right: 8px;
  width: 4px;
  height: 4px;
}

/* 网络能力概览 */
.network-strip {
  border-block: 1px solid var(--line);
  background: #0c1017;
}

.strip-inner {
  min-height: 89px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.strip-inner>span {
  color: #7e899b;
  font-size: 12px;
}

.strip-inner>div {
  font-size: 19px;
  font-weight: 600;
  letter-spacing: .5px;
}

.strip-inner small {
  font-weight: 400;
  color: #7e899b;
  font-size: 11px;
  margin-left: 12px;
}

/* 内容模块与服务特性 */
.section {
  padding-top: 94px;
  padding-bottom: 96px;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 37px;
  gap: 25px;
}

h2 {
  font-size: 29px;
  letter-spacing: -.8px;
  font-weight: 600;
  line-height: 1.5;
  margin: 13px 0 0;
}

.section-heading>p {
  font-size: 12px;
  color: var(--muted);
  margin: 0;
  line-height: 1.9;
}

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

.feature-card {
  padding: 29px 27px 36px;
  background: linear-gradient(140deg, #121923, #0d1118);
  border: 1px solid var(--line);
  border-radius: 10px;
  position: relative;
}

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  font-size: 26px;
  color: #83b0f5;
  background: #24416d30;
  border: 1px solid #34537e66;
  border-radius: 9px;
}

.feature-card h3 {
  font-size: 17px;
  font-weight: 550;
  margin-top: 23px;
  margin-bottom: 10px;
}

.feature-card p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.9;
  margin: 0;
}

.card-index {
  position: absolute;
  right: 25px;
  top: 29px;
  color: #3e4c62;
  font: 12px monospace;
}

/* 套餐与价格 */
.pricing-section {
  background: #0b0f16;
  border-block: 1px solid #1b2330;
}

.billing-label {
  color: #a7b5cc;
  border: 1px solid #303f55;
  background: #152032;
  font-size: 11px;
  padding: 6px 16px;
  border-radius: 6px;
}

.pricing-layout {
  display: grid;
  grid-template-columns: .8fr 2fr;
  gap: 55px;
  align-items: center;
}

.large-asterisk {
  font-size: 67px;
  color: #6f9be2;
  line-height: 1;
}

.pricing-intro h3 {
  font-size: 27px;
  font-weight: 500;
  line-height: 1.65;
  letter-spacing: -.6px;
  margin: 22px 0 13px;
}

.pricing-intro p {
  font-size: 12px;
  color: var(--muted);
  line-height: 2;
  margin-bottom: 26px;
}

.pricing-intro .text-link {
  font-size: 11px;
}

.plans {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.plan {
  padding: 28px;
  background: linear-gradient(140deg, #142338, #0f1723);
  border: 1px solid #2c405e;
  border-radius: 12px;
}

.plan.featured {
  background: linear-gradient(135deg, #1c3861, #14223d 70%);
  border-color: #426daf;
  box-shadow: 0 0 45px #3065ae10;
}

.plan-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 10px;
  color: #a8bad4;
}

.plan-badge {
  font-size: 9px;
  color: #aacbff;
  background: #5488d421;
  padding: 3px 9px;
  border-radius: 4px;
  border: 1px solid #5279ae50;
}

.plan h3 {
  font-size: 48px;
  letter-spacing: -2px;
  line-height: 1;
  margin: 31px 0 14px;
  font-weight: 650;
}

.plan h3 span {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0;
  color: #9eb0ca;
}

.plan-desc {
  color: #9bacbf;
  font-size: 11px;
  margin: 0;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 23px 0 21px;
  padding-bottom: 21px;
  border-bottom: 1px solid #ffffff10;
}

.price strong {
  font-size: 33px;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: -1px;
}

.price small {
  font-size: 18px;
  margin-right: 3px;
}

.price>span {
  font-size: 10px;
  color: #9bacbf;
}

.plan ul {
  padding: 0;
  margin: 0 0 27px;
  list-style: none;
  color: #b6c5da;
  font-size: 12px;
  line-height: 2.4;
}

.plan li:before {
  content: '✓';
  color: #83b4ff;
  margin-right: 12px;
}

.plan .button {
  width: 100%;
  justify-content: space-between;
  padding: 10px 17px;
}

.pricing-note {
  color: #748197;
  font-size: 10px;
  margin: 25px 0 0;
  line-height: 1.9;
}

/* 使用场景 */
.scenario-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.scenario-grid article {
  position: relative;
  padding: 15px 0 25px;
  border-bottom: 1px solid #2b3544;
}

.scene-icon {
  font-size: 38px;
  color: #8faace;
  font-weight: 300;
}

.scene-number {
  float: right;
  font: 11px monospace;
  color: #506079;
  margin-top: 16px;
}

.scenario-grid h3 {
  font-size: 19px;
  font-weight: 550;
  margin: 15px 0 10px;
}

.scenario-grid p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.9;
  max-width: 300px;
}

.scene-tag {
  display: block;
  color: #8cabcF;
  font-size: 10px;
  margin-top: 25px;
  letter-spacing: 1px;
}

.scenario-note {
  color: #6e7c90;
  font-size: 10px;
  margin-top: 22px;
}

/* 行动入口与页脚 */
.cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 90px;
  padding: 42px 47px;
  border: 1px solid #2a3b56;
  border-radius: 12px;
  background: radial-gradient(ellipse at 85% 110%, #204e8b50, transparent 65%), #101927;
}

.cta h2 {
  font-size: 27px;
}

.cta .eyebrow {
  font-size: 10px;
}

.cta .button {
  white-space: nowrap;
}

footer {
  border-top: 1px solid var(--line);
  background: #080b10;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: 42px;
}

.footer-top p {
  color: #778398;
  font-size: 11px;
  margin: 13px 0 0;
}

.footer-top nav {
  display: flex;
  gap: 29px;
  font-size: 12px;
  color: #97a2b4;
}

.footer-top nav a:hover {
  color: #fff;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #1a212d;
  padding-block: 20px;
  color: #626f84;
  font-size: 10px;
}

/* 独立内容页面 */
.document {
  padding-top: 46px;
  padding-bottom: 110px;
}

.document h1 {
  font-size: 48px;
  letter-spacing: -1px;
  line-height: 1.3;
  margin: 20px 0 12px;
}

.document-subtitle {
  color: #9aa8bb;
  font-size: 16px;
  margin-bottom: 50px;
}

.document-layout {
  border-top: 1px solid var(--line);
  padding-top: 40px;
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 65px;
}

.document aside {
  display: flex;
  flex-direction: column;
  align-self: start;
  position: sticky;
  top: 125px;
  gap: 14px;
  color: #8598b4;
  font-size: 13px;
}

.document aside>span {
  color: #e2e9f5;
  margin-bottom: 8px;
}

.document aside a:hover {
  color: #b9d5ff;
}

.prose section {
  scroll-margin-top: 110px;
  margin-bottom: 35px;
}

.prose h2 {
  font-size: 21px;
  margin: 0 0 15px;
}

.prose p {
  font-size: 14px;
  line-height: 2.1;
  color: #9daabd;
  margin: 0;
}

.prose a {
  color: #80aff4;
}

/* 联系页面 */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: start;
}

.contact-card {
  padding: 40px;
  background: linear-gradient(135deg, #15263e, #0d1522);
  border: 1px solid #2b4162;
  border-radius: 12px;
}

.contact-card h2 {
  font-size: 26px;
  margin-top: 24px;
}

.contact-card p {
  color: #99a8bc;
  font-size: 13px;
  line-height: 2;
}

.email {
  font-size: clamp(20px, 2.6vw, 32px);
  color: #94befe;
  display: inline-block;
  margin: 16px 0 27px;
}

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

.contact-help h2 {
  font-size: 22px;
  margin: 0 0 25px;
}

.contact-help>div {
  padding: 18px 0 22px 39px;
  border-bottom: 1px solid var(--line);
  position: relative;
}

.contact-help>div>span {
  position: absolute;
  left: 0;
  top: 24px;
  font: 11px monospace;
  color: #6d9adf;
}

.contact-help h3 {
  font-size: 16px;
  font-weight: 500;
  margin: 0 0 8px;
}

.contact-help p {
  font-size: 13px;
  color: #92a0b3;
  margin: 0;
}

#copy-status {
  min-height: 22px;
  margin-bottom: 0;
  font-size: 12px;
  color: #92b9f2;
}

/* 响应式布局 */
@media(min-width:1450px) {
  .hero {
    min-height: 665px;
  }

  .hero h1 {
    font-size: 62px;
  }

}

@media(max-width:1000px) {
  .container {
    width: calc(100% - 48px);
  }

  .header nav {
    gap: 20px;
  }

  .hero {
    min-height: 530px;
  }

  .hero h1 {
    font-size: 43px;
  }

  .network-art {
    width: 104%;
    margin-left: 0;
  }

  .hero-copy>p {
    font-size: 12px;
  }

  .desktop-break {
    display: none;
  }

  .strip-inner small {
    display: block;
    margin: 0;
    font-size: 10px;
  }

  .pricing-layout {
    gap: 25px;
    grid-template-columns: .7fr 2fr;
  }

  .plan {
    padding: 22px;
  }

  .pricing-intro h3 {
    font-size: 23px;
  }

  .feature-card {
    padding: 23px;
  }

  .feature-card h3 {
    font-size: 15px;
  }

  .section-heading h2 {
    font-size: 25px;
  }

  .contact-layout {
    gap: 30px;
  }

  .contact-card {
    padding: 28px;
  }

}

@media(max-width:720px) {
  html {
    scroll-padding-top: 86px;
  }

  .container {
    width: calc(100% - 40px);
  }

  .header {
    height: 72px;
  }

  .brand {
    font-size: 19px;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 36px;
    flex-shrink: 0;
    border: 1px solid #303f53;
    background: #101923;
    border-radius: 5px;
    color: #dce8fa;
    padding: 0;
    font-size: 20px;
    line-height: 1;
  }

  .header nav {
    display: none;
    position: absolute;
    top: 71px;
    left: 0;
    width: 100%;
    padding: 22px;
    background: #0c121d;
    border-bottom: 1px solid #2a3a51;
    grid-template-columns: repeat(3, 1fr);
    text-align: center;
    gap: 18px;
  }

  .header nav.open {
    display: grid;
  }

  .nav-divider {
    display: none;
  }

  .header nav>a.nav-register {
    padding: 4px 10px;
  }

  .hero {
    display: flex;
    flex-direction: column;
    min-height: 0;
    padding-top: 58px;
    padding-bottom: 22px;
    align-items: stretch;
  }

  .hero h1 {
    font-size: clamp(36px, 8.6vw, 55px);
    letter-spacing: -1.5px;
  }

  .hero .eyebrow {
    font-size: 10px;
    letter-spacing: 1.6px;
  }

  .hero-copy>p {
    font-size: 13px;
    max-width: 440px;
  }

  .hero-actions {
    margin-top: 26px;
  }

  .hero-note {
    margin-top: 22px;
  }

  .network-art {
    width: min(100%, 430px);
    align-self: center;
    margin: 8px 0 0;
    max-height: 380px;
  }

  .node-two {
    right: 3%;
  }

  .strip-inner {
    padding-block: 22px;
    flex-wrap: wrap;
    gap: 19px 12px;
    justify-content: space-between;
  }

  .strip-inner>span {
    width: 100%;
    font-size: 10px;
  }

  .strip-inner>div {
    font-size: 16px;
  }

  .strip-inner small {
    font-size: 9px;
  }

  .section {
    padding-top: 62px;
    padding-bottom: 60px;
  }

  .section-heading {
    align-items: start;
    gap: 16px;
    margin-bottom: 26px;
  }

  .section-heading h2 {
    font-size: 23px;
    letter-spacing: -.6px;
  }

  .section-heading>p {
    display: none;
  }

  .eyebrow {
    font-size: 10px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .feature-card {
    padding: 24px;
  }

  .feature-card h3 {
    font-size: 17px;
    margin-top: 18px;
  }

  .feature-card p {
    font-size: 13px;
  }

  .pricing-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .pricing-intro {
    display: none;
  }

  .plans {
    gap: 16px;
  }

  .plan {
    padding: 20px;
  }

  .plan-top {
    align-items: start;
    flex-direction: column;
    gap: 9px;
  }

  .plan h3 {
    font-size: 39px;
  }

  .plan h3 span {
    font-size: 10px;
  }

  .plan-desc {
    font-size: 10px;
  }

  .plan ul {
    font-size: 10px;
  }

  .plan li:before {
    margin-right: 6px;
  }

  .plan .button {
    font-size: 11px;
    padding: 10px;
    gap: 8px;
  }

  .price>span {
    font-size: 9px;
  }

  .price {
    gap: 6px;
  }

  .price strong {
    font-size: 29px;
  }

  .billing-label {
    white-space: nowrap;
    margin-top: 0;
    padding: 4px 8px;
    font-size: 9px;
  }

  .scenario-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .scenario-grid article {
    padding-top: 8px;
  }

  .scenario-grid p {
    max-width: none;
    font-size: 13px;
  }

  .scene-tag {
    margin-top: 15px;
  }

  .cta {
    padding: 28px;
    flex-direction: column;
    align-items: start;
    margin-bottom: 58px;
    gap: 23px;
  }

  .cta h2 {
    font-size: 23px;
  }

  .footer-top {
    flex-direction: column;
    align-items: start;
    gap: 28px;
    padding-block: 34px;
  }

  .footer-top nav {
    gap: 22px;
    font-size: 11px;
    flex-wrap: wrap;
  }

  .footer-bottom {
    font-size: 9px;
  }

  .document {
    padding-top: 26px;
    padding-bottom: 60px;
  }

  .document h1 {
    font-size: 36px;
  }

  .document-subtitle {
    font-size: 14px;
    margin-bottom: 30px;
  }

  .document-layout {
    grid-template-columns: 1fr;
    gap: 35px;
    padding-top: 25px;
  }

  .document aside {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px 18px;
    font-size: 11px;
  }

  .document aside>span {
    width: 100%;
    margin: 0;
  }

  .prose h2 {
    font-size: 19px;
  }

  .prose p {
    font-size: 13px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-card {
    padding: 26px;
  }

  .email {
    font-size: 27px;
  }

  .contact-help h2 {
    font-size: 21px;
  }

}

@media(max-width:380px) {
  .plans {
    grid-template-columns: 1fr;
  }

  .plan-top {
    flex-direction: row;
  }

  .plan ul {
    font-size: 12px;
  }

  .plan h3 {
    font-size: 48px;
  }

  .hero-actions {
    gap: 20px;
  }

  .footer-top nav {
    gap: 16px;
  }

  .contact-actions .button {
    padding: 10px 15px;
  }

}

@media(prefers-reduced-motion:reduce) {
  html {
    scroll-behavior: auto;
  }

  *, *:before, *:after {
    transition: none!important;
  }

}

/* Global coverage, SLA assurance and network technologies. */
.network-services {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 24px;
  padding-bottom: 96px;
}

.coverage-panel, .sla-panel {
  min-width: 0;
  padding: 34px;
  border: 1px solid #29374c;
  border-radius: 12px;
  background: radial-gradient(ellipse at 0 0, #224e802b, transparent 70%), #0e151f;
}

.sla-panel {
  background: linear-gradient(140deg, #14243b, #0e151f);
}

.network-services h2 {
  font-size: 26px;
  margin: 16px 0;
}

.network-services article>p {
  font-size: 13px;
  line-height: 2;
  color: var(--muted);
  margin: 0;
}

.region-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 29px;
  padding-top: 23px;
  border-top: 1px solid #29374c;
}

.region-grid h3 {
  font-size: 12px;
  font-weight: 500;
  color: #86b2ef;
  margin: 0 0 12px;
}

.region-grid ul {
  list-style: none;
  margin: 0;
  padding: 0;
  color: #c1cee0;
  font-size: 13px;
  line-height: 2.1;
}

.region-grid li:before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #5484c4;
  margin-right: 9px;
  vertical-align: middle;
}

.coverage-caption {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 27px;
  color: #7188a7;
  font-size: 10px;
  letter-spacing: .8px;
}

.sla-benefits {
  list-style: none;
  padding: 0;
  margin: 24px 0;
  color: #c2d1e6;
  font-size: 13px;
  line-height: 2.6;
}

.sla-benefits span {
  font: 10px monospace;
  color: #6d94cc;
  margin-right: 17px;
}

.sla-panel .button {
  margin-top: 1px;
}

.technology-section {
  padding-top: 0;
}

.technology-list {
  border-top: 1px solid #2b3544;
}

.technology-row {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 42px;
  padding: 34px 0;
  border-bottom: 1px solid #232e3e;
}

.technology-label {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.technology-label>span {
  font-size: 34px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -1px;
  color: #91b7ec;
}

.technology-label small {
  font-size: 11px;
  color: #697f9f;
  letter-spacing: 1px;
}

.technology-row h3 {
  font-size: 18px;
  font-weight: 550;
  margin: 0 0 13px;
}

.technology-row p {
  font-size: 13px;
  line-height: 2;
  color: var(--muted);
  margin: 0;
}

.technology-row p+p {
  margin-top: 12px;
}

@media(max-width:1000px) {
  .network-services {
    gap: 20px;
    grid-template-columns: 1.1fr 1fr;
  }

  .coverage-panel, .sla-panel {
    padding: 26px;
  }

  .network-services .eyebrow {
    letter-spacing: 1px;
    font-size: 10px;
  }

  .technology-row {
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 30px;
  }

}

@media(max-width:720px) {
  .network-services {
    grid-template-columns: 1fr;
    padding-bottom: 60px;
    gap: 16px;
  }

  .coverage-panel, .sla-panel {
    padding: 25px;
  }

  .network-services h2 {
    font-size: 23px;
  }

  .region-grid {
    gap: 10px;
  }

  .region-grid ul {
    font-size: 12px;
  }

  .coverage-caption {
    font-size: 9px;
    letter-spacing: 0;
  }

  .technology-section {
    padding-top: 0;
  }

  .technology-row {
    grid-template-columns: 1fr;
    gap: 17px;
    padding: 27px 0;
  }

  .technology-label {
    flex-direction: row;
    align-items: center;
    gap: 14px;
  }

  .technology-label>span {
    font-size: 27px;
  }

  .technology-label small {
    font-size: 10px;
  }

  .technology-row h3 {
    font-size: 17px;
  }

  .technology-row p {
    font-size: 13px;
  }

}
