/* ============================================================
   CSS VARIABLES
   ============================================================ */
:root {
  --blue-900: #001f5b;
  --blue-800: #003082;
  --blue-700: #004eb5;
  --blue-600: #0060d6;
  --blue-500: #0070f3;
  --blue-400: #3395ff;
  --blue-300: #73b8ff;
  --blue-100: #e0eeff;
  --blue-50:  #f0f6ff;
  --white:    #ffffff;
  --gray-900: #0e1117;
  --gray-800: #1c2230;
  --gray-600: #4a5568;
  --gray-400: #8b95a8;
  --gray-200: #dde3ec;
  --gray-100: #f4f7fb;
  --accent:   #00c2ff;
  --accent2:  #ff6b00;

  --font-display: 'Barlow Condensed', sans-serif;
  --font-body: 'IBM Plex Sans', sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;
  --radius: 6px;
  --shadow: 0 4px 24px rgba(0,80,200,0.1);
  --shadow-lg: 0 12px 48px rgba(0,80,200,0.18);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: var(--blue-600); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--blue-400); }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }

/* ============================================================
   NAV
   ============================================================ */
nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: 0 2px 16px rgba(0,50,180,0.07);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo-icon {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--blue-700), var(--accent));
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.nav-logo-icon svg { width: 20px; height: 20px; }
.nav-logo-text {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: var(--blue-900);
}
.nav-logo-text span { color: var(--blue-500); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-600);
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: background 0.2s, color 0.2s;
}
.nav-links a:hover { background: var(--blue-50); color: var(--blue-700); }
.nav-links .nav-cta {
  background: var(--blue-600);
  color: var(--white);
  margin-left: 8px;
  padding: 8px 18px;
}
.nav-links .nav-cta:hover { background: var(--blue-700); color: var(--white); }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.hamburger span { width: 24px; height: 2px; background: var(--gray-800); border-radius: 2px; transition: all 0.3s; }
.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 16px 24px 24px;
  border-top: 1px solid var(--gray-200);
  gap: 4px;
}
.mobile-menu a {
  font-size: 15px; font-weight: 500; color: var(--gray-600);
  padding: 10px 12px; border-radius: var(--radius);
  display: block;
}
.mobile-menu a:hover { background: var(--blue-50); color: var(--blue-700); }
.mobile-menu.open { display: flex; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: var(--blue-900);
  border-bottom: 4px solid var(--blue-600);
  padding: 72px 0 80px;
  color: var(--white);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero-eyebrow::before {
  content: '';
  width: 36px; height: 2px;
  background: var(--accent);
  border-radius: 2px;
  flex-shrink: 0;
}
h1.hero-title {
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.3px;
  margin-bottom: 20px;
  color: var(--white);
}
h1.hero-title .highlight { color: var(--accent); }
.hero-desc {
  font-size: 17px;
  color: rgba(255,255,255,0.72);
  max-width: 560px;
  margin-bottom: 36px;
  line-height: 1.75;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.btn-primary {
  background: var(--blue-500);
  color: var(--white);
  font-weight: 600;
  font-size: 15px;
  padding: 13px 26px;
  border-radius: var(--radius);
  border: 2px solid var(--blue-500);
  cursor: pointer;
  transition: all 0.2s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary:hover { background: var(--blue-400); border-color: var(--blue-400); color: var(--white); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,112,243,0.35); }
.btn-outline-white {
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: 15px;
  padding: 13px 26px;
  border-radius: var(--radius);
  border: 2px solid rgba(255,255,255,0.3);
  cursor: pointer;
  transition: all 0.2s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-outline-white:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.55); color: var(--white); }

/* Hero stats sidebar */
.hero-stats-aside {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-left: 1px solid rgba(255,255,255,0.12);
  padding-left: 48px;
  min-width: 200px;
}
.hero-stat-item {
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.hero-stat-item:last-child { border-bottom: none; }
.hero-stat-value {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.hero-stat-value span { color: var(--accent); font-size: 22px; }
.hero-stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
  letter-spacing: 1px;
}

@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-stats-aside {
    flex-direction: row;
    flex-wrap: wrap;
    border: none;
    border-top: 1px solid rgba(255,255,255,0.12);
    padding-left: 0;
    padding-top: 32px;
    gap: 0;
  }
  .hero-stat-item {
    flex: 1 1 130px;
    border: none;
    padding: 0 24px 0 0;
    margin-right: 0px;
  }
}

/* ============================================================
   TICKER / MARQUEE
   ============================================================ */
.ticker-bar {
  background: var(--blue-800);
  color: rgba(255,255,255,0.75);
  font-family: var(--font-mono);
  font-size: 12px;
  overflow: hidden;
  padding: 10px 0;
  white-space: nowrap;
}
.ticker-inner {
  display: inline-block;
  animation: ticker 40s linear infinite;
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-right: 48px;
}
.ticker-item::before { content: '▶'; color: var(--accent); font-size: 9px; }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ============================================================
   LOGOS STRIP
   ============================================================ */
.logos-strip {
  background: var(--gray-100);
  padding: 28px 0;
  border-bottom: 1px solid var(--gray-200);
  overflow: hidden;
}
.logos-inner {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.logos-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  white-space: nowrap;
}
.logos-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.logo-pill {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-600);
  background: var(--white);
  border: 1px solid var(--gray-200);
  padding: 7px 14px;
  border-radius: 100px;
  letter-spacing: 0.5px;
  transition: all 0.2s;
  white-space: nowrap;
}
.logo-pill:hover { color: var(--blue-700); border-color: var(--blue-300); background: var(--blue-50); }

/* ============================================================
   SECTION HEADINGS
   ============================================================ */
.section-label {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue-600);
  margin-bottom: 12px;
}
h2.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--blue-900);
  margin-bottom: 18px;
}
.section-desc {
  font-size: 17px;
  color: var(--gray-600);
  max-width: 600px;
  line-height: 1.7;
}

/* ============================================================
   FEATURES GRID
   ============================================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 56px;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  padding: 32px;
  transition: box-shadow 0.25s, border-color 0.25s, transform 0.25s;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-600), var(--accent));
  opacity: 0;
  transition: opacity 0.25s;
}
.feature-card:hover { box-shadow: var(--shadow-lg); border-color: var(--blue-300); transform: translateY(-4px); }
.feature-card:hover::before { opacity: 1; }
.feature-icon {
  width: 52px; height: 52px;
  background: var(--blue-50);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  color: var(--blue-600);
}
.feature-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--blue-900);
  margin-bottom: 10px;
}
.feature-card p {
  font-size: 14.5px;
  color: var(--gray-600);
  line-height: 1.65;
}

/* ============================================================
   STATS BAND
   ============================================================ */
.stats-band {
  background: linear-gradient(135deg, var(--blue-900) 0%, var(--blue-700) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.stats-band::after {
  content: '';
  position: absolute;
  right: -100px; top: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(0,194,255,0.08);
  pointer-events: none;
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 48px;
  text-align: center;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 800;
  line-height: 1;
  color: var(--white);
}
.stat-num sup { font-size: 28px; color: var(--accent); }
.stat-label { font-size: 14px; color: rgba(255,255,255,0.65); margin-top: 8px; text-transform: uppercase; letter-spacing: 1px; }
.stat-divider { width: 40px; height: 3px; background: var(--accent); margin: 10px auto 0; border-radius: 2px; }

/* ============================================================
   SERVICES / SOLUTIONS
   ============================================================ */
.solutions-section { background: var(--gray-100); }
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 28px;
  margin-top: 56px;
}
.solution-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow 0.25s, transform 0.25s;
}
.solution-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.solution-header {
  background: linear-gradient(135deg, var(--blue-800), var(--blue-600));
  padding: 28px 28px 24px;
  position: relative;
  overflow: hidden;
}
.solution-header::after {
  content: '';
  position: absolute;
  right: -30px; bottom: -30px;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
}
.solution-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.solution-header h3 { font-size: 22px; font-weight: 700; color: var(--white); }
.solution-body { padding: 28px; }
.solution-body ul { display: flex; flex-direction: column; gap: 10px; }
.solution-body ul li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14.5px; color: var(--gray-600);
}
.solution-body ul li::before {
  content: '';
  flex-shrink: 0;
  width: 18px; height: 18px; margin-top: 2px;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='10' cy='10' r='10' fill='%230060d6'/%3E%3Cpath d='M6 10l3 3 5-5' stroke='white' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
}
.solution-footer {
  padding: 0 28px 28px;
}
.solution-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--blue-600);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}
.solution-link:hover { gap: 10px; color: var(--blue-700); }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 16px;
}
.how-steps { display: flex; flex-direction: column; gap: 0; }
.how-step {
  display: flex;
  gap: 20px;
  position: relative;
  padding-bottom: 40px;
}
.how-step:last-child { padding-bottom: 0; }
.how-step:last-child .step-line { display: none; }
.step-num-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}
.step-num {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--blue-600);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
.step-line {
  width: 2px;
  flex: 1;
  background: linear-gradient(to bottom, var(--blue-300), transparent);
  margin-top: 6px;
}
.step-content h3 { font-size: 18px; font-weight: 700; color: var(--blue-900); margin-bottom: 8px; }
.step-content p { font-size: 14.5px; color: var(--gray-600); line-height: 1.65; }
.how-visual {
  background: linear-gradient(160deg, var(--blue-50), var(--blue-100));
  border-radius: 16px;
  border: 1px solid var(--blue-200, #b3d4ff);
  padding: 40px;
  position: relative;
  overflow: hidden;
}
.topology-svg { width: 100%; }

/* ============================================================
   NETWORK MAP SECTION
   ============================================================ */
.map-section { background: var(--blue-900); color: var(--white); }
.map-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}
.map-visual {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(0,50,150,0.4);
  border: 1px solid rgba(0,194,255,0.2);
  padding: 6px;
}
.world-map-svg { width: 100%; opacity: 0.8; }
.map-dot {
  position: absolute;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1;} 50%{opacity:0.3;} }
.map-content .section-label { color: var(--accent); }
.map-content h2 { color: var(--white); }
.map-content .section-desc { color: rgba(255,255,255,0.7); }
.presence-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 16px;
  margin-top: 28px;
}
.presence-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 10px 14px;
  line-height: 1.35;
}
.presence-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  box-shadow: 0 0 6px var(--accent);
}

/* ============================================================
   PEERING SECTION
   ============================================================ */
.peering-section { background: var(--white); }
.peering-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.peering-visual { order: 1; }
.peering-content { order: 2; }
.peering-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  margin-top: 32px;
  box-shadow: var(--shadow);
  border-radius: 10px;
  overflow: hidden;
}
.peering-table th {
  background: var(--blue-800);
  color: var(--white);
  padding: 14px 18px;
  text-align: left;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.peering-table td {
  padding: 13px 18px;
  color: var(--gray-600);
  border-bottom: 1px solid var(--gray-200);
}
.peering-table tr:last-child td { border-bottom: none; }
.peering-table tr:nth-child(even) td { background: var(--gray-100); }
.badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  font-family: var(--font-mono);
}
.badge-green { background: #d1fadf; color: #0a7d3e; }
.badge-blue { background: var(--blue-100); color: var(--blue-700); }
.badge-orange { background: #fff0e0; color: #b35800; }

/* ============================================================
   ACTIVE NODES SECTION
   ============================================================ */
.nodes-section { background: var(--gray-100); }
.nodes-intro {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 48px;
}
.nodes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}
.node-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.22s, border-color 0.22s, transform 0.22s;
  position: relative;
  overflow: hidden;
}
.node-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--blue-500);
  border-radius: 3px 0 0 3px;
}
.node-card.status-expanding::before { background: var(--accent2, #ff6b00); }
.node-card.status-managed::before  { background: var(--blue-300); }
.node-card:hover { box-shadow: var(--shadow); border-color: var(--blue-300); transform: translateY(-3px); }
.node-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
}
.node-name {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--blue-900);
  line-height: 1.2;
}
.node-city {
  font-size: 12px;
  color: var(--gray-400);
  margin-top: 2px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.node-city::before {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  box-shadow: 0 0 5px var(--accent);
}
.node-stats {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  border-top: 1px solid var(--gray-200);
  padding-top: 12px;
}
.node-stat-val {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 800;
  color: var(--blue-700);
  line-height: 1;
}
.node-stat-key {
  font-size: 10px;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-top: 3px;
}
.node-region-tag {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  color: var(--blue-600);
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 0.5px;
  white-space: nowrap;
}
.nodes-summary {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  margin-top: 40px;
  background: var(--blue-900);
  border-radius: 12px;
  padding: 32px;
}
.nodes-summary-item { text-align: center; }
.nodes-summary-val {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.nodes-summary-val span { color: var(--accent); font-size: 20px; }
.nodes-summary-key {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 6px;
}

/* ============================================================
   TECHNOLOGY STACK
   ============================================================ */
.tech-section { background: var(--gray-100); }
.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 56px;
}
.tech-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  padding: 24px;
  text-align: center;
  transition: all 0.25s;
}
.tech-card:hover { border-color: var(--blue-300); box-shadow: var(--shadow); transform: translateY(-3px); }
.tech-icon-wrap {
  width: 56px; height: 56px;
  margin: 0 auto 16px;
  background: var(--blue-50);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue-600);
}
.tech-card h4 { font-size: 15px; font-weight: 700; color: var(--blue-900); margin-bottom: 6px; }
.tech-card p { font-size: 13px; color: var(--gray-600); line-height: 1.5; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section { background: var(--blue-50); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 56px;
}
.testimonial-card {
  background: var(--white);
  border-radius: 10px;
  padding: 32px;
  box-shadow: var(--shadow);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px; right: 24px;
  font-size: 80px;
  line-height: 1;
  font-family: Georgia, serif;
  color: var(--blue-100);
}
.testimonial-text {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author {
  display: flex; align-items: center; gap: 14px;
}
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-700), var(--accent));
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  flex-shrink: 0;
}
.author-name { font-weight: 700; font-size: 15px; color: var(--blue-900); }
.author-title { font-size: 12px; color: var(--gray-400); }

/* ============================================================
   COMPLIANCE / STANDARDS
   ============================================================ */
.compliance-section { background: var(--white); }
.compliance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
  margin-top: 48px;
}
.compliance-badge {
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  padding: 24px 20px;
  text-align: center;
  transition: all 0.2s;
}
.compliance-badge:hover { background: var(--blue-50); border-color: var(--blue-300); }
.compliance-badge-label {
  font-family: var(--font-mono);
  font-size: 16px;
  font-weight: 700;
  color: var(--blue-700);
  margin-bottom: 6px;
}
.compliance-badge-desc { font-size: 12px; color: var(--gray-600); }



/* ============================================================
   BLOG / RESOURCES
   ============================================================ */
.blog-section { background: var(--white); }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-top: 56px;
}
.blog-card {
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.25s;
}
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.blog-img {
  height: 180px;
  background: linear-gradient(135deg, var(--blue-700), var(--blue-500));
  position: relative;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.blog-img .blog-icon { color: rgba(255,255,255,0.25); }
.blog-img-2 { background: linear-gradient(135deg, #003566, var(--accent)); }
.blog-img-3 { background: linear-gradient(135deg, var(--blue-900), #0a3fa8); }
.blog-meta {
  display: flex; align-items: center; gap: 10px;
  padding: 16px 20px 0;
}
.blog-cat {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  color: var(--blue-600);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.blog-date { font-size: 12px; color: var(--gray-400); }
.blog-body { padding: 12px 20px 20px; }
.blog-body h3 { font-size: 17px; font-weight: 700; color: var(--blue-900); margin-bottom: 8px; line-height: 1.4; }
.blog-body p { font-size: 13.5px; color: var(--gray-600); line-height: 1.6; }
.blog-footer { padding: 0 20px 20px; }
.blog-read-more { font-size: 13px; font-weight: 600; color: var(--blue-600); display: inline-flex; align-items: center; gap: 4px; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--blue-900) 0%, var(--blue-700) 100%);
  color: var(--white);
  text-align: center;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,194,255,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}
.cta-banner p {
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  max-width: 540px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--gray-900);
  color: rgba(255,255,255,0.75);
}
.footer-main {
  padding: 72px 0 48px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-brand .nav-logo-text { font-size: 20px; }
.footer-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-top: 14px;
  margin-bottom: 24px;
}
.footer-socials { display: flex; gap: 12px; }
.social-btn {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
  color: rgba(255,255,255,0.6);
}
.social-btn:hover { background: var(--blue-600); color: var(--white); }
.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 13.5px; color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}
.footer-bottom a { color: rgba(255,255,255,0.4); }
.footer-bottom a:hover { color: rgba(255,255,255,0.75); }
.footer-bottom-links { display: flex; gap: 20px; }

/* ============================================================
   UTILITY
   ============================================================ */
.text-center { text-align: center; }
.text-center .section-desc { margin-left: auto; margin-right: auto; }
.mt-2 { margin-top: 8px; }
.mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 24px; }
.mt-8 { margin-top: 32px; }
.arrow-right::after { content: ' →'; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.mobile-br { display: none; }
/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .mobile-br { display: none; }
  .how-grid, .map-grid, .peering-grid { grid-template-columns: 1fr; gap: 48px; }
  .how-visual { display: none; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }

  /* Map: stack content above visual */
  .map-grid { grid-template-columns: 1fr; }
  .map-content { order: -1; }
  .map-visual { max-height: 340px; }
  .world-map-svg { max-height: 280px; object-fit: contain; }
  .presence-list { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .mobile-br { display: block; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .section { padding: 56px 0; }
  .hero { padding: 56px 0 64px; }
  .stats-row { gap: 32px; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: span 2; }
  .peering-table { font-size: 12px; }
  .peering-table th, .peering-table td { padding: 10px 12px; }
  .solutions-grid { grid-template-columns: 1fr; }

  /* ---- LOGOS STRIP: mobile ---- */
  .logos-strip { padding: 20px 0; }
  .logos-inner { gap: 12px; }
  .logos-row {
    display: grid;
    grid-template-columns: repeat(4, auto);
    justify-content: start;
    gap: 8px;
  }
  .logo-pill { font-size: 11px; padding: 6px 12px; }

  /* ---- MAP SECTION: mobile ---- */
  .map-section { padding: 56px 0; }
  .map-visual { display: none; }
  .map-content h2 { font-size: 30px; }
  .map-content .section-desc { font-size: 15px; }
  .presence-list {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 20px;
  }
  .presence-item {
    font-size: 13px;
    padding: 9px 12px;
    gap: 8px;
  }
  .map-content .mt-8 { margin-top: 24px; }

  /* ---- ACTIVE NODES: mobile ---- */
  .nodes-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .nodes-intro { flex-direction: column; align-items: flex-start; gap: 16px; }
  .nodes-summary { grid-template-columns: 1fr 1fr; gap: 20px; padding: 24px; }
}

@media (max-width: 480px) {
  .mobile-br { display: block; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom-links { flex-wrap: wrap; justify-content: center; gap: 12px; }
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-outline-white { width: 100%; justify-content: center; }
  .testimonials-grid { grid-template-columns: 1fr; }

  /* ---- LOGOS STRIP: extra small ---- */
  .logos-row { grid-template-columns: repeat(4, auto); }

  /* ---- MAP SECTION: extra small ---- */
  .presence-list { grid-template-columns: 1fr; gap: 7px; }

  /* ---- ACTIVE NODES: extra small ---- */
  .nodes-grid { grid-template-columns: 1fr; }
  .nodes-summary { grid-template-columns: 1fr 1fr; padding: 20px; }
  .nodes-summary-val { font-size: 28px; }
}