:root {
  --text: #0f172a;
  --muted: #475569;
  --muted-2: #64748b;
  --card: #ffffff;
  --shadow: 0 14px 40px rgba(0, 0, 0, 0.18);
  --blue: #2563eb;
  --blue2: #1d4ed8;
  --pink: #ff00b8;
  --pink2: #e600a7;
  --green1: #10b981;
  --green2: #84cc16;
  --border: rgba(15, 23, 42, 0.12);
  --bg: #e7edf5;
  --dark: #0f172a;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", system-ui, -apple-system, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(37, 99, 235, 0.06), transparent 35%),
    radial-gradient(circle at 80% 60%, rgba(16, 185, 129, 0.05), transparent 35%);
  z-index: -1;
  pointer-events: none;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 18px;
}

/* Hero */
.hero {
  position: relative;
  min-height: 78vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 460px;
  align-items: center;
  gap: 48px;
  padding: 64px 56px;
  color: #fff;
  background: url("hero-bg.jpg") center / cover no-repeat;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.74) 0%,
    rgba(0, 0, 0, 0.4) 55%,
    rgba(0, 0, 0, 0.18) 100%
  );
  pointer-events: none;
}

.hero > * {
  position: relative;
  z-index: 1;
}

.hero-left {
  max-width: 560px;
  min-width: 0;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(6px);
}

.hero-left h1 {
  margin: 0 0 14px;
  font-size: clamp(38px, 5vw, 66px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.32);
}

.hero-left p {
  margin: 0 0 22px;
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
  max-width: 620px;
}

.hero-cta {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 20px;
}

.trust-line {
  margin-top: 16px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.5;
  max-width: 620px;
}

.social-proof {
  margin-top: 12px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 700;
}

.official-notice {
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 12px;
  background: #fff7ed;
  border: 1px solid #fed7aa;
  color: #7c2d12;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 600;
  max-width: 600px;
}

.official-notice strong {
  font-weight: 800;
}

/* Buttons */
.btn {
  border: 0;
  cursor: pointer;
  border-radius: 12px;
  padding: 14px 18px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
  transition: transform 0.12s ease, filter 0.12s ease, opacity 0.12s ease;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  user-select: none;
  font-size: 14px;
}

.btn:hover {
  filter: brightness(1.03);
}

.btn:active {
  transform: translateY(1px);
}

.btn:disabled {
  cursor: not-allowed;
}

.btn-primary {
  background: linear-gradient(90deg, var(--blue), var(--blue2));
  color: #fff;
}

.btn-outline {
  background: rgba(255, 255, 255, 0.92);
  color: var(--blue);
  border: 2px solid rgba(37, 99, 235, 0.35);
  box-shadow: none;
}

.btn-find {
  width: 100%;
  margin-top: 4px;
  background: linear-gradient(90deg, var(--green1), var(--green2));
  color: #fff;
}

.btn-uber {
  background: #111;
  color: #fff;
  flex: 1;
  min-width: 200px;
}

.btn-lyft {
  background: linear-gradient(90deg, var(--pink), var(--pink2));
  color: #fff;
  flex: 1;
  min-width: 200px;
}

.btn-loading {
  opacity: 0.88;
  pointer-events: none;
  position: relative;
}

.btn-loading::after {
  content: "";
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.45);
  border-top-color: #fff;
  border-radius: 50%;
  display: inline-block;
  animation: spin 0.8s linear infinite;
  margin-left: 8px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Booking card */
.booking-card {
  width: 100%;
  max-width: 460px;
  justify-self: end;
  background: var(--card);
  color: var(--text);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 26px 26px 22px;
}

.booking-card h2 {
  margin: 2px 0 16px;
  font-size: 28px;
  letter-spacing: -0.01em;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 12px;
}

.field label {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 800;
}

input {
  width: 100%;
  padding: 14px 14px;
  border-radius: 10px;
  border: 1px solid var(--border);
  outline: none;
  font-size: 16px;
  background: #fff;
}

input:focus {
  border-color: rgba(37, 99, 235, 0.55);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.datetime {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.helper {
  margin-top: 10px;
  font-size: 12.5px;
  color: var(--muted-2);
  line-height: 1.45;
}

/* Sections */
.section {
  padding: 60px 0;
  background: #eef2f7;
}

.section.alt {
  background: #e8edf4;
}

.section-title {
  margin: 0 0 12px;
  font-size: 36px;
  letter-spacing: -0.02em;
  text-align: center;
  color: var(--dark);
}

.section-subtitle {
  margin: 0 auto 30px;
  max-width: 780px;
  text-align: center;
  color: var(--muted);
  line-height: 1.6;
}

/* Ride cards */
.rides-row {
  display: flex;
  gap: 24px;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  margin-top: 18px;
}

.ride-card {
  width: min(520px, 92vw);
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 22px;
  padding: 22px 22px 18px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.ride-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.12);
}

.ride-card.best-pick {
  border: 2px solid rgba(16, 185, 129, 0.45);
  box-shadow:
    0 18px 40px rgba(16, 185, 129, 0.14),
    0 10px 24px rgba(15, 23, 42, 0.09);
  transform: translateY(-3px);
}

.ride-card.best-pick .pricebox {
  background: linear-gradient(90deg, #f0fdf4, #fbfdff);
  border-color: rgba(16, 185, 129, 0.28);
}

.ride-top {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ride-top.with-badge {
  justify-content: space-between;
}

.ride-top-main {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.logo-badge {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  overflow: hidden;
  font-weight: 900;
  font-size: 18px;
  color: #fff;
}

.logo-badge img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  display: block;
}

.logo-badge.uber {
  background: #111;
}

.logo-badge.lyft {
  background: var(--pink);
}

.ride-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.ride-meta strong {
  font-size: 18px;
}

.ride-meta span {
  font-size: 13px;
  color: var(--muted-2);
}

.best-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #dcfce7;
  color: #166534;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: inset 0 0 0 1px rgba(22, 101, 52, 0.12);
}

.pricebox {
  border: 1px dashed rgba(15, 23, 42, 0.18);
  border-radius: 18px;
  padding: 16px 16px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  background: #fbfcff;
}

.pricebox b {
  font-size: 20px;
}

.price-label {
  font-size: 12px;
  color: #64748b;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.price-eta {
  font-size: 12px;
  color: #64748b;
  margin-top: 4px;
}

.tag {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 12px;
  border-radius: 999px;
  background: #e2e8f0;
  color: #0f172a;
  white-space: nowrap;
}

.tag.best {
  background: #dcfce7;
  color: #14532d;
}

.ride-actions {
  margin-top: auto;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.referral-wrap {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-self: center;
}

.referral-link {
  font-size: 12px;
  font-weight: 700;
  color: #2563eb;
  text-decoration: underline;
}

.referral-note {
  font-size: 11px;
  color: #64748b;
}

.smallnote {
  text-align: center;
  margin-top: 14px;
  color: var(--muted-2);
  font-size: 13px;
  line-height: 1.5;
}

/* Result banner using existing statusNote element */
#statusNote {
  max-width: 920px;
  margin: 28px auto 0;
  padding: 16px 18px;
  border-radius: 18px;
  background: linear-gradient(90deg, #eff6ff, #ecfeff);
  border: 1px solid rgba(37, 99, 235, 0.18);
  color: #0f172a;
  text-align: center;
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.08);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.6;
}

.notice-bar {
  max-width: 900px;
  margin: 18px auto 0;
  padding: 12px 14px;
  border-radius: 14px;
  background: #fff7ed;
  border: 1px solid #fed7aa;
  color: #9a3412;
  font-size: 13px;
  line-height: 1.5;
}

.notice-bar strong {
  color: #7c2d12;
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 18px;
}

.step-card {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
}

.step-number {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-weight: 900;
  background: #dbeafe;
  color: #1d4ed8;
  margin-bottom: 14px;
}

.step-card h4 {
  margin: 0 0 8px;
  font-size: 20px;
}

.step-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

/* Waitlist */
.waitlist-form {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 16px;
}

.waitlist-form input {
  min-width: 280px;
}

.waitlist-status {
  margin-top: 12px;
  text-align: left;
  color: #cbd5e1;
}

/* Accordion / legal */
.accordion-section {
  padding: 60px 18px;
  background: #0f172a;
  color: #fff;
}

.accordion-wrap {
  max-width: 980px;
  margin: 0 auto;
}

.accordion-grid {
  display: grid;
  gap: 14px;
}

.accordion-item {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  overflow: hidden;
}

.accordion-item summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 20px;
  font-weight: 800;
  font-size: 16px;
}

.accordion-item summary::-webkit-details-marker {
  display: none;
}

.accordion-content {
  padding: 0 20px 20px;
  color: #cbd5e1;
  line-height: 1.6;
}

.faq-item {
  margin-top: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 18px;
  color: #cbd5e1;
}

.faq-item h4 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 18px;
}

.faq-item p {
  margin: 0;
  line-height: 1.6;
}

/* Footer */
footer {
  background: #020617;
  color: #cbd5e1;
  padding: 28px 18px;
  text-align: center;
  font-size: 13px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* Mobile sticky CTA */
.mobile-sticky-cta {
  display: none;
}

/* Responsive */
@media (max-width: 980px) {
  .hero {
    padding: 44px 18px;
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .booking-card {
    max-width: 100%;
    justify-self: start;
  }

  .hero::before {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.25));
  }

  .steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .mobile-sticky-cta {
    display: flex;
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 999;
    gap: 10px;
    padding: 12px;
    border-radius: 16px;
    background: rgba(15, 23, 42, 0.92);
    backdrop-filter: blur(8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
  }

  .mobile-sticky-cta .btn {
    flex: 1;
  }

  .ride-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-uber,
  .btn-lyft {
    min-width: 0;
    width: 100%;
  }

  .ride-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .ride-top.with-badge {
    align-items: flex-start;
  }

  .best-badge {
    margin-top: 6px;
  }

  #statusNote {
    padding: 14px;
    font-size: 14px;
  }

  .ride-card.best-pick {
    transform: none;
  }
}

@media (max-width: 640px) {
  .datetime {
    grid-template-columns: 1fr;
  }

  .hero-left h1 {
    font-size: 38px;
  }

  .section-title {
    font-size: 30px;
  }
}

  









