:root {
  --bg: #0A0A0A;
  --surface: #111111;
  --surface-2: #1A1A1A;
  --teal: #0D4F4F;
  --teal-light: #1A7A7A;
  --lime: #B4FF00;
  --white: #F5F5F0;
  --muted: #888888;
  --border: #222222;
  --text-secondary: #AAAAAA;
}

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

body {
  background: var(--bg);
  color: var(--white);
  font-family: 'Figtree', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* HEADER */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 40px;
}
.site-header .header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
  height: 64px;
}
.logo-mark { display: flex; align-items: center; gap: 10px; }
.logo-text { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 18px; color: var(--white); }
.header-nav { display: flex; gap: 32px; margin-left: auto; }
.header-nav a { color: var(--text-secondary); text-decoration: none; font-size: 14px; font-weight: 500; transition: color 0.2s; }
.header-nav a:hover { color: var(--white); }
.header-badge { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--text-secondary); font-weight: 500; border: 1px solid var(--border); padding: 6px 12px; border-radius: 20px; }
.badge-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--lime); animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 40px 80px;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-content { flex: 1; }
.hero-label {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 800;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 28px;
}
.hero-sub {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 420px;
  line-height: 1.7;
}
.hero-visual { flex: 1; max-width: 480px; }

/* DELIVERY TRACKER */
.delivery-tracker {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.5);
}
.tracker-header {
  background: var(--teal);
  padding: 12px 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lime);
}
.tracker-row {
  display: grid;
  grid-template-columns: 24px 1fr auto auto;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
}
.tracker-row:last-child { border-bottom: none; }
.tracker-row.active { background: rgba(180, 255, 0, 0.04); }
.route-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--muted); }
.tracker-row.active .route-dot { background: var(--lime); box-shadow: 0 0 8px rgba(180,255,0,0.6); }
.route-id { font-weight: 600; font-family: 'Syne', sans-serif; font-size: 12px; }
.route-status { color: var(--muted); font-size: 12px; }
.tracker-row.active .route-status { color: var(--lime); }
.route-status.delivered { color: #4CAF50; }
.route-zone { color: var(--text-secondary); font-size: 11px; }

/* STATS */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stat { padding: 40px 32px; text-align: center; border-right: 1px solid var(--border); }
.stat:last-child { border-right: none; }
.stat-value { display: block; font-family: 'Syne', sans-serif; font-size: 36px; font-weight: 800; color: var(--lime); }
.stat-label { display: block; font-size: 12px; color: var(--text-secondary); margin-top: 6px; text-transform: uppercase; letter-spacing: 0.08em; }

/* SECTION UTILITIES */
.section-label { font-family: 'Syne', sans-serif; font-size: 11px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--lime); margin-bottom: 16px; }
.section-headline { font-family: 'Syne', sans-serif; font-size: clamp(28px, 4vw, 48px); font-weight: 700; color: var(--white); line-height: 1.15; margin-bottom: 20px; }
.section-body { color: var(--text-secondary); font-size: 16px; max-width: 540px; line-height: 1.7; }

/* COVERAGE */
.coverage { padding: 100px 40px; max-width: 1200px; margin: 0 auto; }
.coverage-zones { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 48px; }
.zone-card { background: var(--surface); border: 1px solid var(--border); border-radius: 8px; padding: 24px 20px; transition: border-color 0.2s; }
.zone-card.active { border-color: var(--teal-light); }
.zone-name { font-family: 'Syne', sans-serif; font-size: 14px; font-weight: 600; color: var(--white); margin-bottom: 6px; }
.zone-detail { font-size: 12px; color: var(--text-secondary); }

/* SOLUTIONS */
.solutions { padding: 100px 40px; background: var(--surface); }
.solutions .section-headline { text-align: center; }
.solutions .section-label { text-align: center; }
.solution-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; max-width: 1200px; margin-left: auto; margin-right: auto; }
.solution-card { background: var(--bg); border: 1px solid var(--border); border-radius: 12px; padding: 36px 32px; transition: border-color 0.2s; }
.solution-card:hover { border-color: var(--teal-light); }
.solution-icon { margin-bottom: 20px; }
.solution-card h3 { font-family: 'Syne', sans-serif; font-size: 20px; font-weight: 700; margin-bottom: 12px; color: var(--white); }
.solution-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.7; }

/* INTEGRATIONS */
.integrations { padding: 100px 40px; max-width: 1200px; margin: 0 auto; }
.integration-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; margin-top: 48px; }
.integration-card { background: var(--surface); border: 1px solid var(--border); border-radius: 8px; padding: 20px 16px; text-align: center; }
.integration-name { font-family: 'Syne', sans-serif; font-size: 14px; font-weight: 600; color: var(--white); margin-bottom: 6px; }
.integration-tag { font-size: 11px; color: var(--text-secondary); }

/* PROMISE */
.promise { padding: 80px 40px; background: var(--teal); }
.promise-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; max-width: 1200px; margin: 0 auto; }
.promise-item { text-align: center; }
.promise-metric { font-family: 'Syne', sans-serif; font-size: 40px; font-weight: 800; color: var(--lime); }
.promise-desc { font-size: 13px; color: rgba(255,255,255,0.8); margin-top: 8px; line-height: 1.5; }

/* CLOSING */
.closing { padding: 100px 40px; text-align: center; background: var(--bg); }
.closing-headline { font-family: 'Syne', sans-serif; font-size: clamp(36px, 5vw, 64px); font-weight: 800; color: var(--white); line-height: 1.15; margin-bottom: 24px; }
.closing-sub { font-size: 16px; color: var(--text-secondary); max-width: 500px; margin: 0 auto; line-height: 1.7; }

/* FOOTER */
.site-footer { padding: 40px; border-top: 1px solid var(--border); }
.footer-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; gap: 40px; }
.footer-brand { display: flex; align-items: center; gap: 10px; font-family: 'Syne', sans-serif; font-weight: 700; font-size: 14px; color: var(--white); }
.footer-meta { display: flex; gap: 24px; margin-left: auto; font-size: 12px; color: var(--muted); }
.footer-legal { font-size: 11px; color: var(--muted); }

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero { flex-direction: column; padding-top: 100px; }
  .hero-visual { max-width: 100%; width: 100%; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .stat { border-bottom: 1px solid var(--border); }
  .coverage-zones { grid-template-columns: repeat(2, 1fr); }
  .solution-grid { grid-template-columns: 1fr; }
  .integration-grid { grid-template-columns: repeat(3, 1fr); }
  .promise-grid { grid-template-columns: repeat(2, 1fr); }
  .header-nav { display: none; }
  .footer-inner { flex-wrap: wrap; }
  .footer-meta { margin-left: 0; }
}
@media (max-width: 600px) {
  .stats-row { grid-template-columns: 1fr; }
  .coverage-zones { grid-template-columns: 1fr; }
  .integration-grid { grid-template-columns: repeat(2, 1fr); }
  .promise-grid { grid-template-columns: 1fr; }
  .site-header { padding: 0 20px; }
  .hero, .coverage, .solutions, .integrations, .closing { padding-left: 20px; padding-right: 20px; }
  .promise { padding-left: 20px; padding-right: 20px; }
}