:root {
  --bg: #050a14;
  --bg-elevated: #0c1525;
  --border: rgba(34, 211, 238, 0.14);
  --green: #4ade80;
  --cyan: #22d3ee;
  --grad: linear-gradient(135deg, #4ade80 0%, #22d3ee 55%, #14b8a6 100%);
  --text: #f1f5f9;
  --text-secondary: #cbd5e1;
  --text-muted: #94a3b8;
}

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

html { -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(74, 222, 128, 0.12), transparent 55%),
    radial-gradient(ellipse 60% 40% at 90% 0%, rgba(34, 211, 238, 0.1), transparent 50%);
  z-index: -1;
}

a { color: var(--cyan); }
a:hover { color: var(--green); }

.wrap {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 1.15rem;
}

.site-header {
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
  background: rgba(5, 10, 20, 0.85);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 10;
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--text);
  font-family: 'Exo 2', system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.brand img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  font-size: 0.9rem;
}

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
}

.nav-links a:hover { color: var(--green); }

.hero {
  padding: 2.75rem 0 2rem;
}

.breadcrumb {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.1rem;
}

.breadcrumb a {
  color: var(--text-secondary);
  text-decoration: none;
}

.breadcrumb a:hover { color: var(--green); }

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 0.75rem;
}

h1 {
  font-family: 'Exo 2', system-ui, sans-serif;
  font-size: clamp(1.65rem, 4vw, 2.35rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 0.85rem;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 40rem;
  margin-bottom: 1.5rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.85rem 1.25rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: var(--grad);
  color: #041016;
  box-shadow: 0 0 28px rgba(74, 222, 128, 0.22);
}

.btn-primary:hover { color: #041016; }

.btn-secondary {
  border: 1px solid var(--border);
  background: rgba(12, 22, 40, 0.7);
  color: var(--text);
}

.btn-secondary:hover { color: var(--green); border-color: rgba(74, 222, 128, 0.4); }

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin: 1.5rem 0 0;
}

.stat {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(12, 22, 40, 0.65);
  padding: 1rem 0.85rem;
  text-align: center;
}

.stat strong {
  display: block;
  font-family: 'Exo 2', system-ui, sans-serif;
  font-size: 1.05rem;
  color: var(--green);
  margin-bottom: 0.25rem;
}

.stat span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.content {
  padding: 0.5rem 0 3rem;
}

.content h2 {
  font-family: 'Exo 2', system-ui, sans-serif;
  font-size: 1.25rem;
  margin: 2rem 0 0.75rem;
  color: var(--text);
}

.content p, .content li {
  color: var(--text-secondary);
  margin-bottom: 0.85rem;
}

.content ul {
  padding-left: 1.2rem;
  margin-bottom: 1rem;
}

.content li { margin-bottom: 0.45rem; }

.panel {
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(12, 22, 40, 0.65);
  padding: 1.25rem 1.15rem;
  margin: 1.25rem 0;
}

.panel h2 { margin-top: 0; }

.route-grid {
  display: grid;
  gap: 0.85rem;
  margin: 1.25rem 0 2rem;
}

.route-card {
  display: block;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(12, 22, 40, 0.65);
  padding: 1.1rem 1.15rem;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s ease, transform 0.15s ease;
}

.route-card:hover {
  border-color: rgba(74, 222, 128, 0.4);
  transform: translateY(-2px);
  color: inherit;
}

.route-card h2 {
  font-family: 'Exo 2', system-ui, sans-serif;
  font-size: 1.1rem;
  margin: 0 0 0.35rem;
  color: var(--text);
}

.route-card p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.related {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 1rem 0 2rem;
}

.related a {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.4rem 0.85rem;
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 0.88rem;
  font-weight: 600;
}

.related a:hover {
  color: var(--green);
  border-color: rgba(74, 222, 128, 0.4);
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 1.75rem 0 2.5rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.88rem;
}

.site-footer a { color: var(--green); text-decoration: none; }
.site-footer p { margin-bottom: 0.4rem; }

@media (max-width: 640px) {
  .stats { grid-template-columns: 1fr; }
  .site-header .wrap { flex-direction: column; align-items: flex-start; }
}
