@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  --bg-page: #F4F6FA;
  --bg-card: #FFFFFF;
  --bg-dark: #0B121C;
  --bg-darker: #060A12;
  --text-primary: #0F172A;
  --text-secondary: #475569;
  --text-muted: #94A3B8;
  --text-light: #FFFFFF;
  --accent: #2563EB;
  --accent-light: #3B82F6;
  --accent-glow: #60A5FA;
  --signal: #06B6D4;
  --highlight: #60A5FA;
  --border: #E2E8F0;
  --border-subtle: rgba(15, 23, 42, 0.06);
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 28px;
  --gap: 28px;
  --container-max: 1440px;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow-card: 0 8px 32px rgba(15, 23, 42, 0.06), 0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow-hover: 0 20px 56px rgba(15, 23, 42, 0.12), 0 2px 4px rgba(15, 23, 42, 0.06);
  --font-mono: 'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, Consolas, monospace;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --duration: 0.35s;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-page);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'cv02', 'cv03', 'cv04', 'cv11';
}

a { color: inherit; text-decoration: none; transition: color 0.2s var(--ease); }

img, picture { max-width: 100%; height: auto; display: block; }

::selection { background: var(--accent); color: var(--text-light); }

/* ============ Header ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(244, 246, 250, 0.78);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.7);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px var(--gap);
  max-width: var(--container-max);
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1.5px;
  color: var(--text-primary);
}

.brand__logo {
  width: 40px;
  height: 30px;
  display: block;
  transition: transform 0.4s var(--ease);
}

.brand__logo path { fill: var(--text-primary); }

.brand:hover .brand__logo { transform: rotate(-8deg) scale(1.05); }

.menu-trigger {
  background: none;
  border: 0;
  padding: 6px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  color: var(--text-primary);
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 500;
  font-family: inherit;
  transition: opacity 0.2s var(--ease);
}

.menu-trigger:hover { opacity: 0.7; }

.menu-trigger__icon {
  width: 22px;
  height: 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.menu-trigger__icon span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text-primary);
  border-radius: 1px;
  transition: transform 0.3s var(--ease);
}

/* ============ Side menu panel ============ */
.menu-panel {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(440px, 88vw);
  background: var(--bg-dark);
  color: var(--text-light);
  z-index: 100;
  transform: translateX(100%);
  transition: transform 0.45s var(--ease);
  display: flex;
  flex-direction: column;
  padding: 80px 56px 56px;
}

.menu-panel[data-open="true"] { transform: translateX(0); }

.menu-panel__close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: 0;
  color: var(--text-light);
  cursor: pointer;
  padding: 8px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  transition: background 0.2s var(--ease);
}

.menu-panel__close:hover { background: rgba(255, 255, 255, 0.08); }

.menu-panel__close svg { width: 100%; height: 100%; }

.menu-panel ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.menu-panel a {
  font-size: 32px;
  font-weight: 300;
  letter-spacing: -0.02em;
  color: var(--text-light);
  display: inline-block;
  padding: 6px 0;
  transition: color 0.2s var(--ease), transform 0.3s var(--ease);
}

.menu-panel a:hover { color: var(--highlight); transform: translateX(6px); }

.menu-panel li.is-current a { color: var(--highlight); }

.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20, 18, 14, 0.45);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  z-index: 90;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}

.menu-overlay[data-open="true"] {
  opacity: 1;
  pointer-events: auto;
}

body.menu-open { overflow: hidden; }

/* ============ Sections ============ */
section { padding: var(--gap) 0; }

main > section:first-child { padding-top: var(--gap); }

.hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--text-light);
  background: var(--bg-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: var(--gap);
  max-width: calc(var(--container-max) - 2 * var(--gap));
}

.hero--container {
  margin-left: auto;
  margin-right: auto;
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero img.hero__bg {
  transform: scale(1.04);
  transition: transform 1.4s var(--ease);
}

.hero:hover img.hero__bg { transform: scale(1.08); }

.hero--network {
  background:
    radial-gradient(ellipse at 20% 30%, rgba(37, 99, 235, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 70%, rgba(6, 182, 212, 0.10) 0%, transparent 60%),
    linear-gradient(135deg, #0B121C 0%, #060A12 100%);
}

.hero--network .hero__overlay {
  background: linear-gradient(180deg, transparent 0%, rgba(11, 18, 28, 0.35) 100%);
}

canvas.hero__bg { display: block; }

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(37, 99, 235, 0.18) 0%, transparent 55%),
    linear-gradient(180deg, rgba(11, 18, 28, 0.20) 0%, rgba(11, 18, 28, 0.65) 100%);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 80px 32px;
  max-width: 920px;
}

.hero__title {
  font-size: clamp(42px, 6.5vw, 88px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0;
}

.hero__sub {
  margin-top: 28px;
  font-size: clamp(16px, 1.4vw, 19px);
  color: rgba(255, 255, 255, 0.88);
  font-weight: 300;
  line-height: 1.55;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

/* Two-column card section */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: var(--gap) auto;
  max-width: calc(var(--container-max) - 2 * var(--gap));
  box-shadow: var(--shadow-card);
}

.split--reverse .split__media { order: 1; }
.split--reverse .split__body { order: 2; }

.split__media {
  overflow: hidden;
  position: relative;
}

.split__media img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
  display: block;
  transition: transform 1s var(--ease);
}

.split:hover .split__media img { transform: scale(1.04); }

.split__body {
  padding: clamp(40px, 5vw, 88px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eyebrow {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin: 0 0 20px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.eyebrow::before {
  content: '';
  width: 28px;
  height: 1.5px;
  background: var(--accent);
}

.split__title {
  font-size: clamp(30px, 3.6vw, 52px);
  font-weight: 300;
  margin: 0 0 28px;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.split__text {
  font-size: 17px;
  color: var(--text-secondary);
  margin: 0 0 44px;
  max-width: 540px;
  line-height: 1.65;
}

.split__text p + p { margin-top: 14px; }

/* Circular CTA button */
.btn-circle {
  width: 142px;
  height: 142px;
  border-radius: 50%;
  border: 1px solid var(--text-primary);
  background: transparent;
  color: var(--text-primary);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: all 0.35s var(--ease);
  align-self: flex-start;
  text-decoration: none;
  padding: 0 18px;
  position: relative;
  overflow: hidden;
}

.btn-circle::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--text-primary);
  border-radius: 50%;
  transform: scale(0);
  transition: transform 0.4s var(--ease);
  z-index: -1;
}

.btn-circle:hover {
  color: var(--text-light);
  transform: scale(1.04);
}

.btn-circle:hover::after { transform: scale(1); }

/* Services list */
.services {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  margin: var(--gap) auto;
  max-width: calc(var(--container-max) - 2 * var(--gap));
  padding: clamp(48px, 6vw, 96px) clamp(28px, 4vw, 72px);
  box-shadow: var(--shadow-card);
}

.services__title {
  font-size: clamp(34px, 4.2vw, 60px);
  font-weight: 300;
  margin: 0 0 64px;
  line-height: 1.05;
  letter-spacing: -0.025em;
  max-width: 800px;
}

.services__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 56px 64px;
}

.service {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 28px;
  align-items: start;
  cursor: default;
  transition: transform 0.4s var(--ease);
}

.service:hover { transform: translateY(-3px); }

.service__media {
  overflow: hidden;
  border-radius: var(--radius-sm);
}

.service__media img {
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  transition: transform 0.6s var(--ease);
}

.service:hover .service__media img { transform: scale(1.06); }

.service__num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 1px;
  margin: 0 0 12px;
  font-weight: 500;
  font-feature-settings: 'tnum';
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.service__num::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.15);
}

.service__name {
  font-size: clamp(18px, 1.5vw, 21px);
  font-weight: 500;
  margin: 0 0 12px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.service__desc {
  font-size: 15px;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.6;
}

.services__cta {
  margin-top: 72px;
  display: flex;
  justify-content: center;
}

/* Pillars (3-up grid for expertise page) */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
  margin: var(--gap) auto;
  max-width: calc(var(--container-max) - 2 * var(--gap));
}

.pillar {
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-card);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.pillar:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.pillar__img {
  height: 260px;
  width: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.pillar:hover .pillar__img { transform: scale(1.05); }

.pillar__body {
  padding: 32px 32px 36px;
}

.pillar__title {
  font-size: 22px;
  font-weight: 500;
  margin: 0 0 14px;
  letter-spacing: -0.01em;
}

.pillar__text {
  font-size: 15px;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.65;
}

/* Page intro */
.page-intro {
  padding: clamp(70px, 11vw, 140px) var(--gap) clamp(48px, 7vw, 96px);
  max-width: var(--container-max);
  margin: 0 auto;
}

.page-intro__title {
  font-size: clamp(42px, 6.5vw, 88px);
  font-weight: 300;
  margin: 16px 0 32px;
  line-height: 1.02;
  letter-spacing: -0.03em;
  max-width: 1100px;
}

.page-intro__lead {
  font-size: clamp(17px, 1.4vw, 20px);
  color: var(--text-secondary);
  max-width: 720px;
  margin: 0;
  line-height: 1.6;
  font-weight: 300;
}

/* SAV / Contact */
.contact-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  margin: var(--gap) auto;
  max-width: calc(var(--container-max) - 2 * var(--gap));
  padding: clamp(48px, 7vw, 96px);
  text-align: center;
  box-shadow: var(--shadow-card);
}

.contact-card .eyebrow {
  margin-left: auto;
  margin-right: auto;
  display: inline-flex;
}

.contact-card__title {
  font-size: clamp(32px, 4.5vw, 60px);
  font-weight: 300;
  margin: 0 0 28px;
  line-height: 1.08;
  letter-spacing: -0.025em;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}

.contact-card__text {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 640px;
  margin: 0 auto 44px;
  line-height: 1.65;
}

.contact-card__email {
  display: inline-block;
  border: 1px solid var(--text-primary);
  padding: 18px 40px;
  border-radius: 999px;
  font-size: 15px;
  letter-spacing: 0.5px;
  font-weight: 500;
  transition: all 0.3s var(--ease);
}

.contact-card__email:hover {
  background: var(--text-primary);
  color: var(--text-light);
  transform: translateY(-2px);
}

/* ============ Footer ============ */
.site-footer {
  background: var(--bg-darker);
  color: var(--text-light);
  margin-top: 80px;
  padding: 56px var(--gap) 28px;
}

.site-footer__inner {
  max-width: var(--container-max);
  margin: 0 auto;
}

.site-footer__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer .brand { color: var(--text-light); font-size: 13px; letter-spacing: 1.8px; }
.site-footer .brand__logo path { fill: var(--text-light); }

.site-footer__nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.site-footer__nav a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 400;
  letter-spacing: 0.2px;
  position: relative;
}

.site-footer__nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background: var(--highlight);
  transition: width 0.3s var(--ease);
}

.site-footer__nav a:hover { color: var(--highlight); }
.site-footer__nav a:hover::after { width: 100%; }

.site-footer__bottom {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 24px;
  padding-top: 24px;
  flex-wrap: wrap;
}

.site-footer__contact {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  margin: 0;
  font-weight: 300;
  letter-spacing: 0.3px;
}

.site-footer__contact a {
  color: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  padding-bottom: 1px;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}

.site-footer__contact a:hover {
  color: var(--highlight);
  border-bottom-color: var(--highlight);
}

.site-footer__copy {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.8px;
  margin: 0;
}

@media (max-width: 700px) {
  .site-footer__top { flex-direction: column; align-items: flex-start; gap: 24px; }
  .site-footer__nav { gap: 24px; }
  .site-footer__bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* ============ Responsive ============ */
@media (max-width: 900px) {
  :root { --gap: 18px; }

  .split { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: initial; }
  .split--reverse .split__body { order: initial; }
  .split__media img { min-height: 280px; }
  .split__body { padding: 40px 28px 48px; }

  .pillars { grid-template-columns: 1fr; }

  .services__list {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .service {
    grid-template-columns: 110px 1fr;
    gap: 18px;
  }
  .service__media img { width: 110px; height: 110px; }

  .menu-panel { padding: 80px 32px 32px; }
  .menu-panel a { font-size: 26px; }

  .hero { min-height: 60vh; }
  .hero__content { padding: 60px 24px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

/* ============ Stats bar ============ */
.stats-bar {
  margin: var(--gap) auto;
  max-width: calc(var(--container-max) - 2 * var(--gap));
  padding: 0 var(--gap);
}

.stats-bar__inner {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: clamp(32px, 4vw, 56px) clamp(20px, 3vw, 36px);
}

.stat {
  text-align: center;
  padding: 0 12px;
  position: relative;
}

.stat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 22%;
  bottom: 22%;
  width: 1px;
  background: var(--border);
}

.stat__value {
  font-family: var(--font-mono);
  font-size: clamp(30px, 3.8vw, 52px);
  font-weight: 500;
  color: var(--text-primary);
  margin: 0 0 10px;
  letter-spacing: -0.02em;
  line-height: 1;
  font-feature-settings: 'tnum';
}

.stat__label {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 1.6px;
  text-transform: uppercase;
  margin: 0;
  line-height: 1.4;
  font-weight: 500;
}

/* ============ Customer logos strip ============ */
.logos-strip {
  padding: clamp(64px, 7vw, 96px) var(--gap) clamp(48px, 5vw, 64px);
  text-align: center;
}

.logos-strip__caption {
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 44px;
  font-weight: 500;
}

.logos-strip__row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(32px, 4.5vw, 72px);
  flex-wrap: wrap;
  max-width: 1240px;
  margin: 0 auto;
}

.cust-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-secondary);
  opacity: 0.45;
  font-size: 18px;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
  white-space: nowrap;
  font-family: 'Inter', sans-serif;
}

.cust-logo:hover { opacity: 0.95; transform: translateY(-1px); }

.cust-logo svg { flex-shrink: 0; }

.cust-logo--acme { font-weight: 800; letter-spacing: 1.5px; font-size: 17px; }
.cust-logo--greenwave { font-style: italic; font-weight: 400; font-size: 22px; letter-spacing: -0.5px; }
.cust-logo--nordia { font-weight: 700; letter-spacing: 3px; font-size: 14px; }
.cust-logo--lumiq { font-weight: 300; font-size: 24px; letter-spacing: -0.6px; }
.cust-logo--kappa { font-weight: 700; letter-spacing: 2px; font-size: 16px; }
.cust-logo--meridian { font-weight: 500; letter-spacing: 4px; font-size: 13px; }
.cust-logo--voltane { font-weight: 600; letter-spacing: 0.5px; font-size: 19px; font-style: italic; }
.cust-logo--atelia { font-weight: 400; letter-spacing: 5px; font-size: 13px; }

/* ============ Reveal on scroll ============ */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
  will-change: opacity, transform;
}

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

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 700px) {
  .stats-bar__inner {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 28px;
    padding: 32px 16px;
  }
  .stat:not(:last-child)::after { display: none; }
  .stat:nth-child(odd)::before {
    content: '';
    position: absolute;
    right: 0;
    top: 22%;
    bottom: 22%;
    width: 1px;
    background: var(--border);
  }
}

/* ============ Service icons (replace photos) ============ */
.service__icon {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(6, 182, 212, 0.08));
  border: 1px solid rgba(37, 99, 235, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform 0.4s var(--ease), border-color 0.3s var(--ease), background 0.3s var(--ease);
}

.service__icon svg {
  width: 30px;
  height: 30px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service:hover .service__icon {
  transform: scale(1.05);
  border-color: rgba(37, 99, 235, 0.35);
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.14), rgba(6, 182, 212, 0.14));
}

.services__list--icons .service { grid-template-columns: 64px 1fr; gap: 24px; }

@media (max-width: 700px) {
  .services__list--icons .service { grid-template-columns: 52px 1fr; gap: 16px; }
  .service__icon { width: 52px; height: 52px; border-radius: 12px; }
  .service__icon svg { width: 26px; height: 26px; }
}

/* ============ France coverage map ============ */
.coverage {
  margin: clamp(60px, 8vw, 120px) auto;
  padding: 0 var(--gap);
  max-width: var(--container-max);
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(40px, 5vw, 88px);
  align-items: center;
}

.coverage__copy { max-width: 460px; }

.coverage__title {
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 300;
  margin: 16px 0 24px;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.coverage__lead {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin: 0 0 32px;
}

.coverage__metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 24px;
  border-top: 1px solid var(--border);
  padding-top: 24px;
}

.coverage__metric-value {
  font-family: var(--font-mono);
  font-size: 22px;
  font-weight: 500;
  margin: 0 0 4px;
  color: var(--text-primary);
}

.coverage__metric-label {
  font-size: 11px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
  margin: 0;
}

.coverage__map {
  position: relative;
  background:
    radial-gradient(ellipse at 40% 30%, rgba(37, 99, 235, 0.10) 0%, transparent 65%),
    linear-gradient(135deg, #0B121C 0%, #060A12 100%);
  border-radius: var(--radius-lg);
  aspect-ratio: 1 / 1.1;
  padding: 32px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.coverage__map-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
  z-index: 0;
}

.coverage__map svg {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.coverage__map .map-shape {
  fill: rgba(37, 99, 235, 0.10);
  stroke: rgba(96, 165, 250, 0.45);
  stroke-width: 0.6;
}

.coverage__map .network-links line {
  stroke: rgba(96, 165, 250, 0.32);
  stroke-width: 0.35;
  stroke-linecap: round;
}

.pop-dot {
  fill: #60A5FA;
  filter: drop-shadow(0 0 4px rgba(96, 165, 250, 0.8));
  transform-box: fill-box;
  transform-origin: center;
  animation: pop-pulse 3s ease-in-out infinite;
}

.pop-dot--major {
  fill: #06B6D4;
  filter: drop-shadow(0 0 6px rgba(6, 182, 212, 0.9));
}

.pop-ring {
  fill: none;
  stroke: rgba(96, 165, 250, 0.6);
  stroke-width: 1;
  transform-box: fill-box;
  transform-origin: center;
  animation: pop-ring 3s ease-out infinite;
}

@keyframes pop-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.7; }
}

@keyframes pop-ring {
  0% { transform: scale(0.4); opacity: 0.8; }
  100% { transform: scale(2.4); opacity: 0; }
}

.coverage__city-label {
  font-family: var(--font-mono);
  font-size: 2.6px;
  fill: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.coverage__city-label--major { fill: rgba(191, 219, 254, 0.85); }

@media (max-width: 900px) {
  .coverage {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .coverage__map { aspect-ratio: 1 / 1; }
}

/* ============ Status badge (fixed) ============ */
.status-badge {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px 9px 12px;
  background: rgba(11, 18, 28, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(96, 165, 250, 0.2);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  letter-spacing: 0.3px;
  font-weight: 400;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.status-badge__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22C55E;
  position: relative;
  flex-shrink: 0;
}

.status-badge__dot::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.4);
  animation: status-ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes status-ping {
  0% { transform: scale(0.5); opacity: 0.8; }
  80%, 100% { transform: scale(1.6); opacity: 0; }
}

.status-badge__sep {
  width: 1px;
  height: 12px;
  background: rgba(255, 255, 255, 0.18);
  margin: 0 2px;
}

.status-badge__uptime {
  font-family: var(--font-mono);
  color: rgba(96, 165, 250, 0.95);
  font-size: 11px;
  font-weight: 500;
  font-feature-settings: 'tnum';
}

@media (max-width: 700px) {
  .status-badge { display: none; }
}
