/* ═══════════════════════════════════════════════════════
   BIDBOARD — Landing page styles
   Brand tokens aligned to BidBoard Brand System v1.0
   ═══════════════════════════════════════════════════════ */

:root {
  /* Navy — primary surfaces, text */
  --navy-900: #0B1E3A;
  --navy-800: #142A4D;
  --navy-700: #1E3860;
  --navy-500: #3E5F91;
  --navy-300: #97ACCA;
  --navy-200: #C6D2E2;
  --navy-100: #E4EAF3;
  --navy-050: #F2F5FA;

  /* Cream — paper */
  --cream-900: #4A4338;
  --cream-800: #6F6554;
  --cream-500: #C9BFA8;
  --cream-300: #E6DEC9;
  --cream-200: #EEE5D0;
  --cream-100: #F4EBD8;
  --cream-050: #FAF5E8;

  /* Amber — action, money, signal */
  --amber-900: #6B4A0B;
  --amber-700: #A9751F;
  --amber-600: #C98C2A;
  --amber-500: #E9A23B;
  --amber-400: #F0B25A;
  --amber-300: #F5C680;
  --amber-100: #FBE5BE;

  /* Semantic */
  --ink:           var(--navy-900);
  --ink-2:         var(--cream-900);
  --ink-muted:     var(--cream-800);
  --paper:         var(--cream-100);
  --paper-soft:    var(--cream-050);
  --paper-strong:  var(--cream-200);
  --accent:        var(--amber-500);
  --accent-deep:   var(--amber-700);
  --rule:          rgba(11, 30, 58, 0.08);
  --rule-strong:   rgba(11, 30, 58, 0.18);
  --shadow-sm:     0 1px 2px rgba(11, 30, 58, 0.04);
  --shadow-md:     0 6px 24px rgba(11, 30, 58, 0.08);
  --shadow-lg:     0 40px 80px -32px rgba(11, 30, 58, 0.35);
  --shadow-phone:  0 50px 90px -30px rgba(11, 30, 58, 0.45),
                   0 12px 32px -12px rgba(11, 30, 58, 0.2);

  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 22px;
  --r-xl: 32px;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ═══════════════════════════════════════════════════════
   RESET & BASE
   ═══════════════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4,
.display-hero, .display-section {
  font-family: 'Geist', 'Inter', sans-serif;
  color: var(--ink);
  margin: 0;
  font-weight: 700;
  letter-spacing: -0.03em;
}

p { margin: 0; }
a { color: inherit; text-decoration: none; transition: color 180ms var(--ease-out); }
a:hover { color: var(--accent-deep); }
ul, ol { margin: 0; padding: 0; list-style: none; }
img, svg { display: block; max-width: 100%; }
::selection { background: var(--amber-300); color: var(--navy-900); }

.mono {
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}
.wrap-narrow { max-width: 720px; }

@media (max-width: 640px) {
  .wrap { padding: 0 20px; }
}

/* ═══════════════════════════════════════════════════════
   REVEAL (scroll-triggered)
   ═══════════════════════════════════════════════════════ */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms var(--ease-out),
              transform 700ms var(--ease-out);
  transition-delay: var(--delay, 0ms);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ═══════════════════════════════════════════════════════
   NAV
   ═══════════════════════════════════════════════════════ */

.nav {
  position: sticky;
  top: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 40px;
  background: rgba(244, 235, 216, 0.82);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--rule);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-mark {
  position: relative;
  width: 36px; height: 36px;
  background: var(--navy-900);
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.logo-letter {
  font-family: 'Geist', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--paper);
  line-height: 1;
  letter-spacing: -0.04em;
}
.logo-dot {
  position: absolute;
  bottom: 5px;
  right: 5px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}
.logo-word {
  font-family: 'Geist', sans-serif;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.035em;
  color: var(--ink);
}

.nav-links {
  display: flex;
  gap: 32px;
}
.nav-links a {
  position: relative;
  font-family: 'Geist', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink-2);
  padding: 4px 0;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: -2px;
  height: 1.5px;
  background: var(--accent);
  transition: right 240ms var(--ease-out);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { right: 0; }

@media (max-width: 860px) {
  .nav { padding: 14px 20px; }
  .nav-links { display: none; }
}

/* ═══════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 999px;
  font-family: 'Geist', sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.01em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 180ms var(--ease-out),
              background 220ms var(--ease-out),
              color 220ms var(--ease-out),
              border-color 220ms var(--ease-out),
              box-shadow 220ms var(--ease-out);
  will-change: transform;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px var(--amber-300);
}
.btn-sm { padding: 10px 18px; font-size: 14px; }
.btn-lg { padding: 17px 28px; font-size: 16px; }

.btn-primary {
  background: var(--navy-900);
  color: var(--paper);
  box-shadow: 0 1px 2px rgba(11,30,58,.15), 0 4px 10px rgba(11,30,58,.1);
}
.btn-primary:hover {
  background: var(--navy-800);
  color: var(--paper);
  box-shadow: 0 2px 4px rgba(11,30,58,.2), 0 8px 20px rgba(11,30,58,.2);
}

.btn-ghost {
  background: transparent;
  color: var(--navy-900);
  border-color: var(--rule-strong);
}
.btn-ghost:hover {
  border-color: var(--navy-900);
  color: var(--navy-900);
  background: var(--paper-soft);
}

/* ═══════════════════════════════════════════════════════
   EYEBROW
   ═══════════════════════════════════════════════════════ */

.eyebrow,
.cta-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-2);
  background: var(--paper-strong);
  border: 1px solid var(--cream-300);
  padding: 9px 14px;
  border-radius: 999px;
  margin-bottom: 28px;
}
.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(233, 162, 59, 0.18);
}
.eyebrow-dot.dark { box-shadow: 0 0 0 4px rgba(233, 162, 59, 0.28); }

.cta-eyebrow {
  background: rgba(233, 162, 59, 0.12);
  border-color: rgba(233, 162, 59, 0.28);
  color: var(--amber-300);
}

/* ═══════════════════════════════════════════════════════
   DISPLAY TYPE
   ═══════════════════════════════════════════════════════ */

.display-hero {
  font-size: clamp(56px, 9vw, 124px);
  line-height: 0.94;
  letter-spacing: -0.045em;
  font-weight: 800;
}

.display-section {
  font-size: clamp(36px, 5.4vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  font-weight: 700;
}

.display-section.light { color: var(--paper); }
.muted { color: var(--ink-muted); }
.light .muted, .light { color: var(--navy-200); }

.amber { color: var(--accent); }
.amber-underline {
  position: relative;
  color: var(--ink);
}
.amber-underline::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.07em;
  height: 0.18em;
  background: var(--accent);
  z-index: -1;
  border-radius: 2px;
  opacity: 0.55;
}

/* ═══════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════ */

.hero {
  position: relative;
  padding: 64px 0 96px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 50% at 85% 20%, rgba(233, 162, 59, 0.14), transparent 60%),
    radial-gradient(50% 50% at 10% 90%, rgba(11, 30, 58, 0.06), transparent 60%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 56px;
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px;
}

.hero-copy { max-width: 620px; }

.hero-sub {
  font-family: 'Geist', sans-serif;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.45;
  color: var(--ink-2);
  margin-top: 24px;
  max-width: 520px;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.hero-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 40px;
  flex-wrap: wrap;
}

.hero-trust {
  display: flex;
  gap: 36px;
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid var(--rule);
  flex-wrap: wrap;
}
.hero-trust div { display: flex; flex-direction: column; gap: 4px; }
.hero-trust dt {
  font-family: 'Geist Mono', monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin: 0;
}
.hero-trust dd {
  font-family: 'Geist', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0;
}

@media (max-width: 960px) {
  .hero { padding: 32px 0 64px; }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 20px;
  }
}

/* ---------- HERO VISUAL ---------- */

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 620px;
}
.visual-stage {
  position: relative;
  width: 100%;
  max-width: 460px;
}

.phone {
  width: 320px;
  height: 640px;
  margin: 0 auto;
  background: var(--navy-900);
  border-radius: 46px;
  padding: 10px;
  box-shadow: var(--shadow-phone);
  position: relative;
  transform: rotate(-3deg);
  transition: transform 500ms var(--ease-out);
}
.hero-visual:hover .phone { transform: rotate(-1deg); }

.phone-notch {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 104px;
  height: 26px;
  background: #000;
  border-radius: 999px;
  z-index: 3;
}
.phone-screen {
  background: var(--paper);
  border-radius: 38px;
  width: 100%;
  height: 100%;
  padding: 56px 18px 20px;
  overflow: hidden;
  position: relative;
}

.screen-chrome {
  position: absolute;
  top: 20px;
  left: 30px;
  right: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.screen-chrome-time {
  font-family: 'Geist', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
  padding-right: 90px;
}
.screen-chrome-icons {
  display: flex;
  align-items: center;
  gap: 4px;
  padding-left: 90px;
}
.signal { width: 3px; height: 8px; background: var(--ink); border-radius: 1px; }
.signal:nth-child(2) { height: 10px; }
.signal:nth-child(3) { height: 11px; }
.battery { width: 18px; height: 9px; border: 1.2px solid var(--ink); border-radius: 2px; margin-left: 3px; position: relative; }
.battery::after { content: ""; position: absolute; inset: 1px; background: var(--ink); border-radius: 1px; }

.screen-head { margin-bottom: 12px; }
.screen-eyebrow {
  font-family: 'Geist Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 4px;
}
.screen-title {
  font-family: 'Geist', sans-serif;
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.filter-row {
  display: flex;
  gap: 6px;
  margin-bottom: 12px;
  overflow: hidden;
}
.filter-row .chip {
  font-family: 'Geist', sans-serif;
  font-size: 11px;
  font-weight: 500;
  padding: 5px 10px;
  border-radius: 999px;
  background: white;
  border: 1px solid var(--cream-300);
  color: var(--ink-2);
  white-space: nowrap;
}
.filter-row .chip.active {
  background: var(--navy-900);
  color: var(--paper);
  border-color: var(--navy-900);
}

.job-card {
  background: white;
  border: 1px solid var(--cream-300);
  border-radius: 14px;
  padding: 14px;
  margin-bottom: 10px;
  box-shadow: 0 1px 2px rgba(11,30,58,0.04);
}
.job-card.highlight {
  border-color: rgba(233, 162, 59, 0.5);
  box-shadow: 0 0 0 3px rgba(233, 162, 59, 0.15), 0 2px 6px rgba(11,30,58,0.06);
}
.job-card.faded { opacity: 0.55; padding-bottom: 10px; }

.job-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.vehicle {
  font-family: 'Geist Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--navy-050);
  color: var(--navy-800);
  border: 1px solid var(--navy-100);
  padding: 4px 7px;
  border-radius: 5px;
}
.fare {
  font-family: 'Geist', sans-serif;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.02em;
  color: var(--accent-deep);
}

.job-route { margin-bottom: 12px; }
.r-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Geist', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
  padding: 3px 0;
}
.r-dot { width: 8px; height: 8px; border-radius: 50%; }
.r-dot.green { background: #1E8E5E; }
.r-dot.amber { background: var(--accent); }
.r-line {
  margin-left: 3px;
  width: 2px;
  height: 10px;
  background: var(--cream-300);
}

.job-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
  border-top: 1px dashed var(--cream-300);
}
.job-meta {
  font-family: 'Geist Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.bid-cta {
  font-family: 'Geist', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--accent-deep);
}

/* Floating chips */
.float-chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: white;
  border-radius: 14px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--cream-300);
  z-index: 4;
  animation: float 6s ease-in-out infinite;
}
.chip-verified {
  top: 40px;
  left: -24px;
  animation-delay: -2s;
}
.chip-money {
  bottom: 80px;
  right: -30px;
  animation-delay: -4s;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}

.chip-avatar {
  width: 34px; height: 34px;
  background: var(--navy-900);
  color: var(--accent);
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Geist', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.02em;
}
.chip-eyebrow {
  font-family: 'Geist Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 2px;
}
.chip-value {
  font-family: 'Geist', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: -0.01em;
  color: var(--ink);
}

@media (max-width: 960px) {
  .hero-visual { min-height: 0; }
  .phone { transform: rotate(0); }
  .chip-verified { top: 20px; left: 10px; }
  .chip-money { bottom: 40px; right: 0; }
}
@media (max-width: 480px) {
  .phone { width: 280px; height: 580px; }
  .float-chip { display: none; }
}

/* ═══════════════════════════════════════════════════════
   SECTIONS — shared
   ═══════════════════════════════════════════════════════ */

.section { padding: 120px 0; position: relative; }
@media (max-width: 760px) { .section { padding: 72px 0; } }

.section-head { margin-bottom: 64px; max-width: 820px; }
.section-head-center { margin-left: auto; margin-right: auto; text-align: center; }

.section-num {
  display: inline-flex;
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin-bottom: 20px;
  padding-bottom: 4px;
  border-bottom: 1.5px solid var(--accent);
}
.section-num-light {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.section-sub {
  margin-top: 20px;
  font-family: 'Geist', sans-serif;
  font-size: clamp(17px, 1.3vw, 20px);
  line-height: 1.5;
  color: var(--ink-2);
  max-width: 640px;
  font-weight: 400;
  letter-spacing: -0.01em;
}
.section-sub.light { color: var(--navy-200); }
.section-head-center .section-sub { margin-left: auto; margin-right: auto; }

/* ═══════════════════════════════════════════════════════
   OUTCOMES
   ═══════════════════════════════════════════════════════ */

.section-outcomes {
  background: var(--paper-soft);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

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

.outcome-card {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--cream-300);
  border-radius: var(--r-lg);
  padding: 36px 32px 32px;
  transition: transform 300ms var(--ease-out),
              border-color 300ms var(--ease-out),
              box-shadow 300ms var(--ease-out);
  display: flex;
  flex-direction: column;
}
.outcome-card:hover {
  transform: translateY(-4px);
  border-color: var(--navy-300);
  box-shadow: var(--shadow-md);
}

.outcome-num {
  position: absolute;
  top: 28px;
  right: 32px;
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: var(--ink-muted);
}

.outcome-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--navy-900);
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: transform 300ms var(--ease-out);
}
.outcome-card:hover .outcome-icon { transform: rotate(-3deg) scale(1.05); }

.outcome-title {
  font-family: 'Geist', sans-serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 12px;
}

.outcome-body {
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-2);
  flex: 1;
}

.outcome-proof {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px dashed var(--rule);
  color: var(--ink-muted);
}
.outcome-proof .mono {
  letter-spacing: 0.14em;
}

@media (max-width: 960px) {
  .outcome-grid { grid-template-columns: 1fr; gap: 14px; }
  .outcome-card { padding: 28px 24px; }
}

/* ═══════════════════════════════════════════════════════
   HOW IT WORKS
   ═══════════════════════════════════════════════════════ */

.section-how {
  background: var(--navy-900);
  color: var(--paper);
}
.section-how .section-num { color: var(--accent); border-bottom-color: var(--accent); }

.step-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.step-card {
  background: rgba(244, 235, 216, 0.04);
  border: 1px solid rgba(244, 235, 216, 0.12);
  border-radius: var(--r-lg);
  padding: 32px 28px 28px;
  transition: background 300ms var(--ease-out),
              border-color 300ms var(--ease-out),
              transform 300ms var(--ease-out);
  display: flex;
  flex-direction: column;
}
.step-card:hover {
  background: rgba(244, 235, 216, 0.06);
  border-color: rgba(233, 162, 59, 0.4);
  transform: translateY(-3px);
}

.step-tag {
  display: inline-block;
  font-family: 'Geist Mono', monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 60px;
  padding-bottom: 10px;
  border-bottom: 1.5px solid rgba(233, 162, 59, 0.35);
}

.step-title {
  font-family: 'Geist', sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--paper);
  margin-bottom: 10px;
}

.step-body {
  font-size: 15px;
  line-height: 1.55;
  color: var(--navy-200);
}

@media (max-width: 1000px) {
  .step-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .step-grid { grid-template-columns: 1fr; }
  .step-tag { margin-bottom: 24px; }
}

/* ═══════════════════════════════════════════════════════
   EARNINGS
   ═══════════════════════════════════════════════════════ */

.section-earnings { padding-top: 120px; padding-bottom: 120px; }
.earnings-wrap {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 72px;
  align-items: start;
}
.earnings-head { margin-bottom: 0; position: sticky; top: 100px; }

.fare-list {
  background: var(--paper);
  border: 1px solid var(--cream-300);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.fare-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 28px;
  border-bottom: 1px solid var(--rule);
  transition: background 200ms var(--ease-out);
}
.fare-row:last-child { border-bottom: none; }
.fare-row:hover { background: var(--paper-soft); }

.fare-row.surcharge {
  background: rgba(233, 162, 59, 0.06);
}
.fare-row.surcharge:first-of-type { border-top: 1px dashed var(--rule-strong); }

.fare-left {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.fare-type {
  font-family: 'Geist', sans-serif;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.fare-meta {
  font-family: 'Geist Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.fare-range {
  font-family: 'Geist', sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--accent-deep);
  font-variant-numeric: tabular-nums;
}

.fare-note {
  grid-column: 2;
  margin-top: 20px;
  font-size: 13px;
  color: var(--ink-muted);
  line-height: 1.5;
}

@media (max-width: 960px) {
  .earnings-wrap { grid-template-columns: 1fr; gap: 40px; }
  .earnings-head { position: static; }
  .fare-note { grid-column: 1; }
}
@media (max-width: 480px) {
  .fare-row { padding: 18px 20px; flex-direction: column; align-items: flex-start; gap: 8px; }
  .fare-range { font-size: 18px; }
}

/* ═══════════════════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════════════════ */

.section-faq { background: var(--paper); }

.faq { display: grid; gap: 10px; }
.faq details {
  background: var(--paper-soft);
  border: 1px solid var(--cream-300);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color 240ms var(--ease-out),
              background 240ms var(--ease-out);
}
.faq details[open] {
  border-color: var(--navy-300);
  background: white;
}
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 26px;
  font-family: 'Geist', sans-serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.015em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  width: 14px;
  height: 14px;
  background:
    linear-gradient(currentColor, currentColor) center/100% 2px no-repeat,
    linear-gradient(currentColor, currentColor) center/2px 100% no-repeat;
  color: var(--accent-deep);
  transition: transform 240ms var(--ease-out);
  flex-shrink: 0;
}
.faq details[open] summary::after { transform: rotate(45deg); color: var(--ink); }
.faq details p {
  padding: 0 26px 24px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-2);
}

/* ═══════════════════════════════════════════════════════
   FINAL CTA
   ═══════════════════════════════════════════════════════ */

.section-cta {
  background: var(--navy-900);
  color: var(--paper);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.section-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(55% 45% at 85% 15%, rgba(233, 162, 59, 0.18), transparent 60%),
    radial-gradient(40% 40% at 15% 100%, rgba(233, 162, 59, 0.08), transparent 60%);
  pointer-events: none;
}

.cta-wrap {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
}
.cta-copy { max-width: 620px; }
.cta-headline { color: var(--paper); margin-bottom: 20px; }
.cta-sub {
  font-family: 'Geist', sans-serif;
  font-size: 18px;
  line-height: 1.5;
  color: var(--navy-200);
  font-weight: 400;
  letter-spacing: -0.01em;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-self: end;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 24px;
  background: var(--paper);
  color: var(--navy-900);
  border-radius: 14px;
  transition: transform 200ms var(--ease-out),
              background 240ms var(--ease-out),
              box-shadow 240ms var(--ease-out);
  min-width: 240px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.store-btn:hover {
  transform: translateY(-2px);
  background: white;
  color: var(--navy-900);
  box-shadow: 0 14px 36px rgba(0,0,0,0.3);
}
.store-btn-secondary {
  background: transparent;
  color: var(--paper);
  border: 1px solid rgba(244, 235, 216, 0.2);
  box-shadow: none;
}
.store-btn-secondary:hover {
  background: rgba(244, 235, 216, 0.08);
  color: var(--paper);
  box-shadow: none;
}
.store-text { display: flex; flex-direction: column; line-height: 1.15; }
.store-small {
  font-family: 'Geist Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.7;
  font-weight: 500;
}
.store-big {
  font-family: 'Geist', sans-serif;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.015em;
}

@media (max-width: 900px) {
  .section-cta { padding: 80px 0; }
  .cta-wrap { grid-template-columns: 1fr; gap: 40px; }
  .cta-actions { justify-self: start; flex-direction: row; flex-wrap: wrap; }
  .store-btn { min-width: 0; }
}

/* ═══════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════ */

.footer {
  background: var(--paper-strong);
  padding: 56px 0 0;
  color: var(--ink);
}
.footer-top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 40px;
  align-items: center;
  padding-bottom: 40px;
}
.logo-footer .logo-word { color: var(--ink); }
.footer-tag {
  font-family: 'Geist', sans-serif;
  font-size: 15px;
  color: var(--ink-muted);
  letter-spacing: -0.01em;
}
.footer-links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.footer-links a {
  font-family: 'Geist', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
}
.footer-links a:hover { color: var(--accent-deep); }

.footer-base {
  border-top: 1px solid var(--rule);
  padding: 18px 0;
}
.footer-base-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-base .mono { color: var(--ink-muted); }

@media (max-width: 780px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: left;
  }
  .footer-links { justify-content: flex-start; }
}

/* ═══════════════════════════════════════════════════════
   LEGAL PAGES
   ═══════════════════════════════════════════════════════ */

.legal-hero {
  padding: 140px 0 56px;
  border-bottom: 1px solid var(--rule);
  background:
    radial-gradient(1200px 600px at 50% -200px, rgba(233, 162, 59, 0.10), transparent 60%),
    var(--paper);
}
.legal-hero .wrap { max-width: 820px; }
.legal-hero .section-num { color: var(--ink-muted); }
.legal-hero h1 {
  font-family: 'Geist', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  font-size: clamp(40px, 6vw, 64px);
  line-height: 1.05;
  margin: 14px 0 18px;
}
.legal-hero .legal-sub {
  font-size: 17px;
  color: var(--ink-muted);
  max-width: 640px;
  margin: 0;
}
.legal-meta {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--rule);
}
.legal-meta div { display: flex; flex-direction: column; gap: 4px; }
.legal-meta dt {
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.legal-meta dd {
  margin: 0;
  font-family: 'Geist', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}

.legal-body {
  padding: 64px 0 96px;
}
.legal-body .wrap { max-width: 820px; }
.legal-article {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
}
.legal-article h2 {
  font-family: 'Geist', sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  font-size: 22px;
  line-height: 1.25;
  margin: 48px 0 14px;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
}
.legal-article h2:first-child { border-top: 0; padding-top: 0; margin-top: 0; }
.legal-article h3 {
  font-family: 'Geist', sans-serif;
  font-weight: 600;
  font-size: 16px;
  margin: 28px 0 8px;
  color: var(--ink);
}
.legal-article p { margin: 0 0 14px; color: var(--ink-2); }
.legal-article ul { margin: 0 0 18px; padding-left: 22px; color: var(--ink-2); }
.legal-article li { margin-bottom: 6px; }
.legal-article a {
  color: var(--accent-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
.legal-article a:hover { color: var(--ink); }
.legal-article strong { color: var(--ink); font-weight: 600; }

.legal-toc {
  margin: 28px 0 36px;
  padding: 20px 22px;
  background: var(--paper-soft);
  border: 1px solid var(--rule);
  border-radius: var(--r-md);
}
.legal-toc-title {
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin: 0 0 10px;
}
.legal-toc ol {
  margin: 0;
  padding-left: 22px;
  font-size: 14.5px;
  color: var(--ink-2);
}
.legal-toc li { margin-bottom: 4px; }
.legal-toc a { color: var(--ink-2); text-decoration: none; }
.legal-toc a:hover { color: var(--accent-deep); }

.legal-callout {
  margin: 18px 0 24px;
  padding: 16px 18px;
  border-left: 3px solid var(--accent);
  background: rgba(233, 162, 59, 0.08);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  font-size: 14.5px;
  color: var(--ink);
}

@media (max-width: 640px) {
  .legal-hero { padding: 112px 0 40px; }
  .legal-body { padding: 40px 0 64px; }
  .legal-article h2 { font-size: 20px; margin-top: 36px; }
}
