:root {
  --ink: #07111f;
  --ink-soft: #2f4158;
  --muted: #65758a;
  --blue: #1269c7;
  --blue-dark: #064d98;
  --blue-soft: #eaf5ff;
  --teal: #0f9f8f;
  --amber: #f1a51a;
  --ice: #f6fbff;
  --line: #dce8f4;
  --white: #fff;
  --shadow: 0 24px 70px rgba(24, 74, 120, .14);
}

/* 2026-08-10 core capabilities integrated redesign */
.capabilities {
  padding: 64px 0 58px;
  background: #fff;
}

.capabilities-shell {
  width: min(1240px, calc(100% - 56px));
  display: block;
}

.capability-panel {
  display: grid;
  grid-template-columns: minmax(300px, 0.37fr) minmax(0, 0.63fr);
  overflow: hidden;
  border: 1px solid rgba(204, 222, 238, 0.92);
  border-top: 4px solid #1269c7;
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.capability-copy {
  grid-area: auto;
  max-width: none;
  min-width: 0;
  padding: 56px 46px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #f2f7fc;
}

.capability-copy h2 {
  max-width: none;
  margin: 0;
  color: #0d1c31;
  font-size: clamp(40px, 3.1vw, 48px);
  font-weight: 820;
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.capability-copy > p:not(.eyebrow) {
  max-width: 360px;
  margin: 28px 0 0;
  color: #5d7187;
  font-size: 15px;
  line-height: 1.85;
}

.capability-list {
  grid-area: auto;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: #fff;
  box-shadow: none;
}

.capability-item,
.capability-item:first-child,
.capability-item:last-child,
.capability-item:nth-child(-n + 2) {
  position: relative;
  min-height: 246px;
  padding: 32px 38px 34px;
  display: block;
  border: 0;
  border-right: 1px solid #dbe6f0;
  border-bottom: 1px solid #dbe6f0;
  background: #fff;
}

.capability-item:nth-child(2n) {
  border-right: 0;
}

.capability-item:nth-child(n + 3) {
  border-bottom: 0;
}

.capability-item::before,
.capability-item.is-primary::before {
  display: none;
}

.capability-index {
  display: block;
  margin-bottom: 16px;
  color: #1269c7;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.08em;
}

.capability-item i {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border: 0;
  border-radius: 0;
  color: #1269c7;
  background: transparent;
  font-size: 34px;
}

.capability-item h3 {
  margin: 0 0 10px;
  color: #14243a;
  font-size: 19px;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.capability-item p {
  max-width: 330px;
  margin: 0;
  color: #60758a;
  font-size: 12.5px;
  line-height: 1.72;
}

.capability-media,
.capability-journey {
  display: none;
}

@media (max-width: 900px) {
  .capabilities-shell {
    width: min(760px, calc(100% - 40px));
  }

  .capability-panel {
    grid-template-columns: 1fr;
  }

  .capability-copy {
    padding: 42px 38px;
  }

  .capability-copy > p:not(.eyebrow) {
    max-width: 650px;
    margin-top: 20px;
  }

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

  .capability-item,
  .capability-item:first-child,
  .capability-item:last-child,
  .capability-item:nth-child(-n + 2) {
    min-height: 220px;
  }
}

@media (max-width: 760px) {
  .capabilities {
    padding: 52px 0;
  }

  .capabilities-shell {
    width: calc(100% - 32px);
  }

  .capability-panel {
    border-radius: 14px;
  }

  .capability-copy {
    padding: 32px 24px 34px;
  }

  .capability-copy h2 {
    font-size: 34px;
  }

  .capability-copy > p:not(.eyebrow) {
    margin-top: 16px;
    font-size: 14px;
    line-height: 1.75;
  }

  .capability-list {
    grid-template-columns: 1fr;
  }

  .capability-item,
  .capability-item:first-child,
  .capability-item:last-child,
  .capability-item:nth-child(-n + 2) {
    min-height: auto;
    padding: 24px 24px 26px;
    border: 0;
    border-bottom: 1px solid #dbe6f0;
  }

  .capability-item:last-child {
    border-bottom: 0;
  }

  .capability-index {
    margin-bottom: 12px;
  }

  .capability-item i {
    width: 36px;
    height: 36px;
    margin-bottom: 12px;
    font-size: 28px;
  }

  .capability-item h3 {
    font-size: 17px;
  }
}

/* 2026-08-11 performance: keep responsive picture wrappers layout-neutral. */
.hero-wifi-device > picture {
  display: block;
  width: 100%;
  height: 100%;
}

.optimized-picture {
  display: block;
  width: 100%;
}

.optimized-picture > img {
  display: block;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: #fff;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}
.skip-link {
  position: fixed;
  z-index: 120;
  top: 12px;
  left: 16px;
  padding: 10px 14px;
  border-radius: 8px;
  color: #fff;
  background: var(--blue-dark);
  box-shadow: 0 10px 28px rgba(7, 38, 70, .22);
  transform: translateY(-160%);
  transition: transform .18s ease;
}
.skip-link:focus {
  transform: translateY(0);
}
#top:focus { outline: none; }
:where(a, button, input, select, textarea, [tabindex]):focus-visible {
  outline: 3px solid rgba(18, 105, 199, .72);
  outline-offset: 3px;
}

.site-header {
  position: fixed;
  z-index: 50;
  inset: 0 0 auto;
  border-bottom: 1px solid rgba(218, 230, 242, .82);
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(18px);
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.site-header.scrolled {
  border-color: rgba(207, 223, 239, .96);
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 12px 34px rgba(21, 55, 88, .08);
}
.nav-shell {
  width: min(1240px, calc(100% - 56px));
  height: 72px;
  margin: auto;
  padding: 0;
  display: grid;
  grid-template-columns: 180px 1fr auto;
  align-items: center;
  gap: 34px;
}
.brand img,
.footer-brand img {
  width: 160px;
  height: 38px;
  object-fit: contain;
  object-position: left center;
}
.nav-links {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 48px;
  color: #1e2a3a;
  font-size: 13px;
  font-weight: 700;
}
.nav-links a {
  position: relative;
  padding: 26px 0;
  transition: color .2s ease;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 50%;
  right: 50%;
  bottom: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--blue);
  transition: left .2s ease, right .2s ease;
}
.nav-links a:hover,
.nav-links a.active { color: var(--blue); }
.nav-links a:hover::after,
.nav-links a.active::after { left: 0; right: 0; }
.nav-cta,
.text-action {
  border: 0;
  background: transparent;
  cursor: pointer;
}
.nav-cta {
  min-height: 40px;
  padding: 0 24px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), #0c7bd8);
  box-shadow: 0 12px 26px rgba(18, 105, 199, .22);
  font-size: 13px;
  font-weight: 750;
  transition: background .2s ease, transform .2s ease;
}
.nav-cta:hover {
  background: linear-gradient(135deg, #0b5eb5, #075cb2);
  transform: translateY(1px);
}
.menu-toggle { display: none; }

.hero {
  position: relative;
  min-height: 680px;
  padding-top: 72px;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 31%, rgba(18, 105, 199, .12), transparent 24%),
    linear-gradient(118deg, #fff 0%, #f8fbff 48%, #edf7ff 100%);
}
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
}
.hero::before {
  width: 860px;
  height: 470px;
  right: 1%;
  top: 110px;
  border: 1px solid rgba(18, 105, 199, .18);
  border-color: rgba(18, 105, 199, .18) transparent transparent;
  border-radius: 50%;
  transform: rotate(-7deg);
}
.hero::after {
  width: 1120px;
  height: 580px;
  right: -8%;
  top: 80px;
  border: 1px solid rgba(18, 105, 199, .12);
  border-color: rgba(18, 105, 199, .12) transparent transparent;
  border-radius: 50%;
  transform: rotate(-9deg);
}
.hero-shell {
  position: relative;
  z-index: 2;
  width: min(1240px, calc(100% - 56px));
  min-height: 590px;
  margin: auto;
  display: grid;
  grid-template-columns: .86fr 1fr;
  align-items: center;
  gap: 36px;
}
.hero-copy { padding: 58px 0 56px; }
.hero h1 {
  margin: 0;
  max-width: 620px;
  font-size: 62px;
  font-weight: 820;
  line-height: 1.17;
  letter-spacing: 0;
}
.hero-copy > p {
  max-width: 560px;
  margin: 28px 0 0;
  color: #2c3f57;
  font-size: 15px;
  line-height: 1.9;
}
.hero-actions {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 28px;
}
.button {
  min-height: 44px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 10px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 760;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), #0c7bd8);
  box-shadow: 0 16px 38px rgba(18, 105, 199, .24);
}
.button-primary:hover {
  background: linear-gradient(135deg, #0b5eb5, #075cb2);
  box-shadow: 0 18px 44px rgba(18, 105, 199, .28);
}
.button-light {
  color: #0a4d93;
  background: #fff;
  box-shadow: 0 18px 38px rgba(0, 0, 0, .13);
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 760;
}
.hero-proof-list {
  max-width: 560px;
  margin-top: 54px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.hero-proof-list span {
  min-height: 34px;
  padding: 8px 12px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(139, 190, 230, .72);
  border-radius: 999px;
  color: #24415f;
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 12px 28px rgba(35, 88, 136, .07);
  font-size: 12px;
  font-weight: 760;
}
.hero-visual {
  min-width: 0;
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-visual::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 82%;
  height: 18%;
  bottom: 16%;
  border-radius: 50%;
  background: rgba(69, 108, 144, .15);
  filter: blur(36px);
}
.hero-stage {
  position: relative;
  width: min(780px, 100%);
  aspect-ratio: 1.28;
  animation: product-float 8s ease-in-out infinite;
}
.hero-orbit {
  position: absolute;
  inset: 6% 3% 4% 6%;
  border: 1px solid rgba(18, 105, 199, .22);
  border-radius: 48%;
  transform: rotate(-8deg);
  box-shadow: 0 0 60px rgba(18, 105, 199, .08);
}
.hero-orbit::before,
.hero-orbit::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(15, 159, 143, .16);
}
.hero-orbit::before { inset: 15% 9% 11% 13%; border-color: rgba(18, 105, 199, .18); }
.hero-orbit::after { inset: 28% 22% 24% 25%; border-color: rgba(34,197,141,.18); }
.hero-wifi-device {
  position: absolute;
  left: 1%;
  bottom: 7%;
  width: 70%;
  padding: 10px;
  overflow: hidden;
  border: 1px solid rgba(185, 218, 244, .82);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 28px 72px rgba(43, 82, 119, .14);
}
.hero-wifi-device img {
  width: 100%;
  max-width: none;
  margin: 0;
  aspect-ratio: 1.87;
  border-radius: 12px;
  object-fit: cover;
  object-position: center;
}
.hero-business-stack {
  position: absolute;
  right: 2%;
  bottom: 11%;
  width: min(220px, 36%);
  display: grid;
  gap: 12px;
}
.hero-flow-card {
  min-height: 74px;
  padding: 13px 15px;
  border: 1px solid rgba(180, 211, 239, .88);
  border-radius: 8px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 18px 42px rgba(45, 85, 124, .12);
}
.hero-flow-card span {
  display: block;
  color: #6a7785;
  font-size: 11px;
  font-weight: 760;
}
.hero-flow-card strong {
  display: block;
  margin-top: 5px;
  color: #143453;
  font-size: 16px;
  font-weight: 820;
}
.hero-flow-card.primary {
  border-color: rgba(18, 105, 199, .24);
}
.hero-flow-card.accent {
  border-color: rgba(15, 159, 143, .22);
}

.metrics {
  position: relative;
  z-index: 3;
  min-height: 112px;
  padding: 22px max(28px, calc((100vw - 1320px) / 2));
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: center;
  border-top: 1px solid rgba(201, 223, 242, .9);
  border-bottom: 1px solid rgba(201, 223, 242, .9);
  background: #fff;
}
.metrics div {
  min-height: 60px;
  padding: 0 42px;
  display: grid;
  grid-template-columns: 38px auto;
  grid-template-rows: auto auto;
  align-items: center;
  column-gap: 16px;
  border-right: 1px solid var(--line);
}
.metrics div:last-child { border-right: 0; }
.metrics i {
  grid-row: 1 / 3;
  color: var(--blue);
  font-size: 30px;
}
.metrics strong {
  align-self: end;
  font-size: 28px;
  font-weight: 760;
  letter-spacing: 0;
}
.metrics span {
  align-self: start;
  color: #323f50;
  font-size: 12px;
  line-height: 1.6;
}

.section { padding: 74px 0; }
.section-shell {
  width: min(1240px, calc(100% - 56px));
  margin: auto;
}
.section-heading { margin-bottom: 48px; }
.section-heading.centered {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.eyebrow {
  margin: 0 0 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .01em;
}
.section-heading.centered .eyebrow {
  justify-content: center;
}
.eyebrow.light { color: #6eb7ff; }
.section-heading h2,
.wifi-strip h2,
.dialog-copy h2 {
  margin: 0;
  font-size: 50px;
  font-weight: 800;
  line-height: 1.16;
  letter-spacing: 0;
}
.section-heading > p:last-child,
.dialog-copy > p:last-child {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.82;
}
.section-heading.centered > p:last-child {
  max-width: 640px;
  margin: 18px auto 0;
}

.business {
  background:
    radial-gradient(circle at 76% 18%, rgba(18, 105, 199, .06), transparent 30%),
    linear-gradient(180deg, #fff 0%, #f8fcff 100%);
}
.business .section-heading.centered {
  max-width: 980px;
}
.business .section-heading h2 {
  font-size: 44px;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}
.service-iot-overview {
  grid-column: 1 / -1;
}
.service-card {
  min-height: 510px;
  position: relative;
  overflow: hidden;
  padding: 30px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(207, 226, 244, .88);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.96) 0%, rgba(249,252,255,.92) 100%);
  box-shadow: 0 20px 56px rgba(37, 86, 132, .08);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.service-card > * {
  position: relative;
  z-index: 2;
}
.service-network {
  background:
    radial-gradient(circle at 88% 88%, rgba(18, 105, 199, .12), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(246,251,255,.94));
}
.service-network > p {
  max-width: none;
}
.service-card:hover {
  transform: translateY(-5px);
  border-color: #b9d5ee;
  box-shadow: var(--shadow);
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 0;
  height: 3px;
  background: var(--blue);
  transition: width .25s ease;
}
.service-card:hover::before {
  width: 100%;
}
.service-card h3 {
  margin: 20px 0 10px;
  color: #101a2b;
  font-size: 24px;
  font-weight: 820;
  letter-spacing: 0;
}
.service-card p {
  max-width: none;
  margin: 0;
  color: #37485e;
  font-size: 13px;
  line-height: 1.82;
}
.service-benefits {
  background:
    radial-gradient(circle at 76% 84%, rgba(15, 159, 143, .11), transparent 30%),
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(246,252,255,.96));
}
.service-detail-list {
  position: relative;
  z-index: 2;
  margin-top: 24px;
  display: grid;
  gap: 12px;
}
.service-detail-list div {
  min-height: 82px;
  padding: 14px 16px;
  display: grid;
  grid-template-columns: 34px 1fr;
  grid-template-rows: auto auto;
  align-items: center;
  column-gap: 12px;
  border: 1px solid rgba(191, 214, 236, .72);
  border-radius: 8px;
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 14px 30px rgba(38, 105, 170, .07);
}
.service-detail-list i {
  grid-row: 1 / 3;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--blue);
  background: #eef7ff;
  font-size: 18px;
}
.service-detail-list strong {
  display: block;
  color: #102f52;
  font-size: 15px;
  font-weight: 820;
}
.service-detail-list span {
  display: block;
  color: #53657a;
  font-size: 12px;
  line-height: 1.65;
}
.service-tags {
  position: relative;
  z-index: 2;
  margin-top: auto;
  padding-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.service-tags span {
  padding: 7px 10px;
  border-radius: 999px;
  color: #155088;
  background: #eef7ff;
  font-size: 11px;
  font-weight: 780;
}
.service-feature-list {
  position: relative;
  z-index: 2;
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  gap: 9px;
  list-style: none;
}
.service-feature-list li {
  position: relative;
  padding-left: 18px;
  color: #526377;
  font-size: 12px;
  line-height: 1.6;
}
.service-feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .75em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
}
.service-feature-list.compact {
  max-width: none;
}
.benefit-resource-grid {
  position: relative;
  z-index: 2;
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.benefit-resource-grid div {
  min-height: 78px;
  padding: 12px;
  display: grid;
  grid-template-columns: 28px 1fr;
  align-content: center;
  column-gap: 9px;
  border: 1px solid rgba(190, 216, 239, .8);
  border-radius: 8px;
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 14px 30px rgba(38, 105, 170, .055);
}
.benefit-resource-grid i {
  grid-row: 1 / 3;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--blue);
  background: #eef7ff;
  font-size: 15px;
}
.benefit-resource-grid strong {
  color: #132a45;
  font-size: 13px;
  font-weight: 840;
  line-height: 1.25;
}
.benefit-resource-grid span {
  margin-top: 4px;
  color: #5c6e82;
  font-size: 10px;
  line-height: 1.45;
}
.benefit-flow {
  position: relative;
  z-index: 2;
  margin-top: 15px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}
.benefit-flow span {
  min-height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(18, 105, 199, .16);
  border-radius: 8px;
  color: #155088;
  background: linear-gradient(180deg, #fff, #edf7ff);
  font-size: 11px;
  font-weight: 820;
}
.benefit-scenario-tags {
  position: relative;
  z-index: 2;
  margin-top: auto;
  padding-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.benefit-scenario-tags span {
  padding: 7px 10px;
  border-radius: 999px;
  color: #16635c;
  background: rgba(15, 159, 143, .1);
  font-size: 11px;
  font-weight: 800;
}
.distribution {
  overflow: hidden;
  padding-top: 86px;
  padding-bottom: 80px;
  background:
    linear-gradient(180deg, #f4faff 0%, #fff 48%, #eef7ff 100%);
}
.distribution-layout {
  display: grid;
  grid-template-columns: minmax(0, .84fr) minmax(460px, 1.16fr);
  align-items: center;
  gap: 34px;
}
.distribution-copy h2 {
  margin: 0;
  color: #101a2b;
  font-size: 46px;
  font-weight: 840;
  line-height: 1.16;
  letter-spacing: 0;
}
.distribution-copy p:not(.eyebrow) {
  max-width: 520px;
  margin: 20px 0 26px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.88;
}
.solution-proof {
  max-width: 520px;
  margin: 0 0 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.solution-proof span {
  min-height: 36px;
  padding: 8px 12px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(184, 211, 237, .9);
  border-radius: 999px;
  color: #1d426b;
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 14px 34px rgba(38, 84, 125, .06);
  font-size: 12px;
  font-weight: 780;
}
.solution-proof i {
  color: var(--blue);
  font-size: 15px;
}
.distribution-visual {
  position: relative;
  min-width: 0;
  margin: 0;
  padding: 10px;
  border: 1px solid rgba(190, 216, 239, .86);
  border-radius: 8px;
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 26px 70px rgba(48, 91, 132, .13);
}
.distribution-visual::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(18, 105, 199, .16), rgba(15, 159, 143, .1));
  filter: blur(30px);
  transform: translateY(18px);
}
.distribution-visual img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
  border-radius: 6px;
}
.distribution-visual figcaption {
  position: absolute;
  z-index: 2;
  left: 28px;
  right: 28px;
  bottom: 28px;
  min-height: 66px;
  padding: 14px 16px;
  display: grid;
  gap: 5px;
  border: 1px solid rgba(190, 216, 239, .86);
  border-radius: 8px;
  color: #16304b;
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 18px 40px rgba(42, 82, 119, .12);
  backdrop-filter: blur(14px);
}
.distribution-visual figcaption strong {
  font-size: 16px;
  font-weight: 840;
}
.distribution-visual figcaption span {
  color: #617287;
  font-size: 12px;
  line-height: 1.45;
}
.flow-steps {
  grid-column: 1 / -1;
  position: relative;
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.flow-steps::before {
  content: "";
  position: absolute;
  left: 9%;
  right: 9%;
  top: 52px;
  height: 2px;
  background: linear-gradient(90deg, rgba(18,105,199,.22), rgba(15,159,143,.24), rgba(241,165,26,.25), rgba(45,64,89,.22));
}
.flow-steps article {
  min-height: 242px;
  position: relative;
  padding: 24px 22px 20px;
  display: grid;
  grid-template-columns: 48px 1fr;
  grid-template-rows: auto 1fr;
  align-items: start;
  column-gap: 16px;
  border: 1px solid rgba(205, 223, 240, .9);
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(247,251,255,.92)),
    #fff;
  box-shadow: 0 20px 48px rgba(41, 87, 130, .095);
}
.flow-steps article::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: var(--blue);
}
.flow-steps article::after {
  content: "";
  position: absolute;
  right: -10px;
  top: 45px;
  width: 18px;
  height: 18px;
  border-top: 2px solid rgba(18, 105, 199, .25);
  border-right: 2px solid rgba(18, 105, 199, .25);
  background: #f7fbff;
  transform: rotate(45deg);
}
.flow-steps article:last-child::after {
  display: none;
}
.flow-steps article:nth-child(2)::before { background: var(--teal); }
.flow-steps article:nth-child(3)::before { background: var(--amber); }
.flow-steps article:nth-child(4)::before { background: #2d4059; }
.flow-index {
  grid-column: 1 / -1;
  color: #8aa4bf;
  font-size: 13px;
  font-weight: 820;
  letter-spacing: .08em;
}
.flow-steps i {
  width: 48px;
  height: 48px;
  margin-top: 14px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(180deg, #2d83dd, var(--blue));
  box-shadow: 0 14px 28px rgba(18, 105, 199, .18);
  font-size: 23px;
}
.flow-steps article:nth-child(2) i { background: linear-gradient(180deg, #20b6aa, var(--teal)); }
.flow-steps article:nth-child(3) i { background: linear-gradient(180deg, #f3b844, var(--amber)); }
.flow-steps article:nth-child(4) i { background: linear-gradient(180deg, #576b86, #2d4059); }
.flow-steps article > div {
  min-width: 0;
  margin-top: 14px;
}
.flow-steps h3 {
  margin: 0 0 10px;
  color: #14263c;
  font-size: 20px;
  letter-spacing: 0;
}
.flow-steps p {
  margin: 0;
  color: #5d6d7f;
  font-size: 12px;
  line-height: 1.72;
}
.flow-steps small {
  margin-top: 14px;
  min-height: 30px;
  padding: 7px 9px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  color: #1b5f99;
  background: #eef7ff;
  font-size: 10px;
  font-weight: 820;
  line-height: 1.35;
}

.wifi-strip {
  position: relative;
  min-height: 620px;
  padding: 72px max(56px, calc((100vw - 1240px) / 2)) 54px;
  display: grid;
  grid-template-columns: minmax(360px, .68fr) minmax(620px, 1.12fr);
  grid-template-areas:
    "copy showcase"
    "specs showcase";
  align-items: center;
  column-gap: 64px;
  overflow: hidden;
  background:
    linear-gradient(90deg, #fff 0%, #f7fbff 45%, #eef7ff 100%);
}
.wifi-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(37, 124, 215, .06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 124, 215, .06) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(90deg, transparent 0%, #000 32%, #000 100%);
}
.wifi-strip-copy {
  position: relative;
  z-index: 2;
  grid-area: copy;
  max-width: 500px;
}
.wifi-strip h2 {
  font-size: 50px;
}
.wifi-strip-copy > p:not(.eyebrow) {
  max-width: 470px;
  margin: 18px 0 24px;
  color: #2c3848;
  font-size: 14px;
  line-height: 1.86;
}
.wifi-strip-points {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.wifi-strip-points span {
  min-height: 34px;
  padding: 8px 11px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(178, 210, 239, .8);
  border-radius: 999px;
  color: #21415f;
  background: rgba(255, 255, 255, .86);
  font-size: 11px;
  font-weight: 760;
}
.wifi-strip-points i {
  color: var(--teal);
  font-size: 14px;
}
.wifi-product-showcase {
  position: relative;
  z-index: 1;
  grid-area: showcase;
  min-height: 500px;
}
.wifi-visual-stage {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  border: 1px solid rgba(188, 214, 238, .72);
  border-radius: 8px;
  background:
    linear-gradient(152deg, rgba(255, 255, 255, .96) 0%, rgba(237, 248, 255, .9) 58%, rgba(255, 255, 255, .98) 100%),
    repeating-linear-gradient(0deg, rgba(18, 105, 199, .06) 0 1px, transparent 1px 18px);
  box-shadow: 0 28px 72px rgba(43, 82, 119, .14);
}
.wifi-visual-stage::after {
  content: "";
  position: absolute;
  left: 13%;
  right: 9%;
  bottom: 24px;
  height: 42px;
  border-radius: 50%;
  background: rgba(52, 82, 112, .16);
  filter: blur(24px);
}
.wifi-connection-grid {
  position: absolute;
  inset: 26px;
  border: 1px solid rgba(18, 105, 199, .12);
  border-radius: 6px;
}
.wifi-connection-grid::before,
.wifi-connection-grid::after {
  content: "";
  position: absolute;
  inset: 50% 8% auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(18, 105, 199, .24), transparent);
}
.wifi-connection-grid::after {
  inset: 8% auto 8% 58%;
  width: 1px;
  height: auto;
  background: linear-gradient(180deg, transparent, rgba(15, 159, 143, .24), transparent);
}
.wifi-combo-image {
  position: absolute;
  z-index: 2;
  left: 50%;
  inset-block: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  transform: translateX(-50%);
}
.wifi-scenario-badges {
  position: absolute;
  z-index: 3;
  left: 26px;
  top: 24px;
  max-width: 360px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.wifi-scenario-badges span,
.wifi-runtime-note {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(189, 215, 238, .9);
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 14px 34px rgba(34, 79, 121, .1);
}
.wifi-scenario-badges span {
  padding: 8px 12px;
  gap: 7px;
  border-radius: 999px;
  color: #233b55;
  font-size: 12px;
  font-weight: 780;
}
.wifi-scenario-badges i {
  color: var(--blue);
  font-size: 15px;
}
.wifi-runtime-note {
  position: absolute;
  z-index: 3;
  right: 28px;
  bottom: 28px;
  width: 230px;
  padding: 14px 16px;
  display: grid;
  grid-template-columns: 34px 1fr;
  column-gap: 12px;
  border-radius: 8px;
}
.wifi-runtime-note i {
  grid-row: 1 / 3;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(180deg, #25b5aa, var(--teal));
  font-size: 18px;
}
.wifi-runtime-note strong {
  color: #123253;
  font-size: 17px;
  font-weight: 820;
}
.wifi-runtime-note span {
  color: #576b80;
  font-size: 11px;
  line-height: 1.55;
}

@media (max-width: 1080px) {
  .distribution-layout {
    grid-template-columns: 1fr;
    row-gap: 42px;
  }

  .distribution-copy { max-width: 760px; }

  .distribution-visual {
    width: min(920px, 100%);
    min-height: 0;
  }

  .flow-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-top: 0;
    border-top: 0;
  }

  .flow-steps::before { display: none; }

  .flow-steps article,
  .flow-steps article:first-child,
  .flow-steps article:last-child {
    min-height: 260px;
    padding: 32px 28px;
    border-top: 3px solid #1269c7;
    border-right: 1px solid #dbe6f0;
    border-bottom: 1px solid #dbe6f0;
  }

  .flow-steps article:nth-child(2) { border-top-color: #13998d; }
  .flow-steps article:nth-child(3) { border-top-color: #e8a11d; }
  .flow-steps article:nth-child(4) { border-top-color: #2d4059; }
  .flow-steps article:nth-child(2n) { border-right: 0; }
  .flow-steps article::before { display: none; }
}

@media (max-width: 640px) {
  .distribution {
    padding-top: 62px;
    padding-bottom: 62px;
  }

  .distribution::before {
    background: radial-gradient(circle at 82% 16%, rgba(18, 105, 199, .07), transparent 30%);
  }

  .distribution-layout { row-gap: 30px; }
  .distribution-copy { padding-top: 0; }
  .distribution-copy h2 { font-size: 38px; }

  .distribution-copy p:not(.eyebrow) {
    margin: 20px 0 24px;
    font-size: 14px;
    line-height: 1.8;
  }

  .solution-proof {
    margin-bottom: 26px;
    grid-template-columns: 1fr;
  }

  .solution-proof span,
  .solution-proof span:first-child {
    min-height: 50px;
    padding: 8px 0;
    border-right: 0;
    border-bottom: 1px solid #e0eaf3;
  }

  .solution-proof span:last-child { border-bottom: 0; }
  .distribution-copy .button { width: 100%; }

  .distribution-visual {
    width: 100%;
    aspect-ratio: 1.2 / 1;
    border-radius: 18px 4px 18px 4px;
  }

  .distribution-visual::after {
    top: 14px;
    right: 14px;
    padding: 6px 8px;
    font-size: 9px;
  }

  .distribution-visual img { width: 205%; }

  .distribution-visual figcaption {
    left: 14px;
    right: 14px;
    bottom: 14px;
    min-height: 78px;
    padding: 14px 15px;
  }

  .distribution-visual figcaption strong { font-size: 16px; }
  .distribution-visual figcaption span { font-size: 11px; }

  .flow-steps {
    grid-template-columns: 1fr;
    border-bottom: 0;
  }

  .flow-steps article,
  .flow-steps article:first-child,
  .flow-steps article:last-child {
    min-height: auto;
    padding: 26px 0 28px;
    grid-template-columns: 42px 1fr;
    column-gap: 16px;
    border-top: 1px solid #d7e4ef;
    border-right: 0;
    border-bottom: 0;
  }

  .flow-index { margin-bottom: 18px; }

  .flow-steps i {
    width: 42px;
    height: 42px;
    font-size: 19px;
  }

  .flow-steps h3 { font-size: 19px; }
  .flow-steps p { font-size: 12.5px; }
}
.wifi-strip-specs {
  position: relative;
  z-index: 2;
  grid-area: specs;
  max-width: 680px;
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(5, minmax(86px, 1fr));
  gap: 10px;
}
.wifi-strip-specs div {
  min-height: 68px;
  padding: 12px 10px;
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  column-gap: 6px;
  row-gap: 3px;
  border: 1px solid rgba(199, 219, 238, .82);
  border-radius: 8px;
  background: rgba(255, 255, 255, .72);
}
.wifi-strip-specs i {
  grid-row: 1 / 3;
  color: var(--blue);
  font-size: 17px;
}
.wifi-strip-specs strong {
  color: #1c334b;
  font-size: 12px;
  font-weight: 760;
}
.wifi-strip-specs span {
  color: #4f5f72;
  font-size: 10px;
  white-space: nowrap;
}

.wifi-detail {
  position: relative;
  overflow: hidden;
  padding: 86px 0;
  background:
    radial-gradient(circle at 78% 12%, rgba(18, 105, 199, .11), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 46%, #eef7ff 100%);
}
.wifi-detail::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(37, 124, 215, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 124, 215, .045) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, transparent 0%, #000 12%, #000 92%, transparent 100%);
}
.wifi-detail-shell {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 26px;
}
.wifi-detail-combo {
  padding: 30px;
  display: grid;
  gap: 28px;
  border: 1px solid rgba(190, 216, 239, .84);
  border-radius: 8px;
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 24px 70px rgba(45, 89, 130, .12);
}
.wifi-detail-hero,
.wifi-detail-band {
  display: grid;
  grid-template-columns: minmax(470px, 1.1fr) minmax(0, .9fr);
  align-items: center;
  gap: 42px;
}
.wifi-detail-band {
  padding: 30px;
  border: 1px solid rgba(190, 216, 239, .84);
  border-radius: 8px;
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 22px 64px rgba(45, 89, 130, .1);
}
.wifi-detail-media {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(204, 222, 239, .9);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 52px rgba(34, 73, 110, .1);
}
.wifi-detail-media img {
  display: block;
  width: 100%;
  height: auto;
}
.wifi-detail-product-stage img {
  aspect-ratio: 1.78 / 1;
  object-fit: cover;
}
.wifi-detail-badges {
  position: absolute;
  left: 18px;
  bottom: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.wifi-detail-badges span,
.wifi-detail-scenarios span,
.wifi-detail-terminal-list span {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(178, 210, 239, .85);
  border-radius: 999px;
  background: rgba(255, 255, 255, .9);
  color: #21415f;
  font-size: 12px;
  font-weight: 780;
}
.wifi-detail-badges span {
  padding: 7px 12px;
}
.wifi-detail-copy h2,
.wifi-detail-copy h3 {
  margin: 0;
  color: #101a2b;
  font-weight: 850;
  line-height: 1.15;
  letter-spacing: 0;
}
.wifi-detail-copy h2 {
  font-size: 46px;
}
.wifi-detail-copy h3 {
  font-size: 34px;
}
.wifi-detail-copy p:not(.eyebrow) {
  margin: 18px 0 0;
  color: #4f6176;
  font-size: 14px;
  line-height: 1.86;
}
.wifi-detail-scenarios,
.wifi-detail-terminal-list {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.wifi-detail-scenarios span,
.wifi-detail-terminal-list span {
  padding: 7px 14px;
}
.iot-scenario-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.iot-scenario-grid article {
  min-width: 0;
  min-height: 76px;
  padding: 14px;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(196, 220, 241, .92);
  border-radius: 8px;
  background: rgba(249, 252, 255, .92);
}
.iot-scenario-grid i {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #eaf5ff;
  color: #1269c7;
  font-size: 18px;
}
.iot-scenario-grid strong,
.iot-scenario-grid span {
  display: block;
  letter-spacing: 0;
}
.iot-scenario-grid strong {
  color: #17283c;
  font-size: 14px;
  font-weight: 850;
  line-height: 1.35;
}
.iot-scenario-grid span {
  margin-top: 4px;
  color: #65778a;
  font-size: 11px;
  line-height: 1.55;
}
.wifi-detail-scenarios span:first-child {
  border-color: rgba(225, 188, 132, .9);
  color: #7f5a22;
  background: #fff8ec;
}
.wifi-detail-device-pair,
.wifi-detail-mini-grid {
  display: grid;
  gap: 12px;
}
.wifi-detail-device-pair {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 24px;
}
.wifi-detail-device-pair div,
.wifi-detail-mini-grid div {
  border: 1px solid rgba(205, 223, 240, .9);
  border-radius: 8px;
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 14px 38px rgba(34, 73, 110, .07);
}
.wifi-detail-device-pair div,
.wifi-detail-mini-grid div {
  padding: 16px;
}
.wifi-detail-device-pair strong,
.wifi-detail-mini-grid strong {
  display: block;
  color: #17324f;
  font-size: 15px;
  font-weight: 850;
  line-height: 1.25;
}
.wifi-detail-device-pair span,
.wifi-detail-mini-grid span {
  display: block;
  margin-top: 7px;
  color: #657789;
  font-size: 12px;
  line-height: 1.6;
}
.wifi-detail-support {
  padding-top: 0;
  display: grid;
  gap: 22px;
  border-top: 0;
}
.wifi-detail-copy.compact h3 {
  font-size: 32px;
}
.wifi-detail-band {
  grid-template-columns: minmax(0, 1fr) minmax(480px, 1.08fr);
}
.wifi-detail-band > .wifi-detail-media img {
  aspect-ratio: 3 / 2;
  object-fit: cover;
}
.wifi-detail-band-flip {
  grid-template-columns: minmax(460px, 1.08fr) minmax(0, .92fr);
}
.wifi-detail-app-panel {
  padding: 22px;
  display: grid;
  grid-template-columns: minmax(430px, 1.08fr) minmax(0, .92fr);
  align-items: center;
  gap: 34px;
  border: 1px solid rgba(205, 223, 240, .84);
  border-radius: 8px;
  background:
    radial-gradient(circle at 16% 12%, rgba(18, 105, 199, .08), transparent 30%),
    linear-gradient(180deg, rgba(255,255,255,.92), rgba(248,252,255,.88));
}
.wifi-detail-app-panel .wifi-detail-media {
  box-shadow: 0 18px 46px rgba(34, 73, 110, .09);
}
.wifi-detail-app-panel .wifi-detail-media img {
  aspect-ratio: 1.34 / 1;
  object-fit: cover;
}
.wifi-detail-mini-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 24px;
}
.capabilities {
  padding: 82px 0 76px;
  background:
    linear-gradient(180deg, #fff 0%, #f6fbff 100%);
}
.capabilities-shell {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(420px, 1.14fr);
  align-items: center;
  gap: 34px;
}
.capability-copy {
  min-width: 0;
}
.capability-copy h2 {
  max-width: 650px;
  margin: 0;
  color: #101a2b;
  font-size: 46px;
  font-weight: 840;
  line-height: 1.16;
  letter-spacing: 0;
}
.capability-copy > p:not(.eyebrow) {
  max-width: 570px;
  margin: 22px 0 0;
  color: #586b80;
  font-size: 15px;
  line-height: 1.9;
}
.capability-summary {
  max-width: 560px;
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.capability-summary div {
  min-height: 88px;
  padding: 17px 18px;
  border: 1px solid rgba(194, 218, 239, .9);
  border-radius: 8px;
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 18px 44px rgba(38, 84, 125, .08);
}
.capability-summary strong {
  display: block;
  color: var(--blue);
  font-size: 21px;
  font-weight: 840;
  line-height: 1.2;
}
.capability-summary span {
  display: block;
  margin-top: 8px;
  color: #54677d;
  font-size: 12px;
  line-height: 1.62;
}
.capability-media {
  position: relative;
  min-width: 0;
  margin: 0;
  padding: 10px;
  border: 1px solid rgba(190, 216, 239, .86);
  border-radius: 8px;
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 26px 70px rgba(48, 91, 132, .13);
}
.capability-media::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(18, 105, 199, .16), rgba(15, 159, 143, .1));
  filter: blur(30px);
  transform: translateY(18px);
}
.capability-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 6px;
}
.capability-list {
  grid-column: 1 / -1;
  margin-top: 4px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid rgba(198, 218, 237, .88);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 18px 54px rgba(48, 91, 132, .08);
}
.capability-item {
  min-height: 154px;
  padding: 24px 24px;
  display: grid;
  grid-template-columns: 46px 1fr;
  align-items: flex-start;
  gap: 16px;
  border-right: 1px solid rgba(210, 225, 239, .92);
  background: rgba(255, 255, 255, .64);
}
.capability-item:last-child { border-right: 0; }
.capability-item i {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(181, 211, 237, .9);
  border-radius: 8px;
  color: var(--blue);
  background: linear-gradient(180deg, #f8fcff, #eaf4ff);
  font-size: 23px;
}
.capability-item h3 {
  margin: 1px 0 10px;
  color: #152238;
  font-size: 16px;
  font-weight: 820;
  letter-spacing: 0;
}
.capability-item p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.78;
}

.credentials {
  overflow: hidden;
  padding: 82px 0;
  background: linear-gradient(180deg, #f7fbff 0%, #edf6ff 100%);
}
.credentials-unified {
  display: grid;
  gap: 30px;
}
.credentials-header {
  padding-bottom: 30px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 390px);
  align-items: end;
  gap: 36px;
  border-bottom: 1px solid rgba(188, 215, 238, .9);
}
.credentials-heading {
  max-width: 760px;
}
.credentials-title-row {
  display: flex;
  align-items: center;
  gap: 0;
}
.credentials-heading h2 {
  margin: 0;
  font-size: 46px;
  font-weight: 850;
  line-height: 1.17;
  letter-spacing: 0;
}
.credentials-heading > p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.82;
}
.credential-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.credential-stats div {
  min-height: 82px;
  padding: 14px 12px;
  border: 1px solid rgba(184, 210, 234, .92);
  border-radius: 8px;
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 12px 28px rgba(44, 91, 132, .06);
}
.credential-stats strong {
  display: block;
  color: var(--blue);
  font-size: 34px;
  font-weight: 820;
  line-height: 1;
}
.credential-stats span {
  display: block;
  margin-top: 8px;
  color: #53657a;
  font-size: 11px;
  line-height: 1.45;
}
.credential-evidence-grid {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  align-items: start;
  gap: 28px;
}
.credential-group {
  min-width: 0;
}
.credential-group-heading h3 {
  margin: 0;
  color: #13253a;
  font-size: 24px;
  font-weight: 850;
  line-height: 1.25;
  letter-spacing: 0;
}
.credential-group-heading p {
  margin: 8px 0 0;
  color: #65778a;
  font-size: 12px;
  line-height: 1.65;
}
.credential-company-grid {
  margin-top: 18px;
  display: grid;
  gap: 14px;
}
.credential-key-grid {
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.credential-card {
  min-width: 0;
  min-height: 210px;
  position: relative;
  padding: 42px 14px 14px;
  border: 1px solid rgba(211, 225, 239, .88);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255, 255, 255, .9);
  cursor: pointer;
  box-shadow: 0 16px 38px rgba(40, 78, 115, .07);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.credential-card-feature {
  min-height: 350px;
  padding: 46px 22px 18px;
}
.credential-card-key { min-height: 210px; }
.credential-card-soft { min-height: 260px; }
.credential-card:hover,
.credential-card.active,
.credential-product-visual:hover {
  transform: translateY(-5px);
  border-color: #97bfdf;
  background: #fff;
  box-shadow: 0 24px 52px rgba(51, 89, 125, .15);
}
.credential-card small {
  position: absolute;
  top: 14px;
  left: 14px;
  min-height: 22px;
  padding: 5px 10px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  color: #1c649f;
  background: #edf6ff;
  font-size: 10px;
  font-weight: 820;
  line-height: 1;
}
.credential-card img {
  width: 100%;
  height: 120px;
  object-fit: contain;
  background: #fff;
}
.credential-card-feature img {
  height: 260px;
}
.credential-card-key img {
  height: 120px;
}
.credential-card-soft img {
  height: 170px;
}
.credential-card span {
  min-height: 34px;
  padding: 12px 2px 0;
  display: block;
  color: #34495e;
  font-size: 11px;
  font-weight: 760;
  line-height: 1.45;
  text-align: center;
}
.credential-product-visual {
  width: 100%;
  margin-top: 18px;
  padding: 0;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(201, 220, 238, .92);
  border-radius: 8px;
  color: #1d3854;
  background: #fff;
  cursor: pointer;
  box-shadow: 0 18px 46px rgba(40, 78, 115, .09);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.credential-product-visual img {
  display: block;
  width: 100%;
  height: 300px;
  object-fit: contain;
  background: #f8fbfe;
}
.credential-product-visual span {
  min-height: 44px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  border-top: 1px solid rgba(211, 225, 239, .88);
  color: #1d3854;
  background: #fff;
  font-size: 12px;
  font-weight: 820;
}
.credential-product-list {
  margin-top: 14px;
  display: grid;
  gap: 10px;
}
.credential-product-list > div {
  min-height: 70px;
  padding: 12px 14px;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(201, 220, 238, .92);
  border-radius: 8px;
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 12px 30px rgba(40, 78, 115, .05);
}
.credential-product-list i {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--blue);
  background: #eaf5ff;
  font-size: 18px;
}
.credential-product-list span,
.credential-product-list strong,
.credential-product-list small {
  display: block;
  letter-spacing: 0;
}
.credential-product-list strong {
  color: #17324f;
  font-size: 14px;
  font-weight: 850;
  line-height: 1.35;
}
.credential-product-list small {
  margin-top: 4px;
  color: #657789;
  font-size: 11px;
  line-height: 1.55;
}
.credential-software {
  padding-top: 30px;
  border-top: 1px solid rgba(188, 215, 238, .9);
}
.credential-soft-grid {
  min-width: 0;
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.credential-rail-shell {
  min-width: 0;
  margin-top: 18px;
}
.credential-rail-meta {
  min-height: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #7b8ea1;
  font-size: 11px;
  font-weight: 760;
}
.credential-rail-meta > span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.credential-rail-meta i {
  color: var(--blue);
  font-size: 14px;
}
.credential-rail-controls {
  display: flex;
  gap: 6px;
}
.credential-rail-controls button {
  width: 30px;
  height: 30px;
  padding: 0;
  display: grid;
  place-items: center;
  border: 1px solid rgba(184, 210, 234, .95);
  border-radius: 50%;
  color: #376184;
  background: rgba(255, 255, 255, .9);
  cursor: pointer;
  transition: color .2s ease, border-color .2s ease, background .2s ease, transform .2s ease;
}
.credential-rail-controls button:hover,
.credential-rail-controls button:focus-visible {
  border-color: #87b9e2;
  color: var(--blue);
  background: #fff;
  outline: 3px solid rgba(18, 105, 199, .34);
  outline-offset: 2px;
  transform: translateY(-1px);
}
.credential-rail-controls button:disabled {
  cursor: not-allowed;
  opacity: .35;
  transform: none;
}
.credential-scroll-track,
.credential-product-rail {
  min-width: 0;
  margin-top: 0;
  padding: 4px 3px 14px;
  display: flex;
  gap: 14px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}
.credential-scroll-track > .credential-card {
  flex: 0 0 calc((100% - 28px) / 3);
  min-height: 300px;
  scroll-snap-align: start;
}
.credential-scroll-track > .credential-card img {
  height: 180px;
}
.credential-scroll-track > .credential-card-feature {
  min-height: 328px;
  padding: 42px 16px 16px;
}
.credential-scroll-track > .credential-card-feature img {
  height: 226px;
}
.credential-scroll-track > .credential-card-key {
  min-height: 300px;
  padding: 42px 14px 14px;
}
.credential-product-rail > * {
  flex: 0 0 86%;
  min-width: 0;
  scroll-snap-align: start;
}
.credential-product-rail .credential-product-visual {
  margin-top: 0;
}
.credential-product-list-card {
  min-height: 300px;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(201, 220, 238, .92);
  border-radius: 8px;
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 12px 30px rgba(40, 78, 115, .05);
}
.credential-product-list-card > i {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--blue);
  background: #eaf5ff;
  font-size: 21px;
}
.credential-product-list-card span,
.credential-product-list-card strong,
.credential-product-list-card small {
  display: block;
  letter-spacing: 0;
}
.credential-product-list-card strong {
  color: #17324f;
  font-size: 14px;
  font-weight: 850;
  line-height: 1.35;
}
.credential-product-list-card small {
  margin-top: 6px;
  color: #657789;
  font-size: 11px;
  line-height: 1.6;
}
.credential-soft-grid {
  margin-top: 0;
}
.credential-soft-grid > .credential-card {
  flex: 0 0 calc((100% - 32px) / 3);
  scroll-snap-align: start;
}
.partners {
  padding: 82px 0 76px;
  background: #fff;
}
.partners-shell {
  display: grid;
  gap: 30px;
}
.section-shell.partners-shell {
  width: min(1240px, calc(100% - 56px));
}
.partners-shell > *,
.partners-heading,
.partner-groups,
.partner-group,
.partner-grid,
.benefit-brand-library,
.benefit-brand-heading,
.partner-tabs,
.partner-library-grid {
  min-width: 0;
}
.partners-heading {
  display: grid;
  grid-template-columns: minmax(260px, .72fr) minmax(0, 1.28fr);
  align-items: end;
  gap: 36px;
}
.partners-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -20px;
}
.partners-heading h2 {
  margin: 0;
  color: #111d2e;
  font-size: 46px;
  font-weight: 850;
  line-height: 1.16;
  letter-spacing: 0;
}
.partners-heading > p:last-child {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.82;
}
.partner-groups {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.partner-group {
  padding: 14px 16px;
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  align-items: center;
  align-content: start;
  gap: 16px;
  border: 1px solid rgba(205, 222, 238, .88);
  border-radius: 14px;
  background: linear-gradient(145deg, #fbfdff 0%, #f6faff 100%);
}
.partner-group-title {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}
.partner-group-title > i {
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--blue);
  background: #eaf5ff;
  font-size: 19px;
}
.partner-group-title h3,
.partner-group-title span {
  display: block;
  letter-spacing: 0;
}
.partner-group-title h3 {
  margin: 0;
  color: #17324f;
  font-size: 15px;
  font-weight: 850;
  line-height: 1.35;
}
.partner-group-title span {
  margin-top: 4px;
  color: #7a8a9c;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.35;
}
.partner-grid {
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(132px, 1fr));
  gap: 10px;
}
.partner-grid-automakers {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}
.partner-group-automakers,
.partner-group-intelligence {
  grid-column: auto;
}
.partner-item {
  min-width: 0;
  min-height: 62px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(205, 222, 238, .9);
  border-radius: 8px;
  color: #263b51;
  background: #fbfdff;
  font-size: 12px;
  font-weight: 780;
  line-height: 1.35;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.partner-item:hover {
  transform: translateY(-2px);
  border-color: #9dc5e7;
  background: #fff;
  box-shadow: 0 12px 28px rgba(40, 78, 115, .09);
}
.partner-logo {
  --partner-logo-width: 28px;
  --partner-logo-height: 28px;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(217, 229, 240, .95);
  border-radius: 8px;
  background: #fff;
}
.partner-logo img {
  display: block;
  width: var(--partner-logo-width);
  height: var(--partner-logo-height);
  object-fit: contain;
}
.partner-logo img[src$=".jpg"] {
  border-radius: 6px;
}
.partner-logo-wide {
  --partner-logo-width: 34px;
  --partner-logo-height: 22px;
}
.partner-logo-symbol-crop {
  padding-left: 4px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  box-sizing: border-box;
}
.partner-logo-symbol-crop img {
  width: auto;
  max-width: none;
  height: var(--partner-logo-height);
  flex: 0 0 auto;
}
.partner-logo-unicom-symbol {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.partner-logo-unicom-symbol img {
  width: 56px;
  max-width: none;
  height: 56px;
  flex: 0 0 auto;
  object-fit: cover;
  transform: translateY(-1px);
}
.benefit-brand-library {
  margin-top: 12px;
  padding: 36px;
  border: 1px solid rgba(196, 218, 237, .9);
  border-radius: 14px;
  box-shadow: 0 18px 46px rgba(25, 75, 120, .06);
  background:
    linear-gradient(135deg, rgba(236, 247, 255, .72), rgba(255, 255, 255, .96) 42%),
    #fff;
}
.benefit-brand-heading {
  display: grid;
  grid-template-columns: minmax(340px, .86fr) minmax(0, 1.14fr);
  align-items: end;
  gap: 44px;
}
.benefit-brand-heading .eyebrow {
  margin: 0 0 8px;
}
.benefit-brand-heading h3 {
  margin: 0;
  color: #111d2e;
  font-size: 30px;
  font-weight: 850;
  line-height: 1.3;
  letter-spacing: 0;
}
.benefit-brand-heading-side {
  min-width: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
}
.benefit-brand-heading-side > p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.72;
}
.benefit-brand-summary {
  min-width: 156px;
  padding-left: 20px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: baseline;
  column-gap: 8px;
  border-left: 1px solid rgba(196, 218, 237, .9);
}
.benefit-brand-summary strong {
  color: var(--blue);
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.04em;
}
.benefit-brand-summary strong span {
  font-size: 17px;
}
.benefit-brand-summary > span {
  color: #38536d;
  font-size: 11px;
  font-weight: 850;
}
.benefit-brand-summary em {
  grid-column: 1 / -1;
  margin-top: 5px;
  color: #8a9aac;
  font-size: 10px;
  font-style: normal;
  line-height: 1.4;
}
.partner-tabs {
  width: 100%;
  max-width: 100%;
  margin-top: 30px;
  padding: 5px 5px 10px;
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scrollbar-width: thin;
  border-bottom: 1px solid rgba(211, 225, 239, .84);
}
.partner-tab {
  min-height: 44px;
  padding: 9px 15px;
  flex: 0 0 auto;
  border: 1px solid #c9deef;
  border-radius: 10px;
  color: #38536d;
  background: #fff;
  font: inherit;
  font-size: 12px;
  font-weight: 780;
  line-height: 1;
  cursor: pointer;
  transition: color .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.partner-tab span {
  min-width: 20px;
  height: 20px;
  margin-left: 5px;
  padding: 0 5px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  color: #7890a7;
  background: #eef5fb;
  font-size: 10px;
  font-weight: 850;
}
.partner-tab:hover,
.partner-tab:focus-visible {
  border-color: #82b8e3;
  outline: 3px solid rgba(18, 105, 199, .34);
  outline-offset: 2px;
}
.partner-tab.active {
  border-color: var(--blue);
  color: #fff;
  background: var(--blue);
  box-shadow: 0 8px 18px rgba(21, 111, 203, .16);
}
.partner-tab.active span {
  color: rgba(255, 255, 255, .74);
  background: rgba(255, 255, 255, .16);
}
.partner-library-grid {
  min-height: 0;
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  align-content: start;
  gap: 14px;
}
.partner-library-item {
  min-height: 78px;
  padding: 14px 16px;
  gap: 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, .92);
  font-size: 13px;
  box-shadow: 0 5px 15px rgba(28, 74, 115, .035);
}
.partner-library-item > span:last-child {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.partner-library-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(40, 78, 115, .1);
}
.partner-library-item .partner-logo {
  width: 46px;
  height: 46px;
  border-radius: 12px;
}
.partner-library-item .partner-logo img {
  width: 32px;
  height: 32px;
  border-radius: 8px;
}
.partner-library-item[hidden] {
  display: none;
}
.site-footer {
  padding: 34px max(28px, calc((100vw - 1240px) / 2)) 18px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  color: #59697b;
  background:
    linear-gradient(180deg, #fff 0%, #f8fbff 100%);
  font-size: 12px;
}
.footer-main {
  display: grid;
  grid-template-columns: 1fr;
}
.footer-brand {
  min-width: 0;
  padding: 22px 0 14px;
  display: grid;
  grid-template-columns: 160px;
  align-items: center;
  gap: 46px;
  border-bottom: 0;
}
.footer-brand p {
  width: 100%;
  max-width: none;
  margin: 0;
  color: #2e4a65;
  font-size: clamp(22px, 1.65vw, 30px);
  font-weight: 680;
  line-height: 1.55;
  text-wrap: balance;
}
.copyright {
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 14px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 18px;
  border-top: 1px solid var(--line);
  color: #99a6b3;
  font-size: 11px;
  line-height: 1.7;
}
.copyright a {
  color: #64788d;
  transition: color .2s ease;
}
.copyright a:hover {
  color: var(--blue);
}
/* Footer content centered as a single visual group. */
.site-footer .footer-main {
  justify-items: center;
}
.site-footer .footer-brand {
  width: 100%;
  grid-template-columns: minmax(0, 160px);
  justify-content: center;
  justify-items: center;
  text-align: center;
}
.site-footer .footer-brand img {
  object-position: center;
}
.site-footer .copyright {
  justify-content: center;
  text-align: center;
}
.back-to-top {
  position: fixed;
  z-index: 45;
  right: 22px;
  bottom: 24px;
  width: 46px;
  height: 46px;
  padding: 0;
  display: grid;
  place-items: center;
  border: 1px solid rgba(143, 188, 226, .9);
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), #0c7bd8);
  box-shadow: 0 14px 34px rgba(18, 105, 199, .24);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity .2s ease, transform .2s ease, box-shadow .2s ease;
}
.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.back-to-top:hover {
  box-shadow: 0 18px 40px rgba(18, 105, 199, .32);
  transform: translateY(-2px);
}

dialog { color: var(--ink); }
dialog::backdrop {
  background: rgba(8, 18, 29, .46);
  backdrop-filter: blur(8px);
}
.dialog-close {
  position: absolute;
  z-index: 5;
  top: 18px;
  right: 18px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: var(--ink);
  background: rgba(222, 232, 241, .78);
  cursor: pointer;
}
.contact-dialog,
.credential-dialog {
  width: min(760px, calc(100% - 28px));
  max-height: calc(100svh - 28px);
  padding: 52px;
  overflow: auto;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 24px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 30px 110px rgba(21, 31, 45, .22);
}
.dialog-copy h2 { font-size: 56px; }
.dialog-copy > p:last-child { margin: 20px 0 0; }
.contact-dialog form {
  margin-top: 34px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.contact-dialog label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 760;
}
.contact-dialog input,
.contact-dialog select,
.contact-dialog textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  outline: none;
  padding: 13px 14px;
  color: var(--ink);
  background: #f8fbfe;
  font-size: 14px;
}
.contact-dialog input:focus,
.contact-dialog select:focus,
.contact-dialog textarea:focus {
  border-color: #8dbce8;
  box-shadow: 0 0 0 4px rgba(53, 136, 215, .12);
}
.contact-dialog textarea {
  min-height: 100px;
  resize: vertical;
}
.full { grid-column: 1 / -1; }
.form-note {
  margin: -4px 0 0;
  color: var(--muted);
  text-align: center;
  font-size: 11px;
}
.form-note.is-warning {
  color: #9a5c0a;
  font-weight: 700;
}
.form-note.is-success {
  color: #08784a;
  font-weight: 700;
}
.form-note.is-error {
  color: #b42318;
  font-weight: 700;
}
.form-trap {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.contact-dialog button[type="submit"]:disabled {
  cursor: wait;
  opacity: .68;
}
.credential-dialog { text-align: center; }
.credential-dialog .eyebrow { justify-content: center; }
.credential-dialog h2 {
  margin: 0 0 25px;
  font-size: 25px;
}
.credential-dialog img {
  max-height: 65svh;
  margin: auto;
  object-fit: contain;
}
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.service-card:nth-child(2),
.capability-item:nth-child(2) { transition-delay: .06s; }
.service-card:nth-child(3),
.capability-item:nth-child(3) { transition-delay: .12s; }
.service-card:nth-child(4),
.capability-item:nth-child(4) { transition-delay: .18s; }

@keyframes product-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@media (max-width: 1120px) {
  .nav-links { gap: 24px; }
  .hero-shell {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .hero-copy {
    max-width: 640px;
    margin: auto;
    padding: 62px 0 12px;
    text-align: center;
  }
  .hero h1 { font-size: 56px; }
  .hero-copy > p { margin-left: auto; margin-right: auto; }
  .hero-actions,
  .hero-proof-list { justify-content: center; }
  .hero-proof-list { margin: 36px auto 0; }
  .hero-visual {
    min-height: 390px;
    align-self: auto;
  }
  .hero-stage { width: min(720px, 100%); }
  .metrics div { padding: 0 24px; }
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .capabilities-shell {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .capability-copy {
    max-width: 760px;
  }
  .capability-media {
    width: min(860px, 100%);
  }
  .capability-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .distribution-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .distribution-copy {
    max-width: 680px;
  }
  .distribution-visual {
    width: min(900px, 100%);
  }
  .flow-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .wifi-strip {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "showcase"
      "specs";
    row-gap: 30px;
  }
  .wifi-strip-copy {
    max-width: 680px;
  }
  .wifi-product-showcase {
    width: min(900px, 100%);
  }
  .wifi-detail {
    padding: 70px 0;
  }
  .wifi-detail-hero,
  .wifi-detail-band,
  .wifi-detail-band-flip,
  .wifi-detail-app-panel {
    grid-template-columns: 1fr;
  }
  .wifi-detail-copy {
    max-width: 720px;
  }
  .wifi-detail-media {
    width: min(900px, 100%);
  }
  .capability-item {
    border-right: 0;
    border-bottom: 1px solid rgba(210, 225, 239, .92);
  }
  .capability-item:nth-child(odd) { border-right: 1px solid rgba(210, 225, 239, .92); }
  .capability-item:nth-child(3),
  .capability-item:nth-child(4) { border-bottom: 0; }
  .credentials-header {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .credential-stats {
    width: min(420px, 100%);
  }
  .credential-evidence-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .credential-key-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .credential-soft-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .partner-group {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .partner-grid {
    grid-template-columns: repeat(auto-fit, minmax(124px, 1fr));
  }
  .partner-grid-automakers {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .partner-library-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .site-footer {
    grid-template-columns: 1fr;
  }
  .footer-main {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .footer-brand {
    grid-template-columns: 140px minmax(0, 1fr);
    gap: 32px;
  }
  .footer-brand p {
    font-size: 20px;
  }
}

@media (min-width: 901px) and (max-width: 1120px) {
  .hero-shell {
    grid-template-columns: minmax(0, .82fr) minmax(0, 1fr);
    gap: 26px;
  }
  .hero-copy {
    max-width: none;
    margin: 0;
    padding: 54px 0 48px;
    text-align: left;
  }
  .hero h1 {
    font-size: 48px;
  }
  .hero-actions,
  .hero-proof-list {
    justify-content: flex-start;
  }
  .hero-proof-list {
    margin: 32px 0 0;
  }
  .hero-visual {
    min-height: 540px;
    align-self: stretch;
  }
  .hero-stage {
    width: min(620px, 100%);
  }
}

@media (max-width: 760px) {
  html { scroll-padding-top: 72px; }
  .site-header {
    background: rgba(255, 255, 255, .93);
    backdrop-filter: blur(16px);
  }
  .nav-shell {
    width: calc(100% - 28px);
    height: 62px;
    grid-template-columns: 1fr auto auto;
    gap: 12px;
  }
  .brand img {
    width: 126px;
    height: 30px;
  }
  .menu-toggle {
    width: 44px;
    height: 44px;
    padding: 0;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 50%;
    color: var(--blue);
    background: var(--blue-soft);
    font-size: 22px;
    cursor: pointer;
  }
  .nav-cta {
    min-height: 44px;
    padding: 0 14px;
    font-size: 11px;
  }
  .nav-links {
    position: fixed;
    z-index: 2;
    top: 62px;
    left: 0;
    right: 0;
    width: 100%;
    max-height: calc(100svh - 62px);
    padding: 10px 22px 20px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-self: stretch;
    gap: 0;
    overflow-y: auto;
    border-top: 1px solid var(--line);
    background: rgba(255, 255, 255, .98);
    box-shadow: 0 24px 48px rgba(18, 51, 84, .14);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  }
  .nav-links.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }
  .nav-links a {
    min-height: 52px;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    font-size: 18px;
  }
  .nav-links a:last-child { border-bottom: 0; }
  .nav-links a::after { display: none; }
  body.menu-open::before {
    content: "";
    position: fixed;
    z-index: 40;
    inset: 62px 0 0;
    background: rgba(9, 26, 43, .24);
    backdrop-filter: blur(2px);
  }
  .hero {
    min-height: auto;
    padding-top: 62px;
  }
  .hero-shell,
  .section-shell {
    width: min(100% - 30px, 620px);
  }
  .section-shell.partners-shell {
    width: min(100% - 30px, 620px);
  }
  .hero-copy {
    padding: 38px 0 6px;
  }
  .hero h1 {
    font-size: 38px;
  }
  .hero-copy > p {
    font-size: 14px;
    line-height: 1.72;
  }
  .hero-actions {
    flex-direction: column;
    gap: 10px;
  }
  .hero-actions .button {
    width: 100%;
  }
  .hero-proof-list {
    margin-top: 20px;
    gap: 8px;
  }
  .hero-proof-list span {
    min-height: 32px;
    font-size: 11px;
  }
  .hero-visual {
    min-height: 270px;
  }
  .hero-stage {
    width: 100%;
    aspect-ratio: 1.32;
  }
  .hero-wifi-device {
    left: 0;
    bottom: 9%;
    width: 73%;
    padding: 8px;
    border-radius: 20px;
  }
  .hero-wifi-device img {
    width: 100%;
    margin: 0;
    border-radius: 13px;
  }
  .hero-business-stack {
    right: 0;
    bottom: 8%;
    width: 38%;
    gap: 8px;
  }
  .hero-flow-card {
    min-height: 58px;
    padding: 9px 10px;
    border-radius: 12px;
  }
  .hero-flow-card span {
    font-size: 10px;
  }
  .hero-flow-card strong {
    font-size: 12px;
  }
  .metrics {
    padding: 18px 15px;
    grid-template-columns: repeat(2, 1fr);
  }
  .metrics div {
    min-height: 78px;
    padding: 14px 10px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .metrics div:nth-child(odd) { border-right: 1px solid var(--line); }
  .metrics div:nth-child(3),
  .metrics div:nth-child(4) { border-bottom: 0; }
  .metrics i { font-size: 25px; }
  .metrics strong { font-size: 24px; }
  .section {
    padding: 64px 0;
  }
  .section-heading {
    margin-bottom: 34px;
  }
  .section-heading h2,
  .wifi-strip h2 {
    font-size: 34px;
  }
  .service-grid {
    grid-template-columns: 1fr;
  }
  .service-network {
    grid-column: auto;
    min-height: auto;
    padding-bottom: 24px;
  }
  .service-card {
    min-height: auto;
    padding: 24px;
  }
  .service-benefits {
    min-height: auto;
    padding-bottom: 24px;
  }
  .service-network.service-card {
    padding-bottom: 24px;
  }
  .service-detail-list {
    max-width: none;
    margin-top: 18px;
  }
  .benefit-resource-grid {
    margin-top: 18px;
  }
  .benefit-flow {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .benefit-scenario-tags {
    margin-top: 16px;
  }
  .distribution-copy h2 {
    font-size: 34px;
  }
  .distribution-copy p:not(.eyebrow) {
    font-size: 14px;
  }
  .solution-proof {
    margin-bottom: 22px;
  }
  .distribution-visual {
    padding: 8px;
  }
  .distribution-visual::before {
    inset: 16px;
    filter: blur(22px);
  }
  .distribution-visual figcaption {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    margin: 8px 0 0;
    min-height: auto;
  }
  .flow-steps {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .flow-steps::before {
    left: 42px;
    right: auto;
    top: 40px;
    bottom: 40px;
    width: 2px;
    height: auto;
    background: linear-gradient(180deg, rgba(18,105,199,.2), rgba(15,159,143,.24), rgba(241,165,26,.25), rgba(45,64,89,.22));
  }
  .flow-steps article {
    min-height: auto;
    padding: 20px;
    grid-template-columns: 44px 1fr;
    column-gap: 14px;
  }
  .flow-steps article::after {
    right: auto;
    left: 33px;
    top: auto;
    bottom: -10px;
    transform: rotate(135deg);
  }
  .flow-steps article:last-child::after { display: none; }
  .flow-index {
    grid-column: 1 / -1;
  }
  .flow-steps i {
    margin-top: 2px;
    width: 42px;
    height: 42px;
    font-size: 20px;
  }
  .flow-steps article > div {
    margin-top: 2px;
  }
  .flow-steps h3 {
    font-size: 18px;
  }
  .flow-steps small {
    min-height: auto;
  }
  .capabilities {
    padding: 58px 0;
  }
  .capability-copy h2 {
    font-size: 34px;
  }
  .capability-copy > p:not(.eyebrow) {
    margin-top: 18px;
    font-size: 14px;
  }
  .capability-summary {
    grid-template-columns: 1fr;
    margin-top: 22px;
  }
  .capability-media {
    padding: 8px;
  }
  .capability-media::before {
    inset: 16px;
    filter: blur(22px);
  }
  .capability-list {
    grid-template-columns: 1fr;
  }
  .capability-item,
  .capability-item:first-child,
  .capability-item:last-child {
    min-height: auto;
    padding: 20px;
    border-right: 0;
    border-bottom: 1px solid rgba(210, 225, 239, .92);
  }
  .capability-item:nth-child(odd) { border-right: 0; }
  .capability-item:last-child { border-bottom: 0; }
  .wifi-strip {
    min-height: 0;
    padding: 54px 15px 28px;
  }
  .wifi-strip::before {
    mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 100%);
  }
  .wifi-strip-copy {
    max-width: none;
  }
  .wifi-strip-copy .button {
    width: 100%;
  }
  .wifi-strip-points {
    gap: 8px;
  }
  .wifi-strip-points span {
    min-height: 32px;
    font-size: 10px;
  }
  .wifi-product-showcase {
    min-height: 0;
    width: 100%;
  }
  .wifi-visual-stage {
    min-height: 0;
    padding: 18px 0 16px;
    display: grid;
    gap: 14px;
    border-radius: 8px;
  }
  .wifi-visual-stage::after,
  .wifi-connection-grid {
    display: none;
  }
  .wifi-combo-image {
    position: relative;
    left: auto;
    bottom: auto;
    width: 100%;
    height: auto;
    aspect-ratio: 1.87;
    margin-left: 0;
    transform: none;
    border-radius: 6px;
    object-fit: cover;
  }
  .wifi-scenario-badges,
  .wifi-runtime-note {
    position: static;
    width: auto;
    margin: 0 16px;
  }
  .wifi-scenario-badges {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .wifi-scenario-badges span {
    justify-content: center;
    border-radius: 8px;
  }
  .wifi-runtime-note {
    min-height: 72px;
  }
  .wifi-strip-specs {
    max-width: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .wifi-strip-specs div {
    min-height: 70px;
  }
  .wifi-detail {
    padding: 52px 0;
  }
  .wifi-detail-shell {
    gap: 18px;
  }
  .wifi-detail-combo,
  .wifi-detail-band {
    padding: 18px;
    gap: 20px;
  }
  .wifi-detail-hero,
  .wifi-detail-app-panel {
    gap: 20px;
  }
  .wifi-detail-app-panel {
    padding: 16px;
  }
  .wifi-detail-copy h2 {
    font-size: 32px;
    line-height: 1.18;
  }
  .wifi-detail-copy h3,
  .wifi-detail-copy.compact h3 {
    font-size: 25px;
  }
  .wifi-detail-copy p:not(.eyebrow) {
    font-size: 13px;
    line-height: 1.76;
  }
  .wifi-detail-device-pair {
    grid-template-columns: 1fr;
  }
  .wifi-detail-mini-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }
  .wifi-detail-mini-grid div {
    min-width: 0;
    padding: 12px;
  }
  .wifi-detail-mini-grid strong {
    font-size: 14px;
  }
  .wifi-detail-mini-grid span {
    font-size: 11px;
    line-height: 1.55;
  }
  .wifi-detail-product-stage img {
    height: auto;
    aspect-ratio: auto;
    object-fit: contain;
  }
  .wifi-detail-badges {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }
  .wifi-detail-scenarios,
  .wifi-detail-terminal-list {
    gap: 8px;
  }
  .wifi-detail-scenarios span,
  .wifi-detail-terminal-list span {
    min-height: 30px;
    padding: 6px 11px;
    font-size: 11px;
  }
  .iot-scenario-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .iot-scenario-grid article {
    min-height: 70px;
    padding: 12px;
  }
  .credentials {
    padding: 52px 0;
  }
  .credentials-unified {
    gap: 24px;
  }
  .credentials-header {
    padding-bottom: 24px;
    gap: 22px;
  }
  .credentials-title-row {
    align-items: flex-start;
    gap: 0;
  }
  .credentials-heading h2 {
    font-size: 36px;
  }
  .credentials-heading > p {
    margin-top: 14px;
    font-size: 13px;
    line-height: 1.72;
  }
  .credential-stats {
    width: 100%;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }
  .credential-stats div {
    min-height: 74px;
    padding: 12px 8px;
  }
  .credential-stats strong {
    font-size: 28px;
  }
  .credential-stats span {
    font-size: 10px;
  }
  .credential-evidence-grid {
    gap: 28px;
  }
  .credential-key-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .credential-group-heading h3 {
    font-size: 21px;
  }
  .credential-card-feature {
    min-height: 300px;
  }
  .credential-card-feature img {
    height: 210px;
  }
  .credential-card-key {
    min-height: 210px;
  }
  .credential-product-visual img {
    height: 230px;
  }
  .credential-product-list > div {
    min-height: 68px;
    padding: 11px 12px;
  }
  .credential-software {
    padding-top: 24px;
  }
  .credential-soft-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .credential-rail-shell {
    margin-top: 14px;
  }
  .credential-rail-meta {
    font-size: 10px;
  }
  .credential-rail-controls button {
    width: 44px;
    height: 44px;
  }
  .credential-scroll-track,
  .credential-product-rail {
    gap: 10px;
    padding-bottom: 12px;
  }
  .credential-scroll-track > .credential-card {
    flex-basis: 100%;
    min-height: 286px;
  }
  .credential-scroll-track > .credential-card-feature {
    min-height: 300px;
  }
  .credential-scroll-track > .credential-card-feature img {
    height: 210px;
  }
  .credential-scroll-track > .credential-card-key {
    min-height: 286px;
  }
  .credential-product-rail > * {
    flex-basis: 88%;
  }
  .credential-product-list-card {
    min-height: 260px;
    padding: 18px;
  }
  .credential-soft-grid > .credential-card {
    flex-basis: 100%;
  }
  .credential-card,
  .credential-card-key,
  .credential-card-soft {
    grid-column: auto;
    grid-row: auto;
    min-height: 220px;
    padding: 38px 12px 12px;
  }
  .credential-card img {
    height: 142px;
  }
  .credential-card-key img,
  .credential-card-soft img {
    height: 142px;
  }
  .credential-card-feature {
    min-height: 300px;
  }
  .credential-card-feature img {
    height: 210px;
  }
  .partners {
    padding: 52px 0 48px;
  }
  .partners-shell {
    gap: 24px;
  }
  .partners-heading {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .partners-heading .eyebrow {
    grid-column: auto;
    margin-bottom: 0;
  }
  .partners-heading h2 {
    font-size: 36px;
  }
  .partners-heading > p:last-child {
    font-size: 13px;
    line-height: 1.72;
  }
  .partner-groups {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .partner-group {
    padding: 16px;
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .partner-group-automakers,
  .partner-group-intelligence {
    grid-column: auto;
  }
  .partner-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }
  .partner-grid-commerce .partner-item:last-child:nth-child(odd) {
    width: calc(50% - 4px);
    grid-column: 1 / -1;
    justify-self: center;
  }
  .partner-grid-automakers {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .partner-item {
    min-height: 58px;
    padding: 9px;
    gap: 8px;
    font-size: 11px;
  }
  .partner-logo {
    --partner-logo-width: 25px;
    --partner-logo-height: 25px;
    width: 34px;
    height: 34px;
  }
  .partner-logo-wide {
    --partner-logo-width: 30px;
    --partner-logo-height: 19px;
  }
  .partner-logo-unicom-symbol img {
    width: 50px;
    height: 50px;
    transform: translateY(1px);
  }
  .benefit-brand-library {
    padding: 24px 18px 20px;
    border-radius: 12px;
  }
  .benefit-brand-heading {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .benefit-brand-heading h3 {
    font-size: 24px;
  }
  .benefit-brand-heading-side {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }
  .benefit-brand-heading-side > p {
    font-size: 14px;
    line-height: 1.7;
  }
  .benefit-brand-summary {
    width: 100%;
    padding: 12px 0 0;
    display: flex;
    align-items: baseline;
    gap: 8px;
    border-top: 1px solid rgba(196, 218, 237, .9);
    border-left: 0;
  }
  .benefit-brand-summary strong {
    font-size: 26px;
  }
  .benefit-brand-summary em {
    margin: 0 0 0 auto;
  }
  .partner-tabs {
    margin-top: 20px;
    padding-bottom: 8px;
  }
  .partner-library-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
  }
  .partner-library-item {
    min-height: 66px;
    padding: 10px;
    gap: 9px;
    font-size: 11px;
  }
  .partner-library-item .partner-logo {
    width: 38px;
    height: 38px;
    border-radius: 10px;
  }
  .partner-library-item .partner-logo img {
    width: 27px;
    height: 27px;
  }
  .dialog-copy h2 {
    font-size: 38px;
  }
  .site-footer {
    padding: 34px 20px 22px;
    grid-template-columns: 1fr;
    gap: 0;
  }
  .footer-main {
    grid-template-columns: 1fr;
  }
  .footer-brand {
    padding: 4px 0 12px;
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .footer-brand p {
    max-width: none;
    font-size: 17px;
    line-height: 1.72;
  }
  .back-to-top {
    right: 16px;
    bottom: 16px;
    width: 44px;
    height: 44px;
  }
  .contact-dialog,
  .credential-dialog {
    padding: 48px 20px 24px;
    border-radius: 20px;
  }
  .contact-dialog form {
    grid-template-columns: 1fr;
  }
  .contact-dialog .full {
    grid-column: auto;
  }
}

/* 2026-08-09 business hero carousel */
.hero [data-hero-title],
.hero [data-hero-copy],
.hero [data-hero-proofs] span,
.hero [data-hero-media],
.hero .hero-flow-card {
  transition: opacity .22s ease, transform .22s ease;
}

.hero.is-changing [data-hero-title],
.hero.is-changing [data-hero-copy],
.hero.is-changing [data-hero-proofs] span,
.hero.is-changing [data-hero-media],
.hero.is-changing .hero-flow-card {
  opacity: .28;
  transform: translateY(6px);
}

.hero-wifi-device {
  width: 74%;
  background: rgba(255, 255, 255, .94);
}

.hero-wifi-device img {
  background: #fff;
  object-position: center;
}

.hero-carousel-controls {
  position: relative;
  z-index: 4;
  width: min(1240px, calc(100% - 56px));
  min-height: 62px;
  margin: -38px auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.hero-carousel-tabs {
  padding: 5px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 4px;
  border: 1px solid rgba(190, 215, 237, .82);
  border-radius: 14px;
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 14px 34px rgba(31, 76, 117, .08);
  backdrop-filter: blur(14px);
}

.hero-carousel-tab,
.hero-carousel-arrow {
  border: 0;
  color: #567087;
  background: transparent;
  font: inherit;
  cursor: pointer;
}

.hero-carousel-tab {
  min-width: 116px;
  min-height: 42px;
  padding: 8px 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 10px;
  transition: color .2s ease, background .2s ease, box-shadow .2s ease;
}

.hero-carousel-tab span {
  color: #8aa0b4;
  font-size: 10px;
  font-weight: 850;
}

.hero-carousel-tab strong {
  font-size: 12px;
  font-weight: 820;
  white-space: nowrap;
}

.hero-carousel-tab:hover {
  color: var(--blue);
  background: #f1f8fe;
}

.hero-carousel-tab.active {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), #0b7bd8);
  box-shadow: 0 8px 18px rgba(18, 105, 199, .2);
}

.hero-carousel-tab.active span {
  color: rgba(255, 255, 255, .72);
}

.hero-carousel-arrow {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 1px solid rgba(181, 209, 234, .9);
  border-radius: 50%;
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 10px 28px rgba(31, 76, 117, .08);
  transition: color .2s ease, border-color .2s ease, background .2s ease, transform .2s ease;
}

.hero-carousel-arrow:hover {
  color: var(--blue);
  border-color: #86b8e2;
  background: #fff;
  transform: translateY(-1px);
}

.hero-carousel-tab:focus-visible,
.hero-carousel-arrow:focus-visible {
  outline: 3px solid rgba(18, 105, 199, .34);
  outline-offset: 3px;
}

@media (max-width: 1120px) {
  .hero-carousel-controls {
    margin-top: -10px;
  }
}

@media (max-width: 760px) {
  .hero-wifi-device {
    width: 74%;
  }

  .hero-carousel-controls {
    width: min(100% - 30px, 620px);
    min-height: 52px;
    margin: -2px auto 16px;
    gap: 8px;
  }

  .hero-carousel-tabs {
    flex: 1 1 auto;
    padding: 4px;
    border-radius: 12px;
  }

  .hero-carousel-tab {
    min-width: 0;
    min-height: 36px;
    padding: 6px;
    gap: 0;
  }

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

  .hero-carousel-tab span {
    font-size: 11px;
  }

  .hero-carousel-arrow {
    width: 38px;
    height: 38px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero [data-hero-title],
  .hero [data-hero-copy],
  .hero [data-hero-proofs] span,
  .hero [data-hero-media],
  .hero .hero-flow-card {
    transition: none;
  }
}

/* 2026-08-10 credentials gallery: all eight records stay visible without category switching. */
.credential-gallery {
  min-width: 0;
  display: grid;
  gap: 24px;
}

.credential-gallery-group {
  min-width: 0;
  padding: 24px;
  border: 1px solid rgba(181, 210, 236, .92);
  border-radius: 22px;
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 22px 52px rgba(42, 83, 119, .08);
}

.credential-gallery-heading {
  min-width: 0;
  margin-bottom: 20px;
  padding-bottom: 18px;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid rgba(201, 220, 237, .9);
}

.credential-gallery-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #fff;
  background: #1675d1;
  box-shadow: 0 10px 22px rgba(18, 105, 199, .2);
  font-size: 20px;
}

.credential-gallery-icon-code {
  color: #1767a8;
  background: #e9f5ff;
  box-shadow: none;
}

.credential-gallery-heading-copy,
.credential-gallery-heading-copy > small,
.credential-gallery-heading-copy > strong,
.credential-gallery-heading-copy > span {
  min-width: 0;
  display: block;
}

.credential-gallery-heading-copy > small {
  margin-bottom: 3px;
  color: var(--blue);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .12em;
}

.credential-gallery-heading-copy > strong {
  color: #122a42;
  font-size: 20px;
  font-weight: 880;
  line-height: 1.3;
}

.credential-gallery-heading-copy > span {
  margin-top: 4px;
  color: #6d8297;
  font-size: 11px;
  line-height: 1.5;
}

.credential-gallery-count {
  min-width: 62px;
  padding: 8px 12px;
  border: 1px solid #d7e8f6;
  border-radius: 12px;
  background: #f4faff;
  text-align: center;
}

.credential-gallery-count strong,
.credential-gallery-count small {
  display: block;
}

.credential-gallery-count strong {
  color: var(--blue);
  font-size: 18px;
  font-weight: 880;
  line-height: 1;
  letter-spacing: .06em;
}

.credential-gallery-count small {
  margin-top: 5px;
  color: #758ba0;
  font-size: 9px;
  line-height: 1.2;
}

.credential-overview-grid {
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.credential-overview-card {
  width: 100%;
  min-width: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(202, 220, 237, .96);
  border-radius: 16px;
  color: #183852;
  background: #fff;
  font: inherit;
  text-align: left;
  cursor: zoom-in;
  box-shadow: 0 12px 30px rgba(42, 83, 119, .07);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.credential-overview-card:hover {
  border-color: #83b9e3;
  box-shadow: 0 20px 42px rgba(42, 83, 119, .14);
  transform: translateY(-4px);
}

.credential-overview-card:focus-visible {
  outline: 3px solid rgba(18, 105, 199, .34);
  outline-offset: 3px;
}

.credential-overview-media {
  width: 100%;
  height: 190px;
  position: relative;
  padding: 18px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(211, 226, 239, .9);
  background: #f7fbff;
}

.credential-overview-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  background: #fff;
}

.credential-overview-zoom {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(199, 221, 240, .94);
  border-radius: 10px;
  color: var(--blue);
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 8px 18px rgba(42, 83, 119, .1);
  font-size: 13px;
}

.credential-overview-copy,
.credential-overview-copy > small,
.credential-overview-copy > strong,
.credential-overview-copy > span {
  min-width: 0;
  display: block;
}

.credential-overview-copy {
  min-height: 112px;
  padding: 15px 16px 17px;
}

.credential-overview-copy > small {
  color: #2173b8;
  font-size: 9px;
  font-weight: 820;
  line-height: 1.3;
  letter-spacing: .04em;
}

.credential-overview-copy > strong {
  margin-top: 7px;
  color: #16324d;
  font-size: 13px;
  font-weight: 850;
  line-height: 1.45;
}

.credential-overview-copy > span {
  margin-top: 6px;
  color: #71869a;
  font-size: 10px;
  line-height: 1.5;
}

@media (max-width: 1100px) {
  .credential-overview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .credential-overview-media {
    height: 220px;
  }
}

@media (max-width: 720px) {
  .credential-gallery {
    gap: 18px;
  }
  .credential-gallery-group {
    padding: 16px;
    border-radius: 17px;
  }
  .credential-gallery-heading {
    margin-bottom: 14px;
    padding-bottom: 14px;
    grid-template-columns: 42px minmax(0, 1fr) auto;
    gap: 10px;
  }
  .credential-gallery-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    font-size: 18px;
  }
  .credential-gallery-heading-copy > strong {
    font-size: 17px;
  }
  .credential-gallery-heading-copy > span {
    font-size: 10px;
  }
  .credential-gallery-count {
    min-width: 54px;
    padding: 7px 8px;
  }
  .credential-overview-grid {
    gap: 10px;
  }
  .credential-overview-media {
    height: 170px;
    padding: 14px;
  }
  .credential-overview-copy {
    min-height: 104px;
    padding: 13px 14px 15px;
  }
}

@media (max-width: 560px) {
  .credential-overview-grid {
    grid-template-columns: 1fr;
  }
  .credential-overview-media {
    height: 218px;
  }
  .credential-overview-copy {
    min-height: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .credential-overview-card {
    transition: none;
  }
}

/* 2026-08-09 business cards: balance content density and remove empty lower space. */
.business .service-grid {
  gap: 18px;
  align-items: stretch;
}

.business .service-card,
.business .service-iot-overview {
  min-height: 0;
  padding: 28px;
  border-radius: 18px;
}

.business .service-card > h3,
.business .service-iot-overview .wifi-detail-copy > h3 {
  margin: 0 0 14px;
  font-size: clamp(30px, 2.15vw, 34px);
  line-height: 1.16;
}

.business .service-card > p,
.business .service-iot-overview .wifi-detail-copy > p:not(.eyebrow) {
  margin: 0;
  color: #465a70;
  font-size: 14px;
  line-height: 1.75;
}

.business .service-detail-list,
.business .benefit-resource-grid,
.business .service-iot-overview .iot-scenario-grid {
  margin-top: 22px;
  gap: 10px;
}

.business .service-detail-list div {
  min-height: 72px;
  padding: 12px 14px;
  grid-template-columns: 32px minmax(0, 1fr);
  column-gap: 11px;
}

.business .service-detail-list i,
.business .benefit-resource-grid i,
.business .service-iot-overview .iot-scenario-grid i {
  width: 32px;
  height: 32px;
  font-size: 16px;
}

.business .benefit-resource-grid div {
  min-height: 107px;
  padding: 13px;
  grid-template-columns: 32px minmax(0, 1fr);
  column-gap: 10px;
}

.business .service-iot-overview .iot-scenario-grid article {
  min-height: 72px;
  padding: 11px;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 9px;
}

@media (min-width: 1200px) {
  .business .service-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .business .service-iot-overview {
    grid-column: auto;
  }

  .business .service-card > p,
  .business .service-iot-overview .wifi-detail-copy > p:not(.eyebrow) {
    min-height: 74px;
  }
}

@media (min-width: 901px) and (max-width: 1199px) {
  .business .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .business .service-iot-overview {
    grid-column: 1 / -1;
  }

  .business .service-iot-overview .iot-scenario-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .business .service-grid {
    gap: 14px;
  }

  .business .service-card,
  .business .service-iot-overview {
    padding: 22px 20px;
    border-radius: 15px;
  }

  .business .service-card > h3,
  .business .service-iot-overview .wifi-detail-copy > h3 {
    margin-bottom: 12px;
    font-size: 28px;
  }

  .business .service-detail-list,
  .business .benefit-resource-grid,
  .business .service-iot-overview .iot-scenario-grid {
    margin-top: 18px;
  }

  .business .benefit-resource-grid div {
    min-height: 92px;
  }
}

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

/* Credential gallery redesign: complete cards, compact proof, no awkward peeks. */
.credentials {
  padding: 68px 0 62px;
}
.credentials-unified {
  gap: 24px;
}
.credentials-header,
.credentials-heading,
.credential-stats,
.credential-stats div {
  min-width: 0;
}
.credentials-heading > p {
  max-width: 100%;
  overflow-wrap: anywhere;
}
.credential-stats span {
  overflow-wrap: anywhere;
}
.credential-evidence-grid {
  gap: 24px;
}
.credential-rail-shell {
  margin-top: 14px;
}
.credential-rail-meta {
  min-height: 30px;
  font-size: 10px;
}
.credential-rail-meta-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.credential-rail-index {
  color: #6b8196;
  font-size: 10px;
  font-variant-numeric: tabular-nums;
  letter-spacing: .05em;
  white-space: nowrap;
}
.credential-rail-controls {
  gap: 5px;
}
.credential-rail-controls button {
  width: 36px;
  height: 36px;
  border-radius: 10px;
}
.credential-scroll-track {
  gap: 12px;
  padding: 4px 0 10px;
  scroll-padding-inline: 0;
  scrollbar-color: rgba(102, 160, 207, .5) transparent;
}
.credential-company-rail > .credential-card,
.credential-soft-grid > .credential-card {
  flex: 0 0 calc((100% - 24px) / 3);
  height: 252px;
  min-height: 0;
  padding: 34px 14px 12px;
  border-radius: 14px;
}
.credential-card-feature,
.credential-card-key,
.credential-card-soft {
  min-height: 0;
}
.credential-company-rail .credential-card img,
.credential-soft-grid .credential-card img {
  height: 156px;
  flex: 0 0 156px;
  object-fit: contain;
}
.credential-company-rail .credential-card span,
.credential-soft-grid .credential-card span {
  min-height: 30px;
  margin-top: auto;
  padding-top: 10px;
}
.credential-product-board {
  min-width: 0;
  margin-top: 14px;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(220px, .65fr);
  gap: 12px;
}
.credential-product-hero {
  width: 100%;
  min-width: 0;
  margin-top: 0;
  padding: 0;
  overflow: hidden;
  border-radius: 14px;
}
.credential-product-hero img {
  height: 232px;
  object-fit: contain;
}
.credential-product-hero span {
  min-height: 38px;
  padding: 0 14px;
  gap: 7px;
  font-size: 11px;
}
.credential-product-hero span i {
  color: var(--blue);
  font-size: 13px;
}
.credential-product-highlights {
  min-width: 0;
  display: grid;
  gap: 8px;
}
.credential-product-list-card {
  min-height: 0;
  padding: 12px 13px;
  gap: 10px;
  border-radius: 14px;
}
.credential-product-list-card > i {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  font-size: 16px;
}
.credential-product-list-card strong {
  font-size: 12px;
  line-height: 1.35;
}
.credential-product-list-card small {
  margin-top: 3px;
  font-size: 10px;
  line-height: 1.45;
}
body.dialog-open {
  overflow: hidden;
}
body.dialog-open::before {
  content: "";
  position: fixed;
  z-index: 90;
  inset: 0;
  background: rgba(11, 28, 48, .46);
  backdrop-filter: blur(4px);
}
.contact-dialog.is-open,
.credential-dialog.is-open {
  position: fixed;
  z-index: 100;
  top: 50%;
  left: 50%;
  display: block;
  margin: 0;
  transform: translate(-50%, -50%);
}

@media (max-width: 720px) {
  .credentials {
    padding: 54px 0 48px;
  }
  .credentials-unified {
    gap: 20px;
  }
  .credential-evidence-grid {
    gap: 20px;
  }
  .credential-rail-meta-actions {
    gap: 6px;
  }
  .credential-rail-index {
    font-size: 9px;
  }
  .credential-company-rail > .credential-card,
  .credential-soft-grid > .credential-card {
    flex-basis: 100%;
    height: 248px;
  }
  .credential-rail-controls button {
    width: 44px;
    height: 44px;
  }
  .credential-company-rail .credential-card img,
  .credential-soft-grid .credential-card img {
    height: 150px;
    flex-basis: 150px;
  }
  .credential-product-board {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .credential-product-hero img {
    height: 208px;
  }
  .credential-product-highlights {
    gap: 7px;
  }
  .credential-product-list-card {
    padding: 11px 12px;
  }
}

/* 2026-08-09 three-column primary service presentation. */
@media (min-width: 901px) {
  .service-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .service-iot-overview {
    grid-column: auto;
    min-height: 510px;
  }

  .service-iot-overview .iot-scenario-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .service-iot-overview .iot-scenario-grid article {
    min-height: 72px;
    padding: 10px;
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 9px;
  }

  .service-iot-overview .iot-scenario-grid i {
    width: 32px;
    height: 32px;
    font-size: 16px;
  }

  .service-iot-overview .iot-scenario-grid strong {
    font-size: 12px;
  }

  .service-iot-overview .iot-scenario-grid span {
    font-size: 10px;
  }
}

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

  .service-iot-overview {
    grid-column: auto;
    min-height: 0;
  }

  .service-iot-overview .iot-scenario-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .service-iot-overview .iot-scenario-grid {
    grid-template-columns: 1fr;
  }
}

/* 2026-08-09 image-free IoT overview: open header with a balanced scenario matrix. */
.service-iot-overview {
  display: block;
  padding: 30px;
  background:
    radial-gradient(circle at 96% 8%, rgba(45, 143, 232, .08), transparent 30%),
    linear-gradient(180deg, #fff 0%, #f8fcff 100%);
}

.service-iot-overview .wifi-detail-copy {
  max-width: none;
}

.service-iot-overview .wifi-detail-copy > p:not(.eyebrow) {
  max-width: 900px;
  margin-top: 12px;
}

.service-iot-overview .iot-scenario-grid {
  margin-top: 24px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.service-iot-overview .iot-scenario-grid article {
  min-height: 72px;
  padding: 10px;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 9px;
  border-color: rgba(202, 221, 238, .9);
  border-radius: 11px;
  background: rgba(255, 255, 255, .9);
}

@media (max-width: 1020px) {
  .service-iot-overview .iot-scenario-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .service-iot-overview {
    padding: 22px 20px;
  }

  .service-iot-overview .iot-scenario-grid {
    margin-top: 18px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .service-iot-overview .iot-scenario-grid article {
    min-height: 88px;
    padding: 10px 9px;
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 8px;
  }

  .service-iot-overview .iot-scenario-grid i {
    width: 30px;
    height: 30px;
    font-size: 15px;
  }

  .service-iot-overview .iot-scenario-grid strong {
    font-size: 12px;
  }

  .service-iot-overview .iot-scenario-grid span {
    font-size: 10px;
    line-height: 1.5;
  }
}

/* Use one description text scale across the partner and benefit headings. */
.partners-heading > p:last-child,
.benefit-brand-heading-side > p {
  color: var(--muted);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.8;
}

@media (max-width: 760px) {
  .partners-heading > p:last-child,
  .benefit-brand-heading-side > p {
    font-size: 14px;
    line-height: 1.75;
  }
}

/* Keep anchored section titles clear of the fixed navigation bar. */
#business,
#distribution,
#capabilities,
#about,
#partners {
  scroll-margin-top: 88px;
}

@media (min-width: 1281px) {
  .partner-grid-expanded {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }
  .partner-grid-carriers {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
  .partner-grid-finance {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}

@media (min-width: 761px) and (max-width: 1280px) {
  .partner-grid-expanded {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .partner-grid-carriers {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .partner-grid-commerce {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .partner-grid-six {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Compliance workspace: one browsing model for company, product and software proof. */
.credential-workspace {
  min-width: 0;
  display: grid;
  grid-template-columns: 252px minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid rgba(181, 210, 236, .92);
  border-radius: 22px;
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 24px 60px rgba(50, 91, 127, .1);
}
.credential-category-tabs {
  min-width: 0;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-right: 1px solid rgba(196, 219, 239, .9);
  background:
    radial-gradient(circle at 0 0, rgba(46, 151, 239, .14), transparent 42%),
    linear-gradient(180deg, #f8fcff 0%, #edf6ff 100%);
}
.credential-category-tab {
  width: 100%;
  min-height: 86px;
  padding: 13px 12px;
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) auto;
  align-items: center;
  gap: 11px;
  border: 1px solid transparent;
  border-radius: 14px;
  color: #526a80;
  background: transparent;
  text-align: left;
  cursor: pointer;
  transition: color .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.credential-category-tab:hover {
  color: #173a5c;
  background: rgba(255, 255, 255, .76);
}
.credential-category-tab.active {
  color: #123b62;
  border-color: rgba(126, 184, 230, .62);
  background: #fff;
  box-shadow: 0 14px 30px rgba(35, 101, 158, .12);
  transform: translateX(3px);
}
.credential-category-tab:focus-visible,
.credential-directory-item:focus-visible,
.credential-feature-preview:focus-visible,
.credential-product-preview:focus-visible {
  outline: 3px solid rgba(18, 105, 199, .34);
  outline-offset: 2px;
}
.credential-category-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  color: #2c77b9;
  background: #e8f4ff;
  font-size: 18px;
}
.credential-category-tab.active .credential-category-icon {
  color: #fff;
  background: linear-gradient(145deg, #42a0f4, #1269c7);
  box-shadow: 0 9px 18px rgba(18, 105, 199, .2);
}
.credential-category-tab > span:nth-child(2),
.credential-category-tab strong,
.credential-category-tab small {
  min-width: 0;
  display: block;
}
.credential-category-tab strong {
  color: inherit;
  font-size: 13px;
  font-weight: 850;
  line-height: 1.4;
}
.credential-category-tab small {
  margin-top: 4px;
  color: #7a8da0;
  font-size: 10px;
  line-height: 1.45;
}
.credential-category-tab em {
  color: #8ca0b3;
  font-size: 10px;
  font-style: normal;
  font-weight: 820;
  letter-spacing: .08em;
}
.credential-category-tab.active em { color: var(--blue); }
.credential-workspace-note {
  margin: auto 4px 0;
  padding-top: 14px;
  display: flex;
  align-items: flex-start;
  gap: 7px;
  border-top: 1px solid rgba(190, 215, 237, .86);
  color: #7890a5;
  font-size: 10px;
  line-height: 1.55;
}
.credential-workspace-note i {
  color: var(--blue);
  font-size: 12px;
}
.credential-panels {
  min-width: 0;
  padding: 26px 28px 28px;
  background:
    linear-gradient(rgba(223, 238, 250, .45) 1px, transparent 1px),
    linear-gradient(90deg, rgba(223, 238, 250, .45) 1px, transparent 1px),
    rgba(255, 255, 255, .72);
  background-size: 34px 34px;
}
.credential-panel[hidden] { display: none; }
.credential-panel.active { animation: credential-panel-in .28s ease both; }
@keyframes credential-panel-in {
  from { opacity: 0; transform: translateY(7px); }
  to { opacity: 1; transform: translateY(0); }
}
.credential-panel-heading {
  min-width: 0;
  margin-bottom: 18px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
}
.credential-panel-heading > div > span {
  display: block;
  margin-bottom: 5px;
  color: var(--blue);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .13em;
}
.credential-panel-heading h3 {
  margin: 0;
  color: #11263c;
  font-size: 23px;
  font-weight: 880;
  line-height: 1.25;
}
.credential-panel-heading p {
  max-width: 390px;
  margin: 0;
  color: #71859a;
  font-size: 11px;
  line-height: 1.65;
  text-align: right;
}
.credential-showcase,
.credential-product-workspace {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(360px, 1.08fr) minmax(300px, .92fr);
  gap: 18px;
}
.credential-feature-preview,
.credential-product-preview {
  width: 100%;
  min-width: 0;
  height: 372px;
  position: relative;
  padding: 46px 22px 58px;
  overflow: hidden;
  border: 1px solid rgba(180, 210, 236, .95);
  border-radius: 16px;
  color: #183852;
  background: rgba(255, 255, 255, .96);
  cursor: zoom-in;
  box-shadow: 0 18px 42px rgba(42, 83, 119, .1);
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.credential-feature-preview:hover,
.credential-product-preview:hover {
  border-color: #77b5e6;
  box-shadow: 0 22px 50px rgba(42, 83, 119, .16);
  transform: translateY(-2px);
}
.credential-feature-preview > img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}
.credential-feature-badge {
  position: absolute;
  top: 16px;
  left: 18px;
  padding: 6px 10px;
  border-radius: 999px;
  color: #1767a8;
  background: #eaf5ff;
  font-size: 10px;
  font-weight: 850;
}
.credential-feature-caption,
.credential-product-preview > span {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  min-height: 54px;
  padding: 9px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid rgba(205, 224, 241, .9);
  background: rgba(250, 253, 255, .96);
  text-align: left;
}
.credential-feature-caption span,
.credential-feature-caption small,
.credential-feature-caption strong,
.credential-product-preview > span span,
.credential-product-preview > span small,
.credential-product-preview > span strong {
  display: block;
}
.credential-feature-caption small,
.credential-product-preview > span small {
  color: #7d91a4;
  font-size: 9px;
  line-height: 1.2;
}
.credential-feature-caption strong,
.credential-product-preview > span strong {
  margin-top: 3px;
  color: #183852;
  font-size: 12px;
  font-weight: 850;
  line-height: 1.3;
}
.credential-feature-caption > i,
.credential-product-preview > span > i {
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 9px;
  color: var(--blue);
  background: #e8f4ff;
}
.credential-directory,
.credential-product-directory {
  min-width: 0;
  display: grid;
  gap: 9px;
}
.credential-directory-item {
  width: 100%;
  min-width: 0;
  min-height: 86px;
  padding: 9px 13px 9px 9px;
  display: grid;
  grid-template-columns: 66px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(205, 223, 239, .9);
  border-radius: 14px;
  color: #23425e;
  background: rgba(255, 255, 255, .88);
  text-align: left;
  cursor: pointer;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease, transform .2s ease;
}
.credential-directory-item:hover,
.credential-directory-item.active {
  border-color: #8fc1e8;
  background: #fff;
  box-shadow: 0 12px 28px rgba(43, 91, 133, .1);
  transform: translateX(-3px);
}
.credential-directory-thumb {
  width: 66px;
  height: 62px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid #e4edf5;
  border-radius: 10px;
  background: #fff;
}
.credential-directory-thumb img {
  width: 100%;
  height: 100%;
  padding: 4px;
  display: block;
  object-fit: contain;
}
.credential-directory-item > span:nth-child(2),
.credential-directory-item small,
.credential-directory-item strong {
  min-width: 0;
  display: block;
}
.credential-directory-item small {
  color: #7a91a5;
  font-size: 9px;
  font-weight: 750;
  line-height: 1.3;
}
.credential-directory-item strong {
  margin-top: 4px;
  color: inherit;
  font-size: 12px;
  font-weight: 850;
  line-height: 1.4;
}
.credential-directory-item > i {
  color: #a2b4c4;
  font-size: 12px;
}
.credential-directory-item.active > i { color: var(--blue); }
.credential-product-preview {
  padding: 0 0 54px;
}
.credential-product-preview > img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  background: linear-gradient(145deg, #fff, #f4f9fd);
}
.credential-product-directory > div {
  min-width: 0;
  min-height: 112px;
  padding: 15px 16px;
  display: grid;
  grid-template-columns: 28px 40px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(205, 223, 239, .9);
  border-radius: 14px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 11px 26px rgba(43, 91, 133, .07);
}
.credential-product-directory > div > span {
  align-self: start;
  color: #94a8ba;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .08em;
}
.credential-product-directory > div > i {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  color: var(--blue);
  background: #e9f5ff;
  font-size: 17px;
}
.credential-product-directory p,
.credential-product-directory strong,
.credential-product-directory small {
  min-width: 0;
  display: block;
  margin: 0;
}
.credential-product-directory strong {
  color: #1c3954;
  font-size: 12px;
  font-weight: 850;
  line-height: 1.4;
}
.credential-product-directory small {
  margin-top: 5px;
  color: #73889b;
  font-size: 10px;
  line-height: 1.5;
}

@media (max-width: 1020px) {
  .credential-workspace { grid-template-columns: 1fr; }
  .credential-category-tabs {
    padding: 14px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-right: 0;
    border-bottom: 1px solid rgba(196, 219, 239, .9);
  }
  .credential-category-tab { min-height: 80px; }
  .credential-category-tab.active { transform: translateY(2px); }
  .credential-workspace-note { display: none; }
  .credential-showcase,
  .credential-product-workspace {
    grid-template-columns: minmax(310px, 1fr) minmax(280px, .9fr);
  }
}

@media (max-width: 720px) {
  .credentials-header { padding-bottom: 22px; }
  .credential-workspace {
    overflow: visible;
    border-radius: 16px;
  }
  .credential-category-tabs {
    padding: 10px;
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .credential-category-tabs::-webkit-scrollbar { display: none; }
  .credential-category-tab {
    flex: 0 0 220px;
    min-height: 76px;
    scroll-snap-align: start;
  }
  .credential-category-tab.active { transform: none; }
  .credential-panels { padding: 20px 14px 16px; }
  .credential-panel-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }
  .credential-panel-heading h3 { font-size: 20px; }
  .credential-panel-heading p {
    max-width: none;
    text-align: left;
  }
  .credential-showcase,
  .credential-product-workspace {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .credential-feature-preview,
  .credential-product-preview { height: 300px; }
  .credential-directory-item:hover,
  .credential-directory-item.active { transform: none; }
  .credential-product-directory > div { min-height: 98px; }
}

@media (max-width: 420px) {
  .credential-category-tab { flex-basis: 204px; }
  .credential-panels { padding-inline: 10px; }
  .credential-feature-preview,
  .credential-product-preview { height: 278px; }
  .credential-directory-item {
    min-height: 80px;
    grid-template-columns: 58px minmax(0, 1fr) auto;
    gap: 9px;
  }
  .credential-directory-thumb {
    width: 58px;
    height: 56px;
  }
  .credential-product-directory > div {
    grid-template-columns: 24px 36px minmax(0, 1fr);
    gap: 9px;
    padding-inline: 11px;
  }
  .credential-product-directory > div > i {
    width: 36px;
    height: 36px;
  }
}

/* 2026-08-09 full-site visual system polish */
:root {
  --ink: #0b1728;
  --ink-soft: #30445b;
  --muted: #5d7187;
  --line: #d7e4ef;
  --ice: #f7fbfe;
  --shadow: 0 20px 50px rgba(28, 72, 112, .1);
  --shadow-soft: 0 10px 28px rgba(28, 72, 112, .065);
}

body {
  color: var(--ink);
  line-height: 1.6;
  background: #fff;
}

.nav-links a,
.nav-cta {
  font-size: 14px;
}

.section,
.capabilities,
.wifi-detail,
.credentials,
.partners {
  padding-top: 68px;
  padding-bottom: 68px;
}

.section-heading {
  margin-bottom: 40px;
}

.section-heading h2,
.business .section-heading h2,
.partners-heading h2,
.credentials-heading h2,
.distribution-copy h2,
.wifi-strip h2,
.capability-copy h2,
.wifi-detail-copy h2 {
  font-size: clamp(40px, 3.25vw, 48px);
  line-height: 1.15;
  letter-spacing: -.025em;
}

.section-heading > p:last-child,
.partners-heading > p:last-child,
.credentials-heading > p,
.distribution-copy p:not(.eyebrow),
.capability-copy > p:not(.eyebrow),
.wifi-detail-copy > p:not(.eyebrow),
.wifi-strip-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

.eyebrow {
  margin-bottom: 10px;
  font-size: 13px;
  letter-spacing: .02em;
}

.business {
  background: #fff;
}

.service-grid {
  gap: 22px;
}

.service-card {
  padding: 30px;
  border-color: rgba(206, 222, 237, .82);
  border-radius: 16px;
  background: linear-gradient(180deg, #fff 0%, #f9fcff 100%);
  box-shadow: var(--shadow-soft);
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.service-card h3 {
  margin-top: 18px;
  font-size: 26px;
}

.service-card p {
  color: #40536a;
  font-size: 14px;
  line-height: 1.78;
}

.service-detail-list div,
.benefit-resource-grid div {
  border-color: rgba(215, 228, 239, .9);
  border-radius: 11px;
  background: rgba(255, 255, 255, .94);
  box-shadow: none;
}

.service-detail-list strong {
  font-size: 15px;
}

.service-detail-list span,
.service-feature-list li {
  color: #53677d;
  font-size: 12.5px;
}

.benefit-resource-grid strong {
  font-size: 13.5px;
}

.benefit-resource-grid span,
.benefit-flow span,
.service-tags span,
.benefit-scenario-tags span {
  font-size: 11.5px;
}

.benefit-flow span {
  border-color: rgba(182, 210, 235, .78);
  border-radius: 10px;
  background: #f3f9fe;
}

.capabilities {
  background:
    radial-gradient(circle at 84% 12%, rgba(18, 105, 199, .055), transparent 30%),
    #f5f9fd;
}

.capability-summary,
.capability-media,
.capability-list {
  border-color: rgba(204, 222, 238, .82);
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
}

.capability-list {
  overflow: hidden;
}

.capability-item {
  border-color: rgba(218, 229, 239, .9);
}

.capability-item h3 {
  font-size: 16px;
}

.capability-item p {
  color: #596d82;
  font-size: 12.5px;
  line-height: 1.65;
}

.wifi-detail {
  background: #fff;
}

.wifi-detail-band,
.wifi-detail-combo,
.wifi-detail-app-panel {
  border-color: rgba(204, 222, 238, .84);
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
}

.wifi-detail-media,
.wifi-detail-media img,
.wifi-detail-panel,
.wifi-detail-support-card,
.wifi-detail-value-item {
  border-radius: 12px;
}

.wifi-detail-panel,
.wifi-detail-support-card,
.wifi-detail-value-item {
  border-color: rgba(216, 229, 240, .9);
  box-shadow: none;
}

.wifi-detail-copy h3,
.wifi-detail-panel h3,
.wifi-detail-support-card h3 {
  font-size: 18px;
}

.wifi-detail-copy p,
.wifi-detail-panel p,
.wifi-detail-support-card p,
.wifi-detail-value-item span {
  color: #576b81;
  font-size: 12.5px;
  line-height: 1.7;
}

.distribution {
  padding-top: 72px;
  padding-bottom: 72px;
  background: linear-gradient(180deg, #f5f9fd 0%, #f9fcff 52%, #fff 100%);
}

.distribution-layout {
  gap: 38px;
}

.distribution-visual,
.distribution-visual figcaption,
.flow-steps article {
  border-color: rgba(204, 222, 238, .84);
  border-radius: 16px;
}

.distribution-visual {
  padding: 8px;
  box-shadow: var(--shadow);
}

.distribution-visual img {
  border-radius: 11px;
}

.distribution-visual figcaption {
  border-radius: 12px;
}

.flow-steps article {
  box-shadow: var(--shadow-soft);
}

.flow-steps h3 {
  font-size: 19px;
}

.flow-steps p {
  color: #566a80;
  font-size: 12.5px;
}

.flow-steps small {
  font-size: 10.5px;
}

.credentials {
  background: linear-gradient(180deg, #fff 0%, #f6faff 100%);
}

.credential-workspace {
  border-color: rgba(199, 219, 237, .88);
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
}

.credential-category-tab,
.credential-feature-preview,
.credential-product-preview,
.credential-directory-item,
.credential-product-directory > div {
  border-color: rgba(211, 226, 239, .9);
}

.credential-category-tab strong,
.credential-directory-item strong,
.credential-product-directory strong {
  color: #17324f;
}

.credential-category-tab span,
.credential-directory-item small,
.credential-product-directory small,
.credential-panel-heading p {
  color: #607489;
  font-size: 12px;
  line-height: 1.65;
}

.partners {
  background: #fff;
}

.partners-shell {
  gap: 26px;
}

.partner-group {
  padding: 16px 18px;
  gap: 18px;
  border-color: rgba(207, 223, 238, .82);
  border-radius: 16px;
  background: #f7fbfe;
}

.partner-group-title > i {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: #e7f3fd;
}

.partner-group-title h3 {
  font-size: 16px;
}

.partner-group-title span {
  color: #6c7f93;
  font-size: 12px;
}

.partner-item {
  min-height: 64px;
  padding: 10px 12px;
  border-color: rgba(215, 227, 238, .88);
  border-radius: 10px;
  background: #fff;
  font-size: 12.5px;
}

.partner-logo {
  border-color: rgba(222, 232, 241, .78);
  border-radius: 9px;
}

.benefit-brand-library {
  margin-top: 10px;
  padding: 34px;
  border-color: rgba(202, 220, 236, .86);
  border-radius: 18px;
  background: linear-gradient(135deg, #f4faff 0%, #fff 44%);
  box-shadow: var(--shadow-soft);
}

.benefit-brand-heading h3 {
  font-size: 32px;
}

.partner-tabs {
  margin-top: 26px;
}

.partner-tab {
  min-height: 42px;
  border-color: #d2e1ee;
  border-radius: 10px;
  color: #3e566f;
  font-size: 12.5px;
}

.partner-library-grid {
  gap: 12px;
}

.partner-library-item {
  min-height: 76px;
  border-color: rgba(214, 227, 238, .9);
  font-size: 13px;
  box-shadow: none;
}

.site-footer {
  padding-top: 40px;
  background: linear-gradient(180deg, #f7fbfe 0%, #fff 100%);
}

.footer-brand {
  padding-top: 18px;
  padding-bottom: 14px;
}

.footer-brand p {
  color: #29445f;
  font-weight: 700;
}

.reveal {
  transform: translateY(12px);
  transition-duration: .45s;
}

@media (max-width: 760px) {
  .section,
  .capabilities,
  .wifi-detail,
  .credentials,
  .partners,
  .distribution {
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .section-heading {
    margin-bottom: 30px;
  }

  .section-heading h2,
  .business .section-heading h2,
  .partners-heading h2,
  .credentials-heading h2,
  .distribution-copy h2,
  .wifi-strip h2,
  .capability-copy h2,
  .wifi-detail-copy h2 {
    font-size: 34px;
    line-height: 1.18;
  }

  .section-heading > p:last-child,
  .partners-heading > p:last-child,
  .credentials-heading > p,
  .distribution-copy p:not(.eyebrow),
  .capability-copy > p:not(.eyebrow),
  .wifi-detail-copy > p:not(.eyebrow),
  .wifi-strip-copy > p:not(.eyebrow) {
    font-size: 14px;
    line-height: 1.75;
  }

  .service-grid {
    gap: 16px;
  }

  .service-card {
    min-height: 0;
    padding: 22px 20px;
    border-radius: 14px;
  }

  .service-card h3 {
    font-size: 23px;
  }

  .service-card p {
    font-size: 13.5px;
  }

  .capability-summary,
  .capability-media,
  .capability-list,
  .wifi-detail-band,
  .wifi-detail-combo,
  .wifi-detail-app-panel,
  .distribution-visual,
  .flow-steps article {
    border-radius: 14px;
  }

  .partner-group {
    padding: 14px;
    gap: 14px;
    border-radius: 14px;
  }

  .partner-group-title h3 {
    font-size: 15px;
  }

  .partner-group-title span {
    font-size: 11.5px;
  }

  .partner-item {
    min-height: 60px;
    padding: 9px 10px;
    font-size: 12px;
  }

  .benefit-brand-library {
    padding: 20px 16px;
    border-radius: 16px;
  }

  .benefit-brand-heading h3 {
    font-size: 28px;
  }

  .partner-library-item {
    min-height: 68px;
    font-size: 12px;
  }

  .footer-brand p {
    font-size: 18px;
    line-height: 1.65;
  }
}

/* 2026-08-09 unified partner ecosystem panel */
.partner-groups {
  padding: 18px 20px;
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(202, 220, 236, .86);
  border-radius: 20px;
  background:
    radial-gradient(circle at 92% 4%, rgba(18, 105, 199, .045), transparent 28%),
    linear-gradient(145deg, #f8fcff 0%, #f4f9fd 100%);
  box-shadow: var(--shadow-soft);
}

.partner-group {
  padding: 14px 0;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 20px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.partner-group-title {
  gap: 12px;
}

.partner-group-title > i {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  font-size: 19px;
}

.partner-group-title h3 {
  font-size: 16px;
  line-height: 1.35;
}

.partner-group-title span {
  margin-top: 4px;
  font-size: 12px;
  line-height: 1.35;
}

.partner-groups .partner-item {
  min-height: 62px;
  padding: 9px 8px;
  gap: 8px;
  border-color: rgba(211, 225, 238, .92);
  border-radius: 10px;
  background: rgba(255, 255, 255, .96);
  font-size: 12px;
  font-weight: 780;
  line-height: 1.35;
  box-shadow: none;
}

.partner-groups .partner-item > span:last-child {
  min-width: 0;
  font-size: 12px;
  font-weight: 780;
  line-height: 1.35;
}

.partner-groups .partner-logo {
  --partner-logo-width: 28px;
  --partner-logo-height: 28px;
  width: 38px;
  height: 38px;
  border-radius: 9px;
}

.partner-groups .partner-logo-wide {
  --partner-logo-width: 34px;
  --partner-logo-height: 22px;
}

@media (max-width: 1120px) {
  .partner-groups {
    padding: 14px 18px;
  }

  .partner-group {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

@media (max-width: 760px) {
  .partner-groups {
    padding: 8px 12px;
    border-radius: 16px;
  }

  .partner-group {
    padding: 14px 0;
    gap: 12px;
  }

  .partner-group-title > i {
    width: 40px;
    height: 40px;
    border-radius: 9px;
    font-size: 18px;
  }

  .partner-group-title h3 {
    font-size: 15px;
  }

  .partner-group-title span {
    font-size: 11.5px;
  }

  .partner-groups .partner-item {
    min-height: 58px;
    padding: 9px;
    gap: 8px;
    font-size: 11px;
  }

  .partner-groups .partner-item > span:last-child {
    font-size: 11px;
  }

  .partner-groups .partner-logo {
    --partner-logo-width: 25px;
    --partner-logo-height: 25px;
    width: 34px;
    height: 34px;
  }

  .partner-groups .partner-logo-wide {
    --partner-logo-width: 30px;
    --partner-logo-height: 19px;
  }
}

/* Keep both portable WiFi feature headings on the same type scale. */
.wifi-detail-copy h2,
.wifi-detail-copy.compact h3 {
  font-size: clamp(38px, 3vw, 46px);
  font-weight: 850;
  line-height: 1.15;
}

@media (max-width: 760px) {
  .wifi-detail-copy h2,
  .wifi-detail-copy.compact h3 {
    font-size: 32px;
    line-height: 1.18;
  }
}

/* 2026-08-09 compliance archive redesign: overview, switcher, then one canvas. */
.credentials {
  background:
    radial-gradient(circle at 90% 8%, rgba(61, 151, 232, .07), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f6faff 100%);
}

.credentials-unified {
  gap: 24px;
}

.credentials-header {
  padding-bottom: 0;
  grid-template-columns: minmax(0, 1fr) minmax(390px, 430px);
  align-items: center;
  gap: 48px;
  border-bottom: 0;
}

.credentials-heading > p {
  max-width: 820px;
  margin-top: 14px;
}

.credential-stats {
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(188, 213, 235, .9);
  border-radius: 15px;
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 14px 34px rgba(46, 88, 126, .065);
}

.credential-stats div {
  min-height: 72px;
  padding: 12px 18px;
  border: 0;
  border-right: 1px solid rgba(205, 222, 238, .9);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.credential-stats div:last-child {
  border-right: 0;
}

.credential-stats strong {
  font-size: 29px;
}

.credential-stats span {
  margin-top: 6px;
  font-size: 10.5px;
}

.credential-workspace {
  display: block;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.credential-category-tabs {
  padding: 6px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
  border: 1px solid rgba(199, 219, 237, .9);
  border-radius: 14px;
  background: rgba(238, 246, 253, .92);
}

.credential-category-tab {
  min-height: 58px;
  padding: 9px 12px;
  grid-template-columns: 36px minmax(0, 1fr) auto;
  gap: 10px;
  border-color: transparent;
  border-radius: 10px;
  background: transparent;
}

.credential-category-tab:hover,
.credential-category-tab.active {
  transform: none;
}

.credential-category-tab:hover {
  background: rgba(255, 255, 255, .7);
}

.credential-category-tab.active {
  border-color: rgba(180, 208, 232, .9);
  background: #fff;
  box-shadow: 0 7px 18px rgba(35, 88, 135, .085);
}

.credential-category-icon {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  font-size: 16px;
}

.credential-category-tab strong {
  font-size: 13px;
}

.credential-category-tab small {
  margin-top: 2px;
  font-size: 10.5px;
}

.credential-category-tab em {
  font-size: 10px;
}

.credential-panels {
  margin-top: 14px;
  padding: 0;
  background: transparent;
}

.credential-panel {
  padding: 22px;
  overflow: hidden;
  border: 1px solid rgba(195, 216, 235, .9);
  border-radius: 18px;
  background:
    radial-gradient(circle at 100% 0, rgba(65, 156, 238, .055), transparent 28%),
    rgba(255, 255, 255, .94);
  box-shadow: 0 18px 46px rgba(42, 83, 119, .085);
}

.credential-panel-heading {
  margin-bottom: 18px;
  padding-bottom: 16px;
  align-items: center;
  border-bottom: 1px solid rgba(213, 227, 239, .86);
}

.credential-panel-heading h3 {
  font-size: 22px;
}

.credential-panel-heading p {
  max-width: 480px;
  font-size: 11.5px;
}

.credential-showcase {
  grid-template-columns: minmax(380px, 1.08fr) minmax(340px, .92fr);
  gap: 18px;
}

.credential-feature-preview {
  height: 322px;
  padding: 42px 20px 54px;
  border-radius: 14px;
  box-shadow: none;
}

.credential-feature-preview:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 34px rgba(42, 83, 119, .11);
}

.credential-feature-caption {
  min-height: 50px;
}

.credential-directory {
  gap: 8px;
}

.credential-directory-item {
  min-height: 68px;
  padding: 7px 12px 7px 7px;
  grid-template-columns: 56px minmax(0, 1fr) auto;
  gap: 11px;
  border-radius: 12px;
}

.credential-directory-item:hover,
.credential-directory-item.active {
  transform: none;
  box-shadow: inset 3px 0 0 var(--blue), 0 8px 20px rgba(43, 91, 133, .07);
}

.credential-directory-thumb {
  width: 56px;
  height: 52px;
  border-radius: 8px;
}

.credential-directory-item strong {
  margin-top: 3px;
  font-size: 11.5px;
}

@media (max-width: 1020px) {
  .credentials-header {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .credential-stats {
    width: min(430px, 100%);
  }
}

@media (max-width: 880px) {
  .credential-showcase {
    grid-template-columns: 1fr;
  }

  .credential-feature-preview {
    height: 310px;
  }
}

/* Match the three primary business headings across both card and band layouts. */
.service-card > h3,
.service-iot-overview .wifi-detail-copy > h3 {
  margin-block: 0 14px;
  font-size: clamp(32px, 2.35vw, 38px);
  font-weight: 860;
  line-height: 1.18;
  letter-spacing: -.025em;
}

@media (max-width: 720px) {
  .credentials-header {
    padding-bottom: 0;
  }

  .credential-stats {
    gap: 0;
  }

  .credential-stats div {
    min-height: 68px;
    padding: 11px 8px;
  }

  .credential-stats strong {
    font-size: 25px;
  }

  .credential-category-tabs {
    padding: 5px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow: visible;
  }

  .credential-category-tab {
    min-width: 0;
    min-height: 68px;
    padding: 8px;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 8px;
  }

  .credential-category-icon {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    font-size: 16px;
  }

  .credential-category-tab strong {
    font-size: 12px;
  }

  .credential-category-tab small {
    margin-top: 2px;
    font-size: 10px;
    line-height: 1.35;
  }

  .credential-category-tab em {
    display: none;
  }

  .credential-panels {
    margin-top: 10px;
    padding: 0;
  }

  .credential-panel {
    padding: 14px;
    border-radius: 15px;
  }

  .credential-panel-heading {
    margin-bottom: 14px;
    padding-bottom: 13px;
  }

  .credential-showcase {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .credential-feature-preview {
    height: 276px;
  }

  .credential-directory-item {
    min-height: 66px;
    grid-template-columns: 52px minmax(0, 1fr) auto;
  }

  .credential-directory-thumb {
    width: 52px;
    height: 48px;
  }

  .service-card > h3,
  .service-iot-overview .wifi-detail-copy > h3 {
    margin-bottom: 12px;
    font-size: 28px;
    line-height: 1.2;
  }
}

/* 2026-08-09 photographic hero refactor */
.hero {
  min-height: 742px;
  background:
    radial-gradient(circle at 80% 32%, rgba(36, 130, 215, .11), transparent 29%),
    linear-gradient(112deg, #fff 0%, #fbfdff 52%, #f2f8fd 100%);
}

.hero::before {
  inset: 72px 0 0;
  width: auto;
  height: auto;
  border: 0;
  border-radius: 0;
  background-image:
    linear-gradient(rgba(20, 91, 151, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 91, 151, .035) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: .68;
  transform: none;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 44%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 44%, #000 100%);
}

.hero::after {
  width: 760px;
  height: 520px;
  right: 0;
  top: 90px;
  border: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(80, 164, 231, .13), rgba(80, 164, 231, 0) 68%);
  transform: none;
}

.hero-shell {
  min-height: 624px;
  grid-template-columns: minmax(0, .83fr) minmax(0, 1.17fr);
  gap: 52px;
}

.hero-copy {
  padding: 76px 0 68px;
}

.hero h1 {
  max-width: 570px;
  font-size: clamp(54px, 4.15vw, 66px);
  font-weight: 830;
  line-height: 1.14;
  letter-spacing: -.035em;
  text-wrap: balance;
}

.hero-copy > p {
  max-width: 548px;
  margin-top: 30px;
  color: #3f5268;
  font-size: 16px;
  line-height: 1.9;
}

.hero-proof-list {
  width: min(548px, 100%);
  max-width: none;
  margin-top: 44px;
  padding-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(173, 201, 225, .74);
}

.hero-proof-list span {
  min-height: 46px;
  padding: 0 14px;
  display: flex;
  align-items: flex-start;
  border: 0;
  border-left: 1px solid rgba(195, 215, 232, .82);
  border-radius: 0;
  color: #2c4a65;
  background: transparent;
  box-shadow: none;
  font-size: 12px;
  font-weight: 720;
  line-height: 1.55;
}

.hero-proof-list span:first-child {
  padding-left: 0;
  border-left: 0;
}

.hero-visual::after {
  width: 72%;
  height: 14%;
  bottom: 13%;
  background: rgba(39, 75, 108, .16);
  filter: blur(42px);
}

.hero-stage {
  width: min(720px, 100%);
  aspect-ratio: 1.38;
  animation: none;
}

.hero-orbit {
  display: none;
}

.hero-wifi-device {
  top: 7%;
  right: 70px;
  bottom: 7%;
  left: 0;
  width: auto;
  padding: 0;
  border: 1px solid rgba(184, 209, 231, .92);
  border-radius: 22px;
  background: #eaf2f8;
  box-shadow: 0 30px 74px rgba(25, 63, 99, .18);
  clip-path: inset(0 round 22px);
}

.hero-wifi-device::after {
  display: none;
}

.hero-wifi-device img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  border-radius: 21px;
  object-fit: cover;
  object-position: center;
  filter: saturate(.92) contrast(1.015);
  transform: scale(1.01);
}

.hero[data-hero-theme="benefits"] .hero-wifi-device img {
  filter: saturate(.92) contrast(1.015);
}

.hero[data-hero-theme="iot"] .hero-wifi-device img {
  filter: saturate(.92) contrast(1.015);
}

.hero[data-hero-theme="wifi"] .hero-wifi-device {
  background:
    radial-gradient(circle at 50% 48%, rgba(113, 184, 239, .2), transparent 34%),
    linear-gradient(135deg, #fff 0%, #edf6fd 100%);
}

.hero[data-hero-theme="wifi"] .hero-wifi-device::after {
  display: none;
}

.hero[data-hero-theme="wifi"] .hero-wifi-device img {
  padding: 5% 4% 3%;
  object-fit: contain;
  filter: none;
  transform: none;
}

.hero-business-stack {
  top: 50%;
  right: 0;
  bottom: auto;
  width: min(190px, 31%);
  gap: 10px;
  transform: translateY(-50%);
}

.hero-flow-card {
  min-height: 78px;
  padding: 14px 16px;
  border-color: rgba(181, 207, 230, .92);
  border-radius: 12px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 18px 44px rgba(27, 65, 100, .14);
  backdrop-filter: blur(12px);
}

.hero-flow-card span {
  color: #6b7e90;
  font-size: 11px;
  letter-spacing: .02em;
}

.hero-flow-card strong {
  margin-top: 6px;
  color: #153b5b;
  font-size: 16px;
  line-height: 1.35;
}

.hero [data-hero-title],
.hero [data-hero-copy],
.hero [data-hero-proofs] span,
.hero [data-hero-media],
.hero .hero-flow-card {
  clip-path: none;
  filter: none;
  transform: none;
  transition-property: opacity;
  transition-duration: .68s;
  transition-timing-function: ease-out;
}

.hero [data-hero-media] {
  transition-duration: .82s;
}

.hero [data-hero-copy] {
  transition-delay: .04s;
}

.hero [data-hero-proofs] span:nth-child(1) { transition-delay: .08s; }
.hero [data-hero-proofs] span:nth-child(2) { transition-delay: .12s; }
.hero [data-hero-proofs] span:nth-child(3) { transition-delay: .16s; }
.hero .hero-flow-card:nth-child(1) { transition-delay: .08s; }
.hero .hero-flow-card:nth-child(2) { transition-delay: .14s; }
.hero .hero-flow-card:nth-child(3) { transition-delay: .2s; }

.hero.is-changing [data-hero-title] {
  opacity: 0;
}

.hero.is-changing [data-hero-copy],
.hero.is-changing [data-hero-proofs] span {
  opacity: 0;
}

.hero.is-changing [data-hero-media] {
  opacity: 0;
}

.hero.is-changing .hero-flow-card {
  opacity: 0;
}

.hero.is-changing [data-hero-title],
.hero.is-changing [data-hero-copy],
.hero.is-changing [data-hero-proofs] span,
.hero.is-changing [data-hero-media],
.hero.is-changing .hero-flow-card {
  clip-path: none;
  filter: none;
  transform: none;
  transition-delay: 0s;
  transition-duration: .36s;
  transition-timing-function: ease-in;
}

.hero-carousel-controls {
  width: min(1240px, calc(100% - 56px));
  min-height: 32px;
  margin: -32px auto 0;
  display: grid;
  grid-template-columns: minmax(0, 760px);
  justify-content: center;
  gap: 18px;
}

.hero-carousel-tabs {
  width: 100%;
  padding: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.hero-carousel-tab {
  position: relative;
  min-width: 0;
  min-height: 32px;
  padding: 0 18px;
  display: block;
  border-top: 1px solid rgba(180, 204, 225, .9);
  border-radius: 0;
  text-align: left;
}

.hero-carousel-tab::before {
  content: "";
  position: absolute;
  top: -2px;
  right: 18px;
  left: 18px;
  height: 3px;
  border-radius: 999px;
  background: var(--blue);
  opacity: 0;
  transform: scaleX(.2);
  transform-origin: left center;
  transition: opacity .28s ease, transform .45s cubic-bezier(.2, .72, .2, 1);
}

.hero-carousel-tab:hover {
  background: transparent;
}

.hero-carousel-tab:hover::before {
  opacity: .45;
  transform: scaleX(1);
}

.hero-carousel-tab:focus-visible {
  outline: 0;
}

.hero-carousel-tab:focus-visible::before {
  opacity: 1;
  transform: scaleX(1);
  box-shadow: 0 0 0 3px rgba(18, 105, 199, .18);
}

.hero-carousel-tab.active {
  color: var(--blue);
  background: transparent;
  box-shadow: none;
}

.hero-carousel-tab.active::before {
  opacity: 1;
  transform: scaleX(1);
}

.hero-carousel-arrow {
  width: 44px;
  height: 44px;
  align-self: center;
  border-color: rgba(163, 195, 222, .94);
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 10px 28px rgba(31, 76, 117, .07);
}

@media (max-width: 1120px) and (min-width: 981px) {
  .hero-shell {
    grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
    gap: 28px;
  }
  .hero h1 {
    font-size: 50px;
  }
  .hero-copy > p {
    font-size: 14px;
  }
}

@media (max-width: 980px) {
  .hero {
    min-height: auto;
  }
  .hero-shell {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .hero-copy {
    max-width: 720px;
    margin: auto;
    padding: 60px 0 24px;
    text-align: center;
  }
  .hero h1,
  .hero-copy > p,
  .hero-proof-list {
    margin-right: auto;
    margin-left: auto;
  }
  .hero h1 {
    font-size: 54px;
  }
  .hero-visual {
    min-height: 480px;
    align-self: auto;
  }
  .hero-stage {
    width: min(760px, 100%);
  }
  .hero-carousel-controls {
    margin: -32px auto 0;
  }
}

@media (max-width: 760px) {
  .hero {
    padding-top: 62px;
    background: linear-gradient(180deg, #fff 0%, #f5faff 100%);
  }
  .hero::before,
  .hero::after {
    display: none;
  }
  .hero-shell {
    width: min(100% - 30px, 620px);
  }
  .hero-copy {
    padding: 40px 0 22px;
    text-align: left;
  }
  .hero h1 {
    margin-left: 0;
    font-size: 40px;
    letter-spacing: -.035em;
  }
  .hero-copy > p {
    margin-top: 20px;
    font-size: 14px;
    line-height: 1.76;
  }
  .hero-proof-list {
    margin-top: 26px;
    padding-top: 14px;
  }
  .hero-proof-list span {
    min-height: 50px;
    padding: 0 8px;
    font-size: 10px;
    line-height: 1.45;
  }
  .hero-proof-list span:first-child {
    padding-left: 0;
  }
  .hero-visual {
    min-height: auto;
  }
  .hero-stage {
    aspect-ratio: 1.04;
  }
  .hero-wifi-device {
    top: 0;
    right: 0;
    bottom: 29%;
    left: 0;
    border-radius: 17px;
    clip-path: inset(0 round 17px);
  }
  .hero-wifi-device img {
    border-radius: 16px;
  }
  .hero-business-stack {
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    transform: none;
  }
  .hero-flow-card {
    min-height: 66px;
    padding: 9px 8px;
    border-radius: 10px;
    box-shadow: 0 10px 24px rgba(27, 65, 100, .1);
  }
  .hero-flow-card span {
    font-size: 9px;
  }
  .hero-flow-card strong {
    margin-top: 4px;
    font-size: 11px;
  }
  .hero-carousel-controls {
    width: min(100% - 30px, 620px);
    min-height: 28px;
    margin: -28px auto 0;
    grid-template-columns: minmax(0, 1fr);
    gap: 6px;
  }
  .hero-carousel-tab {
    min-height: 28px;
    padding: 0 6px;
    display: block;
  }
  .hero-carousel-tab::before {
    right: 6px;
    left: 6px;
  }
  .hero-carousel-arrow {
    width: 36px;
    height: 36px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero [data-hero-title],
  .hero [data-hero-copy],
  .hero [data-hero-proofs] span,
  .hero [data-hero-media],
  .hero .hero-flow-card,
  .hero-carousel-tab::before {
    transition: none;
  }
}

/* 2026-08-10 full-width photography carousel: three generated hero images. */
.hero {
  min-height: auto;
  isolation: isolate;
}

.hero-shell {
  position: relative;
  width: 100%;
  max-width: none;
  min-height: 640px;
  display: block;
}

.hero-copy {
  position: relative;
  z-index: 3;
  width: min(44%, 560px);
  margin-left: max(28px, calc((100vw - 1240px) / 2));
  padding: 102px 0 126px;
}

.hero-visual {
  position: absolute;
  z-index: 1;
  inset: 0;
  min-height: 0;
  overflow: hidden;
}

.hero-visual::after,
.hero-orbit,
.hero-business-stack {
  display: none;
}

.hero-stage {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
}

.hero-wifi-device,
.hero[data-hero-theme="wifi"] .hero-wifi-device {
  inset: 0;
  width: 100%;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: #eef6fc;
  box-shadow: none;
  clip-path: none;
}

.hero-wifi-device::after,
.hero[data-hero-theme="wifi"] .hero-wifi-device::after {
  content: "";
  position: absolute;
  display: block;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(255, 255, 255, .3) 0%, rgba(255, 255, 255, .1) 38%, rgba(255, 255, 255, 0) 58%);
}

.hero-wifi-device img,
.hero[data-hero-theme="benefits"] .hero-wifi-device img,
.hero[data-hero-theme="iot"] .hero-wifi-device img,
.hero[data-hero-theme="wifi"] .hero-wifi-device img {
  width: 100%;
  height: 100%;
  padding: 0;
  border-radius: 0;
  object-fit: cover;
  object-position: center;
  filter: none;
  transform: none;
}

@media (max-width: 980px) {
  .hero-shell {
    min-height: 620px;
    display: block;
  }

  .hero-copy {
    width: min(48%, 460px);
    margin-left: 28px;
    padding: 72px 0 90px;
    text-align: left;
  }

  .hero-visual {
    position: absolute;
    inset: 0;
  }

  .hero-stage {
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
  }

  .hero h1,
  .hero-copy > p,
  .hero-proof-list {
    margin-right: 0;
    margin-left: 0;
  }
}

@media (max-width: 760px) {
  .hero-shell {
    width: 100%;
    min-height: 460px;
  }

  .hero-copy {
    width: 100%;
    margin-left: 0;
    padding: 40px 15px 140px;
  }

  .hero-wifi-device,
  .hero[data-hero-theme="wifi"] .hero-wifi-device {
    border: 0;
    border-radius: 0;
    clip-path: none;
  }

  .hero-wifi-device::after,
  .hero[data-hero-theme="wifi"] .hero-wifi-device::after {
    display: block;
    background: linear-gradient(180deg, rgba(255, 255, 255, .98) 0%, rgba(255, 255, 255, .94) 42%, rgba(255, 255, 255, .58) 61%, rgba(255, 255, 255, .06) 82%, rgba(255, 255, 255, 0) 100%);
  }

  .hero-wifi-device img,
  .hero[data-hero-theme="benefits"] .hero-wifi-device img,
  .hero[data-hero-theme="iot"] .hero-wifi-device img,
  .hero[data-hero-theme="wifi"] .hero-wifi-device img {
    object-fit: contain;
    object-position: center bottom;
  }
}

/* 2026-08-10 compact unified credential wall: one container, less copy, less height. */
.credentials {
  padding: 56px 0;
}

.credentials-unified {
  gap: 18px;
}

.credentials-header {
  padding: 0;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  border: 0;
}

.credentials-heading h2 {
  font-size: clamp(36px, 3.2vw, 46px);
}

.credentials-heading > p {
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.55;
}

.credential-stats.credential-stats-compact {
  width: auto;
  display: block;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.credential-stats.credential-stats-compact div {
  min-height: 0;
  padding: 9px 14px;
  display: flex;
  align-items: baseline;
  gap: 7px;
  border: 1px solid rgba(188, 213, 235, .92);
  border-radius: 12px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 10px 24px rgba(46, 88, 126, .06);
}

.credential-stats.credential-stats-compact strong {
  font-size: 25px;
  line-height: 1;
}

.credential-stats.credential-stats-compact span {
  margin: 0;
  color: #657b90;
  font-size: 11px;
  white-space: nowrap;
}

.credential-gallery.credential-gallery-compact {
  min-width: 0;
  padding: 18px;
  display: block;
  border: 1px solid rgba(181, 210, 236, .92);
  border-radius: 20px;
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 18px 46px rgba(42, 83, 119, .075);
}

.credential-gallery-compact .credential-overview-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.credential-gallery-compact .credential-overview-card {
  border-radius: 13px;
  box-shadow: 0 8px 22px rgba(42, 83, 119, .055);
}

.credential-gallery-compact .credential-overview-card:hover {
  box-shadow: 0 14px 30px rgba(42, 83, 119, .12);
  transform: translateY(-2px);
}

.credential-gallery-compact .credential-overview-media {
  height: auto;
  aspect-ratio: 4 / 3;
  padding: 0;
  display: block;
}

.credential-gallery-compact .credential-overview-media img {
  position: absolute;
  inset: 12px;
  width: calc(100% - 24px);
  height: calc(100% - 24px);
  max-width: none;
  object-fit: contain;
  object-position: center;
}

.credential-gallery-compact .credential-overview-zoom {
  top: 9px;
  right: 9px;
  width: 29px;
  height: 29px;
  border-radius: 8px;
  font-size: 11px;
}

.credential-gallery-compact .credential-overview-copy {
  min-height: 54px;
  padding: 10px 13px 11px;
  display: flex;
  align-items: center;
}

.credential-gallery-compact .credential-overview-copy > strong {
  margin: 0;
  font-size: 12px;
  line-height: 1.4;
}

@media (max-width: 900px) {
  .credential-gallery-compact .credential-overview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .credential-gallery-compact .credential-overview-media {
    height: auto;
  }
}

@media (max-width: 560px) {
  .credentials {
    padding: 44px 0;
  }

  .credentials-unified {
    gap: 14px;
  }

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

  .credentials-heading h2 {
    font-size: 32px;
  }

  .credentials-heading > p {
    margin-top: 6px;
    font-size: 11px;
  }

  .credential-stats.credential-stats-compact div {
    padding: 8px 10px;
    gap: 5px;
  }

  .credential-stats.credential-stats-compact strong {
    font-size: 22px;
  }

  .credential-stats.credential-stats-compact span {
    font-size: 10px;
  }

  .credential-gallery.credential-gallery-compact {
    padding: 10px;
    border-radius: 16px;
  }

  .credential-gallery-compact .credential-overview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .credential-gallery-compact .credential-overview-media {
    height: auto;
  }

  .credential-gallery-compact .credential-overview-media img {
    inset: 8px;
    width: calc(100% - 16px);
    height: calc(100% - 16px);
  }

  .credential-gallery-compact .credential-overview-zoom {
    top: 6px;
    right: 6px;
    width: 25px;
    height: 25px;
    font-size: 10px;
  }

  .credential-gallery-compact .credential-overview-copy {
    min-height: 52px;
    padding: 8px 9px 9px;
  }

  .credential-gallery-compact .credential-overview-copy > strong {
    font-size: 11px;
    line-height: 1.35;
  }
}

/* 2026-08-10 align partner-section descriptions with their left-side titles. */
.partners-heading {
  grid-template-columns: 1fr;
  align-items: start;
  gap: 12px;
}

.partners-heading > p:last-child,
.benefit-brand-heading-side > p {
  justify-self: start;
  text-align: left;
}

.benefit-brand-heading {
  grid-template-columns: 1fr;
  align-items: start;
  gap: 16px;
}

.benefit-brand-heading-side {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 28px;
}

@media (max-width: 760px) {
  .benefit-brand-heading-side {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }
}

/* Keep the two partner-area headings on one typography and spacing rhythm. */
.partners-heading,
.benefit-brand-heading {
  grid-template-columns: 1fr;
  align-items: start;
  gap: 12px;
}

.partners-heading h2,
.benefit-brand-heading h3 {
  margin: 0;
  font-size: clamp(40px, 3.25vw, 48px);
  line-height: 1.15;
  letter-spacing: -.025em;
}

.partners-heading > p:last-child,
.benefit-brand-heading-side > p {
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.8;
}

.benefit-brand-heading-side {
  align-items: start;
}

@media (max-width: 760px) {
  .partners-heading,
  .benefit-brand-heading {
    gap: 10px;
  }

  .partners-heading h2,
  .benefit-brand-heading h3 {
    font-size: 36px;
  }

  .partners-heading > p:last-child,
  .benefit-brand-heading-side > p {
    font-size: 14px;
    line-height: 1.75;
  }
}

/* 2026-08-10 solution section v2: real operations scene + continuous process rail. */
.distribution {
  position: relative;
  padding-top: 76px;
  padding-bottom: 68px;
  background: linear-gradient(180deg, #f6faff 0%, #ffffff 46%, #f7fbff 100%);
}

.distribution::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 78% 17%, rgba(18, 105, 199, .08), transparent 29%),
    linear-gradient(90deg, transparent 0 49.96%, rgba(18, 105, 199, .035) 50%, transparent 50.04%);
}

.distribution-layout {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(0, .88fr) minmax(540px, 1.12fr);
  align-items: stretch;
  column-gap: clamp(44px, 4vw, 68px);
  row-gap: 38px;
}

.distribution-copy {
  min-width: 0;
  padding: 8px 0 0;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}

.distribution-copy h2 {
  color: #10233d;
  font-size: clamp(46px, 3.6vw, 56px);
  font-weight: 860;
  line-height: 1.05;
  letter-spacing: -.035em;
}

.distribution-copy p:not(.eyebrow) {
  max-width: 590px;
  margin: 22px 0 24px;
  color: #5e748c;
  font-size: 16px;
  line-height: 1.82;
}

.solution-proof {
  width: 100%;
  max-width: 620px;
  margin: 0 0 26px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid #d6e4f1;
  border-bottom: 1px solid #d6e4f1;
}

.solution-proof span {
  min-height: 58px;
  padding: 11px 13px;
  justify-content: flex-start;
  border: 0;
  border-right: 1px solid #d6e4f1;
  border-radius: 0;
  color: #23425f;
  background: transparent;
  box-shadow: none;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.45;
}

.solution-proof span:first-child { padding-left: 0; }
.solution-proof span:last-child { border-right: 0; }

.solution-proof i {
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid #c8def2;
  border-radius: 50%;
  color: #1269c7;
  background: #f7fbff;
  font-size: 15px;
}

.distribution-copy .button {
  min-width: 172px;
  min-height: 46px;
  border-radius: 4px;
  box-shadow: 0 14px 30px rgba(18, 105, 199, .18);
}

.distribution-visual {
  position: relative;
  min-height: 360px;
  aspect-ratio: 16 / 9;
  padding: 0;
  overflow: hidden;
  border: 1px solid #d3e3f1;
  border-radius: 24px 4px 24px 4px;
  background: #eef5fb;
  box-shadow: 0 30px 70px rgba(30, 66, 104, .14);
  isolation: isolate;
}

.distribution-visual::before {
  content: "";
  z-index: 1;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(180deg, transparent 52%, rgba(7, 28, 52, .16) 100%),
    linear-gradient(90deg, rgba(255,255,255,.04), transparent 48%);
  filter: none;
  transform: none;
}

.distribution-visual img {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  width: 188%;
  max-width: none;
  height: auto;
  aspect-ratio: auto;
  object-fit: initial;
  object-position: initial;
  border-radius: 0;
  transition: transform .7s cubic-bezier(.2,.7,.2,1);
}

.distribution-visual:hover img { transform: scale(1.018); }

.distribution-visual figcaption {
  z-index: 4;
  left: 24px;
  right: 24px;
  bottom: 24px;
  min-height: 94px;
  padding: 18px 20px;
  gap: 6px;
  border: 0;
  border-left: 3px solid #1269c7;
  border-radius: 0 10px 10px 0;
  color: #102b49;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 18px 42px rgba(16, 51, 84, .16);
  backdrop-filter: blur(12px);
}

.distribution-visual figcaption strong {
  font-size: 19px;
  letter-spacing: -.01em;
}

.distribution-visual figcaption span {
  color: #61768d;
  font-size: 12.5px;
}

.flow-steps {
  grid-column: 1 / -1;
  position: relative;
  margin-top: 0;
  padding-top: 32px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid #c6d9ea;
  border-bottom: 1px solid #dbe7f2;
}

.flow-steps::before {
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, #1269c7 0 25%, #13998d 25% 50%, #e8a11d 50% 75%, #2d4059 75% 100%);
}

.flow-steps article {
  min-height: auto;
  padding: 4px clamp(18px, 1.9vw, 30px) 26px;
  grid-template-columns: 40px 1fr;
  grid-template-rows: auto 1fr;
  column-gap: 14px;
  border: 0;
  border-right: 1px solid #dbe6f0;
  border-radius: 0;
  overflow: visible;
  background: transparent;
  box-shadow: none;
}

.flow-steps article:first-child { padding-left: 0; }
.flow-steps article:last-child { padding-right: 0; border-right: 0; }

.flow-steps article::before {
  inset: -41px auto auto 0;
  width: 16px;
  height: 16px;
  border: 4px solid #f6faff;
  border-radius: 50%;
  background: #1269c7;
  box-shadow: 0 0 0 1px #1269c7;
}

.flow-steps article:nth-child(2)::before { background: #13998d; box-shadow: 0 0 0 1px #13998d; }
.flow-steps article:nth-child(3)::before { background: #e8a11d; box-shadow: 0 0 0 1px #e8a11d; }
.flow-steps article:nth-child(4)::before { background: #2d4059; box-shadow: 0 0 0 1px #2d4059; }
.flow-steps article::after { display: none; }

.flow-index {
  grid-column: 1 / -1;
  margin-bottom: 14px;
  color: #86a4c0;
  font-size: 14px;
  letter-spacing: .16em;
}

.flow-steps i {
  width: 40px;
  height: 40px;
  margin-top: 0;
  border: 1px solid #c7ddf1;
  border-radius: 50%;
  color: #1269c7;
  background: #f5faff;
  box-shadow: none;
  font-size: 18px;
}

.flow-steps article:nth-child(2) i { color: #13998d; background: #f2fbfa; }
.flow-steps article:nth-child(3) i { color: #d88b00; background: #fff9ee; }
.flow-steps article:nth-child(4) i { color: #2d4059; background: #f5f7f9; }

.flow-steps article > div { margin-top: 0; }

.flow-steps h3 {
  margin-bottom: 8px;
  color: #142b45;
  font-size: 18px;
  line-height: 1.35;
}

.flow-steps p {
  color: #62778c;
  font-size: 12.5px;
  line-height: 1.68;
}

.flow-steps small {
  min-height: auto;
  margin-top: 18px;
  padding: 0;
  border-radius: 0;
  color: #1a69ad;
  background: transparent;
  font-size: 10.5px;
  line-height: 1.55;
}

/* Center all credential card labels without changing their row height. */
.credential-gallery-compact .credential-overview-copy {
  justify-content: center;
  text-align: center;
}

.credential-gallery-compact .credential-overview-copy > strong {
  width: 100%;
  text-align: center;
}

/* Restore a single-column solution layout after the final desktop overrides. */
@media (max-width: 1080px) {
  .distribution-layout {
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
    column-gap: 0;
    row-gap: 30px;
  }

  .distribution-copy { max-width: 760px; }

  .distribution-visual {
    width: min(920px, 100%);
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .flow-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-top: 0;
    border-top: 0;
  }

  .flow-steps::before,
  .flow-steps article::before { display: none; }

  .flow-steps article,
  .flow-steps article:first-child,
  .flow-steps article:last-child {
    min-height: auto;
    padding: 24px 22px;
    border-top: 3px solid #1269c7;
    border-right: 1px solid #dbe6f0;
    border-bottom: 1px solid #dbe6f0;
  }

  .flow-steps article:nth-child(2) { border-top-color: #13998d; }
  .flow-steps article:nth-child(3) { border-top-color: #e8a11d; }
  .flow-steps article:nth-child(4) { border-top-color: #2d4059; }
  .flow-steps article:nth-child(2n) { border-right: 0; }
}

@media (max-width: 760px) {
  .distribution {
    padding-top: 50px;
    padding-bottom: 46px;
  }

  .distribution-layout {
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
    column-gap: 0;
    row-gap: 20px;
  }

  .distribution-copy h2 { font-size: 40px; }

  .distribution-copy p:not(.eyebrow) {
    margin: 18px 0 20px;
    line-height: 1.75;
  }

  .solution-proof {
    margin-bottom: 22px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .solution-proof span,
  .solution-proof span:first-child,
  .solution-proof span:last-child {
    min-height: 52px;
    padding: 8px 6px;
    gap: 6px;
    border-right: 1px solid #d6e4f1;
    border-bottom: 0;
    font-size: 11px;
  }

  .solution-proof span:last-child { border-right: 0; }

  .solution-proof i {
    width: 28px;
    height: 28px;
    font-size: 13px;
  }

  .distribution-visual {
    width: 100%;
    min-height: 0;
    aspect-ratio: 1.54 / 1;
  }

  .flow-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-top: 0;
    border: 1px solid #dbe6f0;
  }

  .flow-steps article,
  .flow-steps article:first-child,
  .flow-steps article:last-child {
    min-width: 0;
    min-height: 164px;
    padding: 15px 14px 16px;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    border-top-width: 3px;
    border-right: 1px solid #dbe6f0;
    border-bottom: 1px solid #dbe6f0;
  }

  .flow-steps article:nth-child(2n) {
    border-right: 0;
  }

  .flow-steps article:nth-child(n + 3) {
    border-bottom: 0;
  }

  .flow-index {
    margin-bottom: 10px;
    font-size: 12px;
  }

  .flow-steps i {
    width: 36px;
    height: 36px;
    margin-bottom: 12px;
    font-size: 16px;
  }

  .flow-steps article > div {
    width: 100%;
  }

  .flow-steps h3 {
    margin-bottom: 6px;
    font-size: 16px;
  }

  .flow-steps p {
    overflow-wrap: anywhere;
    font-size: 11px;
    line-height: 1.62;
  }
}

/* 2026-08-10 core capabilities integrated redesign: final cascade */
.capabilities {
  padding: 64px 0 58px;
  background: #fff;
}

.capabilities-shell {
  width: min(1240px, calc(100% - 56px));
  display: block;
}

.capability-panel {
  display: grid;
  grid-template-columns: minmax(300px, 0.37fr) minmax(0, 0.63fr);
  overflow: hidden;
  border: 1px solid rgba(204, 222, 238, 0.92);
  border-top: 4px solid #1269c7;
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.capability-copy {
  grid-area: auto;
  max-width: none;
  min-width: 0;
  padding: 56px 46px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #f2f7fc;
}

.capability-copy h2 {
  max-width: none;
  margin: 0;
  color: #0d1c31;
  font-size: clamp(40px, 3.1vw, 48px);
  font-weight: 820;
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.capability-copy > p:not(.eyebrow) {
  max-width: 360px;
  margin: 28px 0 0;
  color: #5d7187;
  font-size: 15px;
  line-height: 1.85;
}

.capability-list {
  grid-area: auto;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: #fff;
  box-shadow: none;
}

.capability-item,
.capability-item:first-child,
.capability-item:last-child,
.capability-item:nth-child(-n + 2) {
  position: relative;
  min-height: 246px;
  padding: 32px 38px 34px;
  display: block;
  border: 0;
  border-right: 1px solid #dbe6f0;
  border-bottom: 1px solid #dbe6f0;
  background: #fff;
}

.capability-item:nth-child(2n) {
  border-right: 0;
}

.capability-item:nth-child(n + 3) {
  border-bottom: 0;
}

.capability-item::before,
.capability-item.is-primary::before {
  display: none;
}

.capability-index {
  display: block;
  margin-bottom: 16px;
  color: #1269c7;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.08em;
}

.capability-item i {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border: 0;
  border-radius: 0;
  color: #1269c7;
  background: transparent;
  font-size: 34px;
}

.capability-item h3 {
  margin: 0 0 10px;
  color: #14243a;
  font-size: 19px;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.capability-item p {
  max-width: 330px;
  margin: 0;
  color: #60758a;
  font-size: 12.5px;
  line-height: 1.72;
}

.capability-media,
.capability-journey {
  display: none;
}

@media (max-width: 900px) {
  .capabilities-shell {
    width: min(760px, calc(100% - 40px));
  }

  .capability-panel {
    grid-template-columns: 1fr;
  }

  .capability-copy {
    padding: 42px 38px;
  }

  .capability-copy > p:not(.eyebrow) {
    max-width: 650px;
    margin-top: 20px;
  }

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

  .capability-item,
  .capability-item:first-child,
  .capability-item:last-child,
  .capability-item:nth-child(-n + 2) {
    min-height: 220px;
  }
}

@media (max-width: 760px) {
  .capabilities {
    padding: 52px 0;
  }

  .capabilities-shell {
    width: calc(100% - 32px);
  }

  .capability-panel {
    border-radius: 14px;
  }

  .capability-copy {
    padding: 32px 24px 34px;
  }

  .capability-copy h2 {
    font-size: 34px;
  }

  .capability-copy > p:not(.eyebrow) {
    margin-top: 16px;
    font-size: 14px;
    line-height: 1.75;
  }

  .capability-list {
    grid-template-columns: 1fr;
  }

  .capability-item,
  .capability-item:first-child,
  .capability-item:last-child,
  .capability-item:nth-child(-n + 2) {
    min-height: auto;
    padding: 24px 24px 26px;
    border: 0;
    border-bottom: 1px solid #dbe6f0;
  }

  .capability-item:last-child {
    border-bottom: 0;
  }

  .capability-index {
    margin-bottom: 12px;
  }

  .capability-item i {
    width: 36px;
    height: 36px;
    margin-bottom: 12px;
    font-size: 28px;
  }

  .capability-item h3 {
    font-size: 17px;
  }
}
