/* ============================================
   TUJYANE RIDE — design tokens
   ============================================ */
:root {
  --amber: #FF7A1A;
  --deep-orange: #E8480C;
  --ink: #1A1712;
  --ink-soft: #574F45;
  --paper: #FDFBF7;
  --card: #F4F0E8;
  --line: #E7DFD1;
  --white: #ffffff;

  --grad: linear-gradient(120deg, var(--amber) 0%, var(--deep-orange) 100%);

  --display: "Archivo Expanded", "Arial Narrow", sans-serif;
  --body: "Inter", "Helvetica Neue", Arial, sans-serif;

  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

.wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0 0 0.4em;
  text-transform: uppercase;
}

h1 { font-size: clamp(2.6rem, 6vw, 5rem); line-height: 0.98; letter-spacing: -0.015em; }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.7rem); line-height: 1.05; }
h3 { font-size: 1.15rem; line-height: 1.2; }

p { margin: 0 0 1em; color: var(--ink-soft); }

.eyebrow {
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--deep-orange);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 3px;
  background: var(--grad);
  border-radius: 2px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 15px 30px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
}
.btn-primary {
  background: var(--grad);
  color: var(--white);
  box-shadow: 0 8px 24px -8px rgba(232, 72, 12, 0.55);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 28px -8px rgba(232, 72, 12, 0.65); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--paper); }
.btn-light {
  background: var(--paper);
  color: var(--deep-orange);
}
.btn-light:hover { transform: translateY(-2px); }

/* ============ HEADER ============ */
header.site {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(253, 251, 247, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 28px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  color: var(--ink);
  text-transform: uppercase;
}
.brand img { width: 36px; height: 36px; object-fit: contain; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  text-decoration: none;
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--ink-soft);
  transition: color 0.15s ease;
}
.nav-links a:hover { color: var(--deep-orange); }
.nav-cta { display: flex; gap: 10px; }
.nav-toggle { display: none; }

@media (max-width: 860px) {
  .nav-links, .nav-cta .btn-ghost { display: none; }
  .nav-toggle {
    display: block;
    background: none;
    border: none;
    font-size: 1.6rem;
    cursor: pointer;
    color: var(--ink);
  }
}

/* ============ HERO ============ */
.hero {
  position: relative;
  overflow: hidden;
  padding: 76px 0 40px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
}
.hero-copy p.lead {
  font-size: 1.15rem;
  max-width: 46ch;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.hero-stats {
  display: flex;
  gap: 36px;
  margin-top: 48px;
  flex-wrap: wrap;
}
.stat b {
  display: block;
  font-family: var(--display);
  font-size: 1.9rem;
  color: var(--deep-orange);
  line-height: 1;
}
.stat span {
  font-size: 0.82rem;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Road visual */
.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 28px;
  background: var(--card);
  overflow: hidden;
  border: 1px solid var(--line);
}
.hero-visual svg { width: 100%; height: 100%; display: block; }

.road-dash {
  stroke-dasharray: 22 18;
  stroke-dashoffset: 400;
  animation: dashmove 14s linear infinite;
}
@keyframes dashmove {
  to { stroke-dashoffset: 0; }
}
.car-move {
  animation: carfloat 3.2s ease-in-out infinite;
  transform-origin: center;
}
@keyframes carfloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-6px); }
}

/* ============ MARQUEE STRIP ============ */
.strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
  padding: 14px 0;
}
.strip-track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: scroll-left 26s linear infinite;
  font-family: var(--display);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.strip-track span { opacity: 0.85; }
.strip-track span.dot { color: var(--amber); opacity: 1; }
@keyframes scroll-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============ SECTIONS ============ */
section { padding: 96px 0; }
.section-head {
  max-width: 640px;
  margin-bottom: 56px;
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ============ ROUTE / HOW IT WORKS ============ */
.route {
  position: relative;
  padding-left: 8px;
}
.route-line {
  position: absolute;
  left: 27px;
  top: 18px;
  bottom: 18px;
  width: 4px;
  background: repeating-linear-gradient(to bottom, var(--deep-orange) 0 14px, transparent 14px 26px);
  border-radius: 4px;
}
@media (max-width: 700px) {
  .route-line { left: 21px; }
}
.stop {
  position: relative;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  padding-bottom: 52px;
}
.stop:last-child { padding-bottom: 0; }
.stop-marker {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--grad);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.3rem;
  box-shadow: 0 8px 20px -6px rgba(232, 72, 12, 0.5);
  z-index: 2;
}
@media (max-width: 700px) {
  .stop { grid-template-columns: 44px 1fr; gap: 18px; }
  .stop-marker { width: 44px; height: 44px; font-size: 1.05rem; }
}
.stop-body h3 { margin-bottom: 6px; }
.stop-body p { margin: 0; max-width: 52ch; }
.stop-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--deep-orange);
  margin-bottom: 6px;
}

/* ============ TWO-LANE (rider/driver) ============ */
.lanes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 800px) { .lanes { grid-template-columns: 1fr; } }
.lane {
  border-radius: 24px;
  padding: 44px 36px;
  position: relative;
  overflow: hidden;
}
.lane-rider {
  background: var(--ink);
  color: var(--paper);
}
.lane-driver {
  background: var(--grad);
  color: var(--white);
}
.lane h3 {
  font-size: 1.6rem;
  margin-bottom: 14px;
}
.lane p { color: rgba(255,255,255,0.82); max-width: 40ch; }
.lane ul {
  list-style: none;
  padding: 0;
  margin: 24px 0 30px;
}
.lane li {
  padding: 10px 0;
  border-top: 1px solid rgba(255,255,255,0.18);
  font-size: 0.95rem;
  display: flex;
  gap: 10px;
}
.lane li::before { content: "→"; opacity: 0.7; }

/* ============ CARDS (why us) ============ */
.grid-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 860px) { .grid-cards { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .grid-cards { grid-template-columns: 1fr; } }
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 30px 26px;
}
.card .icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: white;
}
.card h3 { margin-bottom: 8px; font-size: 1.05rem; }
.card p { margin: 0; font-size: 0.92rem; }

/* ============ CITIES ============ */
.cities {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.city-pill {
  border: 1px solid var(--line);
  background: var(--white);
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}
.city-pill.active {
  border-color: var(--deep-orange);
  color: var(--deep-orange);
  background: #FFF3E9;
}
.city-pill .live-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--deep-orange);
}

/* ============ TRUST / COMPANY ============ */
.trust {
  background: var(--ink);
  color: var(--paper);
}
.trust .section-head p { color: rgba(255,255,255,0.68); }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 20px;
}
@media (max-width: 900px) { .trust-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .trust-grid { grid-template-columns: 1fr; } }
.trust-item {
  border-top: 2px solid var(--amber);
  padding-top: 16px;
}
.trust-item b {
  display: block;
  font-family: var(--display);
  font-size: 0.95rem;
  text-transform: uppercase;
  margin-bottom: 6px;
  color: var(--white);
}
.trust-item span { font-size: 0.88rem; color: rgba(255,255,255,0.68); }

/* ============ FAQ ============ */
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.02rem;
  text-transform: none;
  letter-spacing: 0;
  list-style: none;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q .plus {
  font-size: 1.4rem;
  color: var(--deep-orange);
  transition: transform 0.2s ease;
  flex-shrink: 0;
  margin-left: 20px;
}
details[open] .plus { transform: rotate(45deg); }
.faq-a { margin-top: 12px; max-width: 62ch; }

/* ============ CTA BAND ============ */
.cta-band {
  background: var(--grad);
  border-radius: 28px;
  padding: 64px 48px;
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band h2 { color: var(--white); }
.cta-band p { color: rgba(255,255,255,0.9); max-width: 50ch; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 24px; }

/* ============ FOOTER ============ */
footer.site {
  background: var(--card);
  border-top: 1px solid var(--line);
  padding: 64px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-brand img { width: 34px; height: 34px; }
.footer-brand span {
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
}
.footer-col h4 {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { text-decoration: none; font-size: 0.92rem; color: var(--ink); }
.footer-col a:hover { color: var(--deep-orange); }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  color: var(--ink-soft);
}

/* ============ MOBILE MENU ============ */
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  padding: 8px 28px 20px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 12px 0;
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  border-bottom: 1px solid var(--line);
}
.mobile-menu .btn { margin-top: 14px; justify-content: center; }

/* focus visibility */
a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 3px solid var(--deep-orange);
  outline-offset: 3px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in { opacity: 1; transform: translateY(0); }
