:root {
  --ink: #10263d;
  --ink-deep: #091a2a;
  --ink-soft: #263e55;
  --paper: #f6f1e8;
  --paper-bright: #fffdf8;
  --white: #ffffff;
  --red: #a93836;
  --red-deep: #822927;
  --blue: #2e607f;
  --blue-pale: #dce8ed;
  --line: #d9d2c6;
  --muted: #66717a;
  --shadow: 0 24px 70px rgba(10, 27, 42, 0.14);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 10px;
  --shell: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper-bright);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.62;
  text-rendering: optimizeLegibility;
}
body.nav-open { overflow: hidden; }
button, input, textarea, select { font: inherit; }
a { color: inherit; }
img, svg { display: block; max-width: 100%; }
button { color: inherit; }

.shell {
  width: min(calc(100% - 40px), var(--shell));
  margin-inline: auto;
}
.section { padding: 112px 0; }
.section-kicker,
.eyebrow {
  margin: 0 0 16px;
  color: var(--red);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .16em;
  line-height: 1.3;
  text-transform: uppercase;
}
.section-kicker--light { color: #f0b2a7; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  color: var(--ink-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  line-height: 1.08;
  text-wrap: balance;
}
h1 { font-size: clamp(3.25rem, 7vw, 6.6rem); letter-spacing: -.052em; }
h2 { margin-bottom: 24px; font-size: clamp(2.25rem, 4.5vw, 4.5rem); letter-spacing: -.038em; }
h3 { margin-bottom: 12px; font-size: 1.45rem; letter-spacing: -.02em; }
p { margin-bottom: 1.2em; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  transform: translateY(-150%);
  padding: 12px 18px;
  color: var(--white);
  background: var(--ink);
  border-radius: 8px;
  font-weight: 800;
}
.skip-link:focus { transform: translateY(0); }

.election-banner {
  color: #fff;
  background: var(--ink-deep);
  font-size: .86rem;
  letter-spacing: .02em;
}
.election-banner__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 38px;
  text-align: center;
}
.election-banner__inner > span:last-child { color: #c7d4dd; }
.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #f1b24a;
  box-shadow: 0 0 0 4px rgba(241, 178, 74, .15);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(255, 253, 248, .92);
  border-bottom: 1px solid rgba(16, 38, 61, .09);
  backdrop-filter: blur(16px);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 86px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
}
.brand__mark { width: 42px; color: var(--red); }
.brand__text { display: grid; gap: 1px; }
.brand__name {
  color: var(--ink-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -.035em;
  line-height: 1;
}
.brand__name span { color: var(--red); }
.brand__tag {
  color: var(--muted);
  font-size: .64rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.primary-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: .9rem;
  font-weight: 750;
}
.primary-nav a { text-decoration: none; }
.primary-nav a:hover { color: var(--red); }
.nav-toggle { display: none; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 850;
  line-height: 1;
  text-decoration: none;
  transition: transform .2s ease, background-color .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible,
a:focus-visible,
summary:focus-visible,
button:focus-visible {
  outline: 3px solid #e4a53d;
  outline-offset: 3px;
}
.button svg { width: 18px; }
.button--small { min-height: 42px; padding-inline: 18px; font-size: .84rem; }
.button--primary {
  color: #fff;
  background: var(--red);
  box-shadow: 0 12px 28px rgba(169, 56, 54, .21);
}
.button--primary:hover { background: var(--red-deep); }
.button--secondary {
  color: var(--ink);
  background: transparent;
  border-color: rgba(16, 38, 61, .3);
}
.button--secondary:hover { border-color: var(--ink); background: rgba(16, 38, 61, .04); }
.button--ink { color: #fff; background: var(--ink); }
.button--ink:hover { background: var(--ink-deep); }
.button--light { color: var(--ink-deep); background: #fff; }
.button--ghost-light { color: #fff; background: transparent; border-color: rgba(255, 255, 255, .55); }
.button--ghost-light:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-weight: 850;
  text-underline-offset: 5px;
  text-decoration-thickness: 1px;
}
.text-link:hover { color: var(--red); }

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 100px 0 118px;
  background: var(--paper);
}
.hero__wash {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    radial-gradient(circle at 88% 15%, rgba(46, 96, 127, .16), transparent 29%),
    linear-gradient(115deg, transparent 0 58%, rgba(255,255,255,.46) 58% 100%);
}
.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -160px;
  bottom: -270px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(46, 96, 127, .15);
  border-radius: 50%;
  box-shadow: 0 0 0 74px rgba(46,96,127,.035), 0 0 0 150px rgba(46,96,127,.025);
}
.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(350px, .72fr);
  align-items: center;
  gap: clamp(54px, 8vw, 110px);
}
.hero h1 { max-width: 820px; margin-bottom: 32px; }
.hero h1 em { color: var(--red); font-style: normal; }
.hero__lead {
  max-width: 740px;
  margin-bottom: 20px;
  color: var(--ink-soft);
  font-size: clamp(1.17rem, 2vw, 1.45rem);
  line-height: 1.55;
}
.hero__promise { max-width: 670px; color: var(--ink); font-weight: 800; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 34px 0 26px; }

.service-card {
  padding: 28px;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(16,38,61,.12);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}
.service-card__heading { display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.service-card__label { font-size: .76rem; font-weight: 900; letter-spacing: .11em; text-transform: uppercase; }
.service-card__state { display: inline-flex; align-items: center; gap: 7px; color: #795613; font-size: .74rem; font-weight: 850; }
.service-card__state span { width: 8px; height: 8px; border-radius: 50%; background: #d5921c; }
.route-visual { position: relative; margin: 28px 0 18px; padding: 8px 0 25px; }
.route-visual__path { stroke: var(--blue); stroke-width: 4; stroke-linecap: round; stroke-dasharray: 9 11; }
.route-visual__point { fill: var(--paper-bright); stroke: var(--blue); stroke-width: 5; }
.route-visual__point--start { fill: var(--red); stroke: var(--red); }
.route-visual__point--end { fill: var(--ink); stroke: var(--ink); }
.route-label { position: absolute; bottom: 0; color: var(--muted); font-size: .7rem; font-weight: 850; text-transform: uppercase; letter-spacing: .08em; }
.route-label--one { left: 0; }
.route-label--two { left: 37%; }
.route-label--three { right: 0; }
.service-facts { margin: 0; }
.service-facts div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  padding: 13px 0;
  border-top: 1px solid var(--line);
}
.service-facts dt { color: var(--muted); font-size: .83rem; }
.service-facts dd { margin: 0; color: var(--ink-deep); font-size: .83rem; font-weight: 850; text-align: right; }
.service-card__note { margin: 18px 0 0; color: var(--muted); font-size: .75rem; line-height: 1.5; }

.mission { background: var(--paper-bright); }
.mission__grid { display: grid; grid-template-columns: .38fr 1fr; gap: 70px; }
.mission h2 { max-width: 880px; }
.mission p:last-child { max-width: 900px; color: var(--ink-soft); font-size: 1.18rem; }

.process { background: #eef2f2; }
.section-heading {
  display: grid;
  grid-template-columns: 1.2fr .7fr;
  align-items: end;
  gap: 70px;
  margin-bottom: 55px;
}
.section-heading > p { color: var(--ink-soft); }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin: 0; padding: 0; list-style: none; }
.step-card {
  position: relative;
  min-height: 370px;
  padding: 34px;
  overflow: hidden;
  background: var(--paper-bright);
  border: 1px solid rgba(16,38,61,.1);
  border-radius: var(--radius-md);
}
.step-card__number {
  position: absolute;
  top: 16px;
  right: 22px;
  color: rgba(16,38,61,.07);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4.8rem;
  font-weight: 700;
  line-height: 1;
}
.step-card__icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 72px;
  color: var(--red);
  background: rgba(169,56,54,.08);
  border-radius: 50%;
}
.step-card__icon svg { width: 28px; }
.step-card p { color: var(--ink-soft); font-size: .95rem; }

.rules { color: #fff; background: var(--ink); }
.rules__grid { display: grid; grid-template-columns: .75fr 1.15fr; gap: 90px; }
.rules h2, .rules h3 { color: #fff; }
.rules__intro > p:last-child { color: #c5d2da; }
.principles { border-top: 1px solid rgba(255,255,255,.17); }
.principle { display: grid; grid-template-columns: 62px 1fr; gap: 24px; padding: 28px 0; border-bottom: 1px solid rgba(255,255,255,.17); }
.principle__mark { color: #76a4bd; font-size: .73rem; font-weight: 900; letter-spacing: .12em; }
.principle h3 { margin-bottom: 8px; font-family: inherit; font-size: 1.1rem; letter-spacing: 0; }
.principle p { margin: 0; color: #c5d2da; font-size: .92rem; }

.volunteer { background: var(--paper); }
.volunteer__header { display: grid; grid-template-columns: 1.2fr .7fr; gap: 80px; align-items: end; margin-bottom: 48px; }
.volunteer__cta > p { color: var(--ink-soft); }
.role-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.role-card { padding: 28px 24px; background: var(--paper-bright); border: 1px solid var(--line); border-radius: var(--radius-md); }
.role-card > span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 36px;
  color: var(--red);
  background: rgba(169,56,54,.08);
  border-radius: 50%;
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .07em;
}
.role-card h3 { font-family: inherit; font-size: 1.03rem; letter-spacing: 0; }
.role-card p { margin: 0; color: var(--ink-soft); font-size: .87rem; }

.argus { background: var(--paper-bright); }
.argus__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: center; }
.argus__diagram {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  background: #0b1b29;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.argus__diagram::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .22;
  background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 30px 30px;
}
.argus-core,
.argus-node { position: absolute; z-index: 2; display: grid; place-items: center; text-align: center; }
.argus-core {
  top: 50%;
  left: 50%;
  width: 142px;
  height: 142px;
  transform: translate(-50%, -50%);
  color: #fff;
  background: var(--red);
  border: 12px solid rgba(255,255,255,.08);
  border-radius: 50%;
  box-shadow: 0 0 0 18px rgba(169,56,54,.16), 0 18px 40px rgba(0,0,0,.35);
  font-weight: 900;
  letter-spacing: .1em;
}
.argus-core span { font-size: 1.1rem; }
.argus-core small { margin-top: -50px; font-size: .58rem; letter-spacing: .12em; text-transform: uppercase; }
.argus-node {
  width: 125px;
  min-height: 54px;
  padding: 9px;
  color: #d9e8f0;
  background: #132d41;
  border: 1px solid rgba(255,255,255,.17);
  border-radius: 10px;
  font-size: .7rem;
  font-weight: 800;
}
.argus-node--request { top: 45px; left: 42px; }
.argus-node--driver { top: 55px; right: 35px; }
.argus-node--return { right: 48px; bottom: 45px; }
.argus-line { position: absolute; z-index: 1; height: 2px; transform-origin: left center; background: linear-gradient(90deg, #6b9ab4, rgba(107,154,180,.1)); }
.argus-line::after { content: ""; position: absolute; right: 0; top: -3px; width: 8px; height: 8px; border-radius: 50%; background: #e5b44f; box-shadow: 0 0 12px rgba(229,180,79,.8); }
.argus-line--one { top: 128px; left: 142px; width: 175px; transform: rotate(26deg); }
.argus-line--two { top: 228px; left: 270px; width: 155px; transform: rotate(-48deg); }
.argus-line--three { top: 284px; left: 266px; width: 182px; transform: rotate(35deg); }
.argus__copy > p:not(.section-kicker) { color: var(--ink-soft); }
.check-list { display: grid; gap: 12px; margin: 30px 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 30px; font-weight: 750; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--red); font-weight: 900; }

.faq { background: #edf1f0; }
.faq__grid { display: grid; grid-template-columns: .72fr 1fr; gap: 100px; }
.faq__support { color: var(--ink-soft); }
.accordion { border-top: 1px solid rgba(16,38,61,.2); }
details { border-bottom: 1px solid rgba(16,38,61,.2); }
summary {
  position: relative;
  padding: 25px 48px 25px 0;
  cursor: pointer;
  font-weight: 850;
  list-style: none;
}
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; position: absolute; right: 4px; top: 19px; color: var(--red); font-size: 1.6rem; font-weight: 400; }
details[open] summary::after { content: "−"; }
details p { padding: 0 48px 24px 0; color: var(--ink-soft); font-size: .94rem; }

.closing { color: #fff; background: var(--red); }
.closing__inner { display: flex; align-items: end; justify-content: space-between; gap: 80px; }
.closing h2 { margin: 0; color: #fff; }
.closing__actions { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 12px; }

.site-footer { color: #bfcbd4; background: var(--ink-deep); }
.site-footer__top { display: grid; grid-template-columns: .75fr 1.25fr; gap: 80px; padding: 80px 0 60px; }
.brand--footer { align-self: start; color: #fff; }
.brand--footer .brand__name { color: #fff; }
.brand--footer .brand__tag { color: #8fa4b2; }
.footer-nav { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.footer-nav h2 { margin-bottom: 18px; color: #fff; font-family: inherit; font-size: .72rem; letter-spacing: .13em; text-transform: uppercase; }
.footer-nav a,
.footer-nav button { display: block; margin: 10px 0; padding: 0; color: #bfcbd4; background: none; border: 0; cursor: pointer; font-size: .84rem; text-decoration: none; text-align: left; }
.footer-nav a:hover,
.footer-nav button:hover { color: #fff; }
.site-footer__bottom { display: flex; justify-content: space-between; gap: 40px; padding: 24px 0 36px; border-top: 1px solid rgba(255,255,255,.12); }
.site-footer__bottom p { max-width: 620px; margin: 0; font-size: .72rem; }
.site-footer__bottom p:last-child { text-align: right; }

.notice-dialog {
  width: min(calc(100% - 32px), 510px);
  padding: 36px;
  color: var(--ink);
  background: var(--paper-bright);
  border: 0;
  border-radius: 22px;
  box-shadow: 0 30px 100px rgba(0,0,0,.35);
}
.notice-dialog::backdrop { background: rgba(9,26,42,.68); backdrop-filter: blur(5px); }
.notice-dialog__close { position: absolute; top: 12px; right: 16px; padding: 4px 8px; background: transparent; border: 0; cursor: pointer; font-size: 1.6rem; }
.notice-dialog__eyebrow { display: block; margin-bottom: 12px; color: var(--red); font-size: .7rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.notice-dialog h2 { margin-bottom: 15px; font-size: 2.2rem; }
.notice-dialog p { color: var(--ink-soft); }

@media (max-width: 1020px) {
  .section { padding: 90px 0; }
  .hero__grid, .argus__grid { grid-template-columns: 1fr; }
  .hero__copy { max-width: 850px; }
  .service-card { max-width: 670px; }
  .rules__grid { grid-template-columns: 1fr; gap: 45px; }
  .role-grid { grid-template-columns: repeat(2, 1fr); }
  .argus__diagram { max-width: 680px; }
  .faq__grid { gap: 60px; }
  .primary-nav { gap: 18px; }
  .primary-nav a { display: none; }
}

@media (max-width: 760px) {
  body { font-size: 16px; }
  .shell { width: min(calc(100% - 28px), var(--shell)); }
  .section { padding: 74px 0; }
  .election-banner__inner { flex-wrap: wrap; gap: 4px 8px; padding: 8px 0; line-height: 1.25; }
  .site-header__inner { min-height: 74px; }
  .brand__tag { display: none; }
  .nav-toggle {
    display: grid;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 12px;
    background: transparent;
    border: 1px solid rgba(16,38,61,.22);
    border-radius: 50%;
    cursor: pointer;
  }
  .nav-toggle span:not(.sr-only) { width: 100%; height: 2px; background: var(--ink); }
  .primary-nav {
    position: fixed;
    inset: 112px 0 auto;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 28px 22px 36px;
    background: var(--paper-bright);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 30px 50px rgba(9,26,42,.18);
  }
  .primary-nav.is-open { display: flex; }
  .primary-nav a { display: block; padding: 13px 4px; border-bottom: 1px solid var(--line); }
  .primary-nav .button { margin-top: 18px; }
  .hero { padding: 72px 0 76px; }
  .hero__grid { gap: 50px; }
  .hero h1 { font-size: clamp(3rem, 14vw, 4.7rem); }
  .hero__lead { font-size: 1.08rem; }
  .hero__actions { align-items: stretch; flex-direction: column; }
  .hero__actions .button { width: 100%; }
  .service-card { padding: 22px; border-radius: 20px; }
  .mission__grid,
  .section-heading,
  .volunteer__header,
  .faq__grid,
  .site-footer__top { grid-template-columns: 1fr; gap: 28px; }
  .steps { grid-template-columns: 1fr; }
  .step-card { min-height: auto; }
  .step-card__icon { margin-bottom: 44px; }
  .role-grid { grid-template-columns: 1fr; }
  .rules__grid { gap: 35px; }
  .principle { grid-template-columns: 44px 1fr; gap: 12px; }
  .argus__diagram { min-height: 390px; }
  .argus-node { width: 105px; font-size: .63rem; }
  .argus-core { width: 118px; height: 118px; }
  .argus-line--one { left: 119px; width: 135px; }
  .argus-line--two { left: 216px; width: 120px; }
  .argus-line--three { left: 210px; width: 130px; }
  .closing__inner { align-items: stretch; flex-direction: column; gap: 36px; }
  .closing__actions { justify-content: stretch; flex-direction: column; }
  .footer-nav { grid-template-columns: 1fr 1fr; }
  .site-footer__bottom { flex-direction: column; gap: 12px; }
  .site-footer__bottom p:last-child { text-align: left; }
}

@media (max-width: 480px) {
  .footer-nav { grid-template-columns: 1fr; }
  .service-card__heading { align-items: flex-start; flex-direction: column; gap: 6px; }
  .service-facts div { grid-template-columns: 1fr; gap: 3px; }
  .service-facts dd { text-align: left; }
  .argus-node--request { top: 35px; left: 25px; }
  .argus-node--driver { top: 45px; right: 20px; }
  .argus-node--return { right: 25px; bottom: 35px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}


/* Production multi-page foundation */
.breadcrumbs { padding: 24px 0 0; font-size: .78rem; color: var(--muted); }
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: 8px; margin: 0; padding: 0; list-style: none; }
.breadcrumbs li:not(:last-child)::after { content: "/"; margin-left: 8px; color: #a2a8ad; }
.breadcrumbs a { text-underline-offset: 4px; }
.page-hero { position: relative; isolation: isolate; overflow: hidden; padding: 68px 0 88px; background: var(--paper); }
.page-hero::after { content: ""; position: absolute; z-index: -1; right: -210px; top: -250px; width: 620px; height: 620px; border: 1px solid rgba(46,96,127,.14); border-radius: 50%; box-shadow: 0 0 0 80px rgba(46,96,127,.03), 0 0 0 165px rgba(46,96,127,.02); }
.page-hero__grid { display: grid; grid-template-columns: minmax(0,1.2fr) minmax(300px,.62fr); align-items: center; gap: 72px; }
.page-hero h1 { max-width: 900px; margin-bottom: 28px; font-size: clamp(3rem, 6vw, 5.8rem); }
.page-hero h1 em { color: var(--red); font-style: normal; }
.page-hero__lede { max-width: 800px; margin-bottom: 0; color: var(--ink-soft); font-size: clamp(1.12rem,2vw,1.38rem); }
.status-card, .aside-card { padding: 28px; background: rgba(255,255,255,.88); border: 1px solid rgba(16,38,61,.12); border-radius: var(--radius-md); box-shadow: 0 20px 55px rgba(10,27,42,.1); }
.status-card__label { display: block; margin-bottom: 12px; color: var(--red); font-size: .7rem; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.status-card h2, .aside-card h2 { margin-bottom: 14px; font-size: 1.75rem; }
.status-card p:last-child, .aside-card p:last-child { margin-bottom: 0; }
.status-line { display: flex; align-items: center; gap: 10px; margin: 18px 0 0; font-size: .83rem; font-weight: 850; }
.status-line::before { content: ""; width: 10px; height: 10px; background: #d5921c; border-radius: 50%; box-shadow: 0 0 0 5px rgba(213,146,28,.14); }
.content-section { padding: 92px 0; }
.content-section--tint { background: #eef2f2; }
.content-section--paper { background: var(--paper); }
.content-grid { display: grid; grid-template-columns: minmax(0,1fr) 330px; align-items: start; gap: 85px; }
.prose { max-width: 800px; }
.prose > h2 { margin-top: 60px; font-size: clamp(2rem,3.5vw,3.25rem); }
.prose > h2:first-child { margin-top: 0; }
.prose h3 { margin-top: 35px; }
.prose p, .prose li { color: var(--ink-soft); }
.prose strong { color: var(--ink); }
.prose ul, .prose ol { padding-left: 1.25rem; }
.prose li { margin: .6rem 0; }
.prose a { color: var(--red-deep); font-weight: 800; text-underline-offset: 4px; }
.aside-card { position: sticky; top: 126px; box-shadow: none; }
.aside-card ul { margin: 18px 0 0; padding-left: 1.1rem; color: var(--ink-soft); }
.aside-card li { margin: .55rem 0; }
.quick-links { display: grid; gap: 12px; margin-top: 24px; }
.quick-links a { display: flex; justify-content: space-between; gap: 16px; padding: 13px 0; border-top: 1px solid var(--line); font-weight: 800; text-decoration: none; }
.quick-links a:hover { color: var(--red); }
.card-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.info-card { padding: 30px; background: var(--paper-bright); border: 1px solid rgba(16,38,61,.11); border-radius: var(--radius-md); }
.info-card__number { display: block; margin-bottom: 42px; color: rgba(16,38,61,.19); font-family: Georgia,"Times New Roman",serif; font-size: 3rem; font-weight: 700; }
.info-card p { margin-bottom: 0; color: var(--ink-soft); font-size: .94rem; }
.policy-list { display: grid; gap: 0; margin: 28px 0 0; border-top: 1px solid var(--line); }
.policy-item { display: grid; grid-template-columns: 44px 1fr; gap: 18px; padding: 24px 0; border-bottom: 1px solid var(--line); }
.policy-item__mark { display: grid; place-items: center; width: 34px; height: 34px; color: #fff; background: var(--red); border-radius: 50%; font-size: .75rem; font-weight: 900; }
.policy-item h3 { margin: 0 0 8px; font-size: 1.25rem; }
.policy-item p { margin: 0; color: var(--ink-soft); }
.notice-box { margin: 32px 0; padding: 24px 26px; background: var(--blue-pale); border-left: 5px solid var(--blue); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; }
.notice-box strong { display: block; margin-bottom: 6px; color: var(--ink-deep); }
.notice-box p:last-child { margin-bottom: 0; }
.cta-band { padding: 72px 0; color: #fff; background: var(--red); }
.cta-band__inner { display: flex; align-items: center; justify-content: space-between; gap: 60px; }
.cta-band h2 { margin: 0; color: #fff; font-size: clamp(2rem,4vw,3.8rem); }
.cta-band p { max-width: 650px; margin: 14px 0 0; color: #ffe8e3; }
.cta-band__actions { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 12px; }
.page-meta { margin-top: 38px; color: var(--muted); font-size: .78rem; }
.definition-list { margin: 28px 0; }
.definition-list div { display: grid; grid-template-columns: 180px 1fr; gap: 24px; padding: 17px 0; border-top: 1px solid var(--line); }
.definition-list div:last-child { border-bottom: 1px solid var(--line); }
.definition-list dt { font-weight: 900; }
.definition-list dd { margin: 0; color: var(--ink-soft); }
.faq-page details { border-color: var(--line); }
.faq-page summary { font-size: 1.05rem; }
.faq-page details p { max-width: 760px; }
.site-map-list { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; margin: 28px 0; padding: 0; list-style: none; }
.site-map-list a { display: block; height: 100%; padding: 22px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); text-decoration: none; }
.site-map-list strong { display: block; color: var(--ink-deep); }
.site-map-list span { display: block; margin-top: 4px; color: var(--muted); font-size: .86rem; }
.not-found { min-height: 68vh; display: grid; place-items: center; padding: 100px 0; text-align: center; }
.not-found h1 { margin-bottom: 20px; }
.not-found p { max-width: 650px; margin-inline: auto; color: var(--ink-soft); }

@media (max-width: 900px) {
  .page-hero__grid, .content-grid { grid-template-columns: 1fr; gap: 48px; }
  .aside-card { position: static; }
  .card-grid { grid-template-columns: 1fr; }
  .cta-band__inner { align-items: flex-start; flex-direction: column; }
  .cta-band__actions { justify-content: flex-start; }
}
@media (max-width: 760px) {
  .page-hero { padding: 52px 0 68px; }
  .page-hero h1 { font-size: clamp(2.8rem,13vw,4.4rem); }
  .content-section { padding: 70px 0; }
  .site-map-list { grid-template-columns: 1fr; }
  .definition-list div { grid-template-columns: 1fr; gap: 5px; }
  .cta-band__actions { align-items: stretch; flex-direction: column; width: 100%; }
  .cta-band__actions .button { width: 100%; }
}

/* Final Polls & Back horizontal header logo */
.brand--header {
  flex: 0 1 auto;
  min-width: 0;
}

.brand__logo {
  display: block;
  width: clamp(220px, 23vw, 305px);
  height: auto;
}

@media (max-width: 760px) {
  .brand__logo {
    width: min(210px, calc(100vw - 96px));
  }
}


/* Footer logo lockup */
.brand--footer {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  padding: 7px 10px;
  background: var(--paper);
  border: 1px solid rgba(16, 38, 61, .16);
  border-radius: 10px;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.65),
    0 8px 20px rgba(3,14,24,.16);
}

.brand__footer-logo {
  display: block;
  width: min(260px, 100%);
  height: auto;
}

/* Fixed footer logo badge */
.brand--footer {
  box-sizing: border-box;
  justify-self: start;
  flex: 0 0 auto;
  width: 280px;
  min-width: 280px;
  max-width: 280px;
  padding: 7px 10px;
}

.brand__footer-logo {
  display: block;
  width: 258px;
  min-width: 258px;
  max-width: 258px;
  height: auto;
}

@media (max-width: 420px) {
  .brand--footer {
    width: min(280px, 100%);
    min-width: 0;
    max-width: 100%;
  }

  .brand__footer-logo {
    width: 100%;
    min-width: 0;
    max-width: 258px;
  }
}

/* driver-application-modal-v1 */
body.modal-open {
  overflow: hidden;
}

.driver-modal[hidden] {
  display: none;
}

.driver-modal {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
}

.driver-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 20, 32, .78);
  backdrop-filter: blur(8px);
}

.driver-modal__panel {
  position: relative;
  z-index: 1;
  width: min(980px, 100%);
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  padding: clamp(24px, 4vw, 42px);
  background: var(--paper);
  border: 1px solid rgba(16, 38, 61, .16);
  border-radius: var(--radius-md);
  box-shadow: 0 30px 100px rgba(0, 0, 0, .38);
}

.driver-modal__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(16, 38, 61, .12);
}

.driver-modal__header h2 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 5vw, 3.4rem);
}

.driver-modal__header p:last-child {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--ink-soft);
}

.driver-modal__close {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(16, 38, 61, .18);
  border-radius: 50%;
  color: var(--ink);
  background: #fff;
  font: inherit;
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
}

.driver-modal__close:hover {
  background: rgba(16, 38, 61, .05);
}

.driver-application {
  display: grid;
  gap: 28px;
  margin-top: 28px;
}

.driver-application fieldset {
  min-width: 0;
  margin: 0;
  padding: 24px;
  border: 1px solid rgba(16, 38, 61, .13);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, .62);
}

.driver-application legend {
  padding: 0 10px;
  color: var(--ink);
  font-size: 1.12rem;
  font-weight: 900;
}

.form-grid {
  display: grid;
  gap: 20px;
}

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

.form-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.driver-application label,
.form-control {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 750;
}

.driver-application label > span,
.form-control > span {
  line-height: 1.35;
}

.driver-application label small,
.form-control small {
  color: var(--ink-soft);
  font-size: .76rem;
  font-weight: 650;
}

.driver-application input,
.driver-application select,
.driver-application textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(16, 38, 61, .22);
  border-radius: 10px;
  font: inherit;
}

.driver-application select[multiple] {
  min-height: 164px;
}

.driver-application textarea {
  min-height: 120px;
  resize: vertical;
}

.driver-application input:focus,
.driver-application select:focus,
.driver-application textarea:focus,
.driver-modal__close:focus-visible {
  outline: 3px solid rgba(177, 45, 47, .22);
  outline-offset: 2px;
  border-color: var(--red);
}

.checkbox-stack,
.checkbox-grid {
  display: grid;
  gap: 12px;
}

.checkbox-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 20px;
}

.checkbox-row {
  display: flex !important;
  align-items: flex-start;
  gap: 11px !important;
  font-weight: 650 !important;
}

.checkbox-row input {
  width: 18px;
  min-width: 18px;
  height: 18px;
  min-height: 18px;
  margin-top: 2px;
  accent-color: var(--red);
}

.form-notice {
  margin-bottom: 18px;
  padding: 18px;
  background: rgba(16, 38, 61, .045);
  border-left: 4px solid var(--ink);
  border-radius: 8px;
}

.form-notice p {
  margin-bottom: 12px;
  color: var(--ink-soft);
  font-size: .94rem;
}

.form-notice p:last-child {
  margin-bottom: 0;
}

.driver-application__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 4px;
}

.driver-application__preview {
  max-width: 580px;
  margin: 0;
  color: var(--red-deep);
  font-size: .88rem;
  font-weight: 800;
}

.status-card .button {
  margin-top: 18px;
}

@media (max-width: 760px) {
  .driver-modal {
    padding: 0;
  }

  .driver-modal__panel {
    width: 100%;
    max-height: 100vh;
    min-height: 100vh;
    border-radius: 0;
  }

  .driver-modal__header {
    gap: 16px;
  }

  .form-grid--two,
  .form-grid--three,
  .checkbox-grid {
    grid-template-columns: 1fr;
  }

  .driver-application fieldset {
    padding: 18px;
  }

  .driver-application__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .driver-application__actions .button {
    width: 100%;
  }
}
/* end driver-application-modal-v1 */

/* conditional-form-fields-v1 */
.driver-application [data-other-zone-field][hidden] {
  display: grid !important;
  visibility: hidden;
  pointer-events: none;
}

.driver-application [data-other-zone-field]:not([hidden]) {
  visibility: visible;
  pointer-events: auto;
}
/* end conditional-form-fields-v1 */

/* ride-coverage-layout-v1 */
.early-voting-field {
  grid-column: 2;
  align-self: start;
  align-content: start;
}

.early-voting-field select {
  height: 48px;
  min-height: 48px;
  align-self: start;
}

.election-day-field {
  grid-column: 2;
  align-self: start;
}

@media (max-width: 760px) {
  .early-voting-field,
  .election-day-field {
    grid-column: auto;
  }
}
/* end ride-coverage-layout-v1 */

/* ride-coverage-layout-v2 */
.ride-availability-fields {
  grid-column: 2;
  display: grid;
  align-self: start;
  gap: 28px;
}

.ride-availability-fields .early-voting-field,
.ride-availability-fields .election-day-field {
  grid-column: auto;
}

@media (max-width: 760px) {
  .ride-availability-fields {
    grid-column: auto;
  }
}
/* end ride-coverage-layout-v2 */

/* ride-zone-expansion-note-v1 */
.driver-application .zone-expansion-note {
  display: block;
  margin-top: 2px;
  color: var(--ink-soft);
  font-size: .8rem;
  font-weight: 700;
  line-height: 1.45;
}
/* end ride-zone-expansion-note-v1 */

/* required-field-marker-v1 */
.driver-application strong[aria-hidden="true"] {
  color: var(--red);
  font-weight: 950;
}
/* end required-field-marker-v1 */



/* modal-close-side-tab-v2 */
.driver-modal__shell {
  position: relative;
  z-index: 1;
  width: min(980px, calc(100vw - 120px));
  max-height: calc(100vh - 48px);
}

.driver-modal__panel {
  width: 100%;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
}

.driver-application {
  max-height: none;
  overflow: visible;
  padding-right: 0;
}

.driver-modal__close {
  position: absolute;
  top: 18px;
  right: -54px;
  left: auto;
  z-index: 40;

  width: 54px;
  height: 52px;
  margin: 0;

  border: 1px solid rgba(16, 38, 61, .18);
  border-left: 0;
  border-radius: 0 12px 12px 0;

  color: #fff;
  background: var(--red);
  box-shadow: 12px 10px 28px rgba(7, 20, 32, .24);
}

.driver-modal__close:hover,
.driver-modal__close:focus-visible {
  color: #fff;
  background: var(--red-deep);
}

@media (max-width: 1100px) {
  .driver-modal__shell {
    width: min(980px, calc(100vw - 48px));
  }

  .driver-modal__close {
    top: 12px;
    right: 12px;

    width: 48px;
    height: 48px;

    border: 1px solid rgba(16, 38, 61, .18);
    border-radius: 12px;
  }
}

@media (max-width: 760px) {
  .driver-modal__shell,
  .driver-modal__panel {
    width: 100%;
    max-height: 100vh;
    min-height: 100vh;
  }

  .driver-modal__close {
    position: fixed;
    top: 10px;
    right: 10px;
  }
}
/* end modal-close-side-tab-v2 */
