@font-face {
  font-family: "Poppins";
  src: local("Poppins Regular"), local("Poppins-Regular"), local("Poppins");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: local("Poppins Medium"), local("Poppins-Medium"), local("Poppins");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: local("Poppins SemiBold"), local("Poppins-SemiBold"), local("Poppins");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: local("Poppins Bold"), local("Poppins-Bold"), local("Poppins");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: local("Poppins ExtraBold"), local("Poppins-ExtraBold"), local("Poppins");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #1a2430;
  --ink-soft: rgba(26, 36, 48, 0.76);
  --ink-faint: rgba(26, 36, 48, 0.56);
  --paper: #f5efe4;
  --paper-strong: #ece2d2;
  --paper-soft: #fbf7f1;
  --white: #fffdf8;
  --night: #0d1722;
  --night-soft: #13202f;
  --line-dark: rgba(26, 36, 48, 0.12);
  --line-light: rgba(255, 253, 248, 0.16);
  --teal: #2f9e5a;
  --amber: #5f8f36;
  --shell: 1180px;
  --gutter: clamp(1.1rem, 3vw, 2.35rem);
  --header-height: 88px;
  --radius-lg: 1.5rem;
  --radius-md: 1rem;
  --shadow: 0 24px 60px rgba(8, 13, 20, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--paper);
  font-family: "Poppins", "Avenir Next", "Segoe UI", sans-serif;
  text-rendering: optimizeLegibility;
}

body::selection {
  background: rgba(47, 158, 90, 0.24);
}

body.menu-open {
  overflow: hidden;
}

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

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

.splash-cursor-canvas {
  position: fixed;
  inset: 0;
  z-index: 44;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  mix-blend-mode: multiply;
}

.shell {
  width: min(100% - (var(--gutter) * 2), var(--shell));
  margin: 0 auto;
}

.shell-wide {
  width: min(100% - (var(--gutter) * 2), 1260px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-height);
  padding: 1rem var(--gutter);
  background: rgba(245, 239, 228, 0.9);
  border-bottom: 1px solid var(--line-dark);
  backdrop-filter: blur(14px);
}

.site-header-home {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, rgba(7, 12, 18, 0.54), transparent);
  border-bottom: 0;
  backdrop-filter: none;
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}

.brand-logo {
  display: block;
  height: clamp(2.1rem, 3.4vw, 2.7rem);
  width: auto;
  max-width: 11rem;
  border-radius: 0.35rem;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 0.85rem;
  background: linear-gradient(145deg, #4abf72, #1f7a45);
  color: #f2fde9;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 14px 28px rgba(47, 158, 90, 0.18);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 0.14rem;
}

.brand-name,
h1,
h2,
h3 {
  font-family: "Poppins", "Avenir Next", "Segoe UI", sans-serif;
}

.brand-name {
  font-size: 1.28rem;
  font-weight: 600;
  line-height: 1;
}

.brand-tag {
  font-size: 0.72rem;
  line-height: 1.2;
  color: var(--ink-faint);
}

.site-header-home .brand-name,
.site-header-home .brand-tag,
.site-header-home .site-nav a {
  color: rgba(255, 253, 248, 0.92);
}

.site-header-home .brand-tag,
.site-header-home .site-nav a {
  opacity: 0.86;
}

.site-nav {
  display: inline-flex;
  align-items: center;
  gap: 1.65rem;
  font-size: 0.95rem;
}

.site-menu {
  display: inline-flex;
  align-items: center;
  gap: 1.2rem;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 2.9rem;
  height: 2.9rem;
  padding: 0;
  border: 1px solid rgba(26, 36, 48, 0.12);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.72);
  color: var(--ink);
  cursor: pointer;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}

.site-header-home .menu-toggle {
  border-color: rgba(255, 253, 248, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 253, 248, 0.94);
}

.menu-toggle-lines {
  display: grid;
  gap: 0.26rem;
}

.menu-toggle-lines span {
  display: block;
  width: 1.05rem;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.site-header.menu-open .menu-toggle-lines span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.site-header.menu-open .menu-toggle-lines span:nth-child(2) {
  opacity: 0;
}

.site-header.menu-open .menu-toggle-lines span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.site-nav a {
  position: relative;
  transition: opacity 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  opacity: 0.68;
}

.site-nav a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.55rem;
  height: 2px;
  background: currentColor;
}

.header-cta,
.button,
.info-card,
.plan-card,
.mini-panel,
.aside-card,
.featured-story,
.store-card,
.bundle-card,
.cart-panel {
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    opacity 180ms ease;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0 1.2rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
}

.header-cta {
  background: linear-gradient(145deg, #45b46b, #246f42);
  color: white;
}

.header-cta:hover,
.header-cta:focus-visible,
.button:hover,
.button:focus-visible,
.info-card:hover,
.info-card:focus-visible,
.plan-card:hover,
.plan-card:focus-visible,
.store-card:hover,
.store-card:focus-visible,
.bundle-card:hover,
.mini-panel:hover,
.aside-card:hover,
.featured-story:hover {
  transform: translateY(-2px);
}

.whatsapp-float {
  position: fixed;
  right: max(1rem, env(safe-area-inset-right));
  bottom: max(1rem, env(safe-area-inset-bottom));
  z-index: 46;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.7rem;
  height: 3.7rem;
  border-radius: 999px;
  background: linear-gradient(145deg, #2bc061, #118c4f);
  color: #ffffff;
  box-shadow: 0 18px 34px rgba(17, 140, 79, 0.28);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    filter 180ms ease;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 22px 42px rgba(17, 140, 79, 0.32);
  filter: saturate(1.04);
}

.whatsapp-float svg {
  width: 1.75rem;
  height: 1.75rem;
  fill: currentColor;
}

.home-hero {
  position: relative;
  min-height: clamp(24rem, 58svh, 34rem);
  overflow: clip;
  background: #12243a;
  isolation: isolate;
}

.home-hero::before,
.home-hero::after,
.hero-hyperspeed,
.hero-map-layer {
  position: absolute;
  inset: 0;
}

.hero-hyperspeed {
  z-index: 0;
  background: #12243a;
}

.hero-hyperspeed canvas {
  display: block;
  width: 100% !important;
  height: 100% !important;
  pointer-events: none;
}

.home-hero::before {
  content: "";
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(14, 24, 39, 0.28) 0%, rgba(14, 24, 39, 0.03) 34%, rgba(14, 24, 39, 0.1) 100%),
    radial-gradient(circle at 16% 52%, rgba(0, 0, 0, 0.08), transparent 40%);
  pointer-events: none;
}

.hero-map-layer {
  z-index: 2;
  display: grid;
  place-items: center;
  pointer-events: none;
}

.hero-map-graphic {
  position: relative;
  width: min(110vw, 68rem);
  aspect-ratio: 420 / 520;
  transform: translate(6%, -3%);
  opacity: 0.44;
}

.hero-map-graphic::before {
  content: "";
  position: absolute;
  inset: -14%;
  background:
    radial-gradient(circle at 34% 28%, rgba(3, 179, 195, 0.08), transparent 48%),
    radial-gradient(circle at 64% 76%, rgba(216, 86, 191, 0.06), transparent 46%);
  filter: blur(36px);
  opacity: 0.42;
}

.hero-map-graphic::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 253, 248, 0.14), rgba(255, 253, 248, 0.04));
  -webkit-mask-image: url("./kenya-hero-silhouette.svg");
  mask-image: url("./kenya-hero-silhouette.svg");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  opacity: 0.14;
  mix-blend-mode: screen;
}

.hero-map-dots,
.hero-map-outline {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-map-dots {
  background:
    radial-gradient(circle, rgba(255, 253, 248, 0.72) 0 1px, transparent 1.45px) center/14px 14px,
    linear-gradient(160deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.04));
  -webkit-mask-image: url("./kenya-hero-silhouette.svg");
  mask-image: url("./kenya-hero-silhouette.svg");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  opacity: 0.16;
  mix-blend-mode: screen;
}

.hero-map-outline {
  object-fit: contain;
  opacity: 0.04;
  mix-blend-mode: screen;
  filter: saturate(0) brightness(1.55) contrast(0.9);
}

.home-hero::after {
  content: "";
  z-index: 3;
  background:
    linear-gradient(90deg, rgba(10, 17, 28, 0.12) 0%, rgba(10, 17, 28, 0.04) 44%, rgba(10, 17, 28, 0.02) 100%),
    radial-gradient(circle at 72% 28%, rgba(3, 179, 195, 0.14), transparent 18%),
    radial-gradient(circle at 28% 74%, rgba(216, 86, 191, 0.14), transparent 18%);
  mix-blend-mode: screen;
  opacity: 0.76;
  pointer-events: none;
}

.home-hero-grid,
.page-hero-grid,
.two-column,
.editorial-grid,
.cta-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.44fr);
  gap: 2rem 3rem;
}

.home-hero-grid {
  position: relative;
  z-index: 4;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  justify-items: center;
  min-height: clamp(24rem, 58svh, 34rem);
  padding: calc(var(--header-height) + 1.55rem) 0 1.7rem;
  color: var(--white);
}

.hero-copy,
.page-hero-copy,
.section-head {
  display: grid;
  gap: 0.95rem;
}

.hero-copy {
  max-width: 34rem;
}

.home-hero .hero-copy {
  justify-items: center;
  margin: 0 auto;
  max-width: 48rem;
  text-align: center;
}

.home-hero h1 {
  font-size: clamp(2.2rem, 4.3vw, 4.25rem);
  max-width: 13.5ch;
  line-height: 0.94;
  text-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
}

.eyebrow,
.section-label,
.panel-label,
.card-kicker,
.plan-kicker,
.service-id {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow,
.section-label,
.panel-label,
.card-kicker,
.plan-kicker,
.service-id {
  color: var(--teal);
}

h1,
h2,
h3 {
  margin: 0;
  font-weight: 600;
  letter-spacing: -0.04em;
}

h1 {
  font-size: clamp(3rem, 6vw, 5.2rem);
  line-height: 0.98;
  max-width: 9.5ch;
}

h2 {
  font-size: clamp(1.95rem, 3.7vw, 3rem);
  line-height: 1.04;
  max-width: 13ch;
}

h3 {
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  line-height: 1.1;
}

.hero-text,
.section-copy,
.info-card p,
.mini-panel p,
.article-row p,
.featured-story p,
.aside-card p,
.plan-card p,
.store-card p,
.bundle-card p,
.service-band-body p,
.page-hero-copy p,
.panel-block strong,
.plan-stack-row p,
.contact-list span,
.cart-empty {
  margin: 0;
  font-size: 1.03rem;
  line-height: 1.72;
}

.hero-text {
  max-width: 34rem;
  color: rgba(255, 253, 248, 0.82);
}

.home-hero .hero-text {
  margin-inline: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.95rem;
  margin-top: 1rem;
}

.home-hero .hero-actions {
  justify-content: center;
}

.button-solid {
  background: linear-gradient(145deg, #4abf72, #2a874c);
  color: white;
  box-shadow: 0 18px 34px rgba(47, 158, 90, 0.22);
}

.button-outline {
  border-color: var(--line-dark);
  background: rgba(255, 253, 248, 0.56);
  color: var(--ink);
}

.button-small {
  min-height: 2.65rem;
  padding: 0 1rem;
  font-size: 0.92rem;
}

.button-ghost {
  border-color: rgba(255, 253, 248, 0.24);
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  backdrop-filter: blur(8px);
}

.hero-panel,
.page-side-panel {
  align-self: end;
  padding: 1.1rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.hero-panel {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 253, 248, 0.12);
  backdrop-filter: blur(12px);
}

.page-side-panel {
  background: var(--paper-soft);
  border: 1px solid var(--line-dark);
}

.panel-block {
  display: grid;
  gap: 0.28rem;
  padding: 0.95rem 0;
  border-top: 1px solid rgba(255, 253, 248, 0.14);
}

.page-side-panel .panel-block {
  border-top-color: var(--line-dark);
}

.panel-block:first-of-type {
  margin-top: 0.3rem;
}

.panel-block span {
  color: var(--ink-faint);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-panel .panel-block strong {
  color: rgba(255, 253, 248, 0.9);
}

.strip {
  overflow: hidden;
  background: linear-gradient(90deg, #0f1825, #13202f);
  color: rgba(255, 253, 248, 0.84);
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.strip-track {
  display: flex;
  gap: 1.2rem;
  min-width: max-content;
  padding: 0.9rem 1.2rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  animation: marquee 28s linear infinite;
}

.strip-track span::after {
  content: "•";
  margin-left: 1.2rem;
  color: var(--amber);
}

.section {
  padding: clamp(4rem, 7vw, 6.1rem) 0;
}

.section-tint {
  background: linear-gradient(180deg, rgba(26, 36, 48, 0.04), transparent 18%), var(--paper-strong);
}

.section-dark {
  background: linear-gradient(180deg, #101925, #162232);
  color: var(--white);
}

.section-dark .section-label,
.section-dark .coverage-card span {
  color: var(--teal);
}

.section-dark .section-head {
  color: var(--white);
}

.section-dark .section-head .section-copy,
.section-dark .coverage-card p {
  color: rgba(255, 253, 248, 0.78);
}

.section-head {
  max-width: 44rem;
}

.section-copy,
.page-hero-copy p,
.info-card p,
.mini-panel p,
.article-row p,
.featured-story p,
.aside-card p,
.plan-card p,
.store-card p,
.bundle-card p,
.service-band-body p,
.plan-stack-row p,
.contact-list span,
.cart-empty {
  color: var(--ink-soft);
}

.card-grid,
.three-up,
.coverage-cards,
.plan-grid {
  display: grid;
  gap: 1.2rem;
}

.card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 2rem;
}

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

.info-card,
.mini-panel,
.plan-card,
.aside-card {
  display: grid;
  gap: 0.8rem;
  padding: 1.35rem;
  border-radius: var(--radius-md);
  background: rgba(255, 253, 248, 0.72);
  border: 1px solid rgba(26, 36, 48, 0.08);
  box-shadow: 0 10px 24px rgba(26, 36, 48, 0.05);
}

.plan-stack {
  display: grid;
  gap: 0;
}

.plan-stack-row {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.2fr) auto;
  gap: 1rem;
  align-items: center;
  padding: 1rem 0;
  border-top: 1px solid var(--line-dark);
}

.plan-stack-row:last-child {
  border-bottom: 1px solid var(--line-dark);
}

.plan-stack-row strong {
  color: var(--amber);
  font-weight: 800;
}

.plan-kicker {
  margin-bottom: 0.35rem;
}

.coverage-cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 2rem;
}

.coverage-layout {
  display: grid;
  gap: 2rem;
}

.coverage-map-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1fr);
  gap: 1.2rem;
  align-items: stretch;
}

.coverage-card {
  padding: 1.15rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 253, 248, 0.12);
}

.coverage-map-card,
.coverage-legend {
  padding: 1.2rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 253, 248, 0.12);
}

.coverage-map {
  width: 100%;
  height: auto;
}

.map-outline {
  fill: rgba(47, 158, 90, 0.14);
  stroke: rgba(255, 253, 248, 0.44);
  stroke-width: 6;
  stroke-linejoin: round;
}

.map-dot {
  stroke: #111b27;
  stroke-width: 4;
}

.map-dot-live {
  fill: var(--teal);
}

.map-dot-rollout {
  fill: var(--amber);
}

.map-dot-survey {
  fill: rgba(255, 253, 248, 0.92);
}

.map-label {
  fill: rgba(255, 253, 248, 0.88);
  font-family: "Poppins", "Avenir Next", "Segoe UI", sans-serif;
  font-size: 14px;
  font-weight: 700;
}

.coverage-legend {
  display: grid;
  gap: 0;
}

.legend-item {
  padding: 0.95rem 0;
  border-top: 1px solid rgba(255, 253, 248, 0.12);
}

.legend-item:first-child {
  padding-top: 0;
  border-top: 0;
}

.legend-item:last-child {
  padding-bottom: 0;
}

.legend-item p {
  margin: 0.5rem 0 0;
  color: rgba(255, 253, 248, 0.78);
  line-height: 1.7;
}

.legend-status {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.legend-swatch {
  width: 0.78rem;
  height: 0.78rem;
  border-radius: 50%;
  border: 2px solid rgba(255, 253, 248, 0.26);
}

.legend-swatch-live {
  background: var(--teal);
}

.legend-swatch-rollout {
  background: var(--amber);
}

.legend-swatch-survey {
  background: rgba(255, 253, 248, 0.9);
}

.legend-swatch-hotspot {
  background: linear-gradient(145deg, var(--teal), var(--amber));
}

.coverage-card span {
  display: block;
  margin-bottom: 0.55rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cta-box {
  align-items: end;
  padding: 1.6rem 0;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.contact-list {
  display: grid;
  gap: 0.7rem;
  align-content: end;
}

.contact-list a {
  font-weight: 700;
}

.site-footer {
  padding: 1.6rem 0 2rem;
  background: #e4d9c7;
}

.footer-grid {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
}

.footer-brand {
  margin: 0;
  font-family: "Poppins", "Avenir Next", "Segoe UI", sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
}

.footer-copy {
  max-width: 34rem;
  margin: 0.45rem 0 0;
  color: var(--ink-soft);
  line-height: 1.65;
}

.footer-nav {
  display: flex;
  gap: 1rem 1.4rem;
  flex-wrap: wrap;
}

.page-hero {
  padding: calc(var(--header-height) + 2rem) 0 3rem;
}

.page-hero-light {
  background: linear-gradient(180deg, var(--paper-soft), var(--paper));
}

.page-hero-grid {
  align-items: center;
}

.services-page .page-hero-grid {
  grid-template-columns: minmax(0, 1fr);
}

.services-page .page-side-panel {
  max-width: 42rem;
}

.page-hero-copy {
  max-width: 40rem;
}

.hero-actions-light .button-outline {
  background: rgba(255, 253, 248, 0.86);
}

.shop-toolbar-section {
  padding: calc(var(--header-height) + 1rem) 0 1rem;
  background: linear-gradient(180deg, var(--paper-soft), var(--paper));
  border-bottom: 1px solid var(--line-dark);
}

.shop-toolbar-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  flex-wrap: wrap;
}

.shop-toolbar-actions {
  margin-top: 0;
}

.shop-catalog-section {
  padding-top: 2rem;
}

.shop-catalog-section .section-head {
  max-width: 36rem;
}

.service-stack,
.article-list {
  display: grid;
}

.service-band,
.article-row {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 1.6rem 2rem;
  padding: 1.45rem 0;
  border-top: 1px solid var(--line-dark);
}

.service-band {
  align-items: start;
}

.service-band:last-child,
.article-row:last-child {
  border-bottom: 1px solid var(--line-dark);
}

.service-band-head,
.service-band-body {
  display: grid;
  gap: 0.8rem;
}

.service-band-body {
  align-content: start;
}

.service-id {
  margin: 0;
}

.service-points,
.product-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 0.8rem;
  align-items: flex-start;
  align-content: flex-start;
}

.service-points span,
.product-points span,
.page-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0.78rem;
  border-radius: 999px;
  background: rgba(47, 158, 90, 0.12);
  color: var(--ink);
  font-size: 0.83rem;
  font-weight: 700;
  line-height: 1.2;
}

.plan-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 2rem;
}

.plan-card strong {
  color: var(--amber);
  font-weight: 800;
}

.featured-story {
  display: grid;
  gap: 0.9rem;
  padding: 1.5rem;
  color: var(--white);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, #101924, #1a2737);
}

.featured-story p {
  color: rgba(255, 253, 248, 0.8);
}

.aside-stack {
  display: grid;
  gap: 1rem;
}

.article-row {
  align-items: start;
}

.article-row > div {
  display: grid;
  gap: 0.55rem;
}

.editorial-grid {
  align-items: start;
}

.page-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 0.4rem;
}

.category-grid,
.store-grid,
.bundle-grid {
  display: grid;
  gap: 1.2rem;
  margin-top: 2rem;
}

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

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

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

.store-card,
.bundle-card {
  padding: 1.2rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 253, 248, 0.82);
  border: 1px solid rgba(26, 36, 48, 0.08);
  box-shadow: 0 12px 28px rgba(26, 36, 48, 0.06);
}

.store-card {
  display: grid;
  gap: 0.95rem;
  align-content: start;
}

.store-side-panel {
  align-self: stretch;
}

.store-visual {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  min-height: 11.25rem;
  padding: 1rem;
  overflow: hidden;
  border-radius: calc(var(--radius-md) - 0.1rem);
  color: var(--white);
}

.store-visual::before,
.store-visual::after {
  content: "";
  position: absolute;
}

.store-visual::before {
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  height: 0.5rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

.store-visual::after {
  right: -0.6rem;
  bottom: -1.2rem;
  width: 7rem;
  height: 7rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
}

.store-visual span,
.store-visual strong {
  position: relative;
  z-index: 1;
}

.store-visual span {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.store-visual strong {
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 253, 248, 0.84);
}

.store-visual-router {
  background: linear-gradient(145deg, #214d34, #2f7a47);
}

.store-visual-mesh {
  background: linear-gradient(145deg, #2d6a3f, #4c9156);
}

.store-visual-ups {
  background: linear-gradient(145deg, #46632f, #6f9444);
}

.store-visual-switch {
  background: linear-gradient(145deg, #204230, #38664a);
}

.store-visual-outdoor {
  background: linear-gradient(145deg, #315b3b, #4b8551);
}

.store-visual-cctv {
  background: linear-gradient(145deg, #365443, #5b7b63);
}

.store-top,
.store-price-row,
.bundle-card-head,
.cart-row,
.cart-mini-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.store-sku {
  color: var(--ink-faint);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.store-price-row {
  align-items: end;
}

.store-price {
  color: var(--ink);
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.store-price-note {
  color: var(--ink-faint);
  font-size: 0.82rem;
}

.store-card-actions,
.cart-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.store-card-actions .button,
.cart-actions .button {
  flex: 1 1 10rem;
}

.bundle-card {
  display: grid;
  gap: 1rem;
  background: linear-gradient(180deg, rgba(255, 253, 248, 0.96), rgba(249, 243, 233, 0.88));
}

.bundle-card-head {
  align-items: start;
}

.bundle-price {
  color: var(--amber);
  font-size: 1.22rem;
  font-weight: 800;
  white-space: nowrap;
}

.bundle-list {
  display: grid;
  gap: 0.6rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.bundle-list li {
  position: relative;
  padding-left: 1rem;
  color: var(--ink-soft);
}

.bundle-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 50%;
  background: var(--teal);
}

.cart-mini {
  display: grid;
  gap: 0.7rem;
  padding: 0.9rem 0 1rem;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.cart-mini-row span,
.cart-row span {
  color: var(--ink-faint);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.cart-layout {
  align-items: start;
}

.cart-panel {
  display: grid;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: var(--radius-lg);
  background: var(--paper-soft);
  border: 1px solid rgba(26, 36, 48, 0.08);
  box-shadow: 0 14px 30px rgba(26, 36, 48, 0.06);
}

.cart-items {
  display: grid;
  gap: 0.75rem;
}

.cart-empty {
  margin: 0;
  color: var(--ink-faint);
}

.cart-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.2rem 1rem;
  padding-top: 0.9rem;
  border-top: 1px solid var(--line-dark);
}

.cart-item-name {
  font-weight: 700;
}

.cart-item-meta {
  color: var(--ink-faint);
  font-size: 0.82rem;
}

.cart-item-price {
  align-self: center;
  color: var(--amber);
  font-weight: 800;
}

.cart-row-total {
  padding-top: 0.8rem;
  border-top: 1px solid var(--line-dark);
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 620ms ease,
    transform 620ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.services-page {
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.4), transparent 34%),
    linear-gradient(180deg, #effef7 0%, #e4f7ee 100%);
  color: #0b1f1a;
}

.services-page .site-header {
  background: rgba(239, 254, 247, 0.84);
  border-bottom-color: rgba(11, 31, 26, 0.05);
  box-shadow: 0 18px 48px rgba(11, 31, 26, 0.04);
}

.services-page .brand-tag {
  display: none;
}

.services-page .brand {
  gap: 0;
}

.services-page .brand-mark {
  display: none;
}

.services-page .brand-name {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.services-page .site-nav a,
.services-page .footer-nav a {
  color: rgba(11, 31, 26, 0.74);
}

.services-page .site-nav a:hover,
.services-page .site-nav a:focus-visible,
.services-page .footer-nav a:hover,
.services-page .footer-nav a:focus-visible {
  color: #1b4f87;
}

.services-editorial-page {
  padding-bottom: 2.4rem;
}

.services-editorial-hero {
  padding: calc(var(--header-height) + 1.7rem) 0 2.4rem;
}

.services-editorial-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(19rem, 0.82fr);
  gap: 2rem 4rem;
  align-items: end;
}

.services-editorial-copy {
  max-width: 48rem;
}

.services-kicker {
  margin: 0 0 1rem;
  color: #4a7b6c;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.services-editorial-hero h1,
.services-solutions-head h2,
.services-lifestyle-intro h2 {
  margin: 0;
  color: #0b1f1a;
  letter-spacing: -0.045em;
}

.services-editorial-hero h1 {
  max-width: 11.2ch;
  font-size: clamp(3rem, 5.5vw, 4.9rem);
  line-height: 0.92;
}

.services-lead {
  max-width: 39rem;
  margin: 1rem 0 0;
  color: rgba(11, 31, 26, 0.68);
  font-size: 1.08rem;
  line-height: 1.7;
}

.services-editorial-panel {
  display: grid;
  gap: 0.95rem;
  padding: 1.2rem;
  border-radius: 1.85rem;
  background:
    linear-gradient(180deg, rgba(220, 243, 234, 0.7), rgba(255, 255, 255, 0.58)),
    rgba(255, 255, 255, 0.54);
  box-shadow: 0 28px 64px rgba(11, 31, 26, 0.04);
}

.services-editorial-note {
  display: grid;
  gap: 0.35rem;
  padding: 1rem 1.05rem;
  border-radius: 1.3rem;
  background: rgba(255, 255, 255, 0.62);
}

.services-editorial-note span {
  color: #4a7b6c;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.services-editorial-note strong {
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.services-editorial-note p {
  margin: 0;
  color: rgba(11, 31, 26, 0.66);
  font-size: 0.93rem;
  line-height: 1.58;
}

.services-primary-band {
  padding: 0.5rem 0 4.4rem;
}

.services-primary-surface {
  padding: 1.8rem;
  border-radius: 2rem;
  background:
    linear-gradient(180deg, rgba(220, 243, 234, 0.88), rgba(229, 248, 239, 0.9)),
    rgba(220, 243, 234, 0.8);
}

.services-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
}

.services-service-card,
.services-lifestyle-card,
.services-lifestyle-compact {
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 32px 64px rgba(11, 31, 26, 0.05);
}

.services-service-card {
  display: grid;
  gap: 1.25rem;
  padding: 1.2rem;
  border-radius: 1.7rem;
  min-height: 100%;
}

.services-service-media,
.services-lifestyle-media {
  overflow: hidden;
  border-radius: 1.25rem;
  background: rgba(220, 243, 234, 0.72);
}

.services-service-media {
  aspect-ratio: 1.72 / 1;
}

.services-service-media img,
.services-lifestyle-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services-service-copy,
.services-lifestyle-copy,
.services-lifestyle-intro,
.services-lifestyle-compact,
.services-solution-card {
  display: grid;
  align-content: start;
}

.services-service-copy {
  gap: 0.82rem;
}

.services-service-copy h2,
.services-solution-card h3,
.services-lifestyle-copy h3,
.services-lifestyle-compact h3 {
  margin: 0;
  color: #0b1f1a;
}

.services-service-copy h2 {
  font-size: 1.55rem;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.services-service-copy p,
.services-solution-card p,
.services-lifestyle-intro p,
.services-lifestyle-copy p,
.services-lifestyle-compact p {
  margin: 0;
  color: rgba(11, 31, 26, 0.68);
  line-height: 1.68;
}

.services-price-note {
  color: #0f8a9d;
  font-size: 0.92rem;
  font-weight: 700;
}

.services-icon-badge {
  display: inline-grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.95rem;
  background: linear-gradient(145deg, rgba(47, 158, 90, 0.14), rgba(15, 123, 95, 0.24));
  color: #1b4f87;
  box-shadow: inset 0 0 0 1px rgba(0, 96, 73, 0.07);
}

.services-icon-badge-solid {
  background: linear-gradient(145deg, #1b4f87, #0f8a9d);
  color: #effef7;
}

.services-icon-badge svg {
  width: 1.15rem;
  height: 1.15rem;
}

.services-inline-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #0f8a9d;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.services-inline-link:hover,
.services-inline-link:focus-visible {
  color: #00503d;
}

.services-solutions-section {
  padding: 0.3rem 0 4.5rem;
}

.services-solutions-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem 3rem;
  margin-bottom: 1.8rem;
}

.services-solutions-head h2 {
  max-width: 16ch;
  font-size: clamp(1.9rem, 3.6vw, 2.55rem);
  line-height: 1.04;
}

.services-solutions-head p {
  max-width: 30rem;
  margin: 0;
  color: rgba(11, 31, 26, 0.66);
  font-size: 1rem;
  line-height: 1.7;
}

.services-heading-mark {
  display: block;
  width: 4rem;
  height: 0.28rem;
  margin-top: 1rem;
  border-radius: 999px;
  background: linear-gradient(90deg, #0f8a9d, rgba(15, 123, 95, 0.18));
}

.services-solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2.2rem;
}

.services-solution-card {
  gap: 0.9rem;
  padding: 1.1rem 0.5rem 0.25rem 0;
}

.services-solution-card h3 {
  font-size: 1.12rem;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.services-lifestyle-section {
  padding: 0 0 2.5rem;
}

.services-lifestyle-shell {
  padding: 2.4rem;
  border-radius: 2rem;
  background:
    linear-gradient(180deg, rgba(220, 243, 234, 0.9), rgba(231, 255, 246, 0.92)),
    rgba(220, 243, 234, 0.84);
}

.services-lifestyle-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.22fr) minmax(0, 0.9fr);
  gap: 1.25rem;
  align-items: stretch;
}

.services-lifestyle-intro {
  gap: 1rem;
  padding: 1.1rem 0.5rem 1.1rem 0;
}

.services-lifestyle-intro h2 {
  font-size: clamp(1.8rem, 3.1vw, 2.5rem);
  line-height: 1.02;
  max-width: 14ch;
}

.services-lifestyle-card {
  gap: 1rem;
  padding: 1.2rem;
  border-radius: 1.7rem;
}

.services-lifestyle-media {
  aspect-ratio: 1.08 / 1;
}

.services-lifestyle-copy {
  gap: 0.7rem;
}

.services-lifestyle-copy h3,
.services-lifestyle-compact h3 {
  font-size: 1.22rem;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.services-lifestyle-compact {
  gap: 0.9rem;
  padding: 1.25rem;
  border-radius: 1.7rem;
}

.services-page .site-footer {
  padding-top: 1.5rem;
  background: transparent;
}

.services-page .footer-copy {
  color: rgba(11, 31, 26, 0.68);
}

.services-page .site-header {
  min-height: 84px;
  padding-block: 0.8rem;
}

.services-page .site-nav {
  gap: 1rem 1.2rem;
  font-size: 0.84rem;
}

.services-page .header-cta {
  min-height: 2.55rem;
  padding: 0 1rem;
  border-radius: 0.9rem;
  font-size: 0.82rem;
}

.services-ref-page {
  padding-bottom: 0;
}

.services-ref-hero {
  position: relative;
  overflow: hidden;
  padding: calc(var(--header-height) + 2rem) 0 4rem;
}

.services-ref-hero::before,
.services-ref-hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.services-ref-hero::before {
  top: 3.2rem;
  right: 2.5rem;
  width: min(46vw, 38rem);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(96, 252, 198, 0.14) 0%, rgba(96, 252, 198, 0) 72%);
  opacity: 0.55;
}

.services-ref-hero::after {
  top: 1.2rem;
  right: -2.8rem;
  width: min(52vw, 42rem);
  aspect-ratio: 1;
  background: url("./assets/services/hero-network-fade.svg") center/contain no-repeat;
  opacity: 0.26;
  filter: saturate(0.9) blur(0.2px);
  mask-image: radial-gradient(circle at 44% 52%, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.85) 46%, rgba(0, 0, 0, 0.15) 76%, transparent 100%);
  -webkit-mask-image: radial-gradient(circle at 44% 52%, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.85) 46%, rgba(0, 0, 0, 0.15) 76%, transparent 100%);
}

.services-ref-hero > * {
  position: relative;
  z-index: 1;
}

.services-ref-kicker {
  margin: 0 0 0.8rem;
  color: #4a7b6c;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.services-ref-hero h1 {
  max-width: 7.8ch;
  margin: 0;
  color: #0b1f1a;
  font-size: clamp(3rem, 5.2vw, 4.85rem);
  line-height: 0.9;
  letter-spacing: -0.06em;
}

.services-ref-lead {
  max-width: 31rem;
  margin: 1rem 0 0;
  color: rgba(11, 31, 26, 0.62);
  font-size: 0.98rem;
  line-height: 1.7;
}

.services-ref-showcase {
  padding: 4.8rem 0 5.3rem;
  background: rgba(226, 249, 240, 0.92);
}

.services-ref-duo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.85rem;
}

.services-ref-card,
.services-ref-feature-card,
.services-ref-security-card {
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 40px 60px -15px rgba(11, 31, 26, 0.05);
}

.services-ref-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 2rem;
}

.services-ref-card-media {
  height: 16.5rem;
  overflow: hidden;
}

.services-ref-card-media img,
.services-ref-feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services-ref-card-body {
  display: grid;
  align-content: start;
  gap: 0.8rem;
  padding: 1.75rem;
}

.services-ref-icon,
.services-ref-solution-icon {
  display: inline-grid;
  place-items: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 0.9rem;
  background: rgba(0, 96, 73, 0.08);
  color: #1b4f87;
}

.services-ref-icon-secondary {
  color: #006c4f;
  background: rgba(0, 108, 79, 0.08);
}

.services-ref-icon svg,
.services-ref-solution-icon svg {
  width: 1rem;
  height: 1rem;
}

.services-ref-card h2,
.services-ref-section-head h2,
.services-ref-connected-intro h2 {
  margin: 0;
  color: #0b1f1a;
  letter-spacing: -0.045em;
}

.services-ref-card h2 {
  font-size: 1.65rem;
  line-height: 1.02;
}

.services-ref-card p,
.services-ref-solution p,
.services-ref-connected-intro p,
.services-ref-feature-copy p,
.services-ref-security-card p {
  margin: 0;
  color: rgba(11, 31, 26, 0.64);
  line-height: 1.68;
}

.services-ref-card p {
  font-size: 0.92rem;
}

.services-ref-price {
  color: #1b4f87;
  font-size: 0.9rem;
  font-weight: 700;
}

.services-ref-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #1b4f87;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.services-ref-link:hover,
.services-ref-link:focus-visible {
  color: #004c39;
}

.services-ref-solutions {
  padding: 5.5rem 0 5.75rem;
}

.services-ref-section-head {
  margin-bottom: 2.5rem;
}

.services-ref-section-head h2 {
  max-width: 15ch;
  font-size: clamp(1.95rem, 3.2vw, 2.8rem);
  line-height: 1.02;
}

.services-ref-section-line {
  display: block;
  width: 4.8rem;
  height: 0.34rem;
  margin-top: 1rem;
  border-radius: 999px;
  background: #0f8a9d;
}

.services-ref-solution-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2.2rem;
}

.services-ref-solution {
  position: relative;
  display: grid;
  align-content: start;
  gap: 0.8rem;
  min-height: 13.5rem;
  padding: 1.35rem 1.1rem 1.15rem 1.1rem;
  border-radius: 2rem;
  background: rgba(231, 255, 246, 0.6);
}

.services-ref-solution::after {
  content: "";
  position: absolute;
  right: 1rem;
  top: 1rem;
  width: 5.2rem;
  height: 5.2rem;
  border-radius: 1.5rem;
  background: rgba(0, 96, 73, 0.03);
  z-index: 0;
}

.services-ref-solution::before {
  content: "";
  position: absolute;
  right: 1.55rem;
  top: 1.55rem;
  width: 4rem;
  height: 4rem;
  border-radius: 1.2rem;
  border: 1px solid rgba(0, 96, 73, 0.06);
  z-index: 0;
}

.services-ref-solution > * {
  position: relative;
  z-index: 1;
}

.services-ref-solution h3 {
  margin: 0;
  color: #0b1f1a;
  font-size: 1.2rem;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.services-ref-solution-router::before,
.services-ref-solution-cabling::before,
.services-ref-solution-optimization::before {
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1.7rem;
}

.services-ref-solution-router::before {
  background-image: radial-gradient(circle at 50% 50%, rgba(0, 96, 73, 0.18) 0 10%, transparent 11%), radial-gradient(circle at 28% 70%, rgba(0, 96, 73, 0.1) 0 9%, transparent 10%), radial-gradient(circle at 72% 70%, rgba(0, 96, 73, 0.1) 0 9%, transparent 10%);
}

.services-ref-solution-cabling::before {
  background-image: linear-gradient(rgba(0, 96, 73, 0.12), rgba(0, 96, 73, 0.12)), linear-gradient(rgba(0, 96, 73, 0.12), rgba(0, 96, 73, 0.12)), linear-gradient(rgba(0, 96, 73, 0.12), rgba(0, 96, 73, 0.12));
  background-size: 1.6rem 1px, 1px 1.5rem, 1.6rem 1px;
  background-position: center 1.4rem, center, center 2.6rem;
}

.services-ref-solution-optimization::before {
  background-image: linear-gradient(135deg, transparent 35%, rgba(0, 96, 73, 0.14) 36% 46%, transparent 47%), linear-gradient(90deg, rgba(0, 96, 73, 0.14), rgba(0, 96, 73, 0.14));
  background-size: 2rem 2rem, 1.5rem 1px;
  background-position: center, center 2.5rem;
}

.services-ref-connected {
  padding: 0 0 4.8rem;
}

.services-ref-connected-shell {
  padding: 3rem 3.1rem;
  border-radius: 3rem;
  background: rgba(214, 237, 229, 0.9);
}

.services-ref-connected-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 1.15fr) minmax(0, 0.92fr);
  gap: 1.35rem;
  align-items: stretch;
}

.services-ref-connected-intro {
  display: grid;
  align-content: center;
  gap: 1rem;
  padding: 0.6rem 0;
}

.services-ref-connected-intro h2 {
  font-size: clamp(2rem, 3.2vw, 2.7rem);
  line-height: 1.02;
}

.services-ref-feature-card {
  overflow: hidden;
  border-radius: 2rem;
}

.services-ref-feature-media {
  height: 11rem;
  overflow: hidden;
}

.services-ref-feature-copy {
  display: grid;
  gap: 0.75rem;
  padding: 1.5rem;
}

.services-ref-feature-copy h3,
.services-ref-security-card h3 {
  margin: 0;
  color: #0b1f1a;
  font-size: 1.1rem;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.services-ref-security-card {
  display: grid;
  align-content: space-between;
  gap: 0.9rem;
  padding: 1.5rem;
  border-radius: 2rem;
}

.services-ref-footer {
  padding: 2rem 0 1.2rem;
  background: transparent;
}

.services-ref-footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) repeat(3, minmax(0, 1fr));
  gap: 2rem 2.6rem;
}

.services-ref-footer-branding .footer-brand {
  margin-bottom: 0.8rem;
}

.services-ref-footer-branding .footer-copy {
  max-width: 16rem;
  font-size: 0.9rem;
  line-height: 1.7;
}

.services-ref-footer-col {
  display: grid;
  align-content: start;
  gap: 0.65rem;
}

.services-ref-footer-col h4 {
  margin: 0 0 0.45rem;
  color: #0b1f1a;
  font-size: 0.95rem;
  letter-spacing: -0.02em;
}

.services-ref-footer-col a,
.services-ref-footer-meta p {
  color: rgba(11, 31, 26, 0.6);
  font-size: 0.86rem;
}

.services-ref-footer-col a:hover,
.services-ref-footer-col a:focus-visible {
  color: #1b4f87;
}

.services-ref-footer-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(11, 31, 26, 0.08);
}

.services-ref-footer-meta p {
  margin: 0;
}

.services-ref-socials {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.services-ref-socials a {
  display: inline-grid;
  place-items: center;
  width: 1.9rem;
  height: 1.9rem;
  border-radius: 999px;
  color: rgba(11, 31, 26, 0.58);
}

.services-ref-socials a:hover,
.services-ref-socials a:focus-visible {
  color: #1b4f87;
  background: rgba(255, 255, 255, 0.6);
}

.services-ref-socials svg {
  width: 1rem;
  height: 1rem;
}

.services-page .whatsapp-float {
  display: none;
}

.shop-page {
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.38), transparent 34%),
    linear-gradient(180deg, #effef7 0%, #e4f7ee 100%);
  color: #0b1f1a;
}

.shop-page .site-header {
  min-height: 78px;
  padding-block: 0.72rem;
  background: rgba(239, 254, 247, 0.9);
  border-bottom-color: rgba(11, 31, 26, 0.05);
  box-shadow: 0 14px 40px rgba(11, 31, 26, 0.035);
}

.shop-page .brand {
  gap: 0;
}

.shop-page .brand-mark,
.shop-page .brand-tag,
.shop-page .whatsapp-float {
  display: none;
}

.shop-page .brand-name {
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.shop-page .site-nav {
  gap: 0.95rem 1.15rem;
  font-size: 0.8rem;
  font-weight: 500;
}

.shop-page .site-nav a {
  color: rgba(11, 31, 26, 0.7);
}

.shop-page .site-nav a:hover,
.shop-page .site-nav a:focus-visible {
  color: #1b4f87;
}

.shop-page .header-cta {
  min-height: 2.45rem;
  padding: 0 0.95rem;
  border-radius: 0.8rem;
  font-size: 0.78rem;
}

.shop-ref-page {
  padding-bottom: 0;
  overflow: visible;
}

.shop-ref-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 1rem 2rem;
  padding: calc(var(--header-height) + 2.35rem) 0 2.7rem;
}

.shop-ref-hero-copy {
  min-width: 0;
}

.shop-ref-kicker {
  margin: 0 0 0.8rem;
  color: #4a7b6c;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.shop-ref-hero h1 {
  max-width: 7.4ch;
  margin: 0;
  color: #0b1f1a;
  font-size: clamp(3.25rem, 5vw, 4.8rem);
  line-height: 0.92;
  letter-spacing: -0.055em;
}

.shop-ref-layout {
  display: grid;
  grid-template-columns: minmax(10.75rem, 0.56fr) minmax(0, 1.44fr);
  gap: 2.15rem 2.3rem;
  align-items: start;
  padding-bottom: 4.7rem;
}

.shop-ref-sidebar {
  display: grid;
  gap: 1.9rem;
  padding-top: 0.45rem;
}

.shop-ref-filter-block {
  display: grid;
  gap: 0.82rem;
}

.shop-ref-filter-title {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0;
  color: #0b1f1a;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.shop-ref-filter-icon {
  display: inline-grid;
  place-items: center;
  width: 1rem;
  height: 1rem;
  color: #1b4f87;
}

.shop-ref-filter-icon svg {
  width: 1rem;
  height: 1rem;
}

.shop-ref-check {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(11, 31, 26, 0.68);
  font-size: 0.88rem;
  cursor: pointer;
}

.shop-ref-check input {
  width: 1rem;
  height: 1rem;
  margin: 0;
  accent-color: #1b4f87;
}

.shop-ref-range {
  width: 100%;
  margin: 0.15rem 0 0;
  accent-color: #1b4f87;
}

.shop-ref-range-values {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(11, 31, 26, 0.62);
  font-size: 0.8rem;
  font-weight: 500;
}

.shop-ref-quote {
  margin: 0;
  padding: 1.15rem 1.15rem 1.2rem;
  border-radius: 1.35rem;
  background: rgba(220, 243, 234, 0.8);
  color: rgba(11, 31, 26, 0.6);
  font-size: 0.82rem;
  line-height: 1.75;
  font-style: italic;
}

.shop-ref-main {
  min-width: 0;
}

.shop-cart-shell {
  display: grid;
  justify-items: end;
  align-content: start;
  flex: 0 0 auto;
  justify-self: end;
  align-self: start;
  z-index: 3;
  width: min(22rem, 100%);
}

.shop-cart-trigger {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 3.45rem;
  height: 3.45rem;
  padding: 0;
  border: 1px solid rgba(11, 31, 26, 0.08);
  border-radius: 1.1rem;
  background: rgba(255, 255, 255, 0.94);
  color: #0b1f1a;
  box-shadow: 0 22px 40px rgba(11, 31, 26, 0.1);
  cursor: pointer;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.shop-cart-trigger:hover,
.shop-cart-trigger:focus-visible,
.shop-cart-shell.is-open .shop-cart-trigger {
  transform: translateY(-1px);
  background: #ffffff;
  border-color: rgba(0, 96, 73, 0.16);
  box-shadow: 0 24px 42px rgba(11, 31, 26, 0.12);
}

.shop-cart-trigger svg {
  width: 1.35rem;
  height: 1.35rem;
}

.shop-cart-badge {
  position: absolute;
  top: -0.34rem;
  right: -0.34rem;
  display: inline-grid;
  place-items: center;
  min-width: 1.45rem;
  height: 1.45rem;
  padding: 0 0.24rem;
  border-radius: 999px;
  background: #1b4f87;
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 10px 18px rgba(0, 96, 73, 0.2);
}

.shop-cart-dropdown {
  display: none;
  gap: 0.9rem;
  width: 100%;
  margin-top: 0.8rem;
  padding: 1rem 1rem 1.05rem;
  border-radius: 1.35rem;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(11, 31, 26, 0.08);
  box-shadow: 0 26px 48px -24px rgba(11, 31, 26, 0.18);
}

.shop-cart-shell.is-open .shop-cart-dropdown {
  display: grid;
}

.shop-cart-bar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.shop-cart-label {
  margin: 0 0 0.18rem;
  color: rgba(11, 31, 26, 0.56);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.shop-cart-status strong[data-cart-count] {
  color: #0b1f1a;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.shop-cart-total {
  display: grid;
  gap: 0.15rem;
  text-align: right;
}

.shop-cart-total span {
  color: rgba(11, 31, 26, 0.56);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.shop-cart-total strong {
  color: #1b4f87;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.shop-cart-items {
  max-height: min(18rem, 56vh);
  gap: 0.55rem;
  overflow: auto;
  padding-right: 0.1rem;
}

.shop-cart-dropdown .cart-empty {
  font-size: 0.82rem;
  line-height: 1.65;
}

.shop-cart-dropdown .cart-item {
  gap: 0.15rem 0.8rem;
  padding-top: 0.72rem;
  border-top-color: rgba(11, 31, 26, 0.08);
}

.shop-cart-dropdown .cart-item-name {
  font-size: 0.9rem;
}

.shop-cart-dropdown .cart-item-meta {
  font-size: 0.74rem;
}

.shop-cart-dropdown .cart-item-price {
  color: #1b4f87;
  font-size: 0.84rem;
}

.shop-cart-item-actions {
  display: grid;
  justify-items: end;
  gap: 0.35rem;
}

.shop-cart-remove {
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(11, 31, 26, 0.54);
  font: inherit;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
}

.shop-cart-remove:hover,
.shop-cart-remove:focus-visible {
  color: #1b4f87;
}

.shop-cart-actions {
  display: flex;
  gap: 0.7rem;
}

.shop-cart-actions .button {
  flex: 1 1 0;
  min-height: 2.7rem;
  padding: 0 1rem;
  font-size: 0.82rem;
}

.shop-ref-products {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.shop-ref-product-card {
  display: grid;
  align-content: start;
  gap: 0.45rem;
  padding: 0.82rem;
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 34px 56px -24px rgba(11, 31, 26, 0.08);
}

.shop-ref-product-media {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 0.95rem;
  background: rgba(220, 243, 234, 0.7);
}

.shop-ref-product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shop-ref-badge {
  position: absolute;
  top: 0.8rem;
  left: 0.8rem;
  display: inline-flex;
  align-items: center;
  min-height: 1.5rem;
  padding: 0 0.55rem;
  border-radius: 999px;
  background: #0f8a9d;
  color: #f2fef8;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.shop-ref-badge-sale {
  background: #2d9b61;
}

.shop-ref-product-card h3 {
  margin: 0.2rem 0 0;
  color: #0b1f1a;
  font-size: 1.12rem;
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.shop-ref-product-card p {
  margin: 0;
  color: rgba(11, 31, 26, 0.6);
  font-size: 0.78rem;
  line-height: 1.45;
}

.shop-ref-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  margin-top: 0.4rem;
}

.shop-ref-price-row strong {
  color: #1b4f87;
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -0.05em;
}

.shop-ref-cart-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 4rem;
  height: 2.7rem;
  padding: 0 0.82rem;
  border: 0;
  border-radius: 0.82rem;
  background: rgba(209, 232, 223, 0.85);
  color: #0b1f1a;
  gap: 0.42rem;
  font-size: 0.82rem;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    color 180ms ease;
}

.shop-ref-cart-button:hover,
.shop-ref-cart-button:focus-visible {
  background: #1b4f87;
  color: #effef7;
  transform: translateY(-1px);
}

.shop-ref-cart-button svg {
  width: 0.95rem;
  height: 0.95rem;
}

.shop-ref-footer {
  padding: 3.8rem 0 1.2rem;
  background: transparent;
}

.shop-ref-footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) repeat(3, minmax(0, 1fr));
  gap: 2rem 2.2rem;
}

.shop-ref-footer-branding .footer-brand {
  margin: 0 0 0.7rem;
}

.shop-ref-footer-branding .footer-copy {
  max-width: 16rem;
  color: rgba(11, 31, 26, 0.6);
  font-size: 0.84rem;
  line-height: 1.7;
}

.shop-ref-footer-col {
  display: grid;
  align-content: start;
  gap: 0.65rem;
}

.shop-ref-footer-col h4 {
  margin: 0 0 0.45rem;
  color: #4a7b6c;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.shop-ref-footer-col a,
.shop-ref-footer-meta p,
.shop-ref-legal-links a {
  color: rgba(11, 31, 26, 0.6);
  font-size: 0.86rem;
}

.shop-ref-footer-col a:hover,
.shop-ref-footer-col a:focus-visible,
.shop-ref-legal-links a:hover,
.shop-ref-legal-links a:focus-visible {
  color: #1b4f87;
}

.shop-ref-footer-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2.3rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(11, 31, 26, 0.08);
}

.shop-ref-footer-meta p {
  margin: 0;
}

.shop-ref-legal-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 1100px) {
  .home-hero-grid,
  .page-hero-grid,
  .two-column,
  .editorial-grid,
  .cta-box,
  .service-band,
  .article-row {
    grid-template-columns: 1fr;
  }

  .card-grid,
  .three-up,
  .coverage-cards,
  .plan-grid {
    grid-template-columns: 1fr;
  }

  .coverage-map-grid {
    grid-template-columns: 1fr;
  }

  .category-grid,
  .store-grid,
  .bundle-grid {
    grid-template-columns: 1fr 1fr;
  }

  .shop-toolbar-row {
    flex-direction: column;
    align-items: start;
  }

  .shop-ref-hero {
    padding: calc(var(--header-height) + 1.85rem) 0 2.25rem;
  }

  .shop-ref-layout {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }

  .shop-ref-sidebar {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem 1.2rem;
    padding-top: 0;
  }

  .shop-ref-products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .shop-ref-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: 76px;
    --gutter: 1rem;
  }

  .site-header {
    position: sticky;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem 1rem;
    padding: 0.8rem var(--gutter) 0.7rem;
  }

  .site-header-home {
    background: rgba(8, 14, 24, 0.36);
    backdrop-filter: blur(14px);
  }

  .brand {
    min-width: 0;
    gap: 0.65rem;
  }

  .brand-mark {
    width: 2.35rem;
    height: 2.35rem;
    border-radius: 0.75rem;
  }

  .brand-copy {
    min-width: 0;
  }

  .brand-name {
    font-size: 1.08rem;
  }

  .brand-tag {
    max-width: 18rem;
    font-size: 0.66rem;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-menu {
    position: absolute;
    left: var(--gutter);
    right: var(--gutter);
    top: calc(100% + 0.15rem);
    display: grid;
    gap: 0.9rem;
    padding: 1rem;
    border-radius: 1.2rem;
    background: rgba(251, 247, 241, 0.98);
    border: 1px solid rgba(26, 36, 48, 0.08);
    box-shadow: 0 18px 40px rgba(8, 13, 20, 0.14);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-0.7rem);
    max-height: calc(100svh - var(--header-height) - 1.25rem);
    overflow-y: auto;
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

  .site-header-home .site-menu {
    background: rgba(13, 23, 34, 0.95);
    border-color: rgba(255, 253, 248, 0.12);
  }

  .site-header.menu-open .site-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.85rem;
    font-size: 0.98rem;
  }

  .site-nav a {
    width: 100%;
  }

  .site-nav a.is-active::after {
    right: auto;
    width: 1.5rem;
    bottom: -0.2rem;
  }

  .header-cta {
    min-height: 2.7rem;
    padding: 0 1rem;
    font-size: 0.92rem;
  }

  .site-menu .header-cta {
    width: 100%;
  }

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

  .hero-map-layer {
    overflow: hidden;
  }

  .home-hero::before {
    background:
      linear-gradient(180deg, rgba(14, 24, 39, 0.24) 0%, rgba(14, 24, 39, 0.04) 30%, rgba(14, 24, 39, 0.08) 100%),
      radial-gradient(circle at 18% 48%, rgba(0, 0, 0, 0.06), transparent 44%);
  }

  .hero-map-graphic {
    width: min(118vw, 48rem);
    transform: translate(8%, -4%);
    opacity: 0.46;
  }

  .hero-map-graphic::after {
    opacity: 0.22;
  }

  .hero-map-dots {
    background:
      radial-gradient(circle, rgba(255, 253, 248, 0.74) 0 1px, transparent 1.4px) center/12px 12px,
      linear-gradient(160deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.06));
    opacity: 0.26;
  }

  .hero-map-outline {
    opacity: 0.085;
  }

  .home-hero-grid {
    min-height: auto;
    align-content: end;
    padding-top: calc(var(--header-height) + 0.8rem);
    padding-bottom: 1rem;
    gap: 0.9rem;
  }

  .hero-copy {
    max-width: 22rem;
    gap: 0.7rem;
  }

  .home-hero .hero-copy {
    max-width: 23rem;
  }

  .home-hero h1 {
    font-size: clamp(1.9rem, 7.2vw, 2.65rem);
    max-width: 10.8ch;
    line-height: 0.96;
  }

  .hero-actions {
    width: 100%;
    gap: 0.65rem;
  }

  .home-hero .button {
    min-height: 2.9rem;
    padding: 0 1.05rem;
  }

  .hero-text {
    max-width: 23rem;
    font-size: 0.92rem;
    line-height: 1.55;
  }

  .eyebrow,
  .section-label,
  .panel-label,
  .card-kicker,
  .plan-kicker,
  .service-id {
    font-size: 0.69rem;
    letter-spacing: 0.06em;
  }

  .section {
    padding: 2.65rem 0;
  }

  .page-hero {
    padding: calc(var(--header-height) + 1.2rem) 0 2rem;
  }

  .shop-toolbar-section {
    padding: calc(var(--header-height) + 0.6rem) 0 0.8rem;
  }

  .page-hero-grid,
  .two-column,
  .editorial-grid,
  .cta-box,
  .service-band,
  .article-row {
    gap: 1.2rem 1.4rem;
  }

  .section-head {
    gap: 0.75rem;
  }

  .section-head h2,
  .service-band-head h2,
  .featured-story h2,
  .article-row h3,
  .page-hero-copy h1 {
    max-width: none;
  }

  .service-band,
  .article-row {
    padding: 1.1rem 0;
  }

  .service-points,
  .product-points,
  .page-badge-row {
    gap: 0.5rem;
  }

  .service-points span,
  .product-points span,
  .page-badge {
    padding: 0.45rem 0.72rem;
    font-size: 0.78rem;
  }

  .coverage-map-card,
  .coverage-legend {
    padding: 1rem;
  }

  .map-label {
    font-size: 12px;
  }

  .legend-item p {
    line-height: 1.55;
  }

  .info-card,
  .mini-panel,
  .plan-card,
  .aside-card,
  .featured-story,
  .store-card,
  .bundle-card,
  .cart-panel {
    padding: 1rem;
  }

  .store-visual {
    min-height: 9.25rem;
  }

  .store-card-actions .button,
  .cart-actions .button {
    flex-basis: 100%;
  }

  .cart-item {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .cart-item-price {
    justify-self: start;
  }

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

  .footer-nav {
    gap: 0.75rem 1rem;
  }

  .plan-stack-row {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .category-grid,
  .store-grid,
  .bundle-grid {
    grid-template-columns: 1fr;
  }

  .services-card-grid {
    grid-template-columns: 1fr;
  }

  .services-ref-duo-grid {
    gap: 1.35rem;
  }

  .services-ref-connected-grid {
    grid-template-columns: 1fr 1fr;
  }

  .services-ref-connected-intro {
    grid-column: 1 / -1;
    max-width: 34rem;
    padding-bottom: 0;
  }

  .services-ref-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .services-lifestyle-grid {
    grid-template-columns: 1fr 1fr;
  }

  .services-lifestyle-intro {
    grid-column: 1 / -1;
    padding: 0;
  }

  .services-editorial-shell {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .services-editorial-copy,
  .services-lead {
    max-width: none;
  }

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

  .services-solutions-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .services-solutions-head p {
    max-width: 42rem;
  }

  .services-editorial-hero {
    padding: calc(var(--header-height) + 1.15rem) 0 1.7rem;
  }

  .services-editorial-shell {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .services-editorial-hero h1 {
    max-width: 9.8ch;
    font-size: clamp(2.2rem, 8.4vw, 3.25rem);
  }

  .services-lead {
    max-width: 26rem;
    font-size: 0.96rem;
  }

  .services-editorial-panel {
    grid-template-columns: 1fr;
    padding: 1rem;
  }

  .services-editorial-note {
    padding: 0.9rem 0.95rem;
  }

  .services-primary-band {
    padding-bottom: 3rem;
  }

  .services-primary-surface,
  .services-lifestyle-shell {
    padding: 1rem;
    border-radius: 1.5rem;
  }

  .services-card-grid,
  .services-solutions-grid,
  .services-lifestyle-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .services-solutions-section {
    padding-bottom: 3rem;
  }

  .services-solutions-head {
    margin-bottom: 1.3rem;
  }

  .services-solutions-head p {
    max-width: 32rem;
    font-size: 0.96rem;
  }

  .services-solutions-head h2,
  .services-lifestyle-intro h2 {
    max-width: 12ch;
  }

  .services-service-card,
  .services-lifestyle-card,
  .services-lifestyle-compact {
    padding: 0.85rem;
    border-radius: 1.35rem;
  }

  .services-service-media,
  .services-lifestyle-media {
    border-radius: 1rem;
  }

  .services-lifestyle-intro {
    gap: 0.75rem;
    padding: 0.25rem 0 0.1rem;
  }

  .services-ref-hero {
    padding: calc(var(--header-height) + 1.35rem) 0 3rem;
  }

  .services-ref-hero::before {
    top: 4.4rem;
    right: -1rem;
    width: min(54vw, 26rem);
    opacity: 0.44;
  }

  .services-ref-hero::after {
    top: 2rem;
    right: -4.5rem;
    width: min(62vw, 28rem);
    opacity: 0.22;
  }

  .services-ref-hero h1 {
    max-width: 8.4ch;
    font-size: clamp(2.35rem, 8.2vw, 3.4rem);
  }

  .services-ref-lead {
    max-width: 26rem;
    font-size: 0.94rem;
  }

  .services-ref-showcase {
    padding: 3.2rem 0 3.6rem;
  }

  .services-ref-duo-grid {
    grid-template-columns: 1fr;
  }

  .services-ref-card-media {
    height: 13rem;
  }

  .services-ref-card-body {
    padding: 1.2rem;
  }

  .services-ref-solutions {
    padding: 3.4rem 0;
  }

  .services-ref-solution-grid {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }

  .services-ref-solution {
    min-height: auto;
    padding: 0.4rem 0;
  }

  .services-ref-solution::after {
    width: 4.6rem;
    height: 4.6rem;
  }

  .services-ref-connected {
    padding-bottom: 3.4rem;
  }

  .services-ref-connected-shell {
    padding: 1.4rem;
    border-radius: 2rem;
  }

  .services-ref-connected-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .services-ref-feature-media {
    height: 10rem;
  }

  .services-ref-feature-copy,
  .services-ref-security-card {
    padding: 1.1rem;
  }

  .services-ref-footer-grid {
    gap: 1.5rem 1.8rem;
  }

  .services-ref-footer-meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .shop-page .site-menu {
    background: rgba(239, 254, 247, 0.98);
    border-color: rgba(11, 31, 26, 0.08);
  }

  .shop-cart-trigger {
    width: 3.1rem;
    height: 3.1rem;
    border-radius: 1rem;
  }

  .shop-ref-hero {
    grid-template-columns: minmax(0, 1fr) auto;
    padding: calc(var(--header-height) + 1.2rem) 0 1.8rem;
  }

  .shop-ref-hero h1 {
    max-width: 8.1ch;
    font-size: clamp(2.6rem, 8vw, 3.8rem);
  }

  .shop-ref-sidebar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .shop-ref-quote {
    grid-column: 1 / -1;
  }

  .shop-cart-actions {
    flex-direction: column;
  }

  .shop-ref-product-card {
    border-radius: 1.35rem;
  }

  .shop-ref-price-row strong {
    font-size: 1.6rem;
  }

  .shop-ref-footer {
    padding-top: 3rem;
  }
}

@media (max-width: 640px) {
  :root {
    --header-height: 72px;
    --gutter: 0.9rem;
  }

  .site-header {
    gap: 0.5rem 0.8rem;
    padding: 0.65rem var(--gutter) 0.55rem;
  }

  .brand-tag {
    display: none;
  }

  .brand-name {
    font-size: 0.96rem;
  }

  .site-nav {
    gap: 0.8rem;
    font-size: 0.92rem;
  }

  .header-cta {
    min-height: 2.55rem;
    padding: 0 0.95rem;
  }

  .site-menu {
    left: 0.75rem;
    right: 0.75rem;
    gap: 0.8rem;
    padding: 0.85rem;
    border-radius: 1rem;
  }

  .button {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.6rem;
  }

  h1 {
    font-size: clamp(2.1rem, 11vw, 3rem);
  }

  h2 {
    max-width: none;
    font-size: clamp(1.55rem, 7.6vw, 2rem);
  }

  .home-hero h1 {
    font-size: clamp(1.65rem, 9vw, 2.15rem);
    max-width: 10.2ch;
  }

  .hero-map-graphic {
    width: min(128vw, 34rem);
    transform: translate(7%, 0);
    opacity: 0.42;
  }

  .hero-map-graphic::after {
    opacity: 0.2;
  }

  .hero-map-dots {
    background:
      radial-gradient(circle, rgba(255, 253, 248, 0.76) 0 0.95px, transparent 1.35px) center/11px 11px,
      linear-gradient(160deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.06));
    opacity: 0.24;
  }

  .hero-map-outline {
    opacity: 0.08;
  }

  .home-hero-grid {
    padding-top: calc(var(--header-height) + 0.55rem);
    padding-bottom: 0.9rem;
  }

  .hero-copy {
    max-width: 18rem;
    gap: 0.7rem;
  }

  .home-hero .hero-copy {
    max-width: 18rem;
  }

  .hero-text {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .home-hero .button {
    width: 100%;
    min-height: 2.85rem;
    padding: 0 1rem;
    flex: none;
  }

  .section {
    padding: 2.3rem 0;
  }

  .hero-text,
  .section-copy,
  .info-card p,
  .mini-panel p,
  .article-row p,
  .featured-story p,
  .aside-card p,
  .plan-card p,
  .store-card p,
  .bundle-card p,
  .service-band-body p,
  .page-hero-copy p,
  .panel-block strong,
  .plan-stack-row p,
  .contact-list span,
  .cart-empty {
    font-size: 0.96rem;
    line-height: 1.65;
  }

  .strip-track {
    gap: 0.9rem;
    padding: 0.75rem 1rem;
    font-size: 0.74rem;
  }

  .contact-list {
    gap: 0.65rem;
  }

  .page-side-panel,
  .coverage-map-card,
  .coverage-legend {
    padding: 0.95rem;
  }

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

  .store-top,
  .store-price-row,
  .bundle-card-head,
  .cart-row,
  .cart-mini-row {
    flex-direction: column;
    align-items: start;
  }

  .store-visual {
    min-height: 8.4rem;
  }

  .store-price {
    font-size: 1.35rem;
  }

  .services-kicker {
    margin-bottom: 0.8rem;
    font-size: 0.68rem;
  }

  .services-editorial-panel {
    gap: 0.75rem;
    padding: 0.85rem;
    border-radius: 1.25rem;
  }

  .services-editorial-note {
    padding: 0.82rem 0.88rem;
    border-radius: 1rem;
  }

  .services-editorial-hero {
    padding: calc(var(--header-height) + 0.95rem) 0 1.4rem;
  }

  .services-editorial-hero h1 {
    max-width: 8.6ch;
    font-size: clamp(1.95rem, 10vw, 2.6rem);
    line-height: 0.94;
  }

  .services-lead,
  .services-editorial-note p,
  .services-service-copy p,
  .services-solution-card p,
  .services-lifestyle-intro p,
  .services-lifestyle-copy p,
  .services-lifestyle-compact p {
    font-size: 0.94rem;
    line-height: 1.62;
  }

  .services-primary-band,
  .services-solutions-section {
    padding-bottom: 2.4rem;
  }

  .services-primary-surface,
  .services-lifestyle-shell {
    padding: 0.85rem;
    border-radius: 1.25rem;
  }

  .services-service-card,
  .services-lifestyle-card,
  .services-lifestyle-compact {
    gap: 0.8rem;
    padding: 0.78rem;
    border-radius: 1.2rem;
  }

  .services-service-copy h2 {
    font-size: 1.35rem;
  }

  .services-solutions-head h2,
  .services-lifestyle-intro h2 {
    font-size: clamp(1.45rem, 7.8vw, 1.95rem);
  }

  .services-solution-card h3,
  .services-lifestyle-copy h3,
  .services-lifestyle-compact h3 {
    font-size: 1.08rem;
  }

  .services-heading-mark {
    width: 3.25rem;
    margin-top: 0.8rem;
  }

  .services-icon-badge {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 0.8rem;
  }

  .services-icon-badge svg {
    width: 1rem;
    height: 1rem;
  }

  .services-ref-kicker {
    font-size: 0.62rem;
    letter-spacing: 0.16em;
  }

  .services-ref-hero {
    padding: calc(var(--header-height) + 1rem) 0 2.2rem;
  }

  .services-ref-hero::before,
  .services-ref-hero::after {
    display: none;
  }

  .services-ref-hero h1 {
    max-width: 8.2ch;
    font-size: clamp(2rem, 10vw, 2.8rem);
  }

  .services-ref-lead {
    max-width: 20rem;
    font-size: 0.9rem;
  }

  .services-ref-showcase {
    padding: 2.4rem 0 2.7rem;
  }

  .services-ref-card {
    border-radius: 1.5rem;
  }

  .services-ref-card-media {
    height: 10rem;
  }

  .services-ref-card-body {
    padding: 1rem;
  }

  .services-ref-card h2 {
    font-size: 1.35rem;
  }

  .services-ref-card p,
  .services-ref-feature-copy p,
  .services-ref-security-card p {
    font-size: 0.88rem;
  }

  .services-ref-solutions {
    padding: 2.8rem 0;
  }

  .services-ref-section-head {
    margin-bottom: 1.7rem;
  }

  .services-ref-section-head h2 {
    font-size: clamp(1.55rem, 7vw, 2rem);
  }

  .services-ref-connected-shell {
    padding: 1rem;
    border-radius: 1.5rem;
  }

  .services-ref-connected-intro h2 {
    font-size: clamp(1.5rem, 7vw, 2rem);
  }

  .services-ref-feature-card,
  .services-ref-security-card {
    border-radius: 1.5rem;
  }

  .services-ref-footer-grid {
    grid-template-columns: 1fr;
  }

  .services-ref-footer-col h4,
  .services-ref-footer-col a,
  .services-ref-footer-meta p {
    font-size: 0.82rem;
  }

  .shop-ref-hero {
    grid-template-columns: 1fr;
    padding: calc(var(--header-height) + 0.95rem) 0 1.45rem;
  }

  .shop-ref-kicker {
    margin-bottom: 0.7rem;
    font-size: 0.62rem;
    letter-spacing: 0.16em;
  }

  .shop-ref-hero h1 {
    max-width: 7.8ch;
    font-size: clamp(2.2rem, 11vw, 3rem);
  }

  .shop-cart-shell {
    justify-self: start;
  }

  .shop-ref-layout {
    gap: 1.4rem;
    padding-bottom: 3rem;
  }

  .shop-ref-sidebar {
    grid-template-columns: 1fr;
    gap: 1.15rem;
  }

  .shop-cart-dropdown {
    width: min(18.75rem, 100%);
    padding: 0.9rem 0.9rem 0.95rem;
  }

  .shop-cart-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .shop-cart-total {
    text-align: left;
  }

  .shop-cart-actions .button {
    width: 100%;
  }

  .shop-ref-products {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .shop-ref-product-card {
    padding: 0.75rem;
    border-radius: 1.25rem;
  }

  .shop-ref-product-card h3 {
    font-size: 1.05rem;
  }

  .shop-ref-price-row strong {
    font-size: 1.45rem;
  }

  .shop-ref-cart-button {
    min-width: 3.8rem;
    height: 2.5rem;
    padding: 0 0.72rem;
  }

  .shop-ref-footer {
    padding: 2.6rem 0 1.1rem;
  }

  .shop-ref-footer-grid {
    grid-template-columns: 1fr;
    gap: 1.35rem;
  }

  .shop-ref-footer-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .shop-ref-legal-links {
    flex-wrap: wrap;
    gap: 0.75rem 1rem;
  }
}

.blog-page {
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.38), transparent 34%),
    linear-gradient(180deg, #effef7 0%, #dff4eb 100%);
  color: #0b1f1a;
}

.blog-page .site-header {
  background: rgba(239, 254, 247, 0.84);
  border-bottom-color: rgba(11, 31, 26, 0.05);
  box-shadow: 0 18px 48px rgba(11, 31, 26, 0.04);
}

.blog-page .brand-tag {
  display: none;
}

.blog-page .site-nav {
  gap: 1.1rem 1.5rem;
}

.blog-page .site-nav a,
.blog-footer-column a,
.blog-footer-meta-links a {
  color: rgba(11, 31, 26, 0.74);
}

.blog-page .site-nav a:hover,
.blog-page .site-nav a:focus-visible,
.blog-footer-column a:hover,
.blog-footer-column a:focus-visible,
.blog-footer-meta-links a:hover,
.blog-footer-meta-links a:focus-visible {
  color: #1b4f87;
}

.blog-page .header-cta {
  min-height: 2.8rem;
  padding: 0 1.15rem;
  border-radius: 0.8rem;
  box-shadow: 0 16px 30px rgba(15, 123, 95, 0.18);
}

.blog-main {
  padding-bottom: 5.5rem;
}

.blog-intro {
  padding: calc(var(--header-height) + 1rem) 0 1.2rem;
}

.blog-intro-shell {
  display: grid;
  gap: 1rem;
}

.blog-overline {
  margin: 0;
  color: #1b4f87;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.blog-intro h1 {
  max-width: 10ch;
  font-size: clamp(2.8rem, 6vw, 4.2rem);
  font-weight: 700;
  line-height: 0.94;
  letter-spacing: -0.05em;
}

.blog-lead {
  max-width: 34rem;
  margin: 0;
  color: rgba(11, 31, 26, 0.68);
  font-size: 1.08rem;
  line-height: 1.8;
}

.blog-feature-section {
  padding: 1rem 0 2.8rem;
}

.blog-feature-card {
  position: relative;
  display: flex;
  align-items: end;
  min-height: 34rem;
  overflow: hidden;
  border-radius: 2rem;
  background: #143228;
  box-shadow: 0 42px 80px rgba(11, 31, 26, 0.12);
}

.blog-feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11, 31, 26, 0.02) 8%, rgba(11, 31, 26, 0.18) 42%, rgba(11, 31, 26, 0.88) 100%),
    radial-gradient(circle at 20% 0%, rgba(255, 255, 255, 0.18), transparent 38%);
}

.blog-feature-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-feature-body {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1rem;
  max-width: 44rem;
  padding: 2rem 2.1rem 2.25rem;
  color: #ffffff;
}

.blog-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.blog-chip {
  display: inline-flex;
  align-items: center;
  min-height: 1.8rem;
  padding: 0 0.75rem;
  border-radius: 999px;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-chip-primary {
  background: #60fcc6;
  color: #00513b;
}

.blog-chip-muted {
  background: rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
}

.blog-feature-card h2 {
  max-width: 13ch;
  font-size: clamp(2rem, 4vw, 3.45rem);
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.blog-feature-card p {
  max-width: 35rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
  line-height: 1.75;
}

.blog-feature-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 0.35rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: #ffffff;
}

.blog-toolbar-section {
  padding: 0 0 2.25rem;
}

.blog-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem 1.5rem;
  padding: 1.25rem 1.35rem;
  border-radius: 1.6rem;
  background: rgba(234, 248, 241, 0.8);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.blog-filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.blog-filter {
  display: inline-flex;
  align-items: center;
  min-height: 2.35rem;
  padding: 0 1rem;
  border: 0;
  border-radius: 0.85rem;
  background: rgba(209, 232, 223, 0.72);
  color: rgba(11, 31, 26, 0.76);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition:
    background-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.blog-filter:hover,
.blog-filter:focus-visible {
  transform: translateY(-1px);
  background: rgba(188, 219, 206, 0.94);
}

.blog-filter.is-active {
  background: linear-gradient(145deg, #1b4f87, #0f8a9d);
  color: #ffffff;
  box-shadow: 0 14px 28px rgba(15, 123, 95, 0.2);
}

.blog-search {
  position: relative;
  display: block;
  width: min(100%, 17rem);
  flex: 0 0 17rem;
}

.blog-search svg {
  position: absolute;
  left: 0.95rem;
  top: 50%;
  width: 1rem;
  height: 1rem;
  fill: rgba(11, 31, 26, 0.42);
  transform: translateY(-50%);
}

.blog-search input {
  width: 100%;
  min-height: 2.95rem;
  padding: 0 1rem 0 2.65rem;
  border: 0;
  border-radius: 0.9rem;
  background: rgba(255, 255, 255, 0.86);
  color: #0b1f1a;
  font: inherit;
  font-size: 0.92rem;
  outline: 2px solid transparent;
  transition:
    background-color 180ms ease,
    outline-color 180ms ease,
    box-shadow 180ms ease;
}

.blog-search input:focus {
  background: #ffffff;
  outline-color: rgba(0, 96, 73, 0.16);
  box-shadow: 0 0 0 4px rgba(0, 96, 73, 0.08);
}

.blog-grid-section {
  padding: 0 0 2.6rem;
}

.blog-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2.15rem 1.6rem;
}

.blog-card {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.blog-card-link {
  display: grid;
  gap: 1rem;
  height: 100%;
}

.blog-card-media {
  position: relative;
  overflow: hidden;
  border-radius: 1.35rem;
  aspect-ratio: 16 / 10;
  background: rgba(209, 232, 223, 0.8);
  box-shadow: 0 22px 40px rgba(11, 31, 26, 0.08);
}

.blog-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.blog-card:hover .blog-card-media img {
  transform: scale(1.04);
}

.blog-card-badge {
  position: absolute;
  left: 0.7rem;
  top: 0.7rem;
  display: inline-flex;
  align-items: center;
  min-height: 1.45rem;
  padding: 0 0.52rem;
  border-radius: 999px;
  background: rgba(252, 254, 252, 0.92);
  color: #1b4f87;
  font-size: 0.54rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.blog-card-copy {
  display: grid;
  gap: 0.6rem;
}

.blog-card h3 {
  font-size: 1.85rem;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.045em;
}

.blog-card p {
  margin: 0;
  color: rgba(11, 31, 26, 0.64);
  font-size: 0.95rem;
  line-height: 1.75;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  color: rgba(11, 31, 26, 0.54);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-card-meta span:last-child {
  color: #1b4f87;
}

.blog-empty-state {
  display: grid;
  place-items: center;
  min-height: 10rem;
  margin: 0;
  color: rgba(11, 31, 26, 0.58);
  font-size: 1rem;
}

.blog-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  margin-top: 2.5rem;
}

.blog-page-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.15rem;
  height: 2.15rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(11, 31, 26, 0.72);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
}

.blog-page-button:disabled {
  opacity: 0.36;
  cursor: default;
}

.blog-page-button.is-active {
  background: linear-gradient(145deg, #1b4f87, #0f8a9d);
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(15, 123, 95, 0.18);
}

.blog-page-arrow {
  border: 1px solid rgba(11, 31, 26, 0.12);
  background: rgba(255, 255, 255, 0.4);
}

.blog-page-ellipsis {
  color: rgba(11, 31, 26, 0.58);
  font-size: 0.84rem;
}

.blog-signup-section {
  padding: 1.25rem 0 4rem;
}

.blog-signup {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 1.5rem 2rem;
  align-items: center;
  padding: 2.4rem 2rem;
  border-radius: 1.9rem;
  background: linear-gradient(180deg, rgba(193, 232, 216, 0.86), rgba(185, 223, 208, 0.92));
  box-shadow: 0 32px 60px rgba(11, 31, 26, 0.08);
}

.blog-signup-copy {
  display: grid;
  gap: 0.8rem;
}

.blog-signup-copy h2 {
  max-width: 12ch;
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.blog-signup-copy p,
.blog-signup-note {
  margin: 0;
  color: rgba(11, 31, 26, 0.62);
  font-size: 0.95rem;
  line-height: 1.72;
}

.blog-signup-form {
  display: grid;
  gap: 0.85rem;
  align-content: start;
}

.blog-signup-form input {
  min-height: 3.2rem;
  padding: 0 1rem;
  border: 0;
  border-radius: 0.95rem;
  background: rgba(255, 255, 255, 0.92);
  color: #0b1f1a;
  font: inherit;
  outline: 2px solid transparent;
  transition:
    outline-color 180ms ease,
    box-shadow 180ms ease;
}

.blog-signup-form input:focus {
  outline-color: rgba(0, 96, 73, 0.16);
  box-shadow: 0 0 0 4px rgba(0, 96, 73, 0.08);
}

.blog-signup-form .button-solid {
  min-height: 3.25rem;
  width: 100%;
  border-radius: 0.95rem;
}

.blog-signup-note {
  font-size: 0.72rem;
  line-height: 1.6;
}

.blog-footer {
  padding-top: 0;
  background: transparent;
  border-top: 0;
}

.blog-footer-shell {
  display: grid;
  gap: 2.5rem;
  padding-top: 0.5rem;
}

.blog-footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr));
  gap: 2rem 2.4rem;
  padding-top: 1rem;
}

.blog-footer-brand {
  max-width: 17rem;
}

.blog-footer-column {
  display: grid;
  gap: 0.75rem;
  align-content: start;
}

.blog-footer-column h3 {
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.blog-footer-column a,
.blog-footer-meta {
  font-size: 0.85rem;
}

.blog-footer-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 2rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(11, 31, 26, 0.08);
  color: rgba(11, 31, 26, 0.52);
}

.blog-footer-meta p {
  margin: 0;
}

.blog-footer-meta-links {
  display: flex;
  gap: 1.1rem;
  flex-wrap: wrap;
}

.blog-post-page {
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.38), transparent 34%),
    linear-gradient(180deg, #effef7 0%, #dff4eb 100%);
  color: #0b1f1a;
}

.blog-post-page .site-header {
  background: rgba(239, 254, 247, 0.84);
  border-bottom-color: rgba(11, 31, 26, 0.05);
  box-shadow: 0 18px 48px rgba(11, 31, 26, 0.04);
}

.blog-post-page .brand-tag {
  display: none;
}

.blog-post-main {
  padding: calc(var(--header-height) + 2rem) 0 5rem;
}

.blog-post-shell {
  display: grid;
  gap: 1.6rem;
}

.blog-post-back {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  width: fit-content;
  color: rgba(11, 31, 26, 0.7);
  font-size: 0.88rem;
  font-weight: 600;
}

.blog-post-header {
  display: grid;
  gap: 1rem;
  max-width: 48rem;
}

.blog-post-header h1 {
  max-width: 12ch;
  font-size: clamp(2.6rem, 5vw, 4.5rem);
  font-weight: 700;
  line-height: 0.94;
  letter-spacing: -0.055em;
}

.blog-post-lead {
  margin: 0;
  max-width: 42rem;
  color: rgba(11, 31, 26, 0.68);
  font-size: 1.08rem;
  line-height: 1.8;
}

.blog-post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.blog-post-meta span,
.blog-post-aside-block span {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0 0.85rem;
  border-radius: 999px;
  background: rgba(209, 232, 223, 0.74);
  color: rgba(11, 31, 26, 0.76);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.blog-post-hero {
  overflow: hidden;
  border-radius: 2rem;
  box-shadow: 0 42px 80px rgba(11, 31, 26, 0.12);
}

.blog-post-hero img {
  width: 100%;
  height: auto;
  min-height: 20rem;
  object-fit: cover;
  aspect-ratio: 16 / 8.8;
}

.blog-post-layout {
  display: grid;
  grid-template-columns: minmax(14rem, 0.34fr) minmax(0, 0.66fr);
  gap: 1.5rem 3rem;
  align-items: start;
}

.blog-post-aside {
  position: sticky;
  top: calc(var(--header-height) + 1rem);
  display: grid;
  gap: 0.85rem;
  padding: 1.25rem;
  border-radius: 1.4rem;
  background: rgba(234, 248, 241, 0.82);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.52);
}

.blog-post-aside-block {
  display: grid;
  gap: 0.45rem;
}

.blog-post-aside-block strong {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.45;
}

.blog-post-article {
  display: grid;
  gap: 2rem;
}

.blog-post-section {
  display: grid;
  gap: 0.85rem;
}

.blog-post-section h2 {
  max-width: 16ch;
  font-size: clamp(1.55rem, 2.8vw, 2.35rem);
  font-weight: 600;
  line-height: 1.03;
  letter-spacing: -0.045em;
}

.blog-post-section p {
  max-width: 44rem;
  margin: 0;
  color: rgba(11, 31, 26, 0.76);
  font-size: 1rem;
  line-height: 1.84;
}

.blog-related-section {
  display: grid;
  gap: 1.4rem;
  padding-top: 1rem;
}

.blog-related-head {
  display: grid;
  gap: 0.7rem;
}

.blog-related-head h2 {
  max-width: none;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.05em;
}

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

@media (max-width: 1100px) {
  .blog-card-grid,
  .blog-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .blog-signup {
    grid-template-columns: 1fr;
  }

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

  .blog-post-aside {
    position: static;
  }

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

@media (max-width: 860px) {
  .blog-page .site-menu {
    background: rgba(239, 254, 247, 0.98);
    border-color: rgba(11, 31, 26, 0.08);
  }

  .blog-main {
    padding-bottom: 4.2rem;
  }

  .blog-post-main {
    padding: calc(var(--header-height) + 1.4rem) 0 4rem;
  }

  .blog-intro {
    padding: calc(var(--header-height) + 0.7rem) 0 0.9rem;
  }

  .blog-intro-shell {
    gap: 0.8rem;
  }

  .blog-intro h1 {
    max-width: none;
    font-size: clamp(2.3rem, 8vw, 3.4rem);
  }

  .blog-lead {
    max-width: 30rem;
    font-size: 0.98rem;
    line-height: 1.7;
  }

  .blog-feature-section {
    padding-bottom: 2rem;
  }

  .blog-feature-card {
    min-height: 25rem;
    border-radius: 1.5rem;
  }

  .blog-feature-body {
    padding: 1.35rem;
  }

  .blog-feature-card h2 {
    max-width: 12ch;
    font-size: clamp(1.75rem, 6vw, 2.5rem);
  }

  .blog-feature-card p {
    font-size: 0.93rem;
    line-height: 1.65;
  }

  .blog-toolbar {
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
  }

  .blog-filter-row {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 0.15rem;
  }

  .blog-search {
    width: 100%;
    flex-basis: auto;
  }

  .blog-card-grid {
    gap: 2rem 1.1rem;
  }

  .blog-card h3 {
    font-size: 1.45rem;
  }

  .blog-card p {
    font-size: 0.92rem;
    line-height: 1.68;
  }

  .blog-signup {
    padding: 1.4rem;
    border-radius: 1.5rem;
  }

  .blog-signup-copy h2 {
    max-width: none;
  }

  .blog-footer-grid {
    gap: 1.6rem 1.2rem;
  }

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

  .blog-post-shell {
    gap: 1.2rem;
  }

  .blog-post-header h1 {
    max-width: none;
    font-size: clamp(2.2rem, 8vw, 3.5rem);
  }

  .blog-post-lead {
    font-size: 0.98rem;
    line-height: 1.72;
  }

  .blog-post-hero {
    border-radius: 1.5rem;
  }

  .blog-post-hero img {
    min-height: 16rem;
  }

  .blog-post-aside {
    padding: 1rem;
    border-radius: 1.2rem;
  }

  .blog-post-section p {
    font-size: 0.96rem;
    line-height: 1.74;
  }
}

@media (max-width: 640px) {
  .blog-card-grid,
  .blog-footer-grid,
  .blog-related-grid {
    grid-template-columns: 1fr;
  }

  .blog-intro {
    padding-top: calc(var(--header-height) + 0.45rem);
  }

  .blog-feature-card {
    min-height: 21.5rem;
  }

  .blog-chip-row {
    gap: 0.45rem;
  }

  .blog-chip {
    font-size: 0.58rem;
    min-height: 1.65rem;
  }

  .blog-feature-link {
    font-size: 0.82rem;
  }

  .blog-filter {
    min-height: 2.1rem;
    padding: 0 0.85rem;
    font-size: 0.74rem;
  }

  .blog-card {
    gap: 0.85rem;
  }

  .blog-card-badge {
    font-size: 0.5rem;
  }

  .blog-card h3 {
    font-size: 1.35rem;
  }

  .blog-card-meta {
    font-size: 0.64rem;
  }

  .blog-pagination {
    margin-top: 2rem;
  }

  .blog-page-button {
    width: 2rem;
    height: 2rem;
  }

  .blog-signup {
    gap: 1rem;
    padding: 1.2rem;
  }

  .blog-signup-form .button-solid,
  .blog-signup-form input {
    min-height: 3rem;
  }

  .blog-footer-meta-links {
    gap: 0.8rem;
  }

  .blog-post-main {
    padding-top: calc(var(--header-height) + 1rem);
  }

  .blog-post-meta {
    gap: 0.45rem;
  }

  .blog-post-meta span,
  .blog-post-aside-block span {
    font-size: 0.68rem;
    min-height: 1.8rem;
    padding: 0 0.7rem;
  }

  .blog-post-hero img {
    min-height: 13rem;
  }

  .blog-post-section h2 {
    max-width: none;
    font-size: 1.45rem;
  }
}

.home-page {
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.38), transparent 34%),
    linear-gradient(180deg, #effef7 0%, #dff4eb 100%);
  color: #0b1f1a;
}

.home-static-header {
  background: rgba(239, 254, 247, 0.84);
  border-bottom-color: rgba(11, 31, 26, 0.05);
  box-shadow: 0 18px 48px rgba(11, 31, 26, 0.04);
}

.home-page {
  --shell: 1360px;
}

.home-performance-page {
  padding-bottom: 4.5rem;
}

.home-performance-hero,
.home-efficiency-band,
.home-story-section,
.home-pricing-section,
.home-network-section,
.home-testimonial-section,
.home-final-cta-section {
  padding: 2.5rem 0 0;
}

.home-performance-grid,
.home-story-grid,
.home-network-grid,
.home-footer-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1.5rem;
}

.home-performance-hero {
  position: relative;
  overflow: hidden;
  min-height: clamp(34rem, 76vh, 42rem);
  padding-top: 1.6rem;
}

.home-performance-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(239, 254, 247, 0.99) 0%, rgba(239, 254, 247, 0.97) 36%, rgba(239, 254, 247, 0.9) 52%, rgba(239, 254, 247, 0.68) 66%, rgba(239, 254, 247, 0.24) 80%, rgba(239, 254, 247, 0.08) 100%),
    url("./assets/home/fiber-lines.jpeg") center right / cover no-repeat;
  opacity: 0.9;
  pointer-events: none;
}

.home-performance-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(239, 254, 247, 0.68) 0%, rgba(239, 254, 247, 0.22) 12%, rgba(239, 254, 247, 0) 28%),
    linear-gradient(270deg, rgba(223, 244, 235, 0.46) 0%, rgba(223, 244, 235, 0.16) 10%, rgba(223, 244, 235, 0) 24%);
  pointer-events: none;
}

.home-performance-hero > .shell {
  position: relative;
  z-index: 1;
}

.home-performance-grid {
  grid-template-columns: minmax(0, 39rem);
  align-content: center;
  min-height: inherit;
  gap: 0;
}

.home-performance-copy {
  grid-column: auto;
  align-self: center;
  max-width: 39rem;
  padding: 2.2rem 0 2rem;
}

.home-performance-label {
  margin: 0 0 1rem;
  color: #006049;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.home-performance-copy h1 {
  max-width: 11.5ch;
  font-size: clamp(3rem, 5.8vw, 5rem);
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: -0.06em;
}

.home-performance-copy h1 span {
  color: #006049;
  font-style: italic;
}

.home-performance-lead {
  max-width: 37rem;
  margin: 1.25rem 0 0;
  color: rgba(11, 31, 26, 0.7);
  font-size: 1.02rem;
  line-height: 1.72;
}

.home-performance-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.6rem;
}

.home-performance-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem 1rem;
  margin: 1.7rem 0 0;
  padding: 1.1rem 0 0;
  list-style: none;
  border-top: 1px solid rgba(11, 31, 26, 0.12);
}

.home-performance-proof li {
  display: grid;
  gap: 0.28rem;
}

.home-performance-proof strong {
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.2;
}

.home-performance-proof span {
  color: rgba(11, 31, 26, 0.63);
  font-size: 0.82rem;
  line-height: 1.5;
}

.home-performance-visual {
  position: absolute;
  inset: auto -3.2rem -1.3rem 44%;
  display: flex;
  align-items: end;
  justify-content: end;
  width: min(58vw, 58rem);
  max-width: 58rem;
  margin-right: 0;
  overflow: visible;
}

.home-performance-visual::before {
  content: "";
  position: absolute;
  inset: 1% 1% 0 0;
  z-index: 0;
  border-radius: 2.4rem;
  background:
    radial-gradient(circle at 54% 46%, rgba(255, 255, 255, 0.98) 0%, rgba(250, 255, 252, 0.94) 36%, rgba(239, 254, 247, 0.7) 58%, rgba(223, 244, 235, 0.24) 74%, rgba(223, 244, 235, 0) 88%),
    radial-gradient(circle at 70% 76%, rgba(95, 143, 54, 0.14) 0%, rgba(95, 143, 54, 0) 54%);
  filter: blur(18px);
  pointer-events: none;
}

.home-performance-visual img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  min-height: 0;
  border-radius: 2.4rem;
  object-fit: contain;
  object-position: center bottom;
  box-shadow: none;
  border: 0;
  filter: saturate(0.96) brightness(1.02);
  -webkit-mask-image: radial-gradient(128% 120% at 60% 58%, #000 36%, rgba(0, 0, 0, 0.98) 48%, rgba(0, 0, 0, 0.88) 58%, rgba(0, 0, 0, 0.56) 69%, rgba(0, 0, 0, 0.18) 81%, transparent 92%);
  mask-image: radial-gradient(128% 120% at 60% 58%, #000 36%, rgba(0, 0, 0, 0.98) 48%, rgba(0, 0, 0, 0.88) 58%, rgba(0, 0, 0, 0.56) 69%, rgba(0, 0, 0, 0.18) 81%, transparent 92%);
  transition: transform 420ms ease;
}

.home-performance-note {
  position: absolute;
  left: -2.2rem;
  bottom: 1.6rem;
  display: flex;
  gap: 0.9rem;
  max-width: 16rem;
  padding: 1rem 1.1rem;
  border-radius: 1.1rem;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 28px 52px rgba(11, 31, 26, 0.14);
  backdrop-filter: blur(18px);
}

.home-status-dot {
  width: 0.65rem;
  height: 0.65rem;
  margin-top: 0.25rem;
  border-radius: 999px;
  background: #006c4f;
  box-shadow: 0 0 0 0.4rem rgba(0, 108, 79, 0.12);
  flex: 0 0 auto;
}

.home-performance-note strong,
.home-story-badge {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.home-performance-note p {
  margin: 0.35rem 0 0;
  color: rgba(11, 31, 26, 0.62);
  font-size: 0.85rem;
  line-height: 1.55;
}

.home-efficiency-band {
  padding-top: 5.5rem;
}

.home-efficiency-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem 2rem;
  margin-bottom: 2.3rem;
}

.home-efficiency-head h2,
.home-story-copy h2,
.home-pricing-head h2,
.home-network-copy h2,
.home-testimonial-head h2,
.home-final-cta h2 {
  max-width: 13ch;
  font-size: clamp(2.1rem, 4.5vw, 3.3rem);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.home-efficiency-head p,
.home-story-copy p,
.home-pricing-head p,
.home-network-copy p,
.home-final-cta p {
  margin: 0.9rem 0 0;
  max-width: 36rem;
  color: rgba(11, 31, 26, 0.68);
  font-size: 1rem;
  line-height: 1.75;
}

.home-efficiency-head > span {
  color: rgba(0, 96, 73, 0.1);
  font-size: clamp(3rem, 10vw, 5.5rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  user-select: none;
}

.home-efficiency-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
}

.home-efficiency-card,
.home-price-card,
.home-testimonial-card {
  border-radius: 1.65rem;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 18px 40px rgba(11, 31, 26, 0.07);
}

.home-efficiency-card {
  padding: 1.5rem;
}

.home-efficiency-card h3,
.home-price-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.home-efficiency-card p {
  margin: 0.7rem 0 0;
  color: rgba(11, 31, 26, 0.65);
  font-size: 0.95rem;
  line-height: 1.7;
}

.home-mini-icon {
  position: relative;
  width: 2.8rem;
  height: 2.8rem;
  margin-bottom: 1rem;
  color: #006049;
}

.home-mini-icon-tilt::before,
.home-mini-icon-box::before,
.home-mini-icon-box::after,
.home-mini-icon-bars::before,
.home-mini-icon-bars::after {
  content: "";
  position: absolute;
}

.home-mini-icon-tilt::before {
  inset: 0.35rem;
  border: 2px solid currentColor;
  border-radius: 0.35rem;
  transform: skew(-14deg);
}

.home-mini-icon-tilt::after {
  content: "";
  position: absolute;
  right: 0.1rem;
  top: 50%;
  width: 0.8rem;
  height: 2px;
  background: currentColor;
  box-shadow: 0 0.38rem 0 currentColor, 0 -0.38rem 0 currentColor;
}

.home-mini-icon-box::before {
  inset: 0.2rem;
  border: 2px solid currentColor;
  border-radius: 0.35rem;
}

.home-mini-icon-box::after {
  inset: 0.75rem;
  border: 2px solid currentColor;
  border-radius: 0.2rem;
}

.home-mini-icon-bars {
  display: flex;
  align-items: end;
  gap: 0.2rem;
}

.home-mini-icon-bars::before {
  left: 0.4rem;
  bottom: 0.35rem;
  width: 0.35rem;
  height: 0.9rem;
  background: currentColor;
  border-radius: 0.15rem;
  box-shadow: 0.6rem -0.35rem 0 0 currentColor, 1.2rem -0.75rem 0 0 currentColor;
}

.home-story-section {
  padding-top: 5.2rem;
}

.home-story-grid {
  align-items: center;
  margin-bottom: 4rem;
}

.home-story-grid:last-child {
  margin-bottom: 0;
}

.home-story-grid > * {
  grid-column: span 6;
}

.home-story-media {
  position: relative;
}

.home-story-media img {
  width: 100%;
  min-height: 24rem;
  border-radius: 1.9rem;
  object-fit: cover;
  box-shadow: 0 30px 56px rgba(11, 31, 26, 0.1);
  transition: transform 420ms ease;
}

.home-story-badge {
  position: absolute;
  right: -1rem;
  top: -1rem;
  padding: 0.75rem 1rem;
  border-radius: 1rem;
  background: #006049;
  color: #ffffff;
  box-shadow: 0 22px 42px rgba(0, 96, 73, 0.2);
}

.home-story-list {
  display: grid;
  gap: 0.75rem;
  margin: 1.5rem 0 1.8rem;
  padding: 0;
  list-style: none;
}

.home-story-list li {
  position: relative;
  padding-left: 1.35rem;
  font-size: 0.98rem;
  font-weight: 500;
  line-height: 1.6;
}

.home-story-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: #006049;
}

.home-story-list-alt li::before {
  border-radius: 0.08rem;
  transform: rotate(45deg);
}

.home-pricing-section {
  padding-top: 4.8rem;
}

.home-pricing-head {
  text-align: center;
  margin-bottom: 2.3rem;
}

.home-pricing-head h2,
.home-testimonial-head h2,
.home-final-cta h2 {
  max-width: none;
}

.home-pricing-head p {
  margin-inline: auto;
}

.isp-plan-section + .isp-plan-section {
  margin-top: 2rem;
}

.isp-plan-title {
  margin: 0 0 1rem;
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.isp-plan-grid {
  display: grid;
  gap: 1rem;
  justify-items: center;
}

.isp-plan-grid-home {
  gap: 1rem;
}

.isp-plan-row {
  display: grid;
  gap: 1.15rem;
  justify-content: center;
}

.isp-plan-row-3 {
  grid-template-columns: repeat(3, minmax(220px, 270px));
}

.isp-plan-row-2 {
  grid-template-columns: repeat(2, minmax(220px, 270px));
  width: min(66.666%, 560px);
  margin: 0 auto;
}

.isp-plan-grid-business {
  grid-template-columns: repeat(3, minmax(220px, 270px));
  justify-content: center;
}

.isp-plan-card {
  width: 100%;
  max-width: 270px;
  padding: 1.45rem 1.2rem 1.2rem;
  border-radius: 0.72rem;
  border: 1px solid rgba(26, 36, 48, 0.08);
  background: var(--white);
  box-shadow: 0 18px 42px rgba(8, 13, 20, 0.1);
  min-height: 25.5rem;
}

.isp-plan-tier {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--amber);
  text-transform: capitalize;
  text-align: center;
}

.isp-plan-card h4 {
  margin: 0.35rem 0 0;
  text-align: center;
  font-size: 2.05rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.isp-plan-card h4 span {
  display: block;
  margin-top: 0.45rem;
  font-size: 0.92rem;
  color: var(--ink-soft);
  letter-spacing: 0;
}

.isp-plan-card ul {
  margin: 1.2rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.56rem;
  border-top: 1px solid var(--line-dark);
  padding-top: 1.2rem;
}

.isp-plan-card li {
  position: relative;
  padding-left: 1.45rem;
  color: var(--ink-soft);
  font-size: 0.85rem;
  line-height: 1.2;
}

.isp-plan-card li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0.05rem;
  width: 0.9rem;
  height: 0.9rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(95, 143, 54, 0.12);
  color: var(--amber);
  font-size: 0.62rem;
  font-weight: 700;
}

.isp-plan-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 2.4rem;
  margin: 1rem auto 0;
  padding: 0 1.2rem;
  border-radius: 0.45rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  width: 100%;
  max-width: 100%;
}

.isp-plan-btn-gold {
  background: linear-gradient(145deg, #4abf72, #2a874c);
  color: #f2fde9;
  box-shadow: 0 12px 24px rgba(47, 158, 90, 0.24);
}

.isp-plan-btn-blue {
  background: rgba(255, 253, 248, 0.72);
  border: 1px solid var(--line-dark);
  color: var(--ink);
}

.isp-plan-card-blue .isp-plan-tier {
  color: var(--teal);
}

.isp-plan-card-blue li::before {
  background: rgba(47, 158, 90, 0.14);
  color: var(--teal);
}

.home-pricing-note {
  margin: 1.1rem auto 0;
  max-width: 40rem;
  color: rgba(16, 32, 51, 0.64);
  font-size: 0.94rem;
  line-height: 1.7;
  text-align: center;
}

.home-network-section {
  padding-top: 5rem;
}

.home-network-grid {
  align-items: center;
}

.home-network-copy,
.home-network-visual {
  grid-column: span 6;
}

.home-network-points {
  display: grid;
  gap: 1rem;
  margin-top: 1.8rem;
}

.home-network-points article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem 1rem;
  align-items: start;
}

.home-network-points h3 {
  font-size: 1.12rem;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.home-network-points p {
  margin: 0.35rem 0 0;
  color: rgba(11, 31, 26, 0.62);
  font-size: 0.94rem;
  line-height: 1.65;
}

.home-network-visual {
  position: relative;
  overflow: hidden;
  border-radius: 2.3rem;
  background: #21342f;
  padding: 2rem;
  box-shadow: 0 34px 64px rgba(11, 31, 26, 0.16);
}

.home-network-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.15;
  background-image: radial-gradient(circle at 1px 1px, #7cd8b7 1px, transparent 0);
  background-size: 36px 36px;
}

.home-network-visual img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 18rem;
  object-fit: cover;
  border-radius: 1.4rem;
  mix-blend-mode: normal;
  opacity: 0.96;
  transition: transform 420ms ease;
}

.home-network-stats {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
  text-align: center;
}

.home-network-stats strong {
  display: block;
  color: #ffffff;
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.2;
}

.home-network-stats span {
  display: block;
  margin-top: 0.35rem;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: none;
}

.home-process-section {
  padding-top: 4.9rem;
}

.home-process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.home-process-step {
  padding: 1.35rem 1.3rem 1.45rem;
  border-radius: 1.45rem;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(11, 31, 26, 0.08);
  box-shadow: 0 18px 40px rgba(11, 31, 26, 0.05);
}

.home-process-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.3rem;
  min-height: 2.3rem;
  border-radius: 999px;
  background: rgba(0, 96, 73, 0.12);
  color: #006049;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.home-process-step h3 {
  margin-top: 1rem;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.home-process-step p {
  margin: 0.65rem 0 0;
  color: rgba(11, 31, 26, 0.65);
  font-size: 0.92rem;
  line-height: 1.7;
}

.home-testimonial-section {
  padding-top: 4.9rem;
}

.home-testimonial-head {
  margin-bottom: 2rem;
  text-align: center;
}

.home-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.home-testimonial-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.8rem;
  align-items: start;
  padding: 1.3rem;
  border-left: 3px solid rgba(0, 96, 73, 0.2);
}

.home-testimonial-card img {
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 999px;
  object-fit: cover;
  border: 2px solid rgba(0, 96, 73, 0.16);
}

.home-testimonial-card p {
  margin: 0;
  color: rgba(11, 31, 26, 0.74);
  font-size: 0.98rem;
  line-height: 1.7;
}

.home-testimonial-card strong {
  display: block;
  margin-top: 0.8rem;
  font-size: 0.95rem;
  font-weight: 700;
}

.home-testimonial-card span {
  display: block;
  margin-top: 0.2rem;
  color: rgba(11, 31, 26, 0.52);
  font-size: 0.82rem;
}

.home-final-cta-section {
  padding-top: 4.8rem;
}

.home-final-cta {
  border-radius: 2rem;
  background: #006049;
  padding: 2.5rem 2rem;
  text-align: center;
  color: #ffffff;
  box-shadow: 0 32px 60px rgba(0, 96, 73, 0.18);
}

.home-final-cta p {
  margin-inline: auto;
  color: rgba(255, 255, 255, 0.86);
}

.home-final-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 1.7rem;
}

.home-final-cta .button-outline {
  background: #ffffff;
  border-color: #ffffff;
  color: #006049;
}

.home-final-cta .button-solid {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.18);
  color: #ffffff;
  box-shadow: none;
}

.home-site-footer {
  margin-top: 4.8rem;
  background: rgba(220, 243, 234, 0.86);
}

.home-footer-grid {
  padding: 2.6rem 0;
}

.home-footer-brand,
.home-footer-column {
  grid-column: span 3;
}

.home-footer-brand {
  grid-column: span 4;
}

.home-footer-column {
  display: grid;
  gap: 0.65rem;
  align-content: start;
}

.home-footer-column h3 {
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.home-footer-column a {
  color: rgba(11, 31, 26, 0.68);
  font-size: 0.88rem;
}

.home-footer-column a:hover,
.home-footer-column a:focus-visible {
  color: #1b4f87;
}

.home-performance-visual:hover img,
.home-story-media:hover img,
.home-network-visual:hover img {
  transform: scale(1.02);
}

.home-performance-visual:hover img {
  transform: none;
}

@media (max-width: 1100px) {
  .home-performance-copy,
  .home-performance-visual,
  .home-story-grid > *,
  .home-network-copy,
  .home-network-visual,
  .home-footer-brand,
  .home-footer-column {
    grid-column: span 12;
  }

  .home-performance-grid,
  .home-story-grid,
  .home-network-grid,
  .home-footer-grid {
    gap: 1.25rem;
  }

  .home-performance-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .home-efficiency-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .isp-plan-grid-business,
  .home-process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .isp-plan-row-3,
  .isp-plan-row-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  .isp-plan-grid-business {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-testimonial-grid {
    grid-template-columns: 1fr;
  }

  .home-story-badge {
    right: 1rem;
    top: 1rem;
  }

  .home-performance-note {
    left: 1rem;
    bottom: 1rem;
  }

  .home-performance-visual {
    position: relative;
    inset: auto;
    justify-self: start;
    align-self: auto;
    width: min(100%, 46rem);
    overflow: visible;
  }

  .home-performance-visual::before {
    display: none;
  }

  .home-performance-proof {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .home-performance-page {
    padding-bottom: 3.5rem;
  }

  .home-performance-hero,
  .home-efficiency-band,
  .home-story-section,
  .home-pricing-section,
  .home-network-section,
  .home-testimonial-section,
  .home-final-cta-section {
    padding-top: 2rem;
  }

  .home-performance-hero {
    min-height: auto;
    padding-top: 1rem;
  }

  .home-performance-copy h1 {
    font-size: clamp(2.55rem, 9vw, 4rem);
    max-width: 11ch;
  }

  .home-performance-lead {
    font-size: 0.98rem;
    line-height: 1.7;
  }

  .home-performance-visual img {
    min-height: 0;
    aspect-ratio: auto;
    height: auto;
    border-radius: 2rem;
    border: 0;
    filter: saturate(0.97) brightness(1.01);
    -webkit-mask-image: radial-gradient(135% 122% at 58% 56%, #000 40%, rgba(0, 0, 0, 0.98) 52%, rgba(0, 0, 0, 0.78) 65%, rgba(0, 0, 0, 0.28) 80%, transparent 92%);
    mask-image: radial-gradient(135% 122% at 58% 56%, #000 40%, rgba(0, 0, 0, 0.98) 52%, rgba(0, 0, 0, 0.78) 65%, rgba(0, 0, 0, 0.28) 80%, transparent 92%);
  }

  .home-performance-note {
    position: static;
    margin-top: 1rem;
    max-width: 100%;
  }

  .home-efficiency-head {
    flex-direction: column;
    align-items: start;
  }

  .home-efficiency-head > span {
    font-size: 2.4rem;
  }

  .home-story-grid {
    margin-bottom: 3rem;
  }

  .home-story-media img {
    min-height: 18rem;
  }

  .isp-plan-grid-business,
  .home-testimonial-grid {
    gap: 1rem;
  }

  .home-process-grid {
    gap: 0.9rem;
  }

  .home-network-visual {
    padding: 1.3rem;
    border-radius: 1.7rem;
  }

  .home-network-visual img {
    height: 14rem;
  }

  .home-network-stats strong {
    font-size: 0.98rem;
  }

  .home-final-cta {
    padding: 1.8rem 1.2rem;
    border-radius: 1.6rem;
  }
}

@media (max-width: 640px) {
  .home-performance-actions,
  .home-final-actions {
    flex-direction: column;
  }

  .home-performance-actions .button,
  .home-final-actions .button {
    width: 100%;
  }

  .home-efficiency-card,
  .isp-plan-card,
  .home-testimonial-card {
    padding: 1.1rem;
  }

  .isp-plan-row-3,
  .isp-plan-row-2,
  .isp-plan-grid-business,
  .home-process-grid {
    grid-template-columns: 1fr;
  }

  .isp-plan-title {
    font-size: 1.55rem;
  }

  .isp-plan-card h4 {
    font-size: 1.9rem;
  }

  .isp-plan-card {
    min-height: 0;
  }

  .home-performance-copy h1,
  .home-efficiency-head h2,
  .home-story-copy h2,
  .home-pricing-head h2,
  .home-network-copy h2,
  .home-testimonial-head h2,
  .home-final-cta h2 {
    font-size: 2rem;
  }

  .home-performance-proof {
    grid-template-columns: 1fr;
  }

  .home-story-badge {
    position: static;
    width: fit-content;
    margin-top: 0.8rem;
  }

  .home-network-stats {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .home-testimonial-card {
    grid-template-columns: 1fr;
  }

  .home-process-step {
    padding: 1.1rem;
  }
}

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

  .strip-track,
  .reveal,
  .header-cta,
  .button,
  .info-card,
  .plan-card,
  .mini-panel,
  .aside-card,
  .featured-story {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
