/* Hidau premium static landing: relative CSS for file:// compatibility */
:root {
  --deep: #070b1f;
  --navy: #0d1230;
  --brand: #1a1450;
  --purple: #2a1b6e;
  --teal: #2dd4bf;
  --teal-bright: #5eead4;
  --teal-dark: #0f766e;
  --blue-soft: #8ec5ff;
  --ink: #0f1428;
  --muted: #5d6780;
  --line: rgba(26, 20, 80, 0.1);
  --paper: #f4f6fb;
  --cream: #f8f7f4;
  --white: #ffffff;
  --glass: rgba(255, 255, 255, 0.08);
  --glass-strong: rgba(255, 255, 255, 0.12);
  --max: 1240px;
  --header-h: 86px;
  --radius: 22px;
  --font-body: "Manrope", "Segoe UI", Arial, sans-serif;
  --font-display: "Sora", "Manrope", "Segoe UI", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  font-size: clamp(1rem, 1.1vw, 1.125rem);
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; height: auto; }
address { font-style: normal; }
a { color: var(--teal-dark); }
a:hover { color: var(--brand); }
:focus-visible {
  outline: 3px solid rgba(45, 212, 191, 0.55);
  outline-offset: 3px;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.section {
  padding: clamp(4.5rem, 8vw, 7.5rem) 0;
  position: relative;
}

.eyebrow {
  margin: 0 0 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-dark);
}

.eyebrow::before {
  content: "";
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--teal);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  margin: 0;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

h1 {
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.06;
}

h2 {
  font-size: clamp(2rem, 3.6vw, 3.4rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

h3 {
  font-size: clamp(1.15rem, 1.7vw, 1.35rem);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.3;
}

.lead {
  margin: 1.25rem 0 0;
  max-width: 40rem;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.1vw, 1.125rem);
  font-weight: 400;
  line-height: 1.7;
}

.slogan {
  margin: 1.4rem 0 0;
  color: var(--teal);
  font-family: var(--font-body);
  font-size: clamp(1.25rem, 2.1vw, 1.65rem);
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.35;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 52px;
  padding: 0.85rem 1.55rem;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: -0.015em;
  transition: transform 0.2s var(--ease), background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  cursor: pointer;
}

.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--teal); color: var(--deep); }
.btn-primary:hover { background: #fff; color: var(--deep); }
.btn-ghost {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.28);
  color: #fff;
}
.btn-ghost:hover { background: rgba(255,255,255,0.12); color: #fff; }
.btn-dark { background: var(--brand); color: #fff; }
.btn-dark:hover { background: var(--deep); color: #fff; }
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 1rem 0;
  transition: background 0.25s ease, backdrop-filter 0.25s ease, padding 0.25s ease, box-shadow 0.25s ease;
  background: #0b102f;
}

.site-header.is-solid {
  background: rgba(11, 16, 47, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.18);
  padding: 0.75rem 0;
}

.header-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 64px;
  padding: 0.65rem 0.8rem 0.65rem 1rem;
  border-radius: 999px;
  background: rgba(13, 18, 48, 0.58);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.site-header.is-solid .header-shell {
  background: rgba(13, 18, 48, 0.94);
}

.brand {
  display: inline-flex;
  align-items: center;
  color: #fff;
  text-decoration: none;
  flex-shrink: 0;
  line-height: 0;
}

.brand-logo {
  display: block;
  width: auto;
  height: 46px;
  object-fit: contain;
}

.brand img {
  display: block;
  width: auto;
  height: 46px;
  object-fit: contain;
  border-radius: 0;
}

.nav-toggle {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.05);
  color: #fff;
  cursor: pointer;
  font-size: 1.2rem;
  line-height: 1;
}

.primary-nav {
  display: none;
  position: absolute;
  left: 1rem;
  right: 1rem;
  top: calc(100% + 0.55rem);
  padding: 0.75rem;
  border-radius: 22px;
  background: rgba(7, 11, 31, 0.97);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}

.primary-nav.is-open { display: block; }

.primary-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.primary-nav a {
  display: block;
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  padding: 0.82rem 1rem;
  border-radius: 14px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  transition: background 0.2s ease, color 0.2s ease;
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
  background: rgba(45, 212, 191, 0.12);
  color: #fff;
}

.nav-cta .btn {
  min-height: 46px;
  width: 100%;
  margin-top: 0.4rem;
  font-size: 0.95rem;
  box-shadow: 0 8px 20px rgba(45, 212, 191, 0.22);
}

.header-wrap { position: relative; }

/* Hero */
.hero {
  position: relative;
  min-height: min(98vh, 1040px);
  display: flex;
  align-items: center;
  padding: 3rem 0 5.25rem;
  margin-top: 0;
  color: #fff;
  background:
    radial-gradient(ellipse 72% 58% at 86% 18%, rgba(45, 212, 191, 0.24), transparent 55%),
    radial-gradient(ellipse 55% 45% at 10% 80%, rgba(142, 197, 255, 0.14), transparent 50%),
    radial-gradient(ellipse 42% 42% at 58% 62%, rgba(90, 40, 180, 0.38), transparent 60%),
    linear-gradient(155deg, #0b102f 0%, #12103a 42%, #1a1450 78%, #0d1230 100%);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 78%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 3rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(45, 212, 191, 0.35);
  background: rgba(45, 212, 191, 0.1);
  color: var(--teal-bright);
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 1.35rem;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 4px rgba(45, 212, 191, 0.2);
}

.hero-copy {
  margin: 1.25rem 0 0;
  max-width: 36.5rem;
  color: rgba(255,255,255,0.76);
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.1vw, 1.125rem);
  font-weight: 400;
  line-height: 1.7;
}

.hero-note {
  margin: 1.2rem 0 0;
  color: rgba(255,255,255,0.5);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.6;
}

.hero-visual {
  position: relative;
  min-height: 500px;
  display: grid;
  place-items: center;
  padding: 0.5rem 0 1rem;
}

.hero-glow {
  position: absolute;
  width: 78%;
  height: 78%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45, 212, 191, 0.3), transparent 68%);
  filter: blur(10px);
  animation: pulseGlow 6s ease-in-out infinite;
}

.route-bg {
  position: absolute;
  inset: 6% 2% 14% 2%;
  opacity: 0.68;
}

.phone {
  position: relative;
  z-index: 2;
  width: min(100%, 332px);
  border-radius: 38px;
  padding: 13px;
  background: linear-gradient(160deg, #222a55, #0c1028);
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow:
    0 34px 70px rgba(0,0,0,0.38),
    inset 0 1px 0 rgba(255,255,255,0.14);
}

.phone-notch {
  width: 88px;
  height: 18px;
  margin: 4px auto 12px;
  border-radius: 999px;
  background: #050816;
}

.phone-screen {
  border-radius: 26px;
  background: linear-gradient(180deg, #111738, #0a0e22);
  padding: 1.1rem 1rem 1.2rem;
  color: #fff;
}

.phone-label {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.field {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 14px;
  padding: 0.82rem 0.9rem;
  margin-bottom: 0.55rem;
}

.field-label {
  display: block;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 0.18rem;
  font-weight: 650;
}

.field-value {
  font-size: 0.98rem;
  font-weight: 650;
}

.fare-chip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0.9rem 0;
  padding: 0.9rem 1rem;
  border-radius: 16px;
  background: rgba(45, 212, 191, 0.16);
  border: 1px solid rgba(45, 212, 191, 0.34);
}

.fare-chip strong { font-size: 1.2rem; color: var(--teal-bright); }

.offer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  padding: 0.78rem 0.85rem;
  border-radius: 14px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 0.45rem;
}

.offer-meta { font-size: 0.84rem; color: rgba(255,255,255,0.58); }
.offer-price {
  font-family: var(--font-display);
  font-weight: 700;
  color: #fff;
  font-size: 0.95rem;
  letter-spacing: -0.015em;
}
.offer.is-selected {
  border-color: rgba(45, 212, 191, 0.45);
  background: rgba(45, 212, 191, 0.14);
}

.float-badge {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.78rem 1.05rem;
  border-radius: 16px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.22);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
  box-shadow: 0 14px 34px rgba(0,0,0,0.28);
  animation: floatY 5s ease-in-out infinite;
}

.float-badge--top { top: 6%; right: 0; }
.float-badge--bottom { bottom: 8%; left: 0; animation-delay: -1.5s; }

.float-card {
  position: absolute;
  z-index: 3;
  width: min(220px, 46%);
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: rgba(255,255,255,0.13);
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #fff;
  box-shadow: 0 18px 44px rgba(0,0,0,0.28);
  animation: floatY 6.5s ease-in-out infinite;
}

.float-card--right {
  right: 0;
  top: 36%;
  animation-delay: -2s;
}

.float-card strong { display: block; font-size: 1rem; margin-bottom: 0.25rem; }
.float-card span { font-size: 0.86rem; color: rgba(255,255,255,0.72); line-height: 1.45; }

/* Trust */
.trust {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  padding: 1.75rem 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1.25rem;
}

.trust-item {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}

.trust-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background: linear-gradient(145deg, rgba(45,212,191,0.15), rgba(26,20,80,0.08));
  color: var(--teal-dark);
}

.trust-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.015em;
}

.trust-item span {
  display: block;
  margin-top: 0.2rem;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* How it works journey */
.how {
  background: var(--paper);
}

.journey {
  margin-top: 3.25rem;
  display: grid;
  gap: 0;
  position: relative;
}

.journey::before {
  content: "";
  position: absolute;
  left: 27px;
  top: 18px;
  bottom: 18px;
  width: 3px;
  background: linear-gradient(180deg, var(--teal), rgba(45,212,191,0.25));
  border-radius: 3px;
}

.journey-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1.15rem;
  padding: 1.25rem 0;
  position: relative;
  align-items: start;
}

.journey-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, var(--brand), #2d2170);
  color: var(--teal);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.08rem;
  letter-spacing: -0.02em;
  border: 2px solid rgba(45,212,191,0.45);
  box-shadow: 0 0 0 7px rgba(45,212,191,0.1);
  z-index: 1;
}

.journey-body h3 { margin-bottom: 0.5rem; }
.journey-body p {
  margin: 0;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.65;
  max-width: 28rem;
}

.journey-icon {
  width: 24px;
  height: 24px;
  color: var(--teal-dark);
  margin-bottom: 0.7rem;
}

/* Rider split */
.riders { background: var(--cream); }

.riders-grid {
  display: grid;
  gap: 2.75rem;
  align-items: center;
}

.benefit-list {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.9rem;
}

.benefit-list li {
  display: flex;
  gap: 0.95rem;
  align-items: flex-start;
  min-height: 84px;
  padding: 1.05rem 1.15rem;
  border-radius: 18px;
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(26,20,80,0.06);
}

.benefit-list .icon-wrap {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(45,212,191,0.12);
  color: var(--teal-dark);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.benefit-list strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.04rem;
  font-weight: 600;
  letter-spacing: -0.015em;
}
.benefit-list span {
  display: block;
  margin-top: 0.2rem;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.65;
}

.rider-mock {
  position: relative;
  border-radius: 30px;
  padding: 1.55rem;
  background:
    radial-gradient(circle at 20% 15%, rgba(45,212,191,0.22), transparent 40%),
    linear-gradient(160deg, #141a42, #1a1450 60%, #0d1230);
  border: 1px solid rgba(255,255,255,0.14);
  color: #fff;
  overflow: hidden;
  min-height: 460px;
}

.rider-mock::after {
  content: "";
  position: absolute;
  inset: auto -20% -30% 30%;
  height: 60%;
  background: radial-gradient(circle, rgba(142,197,255,0.15), transparent 60%);
  pointer-events: none;
}

.mini-map {
  height: 120px;
  border-radius: 18px;
  margin-bottom: 1rem;
  background:
    linear-gradient(120deg, rgba(45,212,191,0.15), transparent),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.03) 0 1px, transparent 1px 28px),
    repeating-linear-gradient(0deg, rgba(255,255,255,0.03) 0 1px, transparent 1px 28px),
    #0a0f28;
  position: relative;
  overflow: hidden;
}

.mini-map svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* Driver dark section */
.drivers {
  background:
    radial-gradient(ellipse at 20% 20%, rgba(45,212,191,0.12), transparent 45%),
    radial-gradient(ellipse at 90% 80%, rgba(90,40,180,0.28), transparent 40%),
    linear-gradient(160deg, #070b1f, #151240 55%, #0d1230);
  color: #fff;
}

.drivers .eyebrow { color: var(--teal); }
.drivers .eyebrow::before { background: var(--teal); }
.drivers .lead { color: rgba(255,255,255,0.68); }

.drivers-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
  margin-top: 0.5rem;
}

.driver-dash {
  display: grid;
  gap: 0.85rem;
}

.dash-card {
  border-radius: 22px;
  padding: 1.25rem 1.35rem;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
}

.dash-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.95rem;
}

.dash-top strong { font-size: 1.08rem; }

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.42rem 0.8rem;
  border-radius: 999px;
  background: rgba(45,212,191,0.18);
  color: var(--teal-bright);
  font-size: 0.84rem;
  font-weight: 700;
}

.status-pill::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 4px rgba(45,212,191,0.2);
}

.request-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.request-row:first-of-type { border-top: 0; padding-top: 0.25rem; }

.request-row p {
  margin: 0.25rem 0 0;
  color: rgba(255,255,255,0.62);
  font-size: 0.92rem;
}

.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1rem;
}

.chip-btn {
  min-height: 46px;
  padding: 0.55rem 1.15rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.05);
  color: #fff;
  font-weight: 700;
  font-size: 0.92rem;
}

.chip-btn.is-primary {
  background: var(--teal);
  color: var(--deep);
  border-color: transparent;
  box-shadow: 0 8px 20px rgba(45, 212, 191, 0.25);
}

.earn-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.earn-box {
  border-radius: 18px;
  padding: 1.1rem 1.15rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
}

.earn-box span {
  display: block;
  font-size: 0.84rem;
  color: rgba(255,255,255,0.58);
  margin-bottom: 0.35rem;
}

.earn-box strong {
  font-size: 1.28rem;
  letter-spacing: -0.02em;
}

.verify-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.84);
  line-height: 1.45;
}

/* Safety */
.safety {
  background: var(--white);
}

.safety-head {
  max-width: 42rem;
  margin-bottom: 2.75rem;
}

.pillars {
  display: grid;
  gap: 1.2rem;
  margin-bottom: 1.65rem;
}

.pillar {
  padding: 2rem 1.7rem;
  border-radius: 26px;
  background:
    linear-gradient(145deg, rgba(26,20,80,0.05), rgba(45,212,191,0.08));
  border: 1px solid rgba(26,20,80,0.1);
  min-height: 100%;
}

.pillar-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  margin-bottom: 1.2rem;
  background: var(--brand);
  color: var(--teal);
}

.pillar h3 {
  font-size: clamp(1.25rem, 1.8vw, 1.45rem);
  font-weight: 600;
  letter-spacing: -0.015em;
}

.pillar p {
  margin: 0.7rem 0 0;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.65;
}

.safety-secondary {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: 1fr 1fr;
  margin: 0;
  padding: 0;
}

.safety-secondary li {
  list-style: none;
  display: flex;
  gap: 0.7rem;
  align-items: center;
  padding: 0.95rem 1rem;
  border-radius: 16px;
  background: var(--paper);
  color: var(--ink);
  font-weight: 650;
  font-size: 0.95rem;
}

.safety-secondary svg {
  width: 20px;
  height: 20px;
  color: var(--teal-dark);
  flex-shrink: 0;
}

/* Nepal */
.nepal {
  background:
    radial-gradient(ellipse at 80% 20%, rgba(45,212,191,0.08), transparent 40%),
    var(--paper);
  overflow: hidden;
}

.nepal-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.nepal-visual {
  position: relative;
  min-height: 380px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 70% 30%, rgba(45,212,191,0.18), transparent 40%),
    radial-gradient(circle at 20% 80%, rgba(142,197,255,0.12), transparent 45%),
    linear-gradient(160deg, #10163a, #1a1450);
  border: 1px solid rgba(26,20,80,0.12);
  overflow: hidden;
}

.nepal-visual svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.95;
}

.nepal-chips {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.9rem;
}

.nepal-chip {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  padding: 1.1rem 1.15rem;
  border-radius: 18px;
  background: var(--white);
  border: 1px solid rgba(26,20,80,0.07);
}

.nepal-chip strong { display: block; font-size: 1.02rem; }
.nepal-chip span {
  display: block;
  margin-top: 0.2rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.dot {
  width: 10px;
  height: 10px;
  margin-top: 0.4rem;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
  box-shadow: 0 0 0 5px rgba(45,212,191,0.12);
}

/* Launch */
.launch {
  padding: clamp(4.5rem, 8vw, 7rem) 0;
}

.launch-panel {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  padding: clamp(2.6rem, 5.5vw, 4.6rem);
  min-height: 420px;
  color: #fff;
  background:
    radial-gradient(ellipse at 90% 10%, rgba(45,212,191,0.24), transparent 40%),
    radial-gradient(ellipse at 10% 90%, rgba(142,197,255,0.16), transparent 40%),
    linear-gradient(135deg, #0a0f28 0%, #1a1450 50%, #241860 100%);
  border: 1px solid rgba(255,255,255,0.1);
  display: grid;
  gap: 2rem;
  align-items: center;
}

.launch-copy { position: relative; z-index: 1; max-width: 36rem; }

.launch-panel h2 {
  max-width: 14ch;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.06;
}

.launch-panel .lead {
  color: rgba(255,255,255,0.74);
  max-width: 34rem;
  line-height: 1.8;
}

.launch-meta {
  display: grid;
  gap: 0.95rem;
  margin-top: 2rem;
  max-width: 36rem;
}

.launch-meta p {
  margin: 0;
  padding-left: 1rem;
  border-left: 3px solid var(--teal);
  color: rgba(255,255,255,0.82);
  font-size: 1.02rem;
  line-height: 1.55;
}

.launch-visual {
  position: relative;
  min-height: 220px;
  display: none;
}

.launch-notif {
  position: absolute;
  right: 8%;
  top: 18%;
  width: min(260px, 90%);
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.25);
}

.launch-notif strong {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 1rem;
}

.launch-notif span {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  line-height: 1.45;
}

.launch-route {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.85;
}

/* FAQ */
.faq { background: var(--cream); }

.faq-list {
  margin-top: 2.75rem;
  display: grid;
  gap: 1rem;
  max-width: none;
  width: 100%;
}

.faq-item {
  border-radius: 20px;
  background: var(--white);
  border: 1px solid rgba(26,20,80,0.08);
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.faq-item[open],
.faq-item.is-open {
  border-color: rgba(45,212,191,0.4);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.1rem;
  padding: 1.4rem 1.55rem;
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 1.4vw, 1.15rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.4;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background: rgba(45,212,191,0.16);
  color: var(--teal-dark);
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1;
  border: 1px solid rgba(45,212,191,0.28);
}

.faq-answer {
  padding: 0 1.55rem 1.45rem;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.1vw, 1.125rem);
  font-weight: 400;
  line-height: 1.7;
  max-width: 72ch;
}

/* Contact */
.contact { background: var(--white); }

.contact-card {
  display: grid;
  gap: 0;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(26,20,80,0.08);
  background: var(--paper);
  width: 100%;
}

.contact-left {
  padding: clamp(2rem, 4.5vw, 3.1rem);
  background:
    linear-gradient(145deg, #0d1230, #1a1450);
  color: #fff;
}

.contact-left .lead {
  color: rgba(255,255,255,0.74);
  line-height: 1.8;
}

.contact-right {
  padding: clamp(2rem, 4.5vw, 3.1rem);
  display: grid;
  gap: 0.95rem;
  align-content: center;
}

.mail-item {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding: 1.15rem 1.2rem;
  border-radius: 18px;
  background: var(--white);
  border: 1px solid rgba(26,20,80,0.06);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.mail-item:hover {
  border-color: rgba(45,212,191,0.4);
  transform: translateY(-1px);
  color: inherit;
}

.contact-icon,
.mail-icon {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: rgba(45,212,191,0.12);
  color: var(--teal-dark);
  line-height: 0;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.contact-icon svg,
.mail-icon svg {
  width: 21px;
  height: 21px;
  display: block;
  margin: 0;
  flex-shrink: 0;
}

.mail-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.15rem;
  min-width: 0;
}

.mail-copy strong {
  display: block;
  font-family: var(--font-body);
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
}

.mail-email {
  display: block;
  margin: 0;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.4;
}

/* Footer */
.site-footer {
  background: #070b1f;
  color: rgba(255,255,255,0.74);
  padding: 4.5rem 0 2.25rem;
}

.footer-grid {
  display: grid;
  gap: 2.75rem;
}

.site-footer .brand { margin-bottom: 1.15rem; }
.site-footer .brand-logo,
.site-footer .brand img {
  height: 50px;
  width: auto;
  object-fit: contain;
  border-radius: 0;
}

.footer-slogan {
  margin: 0;
  color: var(--teal);
  font-size: 1.28rem;
  font-weight: 700;
}

.footer-note {
  margin: 0.95rem 0 0;
  max-width: 30rem;
  font-size: 1rem;
  line-height: 1.7;
}

.footer-col h4 {
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}

.footer-nav {
  display: grid;
  gap: 0.75rem;
}

.footer-nav a {
  color: rgba(255,255,255,0.78);
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
}

.footer-nav a:hover { color: var(--teal); }

.footer-bottom {
  margin-top: 3.25rem;
  padding-top: 1.45rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
  font-size: 0.95rem;
}

/* Legal pages */
.page-hero {
  padding: 7rem 0 3.5rem;
  color: #fff;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(45,212,191,0.16), transparent 40%),
    linear-gradient(145deg, #070b1f, #1a1450);
}

.page-hero .meta {
  margin: 1rem 0 0;
  color: rgba(255,255,255,0.6);
}

.legal-body {
  padding: 3.5rem 0 5rem;
}

.legal-body article { max-width: 46rem; }

.legal-body h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  margin: 2.2rem 0 0.7rem;
}

.legal-body p,
.legal-body li {
  color: var(--muted);
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.1vw, 1.125rem);
  font-weight: 400;
  line-height: 1.7;
}

.legal-body ul { padding-left: 1.2rem; }

/* Reveal */
.reveal {
  opacity: 1;
  transform: none;
}

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes pulseGlow {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

@media (min-width: 768px) {
  .trust-grid { grid-template-columns: repeat(4, 1fr); }
  .pillars { grid-template-columns: repeat(3, 1fr); }
  .safety-secondary { grid-template-columns: repeat(4, 1fr); }
  .nepal-chips { grid-template-columns: 1fr 1fr; }
  .contact-card { grid-template-columns: 1.08fr 1fr; }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 3rem; }
  .float-card--right { right: 0; }
  .hero-visual { min-height: 560px; }
  .launch-panel {
    grid-template-columns: 1.15fr 0.85fr;
    min-height: 460px;
  }
  .launch-visual { display: block; }
}

@media (min-width: 1024px) {
  .nav-toggle { display: none; }

  .primary-nav {
    display: block;
    position: static;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .primary-nav ul {
    flex-direction: row;
    align-items: center;
    gap: 0.35rem;
  }

  .primary-nav a {
    padding: 0.62rem 0.9rem;
    font-size: 0.96rem;
  }

  .nav-cta .btn {
    width: auto;
    margin: 0 0 0 0.45rem;
    min-height: 44px;
    padding: 0.55rem 1.2rem;
    font-size: 0.94rem;
  }

  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2.75rem;
  }

  .journey {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.4rem;
    align-items: start;
  }

  .journey::before {
    left: calc(12.5% - 0px);
    right: calc(12.5% - 0px);
    top: 28px;
    bottom: auto;
    width: auto;
    height: 3px;
    background: linear-gradient(90deg, var(--teal), rgba(45,212,191,0.28));
  }

  .journey-step {
    grid-template-columns: 1fr;
    text-align: left;
    padding: 0;
    justify-items: start;
  }

  .journey-num {
    margin-bottom: 0.35rem;
  }

  .riders-grid,
  .drivers-grid,
  .nepal-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3.75rem;
  }
}

@media (max-width: 767px) {
  .float-badge--top,
  .float-card--right {
    display: none;
  }

  .float-badge--bottom {
    left: 1rem;
    right: 1rem;
    bottom: 0.25rem;
    justify-content: center;
    animation: none;
  }

  .hero-visual {
    min-height: 440px;
    padding-bottom: 2.5rem;
  }

  .safety-secondary {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

/* Final production polish */
:root {
  --max: 1300px;
}

.section {
  padding: clamp(4.25rem, 6.5vw, 6.75rem) 0;
}

.eyebrow,
.phone-label,
.field-label,
.offer-meta,
.status-pill,
.earn-box span {
  font-size: max(0.82rem, 13px);
}

.btn {
  box-shadow: 0 0 0 rgba(45, 212, 191, 0);
  transition:
    transform 0.22s var(--ease),
    box-shadow 0.22s ease,
    background 0.22s ease,
    border-color 0.22s ease,
    color 0.22s ease;
}

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

.btn-primary:hover {
  box-shadow: 0 12px 30px rgba(45, 212, 191, 0.24);
}

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

.header-shell {
  background: linear-gradient(135deg, rgba(42, 48, 68, 0.76), rgba(25, 30, 53, 0.7));
  border-color: rgba(255, 255, 255, 0.16);
}

.site-header.is-solid .header-shell {
  background: linear-gradient(135deg, rgba(39, 45, 65, 0.94), rgba(20, 25, 48, 0.95));
  border-color: rgba(255, 255, 255, 0.13);
}

.brand-logo,
.brand img {
  height: 46px;
  width: auto;
  object-fit: contain;
  border-radius: 0;
}

.hero {
  min-height: min(100vh, 1080px);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.06;
  max-width: 10.5ch;
}

.hero::before {
  background-size: 52px 52px;
  opacity: 0.9;
}

.hero-visual::before,
.hero-visual::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(32px);
  pointer-events: none;
}

.hero-visual::before {
  width: 48%;
  aspect-ratio: 1;
  left: 18%;
  top: 18%;
  background: rgba(45, 212, 191, 0.18);
}

.hero-visual::after {
  width: 38%;
  aspect-ratio: 1;
  right: 12%;
  bottom: 12%;
  background: rgba(94, 142, 255, 0.16);
}

.phone {
  width: min(100%, 360px);
}

.phone-screen {
  padding: 1.25rem 1.1rem 1.35rem;
}

.offer + .offer {
  margin-top: 0.55rem;
}

.float-badge--top {
  right: 1%;
  top: 4%;
}

.float-card--right {
  right: -1%;
  top: 42%;
  max-width: 190px;
}

.hero-note {
  color: rgba(255, 255, 255, 0.66);
  font-size: clamp(0.95rem, 1.1vw, 1rem);
}

.trust {
  position: relative;
  padding: 2.15rem 0;
  background:
    linear-gradient(90deg, rgba(45, 212, 191, 0.04), transparent 30%, rgba(142, 197, 255, 0.06)),
    #f7f5f0;
  border-block: 1px solid rgba(26, 20, 80, 0.09);
}

.trust-grid {
  gap: 0;
}

.trust-item {
  padding: 0.35rem clamp(0.8rem, 2vw, 1.55rem);
  align-items: center;
}

.trust-item + .trust-item {
  border-left: 1px solid rgba(26, 20, 80, 0.11);
}

.trust-icon {
  width: 50px;
  height: 50px;
  border-radius: 16px;
}

.trust-icon svg {
  width: 23px;
  height: 23px;
}

.trust-item strong {
  font-family: var(--font-display);
  font-size: 1.07rem;
  font-weight: 600;
  letter-spacing: -0.015em;
}

.trust-item span {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.65;
}

.how {
  background:
    linear-gradient(180deg, rgba(142, 197, 255, 0.05), transparent 28%),
    var(--paper);
}

.journey-num {
  width: 64px;
  height: 64px;
  font-size: 1.15rem;
  box-shadow:
    0 0 0 7px rgba(45, 212, 191, 0.1),
    0 10px 24px rgba(26, 20, 80, 0.14);
}

.journey::before {
  left: 31px;
  width: 3px;
  background: linear-gradient(180deg, var(--teal), var(--blue-soft), rgba(45, 212, 191, 0.28));
}

.journey-step {
  grid-template-columns: 64px 1fr;
}

.journey-icon {
  transition: transform 0.22s var(--ease);
}

.journey-step:hover .journey-icon {
  transform: translateY(-2px);
}

.riders {
  background:
    radial-gradient(circle at 8% 50%, rgba(45, 212, 191, 0.06), transparent 26%),
    var(--cream);
}

.rider-mock {
  min-height: 500px;
  padding: clamp(1.5rem, 3vw, 2rem);
  box-shadow: 0 26px 60px rgba(26, 20, 80, 0.16);
  overflow: hidden;
}

.rider-mock::before {
  content: "";
  position: absolute;
  inset: 12% -5% auto auto;
  width: 42%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(45, 212, 191, 0.12);
  filter: blur(26px);
  pointer-events: none;
}

.rider-mock > * {
  position: relative;
  z-index: 1;
}

.mini-map {
  height: 145px;
}

.rider-mock .offer.is-selected {
  border-color: rgba(94, 234, 212, 0.7);
  box-shadow: 0 0 0 3px rgba(45, 212, 191, 0.1);
}

.benefit-list li,
.nepal-chip,
.pillar,
.safety-secondary li,
.mail-item {
  transition:
    transform 0.22s var(--ease),
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease;
}

.benefit-list li:hover,
.nepal-chip:hover,
.safety-secondary li:hover,
.mail-item:hover {
  transform: translateY(-3px);
  border-color: rgba(45, 212, 191, 0.28);
  box-shadow: 0 12px 26px rgba(26, 20, 80, 0.07);
}

.benefit-list li {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(244, 246, 251, 0.82));
}

.drivers {
  overflow: hidden;
  background:
    radial-gradient(ellipse at 20% 20%, rgba(45, 212, 191, 0.15), transparent 45%),
    radial-gradient(ellipse at 90% 80%, rgba(90, 40, 180, 0.32), transparent 40%),
    repeating-linear-gradient(125deg, rgba(255, 255, 255, 0.018) 0 1px, transparent 1px 44px),
    linear-gradient(160deg, #070b1f, #151240 55%, #0d1230);
}

.drivers::after {
  content: "";
  position: absolute;
  right: -8%;
  bottom: 9%;
  width: 48%;
  height: 48%;
  border: 2px solid rgba(45, 212, 191, 0.09);
  border-radius: 50%;
  transform: rotate(-12deg);
  pointer-events: none;
}

.driver-dash {
  position: relative;
  z-index: 1;
  gap: 1rem;
}

.dash-card {
  padding: 1.45rem 1.55rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.05));
  border-color: rgba(255, 255, 255, 0.15);
}

.status-pill {
  padding: 0.52rem 0.9rem;
  box-shadow: inset 0 0 0 1px rgba(45, 212, 191, 0.16);
}

.chip-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 112px;
}

.earn-box {
  background: linear-gradient(145deg, rgba(45, 212, 191, 0.08), rgba(255, 255, 255, 0.05));
}

.safety {
  background:
    linear-gradient(180deg, #fff, #fbfcff 78%, rgba(142, 197, 255, 0.06));
}

.safety-head {
  max-width: 48rem;
  margin-bottom: 2.35rem;
}

.pillar {
  position: relative;
  overflow: hidden;
  padding: 2.15rem 1.85rem;
  box-shadow: 0 14px 34px rgba(26, 20, 80, 0.06);
}

.pillar:nth-child(1) {
  background: linear-gradient(145deg, rgba(45, 212, 191, 0.12), rgba(255, 255, 255, 0.95));
}

.pillar:nth-child(2) {
  background: linear-gradient(145deg, rgba(142, 197, 255, 0.15), rgba(255, 255, 255, 0.95));
}

.pillar:nth-child(3) {
  background: linear-gradient(145deg, rgba(42, 27, 110, 0.09), rgba(255, 255, 255, 0.96));
}

.pillar::after {
  content: "";
  position: absolute;
  width: 90px;
  height: 90px;
  right: -36px;
  top: -36px;
  border-radius: 50%;
  border: 1px solid rgba(45, 212, 191, 0.18);
}

.pillar-icon {
  width: 62px;
  height: 62px;
  border: 1px solid rgba(45, 212, 191, 0.3);
  box-shadow: 0 10px 24px rgba(26, 20, 80, 0.18);
}

.pillar-icon svg {
  width: 27px;
  height: 27px;
}

.safety-secondary li {
  background: rgba(244, 246, 251, 0.9);
  border: 1px solid rgba(26, 20, 80, 0.06);
}

.nepal {
  background:
    radial-gradient(ellipse at 82% 22%, rgba(45, 212, 191, 0.1), transparent 38%),
    linear-gradient(180deg, var(--paper), #eef2f9);
}

.nepal-visual {
  min-height: 460px;
  box-shadow: 0 26px 58px rgba(26, 20, 80, 0.16);
}

.nepal-chip:nth-child(2n) {
  background: linear-gradient(135deg, #fff, rgba(142, 197, 255, 0.08));
}

.nepal-chip:nth-child(3n) {
  border-left: 3px solid rgba(45, 212, 191, 0.65);
}

.launch {
  padding: clamp(3.75rem, 5.5vw, 5.5rem) 0;
  background: linear-gradient(180deg, #eef2f9, var(--cream));
}

.launch-panel {
  min-height: 500px;
  background:
    radial-gradient(ellipse at 88% 15%, rgba(45, 212, 191, 0.34), transparent 40%),
    radial-gradient(ellipse at 10% 90%, rgba(142, 197, 255, 0.2), transparent 40%),
    linear-gradient(130deg, #070b1f 0%, #171044 46%, #322078 100%);
  box-shadow: 0 28px 70px rgba(26, 20, 80, 0.2);
}

.launch-panel h2 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.06;
}

.launch-notif {
  right: 2%;
  top: 16%;
  width: min(300px, 96%);
  padding: 1.2rem 1.3rem;
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.24);
}

.faq {
  background:
    linear-gradient(180deg, var(--cream), rgba(142, 197, 255, 0.06)),
    var(--cream);
}

.faq-item {
  box-shadow: 0 7px 22px rgba(26, 20, 80, 0.035);
}

.faq-item:hover {
  border-color: rgba(45, 212, 191, 0.28);
  box-shadow: 0 10px 28px rgba(26, 20, 80, 0.06);
}

.faq-item summary:focus-visible {
  outline: 3px solid rgba(45, 212, 191, 0.45);
  outline-offset: -3px;
  border-radius: 18px;
}

.faq-icon {
  transition: transform 0.22s var(--ease), background 0.22s ease;
}

.faq-item[open] .faq-icon {
  transform: rotate(180deg);
  background: var(--teal);
  color: var(--deep);
}

.faq-answer {
  animation: faqReveal 0.24s var(--ease);
}

.contact {
  padding-block: clamp(3.75rem, 5.5vw, 5.75rem);
  background: linear-gradient(180deg, #f5f8fc, #fff 34%);
}

.contact-card {
  box-shadow: 0 24px 56px rgba(26, 20, 80, 0.09);
}

.contact-left h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.6vw, 3.4rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.mail-item[href^="mailto:drivers"] {
  border-color: rgba(45, 212, 191, 0.42);
  box-shadow: 0 0 0 3px rgba(45, 212, 191, 0.06);
}

.contact-icon svg,
.mail-icon svg {
  width: 21px;
  height: 21px;
  display: block;
}

.site-footer {
  position: relative;
  border-top: 1px solid rgba(45, 212, 191, 0.2);
  box-shadow: inset 0 1px 0 rgba(142, 197, 255, 0.05);
}

.footer-col h4 {
  color: var(--teal-bright);
}

.footer-nav a[href^="mailto:"] {
  color: #fff;
  text-decoration: underline;
  text-decoration-color: rgba(45, 212, 191, 0.55);
  text-underline-offset: 0.25em;
}

.motion-ready {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}

.motion-ready.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes faqReveal {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 1024px) {
  .journey::before {
    left: 32px;
    right: calc(25% - 32px);
    top: 31px;
    width: auto;
    height: 3px;
    background: linear-gradient(90deg, var(--teal), var(--blue-soft), rgba(45, 212, 191, 0.3));
  }

  .journey-step {
    grid-template-columns: 1fr;
  }

  .riders-grid {
    grid-template-columns: 1.04fr 0.96fr;
    gap: clamp(3rem, 5vw, 5rem);
  }

  .drivers-grid {
    grid-template-columns: 0.92fr 1.08fr;
    gap: clamp(3rem, 5vw, 5rem);
  }

  .nepal-grid {
    grid-template-columns: 1.06fr 0.94fr;
    gap: clamp(3rem, 5vw, 5rem);
  }
}

@media (min-width: 1440px) {
  .hero-grid {
    grid-template-columns: 1.08fr 0.92fr;
    gap: 4.5rem;
  }

  .hero-visual {
    min-height: 640px;
  }

  .phone {
    width: 380px;
  }

  .float-card--right {
    right: -18%;
    top: 45%;
    width: 175px;
  }
}

@media (max-width: 1023px) {
  .header-shell {
    min-height: 62px;
  }

  .primary-nav {
    left: 0;
    right: 0;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .float-card--right {
    display: none;
  }

  .trust-grid {
    grid-template-columns: 1fr 1fr;
  }

  .trust-item:nth-child(3) {
    border-left: 0;
  }

  .trust-item:nth-child(n + 3) {
    border-top: 1px solid rgba(26, 20, 80, 0.1);
    padding-top: 1.25rem;
    margin-top: 1rem;
  }
}

@media (min-width: 1024px) and (max-width: 1199px) {
  .float-card--right {
    display: none;
  }
}

@media (min-width: 1200px) and (max-width: 1439px) {
  .float-card--right {
    right: -18%;
    top: 45%;
    width: 175px;
  }
}

@media (max-width: 767px) {
  :root {
    --header-h: 78px;
  }

  body {
    font-size: clamp(1rem, 1.1vw, 1.125rem);
  }

  .container {
    width: min(100% - 1.25rem, var(--max));
  }

  .site-header {
    padding: 0.65rem 0;
  }

  .site-header.is-solid {
    padding: 0.5rem 0;
  }

  .header-shell {
    padding: 0.48rem 0.55rem 0.48rem 0.7rem;
  }

  .brand-logo,
  .brand img {
    height: 36px;
    width: auto;
    object-fit: contain;
  }

  .hero {
    min-height: auto;
    padding: 3.5rem 0 4.5rem;
  }

  .hero h1 {
    max-width: 12ch;
  }

  .hero-grid {
    gap: 2.25rem;
  }

  .hero-visual {
    min-height: 500px;
  }

  .phone {
    width: min(100%, 340px);
  }

  .trust-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .trust-item {
    padding: 1rem 0.25rem;
  }

  .trust-item + .trust-item {
    border-left: 0;
    border-top: 1px solid rgba(26, 20, 80, 0.1);
  }

  .journey {
    margin-top: 2.25rem;
  }

  .journey-step {
    grid-template-columns: 64px minmax(0, 1fr);
  }

  .rider-mock {
    min-height: 0;
    overflow: hidden;
  }

  .benefit-list li {
    min-height: 0;
  }

  .earn-grid {
    grid-template-columns: 1fr;
  }

  .action-row .chip-btn {
    flex: 1 1 130px;
  }

  .pillar {
    padding: 1.75rem 1.4rem;
  }

  .nepal-visual {
    min-height: 350px;
  }

  .launch-panel {
    min-height: 0;
  }

  .faq-item summary {
    padding: 1.2rem 1rem;
  }

  .faq-answer {
    padding: 0 1rem 1.25rem;
  }

  .contact-left,
  .contact-right {
    padding: 1.65rem 1.25rem;
  }

  .footer-grid {
    gap: 2rem;
  }

  .footer-bottom {
    margin-top: 2.25rem;
  }
}

@media (max-width: 390px) {
  .hero-badge {
    font-size: 0.78rem;
    padding-inline: 0.75rem;
  }

  .cta-row .btn {
    width: 100%;
  }

  .phone-screen {
    padding-inline: 0.8rem;
  }

  .fare-chip,
  .offer {
    gap: 0.45rem;
  }

  .offer-price {
    font-size: 0.88rem;
  }

  .faq-icon {
    width: 34px;
    height: 34px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .motion-ready,
  .motion-ready.is-visible {
    opacity: 1;
    transform: none;
  }
}

/* Typography system: Sora display + Manrope UI/body */
.section-copy p,
.card p,
.float-card span,
.nepal-chip span,
.earn-box p,
.launch-meta p,
.launch-notif p,
.safety-note,
.footer-blurb,
.site-footer p,
.page-hero .meta,
.hero-badge,
.status-pill,
.phone-label,
.field-label,
.offer-meta {
  font-family: var(--font-body);
}

.float-card strong,
.nepal-chip strong,
.dash-top strong,
.fare-chip strong,
.earn-box strong {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.015em;
}

.journey-num {
  font-family: var(--font-display);
  font-weight: 700;
}

.faq .section-head h2,
.how .section-head h2,
.safety .section-head h2,
.riders .section-head h2,
.drivers .section-head h2,
.nepal .section-head h2,
.contact-left h2,
.page-hero h1 {
  font-family: var(--font-display);
}

.primary-nav a,
.btn,
.faq-item summary,
.faq-answer,
.mail-copy,
.footer-nav a,
.footer-bottom,
.legal-body p,
.legal-body li {
  font-family: var(--font-body);
}

h3,
.pillar h3,
.journey-body h3,
.benefit-list strong {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.015em;
}

.lead,
.hero-copy,
.hero-note,
.slogan,
.journey-body p,
.pillar p,
.benefit-list span {
  font-family: var(--font-body);
}

.hero h1,
.launch-panel h2 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.06;
  font-size: clamp(2.8rem, 5vw, 5rem);
}

h2 {
  font-weight: 700;
}

.launch-panel h2 {
  font-weight: 800;
}

.brand-logo,
.brand img {
  font-family: inherit;
}
