:root {
  --blue-600: #2d63f0;
  --blue-700: #2554cc;
  --text-on-blue: #ffffff;
  --text-muted: #e6edff;
  --surface: rgba(255, 255, 255, 0.12);
  --focus-ring: #fff;
  --nav-bg: #0b0b0b;
  --nav-text: #0f2a6b;
  --nav-height: 72px;
}

* { box-sizing: border-box; }

html, body { height: 100%; overflow-x: hidden; }

body {
  margin: 0;
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, 'Apple Color Emoji', 'Segoe UI Emoji';
  color: #0f2a6b;
  background: #ffffff;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Rounded navbar */
.site-nav { position: sticky; top: 0; z-index: 50; background: #ffffff; padding: 12px 0; height: var(--nav-height); display: grid; align-items: center; }
.site-nav.is-scrolled { box-shadow: 0 10px 28px rgba(0,0,0,0.08); }
.nav-container {
  width: 100vw;
  margin: 0;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr auto auto; /* brand | links | right controls */
  align-items: center;
  column-gap: 28px;
  margin-left: calc(50% - 50vw);
}
.nav-brand {
  background: #1a1a1a;
  color: #ffffff;
  padding: 10px 16px;
  border-radius: 9999px;
  border: 2px solid #ffffff;
  box-shadow: 0 0 0 2px #1a1a1a inset;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  justify-self: start; /* prevent stretching in grid */
  white-space: nowrap;
}
.nav-links { display: flex; gap: 40px; justify-content: center; }
.nav-links a { color: #0f2a6b; font-weight: 700; font-size: 16px; letter-spacing: 0.01em; position: relative; }
.nav-links a::after { content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 2px; background: transparent; transform: scaleX(0); transform-origin: center; transition: transform 200ms ease, background-color 200ms ease; }
.nav-links a:hover::after { background: #0f2a6b; transform: scaleX(0.5); }
.nav-links a.is-active { color: #1b3aa6; }
.nav-links a.is-active::after { background: #1b3aa6; transform: scaleX(1); }
/* Right-aligned store badge in navbar */
.nav-store { justify-self: end; }

/* Tweak Google Play badge when used in the navbar */
.nav-store.store-badge {
  background: #111827;
  border-color: #111827;
  color: #ffffff;
  padding: 8px 12px;
  border-radius: 9999px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.12), 0 0 0 1px rgba(0,0,0,0.1) inset;
}
.nav-store .logo { width: 18px; height: 18px; }
.nav-store .label small { font-size: 10px; opacity: 0.85; }
.nav-store .label strong { font-size: 13px; }
.nav-store:hover { transform: translateY(-1px); filter: brightness(1.06); }
.nav-store:focus-visible { outline: 3px solid #111; outline-offset: 2px; }
@media (max-width: 720px) {
  .nav-links { display: none; }
  .nav-brand { font-size: 14px; padding: 8px 12px; }
  .site-nav { padding: 8px 0; }
  .nav-store { transform: scale(0.92); transform-origin: right center; }
}
@media (max-width: 720px) {
  .nav-container { grid-template-columns: auto 1fr auto; padding-left: 12px; padding-right: 6px; }
  .nav-brand { justify-self: start; }
  .nav-toggle { justify-self: end; margin-right: -2px; }
}

/* Mobile nav toggle and panel */
.nav-toggle { display: none; background: transparent; color: #0f2a6b; border: none; border-radius: 0; padding: 10px; line-height: 0; cursor: pointer; justify-self: end; }
.nav-toggle svg { display: block; }

.mobile-nav { position: fixed; inset: 0; z-index: 1000; display: grid; place-items: end; background: transparent; opacity: 1; visibility: hidden; transition: visibility .25s ease; }
.mobile-nav.is-open { visibility: visible; }
.mobile-nav-panel { width: min(92vw, 420px); height: 100%; background: #0b0f14; color: #e5e7eb; box-shadow: -10px 0 30px rgba(0,0,0,0.25); transform: translateX(100%); transition: transform .3s ease; padding: 20px; display: grid; grid-template-rows: auto 1fr auto; gap: 14px; }
.mobile-nav.is-open .mobile-nav-panel { transform: translateX(0); }
.mobile-nav-close { justify-self: end; width: 44px; height: 44px; border-radius: 9999px; background: rgba(255,255,255,0.1); color: #fff; border: 1px solid rgba(255,255,255,0.25); cursor: pointer; font-size: 28px; display: grid; place-items: center; }
.mobile-menu { display: grid; gap: 14px; padding: 10px 0; }
.mobile-menu a { color: #e5e7eb; font-weight: 700; font-size: 18px; padding: 10px 6px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.mobile-menu a:last-child { border-bottom: none; }
.mobile-store { padding-top: 10px; display: grid; justify-content: start; }

/* Responsive visibility */
@media (max-width: 720px) {
  .nav-links { display: none; }
  .nav-toggle { display: inline-grid; place-items: center; }
  .nav-store { display: none !important; }
}

/* Blue hero section with grain overlay */
.hero-section {
  position: relative;
  min-height: 90vh;
  background: url('../images/main.png') center/cover no-repeat;
  color: var(--text-on-blue);
  overflow: hidden;
  border-bottom-left-radius: 28px;
  border-bottom-right-radius: 28px;
  padding-top: 104px;
  padding-bottom: 24px;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url('data:image/svg+xml;utf8,\
    <svg xmlns="http://www.w3.org/2000/svg" width="160" height="160" viewBox="0 0 160 160">\
      <filter id="n">\
        <feTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="2" stitchTiles="stitch"/>\
        <feColorMatrix type="saturate" values="0"/>\
        <feComponentTransfer>\
          <feFuncA type="table" tableValues="0 0 0 0 0 0 0.12 0"/>\
        </feComponentTransfer>\
      </filter>\
      <rect width="100%" height="100%" filter="url(%23n)"/>\
    </svg>');
  opacity: 0.35;
  mix-blend-mode: soft-light;
}

/* Container adjustments inside hero for better spacing */
.hero-section .container {
  padding-top: 24px;
  padding-bottom: 72px;
}

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

.container {
  width: 90vw;
  max-width: none;
  margin: auto;
  padding: 24px;
}

header.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 0.08em;
}

.brand-icon {
  width: 22px;
  height: 22px;
  display: inline-block;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 9999px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 1.2px;
  line-height: 1;
  background: transparent;
  color: var(--text-on-blue);
  transition: transform 220ms ease, background-color 220ms ease, color 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
  cursor: pointer;
}

.btn-primary {
  background: #ffffff;
  color: #0f2a6b;
  border-color: #ffffff;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.btn-primary:hover { transform: translateY(-1px); }

.btn-secondary {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255,255,255,0.55);
  backdrop-filter: saturate(140%) blur(2px);
}
.btn-secondary:hover { border-color: #ffffff; }

.btn .icon {
  width: 16px;
  height: 16px;
  display: inline-block;
}

.btn:focus-visible {
  outline: 3px solid var(--focus-ring);
  outline-offset: 3px;
}

/* Landing section carousel (full-bleed) */
.landing-section { background: transparent; color: #fff; padding: 0; }
.landing-carousel { position: relative; }
  .landing-track {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  height: 100vh;
  overflow: hidden;
  border-radius: 0 0 20px 20px;
}
.landing-track{ height: 100svh; }
@supports (height: 100dvh) {
  .landing-track{ height: 100dvh; }
}
.landing-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: none;
  display: grid;
  align-items: end; /* push content to bottom */
  justify-items: center;
  color: #fff;
}
.landing-slide.is-active { opacity: 1; transform: none; }
.landing-slide { background-size: cover; background-position: center center; background-repeat: no-repeat; }
.landing-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0.35), rgba(0,0,0,0.5)); z-index: 1; }
.landing-content { position: relative; z-index: 2; text-align: center; padding: 0 24px; max-width: 1100px; margin-bottom: 88px; }
.landing-title { margin: 0 0 14px; font-weight: 800; letter-spacing: -0.01em; line-height: 1.04; font-size: clamp(36px, 7vw, 88px); }
.landing-sub { margin: 0 0 26px; color: #e6edff; font-size: clamp(14px, 2vw, 18px); }
.landing-cta { box-shadow: 0 10px 30px rgba(0,0,0,0.25); }

.landing-controls { position: absolute; left: 0; right: 0; bottom: 22px; display: flex; align-items: center; justify-content: center; gap: 12px; z-index: 10; }
.landing-btn { width: 36px; height: 36px; border-radius: 9999px; background: rgba(255,255,255,0.08); color: #fff; border: 1px solid rgba(255,255,255,0.25); display: grid; place-items: center; }
.landing-btn svg { width: 16px; height: 16px; }
.landing-btn:hover { background: rgba(255,255,255,0.16); }
.landing-dots { display: inline-flex; gap: 8px; align-items: center; pointer-events: auto; }
.landing-dots button { position: relative; width: 8px; height: 8px; border-radius: 9999px; background: rgba(255,255,255,0.35); border: none; overflow: hidden; }
.landing-dots button[aria-selected="true"] { width: 28px; height: 8px; background: rgba(255,255,255,0.2); }
.landing-dots .dot-progress { position: absolute; inset: 0; background: #ffffff; transform-origin: left center; transform: scaleX(0); }

@media (max-width: 640px) {
  .landing-track { height: 95svh; }
  .landing-content { padding: 0 16px; margin-bottom: 72px; }
  .landing-controls { gap: 10px; }
  .landing-btn { width: 32px; height: 32px; }
  .landing-btn svg { width: 14px; height: 14px; }
  .landing-dots { gap: 6px; }
  .landing-dots button { width: 6px; height: 6px; }
  .landing-dots button[aria-selected="true"] { width: 22px; height: 6px; }
}
.hero {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  gap: 32px;
  padding-top: 16px;
  min-height: 0;
}

.hero-copy {
  max-width: 720px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  opacity: 0.9;
  margin-bottom: 16px;
  font-weight: 600;
  letter-spacing: 0.8px;
}

.squiggle {
  width: 100px;
  height: 14px;
  opacity: 1;
}

h1.hero-title {
  margin: 0 0 28px;
  font-weight: 200;
  letter-spacing: 0.04em;
  line-height: 1.06;
  font-size: clamp(44px, 7.2vw, 84px);
}

.hero-sub {
  margin: 0 0 44px;
  color: var(--text-muted);
  font-size: clamp(20px, 2.2vw, 26px);
  letter-spacing: 0.03em;
  max-width: 62ch;
}

.cta-row { display: flex; gap: 28px; flex-wrap: wrap; }

.store-badges {
  display: flex;
  gap: 16px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.6);
  color: #ffffff;
  text-decoration: none;
  background: rgba(255,255,255,0.08);
  box-shadow: 0 4px 14px rgba(0,0,0,0.18);
  transition: transform 200ms ease, background-color 200ms ease, border-color 200ms ease;
}

.store-badge:hover { transform: translateY(-1px); border-color: #ffffff; background: rgba(255,255,255,0.12); }

.store-badge .logo { width: 22px; height: 22px; display: inline-block; }

.store-badge .label {
  display: grid;
  line-height: 1.05;
}
.store-badge .label small {
  font-size: 11px;
  opacity: 0.9;
}
.store-badge .label strong {
  font-size: 15px;
}

.badge-google { border-color: rgba(255,255,255,0.55); }
.badge-apple { border-color: rgba(255,255,255,0.55); }


/* Footer badge placeholder spot (bottom-right) could go here if needed */

@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; gap: 32px; padding-top: 24px; }

  header.navbar { gap: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  .btn, .hero-art { transition: none; transform: none; }
} 

.mission-section {
  background: #ffffff;
  color: #1f2d3d;
  padding: 96px 0 120px;
}

.mission-content {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

.pill {
  display: inline-block;
  padding: 14px 24px;
  border-radius: 9999px;
  background: #e9efff;
  color: #2d63f0;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.6px;
}

.section-title {
  font-size: clamp(28px, 4.2vw, 44px);
  line-height: 1.28;
  font-weight: 700;
  margin: 18px auto 44px;
  color: #2a3240;
}

.mission-illustration {
  display: grid;
  place-items: center;
}

.illustration {
  max-width: 820px;
  width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  .mission-section { padding: 72px 0 96px; }
  .section-title { margin-bottom: 32px; }
} 

/* Mission flex gallery (scoped) */
.mission-section .flex-gallery {
  display: flex;
  flex: 1;
  width: 90vw;
  max-width: none;
  padding: 0 3rem;
  margin-left: calc(50% - 45vw);
  margin-right: calc(50% - 45vw);
  overflow: auto;
  align-items: flex-start;
  justify-content: center;
  gap: 16px;
}
.mission-section .card {
  flex: 1 1 1%;
  position: relative;
  opacity: 0.2;
  transition: flex 600ms cubic-bezier(0.25, 1, 0.5, 1), opacity 250ms ease;
}
.mission-section .card:hover { flex-basis: 30%; }
.mission-section .card.is-expanded { flex-basis: 30%; }
.mission-section .card__inner {
  margin: 0.25rem;
  background: #fff;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.mission-section .card picture {
  width: 100%;
  /* Reduce fixed height to avoid upscaling low-res images; make it responsive */
  height: 0;
  padding-bottom: clamp(320px, 45vh, 520px);
  overflow: hidden;
  position: relative;
}
.mission-section .card picture img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.mission-section .card.is-active,
.mission-section .card:hover { opacity: 1; }
.mission-section .card:nth-child(2),
.mission-section .card:nth-child(5),
.mission-section .card:nth-child(9) { margin-top: 0; }
.mission-section .card:nth-child(2),
.mission-section .card:nth-child(4),
.mission-section .card:nth-child(6),
.mission-section .card:nth-child(8),
.mission-section .card:nth-child(10) { margin-top: 2.5%; }
.mission-section .card:nth-child(3),
.mission-section .card:nth-child(7) { margin-top: 5%; } 

.mission-cta { margin-top: 28px; }
.mission-cta .btn-read-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 9999px;
  border: 1px solid #2d63f0;
  background: #2d63f0;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.6px;
  text-decoration: none;
  transition: transform 220ms ease, background-color 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}
.mission-cta .btn-read-more:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
} 

.mission-mobile-image { display: none; }
.mission-mobile-image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
}

@media (max-width: 768px) {
  .mission-section .flex-gallery { display: none; }
  .mission-mobile-image {
    display: block;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }
  .mission-mobile-image img { border-radius: 0; width: 100%; height: auto; }
} 

/* Features section */
.features-section {
  background: #f6f8fd;
  color: #1f2d3d;
  padding: 96px 0 0;
}

.features-content {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.features-section .section-title {
  margin-top: 12px;
  margin-bottom: 12px;
}
.features-section .section-sub {
  margin: 0 auto 32px;
  max-width: 72ch;
  color: #475569;
  font-size: 16px;
  line-height: 1.6;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  perspective: 1000px;
  align-items: stretch;
}

.feature-card {
  background: #ffffff;
  border: 1px solid rgba(15, 42, 107, 0.08);
  border-radius: 16px;
  padding: 22px 20px 24px;
  text-align: left;
  box-shadow: 0 10px 24px rgba(0,0,0,0.06);
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
  transform-style: preserve-3d;
  will-change: transform, box-shadow;
}

.feature-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(0,0,0,0.08);
  border-color: rgba(45, 99, 240, 0.35);
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(45, 99, 240, 0.08);
  display: grid;
  place-items: center;
  margin-bottom: 14px;
}

.feature-icon svg {
  width: 22px;
  height: 22px;
}

.feature-title {
  margin: 0 0 6px;
  font-size: 18px;
  line-height: 1.25;
  color: #1f2d3d;
}

.feature-desc {
  margin: 0;
  color: #4b5563;
  font-size: 15px;
  line-height: 1.55;
}

.feature-points {
  list-style: none;
  padding: 0;
  margin: 12px 0 10px;
  display: grid;
  gap: 8px;
}
.feature-points li {
  position: relative;
  padding-left: 22px;
  color: #334155;
  font-size: 14px;
  line-height: 1.5;
}
.feature-points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--blue-600);
  font-weight: 800;
}

.feature-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  color: var(--blue-600);
  font-weight: 600;
}
.feature-cta .icon {
  width: 16px;
  height: 16px;
}
.feature-cta:hover { text-decoration: underline; }

@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
  .features-grid { grid-template-columns: 1fr; }
} 

/* Full-bleed features map */
.features-map {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-top: 12px;
  height: clamp(320px, 60vh, 720px);
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.06);
}
.features-map .map-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: center center;
}

@media (max-width: 640px) {
  .features-map { height: clamp(240px, 44vh, 520px); }
} 

/* Features carousel (dark, full-bleed) */
.features-carousel {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-top: -24px; /* cancel parent container top padding to remove gap with map */
  padding: clamp(40px, 7vw, 88px) 24px;
  background: #0b0f14;
  color: #ffffff;
  text-align: center;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
  overflow: hidden;
}
.carousel-track {
  position: relative;
  overflow: hidden;
  max-width: 1200px;
  margin: 0 auto;
}

/* Fixed height on desktop to prevent content-based resizing */
@media (min-width: 641px) {
  .carousel-track { height: clamp(520px, 58vh, 780px); }
}

/* Prevent overlap on small screens */
@media (max-width: 640px) {
  .carousel-track { display: flex; flex-direction: column; }
  .carousel-slide { position: relative; }
  .features-carousel { padding-bottom: 24px; }
  .carousel-controls { margin-top: 16px; }
}

.carousel-slide {
  width: 100%;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 320ms ease, transform 320ms ease;
  position: absolute;
  inset: 0;
  padding: 0;
}
.carousel-slide.is-active { opacity: 1; transform: translateY(0); position: relative; }

.slide-kicker {
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #67e8f9;
  opacity: 0.9;
}
.slide-title {
  margin: 0 0 24px;
  font-size: clamp(36px, 6vw, 72px);
  line-height: 1.08;
  font-weight: 800;
  color: #ffffff;
}
.slide-desc {
  margin: 0 auto 18px;
  color: #c6d0e8;
  font-size: clamp(16px, 1.6vw, 20px);
  line-height: 1.65;
  max-width: 82ch;
}
.slide-more {
  margin: 0 auto 24px;
  color: #9fb2d3;
  font-size: clamp(14px, 1.4vw, 18px);
  line-height: 1.7;
  max-width: 80ch;
}
.slide-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #34d399;
  font-weight: 700;
}
.slide-cta:hover { text-decoration: underline; }

.slide-list {
  margin: 0 auto 22px;
  padding: 0;
  list-style: none;
  max-width: 880px;
  text-align: left;
}
.slide-list li {
  position: relative;
  padding-left: 22px;
  color: #cfe0ff;
  line-height: 1.7;
  font-size: clamp(14px, 1.4vw, 18px);
}
.slide-list li + li { margin-top: 8px; }
.slide-list li::before {
  content: "•";
  position: absolute;
  left: 6px;
  top: 0;
  color: #67e8f9;
  font-size: 18px;
  line-height: 1;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 36px;
}
.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 9999px;
  background: transparent;
  color: #34d399;
  border: 1px solid rgba(52, 211, 153, 0.5);
  display: grid;
  place-items: center;
}
.carousel-btn:hover { background: rgba(52, 211, 153, 0.08); }
.carousel-dots { display: inline-flex; gap: 10px; align-items: center; }
.carousel-dots button {
  width: 8px; height: 8px;
  border-radius: 9999px;
  background: rgba(52, 211, 153, 0.25);
  border: none;
}
.carousel-dots button[aria-selected="true"] { background: #34d399; width: 10px; height: 10px; }

@media (max-width: 640px) {
  .slide-title { font-size: clamp(28px, 10vw, 40px); }
  .slide-list, .slide-more { display: none; }
  .carousel-controls { margin-top: 20px; }
  .features-section .container { padding-left: 16px; padding-right: 16px; }
  .features-carousel { padding: 20px 16px 18px; margin-top: -12px; }
  .slide-kicker { margin-bottom: 8px; }
  .slide-title { margin-bottom: 12px; }
  .slide-desc { margin-bottom: 10px; }
} 

/* Remove extra bottom padding after the carousel container */
.features-section > .container:last-of-type {
  padding-bottom: 0;
} 

/* Earn section spacing */
.earn-section {
  background: #ffffff;
  padding: 120px 0 40px;
}

@media (max-width: 768px) {
  .earn-section {
    padding: 80px 0 40px;
  }
} 

/* FAQ Section */
.faq-section { background: #f8fafc; padding: 0 0 clamp(64px, 8vw, 100px); margin-top: 0; }
.faq-title { margin: 0 0 20px; font-size: clamp(28px, 4vw, 44px); font-weight: 800; color: #0b0f14; }
.faq-list { max-width: 1000px; margin: 0 auto; }
.faq-item { border-top: 1px solid rgba(15, 23, 42, 0.08); }
.faq-item:last-child { border-bottom: 1px solid rgba(15, 23, 42, 0.08); }
.faq-question {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 18px 0;
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 700;
  color: #111827;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.faq-question::after {
  content: "+";
  font-weight: 800;
}
.faq-question[aria-expanded="true"]::after { content: "−"; }
.faq-answer { max-height: 0; overflow: hidden; padding: 0; color: #374151; font-size: 15px; line-height: 1.7; transition: max-height 320ms ease, padding 200ms ease; }
.faq-answer.is-open { padding: 8px 0 18px; }
.faq-answer ol, .faq-answer ul { margin: 8px 0 0 20px; }

/* Waitlist section */
.waitlist-section { background: #ffffff; padding: clamp(64px, 8vw, 96px) 0; }
.waitlist-title { margin: 0 0 28px; text-align: center; font-size: clamp(32px, 4.6vw, 48px); font-weight: 800; color: #0b0f14; letter-spacing: -0.01em; }
.waitlist-steps { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; max-width: 1100px; margin: 0 auto 28px; perspective: 800px; }
.wl-card { background: #ffffff; border-radius: 16px; box-shadow: 0 12px 28px rgba(15,23,42,0.06); padding: 22px; text-align: left; border: 1px solid rgba(15,23,42,0.06); display: grid; align-content: start; min-height: 240px; transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease; transform-style: preserve-3d; }
.wl-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(15,23,42,0.10); border-color: rgba(45,99,240,0.25); }
.wl-step { display: inline-block; color: #111827; font-weight: 800; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; background: #fff3b0; padding: 6px 10px; border-radius: 9999px; }
.wl-heading { margin: 12px 0 0; font-size: clamp(18px, 2.4vw, 26px); line-height: 1.22; color: #0f172a; }
.wl-icon { margin: auto; margin-top: auto; width: 76px; height: 76px; display: grid; place-items: center; background: #fff; border-radius: 9999px; border: 10px solid #ffe24a; box-shadow: 0 6px 16px rgba(0,0,0,0.08); font-size: 32px; }
.btn-waitlist { margin-top: 8px; padding: 16px 28px; font-size: 16px; border-radius: 9999px; }
.waitlist-cta { display: grid; place-items: center; margin: 22px 0 12px; }
.waitlist-meta { text-align: center; display: grid; gap: 10px; }
.waitlist-stores { display: inline-flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.waitlist-stores .store-badge { background: #111827; border-color: #111827; }
.waitlist-links { color: #6b7280; font-size: 12px; }

@media (max-width: 900px) {
  .waitlist-steps { grid-template-columns: 1fr; }
}

/* Inquiry form styles */
.inquiry .inquiry-wrap { max-width: 880px; margin: 0 auto; background: transparent; border: none; box-shadow: none; padding: 0; text-align: left; }
.inquiry-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(24px, 5vw, 48px); align-items: start; }
.inquiry-right { display: grid; place-items: center; }
.inquiry-title { margin: 0 0 6px; font-size: clamp(32px, 4.8vw, 54px); font-weight: 800; letter-spacing: -0.02em; text-align: center; }
.inquiry-sub { margin: 0 0 18px; text-align: center; color: #475569; font-size: 16px; }
.inq-form { display: grid; gap: 14px; }
.inq-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.inq-form .field { display: grid; gap: 8px; }
.inq-form .field .label { font-weight: 700; font-size: 13px; color: #0f172a; }
.inq-form input, .inq-form textarea { width: 100%; padding: 16px 18px; border-radius: 18px; border: none; background: #ffffff; font-size: 18px; outline: none; box-shadow: 0 10px 24px rgba(0,0,0,0.05); transition: transform 140ms ease, box-shadow 160ms ease, background-color 160ms ease; }
.inq-form input:hover, .inq-form textarea:hover { box-shadow: 0 12px 28px rgba(0,0,0,0.07); }
.inq-form input:focus, .inq-form textarea:focus { background: #ffffff; box-shadow: 0 0 0 6px rgba(45,99,240,0.12), 0 12px 28px rgba(0,0,0,0.08); transform: translateY(-1px); }
.form-actions { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 4px; flex-wrap: wrap; }
.btn-send { font-size: 20px; padding: 18px 30px; border-radius: 9999px; background: #0a0a0a; }
.form-stores { display: inline-flex; gap: 10px; align-items: center; }
/* Ensure store badges are readable on white background in the inquiry section */
.inquiry .form-stores .store-badge {
  background: #111827;
  border-color: #111827;
  color: #ffffff;
}
.inquiry .form-stores .store-badge .label small,
.inquiry .form-stores .store-badge .label strong { color: #ffffff; }
.inquiry .form-stores .store-badge:hover { filter: brightness(1.05); transform: translateY(-1px); }

@media (max-width: 720px) {
  .inq-form .form-row { grid-template-columns: 1fr; }
  .form-actions { flex-direction: column; align-items: stretch; }
  .form-stores { justify-content: center; }
  .inquiry-grid { grid-template-columns: 1fr; }
}

/* Custom phone mockup (pure CSS) */
.phone-frame { position: relative; width: 320px; height: 650px; background: #0b0b0b; border-radius: 50px; padding: 14px; box-shadow: 0 24px 60px rgba(0,0,0,0.25); display: flex; flex-direction: column; }
.phone-frame .notch { position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 150px; height: 30px; background: #0b0b0b; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; display: flex; align-items: center; justify-content: center; z-index: 2; gap: 8px; }
.phone-frame .notch .cam { width: 10px; height: 10px; background: #374151; border-radius: 9999px; display: inline-block; }
.phone-frame .notch .spk { width: 48px; height: 6px; background: #374151; border-radius: 9999px; display: inline-block; }
.phone-frame .screen { position: relative; background: #ffffff; width: 100%; height: 100%; border-radius: 40px; overflow: hidden; display: flex; flex-direction: column; }
.phone-frame .status { display: flex; align-items: center; justify-content: space-between; padding: 14px 18px 8px; font-size: 12px; }
.phone-frame .status .time { font-weight: 700; }
.phone-frame .status .dots { width: 36px; height: 6px; border-radius: 9999px; background: radial-gradient(circle at 6px 3px, #111 4px, transparent 5px), radial-gradient(circle at 18px 3px, #111 4px, transparent 5px), radial-gradient(circle at 30px 3px, #111 4px, transparent 5px); background-repeat: no-repeat; }
.phone-frame .app { padding: 12px 16px; display: grid; gap: 10px; }

/* Enhanced app header */
.app-header { display: flex; align-items: center; justify-content: space-between; }
.app-header .brand { display: inline-flex; align-items: center; gap: 8px; }
.app-header .brand .dot { width: 8px; height: 8px; border-radius: 9999px; background: var(--blue-600); box-shadow: 0 0 0 4px rgba(45,99,240,0.15); }
.app-header h4 { margin: 0; font-weight: 800; letter-spacing: 0.02em; }
.app-header .wallet { background: #0f172a; color: #ffffff; padding: 6px 10px; border-radius: 9999px; font-size: 12px; font-weight: 700; box-shadow: 0 6px 16px rgba(0,0,0,0.16); }

/* Segmented control */
.app-segs { display: grid; grid-template-columns: repeat(3, 1fr); background: #f1f5f9; border-radius: 12px; padding: 4px; gap: 4px; }
.app-segs .seg { appearance: none; border: none; background: transparent; color: #334155; font-weight: 800; font-size: 12px; border-radius: 10px; padding: 8px 0; cursor: default; }
.app-segs .seg.is-active { background: #111827; color: #ffffff; }

/* Map preview */
.app-map { position: relative; height: 120px; border-radius: 14px; background-size: cover; background-position: center; overflow: hidden; box-shadow: 0 8px 22px rgba(0,0,0,0.14); }
.app-map::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0) 60%, rgba(0,0,0,0.12)); }
.map-pin { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 14px; height: 14px; background: #ef4444; border-radius: 9999px; box-shadow: 0 0 0 6px rgba(239,68,68,0.25); z-index: 1; }

/* Pickup/Destination fields */
.app-field { display: grid; grid-template-columns: 28px 1fr; align-items: center; gap: 8px; background: #f8fafc; border: 1px solid #e5e7eb; border-radius: 12px; padding: 10px 12px; }
.app-field .icon { width: 20px; height: 20px; color: #334155; display: inline-grid; place-items: center; }
.app-field .field-text strong { display: block; font-size: 11px; color: #64748b; letter-spacing: 0.08em; text-transform: uppercase; }
.app-field .field-text span { display: block; font-size: 14px; color: #0f172a; font-weight: 800; }

/* Actions */
.app-actions { display: grid; grid-template-columns: 1fr auto; gap: 10px; }
.btn-app-primary { background: var(--blue-600); color: #ffffff; border: none; border-radius: 12px; padding: 12px 14px; font-weight: 800; box-shadow: 0 10px 24px rgba(45,99,240,0.35); cursor: pointer; }
.btn-app-primary:hover { filter: brightness(1.05); transform: translateY(-1px); }
.btn-app-secondary { background: #ffffff; color: #0f172a; border: 1px solid #e5e7eb; border-radius: 12px; padding: 12px 14px; font-weight: 700; }

/* Quick vehicle row */
.app-quick { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.quick-item { background: #ffffff; border: 1px solid #e5e7eb; border-radius: 12px; padding: 10px 8px; display: grid; place-items: center; gap: 6px; color: #0f172a; font-size: 12px; font-weight: 700; }
.quick-item .qicon { width: 22px; height: 22px; color: var(--blue-600); }

/* Bottom nav with icons and labels */
.bottom-nav { margin-top: auto; height: 60px; background: #ffffff; border-top: 1px solid #e5e7eb; display: grid; grid-auto-flow: column; align-items: center; justify-content: space-evenly; }
.bottom-nav .nav-item { display: grid; place-items: center; gap: 4px; color: #64748b; text-decoration: none; }
.bottom-nav .nav-item .bi { width: 20px; height: 20px; }
.bottom-nav .nav-item small { font-size: 10px; font-weight: 700; }
.bottom-nav .nav-item.is-active { color: var(--blue-600); }

/* Sticky earn header just below navbar */
.earn-header {
  position: sticky;
  top: calc(8px + 44px); /* navbar padding + approx nav height */
  z-index: 5;
  background: #ffffff;
  padding-top: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
@media (max-width: 720px) {
  .earn-header { top: calc(6px + 40px); }
}

/* Ride For Us subsection */
.rfu { background: #ffe24a; padding: clamp(56px, 8vw, 96px) 0; position: relative; }
.rfu--rider { position: sticky; top: calc(8px + 44px + 64px); z-index: 6; }
.rfu--rider { padding-bottom: clamp(140px, 16vw, 220px); }
.rfu--business { background: #fff2a8; }

/* Overlap business block above rider block */
.rfu--business {
  margin-top: -80px; /* less overlap on larger screens */
  z-index: 7; /* above rider and earn header; below navbar (z=50) */
}
@media (max-width: 720px) {
  .rfu--business { margin-top: -36px; }
  .rfu--rider { padding-bottom: clamp(110px, 18vw, 160px); }
  .rfu .rfu-cta { margin-top: 14px; }
}

/* When scrolled past, sections naturally flow; we may add reveal animations via JS later */
.rfu-inner { width: min(1100px, 92vw); margin: 0 auto; text-align: center; }
.rfu-title { margin: 0 0 18px; font-size: clamp(28px, 4.2vw, 40px); font-weight: 800; letter-spacing: -0.01em; color: #111; }

.rfu-card {
  position: relative;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  padding: clamp(18px, 3.5vw, 24px);
  padding-right: clamp(90px, 18vw, 200px); /* reserve space for smaller layered person */
  min-height: 220px; /* card height independent of person */
  overflow: visible;
}
.rfu-quote blockquote { margin: 0; text-align: left; }
.rfu-quote p { margin: 0 0 16px; font-size: clamp(22px, 3vw, 34px); line-height: 1.25; font-weight: 800; color: #111; }
.rfu-person-meta { display: grid; gap: 2px; color: #111; }
.rfu-person-meta strong { font-size: 14px; }
.rfu-person-meta span { font-size: 12px; color: #475569; }
.rfu-person { position: absolute; right: clamp(8px, 3vw, 24px); bottom: -6px; z-index: 2; pointer-events: none; }
.rfu-person img {
  width: clamp(120px, 18vw, 220px);
  height: auto;
  border-radius: 12px;
  object-fit: contain;
}

.rfu-meta { margin: clamp(18px, 3.6vw, 28px) 0 0; }

/* Benefits list */
.rfu-benefits {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(12px, 2.8vw, 18px) clamp(16px, 4vw, 28px);
  max-width: 920px;
}
.rfu-benefits .benefit { display: grid; grid-template-columns: auto 1fr; align-items: start; gap: 10px; text-align: left; }
.rfu-benefits .benefit-icon { width: 22px; height: 22px; border-radius: 9999px; background: #111; color: #fff; display: grid; place-items: center; font-weight: 800; font-size: 12px; }
.rfu-benefits .benefit-title { display: block; font-size: clamp(15px, 1.6vw, 18px); font-weight: 800; color: #111; }
.rfu-benefits .benefit-desc { display: block; font-size: clamp(13px, 1.4vw, 16px); color: #334155; }
.rfu-stores { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.rfu .store-badge {
  background: #111827;
  border-color: #111827;
  color: #ffffff;
  padding: 8px 12px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.14);
}
.rfu .store-badge .logo { width: 18px; height: 18px; }
.rfu .store-badge .label small { font-size: 10px; opacity: 0.9; }
.rfu .store-badge .label strong { font-size: 14px; }
.rfu .store-badge:hover { transform: translateY(-1px); filter: brightness(1.06); }

@media (max-width: 640px) {
  .rfu .store-badge { padding: 7px 10px; border-radius: 10px; }
  .rfu .store-badge .logo { width: 16px; height: 16px; }
  .rfu .store-badge .label strong { font-size: 13px; }
  .rfu .store-badge .label small { font-size: 9px; }
  .rfu-benefits { grid-template-columns: 1fr; }
}
.rfu-stats { display: flex; gap: clamp(28px, 8vw, 80px); justify-content: center; color: #111; }
.rfu-stat { text-align: center; }
.rfu-stat .value { font-size: clamp(28px, 6vw, 48px); font-weight: 800; letter-spacing: -0.01em; }
.rfu-stat .label { font-size: 12px; color: #334155; }

.btn-dark {
  display: inline-flex; align-items: center; justify-content: center;
  background: #111; color: #fff; border: 1px solid #111; border-radius: 9999px;
  padding: 14px 22px; font-weight: 700; letter-spacing: 0.02em; box-shadow: 0 10px 24px rgba(0,0,0,0.16);
}
.btn-dark:hover { filter: brightness(1.05); transform: translateY(-1px); }

.rfu-cta { margin-top: clamp(14px, 3vw, 22px); position: relative; z-index: 3; }
@media (max-width: 720px) {
  .rfu-cta { padding-bottom: 16px; }
}
.rfu-fineprint { margin-top: 10px; color: #111; font-size: 12px; display: flex; gap: 10px; justify-content: center; }
.rfu-fineprint a { color: #0f2a6b; }

@media (max-width: 900px) {
  .rfu-card { padding-right: 16px; }
  .rfu-person { position: static; pointer-events: auto; margin-top: 10px; display: grid; place-items: center; }
  .rfu-person img { width: min(220px, 52vw); }
}

/* Emphasis highlights for mission heading and other sections */
.hl { background: linear-gradient(180deg, rgba(255,242,0,0.0) 60%, rgba(255,242,0,0.6) 0%); padding: 0 2px; }
.hl-strong { background: linear-gradient(180deg, rgba(45,99,240,0.0) 60%, rgba(45,99,240,0.22) 0%); color: #1f2d3d; font-weight: 800; padding: 0 2px; }

/* Mobile-specific sizing for hero buttons and badges */
@media (max-width: 640px) {
  .container { width: 100%; padding: 16px; }
  .brand { font-size: 20px; }
  .brand { letter-spacing: 0.04em; }
  .brand-icon { width: 18px; height: 18px; }

  header.navbar .btn {
    padding: 10px 14px;
    font-size: 15px;
    letter-spacing: 0.8px;
    gap: 8px;
    min-height: 44px; /* comfortable tap target */
    white-space: nowrap; /* avoid 2-line buttons */
  }

  header.navbar .btn .icon {
    width: 14px;
    height: 14px;
  }

  .store-badges { gap: 12px; }

  .store-badge {
    padding: 8px 12px;
    border-radius: 10px;
    min-height: 44px;
  }

  .store-badge .logo { width: 18px; height: 18px; }
  .store-badge .label small { font-size: 10px; }
  .store-badge .label strong { font-size: 14px; }
}

@media (max-width: 480px) {
  .container { padding: 12px; }
  header.navbar { gap: 8px; flex-wrap: nowrap; }
  .brand { font-size: 18px; letter-spacing: 0.01em; flex: 1; min-width: 0; white-space: nowrap; }
  header.navbar .btn {
    padding: 8px 10px;
    font-size: 14px;
    letter-spacing: 0.3px;
    margin-left: 0;
    margin-top: 0;
  }
  header.navbar .btn .icon { display: none; }
}

/* Testimonials section */
.testimonials-section { background: #ffffff; padding: clamp(72px, 8vw, 110px) 0 clamp(120px, 12vw, 180px); }
.testimonials-header .section-title { margin-top: 12px; }

.testimonials-gallery { position: relative; width: 100vw; margin-left: calc(50% - 50vw); overflow: visible; padding-bottom: clamp(40px, 6vw, 80px); }
.tstl-perspective { perspective: 1200px; perspective-origin: 50% 30%; display: flex; align-items: center; justify-content: center; }
.tstl-perspective-inner { width: 150vw; height: clamp(48vh, 60vh, 72vh); transform: rotateX(22deg) rotateZ(-10deg); display: grid; grid-template-rows: repeat(2, 1fr); gap: 16px; will-change: transform; }
.tstl-row { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.tstl-item { position: relative; width: 100%; height: 100%; border-radius: 14px; overflow: hidden; cursor: pointer; transition: transform 0.3s ease; }
.tstl-item:hover { transform: scale(1.04); }

/* Text-based testimonial card */
.tstl-card { position: absolute; inset: 0; display: grid; grid-template-rows: 1fr auto; gap: 10px; background: rgba(255,255,255,0.96); border: 1px solid rgba(15,23,42,0.12); border-radius: 14px; padding: clamp(12px, 1.8vw, 18px); box-shadow: 0 10px 24px rgba(0,0,0,0.06); }
.tstl-quote { margin: 0; font-size: clamp(14px, 1.5vw, 18px); line-height: 1.5; color: #111827; }
.tstl-meta { display: flex; align-items: baseline; gap: 8px; color: #374151; }
.tstl-name { font-weight: 800; }
.tstl-role { font-size: 12px; color: #6b7280; }

/* Shorter card height vs previous images */
.tstl-row .tstl-item { height: clamp(120px, 18vh, 160px); }

@keyframes tstlFloatLeft { 0%,100% { transform: translateX(-40px); } 50% { transform: translateX(40px); } }
@keyframes tstlFloatRight { 0%,100% { transform: translateX(40px); } 50% { transform: translateX(-40px); } }
.tstl-row.row-1 { animation: tstlFloatRight 12s ease-in-out infinite; }
.tstl-row.row-2 { animation: tstlFloatLeft 10s ease-in-out infinite; }

/* Modal for testimonial text */
.tstl-modal { position: fixed; inset: 0; z-index: 1000; display: grid; place-items: center; background: rgba(0,0,0,0.85); opacity: 0; visibility: hidden; transition: opacity .3s ease, visibility .3s ease; }
.tstl-modal.is-open { opacity: 1; visibility: visible; }
.tstl-modal-card { position: relative; width: min(90vw, 800px); border-radius: 18px; overflow: hidden; background: #fff; box-shadow: 0 30px 80px rgba(0,0,0,0.4); padding: clamp(18px, 3vw, 28px); }
.tstl-modal-body { display: grid; gap: 12px; }
.tstl-modal-quote { margin: 0; font-size: clamp(16px, 2vw, 22px); line-height: 1.6; color: #0b0f14; }
.tstl-modal-meta { display: flex; align-items: baseline; gap: 10px; color: #374151; }
.tstl-modal-name { font-weight: 800; }
.tstl-modal-role { font-size: 12px; color: #6b7280; }
.tstl-modal-close { position: absolute; top: 12px; right: 12px; width: 44px; height: 44px; border-radius: 9999px; background: rgba(0,0,0,0.06); color: #111; border: 1px solid rgba(0,0,0,0.12); font-size: 28px; line-height: 1; display: grid; place-items: center; cursor: pointer; }
.tstl-modal-close:hover { filter: brightness(0.95); }
.tstl-modal-backdrop { position: absolute; inset: 0; }

/* Responsiveness tweaks */
@media (max-width: 900px) {
  .tstl-perspective-inner { width: 180vw; height: clamp(52vh, 60vh, 64vh); transform: rotateX(20deg) rotateZ(-8deg); gap: 12px; }
  .tstl-row { grid-template-columns: repeat(4, 1fr); gap: 12px; }
  .tstl-row .tstl-item { height: clamp(120px, 20vh, 150px); }
}
@media (max-width: 640px) {
  .tstl-perspective-inner { width: 200vw; height: clamp(56vh, 64vh, 70vh); transform: rotateX(18deg) rotateZ(-6deg); gap: 10px; }
  .tstl-row { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .tstl-row .tstl-item { height: clamp(120px, 22vh, 140px); }
}

/* End hero section */
.end-section { background: #ffffff; }
.end-hero {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  height: clamp(360px, 70vh, 760px);
  background-size: cover;
  background-position: center;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  position: relative;
  display: grid;
  place-items: center;
}
.end-overlay { position: absolute; inset: 0; background: radial-gradient(ellipse at center, rgba(255,255,255,0.0), rgba(0,0,0,0.15) 70%); mix-blend-mode: multiply; }
.end-content { position: relative; text-align: center; color: #0b0f14; display: grid; gap: 16px; }
.end-content h2 { margin: 0; font-size: clamp(24px, 3.2vw, 32px); font-weight: 800; letter-spacing: -0.01em; }
.end-cta { align-self: center; font-size: 16px; padding: 12px 18px; }

/* Footer */
.site-footer { background: #ffffff; border-top: 1px solid rgba(15,23,42,0.08); }
.footer-wrap { width: min(1400px, 95vw); margin: 0 auto; padding: clamp(24px, 5vw, 48px) 0; }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: clamp(28px, 6vw, 80px); align-items: start; padding-top: clamp(18px, 3vw, 28px); padding-bottom: clamp(28px, 5vw, 44px); border-bottom: 1px solid rgba(15,23,42,0.08); }
.footer-col { color: #111827; }
.footer-title { margin: 0 0 12px; font-size: 18px; font-weight: 800; }
.footer-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-list a { color: #334155; font-size: 16px; }
.footer-list a:hover { text-decoration: underline; }
.newsletter-form { display: grid; grid-template-columns: 1fr auto; gap: 10px; background: #fff; border: 1px solid rgba(15,23,42,0.08); border-radius: 9999px; padding: 8px; max-width: 420px; }
.newsletter-form input { border: none; outline: none; border-radius: 9999px; padding: 12px 16px; font-size: 16px; background: transparent; }
.newsletter .btn { padding: 12px 18px; font-size: 16px; }
.footer-copy { margin-top: 12px; color: #6b7280; font-size: 12px; }
.footer-bottom { display: flex; gap: 16px; align-items: center; justify-content: space-between; color: #6b7280; font-size: 15px; padding-top: 18px; }
.footer-bottom a { color: #6b7280; }
.footer-bottom a:hover { text-decoration: underline; }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { justify-content: center; }
}

/* Footer sizing adjustments */
.site-footer .footer-title { font-size: clamp(18px, 1.8vw, 20px); }
.site-footer .footer-list a { font-size: clamp(15px, 1.6vw, 17px); }
.site-footer .newsletter-form input,
.site-footer .newsletter .btn { font-size: clamp(15px, 1.6vw, 17px); }
.site-footer .footer-copy { font-size: clamp(13px, 1.4vw, 15px); }
.site-footer .footer-bottom { font-size: clamp(14px, 1.5vw, 16px); }

/* Footer dark theme overrides */
.site-footer { background: #0a0a0a; border-top-color: rgba(255,255,255,0.12); }
.site-footer .footer-col { color: #e5e7eb; }
.site-footer .footer-title { color: #f9fafb; }
.site-footer .footer-list a { color: #cbd5e1; }
.site-footer .footer-list a:hover { color: #ffffff; }
.site-footer .footer-copy { color: #9ca3af; }
.site-footer .footer-bottom, .site-footer .footer-bottom a { color: #cbd5e1; }
.site-footer .footer-bottom a:hover { color: #ffffff; }
.site-footer .newsletter-form { background: transparent; border-color: rgba(255,255,255,0.2); }
.site-footer .newsletter-form input { color: #e5e7eb; }
.site-footer .newsletter-form input::placeholder { color: rgba(229,231,235,0.6); }
.site-footer .newsletter .btn { background: #ffffff; color: #111827; border-color: #ffffff; }
.site-footer .newsletter .btn:hover { filter: brightness(0.95); }

/* Footer revamp inspired layout */
.footer-revamp { position: relative; background: #073427; overflow: hidden; }
.footer-revamp .footer-canvas { position: absolute; inset: 0; background: radial-gradient(900px 900px at 20% -20%, rgba(255,255,255,0.06), transparent 60%), radial-gradient(900px 900px at 120% 60%, rgba(255,255,255,0.06), transparent 60%); opacity: 0.4; pointer-events: none; }
.footer-revamp .footer-wrap { position: relative; z-index: 1; width: min(1600px, 95vw); margin: 0 auto; padding: clamp(36px, 6vw, 72px) 0; color: #f6f7ef; }

.footer-revamp .footer-top { display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(24px, 6vw, 120px); align-items: start; }
.footer-revamp .footer-brand { font-weight: 800; letter-spacing: 0.01em; display: grid; gap: 6px; font-size: clamp(28px, 3.4vw, 42px); }
.footer-revamp .footer-brand span { display: block; }

.footer-revamp .footer-nav { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 4vw, 64px); }
.footer-revamp .footer-nav .nav-col { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; font-size: clamp(16px, 1.6vw, 20px); }
.footer-revamp .footer-nav a { color: #f6f7ef; }
.footer-revamp .footer-nav a:hover { text-decoration: underline; }

.footer-revamp .footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: clamp(30px, 4vw, 50px); color: #e9edd9; font-size: clamp(14px, 1.4vw, 18px); }
.footer-revamp .footer-social, .footer-revamp .footer-legal { display: inline-flex; gap: clamp(12px, 2.6vw, 28px); flex-wrap: wrap; }
.footer-revamp .footer-bottom a { color: #e9edd9; }
.footer-revamp .footer-bottom a:hover { color: #ffffff; }

.footer-revamp .footer-hero-word { position: absolute; left: clamp(16px, 4vw, 40px); bottom: clamp(8px, 1vw, 20px); font-weight: 900; font-size: clamp(80px, 18vw, 220px); line-height: 0.9; color: rgba(246, 247, 239, 0.12); letter-spacing: -0.02em; white-space: nowrap; pointer-events: none; user-select: none; }

@media (max-width: 900px) {
  .footer-revamp .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-revamp .footer-nav { grid-template-columns: 1fr; gap: 16px; }
}

/* Ensure anchor jumps account for sticky nav height */
#home, #mission, #services, #earn, #faqs, #waitlist, #testimonials {
  scroll-margin-top: calc(var(--nav-height) + 12px);
}

@media (min-width: 900px) {
  .pill { padding: 16px 28px; font-size: 22px; letter-spacing: 0.7px; }
}

/* Features split layout */
.features-split { width: min(1600px, 96vw); margin: clamp(24px, 4vw, 48px) auto 0; display: grid; grid-template-columns: clamp(320px, 34vw, 520px) 1fr; gap: clamp(20px, 4vw, 40px); align-items: stretch; }
.fs-left { background: transparent; border: none; border-radius: 0; padding: clamp(16px, 3vw, 22px); display: grid; align-content: end; gap: clamp(10px, 2vw, 18px); box-shadow: none; min-height: clamp(520px, 70vh, 860px); position: relative; }
.fs-left .fs-tab + .fs-tab { border-top: 1px solid rgba(15,23,42,0.08); }
.fs-tab { appearance: none; background: transparent; border: none; text-align: left; padding: clamp(18px, 2.8vw, 28px) 14px; font-weight: 500; font-size: clamp(26px, 3.6vw, 44px); color: #0f172a; border-radius: 12px; cursor: pointer; letter-spacing: -0.01em; position: relative; }
.fs-tab:hover { background: transparent; }
.fs-tab.is-active { color: #1b3aa6; background: #eef2ff; box-shadow: inset 0 0 0 9999px rgba(45,99,240,0.04); }

.fs-right { position: relative; min-height: clamp(560px, 70vh, 860px); border-radius: 24px; overflow: hidden; box-shadow: 0 20px 50px rgba(0,0,0,0.12); }
.fs-panel { position: absolute; inset: 0; opacity: 0; pointer-events: none; }
.fs-panel[hidden] { display: none; }
.fs-panel.is-active { opacity: 1; pointer-events: auto; }
.fs-bg { position: absolute; inset: 0; background-size: cover; background-position: center; filter: none; transform: scale(1.02); }
.fs-bubble { position: absolute; right: clamp(20px, 5vw, 56px); bottom: clamp(20px, 5vw, 56px); background: #ffffff; color: #0b0f14; border: 1px solid rgba(0,0,0,0.08); border-radius: 18px; padding: clamp(14px, 2.2vw, 22px) clamp(16px, 2.4vw, 26px); box-shadow: 0 18px 50px rgba(0,0,0,0.18); max-width: min(580px, 62%); }
.fs-bubble strong { display: block; font-size: clamp(16px, 2vw, 22px); margin-bottom: 6px; }
.fs-bubble p { margin: 0; font-size: clamp(14px, 1.6vw, 18px); color: #374151; }

@media (max-width: 900px) {
  .features-split { grid-template-columns: 1fr; }
  .fs-left { min-height: auto; align-content: start; }
  .fs-right { min-height: clamp(320px, 56vh, 620px); }
}

@media (max-width: 900px) {
  .earn-header { position: static; top: auto; z-index: auto; }
  .rfu--rider { position: static; top: auto; }
}

/* Simple reveal-on-scroll (non-GSAP) */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 400ms ease, transform 400ms ease;
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.fs-tab::before,
.fs-tab::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: clamp(12px, 1.8vw, 18px);
  height: 2px;
  background: transparent;
  transform-origin: left center;
  transform: scaleX(0);
  transition: transform 300ms ease, background-color 300ms ease;
}
/* Base faint underline track */
.fs-tab::before {
  background: rgba(15,23,42,0.12);
  transform: scaleX(1);
}
/* Active animated underline */
.fs-tab::after {
  background: #2d63f0;
}
.fs-tab:hover::after {
  background: #1b3aa6;
  transform: scaleX(0.5);
}
.fs-tab.is-active::after {
  transform: scaleX(1);
  background: #2d63f0;
}

/* Remove previous left-border visual emphasis but keep background change */
.fs-tab.is-active {
  color: #1b3aa6;
  background: #eef2ff;
  box-shadow: inset 0 0 0 9999px rgba(45,99,240,0.04);
}

/* Smooth transition when switching between tabs */
.fs-left { position: relative; }
.fs-left .fs-tab { transition: background-color 220ms ease, color 220ms ease; }

/* Scale-up overrides for phone mockup and forms */
.phone-frame {
  width: 360px;
  height: 740px;
  border-radius: 56px;
  padding: 16px;
}
.phone-frame .screen { border-radius: 44px; }
.phone-frame .notch { width: 160px; height: 32px; }

/* Enlarge map preview and bottom nav for the mockup */
.app-map { height: 150px; }
.bottom-nav { height: 68px; }

/* Enlarge inquiry form fields and button */
.inq-form .field .label { font-size: 14px; }
.inq-form input, .inq-form textarea {
  padding: 20px 22px;
  border-radius: 20px;
  font-size: 20px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.06);
}
.inq-form input:hover, .inq-form textarea:hover { box-shadow: 0 14px 32px rgba(0,0,0,0.08); }
.inq-form input:focus, .inq-form textarea:focus {
  box-shadow: 0 0 0 8px rgba(45,99,240,0.12), 0 14px 32px rgba(0,0,0,0.10);
}
.btn-send { font-size: 22px; padding: 20px 36px; }

/* Ensure sizes remain comfortable on small screens */
@media (max-width: 420px) {
  .phone-frame { width: 92vw; height: 78vh; border-radius: 48px; }
  .phone-frame .screen { border-radius: 40px; }
  .app-map { height: 130px; }
  .bottom-nav { height: 64px; }
  .btn-send { width: 100%; }
}