:root {
  color-scheme: light;
  --asphalt: #202722;
  --lane: #f4c542;
  --diesel: #2f6f5e;
  --borderline: #d8d2c2;
  --cab: #f6f4ec;
  --signal: #c84c2e;
  --paper: #fffdf6;
  --white: #ffffff;
  --muted: #62675f;
  --shadow: 0 22px 60px rgba(32, 39, 34, .12);
  --radius: 8px;
  --display: "Arial Narrow", "Roboto Condensed", "Aptos Narrow", Arial, sans-serif;
  --body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --data: "SFMono-Regular", ui-monospace, "Roboto Mono", Consolas, monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(90deg, rgba(216, 210, 194, .42) 1px, transparent 1px) 0 0 / 72px 72px,
    linear-gradient(180deg, rgba(216, 210, 194, .36) 1px, transparent 1px) 0 0 / 72px 72px,
    var(--cab);
  color: var(--asphalt);
  font-family: var(--body);
  line-height: 1.5;
}

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--lane);
  outline-offset: 4px;
}

.site-header,
.site-footer {
  align-items: center;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1180px;
  padding: 18px 20px;
}

.site-header {
  position: relative;
  z-index: 2;
}

.site-header nav {
  background: rgba(255, 253, 246, .78);
  border: 1px solid var(--borderline);
  border-radius: 999px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 5px;
}

.site-header nav a {
  border-radius: 999px;
  font-family: var(--data);
  font-size: .78rem;
  font-weight: 800;
  padding: 8px 12px;
  text-decoration: none;
}

.site-header nav a:hover {
  background: var(--asphalt);
  color: var(--lane);
}

.brand {
  align-items: center;
  display: inline-flex;
  font-weight: 900;
  gap: 10px;
  text-decoration: none;
}

.brand-mark {
  align-items: center;
  background: var(--asphalt);
  border-radius: 7px;
  color: var(--lane);
  display: inline-flex;
  font-family: var(--data);
  font-size: .78rem;
  height: 34px;
  justify-content: center;
  width: 42px;
}

.site-footer {
  border-top: 1px solid var(--borderline);
  color: var(--muted);
  font-size: .9rem;
}

.page-shell,
.home-hero {
  margin: 0 auto;
  max-width: 1180px;
  padding-left: 20px;
  padding-right: 20px;
}

.home-hero {
  align-items: stretch;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
  min-height: 680px;
  padding-bottom: 58px;
  padding-top: 72px;
}

.home-copy,
.hero,
.product-hero {
  display: grid;
  gap: 18px;
}

.home-copy {
  align-content: center;
}

.eyebrow {
  color: var(--diesel);
  font-family: var(--data);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: 0;
  margin: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 900;
  letter-spacing: 0;
}

h1 {
  font-size: 5.9rem;
  line-height: .9;
  margin-bottom: 0;
  max-width: 920px;
  text-transform: uppercase;
}

h2 {
  font-size: 3rem;
  line-height: .98;
  margin-bottom: 0;
  max-width: 780px;
}

h3 {
  font-size: 1.35rem;
  line-height: 1.08;
  margin-bottom: 0;
}

.home-copy > p:not(.eyebrow),
.product-hero p,
.section-heading p,
.lane-card p,
.process-step p,
.quiz-header p {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 720px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
}

.button-primary,
.button-secondary {
  align-items: center;
  border-radius: var(--radius);
  display: inline-flex;
  font-weight: 900;
  justify-content: center;
  min-height: 48px;
  padding: 12px 16px;
  text-decoration: none;
}

.button-primary {
  background: var(--lane);
  color: var(--asphalt);
  box-shadow: inset 0 -3px 0 rgba(32, 39, 34, .18);
}

.button-secondary {
  background: var(--paper);
  border: 1px solid var(--borderline);
}

.route-board {
  align-self: center;
  background:
    linear-gradient(135deg, rgba(244, 197, 66, .18), transparent 34%),
    var(--asphalt);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  color: var(--white);
  overflow: hidden;
  padding: 22px;
}

.route-board__header {
  align-items: baseline;
  border-bottom: 1px solid rgba(255, 255, 255, .16);
  display: flex;
  gap: 10px;
  justify-content: space-between;
  padding-bottom: 16px;
}

.route-board__header span {
  color: var(--lane);
  font-family: var(--data);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.route-line {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(4, 1fr);
  margin: 26px 0;
  position: relative;
}

.route-line::before {
  background: repeating-linear-gradient(90deg, var(--lane) 0 18px, transparent 18px 28px);
  content: "";
  height: 4px;
  left: 10%;
  position: absolute;
  right: 10%;
  top: 15px;
}

.route-line span {
  align-items: center;
  background: var(--asphalt);
  border: 2px solid var(--lane);
  border-radius: 999px;
  display: inline-flex;
  font-family: var(--data);
  font-size: .76rem;
  font-weight: 900;
  height: 34px;
  justify-content: center;
  justify-self: center;
  position: relative;
  width: 52px;
}

.market-grid,
.card-grid,
.process-grid,
.lane-grid {
  display: grid;
  gap: 14px;
}

.market-grid {
  grid-template-columns: 1fr;
}

.market-ticket,
.card,
.process-step,
.lane-card,
.section,
.lead-quiz,
.route-panel,
.lane-switcher,
.market-switcher {
  background: var(--paper);
  border: 1px solid var(--borderline);
  border-radius: var(--radius);
}

.market-ticket {
  align-items: center;
  color: var(--asphalt);
  display: grid;
  gap: 6px 14px;
  grid-template-columns: 64px 1fr;
  min-height: 82px;
  padding: 14px;
  position: relative;
  text-decoration: none;
}

.market-ticket::before {
  background: var(--lane);
  bottom: 10px;
  content: "";
  position: absolute;
  right: 12px;
  top: 10px;
  width: 4px;
}

.market-ticket:hover,
.lane-card:hover,
.card:hover {
  border-color: var(--asphalt);
  transform: translateY(-2px);
}

.ticket-code {
  align-items: center;
  background: var(--asphalt);
  border-radius: 6px;
  color: var(--lane);
  display: inline-flex;
  font-family: var(--data);
  font-weight: 900;
  grid-row: span 2;
  height: 54px;
  justify-content: center;
}

.market-ticket small {
  color: var(--muted);
  font-family: var(--data);
}

.home-section,
.product-lanes,
.product-page {
  padding-bottom: 76px;
  padding-top: 24px;
}

.process-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 22px;
}

.process-step {
  min-height: 230px;
  padding: 22px;
}

.process-step span {
  color: var(--signal);
  font-family: var(--data);
  font-weight: 900;
}

.lane-grid {
  grid-template-columns: repeat(2, 1fr);
  margin-top: 18px;
}

.lane-card {
  min-height: 220px;
  padding: 24px;
  position: relative;
  text-decoration: none;
}

.lane-card::after {
  background: repeating-linear-gradient(90deg, var(--lane) 0 24px, transparent 24px 38px);
  bottom: 24px;
  content: "";
  height: 5px;
  left: 24px;
  position: absolute;
  right: 24px;
}

.lane-marker {
  color: var(--diesel);
  font-family: var(--data);
  font-size: .8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.product-hero {
  align-items: end;
  grid-template-columns: minmax(0, 1fr) 240px;
  padding-top: 48px;
}

.product-hero h1 {
  font-size: 4.7rem;
}

.route-panel {
  box-shadow: var(--shadow);
  display: grid;
  gap: 7px;
  padding: 20px;
}

.route-panel span,
.route-panel small,
.lane-switcher > span,
.market-switcher > span {
  color: var(--muted);
  font-family: var(--data);
  font-size: .76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.route-panel strong {
  color: var(--diesel);
  font-family: var(--data);
  font-size: 3rem;
  line-height: 1;
}

.switcher-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, .8fr);
  margin: 28px 0 22px;
}

.lane-switcher,
.market-switcher {
  display: grid;
  gap: 12px;
  padding: 14px;
}

.lane-switcher > div,
.market-switcher > div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.lane-switcher a,
.market-switcher a {
  border: 1px solid var(--borderline);
  border-radius: 999px;
  font-weight: 900;
  min-height: 40px;
  padding: 9px 13px;
  text-decoration: none;
}

.lane-switcher a[aria-current="page"],
.market-switcher a[aria-current="page"] {
  background: var(--asphalt);
  border-color: var(--asphalt);
  color: var(--lane);
}

.trust-bar {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(4, 1fr);
  margin: 26px 0;
  overflow: hidden;
}

.trust-bar article {
  background: var(--asphalt);
  color: var(--white);
  min-height: 140px;
  padding: 18px;
}

.trust-bar span {
  color: var(--lane);
  display: block;
  font-family: var(--data);
  font-size: .74rem;
  font-weight: 900;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.trust-bar strong {
  display: block;
  font-size: 1rem;
  line-height: 1.25;
}

.section,
.lead-quiz {
  margin-top: 24px;
  padding: 24px;
}

.section-heading {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.table-wrap {
  border: 1px solid var(--borderline);
  border-radius: var(--radius);
  overflow-x: auto;
}

table {
  border-collapse: collapse;
  min-width: 760px;
  width: 100%;
}

th,
td {
  border-bottom: 1px solid var(--borderline);
  padding: 14px 16px;
  text-align: left;
  vertical-align: top;
}

th {
  background: var(--asphalt);
  color: var(--white);
  font-family: var(--data);
  font-size: .76rem;
  text-transform: uppercase;
}

tbody tr:nth-child(even) {
  background: rgba(216, 210, 194, .22);
}

.numeric {
  font-family: var(--data);
  text-align: right;
  white-space: nowrap;
}

.lead-quiz {
  background:
    linear-gradient(90deg, var(--lane) 0 8px, transparent 8px),
    var(--paper);
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, .9fr) minmax(320px, 1.1fr);
}

.quiz-header {
  display: grid;
  gap: 8px;
}

.quiz-steps {
  display: flex;
  gap: 8px;
  grid-column: 1 / -1;
  list-style: none;
  margin: 0;
  padding: 0;
}

.quiz-steps li {
  border: 1px solid var(--borderline);
  border-radius: 999px;
  font-family: var(--data);
  font-size: .76rem;
  font-weight: 900;
  padding: 7px 10px;
  text-transform: uppercase;
}

.quiz-steps li[aria-current="step"] {
  background: var(--diesel);
  border-color: var(--diesel);
  color: var(--white);
}

.lead-quiz form {
  display: grid;
  gap: 14px;
}

label {
  display: grid;
  gap: 7px;
  font-weight: 900;
}

select,
button {
  border: 1px solid var(--borderline);
  border-radius: var(--radius);
  font: inherit;
  min-height: 48px;
  padding: 10px 12px;
}

select {
  background: var(--white);
}

button {
  background: var(--lane);
  border-color: var(--lane);
  box-shadow: inset 0 -3px 0 rgba(32, 39, 34, .18);
  color: var(--asphalt);
  cursor: pointer;
  font-weight: 900;
}

.faq-list {
  border-top: 1px solid var(--borderline);
}

details {
  border-bottom: 1px solid var(--borderline);
  padding: 15px 0;
}

summary {
  cursor: pointer;
  font-weight: 900;
  list-style-position: outside;
}

details p {
  color: var(--muted);
  margin: 12px 0 0;
  max-width: 780px;
}

.card {
  display: grid;
  gap: 6px;
  min-height: 132px;
  padding: 20px;
  text-decoration: none;
}

.card span,
.card small {
  color: var(--muted);
}

@media (prefers-reduced-motion: no-preference) {
  .home-copy,
  .route-board {
    animation: enter-route .58s ease-out both;
  }

  .route-board {
    animation-delay: .08s;
  }

  .market-ticket,
  .lane-card,
  .card {
    transition: border-color .18s ease, transform .18s ease;
  }
}

@keyframes enter-route {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .home-hero,
  .product-hero,
  .switcher-grid,
  .lead-quiz {
    grid-template-columns: 1fr;
  }

  .home-hero {
    min-height: auto;
    padding-top: 38px;
  }

  .process-grid,
  .lane-grid,
  .trust-bar {
    grid-template-columns: 1fr;
  }

  .process-step,
  .lane-card {
    min-height: 0;
  }

  .route-panel {
    max-width: 280px;
  }

  h1,
  .product-hero h1 {
    font-size: 4.1rem;
  }

  h2 {
    font-size: 2.35rem;
  }
}

@media (max-width: 640px) {
  .site-header,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-header nav {
    border-radius: var(--radius);
    width: 100%;
  }

  .site-header nav a {
    flex: 1;
    text-align: center;
  }

  h1,
  .product-hero h1 {
    font-size: 3.05rem;
  }

  h2 {
    font-size: 2rem;
  }

  .route-board {
    padding: 16px;
  }

  .route-board__header {
    align-items: flex-start;
    flex-direction: column;
  }

  .route-line span {
    width: 44px;
  }

  .market-ticket {
    grid-template-columns: 52px 1fr;
  }

  .section,
  .lead-quiz {
    padding: 18px;
  }

  .quiz-steps {
    overflow-x: auto;
    padding-bottom: 4px;
  }
}
