﻿/* ============================================================
   PADI — DESIGN SYSTEM
   Concept: "The Grid in Motion" — Premium dark logistics brand
   Fonts: Clash Display (headings) + Satoshi (body)
   Palette: Deep Navy base · Lime electric accent · White text
============================================================ */

:root {
  --navy:        #061B3A;
  --navy-deep:   #030E20;
  --navy-mid:    #0A2347;
  --navy-glass:  rgba(6,27,58,0.6);
  --lime:        #B6FF3B;
  --lime-dim:    rgba(182,255,59,0.12);
  --lime-border: rgba(182,255,59,0.25);
  --white:       #FFFFFF;
  --off-white:   #EEF2F7;
  --text-body:   rgba(255,255,255,0.68);
  --text-muted:  rgba(255,255,255,0.38);
  --border:      rgba(255,255,255,0.08);
  --border-lime: rgba(182,255,59,0.2);
  --card-bg:     rgba(255,255,255,0.04);
  --card-hover:  rgba(255,255,255,0.07);

  --font-display: 'Clash Display', sans-serif;
  --font-body:    'Satoshi', sans-serif;

  --r-sm:  6px;
  --r-md:  12px;
  --r-lg:  20px;
  --r-xl:  32px;
  --r-pill:100px;
}

html[data-theme="light"] {
  color-scheme: light;
  --navy:        #F2F8EA;
  --navy-deep:   #F7FBF1;
  --navy-mid:    #FFFFFF;
  --navy-glass:  rgba(255,255,255,0.72);
  --lime-dim:    rgba(94,148,23,0.11);
  --lime-border: rgba(94,148,23,0.22);
  --white:       #071624;
  --off-white:   #102033;
  --text-body:   rgba(7,22,36,0.68);
  --text-muted:  rgba(7,22,36,0.45);
  --border:      rgba(7,22,36,0.10);
  --border-lime: rgba(94,148,23,0.24);
  --card-bg:     rgba(7,22,36,0.045);
  --card-hover:  rgba(7,22,36,0.07);
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body {
  font-family: var(--font-body);
  background: var(--navy-deep);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
html[data-theme="light"] body {
  background:
    radial-gradient(circle at 16% 0%, rgba(182,255,59,0.18), transparent 26rem),
    radial-gradient(circle at 92% 14%, rgba(94,148,23,0.08), transparent 24rem),
    var(--navy-deep);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
p { color: var(--text-body); }

/* ============================================================
   DOT GRID TEXTURE — the signature background motif
============================================================ */
.dot-grid {
  background-image: radial-gradient(circle, rgba(182,255,59,0.18) 1px, transparent 1px);
  background-size: 28px 28px;
}
.dot-grid-faint {
  background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 32px 32px;
}

/* ============================================================
   DIAGONAL SECTION DIVIDER
============================================================ */
.skew-bottom {
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 60px), 0 100%);
  padding-bottom: 100px;
}
.skew-top {
  clip-path: polygon(0 60px, 100% 0, 100% 100%, 0 100%);
  padding-top: 100px;
}

/* ============================================================
   NAVIGATION
============================================================ */
#mainNav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: all 0.4s ease;
  padding: 0;
}
#mainNav.scrolled {
  background: rgba(3,14,32,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  gap: 2rem;
  transition: padding 0.3s ease;
}
#mainNav.scrolled .nav-inner { padding: 14px 0; }

/* Logo */
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0;
  flex-shrink: 0;
}
.logo-mark {
  width: 28px; height: 28px;
  background: var(--lime);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.logo-mark svg { width: 14px; height: 14px; }

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-body);
  padding: 8px 16px;
  border-radius: var(--r-sm);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }
.nav-links a.active { color: var(--lime); }

/* Nav CTA */
.btn-nav {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy-deep) !important;
  background: var(--lime);
  padding: 10px 22px;
  border-radius: var(--r-pill);
  border: none;
  cursor: pointer;
  transition: all 0.22s ease;
  white-space: nowrap;
  text-decoration: none;
}
.btn-nav:hover {
  background: #cbff6a;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(182,255,59,0.3);
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none; border: none;
}
.nav-hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.nav-mobile {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--navy-deep);
  z-index: 999;
  flex-direction: column;
  padding: 90px 32px 40px;
  gap: 8px;
  max-height: 100dvh;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--text-body);
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.nav-mobile a:hover { color: var(--lime); }
.nav-mobile .btn-lime-full {
  margin-top: 24px;
  text-align: center;
  background: var(--lime);
  color: var(--navy-deep) !important;
  border-radius: var(--r-md);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  padding: 18px;
}

/* ============================================================
   BUTTONS
============================================================ */
.btn-lime {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy-deep);
  background: var(--lime);
  padding: 13px 26px;
  border-radius: var(--r-pill);
  border: none;
  cursor: pointer;
  transition: all 0.22s ease;
  line-height: 1;
}
.btn-lime:hover {
  background: #cbff6a;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(182,255,59,0.28);
  color: var(--navy-deep);
}
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--white);
  background: transparent;
  padding: 13px 26px;
  border-radius: var(--r-pill);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all 0.22s ease;
  line-height: 1;
}
.btn-ghost:hover {
  border-color: rgba(255,255,255,0.3);
  background: var(--card-bg);
  color: var(--white);
  transform: translateY(-1px);
}
.btn-arrow { font-size: 1.1rem; transition: transform 0.2s; }
.btn-lime:hover .btn-arrow { transform: translateX(3px); }

/* ============================================================
   TYPOGRAPHY UTILITIES
============================================================ */
.label-chip {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lime);
  background: var(--lime-dim);
  border: 1px solid var(--lime-border);
  padding: 6px 14px;
  border-radius: var(--r-pill);
  margin-bottom: 20px;
}
.label-chip-dot {
  width: 5px; height: 5px;
  background: var(--lime);
  border-radius: 50%;
  animation: pulse 2.5s ease-in-out infinite;
}
@keyframes pulse {
  0%,100%{opacity:1;transform:scale(1)}
  50%{opacity:0.5;transform:scale(0.7)}
}

.display-heading {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: 0;
  color: var(--white);
}
.display-xl { font-size: 6rem; }
.display-lg { font-size: 4rem; }
.display-md { font-size: 2.8rem; }
.display-sm { font-size: 2rem; }

.lead-text {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--text-body);
  line-height: 1.75;
  max-width: 540px;
}

.lime-word { color: var(--lime); }

/* ============================================================
   GLASS CARDS
============================================================ */
.glass-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  transition: all 0.25s ease;
}
.glass-card:hover {
  background: var(--card-hover);
  border-color: rgba(255,255,255,0.14);
  transform: translateY(-3px);
}
.glass-card-lime {
  background: var(--lime-dim);
  border: 1px solid var(--lime-border);
  border-radius: var(--r-lg);
}

/* ============================================================
   STAT / NUMBER COMPONENTS
============================================================ */
.stat-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stat-number {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0;
  line-height: 1;
}
.stat-number .lime { color: var(--lime); }
.stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* ============================================================
   SECTION UTILITIES
============================================================ */
.section-pad { padding: 100px 0; }
.section-pad-lg { padding: 130px 0; }
.section-pad-sm { padding: 64px 0; }

/* Divider line */
.h-rule {
  height: 1px;
  background: var(--border);
  margin: 0;
}

/* ============================================================
   PAGE SWITCHER — SPA-style multi page
============================================================ */
.page { display: none; }
.page.active { display: block; }

/* ============================================================
   ██ INDEX — HOME PAGE
============================================================ */

/* Hero */
#hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 0 100px;
  position: relative;
  overflow: hidden;
}
#hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(182,255,59,0.14) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 80% 80% at 60% 50%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 60% 50%, black 30%, transparent 80%);
}
#hero::after {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(182,255,59,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  position: relative; z-index: 1;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media(max-width:991px){ .hero-grid { grid-template-columns: 1fr; gap: 48px; } }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--text-muted);
  margin-bottom: 24px;
}
.hero-eyebrow span {
  display: inline-block;
  width: 30px; height: 1px;
  background: var(--text-muted);
}

.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 36px;
}
.cta-pair {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-trust {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 20px;
  display: flex; align-items: center; gap: 8px;
}
.hero-trust::before {
  content: '';
  display: inline-block;
  width: 16px; height: 1px;
  background: var(--text-muted);
  flex-shrink: 0;
}

/* --- ROUTE VISUAL CARD --- */
.route-visual {
  position: relative;
}
.route-card-outer {
  background:
    radial-gradient(circle at 72% 16%, rgba(182,255,59,0.44), transparent 30%),
    radial-gradient(circle at 20% 90%, rgba(94,148,23,0.14), transparent 34%),
    linear-gradient(145deg, rgba(255,255,255,0.99), rgba(239,250,220,0.97) 58%, rgba(255,255,255,0.95)),
    var(--white);
  border: 1px solid rgba(130,203,30,0.42);
  border-radius: var(--r-xl);
  padding: 32px;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 30px 90px rgba(3,14,32,0.18),
    0 0 58px rgba(182,255,59,0.24),
    inset 0 1px 0 rgba(255,255,255,0.95);
}
.route-card-outer::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(120deg, transparent, rgba(182,255,59,0.14), transparent),
    radial-gradient(circle, rgba(3,14,32,0.055) 1px, transparent 1px);
  background-size: 100% 100%, 20px 20px;
}
.rc-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 28px; position: relative; z-index: 1;
}
.rc-title {
  font-family: var(--font-body);
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(3,14,32,0.5);
}
.rc-status {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.72rem; font-weight: 600;
  color: #22500b;
  background: rgba(182,255,59,0.34);
  border: 1px solid rgba(139,214,30,0.35);
  padding: 5px 12px;
  border-radius: var(--r-pill);
}
.rc-status-dot {
  width: 5px; height: 5px;
  background: var(--lime);
  border-radius: 50%;
  animation: pulse 1.8s ease-in-out infinite;
}

/* Route map area */
.route-map {
  position: relative;
  z-index: 1;
  height: 270px;
  background:
    radial-gradient(circle at 58% 45%, rgba(182,255,59,0.30), transparent 26%),
    linear-gradient(180deg, #fbfff7, #eef8e6);
  border: 1px solid rgba(3,14,32,0.075);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.96),
    inset 0 -18px 44px rgba(94,148,23,0.06),
    0 18px 38px rgba(3,14,32,0.10);
}
.route-map svg {
  width: 100%; height: 100%;
  overflow: visible;
}
.route-card-outer .route-map text { fill: rgba(3,14,32,0.58); }
.route-card-outer .route-map text[fill="#030E20"] { fill: #030E20; }
.route-card-outer .route-map circle[fill="white"] { fill: #030E20; opacity: 0.55; }
.map-water {
  fill: rgba(61,139,195,0.18);
  stroke: rgba(61,139,195,0.24);
  stroke-width: 1;
}
.map-district {
  fill: rgba(255,255,255,0.58);
  stroke: rgba(3,14,32,0.06);
  stroke-width: 1;
}
.map-district.lime {
  fill: rgba(182,255,59,0.20);
  stroke: rgba(94,148,23,0.13);
}
.map-label,
.road-label {
  font-family: var(--font-body);
  fill: rgba(3,14,32,0.42) !important;
  font-weight: 800;
}
.map-label {
  font-size: 8px;
  text-transform: uppercase;
}
.road-label {
  font-size: 7px;
}
.map-road {
  fill: none;
  stroke-linecap: round;
}
.map-road.main {
  stroke: rgba(3,14,32,0.16);
  stroke-width: 8;
}
.map-road.main.lagoon {
  stroke: rgba(3,14,32,0.12);
  stroke-width: 10;
}
.map-road.minor {
  stroke: rgba(3,14,32,0.08);
  stroke-width: 2;
}
.route-stem {
  stroke: #5E9417;
  stroke-width: 3.4;
  stroke-linecap: round;
  fill: none;
  stroke-dasharray: 5 7;
}
.route-stem-underlay {
  stroke: rgba(94,148,23,0.22);
  stroke-width: 13;
  stroke-linecap: round;
  fill: none;
}
.route-final {
  stroke: #B6FF3B;
  stroke-width: 5.6;
  stroke-linecap: round;
  fill: none;
  filter: url(#map-glow);
}
.route-final-underlay {
  stroke: rgba(182,255,59,0.46);
  stroke-width: 15;
  stroke-linecap: round;
  fill: none;
}
.map-pin circle:first-child {
  fill: #FFFFFF;
  stroke: #5E9417;
  stroke-width: 2;
  filter: drop-shadow(0 8px 10px rgba(3,14,32,0.12));
}
.map-pin .pin-core {
  fill: #B6FF3B;
  stroke: #030E20;
  stroke-width: 1.2;
}
.map-pin text {
  font-family: var(--font-body);
  fill: rgba(3,14,32,0.78) !important;
  font-size: 10px;
  font-weight: 800;
}
.map-pin .pin-sub {
  fill: rgba(3,14,32,0.42) !important;
  font-size: 8px;
  font-weight: 700;
}
.merge-node circle:first-child {
  fill: rgba(182,255,59,0.75);
  stroke: #5E9417;
  stroke-width: 2;
  filter: url(#map-glow);
}
.merge-node circle:nth-child(2) {
  fill: #FFFFFF;
  stroke: #030E20;
  stroke-width: 1.5;
}
.merge-node text,
.dest-node text {
  font-family: var(--font-body);
  fill: #030E20 !important;
  font-size: 10px;
  font-weight: 900;
}
.dest-node rect {
  fill: rgba(182,255,59,0.94);
  stroke: rgba(3,14,32,0.14);
  stroke-width: 1;
}
.dest-node circle {
  fill: #030E20;
}
.route-map-caption {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 14px;
}
.route-map-caption div {
  padding: 12px 14px;
  border: 1px solid rgba(3,14,32,0.08);
  border-left: 3px solid rgba(94,148,23,0.75);
  border-radius: var(--r-md);
  background: rgba(255,255,255,0.68);
  box-shadow: 0 12px 24px rgba(3,14,32,0.06);
}
.route-map-caption span {
  display: block;
  color: rgba(3,14,32,0.45);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 3px;
}
.route-map-caption strong {
  color: #030E20;
  font-size: 0.84rem;
  font-weight: 900;
}

/* Pickup labels */
.pickup-tag {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 5px 10px;
  border-radius: var(--r-sm);
  white-space: nowrap;
}
.dest-tag {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--navy-deep);
  background: var(--lime);
  padding: 6px 12px;
  border-radius: var(--r-sm);
  white-space: nowrap;
}

/* Route savings strip */
.route-savings {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(3,14,32,0.08);
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 16px;
  position: relative; z-index: 1;
}
.rs-item { text-align: center; }
.rs-value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: #030E20;
  letter-spacing: 0;
  line-height: 1;
}
.rs-value.green { color: var(--green, #22500b); }
.rs-label {
  font-size: 0.68rem;
  font-weight: 500;
  color: rgba(3,14,32,0.52);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: 4px;
}

/* Floating badge */
.float-badge {
  position: absolute;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 7px 14px;
  border-radius: var(--r-pill);
  white-space: nowrap;
  animation: floaty 4s ease-in-out infinite;
  z-index: 10;
}
.float-badge.lime-badge { background: var(--lime); color: var(--navy-deep); top: -14px; right: 28px; animation-delay: 0s; }
.float-badge.dark-badge { background: rgba(255,255,255,0.92); border: 1px solid rgba(3,14,32,0.08); color: rgba(3,14,32,0.72); bottom: 60px; left: -18px; animation-delay: 1.5s; box-shadow: 0 14px 34px rgba(3,14,32,0.12); }
@keyframes floaty {
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-7px)}
}

/* ---- Route pills strip ---- */
.pills-strip {
  padding: 28px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  position: relative;
}
.pills-strip::before,
.pills-strip::after {
  content: '';
  position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2;
  pointer-events: none;
}
.pills-strip::before { left: 0; background: linear-gradient(90deg, var(--navy-deep), transparent); }
.pills-strip::after  { right: 0; background: linear-gradient(-90deg, var(--navy-deep), transparent); }

.pills-track {
  display: flex;
  gap: 10px;
  animation: scroll-pills 22s linear infinite;
  width: max-content;
}
.pills-track:hover { animation-play-state: paused; }
@keyframes scroll-pills {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.route-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  padding: 9px 18px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-body);
  white-space: nowrap;
  cursor: default;
  transition: all 0.2s;
  flex-shrink: 0;
}
.route-pill:hover { background: var(--card-hover); border-color: var(--border-lime); color: var(--white); }
.pill-sep { color: var(--lime); font-size: 0.85rem; }

/* ---- Value props row ---- */
.value-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1px;
  background: var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}
@media(max-width:767px){ .value-grid { grid-template-columns: 1fr; } }
.value-cell {
  background: var(--navy-deep);
  padding: 40px 32px;
  transition: background 0.2s;
}
.value-cell:hover { background: var(--navy-mid); }
.value-num {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.value-cell h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.3;
}
.value-cell p { font-size: 0.88rem; color: var(--text-body); line-height: 1.65; margin: 0; }

/* ---- Split audience section ---- */
.audience-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media(max-width:767px){ .audience-split { grid-template-columns: 1fr; } }

.aud-card {
  border-radius: var(--r-xl);
  padding: 44px 40px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
}
.aud-card-biz {
  background: var(--navy-mid);
  border: 1px solid var(--border);
}
.aud-card-rider {
  background: var(--lime);
}
.aud-card:hover { transform: translateY(-4px); }
.aud-card-biz:hover { box-shadow: 0 24px 60px rgba(6,27,58,0.6); border-color: rgba(255,255,255,0.16); }
.aud-card-rider:hover { box-shadow: 0 24px 60px rgba(182,255,59,0.25); }

.aud-icon {
  width: 52px; height: 52px;
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}
.aud-card-biz .aud-icon { background: var(--lime-dim); }
.aud-card-rider .aud-icon { background: rgba(3,14,32,0.18); }

.aud-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 0;
  line-height: 1.2;
}
.aud-card-biz h3 { color: var(--white); }
.aud-card-rider h3 { color: var(--navy-deep); }

.aud-card > p { font-size: 0.9rem; margin-bottom: 24px; line-height: 1.7; }
.aud-card-biz > p { color: var(--text-body); }
.aud-card-rider > p { color: rgba(3,14,32,0.7); }

.aud-tags {
  display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 28px;
}
.aud-tag {
  font-size: 0.75rem; font-weight: 500;
  padding: 4px 12px; border-radius: var(--r-pill);
}
.aud-card-biz .aud-tag { background: rgba(255,255,255,0.06); color: var(--text-body); border: 1px solid var(--border); }
.aud-card-rider .aud-tag { background: rgba(3,14,32,0.12); color: rgba(3,14,32,0.75); }

.btn-aud-biz {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--lime); color: var(--navy-deep);
  font-family: var(--font-body); font-size: 0.88rem; font-weight: 700;
  padding: 12px 22px; border-radius: var(--r-pill); border: none;
  cursor: pointer; transition: all 0.2s;
}
.btn-aud-biz:hover { background: #cbff6a; }

.btn-aud-rider {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--navy-deep); color: var(--lime);
  font-family: var(--font-body); font-size: 0.88rem; font-weight: 700;
  padding: 12px 22px; border-radius: var(--r-pill); border: none;
  cursor: pointer; transition: all 0.2s;
}
.btn-aud-rider:hover { background: #020b16; }

/* ---- Demand board ---- */
.demand-row {
  display: flex; align-items: center; gap: 20px;
  padding: 18px 24px;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}
.demand-row:hover { background: var(--card-bg); }
.demand-row:last-child { border-bottom: none; }
.dr-area {
  font-family: var(--font-display);
  font-size: 0.95rem; font-weight: 600; color: var(--white);
  min-width: 90px;
}
.dr-bar-wrap {
  flex: 1; height: 4px;
  background: rgba(255,255,255,0.06);
  border-radius: 4px; overflow: hidden;
}
.dr-bar { height: 100%; border-radius: 4px; background: var(--lime); width: 0; transition: width 1.2s cubic-bezier(0.4,0,0.2,1); }
.dr-bar.dim { background: rgba(255,255,255,0.2); }
.dr-badge {
  font-size: 0.7rem; font-weight: 600;
  padding: 3px 10px; border-radius: var(--r-pill);
  white-space: nowrap; flex-shrink: 0;
}
.dr-badge.active { background: var(--lime-dim); color: var(--lime); border: 1px solid var(--lime-border); }
.dr-badge.low    { background: rgba(255,255,255,0.05); color: var(--text-muted); border: 1px solid var(--border); }
.dr-pct { font-size: 0.82rem; font-weight: 600; color: var(--text-muted); min-width: 36px; text-align: right; }

/* ---- Signup form ---- */
.form-section {
  background: var(--navy-mid);
  border-radius: var(--r-xl);
  overflow: hidden;
}
.form-sidebar {
  background: var(--lime);
  padding: 52px 44px;
  display: flex; flex-direction: column; justify-content: space-between;
  min-height: 500px;
}
.form-sidebar h2 {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--navy-deep);
  letter-spacing: 0;
  line-height: 1.1;
  margin-bottom: 14px;
}
.form-sidebar p { color: rgba(3,14,32,0.65); font-size: 0.9rem; margin: 0; line-height: 1.65; }
.sidebar-stats { display: flex; flex-direction: column; gap: 20px; }
.sidebar-stat-val {
  font-family: var(--font-display);
  font-size: 1.8rem; font-weight: 700;
  color: var(--navy-deep); letter-spacing: 0; line-height: 1;
}
.sidebar-stat-lbl { font-size: 0.75rem; font-weight: 600; color: rgba(3,14,32,0.55); margin-top: 2px; letter-spacing: 0.04em; text-transform: uppercase; }

.form-body { padding: 52px 44px; }
@media(max-width:767px){ .form-sidebar { padding: 36px 28px; min-height: auto; } .form-body { padding: 36px 28px; } }

/* Toggle switch */
.type-toggle {
  display: flex; gap: 4px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  padding: 4px; margin-bottom: 32px;
}
.toggle-btn {
  flex: 1; padding: 10px 16px;
  font-family: var(--font-body); font-size: 0.85rem; font-weight: 600;
  color: var(--text-muted); background: transparent;
  border: none; border-radius: var(--r-pill); cursor: pointer;
  transition: all 0.25s ease;
}
.toggle-btn.active { background: var(--lime); color: var(--navy-deep); }

/* Form fields */
.f-group { margin-bottom: 18px; }
.f-label {
  display: block;
  font-size: 0.78rem; font-weight: 600;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.04em; text-transform: uppercase;
  margin-bottom: 8px;
}
.f-input, .f-select {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 13px 16px;
  font-family: var(--font-body); font-size: 0.9rem;
  color: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  appearance: none; -webkit-appearance: none;
}
.f-input::placeholder { color: rgba(255,255,255,0.2); }
.f-input:focus, .f-select:focus {
  border-color: var(--lime);
  box-shadow: 0 0 0 3px rgba(182,255,59,0.1);
}
.f-select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(255,255,255,0.35)' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }
.f-select option { background: var(--navy); color: var(--white); }

.f-error { font-size: 0.75rem; color: #ff6b6b; margin-top: 5px; display: none; }
.f-input.err, .f-select.err { border-color: #ff6b6b; }

.form-fields-wrap { animation: fadeUp 0.3s ease; }
@keyframes fadeUp { from{opacity:0;transform:translateY(8px)} to{opacity:1;transform:translateY(0)} }

/* Success state */
.form-success { display: none; text-align: center; padding: 60px 20px; }
.form-success-icon {
  width: 68px; height: 68px;
  background: var(--lime);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  font-size: 1.6rem;
}
.form-success h3 {
  font-family: var(--font-display);
  font-size: 1.6rem; font-weight: 700; color: var(--white);
  letter-spacing: 0; margin-bottom: 10px;
}
.form-success p { font-size: 0.9rem; max-width: 340px; margin: 0 auto; }

/* ---- Final CTA ---- */
.final-cta {
  background: var(--lime);
  border-radius: var(--r-xl);
  padding: 72px 60px;
  position: relative; overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute; top: -50%; right: -10%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(3,14,32,0.06), transparent 65%);
  pointer-events: none;
}
.final-cta h2 {
  font-family: var(--font-display);
  font-size: 3.4rem;
  font-weight: 700;
  color: var(--navy-deep);
  letter-spacing: 0;
  line-height: 1.1;
  margin-bottom: 14px;
}
.final-cta p { color: rgba(3,14,32,0.6); max-width: 480px; font-size: 0.95rem; margin-bottom: 32px; }

@media(max-width:767px){ .final-cta { padding: 48px 28px; } }

/* ============================================================
   FOOTER
============================================================ */
footer {
  background: var(--navy-deep);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
}
@media(max-width:767px){ .footer-top { grid-template-columns: 1fr; gap: 36px; } }

.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.4rem; font-weight: 700;
  color: var(--white); letter-spacing: 0;
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 12px;
}
.footer-desc { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; max-width: 260px; margin-bottom: 0; }
.footer-col h6 {
  font-family: var(--font-body); font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted);
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 0.88rem; color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--lime); }

.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-size: 0.78rem; color: var(--text-muted); }
.footer-signal {
  display: flex; align-items: center; gap: 7px;
  font-size: 0.75rem; color: var(--text-muted);
}
.footer-signal-dot {
  width: 6px; height: 6px;
  background: var(--lime); border-radius: 50%;
  animation: pulse 3s ease-in-out infinite;
}

/* ============================================================
   ██ FOR BUSINESSES PAGE
============================================================ */
.page-hero {
  padding: 160px 0 90px;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 70% 100% at 50% 0%, black 20%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 100% at 50% 0%, black 20%, transparent 80%);
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  gap: 16px;
}
.bento-wide  { grid-column: span 8; }
.bento-narrow{ grid-column: span 4; }
.bento-half  { grid-column: span 6; }
.bento-third { grid-column: span 4; }
.bento-full  { grid-column: span 12; }
@media(max-width:991px){ .bento-wide,.bento-narrow,.bento-half,.bento-third,.bento-full { grid-column: span 12; } }

.bento-cell {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px;
}
.bento-cell.lime-cell { background: var(--lime); }
.bento-cell.navy-cell { background: var(--navy-mid); border-color: rgba(255,255,255,0.1); }

.bento-number {
  font-family: var(--font-display);
  font-size: 4rem; font-weight: 700; color: var(--white);
  letter-spacing: 0; line-height: 1;
  opacity: 0.18; margin-bottom: -12px;
}
.bento-cell.lime-cell .bento-number { color: var(--navy-deep); opacity: 0.15; }
.bento-cell h3 {
  font-family: var(--font-display);
  font-size: 1.05rem; font-weight: 600; color: var(--white);
  margin-bottom: 8px; line-height: 1.3;
}
.bento-cell.lime-cell h3 { color: var(--navy-deep); }
.bento-cell p { font-size: 0.87rem; line-height: 1.65; margin: 0; }
.bento-cell.lime-cell p { color: rgba(3,14,32,0.65); }

/* Cost comparison bar */
.cost-bar-wrap { margin-top: 20px; }
.cost-bar-label { display: flex; justify-content: space-between; align-items: center; margin-bottom: 6px; }
.cost-bar-label span { font-size: 0.78rem; font-weight: 600; }
.cost-bar-track { height: 8px; background: rgba(255,255,255,0.08); border-radius: 8px; overflow: hidden; margin-bottom: 14px; }
.cost-bar-fill { height: 100%; border-radius: 8px; transition: width 1.2s cubic-bezier(0.4,0,0.2,1); }
.bar-before { background: rgba(255,255,255,0.3); }
.bar-after  { background: var(--lime); }

/* Step timeline */
.step-line {
  display: flex; flex-direction: column; gap: 0;
}
.step-item {
  display: flex; gap: 20px;
  padding-bottom: 28px;
  position: relative;
}
.step-item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 17px; top: 36px; bottom: 0; width: 1px;
  background: var(--border);
}
.step-num {
  width: 36px; height: 36px; flex-shrink: 0;
  background: var(--lime-dim);
  border: 1px solid var(--lime-border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 0.82rem; font-weight: 700;
  color: var(--lime);
  position: relative; z-index: 1;
}
.step-content { padding-top: 6px; }
.step-content h4 {
  font-family: var(--font-display); font-size: 0.92rem; font-weight: 600;
  color: var(--white); margin-bottom: 5px;
}
.step-content p { font-size: 0.84rem; color: var(--text-body); margin: 0; line-height: 1.6; }

/* Testimonial / quote block */
.quote-block {
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 36px;
  position: relative;
}
.quote-mark {
  font-family: var(--font-display);
  font-size: 5rem; line-height: 0.8;
  color: var(--lime); opacity: 0.4;
  position: absolute; top: 24px; left: 32px;
}
.quote-text {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500; color: var(--white);
  line-height: 1.55; letter-spacing: 0;
  margin-top: 24px; margin-bottom: 20px;
}
.quote-author { font-size: 0.8rem; color: var(--text-muted); font-weight: 500; }
.quote-author span { color: var(--lime); }

/* Checklist */
.check-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.check-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 0.9rem; color: var(--text-body); line-height: 1.55;
}
.check-list li::before {
  content: '';
  display: block; flex-shrink: 0;
  margin-top: 5px;
  width: 16px; height: 16px;
  background: var(--lime-dim);
  border: 1px solid var(--lime-border);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='6' fill='none'%3E%3Cpath d='M1 3l2 2 4-4' stroke='%23B6FF3B' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center;
}

/* ============================================================
   ██ FOR RIDERS PAGE
============================================================ */
.rider-hero-bg {
  background: var(--lime);
  border-radius: var(--r-xl);
  padding: 64px 56px;
  position: relative; overflow: hidden;
}
.rider-hero-bg h1 {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700; color: var(--navy-deep);
  letter-spacing: 0; line-height: 1.05;
  margin-bottom: 16px;
}
.rider-hero-bg p { color: rgba(3,14,32,0.65); font-size: 1rem; max-width: 440px; margin-bottom: 32px; }
.rider-hero-bg::after {
  content: '';
  position: absolute; bottom: -40px; right: -40px;
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(3,14,32,0.07), transparent 70%);
}
@media(max-width:767px){ .rider-hero-bg { padding: 40px 28px; } }

/* Benefit cards – horizontal */
.benefit-row {
  display: flex; align-items: flex-start; gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  transition: padding-left 0.2s;
}
.benefit-row:hover { padding-left: 8px; }
.benefit-row:last-child { border-bottom: none; }
.benefit-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--lime-dim); border: 1px solid var(--lime-border);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.benefit-body h4 {
  font-family: var(--font-display); font-size: 0.95rem; font-weight: 600;
  color: var(--white); margin-bottom: 5px;
}
.benefit-body p { font-size: 0.86rem; color: var(--text-body); margin: 0; line-height: 1.6; }

/* Area coverage grid */
.area-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 10px;
}
.area-tile {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 14px 16px;
  transition: all 0.2s;
  cursor: default;
}
.area-tile:hover { background: var(--lime-dim); border-color: var(--lime-border); }
.area-tile-name { font-family: var(--font-display); font-size: 0.85rem; font-weight: 600; color: var(--white); }
.area-tile-status { font-size: 0.68rem; color: var(--text-muted); margin-top: 3px; }
.area-tile:hover .area-tile-status { color: var(--lime); }

/* ============================================================
   ██ HOW IT WORKS PAGE
============================================================ */
.hiw-timeline {
  position: relative;
  padding-left: 60px;
}
.hiw-timeline::before {
  content: '';
  position: absolute; left: 18px; top: 0; bottom: 60px;
  width: 1px;
  background: linear-gradient(to bottom, var(--lime) 0%, rgba(182,255,59,0.1) 100%);
}
.hiw-item {
  position: relative;
  padding-bottom: 64px;
}
.hiw-item:last-child { padding-bottom: 0; }
.hiw-dot {
  position: absolute; left: -49px; top: 4px;
  width: 26px; height: 26px;
  background: var(--lime);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 0.7rem; font-weight: 700;
  color: var(--navy-deep);
  border: 3px solid var(--navy-deep);
  box-shadow: 0 0 0 2px var(--lime);
}
.hiw-phase {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--lime); margin-bottom: 8px;
}
.hiw-item h3 {
  font-family: var(--font-display); font-size: 1.8rem;
  font-weight: 700; color: var(--white); letter-spacing: 0;
  line-height: 1.2; margin-bottom: 12px;
}
.hiw-item p { font-size: 0.92rem; color: var(--text-body); max-width: 480px; line-height: 1.7; }
.hiw-card {
  margin-top: 24px;
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 24px;
  max-width: 420px;
}

/* Phases */
.phase-tabs {
  display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 48px;
}
.phase-tab {
  font-family: var(--font-body); font-size: 0.82rem; font-weight: 600;
  padding: 8px 18px; border-radius: var(--r-pill);
  background: var(--card-bg); border: 1px solid var(--border);
  color: var(--text-muted); cursor: default;
}
.phase-tab.now { background: var(--lime-dim); border-color: var(--lime-border); color: var(--lime); }

/* Tech illustration */
.tech-visual {
  background: var(--navy-mid); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 28px;
  height: 100%;
}
.tech-visual h4 {
  font-family: var(--font-display); font-size: 0.92rem; font-weight: 600;
  color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em;
  margin-bottom: 20px;
}
.flow-node {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px;
  background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  border-radius: var(--r-md); margin-bottom: 8px;
  font-size: 0.85rem; color: var(--white);
}
.flow-node-icon {
  width: 28px; height: 28px; flex-shrink: 0;
  background: var(--lime-dim); border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem;
}
.flow-arrow {
  text-align: center; color: var(--lime); font-size: 0.9rem; margin: 4px 0;
}

/* ============================================================
   ██ ABOUT PAGE
============================================================ */
.about-manifesto {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700; color: var(--white);
  letter-spacing: 0; line-height: 1.2;
}
.about-manifesto .dim { color: rgba(255,255,255,0.25); }
.about-manifesto .accent { color: var(--lime); }
html[data-theme="light"] .about-manifesto {
  color: #030E20;
}
html[data-theme="light"] .about-manifesto .dim {
  color: rgba(3,14,32,0.58);
}
html[data-theme="light"] .about-manifesto .accent {
  color: #22500B !important;
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}
@media(max-width:767px){ .mission-grid { grid-template-columns: 1fr; } }
.mission-cell {
  background: var(--navy-deep); padding: 44px 36px;
  transition: background 0.2s;
}
.mission-cell:hover { background: var(--navy-mid); }
.mission-cell h3 {
  font-family: var(--font-display); font-size: 1rem; font-weight: 600;
  color: var(--lime); text-transform: uppercase; letter-spacing: 0.06em;
  margin-bottom: 12px;
}
.mission-cell p { font-size: 0.9rem; color: var(--text-body); line-height: 1.7; margin: 0; }

/* Team / founder */
.founder-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.team-card {
  display: flex; gap: 20px; align-items: flex-start;
  padding: 28px;
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--r-lg);
}
.team-avatar {
  width: 56px; height: 56px; flex-shrink: 0;
  border-radius: var(--r-md);
  background: var(--lime);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 700;
  color: var(--navy-deep);
}
.team-info h4 { font-family: var(--font-display); font-size: 0.95rem; font-weight: 600; color: var(--white); margin-bottom: 3px; }
.team-info span { font-size: 0.78rem; color: var(--lime); font-weight: 500; }
.team-info p { font-size: 0.84rem; color: var(--text-body); margin-top: 10px; margin-bottom: 0; line-height: 1.6; }
@media(max-width:767px){
  .founder-grid { grid-template-columns: 1fr; }
  .team-card { padding: 24px; }
}

/* Values */
.values-stack { display: flex; flex-direction: column; }
.value-item {
  display: flex; align-items: center; gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
  transition: padding-left 0.2s;
}
.value-item:hover { padding-left: 8px; }
.value-item:last-child { border-bottom: none; }
.value-idx { font-family: var(--font-display); font-size: 0.72rem; font-weight: 600; color: var(--text-muted); min-width: 28px; }
.value-item h4 { font-family: var(--font-display); font-size: 0.95rem; font-weight: 600; color: var(--white); margin-bottom: 3px; }
.value-item p { font-size: 0.84rem; color: var(--text-body); margin: 0; line-height: 1.55; }

/* ============================================================
   RESPONSIVE UTILS
============================================================ */
@media(max-width:991px){
  .section-pad { padding: 72px 0; }
  .section-pad-lg { padding: 90px 0; }
}
@media(max-width:767px){
  .section-pad { padding: 56px 0; }
  .display-xl { font-size: 2.6rem; }
  .display-lg { font-size: 2rem; }
  .nav-links,.btn-nav { display: none; }
  .nav-hamburger { display: flex; }
}
@media(min-width:768px){
  .nav-mobile { display: none !important; }
}

/* ============================================================
   DJANGO WAITLIST OVERRIDES
   Keep the original Padi visual system, but make routes/auth real.
============================================================ */
.page { display: block; }

#mainNav,
#mainNav.scrolled {
  background: linear-gradient(90deg, rgba(255,255,255,0.62), rgba(255,255,255,0.78), rgba(255,255,255,0.58));
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(182,255,59,0.35);
  box-shadow:
    0 0 0 1px rgba(182,255,59,0.16),
    0 18px 70px rgba(182,255,59,0.18),
    0 12px 36px rgba(3,14,32,0.08);
}
#mainNav .nav-inner,
#mainNav.scrolled .nav-inner {
  margin: 10px 0;
  padding: 12px 18px;
  border: 1px solid rgba(182,255,59,0.32);
  border-radius: var(--r-pill);
  background: rgba(255,255,255,0.72);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.82),
    0 0 30px rgba(182,255,59,0.18);
}
.nav-logo { color: #030E20; }
.nav-links { margin: 0; padding: 0; }
.nav-links a { color: rgba(3,14,32,0.72); font-weight: 650; }
.nav-links a:hover,
.nav-links a.active {
  color: #030E20;
  background: rgba(3,14,32,0.06);
}
.nav-hamburger span { background: #030E20; }
.nav-auth { display:flex; align-items:center; gap:12px; flex-shrink:0; }
.nav-auth form { margin:0; }
.nav-login {
  color: rgba(3,14,32,0.72);
  font-size: 0.875rem;
  font-weight: 650;
  padding: 8px 10px;
  border-radius: var(--r-sm);
}
.nav-login:hover { color: #030E20; background: rgba(3,14,32,0.06); }
.mobile-logout { margin: 0; }
.mobile-logout .btn-lime-full { width: 100%; border: 0; }
.theme-toggle {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(3,14,32,0.1);
  border-radius: 50%;
  background: rgba(255,255,255,0.68);
  color: #030E20;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  box-shadow: 0 12px 30px rgba(3,14,32,0.08), 0 0 24px rgba(182,255,59,0.16);
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.theme-toggle:hover {
  transform: translateY(-1px);
  background: rgba(182,255,59,0.34);
  box-shadow: 0 16px 34px rgba(3,14,32,0.1), 0 0 34px rgba(182,255,59,0.26);
}
.theme-icon {
  display: none;
  width: 19px;
  height: 19px;
}
.theme-icon svg {
  width: 100%;
  height: 100%;
}
.theme-sun { display: block; }
html[data-theme="light"] .theme-sun { display: none; }
html[data-theme="light"] .theme-moon { display: block; }
.mobile-theme-toggle {
  width: 100%;
  height: auto;
  border-radius: var(--r-md);
  justify-content: flex-start;
  gap: 12px;
  padding: 14px 16px;
  margin-top: 10px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
}
.theme-toggle-label { display: inline-flex; }

.padi-sticker,
.mini-sticker {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(182,255,59,0.38);
  background:
    radial-gradient(circle at 30% 18%, rgba(255,255,255,0.88), transparent 32%),
    linear-gradient(145deg, rgba(182,255,59,0.42), rgba(255,255,255,0.08));
  box-shadow:
    0 14px 34px rgba(3,14,32,0.16),
    0 0 28px rgba(182,255,59,0.10),
    inset 0 1px 0 rgba(255,255,255,0.52);
}
.padi-sticker::before,
.mini-sticker::before {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: inherit;
  border: 1px solid rgba(255,255,255,0.18);
  pointer-events: none;
}
.padi-sticker::after,
.mini-sticker::after {
  content: '';
  position: absolute;
  inset: auto -20% -35% 18%;
  height: 70%;
  background: rgba(182,255,59,0.18);
  transform: rotate(-12deg);
  border-radius: 999px;
}
.padi-sticker svg,
.mini-sticker svg {
  position: relative;
  z-index: 1;
  width: 58%;
  height: 58%;
  color: var(--lime);
  filter: drop-shadow(0 4px 8px rgba(3,14,32,0.18));
}
.aud-card-rider .padi-sticker svg,
.toggle-btn.active .mini-sticker svg {
  color: var(--navy-deep);
}
.mini-sticker {
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  margin-right: 7px;
  vertical-align: middle;
}
.sticker-parcel,
.sticker-map {
  background:
    radial-gradient(circle at 26% 20%, rgba(255,255,255,0.82), transparent 30%),
    linear-gradient(145deg, rgba(182,255,59,0.52), rgba(6,27,58,0.18));
}
.sticker-rider,
.sticker-pin,
.sticker-network {
  background:
    radial-gradient(circle at 28% 18%, rgba(255,255,255,0.7), transparent 30%),
    linear-gradient(145deg, rgba(6,27,58,0.78), rgba(182,255,59,0.28));
}
.toggle-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.benefit-icon.padi-sticker {
  color: var(--lime);
  border-radius: 14px;
  font-size: 0;
}
.benefit-icon.padi-sticker svg {
  color: var(--lime);
}
.flow-node-icon.padi-sticker {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  font-size: 0;
}
.flow-node-icon.padi-sticker svg {
  color: var(--lime);
  width: 62%;
  height: 62%;
}

.btn-lime,
.btn-lime:hover,
.btn-nav,
.nav-mobile .btn-lime-full,
.btn-aud-biz,
.toggle-btn.active,
.padi-message,
.float-badge.lime-badge {
  color: #030E20 !important;
}
.btn-aud-rider {
  background: #030E20;
  color: var(--lime);
}
.btn-aud-rider:hover { background: #061B3A; }
.aud-card-rider h3,
.form-sidebar h2,
.sidebar-stat-val,
.auth-copy-panel,
.auth-copy-panel h1,
.auth-copy-panel h2,
.dashboard-status,
.dashboard-status h2 {
  color: #030E20;
}
html[data-theme="light"] .dest-tag,
html[data-theme="light"] .float-badge.lime-badge,
html[data-theme="light"] .aud-card-rider h3,
html[data-theme="light"] .btn-aud-biz,
html[data-theme="light"] .form-sidebar h2,
html[data-theme="light"] .sidebar-stat-val,
html[data-theme="light"] .toggle-btn.active,
html[data-theme="light"] .final-cta h2,
html[data-theme="light"] .bento-cell.lime-cell h3,
html[data-theme="light"] .bento-cell.lime-cell .bento-number,
html[data-theme="light"] .rider-hero-bg h1,
html[data-theme="light"] .hiw-dot,
html[data-theme="light"] .team-avatar,
html[data-theme="light"] .auth-copy-panel,
html[data-theme="light"] .auth-copy-panel h1,
html[data-theme="light"] .auth-copy-panel h2,
html[data-theme="light"] .dashboard-status,
html[data-theme="light"] .dashboard-status h2,
html[data-theme="light"] .padi-message {
  color: #030E20 !important;
}
html[data-theme="light"] .aud-card-rider .padi-sticker svg,
html[data-theme="light"] .toggle-btn.active .mini-sticker svg {
  color: #030E20;
}
html[data-theme="light"] .btn-ghost {
  color: #071624;
  border-color: rgba(7,22,36,0.14);
}
html[data-theme="light"] .btn-ghost:hover {
  color: #071624;
  background: rgba(7,22,36,0.055);
  border-color: rgba(7,22,36,0.20);
}
html[data-theme="light"] .f-label {
  color: rgba(7,22,36,0.58);
}
html[data-theme="light"] .f-input,
html[data-theme="light"] .f-select {
  background: rgba(7,22,36,0.045);
  border-color: rgba(7,22,36,0.12);
  color: #071624;
}
html[data-theme="light"] .f-input::placeholder {
  color: rgba(7,22,36,0.34);
}
html[data-theme="light"] .f-select {
  background-color: rgba(7,22,36,0.045);
}
html[data-theme="light"] .f-select option {
  background: #FFFFFF;
  color: #071624;
}
html[data-theme="light"] .type-toggle,
html[data-theme="light"] .dr-bar-wrap {
  background: rgba(7,22,36,0.055);
}
html[data-theme="light"] footer {
  background: #030E20;
  border-color: rgba(182,255,59,0.18);
}
html[data-theme="light"] footer .footer-brand-name,
html[data-theme="light"] footer .footer-copy,
html[data-theme="light"] footer .footer-signal {
  color: rgba(255,255,255,0.88);
}
html[data-theme="light"] footer .footer-desc,
html[data-theme="light"] footer .footer-col h6 {
  color: rgba(255,255,255,0.48);
}
html[data-theme="light"] footer .footer-col ul li a {
  color: rgba(255,255,255,0.62);
}
html[data-theme="light"] .visual-caption h3,
html[data-theme="light"] .visual-caption span,
html[data-theme="light"] .hero-photo-tile span {
  color: #FFFFFF;
}
html[data-theme="light"] .visual-caption span {
  color: var(--lime);
}
html[data-theme="light"] .image-panel::after,
html[data-theme="light"] .visual-card::after {
  background: linear-gradient(180deg, transparent 30%, rgba(3,14,32,0.74));
}
html[data-theme="light"] .label-chip,
html[data-theme="light"] .lime-word,
html[data-theme="light"] .pill-sep,
html[data-theme="light"] .dr-badge.active,
html[data-theme="light"] .form-mini-heading,
html[data-theme="light"] .info-cell span,
html[data-theme="light"] .mini-route-list span,
html[data-theme="light"] .quote-author span,
html[data-theme="light"] .area-tile:hover .area-tile-status,
html[data-theme="light"] .step-content span,
html[data-theme="light"] .phase-tab.now,
html[data-theme="light"] .flow-arrow,
html[data-theme="light"] .about-manifesto .accent,
html[data-theme="light"] .team-info span,
html[data-theme="light"] .auth-switch a,
html[data-theme="light"] .contact-tile a,
html[data-theme="light"] [style*="color:var(--lime)"],
html[data-theme="light"] [style*="color: var(--lime)"] {
  color: #22500B !important;
}
html[data-theme="light"] [style*="color:var(--navy-mid)"],
html[data-theme="light"] [style*="color: var(--navy-mid)"] {
  color: #030E20 !important;
}
html[data-theme="light"] .visual-caption span {
  color: var(--lime) !important;
}
html[data-theme="light"] .hero-photo-tile span {
  color: #071624;
  background: rgba(255,255,255,0.78);
}

.form-mini-heading {
  color: var(--lime);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 4px 0 18px;
}
.account-fields { margin-bottom: 14px; }
.f-error.server-error { display: block; }
.form-alert {
  color: #ff8a8a;
  background: rgba(255,107,107,0.08);
  border: 1px solid rgba(255,107,107,0.22);
  border-radius: var(--r-md);
  padding: 12px 14px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 18px;
}
textarea.f-input { min-height: 94px; resize: vertical; }

.message-stack {
  position: fixed;
  right: 22px;
  top: 88px;
  z-index: 1200;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: min(380px, calc(100% - 44px));
}
.padi-message {
  background: var(--lime);
  color: var(--navy-deep);
  border-radius: var(--r-md);
  padding: 14px 16px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.2);
  font-weight: 700;
}

.auth-shell { padding: 150px 0 100px; }
.auth-card {
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
}
.auth-copy-panel {
  background: var(--lime);
  color: var(--navy-deep);
  padding: 52px 44px;
  min-height: 100%;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}
.auth-copy-panel h1,
.auth-copy-panel h2 {
  font-family: var(--font-display);
  color: var(--navy-deep);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.05;
}
.auth-copy-panel p { color: rgba(3,14,32,0.65); }
.auth-form-panel { padding: 52px 44px; }
.auth-form-panel .btn-lime { width:100%; justify-content:center; margin-top: 10px; }
.auth-switch { text-align:center; font-size:0.82rem; color:var(--text-muted); margin-top:16px; }
.auth-switch a { color:var(--lime); font-weight:700; }

.contact-grid {
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:16px;
}
.contact-tile {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
}
.contact-tile h3 { color: var(--white); margin-bottom: 8px; }
.contact-tile a { color: var(--lime); font-weight:700; }

.dashboard-shell { padding: 150px 0 90px; }
.dashboard-card {
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 40px;
}
.dashboard-status {
  background: var(--lime);
  border-radius: var(--r-lg);
  color: var(--navy-deep);
  padding: 34px;
}
.dashboard-status h2 { color: var(--navy-deep); }
.dashboard-status p { color: rgba(3,14,32,0.68); }
.profile-list {
  display:grid;
  gap: 12px;
  margin: 24px 0 0;
}
.profile-line {
  display:grid;
  grid-template-columns: 160px 1fr;
  gap:16px;
  padding-bottom:12px;
  border-bottom:1px solid var(--border);
}
.profile-line dt {
  color: var(--text-muted);
  font-size:0.78rem;
  text-transform:uppercase;
  letter-spacing:0.06em;
  font-weight:700;
}
.profile-line dd { margin:0; color:var(--white); font-weight:650; }

.hero-photo-tile {
  position: absolute;
  right: -8px;
  bottom: -32px;
  width: 190px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: rgba(255,255,255,0.08);
  box-shadow: 0 22px 60px rgba(0,0,0,0.32), 0 0 34px rgba(182,255,59,0.18);
}
.hero-photo-tile img {
  width: 100%;
  height: 128px;
  object-fit: cover;
}
.hero-photo-tile span {
  display:block;
  padding: 10px 12px;
  color: var(--white);
  font-size: 0.76rem;
  font-weight: 700;
}

.visual-showcase {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-auto-rows: minmax(260px, auto);
  gap: 16px;
}
.visual-card {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  background: var(--navy-mid);
  box-shadow: 0 24px 70px rgba(0,0,0,0.24);
}
.visual-card.visual-large {
  grid-row: span 2;
  min-height: 570px;
}
.visual-card img,
.image-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.visual-card::after,
.image-panel::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(3,14,32,0.72));
  pointer-events: none;
}
.visual-caption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 20px;
  z-index: 2;
}
.visual-caption span {
  display:inline-flex;
  color: var(--lime);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}
.visual-caption h3 {
  font-family: var(--font-display);
  color: var(--white);
  font-size: 1.35rem;
  line-height: 1.1;
  letter-spacing: 0;
  margin: 0;
}
.image-panel {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  border-radius: var(--r-xl);
  border: 1px solid var(--border);
  background: var(--navy-mid);
  box-shadow: 0 24px 70px rgba(0,0,0,0.22);
}
.image-panel.compact-image { min-height: 260px; }
.hero-image-panel { min-height: 420px; }
.route-stack {
  height: 100%;
  padding: 36px;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  background: var(--card-bg);
}
.info-grid {
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 24px;
}
.info-cell,
.mini-route-list div {
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  background: rgba(255,255,255,0.045);
  padding: 20px;
}
.info-cell span,
.mini-route-list span {
  display:block;
  color: var(--lime);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}
.info-cell h3 {
  font-family: var(--font-display);
  font-size: 1.08rem;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: 0;
}
.info-cell p { font-size: 0.84rem; margin: 0; }
.mini-route-list {
  display:grid;
  gap: 12px;
  margin-top: 24px;
}
.mini-route-list strong {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0;
}

.display-heading,
.form-sidebar h2,
.auth-copy-panel h1,
.auth-copy-panel h2,
.route-stack h2,
.about-manifesto {
  letter-spacing: 0;
}

*,
*::before,
*::after {
  letter-spacing: 0 !important;
}
.display-xl { font-size: 5.7rem; }
.display-lg { font-size: 4rem; }
.display-md { font-size: 2.8rem; }
.display-sm { font-size: 2rem; }
.lead-text { font-size: 1.08rem; }
.form-sidebar h2,
.auth-copy-panel h1,
.auth-copy-panel h2 { font-size: 2.35rem; }
.final-cta h2 { font-size: 3.25rem; }
.page-hero .display-lg { font-size: 4rem; }
.rider-hero-bg h1 { font-size: 4rem; }
.about-manifesto { font-size: 3.85rem; }
.quote-text { font-size: 1.7rem; }

@media(max-width:991px){
  .nav-auth { display:none; }
  .contact-grid { grid-template-columns:1fr; }
  #mainNav .nav-inner,
  #mainNav.scrolled .nav-inner { border-radius: var(--r-lg); }
  .visual-showcase { grid-template-columns: 1fr; }
  .visual-card.visual-large { min-height: 420px; }
  .hero-photo-tile { position: relative; right: auto; bottom: auto; width: 100%; margin-top: 18px; }
  .hero-photo-tile img { height: 190px; }
  .display-xl { font-size: 4.2rem; }
  .display-lg,
  .page-hero .display-lg,
  .rider-hero-bg h1,
  .about-manifesto { font-size: 3.2rem; }
  .display-md { font-size: 2.35rem; }
}
@media(max-width:767px){
  body { max-width: 100%; }
  .row { --bs-gutter-x: 0; }
  .auth-shell,
  .dashboard-shell { padding: 120px 0 64px; }
  .auth-copy-panel,
  .auth-form-panel,
  .dashboard-card { padding: 34px 26px; }
  .profile-line { grid-template-columns:1fr; gap:2px; }
  .message-stack { right:14px; top:78px; width:calc(100% - 28px); }
  .info-grid { grid-template-columns: 1fr; }
  .route-stack { padding: 26px; }
  .visual-card,
  .visual-card.visual-large,
  .image-panel { min-height: 320px; }
  .visual-caption h3 { font-size: 1.08rem; }
  .display-xl { font-size: 2.6rem; }
  .display-lg,
  .page-hero .display-lg,
  .rider-hero-bg h1,
  .about-manifesto { font-size: 2.2rem; }
  .display-md,
  .final-cta h2 { font-size: 2rem; }
  .form-sidebar h2,
  .auth-copy-panel h1,
  .auth-copy-panel h2 { font-size: 1.9rem; }
  .quote-text { font-size: 1.25rem; }
  #mainNav .container { padding-left: 14px; padding-right: 14px; }
  #mainNav .nav-inner,
  #mainNav.scrolled .nav-inner {
    width: 100%;
    max-width: 100%;
    gap: 12px;
    padding: 10px 14px;
  }
  .nav-mobile {
    padding: 96px 24px max(34px, env(safe-area-inset-bottom));
  }
  .nav-mobile a {
    font-size: 1.45rem;
    padding: 12px 0;
  }
  .nav-mobile .btn-lime-full {
    margin-top: 8px;
    padding: 15px;
    flex-shrink: 0;
  }
  .mobile-theme-toggle {
    margin-top: 8px;
    padding: 12px 14px;
    flex-shrink: 0;
    font-size: 1rem;
  }
  .hero-cta-row,
  .cta-pair {
    flex-wrap: nowrap !important;
    align-items: stretch;
    gap: 8px !important;
    width: 100%;
  }
  .hero-cta-row > .btn-lime,
  .hero-cta-row > .btn-ghost,
  .cta-pair > .btn-lime,
  .cta-pair > .btn-ghost,
  .cta-pair > .btn-aud-rider {
    flex: 1 1 0;
    min-width: 0;
    justify-content: center;
    white-space: nowrap;
    padding: 12px 10px;
    font-size: 0.78rem;
    line-height: 1;
  }
  .hero-cta-row .btn-arrow,
  .cta-pair .btn-arrow {
    font-size: 0.95rem;
  }
  .route-visual,
  .route-card-outer,
  .visual-showcase,
  .pills-strip,
  .final-cta,
  .page-hero {
    max-width: 100%;
    overflow-x: clip;
  }
  .route-card-outer {
    padding: 22px;
    border-radius: 22px;
  }
  .route-map { height: 230px; }
  .route-map-caption { grid-template-columns: 1fr; }
  .route-savings { gap: 8px; }
  .rs-value { font-size: 1.18rem; }
  .float-badge {
    position: static;
    display: inline-flex;
    width: fit-content;
    margin: 0 8px 10px 0;
  }
  .hero-photo-tile {
    max-width: 100%;
  }
}

