: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; }

html { scroll-behavior: smooth; }

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

/* Scroll-reveal — elements start slightly lowered and transparent, then
   settle into place as they enter the viewport (see app.js's
   IntersectionObserver). Respects reduced-motion so it never becomes a
   readability problem for visitors who've asked for less animation. */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

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); }

/* Shared style for every "Get in touch" button (email + WhatsApp), so all
   three read as one set: on-brand black/white base, white label, yellow icon,
   yellow border on hover. Deliberately not WhatsApp green — the recognizable
   glyphs carry each channel, the yellow accent carries the brand. */
.btn-contact {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--border);
}
.btn-contact:hover { border-color: var(--yellow); }
.btn-contact svg { color: var(--yellow); }

.contact-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

/* 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;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.step-card:hover, .feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--yellow);
}

.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);
  transition: transform 0.2s ease;
}

.audience-card:hover { transform: translateY(-4px); }

.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); }

/* Leadership / directors */
.director-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 560px;
  margin: 0 auto;
}

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

.director-card {
  background: var(--black);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.director-card:hover { transform: translateY(-4px); border-color: var(--yellow); }

.director-photo {
  width: 160px;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin: 0 auto 20px;
}

.director-card h3 { font-size: 18px; margin: 0 0 4px; }

.director-title {
  color: var(--yellow);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0;
}

.director-bio {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
  margin: 14px 0 0;
}

.director-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}

.director-linkedin:hover { color: var(--yellow); }

/* 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"],
.waitlist-card select {
  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;
  font-family: inherit;
}

.waitlist-card input[type="tel"]:focus,
.waitlist-card select: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 accordion — one answer visible at a time keeps the section scannable
   instead of a wall of text, and clicking through several questions is
   exactly the kind of small interaction that keeps a visitor on the page. */
.faq-item { border-bottom: 1px solid var(--border); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  background: none;
  border: none;
  color: var(--white);
  text-align: left;
  font-family: inherit;
  cursor: pointer;
}

.faq-question h3 { font-size: 16px; margin: 0; }

.faq-icon {
  flex-shrink: 0;
  font-size: 20px;
  color: var(--yellow);
  transition: transform 0.25s ease;
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.25s ease, padding-bottom 0.25s ease;
}

.faq-item.open .faq-answer { max-height: 200px; padding-bottom: 20px; }

.faq-answer p { color: var(--text-muted); font-size: 14px; margin: 0; }

/* Social-proof counter above the waitlist form */
.waitlist-count {
  text-align: center;
  font-size: 14px;
  color: var(--yellow);
  font-weight: 600;
  margin-bottom: 16px;
  min-height: 20px;
}

/* 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; flex-wrap: wrap; }
.footer-links a { text-decoration: none; }
.footer-links a:hover { color: var(--white); }

.footer-address { margin-bottom: 16px; }

.footer-social {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--text-muted);
  transition: color 0.15s ease, border-color 0.15s ease;
}
.footer-social a:hover { color: var(--yellow); border-color: var(--yellow); }

/* 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; }

/* Technology */
.tech-stack {
  text-align: center;
  color: var(--text-muted);
  font-size: 13px;
  margin: 28px auto 0;
  max-width: 620px;
}

/* Careers */
.careers-card {
  max-width: 620px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
}

.careers-lead { margin: 0 0 24px; font-size: 15px; line-height: 1.7; }

.role-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 24px;
}

.role-tag {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  background: var(--surface-alt);
}

.careers-note { color: var(--text-muted); font-size: 14px; margin: 0 0 24px; }

/* ---------------------------------------------------------------------------
   Press and company news
--------------------------------------------------------------------------- */
.press-list {
  display: grid;
  gap: 16px;
  max-width: 760px;
  margin: 0 auto;
}

.press-item {
  display: flex;
  gap: 20px;
  padding: 22px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

.press-date {
  color: var(--yellow);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  padding-top: 2px;
  flex-shrink: 0;
}

.press-body h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

.press-body p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.6;
}

.press-body a { color: var(--yellow); }

.press-contact {
  text-align: center;
  color: var(--text-muted);
  margin-top: 24px;
  font-size: 0.9rem;
}

.press-contact a { color: var(--yellow); }

@media (max-width: 560px) {
  .press-item { flex-direction: column; gap: 8px; }
}
