:root {
  --yellow: #FFC700;
  --yellow-dark: #E6B400;
  --black: #000000;
  --surface: #161616;
  --surface-alt: #1F1F1F;
  --white: #FFFFFF;
  --text-muted: #8A8A8A;
  --success: #2ECC71;
  --danger: #FF4D4D;
  --border: #2A2A2A;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'Poppins', system-ui, -apple-system, 'Segoe UI', sans-serif;
  background: var(--black);
  color: var(--white);
  line-height: 1.5;
}

a { color: inherit; }

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

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--border);
}

.site-header .container {
  display: flex;
  align-items: center;
  gap: 40px;
  padding-top: 16px;
  padding-bottom: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 20px;
  text-decoration: none;
  /* Anchors the brand mark to the left edge and pushes nav + CTA into a
     single right-aligned group, instead of spreading all three across the
     full header width (which left the nav links stranded, cramped
     together, in a lot of empty space). */
  margin-right: auto;
}

/* Sized by height so both the wide TRY wordmark-mark and the square
   Novapath icon stay crisp and correctly proportioned. */
.brand img { height: 28px; width: auto; }

nav.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
  font-weight: 500;
  color: #B8B8B8;
  white-space: nowrap;
}

nav.site-nav a { text-decoration: none; transition: color 0.15s ease; }
nav.site-nav a:hover { color: var(--yellow); }

@media (max-width: 760px) {
  /* No hamburger menu on this lean marketing site — rather than cram nav
     links, the CTA, and the logo into one row on a phone, drop the links
     and keep the two things a mobile visitor actually needs: the brand
     and the one action that matters (join the waitlist / visit TRY). */
  nav.site-nav { display: none; }
  .site-header .container { gap: 16px; }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.1s ease;
}

.btn:active { transform: scale(0.98); }

.btn-primary { background: var(--yellow); color: var(--black); }
.btn-primary:hover { background: var(--yellow-dark); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--border);
}
.btn-outline:hover { border-color: var(--white); }

/* Hero */
.hero {
  padding: 72px 0 56px;
  text-align: center;
}

.eyebrow {
  display: inline-block;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--yellow);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(32px, 6vw, 52px);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 16px;
}

.hero h1 .accent { color: var(--yellow); }

.hero p.subhead {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 32px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Sections */
section { padding: 56px 0; }
section.alt { background: var(--surface); }

.section-head { text-align: center; margin-bottom: 40px; }
.section-head h2 { font-size: clamp(24px, 4vw, 32px); margin: 0 0 8px; }
.section-head p { color: var(--text-muted); margin: 0; max-width: 500px; margin: 0 auto; }

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

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

.step-card, .feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
}

.step-number {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--black);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.step-card h3, .feature-card h3 { font-size: 17px; margin: 0 0 8px; }
.step-card p, .feature-card p { color: var(--text-muted); font-size: 14px; margin: 0; }

.feature-icon { font-size: 28px; margin-bottom: 12px; }

/* Audience split (Rider / Driver) */
.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

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

.audience-card {
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border);
}

.audience-card.rider { background: var(--surface); }
.audience-card.driver { background: var(--yellow); color: var(--black); }

.audience-card h3 { font-size: 22px; margin: 0 0 12px; }
.audience-card ul { padding-left: 20px; margin: 0 0 24px; }
.audience-card.rider ul { color: var(--text-muted); }
.audience-card li { margin-bottom: 8px; font-size: 14px; }

.audience-card.driver .btn-primary {
  background: var(--black);
  color: var(--white);
}
.audience-card.driver .btn-primary:hover { background: var(--surface); }

/* Waitlist form */
#waitlist { background: var(--surface); }

.waitlist-card {
  max-width: 480px;
  margin: 0 auto;
  background: var(--black);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.role-toggle {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
  background: var(--surface-alt);
  padding: 4px;
  border-radius: var(--radius-md);
}

.role-toggle button {
  flex: 1;
  padding: 10px;
  border: none;
  background: transparent;
  color: var(--text-muted);
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
}

.role-toggle button.active {
  background: var(--yellow);
  color: var(--black);
}

.field-label {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.waitlist-card input[type="tel"] {
  width: 100%;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--white);
  font-size: 15px;
  margin-bottom: 16px;
}

.waitlist-card input[type="tel"]:focus {
  outline: none;
  border-color: var(--yellow);
}

.waitlist-card .btn-primary { width: 100%; }

.form-message {
  margin-top: 14px;
  font-size: 14px;
  text-align: center;
}

.form-message.success { color: var(--success); }
.form-message.error { color: var(--danger); }

/* FAQ */
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.faq-item h3 { font-size: 16px; margin: 0 0 8px; }
.faq-item p { color: var(--text-muted); font-size: 14px; margin: 0; }

/* Footer */
footer.site-footer {
  border-top: 1px solid var(--border);
  padding: 40px 0;
  font-size: 13px;
  color: var(--text-muted);
}

.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-links { display: flex; gap: 20px; }
.footer-links a { text-decoration: none; }
.footer-links a:hover { color: var(--white); }

/* Legal pages */
.legal-page { padding: 56px 0 80px; }
.legal-page .container { max-width: 720px; }
.legal-page h1 { font-size: 28px; }
.legal-page h2 { font-size: 19px; margin-top: 36px; }
.legal-page p, .legal-page li { color: #D0D0D0; font-size: 15px; }
.legal-page a.btn-outline { margin-bottom: 32px; }
