@import url('https://fonts.googleapis.com/css2?family=Goldman:wght@400;700&family=Google+Sans:ital,opsz,wght@0,17..18,400..700;1,17..18,400..700&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue:       #2563EB;
  --blue-dark:  #1d4ed8;
  --blue-muted: #DCE7FF;
  --dark:       #111827;
  --dark-2:     #1a2435;
  --dark-3:     #0b1220;
  --mid:        #6B7280;
  --light:      #F9FAFB;
  --white:      #ffffff;
  --border:     rgba(17,24,39,0.08);
  --border-mid: rgba(17,24,39,0.12);
  --font-display: 'Google Sans', sans-serif;
  --font-body:    'Roboto', sans-serif;
  --site-max:     1200px;
  --site-gutter:  max(32px, calc((100vw - var(--site-max)) / 2));
}

.main {
  position: relative !important;
  overflow-x: hidden !important;
  overflow-y: auto !important;
  height: auto !important;
  min-height: 100vh;
  -webkit-overflow-scrolling: touch;
}

.menu {
  position: fixed !important;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── HEADER ── */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 100px;
  padding: 0 var(--site-gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(17,24,39,0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  border-top: 3px solid var(--blue);
}

.logo-wordmark {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  letter-spacing: .02em;
}
.logo-wordmark span { color: var(--blue); }

.header-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.header-nav a {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color .2s;
}
.header-nav a:hover { color: #fff; }
.nav-cta {
  font-family: var(--font-display);
  background: var(--blue) !important;
  color: #fff !important;
  padding: 0 20px;
  height: 40px;
  display: inline-flex !important;
  align-items: center;
  transition: background .2s !important;
}
.nav-cta:hover { background: var(--blue-dark) !important; }

/* ── HERO ── */
.hero {
  position: relative;
  padding-top: 100px;
  height: 320px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, var(--dark-3) 0%, var(--dark-2) 60%, #0f2040 100%);
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 39px,
    rgba(37,99,235,0.06) 39px,
    rgba(37,99,235,0.06) 40px
  ),
  repeating-linear-gradient(
    90deg,
    transparent,
    transparent 39px,
    rgba(37,99,235,0.06) 39px,
    rgba(37,99,235,0.06) 40px
  );
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(1200px, calc(100% - 64px));
  margin: 0 auto;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}

.hero-heading {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 700;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 14px;
}
.hero-heading em {
  font-style: normal;
  color: var(--blue);
}

.hero-sub {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255,255,255,0.6);
  max-width: 520px;
  margin-bottom: 20px;
}

.hero-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.badge {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .06em;
  padding: 6px 14px;
  background: rgba(37,99,235,0.15);
  border: 1px solid rgba(37,99,235,0.4);
  color: var(--blue-muted);
}

/* ── MAP + SIDEBAR ── */
.map-section {
  display: grid;
  grid-template-columns: 400px 1fr;
  height: calc(100vh - 320px);
  min-height: 560px;
}

/* SIDEBAR */
.sidebar {
  background: var(--white);
  color: var(--dark);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  border-right: 1px solid var(--border-mid);
}

.sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px 16px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.sidebar-label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--blue);
}
.sidebar-count {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--mid);
  letter-spacing: .06em;
}

/* Area cards */
.area-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.area-card {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: background .2s;
  border-left: 3px solid transparent;
}
.area-card:hover { background: var(--light); }
.area-card.active {
  border-left-color: var(--blue);
  background: #f0f5ff;
}

.area-card-top {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 10px;
}

.area-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--mid);
  margin-top: 5px;
  flex-shrink: 0;
  transition: background .2s;
}
.area-card.active .area-dot { background: var(--blue); }

.area-name {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
}
.area-state {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--mid);
  margin-top: 2px;
  letter-spacing: .04em;
}

.area-tag {
  margin-left: auto;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 3px 10px;
  background: rgba(37,99,235,0.1);
  color: var(--blue);
  border: 1px solid rgba(37,99,235,0.25);
  flex-shrink: 0;
}

.area-desc {
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.6;
  color: #4B5563;
  margin-bottom: 14px;
  padding-left: 22px;
}
.area-link {
  color: var(--blue);
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}
.area-link:hover {
  color: var(--dark);
}

.area-stats {
  display: flex;
  gap: 0;
  padding-left: 22px;
}
.stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 8px 0;
  border-right: 1px solid var(--border);
}
.stat:last-child { border-right: none; }
.stat-val {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
}
.stat-lbl {
  font-family: var(--font-body);
  font-size: 10px;
  color: var(--mid);
  margin-top: 2px;
  letter-spacing: .06em;
}

/* Sidebar CTA */
.sidebar-cta {
  margin-top: auto;
  padding: 20px 24px 24px;
  border-top: 1px solid var(--border);
  flex-shrink: 0;
}
.sidebar-cta-text {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--mid);
  margin-bottom: 12px;
}
.btn-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  background: var(--blue);
  color: #fff;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
  text-decoration: none;
  transition: background .2s;
  margin-bottom: 8px;
}
.btn-primary:hover { background: var(--blue-dark); }
.btn-ghost {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  background: none;
  border: 1px solid var(--border-mid);
  color: var(--mid);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: border-color .2s, color .2s;
}
.btn-ghost:hover { border-color: var(--blue); color: var(--blue); }

/* MAP */
.map-wrap {
  position: relative;
}
#map {
  width: 100%;
  height: 100%;
}

.map-overlay-label {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 10;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  background: rgba(11,18,32,0.82);
  backdrop-filter: blur(8px);
  padding: 8px 14px;
  border: 1px solid rgba(255,255,255,0.1);
  border-left: 2px solid var(--blue);
}

/* ── COVERAGE STRIP ── */
.coverage-strip {
  background: var(--dark-3);
  border-top: 1px solid rgba(255,255,255,0.07);
}
.coverage-inner {
  display: flex;
  align-items: stretch;
  max-width: 1200px;
  margin: 0 auto;
}
.coverage-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 28px 32px;
}
.coverage-item svg {
  width: 24px;
  height: 24px;
  stroke: var(--blue);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.coverage-item strong {
  font-family: var(--font-display);
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 3px;
}
.coverage-item span {
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(255,255,255,0.45);
}
.coverage-divider {
  width: 1px;
  background: rgba(255,255,255,0.07);
  align-self: stretch;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .map-section {
    grid-template-columns: 1fr;
    grid-template-rows: auto 400px;
    height: auto;
  }
  .sidebar {
    border-right: none;
    border-bottom: 1px solid var(--border-mid);
    max-height: none;
  }
  .coverage-inner { flex-direction: column; }
  .coverage-divider { width: 100%; height: 1px; }
  .coverage-item { padding: 20px 24px; }
}

@media (max-width: 600px) {
  :root { --site-gutter: 20px; }
  .hero { height: auto; padding: 140px 0 40px; }
  .hero-inner { width: calc(100% - 40px); }
  header { padding: 0 var(--site-gutter); }
  .header-nav a:not(.nav-cta) { display: none; }
}
