:root {
  --bg-1: #06111f;
  --bg-2: #0b1830;
  --card: rgba(10, 20, 38, 0.7);
  --card-2: rgba(255, 255, 255, 0.04);
  --text: #eef6ff;
  --muted: #9bb3c9;
  --line: rgba(255, 255, 255, 0.08);
  --blue: #1ea0ff;
  --blue-2: #2d6dff;
  --green: #67ff87;
  --shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Inter", sans-serif;
  background:
    radial-gradient(circle at top right, rgba(30, 160, 255, 0.14), transparent 28%),
    radial-gradient(circle at left bottom, rgba(103, 255, 135, 0.1), transparent 28%),
    linear-gradient(180deg, var(--bg-1), var(--bg-2));
  min-height: 100vh;
  overflow-x: hidden;
}

.bg-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

.orb-1 {
  width: 240px;
  height: 240px;
  background: rgba(30, 160, 255, 0.2);
  top: -60px;
  right: -30px;
}

.orb-2 {
  width: 260px;
  height: 260px;
  background: rgba(103, 255, 135, 0.12);
  bottom: -100px;
  left: -60px;
}

.page-shell {
  width: min(1180px, 92%);
  margin: 0 auto;
  padding: 24px 0 40px;
  position: relative;
  z-index: 1;
}

.glass {
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  border-radius: var(--radius-xl);
}

.brand-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-logo {
  width: 70px;
  height: 70px;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(30, 160, 255, 0.2));
}

.brand-title {
  margin: 0;
  font-size: clamp(1.4rem, 2vw, 2rem);
  line-height: 1.05;
}

.brand-sub {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.topbar-badge {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(30, 160, 255, 0.12);
  border: 1px solid rgba(30, 160, 255, 0.22);
  color: #cde7ff;
  font-weight: 700;
  font-size: 0.92rem;
  white-space: nowrap;
}

.hero-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 22px;
}

.hero-left,
.hero-right,
.map-panel {
  border-radius: var(--radius-xl);
}

.hero-left {
  padding: 22px;
}

.mascot-wrap {
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.05);
}

.mascot {
  display: block;
  width: 100%;
  max-width: 280px;
  margin: 0 auto;
  filter: drop-shadow(0 16px 28px rgba(0, 0, 0, 0.25));
}

.quick-info {
  margin-top: 18px;
  display: grid;
  gap: 12px;
}

.mini-card {
  padding: 14px 16px;
  border-radius: var(--radius-md);
  background: var(--card-2);
  border: 1px solid rgba(255,255,255,0.05);
}

.mini-label {
  display: block;
  color: var(--muted);
  font-size: 0.83rem;
  margin-bottom: 6px;
}

.mini-value {
  font-size: 0.98rem;
  font-weight: 700;
}

.online {
  color: var(--green);
}

.hero-right {
  padding: 24px;
}

.eyebrow {
  margin: 0 0 10px;
  color: #9fd9ff;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.hero-right h2,
.panel-title {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.08;
}

.hero-text {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.7;
  max-width: 760px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 50px;
  padding: 0 18px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(90deg, var(--blue), var(--blue-2));
  box-shadow: 0 12px 28px rgba(30, 160, 255, 0.28);
}

.btn-secondary {
  color: #fff;
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.08);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.stat-card {
  padding: 16px;
  border-radius: 18px;
  background: var(--card-2);
  border: 1px solid rgba(255,255,255,0.05);
}

.stat-label {
  display: block;
  color: var(--muted);
  font-size: 0.85rem;
  margin-bottom: 8px;
}

.stat-value {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--green);
}

.service-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.service-card {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px;
  border-radius: 18px;
  background: var(--card-2);
  border: 1px solid rgba(255,255,255,0.05);
}

.service-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(30, 160, 255, 0.12);
  border: 1px solid rgba(30, 160, 255, 0.2);
  font-size: 1.15rem;
}

.service-card h3 {
  margin: 2px 0 6px;
  font-size: 1rem;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
  font-size: 0.93rem;
}

.map-panel {
  margin-top: 22px;
  padding: 22px;
}

.panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.panel-chip {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(103, 255, 135, 0.08);
  border: 1px solid rgba(103, 255, 135, 0.18);
  color: #d4ffe0;
  font-weight: 700;
  font-size: 0.9rem;
  white-space: nowrap;
}

#map {
  width: 100%;
  height: 380px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.02);
}

.coverage-list {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.coverage-item {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  color: #d9e8f6;
  font-weight: 600;
  font-size: 0.92rem;
}

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-left {
    order: 2;
  }

  .hero-right {
    order: 1;
  }
}

@media (max-width: 720px) {
  .page-shell {
    width: min(94%, 94%);
    padding-top: 16px;
  }

  .topbar,
  .panel-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .stats-grid,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .brand-logo {
    width: 58px;
    height: 58px;
  }

  #map {
    height: 300px;
  }

  .btn {
    width: 100%;
  }

  .cta-row {
    flex-direction: column;
  }
}