@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500;600;700&family=Source+Sans+3:wght@400;500;600&display=swap');

:root {
  --navy: #07101f;
  --midnight: #0c1326;
  --charcoal: #0c1224;
  --ink: #0f172a;
  --accent: #2dd4bf;
  --accent-2: #32d7ff;
  --muted: #94a3b8;
  --card: #0b1533;
  --panel: rgba(255, 255, 255, 0.05);
  --bg: #07101f;
  --border: rgba(255, 255, 255, 0.08);
  --shadow: 0 24px 60px rgba(15, 23, 42, 0.18);
  --radius: 16px;
  --page-max: 1280px;
  --page-padding: 32px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Source Sans 3', 'Open Sans', system-ui, -apple-system, sans-serif;
  color: #e5e7eb;
  background:
    radial-gradient(circle at 18% 22%, rgba(49, 197, 255, 0.18), transparent 32%),
    radial-gradient(circle at 78% 12%, rgba(45, 212, 191, 0.16), transparent 30%),
    linear-gradient(180deg, #06101e 0%, #08172d 40%, #060e1a 100%);
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

.page {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 0 var(--page-padding) 88px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: linear-gradient(90deg, rgba(5, 12, 26, 0.92), rgba(7, 17, 35, 0.92));
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}

.topbar-inner {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 14px var(--page-padding);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: #e5e7eb;
  letter-spacing: 0.4px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 14px 30px rgba(10, 20, 40, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.nav {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav a {
  padding: 11px 14px;
  border-radius: 12px;
  color: #dbeafe;
  font-weight: 700;
  font-size: 14px;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.nav a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-1px);
}

.nav a.active {
  color: #062032;
  background: linear-gradient(135deg, #2fe0ff, #0ec4ef);
  box-shadow: 0 14px 34px rgba(16, 198, 241, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-toggle {
  display: none;
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 18px;
  border-radius: 14px;
  border: none;
  background: linear-gradient(135deg, #2fe0ff, #0ec4ef);
  color: #062032;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 20px 42px rgba(16, 198, 241, 0.38);
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.btn.secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #e5e7eb;
  box-shadow: none;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(56, 189, 248, 0.45);
}

.btn.secondary:hover {
  opacity: 0.92;
}

.hero {
  position: relative;
  padding: 100px 0 48px;
  overflow: visible;
  border-radius: 0;
  background:
    radial-gradient(circle at 22% 18%, rgba(49, 197, 255, 0.2), transparent 34%),
    radial-gradient(circle at 86% 8%, rgba(45, 212, 191, 0.14), transparent 30%),
    linear-gradient(135deg, #0b213c 0%, #081427 50%, #07101f 100%);
  border: none;
  box-shadow: none;
  margin-top: 0;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 40% 20%, rgba(45, 212, 191, 0.09), transparent 32%),
    radial-gradient(circle at 70% 10%, rgba(56, 189, 248, 0.08), transparent 30%),
    linear-gradient(135deg, rgba(14, 165, 233, 0.14), rgba(14, 165, 233, 0));
  pointer-events: none;
  z-index: 0;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 36px;
  align-items: center;
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 0 var(--page-padding);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(56, 189, 248, 0.12);
  color: #7dd3fc;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 12px;
}

.hero h1,
.page-title {
  font-family: 'Poppins', 'Inter', 'Source Sans 3', sans-serif;
  margin: 12px 0;
  font-size: clamp(36px, 5.6vw, 52px);
  color: #fff;
  line-height: 1.05;
  letter-spacing: -0.02em;
  max-width: 820px;
  font-weight: 800;
}

.hero p.lead,
.lead {
  max-width: 720px;
  color: #cbd5e1;
  font-size: 18px;
  margin: 0 0 18px;
}

.highlight {
  background: linear-gradient(120deg, #2fe0ff, #0ec4ef, #26e0c6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #2fe0ff;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 10px;
}

.meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  color: #e2e8f0;
  font-size: 14px;
}

.meta .dot {
  width: 8px;
  height: 8px;
  background: linear-gradient(135deg, #38bdf8, #2dd4bf);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(56, 189, 248, 0.08);
}

.section {
  margin-top: 72px;
}

.section-header {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 12px;
  justify-content: space-between;
  margin-bottom: 18px;
}

.section-title {
  font-family: 'Poppins', 'Inter', sans-serif;
  font-size: 24px;
  color: #e2e8f0;
  margin: 0;
}

.section-kicker {
  color: #7dd3fc;
  font-weight: 700;
  letter-spacing: 0.04em;
  font-size: 12px;
  text-transform: uppercase;
}

.grid {
  display: grid;
  gap: 16px;
}

.grid.two {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.grid.three {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.grid.four {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.card {
  background: linear-gradient(180deg, rgba(12, 19, 42, 0.95), rgba(10, 16, 32, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 20px 22px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(6, 12, 24, 0.45);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 0%, rgba(56, 189, 248, 0.14), transparent 32%);
  pointer-events: none;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(56, 189, 248, 0.3);
  box-shadow: 0 24px 48px rgba(7, 12, 26, 0.55);
}

.card h3 {
  margin: 0 0 10px;
  color: #f8fafc;
  font-size: 20px;
}

.card p {
  color: #cbd5e1;
  margin: 0 0 12px;
}

.list {
  list-style: none;
  padding: 0;
  margin: 0;
  color: #cbd5e1;
}

.list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 6px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.05);
}

.list li:last-child {
  border-bottom: none;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: #cbd5e1;
  font-size: 12px;
}

.pill {
  display: inline-block;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #e2e8f0;
  font-weight: 700;
  font-size: 12px;
}

.stat {
  display: flex;
  align-items: baseline;
  gap: 8px;
  color: #e2e8f0;
  font-weight: 700;
  font-size: 22px;
}

.stat small {
  color: #94a3b8;
  font-size: 13px;
  font-weight: 600;
}

.callout {
  background: linear-gradient(120deg, rgba(56, 189, 248, 0.12), rgba(45, 212, 191, 0.09));
  border: 1px solid rgba(56, 189, 248, 0.25);
  padding: 16px;
  border-radius: var(--radius);
  color: #e2e8f0;
}

.cta {
  margin-top: 48px;
  padding: 30px;
  background: linear-gradient(135deg, #0fc5ef, #13dec1);
  border-radius: 18px;
  color: #0b1533;
  position: relative;
  overflow: hidden;
}

.cta::after {
  content: '';
  position: absolute;
  width: 240px;
  height: 240px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  top: -60px;
  right: -60px;
  filter: blur(30px);
}

.cta h3 {
  margin: 0 0 8px;
  font-size: 24px;
}

.cta p {
  margin: 0 0 12px;
  color: #0b1533;
}

.feature-set {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px;
}

.feature-item {
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  color: #e2e8f0;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.layout {
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  align-items: start;
}

.panel {
  padding: 18px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

form {
  display: grid;
  gap: 12px;
}

label {
  font-weight: 600;
  color: #e2e8f0;
  font-size: 14px;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 12px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: #e5e7eb;
  font-size: 15px;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(56, 189, 248, 0.4);
  border-color: rgba(56, 189, 248, 0.35);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

.form-status {
  font-size: 14px;
  color: #a5f3fc;
}

.footer {
  margin-top: 72px;
  padding: 0;
  background: linear-gradient(180deg, rgba(5, 11, 22, 0.98), rgba(7, 14, 28, 0.98));
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #a9b5c9;
}

.footer-inner {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 48px var(--page-padding) 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 24px;
}

.footer-brand .brand {
  margin-bottom: 12px;
}

.footer-brand .brand-mark {
  width: 38px;
  height: 38px;
}

.footer-text {
  margin: 0 0 16px;
  color: #c1ccdd;
  max-width: 380px;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-badges .badge {
  background: rgba(255, 255, 255, 0.08);
  color: #e2e8f0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-weight: 700;
}

.footer-col h4 {
  margin: 0 0 12px;
  color: #f8fafc;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
  color: #a9b5c9;
  font-size: 14px;
}

.footer-list a {
  color: #dbeafe;
}

.footer-list a:hover {
  color: #2fe0ff;
}

.footer-legal {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  color: #8fa2bf;
  font-size: 13px;
}

.footer-legal .legal-links {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #9fb1cc;
}

.tag-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.glass {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 16px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 999px;
  color: #cbd5e1;
  font-size: 13px;
}

.table {
  width: 100%;
  border-collapse: collapse;
  color: #e5e7eb;
}

.table th,
.table td {
  padding: 10px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  text-align: left;
}

.table th {
  color: #cbd5e1;
  font-size: 13px;
}

.kpi {
  display: grid;
  gap: 6px;
}

.kpi strong {
  font-size: 20px;
  color: #f1f5f9;
}

.map-embed {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #94a3b8;
  font-size: 14px;
}

.breadcrumb a {
  color: #7dd3fc;
}

.divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
  margin: 16px 0;
}

.hero-panel {
  position: relative;
  padding: 22px;
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(20, 35, 60, 0.9), rgba(15, 30, 52, 0.95));
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 24px 48px rgba(8, 14, 28, 0.55);
  overflow: hidden;
}

.hero-panel::before {
  content: '';
  position: absolute;
  width: 180px;
  height: 180px;
  top: -60px;
  right: -40px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.2), transparent 65%);
  filter: blur(6px);
}

.hero-panel h4 {
  margin: 0 0 6px;
  color: #f8fafc;
  font-size: 17px;
}

.hero-panel p {
  margin: 0 0 12px;
  color: #d9e6ff;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
}

.stat-card {
  padding: 14px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: #e2e8f0;
  font-weight: 700;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.stat-card small {
  display: block;
  color: #cbd5e1;
  font-weight: 600;
  font-size: 13px;
  margin-top: 4px;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 10px 0;
}

.pill-row .pill {
  background: rgba(255, 255, 255, 0.08);
  color: #e2e8f0;
}

.bar {
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(135deg, #2fe0ff, #0ec4ef);
  margin: 12px 0 8px;
  opacity: 0.9;
}

@media (max-width: 1024px) {
  :root {
    --page-padding: 24px;
  }
  .topbar-inner {
    flex-wrap: wrap;
  }
  .nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    background: rgba(10, 15, 28, 0.95);
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
  }
  .nav.open {
    display: flex;
  }
  .nav-toggle {
    display: inline-flex;
  }
  .layout {
    grid-template-columns: 1fr;
  }
  .nav a {
    width: 100%;
  }
  .hero {
    padding: 72px 0 32px;
  }
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  :root {
    --page-padding: 18px;
  }
  .page {
    padding: 0 var(--page-padding) 56px;
  }
  .topbar-inner {
    padding: 12px var(--page-padding);
  }
  .hero {
    padding-top: 52px;
  }
  .hero h1 {
    font-size: 32px;
    line-height: 1.1;
  }
  .actions {
    gap: 10px;
  }
  .btn {
    width: 100%;
    justify-content: center;
  }
  .stat-grid {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  }
  .footer-inner {
    padding: 36px var(--page-padding) 28px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
