:root {
  --bg: #0f172a;
  --surface: #1e293b;
  --surface-2: #334155;
  --accent: #f59e0b;
  --accent-dim: #b45309;
  --text: #f8fafc;
  --text-muted: #94a3b8;
  --cream: #fefce8;
  --cream-surface: #fef9c3;
  --border: rgba(245,158,11,0.15);
}

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

body {
  font-family: 'Nunito Sans', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Syne', system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.15;
}

.container { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }

/* HERO */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 6rem 0 5rem;
  background: var(--bg);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 60% 40%, rgba(245,158,11,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero-eyebrow {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

h1 {
  font-size: clamp(3rem, 7vw, 5.5rem);
  color: var(--text);
  margin-bottom: 1.5rem;
}

.lede {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 540px;
  margin-bottom: 3rem;
  line-height: 1.7;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  flex-wrap: wrap;
}

.stat {}

.stat-number {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-bg {
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  width: 55%;
  height: 80%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  pointer-events: none;
}

.bus-silhouette {
  width: 320px;
  height: 200px;
  background: var(--accent);
  border-radius: 20px 60px 20px 20px;
  opacity: 0.08;
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
}

.route-lines {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.route-line {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.3;
}

.route-line:nth-child(1) { width: 60%; margin-left: auto; }
.route-line:nth-child(2) { width: 80%; margin-left: 10%; }
.route-line:nth-child(3) { width: 50%; }

/* SECTIONS */
.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.section-label.light { color: var(--accent); }

.routes-section {
  background: var(--cream);
  color: #0f172a;
  padding: 6rem 0;
}

.routes-section h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #0f172a;
  margin-bottom: 1rem;
  max-width: 560px;
}

.section-intro {
  color: #475569;
  max-width: 560px;
  margin-bottom: 3rem;
  font-size: 1.05rem;
  line-height: 1.7;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.feature-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 2rem;
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: #fffbeb;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-dim);
  margin-bottom: 1.25rem;
}

.feature-card h3 {
  font-size: 1.125rem;
  color: #0f172a;
  margin-bottom: 0.75rem;
}

.feature-card p {
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* COMPLIANCE */
.compliance-section {
  background: var(--bg);
  padding: 6rem 0;
}

.compliance-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.compliance-content h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--text);
  margin-bottom: 1rem;
}

.compliance-content > p {
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.compliance-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.compliance-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text);
  font-size: 0.95rem;
}

.compliance-list svg { color: var(--accent); flex-shrink: 0; }

.dashboard-mock {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.mock-header {
  background: var(--surface-2);
  padding: 0.75rem 1rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.mock-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.4;
}

.mock-body { padding: 1.25rem; display: flex; flex-direction: column; gap: 0.75rem; }

.mock-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-size: 0.85rem;
}

.mock-row.warning { background: rgba(245,158,11,0.1); color: var(--accent); }
.mock-row.ok { background: rgba(34,197,94,0.1); color: #4ade80; }
.mock-icon { font-size: 1rem; }

/* OUTCOMES */
.outcomes-section {
  background: var(--cream);
  padding: 6rem 0;
}

.outcomes-section h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #0f172a;
  margin-bottom: 3rem;
  max-width: 560px;
}

.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.outcome-card {
  background: #ffffff;
  border: 1px solid #fde68a;
  border-radius: 16px;
  padding: 2rem;
}

.outcome-number {
  font-family: 'Syne', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent-dim);
  margin-bottom: 0.75rem;
}

.outcome-card p {
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* CLOSING */
.closing-section {
  background: var(--bg);
  padding: 8rem 0;
  text-align: center;
}

.closing-section h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--text);
  margin-bottom: 1.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.closing-section > .container > p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  font-size: 1.05rem;
  line-height: 1.7;
}

.closing-vision {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  max-width: 640px;
  margin: 0 auto;
}

.closing-vision p {
  color: var(--text-muted);
  font-size: 0.95rem;
  font-style: italic;
  line-height: 1.7;
}

/* FOOTER */
footer {
  background: #020617;
  padding: 3rem 0;
  text-align: center;
}

.footer-brand {
  font-family: 'Syne', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.footer-tagline {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.footer-copy {
  color: #475569;
  font-size: 0.8rem;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .compliance-inner { grid-template-columns: 1fr; }
  .hero-stats { gap: 2rem; }
  h1 { font-size: 2.75rem; }
  .hero-bg { display: none; }
}
