:root {
  --ink: #101316;
  --ink-soft: #4b5563;
  --muted: #6b7280;
  --line: #e5e7eb;
  --panel: #f7f8f9;
  --white: #ffffff;
  --accent: #A74A43;
  --accent-dark: #843B36;
  --accent-soft: #F4E7E5;
  --shadow: 0 20px 60px rgba(16, 19, 22, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(229, 231, 235, 0.8);
  backdrop-filter: blur(18px);
}

.nav-shell,
.hero-inner,
.section-inner,
.page-hero-inner,
.footer-inner {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.nav-shell {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: 148px;
  height: auto;
}


.brand-copy {
  display: grid;
  gap: 0;
  line-height: 1.05;
}

.brand-name {
  font-size: 1.04rem;
  font-weight: 900;
}

.brand-line {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
}

.nav-toggle {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  width: 18px;
  height: 2px;
  display: block;
  background: currentColor;
  content: "";
}

.nav-toggle span {
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  position: absolute;
  left: 0;
}

.nav-toggle span::before {
  top: -6px;
}

.nav-toggle span::after {
  top: 6px;
}

.site-nav {
  position: absolute;
  top: 72px;
  left: 0;
  right: 0;
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 12px 16px 18px;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.site-nav.is-open {
  display: flex;
}

.site-nav a {
  min-height: 42px;
  display: flex;
  align-items: center;
  padding: 8px 11px;
  color: var(--ink-soft);
  text-decoration: none;
  border-radius: 8px;
  font-weight: 800;
  font-size: 0.92rem;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--ink);
  background: var(--panel);
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.button-primary {
  color: var(--white);
  background: var(--ink);
}

.button-primary:hover {
  background: #000000;
}

.button-secondary {
  color: var(--white);
  background: var(--accent);
}

.button-secondary:hover {
  background: var(--accent-dark);
}

.button-ghost,
.button-outline {
  color: var(--ink);
  background: var(--white);
  border-color: var(--line);
}

.button-ghost:hover,
.button-outline:hover {
  border-color: var(--ink);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button-row-section {
  margin-top: 26px;
}

.button-row-page {
  margin-top: 26px;
}

.hero {
  min-height: calc(100svh - 72px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(180deg, #ffffff 0%, #f6f7f8 100%);
}

.hero-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
  align-items: center;
}

.hero-content {
  max-width: 720px;
  padding: 34px 0 12px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent-dark);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  padding: 7px 10px;
  color: var(--ink);
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 850;
}

.hero h1,
.page-hero h1 {
  margin: 0;
  line-height: 0.98;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.hero h1 {
  max-width: 860px;
  font-size: 2.2rem;
  line-height: 1.06;
}

.page-hero h1 {
  font-size: 2.35rem;
}

.hero p {
  max-width: 680px;
  margin: 14px 0 0;
  color: var(--ink-soft);
  font-size: 0.96rem;
}

.launch-note {
  display: inline-flex;
  margin-top: 14px;
  padding: 8px 11px;
  color: var(--ink);
  background: var(--accent-soft);
  border: 1px solid rgba(167, 74, 67, 0.22);
  border-radius: 8px;
  font-weight: 850;
  font-size: 0.84rem;
}

.hero .button-row {
  margin-top: 18px;
}

.app-visual {
  width: min(100%, 430px);
  margin: 0 auto 38px;
}

.phone-shell {
  padding: 14px;
  background: var(--ink);
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(16, 19, 22, 0.18);
}

.phone-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 8px 13px;
  color: var(--white);
  font-size: 0.84rem;
  font-weight: 900;
}

.phone-top span:last-child {
  color: var(--accent);
  font-size: 0.73rem;
  text-transform: uppercase;
}

.map-panel {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(167, 74, 67, 0.12), rgba(17, 17, 17, 0.06)),
    #f3f6f8;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}

.map-grid {
  position: absolute;
  inset: -20px;
  background:
    repeating-linear-gradient(25deg, rgba(16, 19, 22, 0.11) 0 2px, transparent 2px 44px),
    repeating-linear-gradient(115deg, rgba(16, 19, 22, 0.08) 0 2px, transparent 2px 52px);
}

.route-line {
  position: absolute;
  top: 48px;
  left: 92px;
  width: 166px;
  height: 92px;
  border-left: 5px solid var(--accent);
  border-bottom: 5px solid var(--accent);
  border-radius: 8px;
}

.map-pin,
.driver-dot {
  position: absolute;
  display: block;
  border-radius: 999px;
}

.map-pin {
  width: 18px;
  height: 18px;
  border: 4px solid var(--white);
  box-shadow: 0 8px 18px rgba(16, 19, 22, 0.22);
}

.pickup-pin {
  top: 38px;
  left: 82px;
  background: var(--accent);
}

.destination-pin {
  top: 130px;
  left: 250px;
  background: var(--accent);
}

.driver-dot {
  top: 84px;
  right: 76px;
  width: 28px;
  height: 28px;
  background: var(--ink);
  border: 5px solid var(--white);
  box-shadow: 0 10px 24px rgba(16, 19, 22, 0.24);
}

.map-pill {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 8px 10px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 850;
}

.route-card {
  display: grid;
  gap: 14px;
  margin-top: 12px;
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.route-row {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
}

.route-row div,
.fare-row div {
  display: grid;
  gap: 2px;
}

.route-row strong,
.fare-row strong {
  color: var(--ink);
  font-size: 0.85rem;
}

.route-row span:not(.route-dot),
.fare-row span {
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 650;
}

.route-dot {
  width: 13px;
  height: 13px;
  margin-top: 4px;
  border-radius: 999px;
}

.pickup-dot {
  background: var(--accent);
}

.destination-dot {
  background: var(--accent);
}

.fare-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.mini-cta {
  margin-top: 14px;
}

.validation-notice {
  padding: 18px 0;
  color: var(--ink);
  background: #fff9db;
  border-top: 1px solid #f1e29b;
  border-bottom: 1px solid #f1e29b;
}

.validation-notice .section-inner {
  display: grid;
  gap: 4px;
}

.validation-notice strong {
  font-size: 0.92rem;
}

.validation-notice p {
  margin: 0;
  color: var(--ink-soft);
}

.section {
  padding: 72px 0;
}

.section-muted {
  background: var(--panel);
}

.section-accent {
  background: var(--accent-soft);
}

.section-heading {
  max-width: 800px;
  margin-bottom: 30px;
}

.section-heading h2,
.split h2,
.content-panel h2,
.form-panel h2 {
  margin: 0;
  font-size: 2.05rem;
  line-height: 1.04;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.section-heading p,
.split p,
.content-panel p {
  margin: 14px 0 0;
  color: var(--ink-soft);
  font-size: 1.02rem;
}

.benefit-grid,
.status-grid,
.contact-grid,
.problem-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.benefit-card,
.status-card,
.contact-card,
.problem-card {
  min-height: 150px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 26px rgba(16, 19, 22, 0.05);
}

.benefit-card h3,
.status-card h3,
.contact-card h3,
.problem-card h3 {
  margin: 0;
  font-size: 1.12rem;
  letter-spacing: 0;
}

.benefit-card p,
.status-card p,
.contact-card p,
.problem-card p {
  margin: 10px 0 0;
  color: var(--ink-soft);
}

.problem-card ul {
  margin: 14px 0 0;
  padding-left: 20px;
  color: var(--ink-soft);
}

.problem-card li + li {
  margin-top: 7px;
}

.logic-flow {
  margin-top: 28px;
  padding: 24px;
  color: var(--white);
  background: var(--ink);
  border-radius: 8px;
}

.logic-flow h3 {
  margin: 0;
  color: var(--white);
  font-size: 1.18rem;
}

.flow-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 18px;
}

.flow-step {
  position: relative;
  padding: 14px 16px;
  color: var(--ink);
  background: var(--white);
  border-radius: 8px;
  font-weight: 850;
}

.flow-step::after {
  content: "↓";
  display: block;
  margin: 10px auto -4px;
  color: var(--accent);
  font-size: 1.25rem;
  text-align: center;
}

.flow-step:last-child::after {
  display: none;
}

.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
}

.split-media {
  min-height: 340px;
  background:
    linear-gradient(135deg, rgba(16, 19, 22, 0.04), rgba(167, 74, 67, 0.13)),
    var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.quote-band {
  padding: 34px;
  color: var(--white);
  background: var(--ink);
  border-radius: 8px;
}

.quote-band p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.1rem;
}

.cta-band {
  padding: 46px 0;
  color: var(--white);
  background: var(--ink);
}

.cta-band .section-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: center;
}

.cta-band h2 {
  margin: 0;
  font-size: 2rem;
  line-height: 1.05;
}

.cta-band p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.page-hero {
  padding: 60px 0 48px;
  color: var(--ink);
  background: linear-gradient(180deg, #ffffff, var(--panel));
  border-bottom: 1px solid var(--line);
}

.page-hero p {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.breadcrumb {
  margin: 0 0 14px;
  color: var(--accent-dark);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.content-panel {
  max-width: 860px;
}

.content-panel ul {
  margin: 18px 0 0;
  padding-left: 20px;
  color: var(--ink-soft);
}

.content-panel li + li {
  margin-top: 8px;
}

.form-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

.form-panel,
.support-panel {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 26px rgba(16, 19, 22, 0.05);
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 22px;
}

.field {
  display: grid;
  gap: 7px;
}

.field label,
.checkbox-field {
  font-weight: 800;
  color: var(--ink);
}

.field span {
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  font: inherit;
}

textarea {
  min-height: 108px;
  resize: vertical;
}

.checkbox-field {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: start;
  margin-top: 18px;
}

.checkbox-field input {
  width: 18px;
  min-height: 18px;
  margin-top: 3px;
}

.form-note {
  margin: 16px 0 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.form-actions {
  margin-top: 22px;
}

.form-status {
  min-height: 24px;
  margin-top: 14px;
  color: var(--accent-dark);
  font-weight: 800;
}

.hidden-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.site-footer {
  padding: 36px 0;
  color: rgba(255, 255, 255, 0.76);
  background: var(--ink);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.footer-inner a {
  color: var(--white);
}

.footer-links,
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.footer-links a {
  text-decoration: none;
  font-weight: 800;
}

.footer-legal {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.84rem;
}

.fine-print {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

@media (min-width: 760px) {
  .hero-content {
    padding: 94px 0 110px;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 1fr) 430px;
  }

  .app-visual {
    margin: 54px 0 54px auto;
  }

  .brand-kicker {
    margin-bottom: 18px;
  }

  .hero h1 {
    font-size: 5rem;
    line-height: 0.98;
  }

  .hero p {
    margin-top: 22px;
    font-size: 1.08rem;
  }

  .launch-note {
    margin-top: 20px;
    padding: 9px 12px;
    font-size: 0.9rem;
  }

  .hero .button-row {
    margin-top: 30px;
  }

  .page-hero h1 {
    font-size: 3.6rem;
  }

  .section-heading h2,
  .split h2,
  .content-panel h2,
  .form-panel h2 {
    font-size: 2.75rem;
  }

  .cta-band h2 {
    font-size: 3rem;
  }

  .benefit-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .benefit-grid-four {
    grid-template-columns: repeat(2, 1fr);
  }

  .status-grid,
  .contact-grid,
  .problem-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .split,
  .form-layout {
    grid-template-columns: 1fr 1fr;
  }

  .cta-band .section-inner,
  .footer-inner {
    grid-template-columns: 1.3fr 1fr;
  }

  .field-grid.two {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1080px) {
  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 2px;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .site-nav a {
    min-height: 40px;
    padding: 8px 10px;
    font-size: 0.88rem;
  }

  .flow-steps {
    grid-template-columns: repeat(5, 1fr);
  }

  .flow-step::after {
    content: "→";
    position: absolute;
    top: 50%;
    right: -16px;
    margin: 0;
    transform: translateY(-50%);
  }

  .benefit-grid-four {
    grid-template-columns: repeat(4, 1fr);
  }
}
