/* ═══════════════════════════════════════════════════════════════
   PLSIC Public Landing, parkinglotstriping.org/
   Trade-publication temperament. Adapted from design-ref mockup.
   ═══════════════════════════════════════════════════════════════ */

* { box-sizing: border-box; }

html, body { margin: 0; padding: 0; }

body {
  font-family: var(--font-sans);
  color: var(--fg-1);
  background: var(--bg-1);
  line-height: var(--lh-normal);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-size: 16px;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; }

/* ═══════════════════════════════════════════
   SHARED LAYOUT PRIMITIVES
   ═══════════════════════════════════════════ */

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

@media (max-width: 820px) {
  .wrap, .wrap-narrow { padding: 0 24px; }
}

/* Stripe motif, the signature flourish */
.stripe-motif {
  height: 10px;
  background: var(--stripe-motif);
  width: 100%;
}
.stripe-motif-tight {
  height: 6px;
  background: var(--stripe-motif-tight);
  width: 100%;
}

/* ─── Road treatment ───
   Two-lane road viewed from above. Used around the footer area to
   frame the site's closing blocks as lanes of a road.
   All lines are 4px. has-bleed adds 15px of asphalt above a white
   edge line so the road starts away from the top of its container. */
.road-edge-line {
  height: 4px;
  background: var(--line-white);
  width: 100%;
}
.road-edge-line.has-bleed {
  height: 19px;
  background:
    linear-gradient(var(--line-white), var(--line-white)) 0 100% / 100% 4px no-repeat,
    var(--asphalt);
}
.road-center-line {
  height: 12px;
  width: 100%;
  background-color: var(--asphalt);
  background-image:
    linear-gradient(var(--marking-yellow), var(--marking-yellow)),
    repeating-linear-gradient(
      90deg,
      var(--marking-yellow) 0 20px,
      transparent 20px 60px
    );
  background-position: top, bottom;
  background-size: 100% 4px, 100% 4px;
  background-repeat: no-repeat, no-repeat;
}

/* Section head, number + kicker + 1px rule */
.sec-head {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 56px;
}
.sec-head .num {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  color: var(--fg-3);
  letter-spacing: 0.02em;
}
.sec-head .kicker {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--link);
}
.sec-head .spine { flex: 1; }
.sec-head .meta {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--fg-3);
}

.sec-head--dark { border-bottom-color: rgba(255,255,255,0.14); }
.sec-head--dark .num { color: rgba(255,255,255,0.5); }
.sec-head--dark .kicker { color: var(--marking-yellow); }
.sec-head--dark .meta { color: rgba(255,255,255,0.5); }

/* Skip link for a11y, visually hidden until focused */
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
  background: var(--marking-yellow);
  color: var(--asphalt);
  font-weight: 700;
  z-index: 300;
}
.skip-link:focus {
  position: fixed;
  top: 16px;
  left: 16px;
  width: auto;
  height: auto;
  margin: 0;
  padding: 8px 16px;
  overflow: visible;
  clip: auto;
  border-radius: 4px;
}

/* Focus states for a11y */
:focus-visible {
  outline: 2px solid var(--marking-yellow);
  outline-offset: 2px;
}

/* ═══════════════════════════════════════════
   TOP BAR
   ═══════════════════════════════════════════ */

.topbar {
  background: var(--asphalt);
  border-bottom: 3px solid var(--marking-yellow);
  color: var(--line-white);
}
.topbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand-lockup {
  display: flex;
  align-items: center;
  gap: 16px;
}
.brand-lockup .mark {
  font-family: var(--font-sans);
  font-weight: 900;
  font-size: 22px;
  letter-spacing: 3px;
  color: var(--marking-yellow);
}
.brand-lockup .rule {
  width: 1px;
  height: 22px;
  background: rgba(255,255,255,0.25);
}
.brand-lockup .org {
  font-size: 11px;
  line-height: 1.25;
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
}
.topbar-right {
  display: flex;
  align-items: center;
  gap: 28px;
}
.topbar-meta {
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.04em;
}
.topbar-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--marking-yellow);
  color: var(--asphalt);
  font-size: 13px;
  font-weight: 700;
  border-radius: 4px;
  transition: transform var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out);
}
.topbar-cta:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-yellow);
}

@media (max-width: 700px) {
  .topbar-meta { display: none; }
  .brand-lockup .org { display: none; }
}

@media (max-width: 820px) {
  .topbar-inner { padding: 16px 24px; }
}

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

.hero {
  background: var(--asphalt);
  color: var(--line-white);
  position: relative;
  overflow: hidden;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 40px 80px;
  position: relative;
  z-index: 2;
}

.hero-header {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: baseline;
  padding-bottom: 28px;
  margin-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.16);
}
.hero-header .left {
  display: flex;
  align-items: baseline;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-header .doc-id {
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.04em;
}
.hero-header .kicker {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--marking-yellow);
}
.hero-header .right {
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.04em;
}

.hero h1 {
  font-weight: 900;
  font-size: clamp(44px, 6.2vw, 82px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  margin: 0 0 40px;
  max-width: 17ch;
  text-wrap: balance;
}
.hero h1 .hl {
  background: linear-gradient(to bottom, transparent 78%, var(--marking-yellow) 78% 100%);
  padding: 0 2px;
  color: inherit;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

.hero-sub {
  font-size: clamp(17px, 1.3vw, 20px);
  line-height: 1.5;
  max-width: 58ch;
  color: rgba(255,255,255,0.82);
  margin: 0 0 56px;
  text-wrap: pretty;
}
.hero-sub strong {
  color: var(--line-white);
  font-weight: 600;
}

/* Colophon data row */
.hero-colophon {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.14);
  border-top: 1px solid rgba(255,255,255,0.14);
  border-bottom: 1px solid rgba(255,255,255,0.14);
}
.hero-colophon .cell {
  background: var(--asphalt);
  padding: 20px 22px 22px;
}
.hero-colophon .cell .label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.hero-colophon .cell .value {
  font-size: 18px;
  font-weight: 700;
  color: var(--line-white);
  line-height: 1.2;
}
.hero-colophon .cell .value .accent {
  color: var(--marking-yellow);
}

@media (max-width: 820px) {
  .hero-inner { padding: 48px 24px 64px; }
  .hero-header { grid-template-columns: 1fr; margin-bottom: 40px; }
  .hero-header .right { display: none; }
  .hero-colophon { grid-template-columns: repeat(2, 1fr); }
}

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

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  background: var(--marking-yellow);
  color: var(--asphalt);
  font-size: 15px;
  font-weight: 700;
  border-radius: 6px;
  border: 0;
  cursor: pointer;
  transition: transform var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out), background var(--dur-fast) var(--ease-out);
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-yellow);
  background: var(--yellow-hover);
}

/* ═══════════════════════════════════════════
   PROBLEM
   ═══════════════════════════════════════════ */

.problem {
  background: var(--line-white);
  padding: 96px 0;
}
.problem-grid {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 56px;
  align-items: start;
}
.problem-label {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--fg-3);
  letter-spacing: 0.04em;
  padding-top: 8px;
}
.problem-label .kicker {
  display: block;
  color: var(--link);
  font-family: var(--font-sans);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 11px;
  margin-top: 4px;
}
.problem-body {
  font-size: clamp(19px, 1.6vw, 24px);
  line-height: 1.45;
  color: var(--fg-1);
  font-weight: 500;
  letter-spacing: -0.005em;
  max-width: 62ch;
  text-wrap: pretty;
}
.problem-body strong {
  background: linear-gradient(to bottom, transparent 62%, var(--yellow-light) 62%);
  padding: 0 2px;
  font-weight: 600;
}

@media (max-width: 820px) {
  .problem { padding: 64px 0; }
  .problem-grid { grid-template-columns: 1fr; gap: 20px; padding: 0 24px; }
}

/* ═══════════════════════════════════════════
   BUILDING, 3 pillar cards
   ═══════════════════════════════════════════ */

.building {
  background: var(--concrete);
  padding: 96px 0;
}

.building-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.pillar {
  background: var(--line-white);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 0;
  overflow: hidden;
  transition: transform var(--dur-fast) var(--ease-out), border-color var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out);
  display: flex;
  flex-direction: column;
}
.pillar:hover {
  transform: translateY(-3px);
  border-color: var(--marking-yellow);
  box-shadow: var(--shadow-md);
}
.pillar .pillar-stripe {
  height: 6px;
  background: var(--stripe-motif-tight);
}
.pillar-body {
  padding: 28px 28px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.pillar-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 20px;
}
.pillar-head .num {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--fg-3);
  letter-spacing: 0.08em;
}
.pillar-head .status {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  color: var(--link);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 3px 8px;
  border: 1px solid var(--link);
  border-radius: 3px;
}
.pillar-head .status.status--draft {
  color: var(--fg-3);
  border-color: var(--border);
}
.pillar h3 {
  font-size: 22px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin: 0 0 12px;
  color: var(--fg-1);
}
.pillar p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--fg-2);
  margin: 0 0 20px;
  flex: 1;
}
.pillar ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  border-top: 1px solid var(--rule);
}
.pillar ul li {
  padding: 10px 0;
  font-size: 13px;
  color: var(--fg-2);
  border-bottom: 1px solid var(--rule);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-family: var(--font-mono);
  font-weight: 500;
  letter-spacing: 0.01em;
}
.pillar ul li .label { color: var(--fg-3); }
.pillar ul li .v { color: var(--fg-1); font-weight: 600; }

.pillar-cta {
  font-size: 13px;
  font-weight: 700;
  color: var(--link);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: color var(--dur-fast) var(--ease-out);
  cursor: pointer;
}
.pillar-cta:hover { color: var(--link-hover); }
.pillar-cta .arrow { transition: transform var(--dur-fast) var(--ease-out); }
.pillar-cta:hover .arrow { transform: translateX(3px); }

.building h2 {
  font-size: clamp(32px, 4.4vw, 48px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  max-width: 18ch;
  text-wrap: balance;
}
.building-intro {
  font-size: 18px;
  line-height: 1.5;
  color: var(--fg-2);
  max-width: 62ch;
  margin: 0;
}

@media (max-width: 900px) {
  .building-grid { grid-template-columns: 1fr; gap: 16px; }
}

/* ═══════════════════════════════════════════
   AUDIENCES, 5 rows (no inline form panels)
   ═══════════════════════════════════════════ */

.audiences {
  background: var(--line-white);
  padding: 96px 0;
}

.aud-header {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 56px;
  align-items: end;
  margin-bottom: 48px;
}
.aud-header h2 {
  font-size: clamp(32px, 4.4vw, 48px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0;
  max-width: 16ch;
  text-wrap: balance;
}
.aud-header .intro {
  font-size: 16px;
  line-height: 1.55;
  color: var(--fg-2);
  margin: 0;
}

.aud-list {
  border-top: 1.5px solid var(--asphalt);
}
.aud-row {
  display: grid;
  grid-template-columns: 70px 220px 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid var(--rule);
  cursor: pointer;
  transition: background var(--dur-fast) var(--ease-out), padding var(--dur-base) var(--ease-out);
  position: relative;
}
.aud-row:hover {
  background: var(--concrete);
  padding-left: 16px;
  padding-right: 16px;
}
.aud-row .idx {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  color: var(--fg-3);
  letter-spacing: 0.02em;
}
.aud-row .tag {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--asphalt);
  display: flex;
  align-items: center;
  gap: 10px;
}
.aud-row .tag .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--marking-yellow);
  flex: 0 0 8px;
}
.aud-row .body { display: flex; flex-direction: column; gap: 6px; max-width: 68ch; }
.aud-row .q {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 17px;
  color: var(--fg-1);
  font-style: italic;
  letter-spacing: -0.005em;
}
.aud-row .a {
  font-size: 14px;
  line-height: 1.55;
  color: var(--fg-2);
  margin: 0;
}
.aud-row .go {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--link);
  white-space: nowrap;
  transition: color var(--dur-fast) var(--ease-out);
}
.aud-row .go .arrow {
  transition: transform var(--dur-fast) var(--ease-out);
}
.aud-row:hover .go .arrow { transform: translateX(4px); }

@media (max-width: 900px) {
  .aud-row { grid-template-columns: 48px 1fr auto; }
  .aud-row .tag { grid-column: 2; grid-row: 1; }
  .aud-row .body { grid-column: 2; grid-row: 2; }
  .aud-row .go { grid-column: 3; grid-row: 1 / span 2; }
  .aud-header { grid-template-columns: 1fr; gap: 16px; }
}

/* ═══════════════════════════════════════════
   DEADLINE
   ═══════════════════════════════════════════ */

.deadline {
  background: var(--asphalt);
  color: var(--line-white);
  padding: 96px 0;
}

.deadline-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.deadline h2 {
  font-size: clamp(32px, 4.4vw, 48px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
  max-width: 14ch;
  text-wrap: balance;
}
.deadline p {
  font-size: 17px;
  line-height: 1.55;
  color: rgba(255,255,255,0.78);
  margin: 0 0 28px;
  max-width: 52ch;
}
.deadline p strong {
  color: var(--line-white);
  font-weight: 600;
  border-bottom: 2px solid var(--marking-yellow);
  padding-bottom: 2px;
}

.countdown-card {
  background: var(--asphalt-mid);
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  overflow: hidden;
}
.countdown-card .head {
  padding: 18px 24px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.countdown-card .head .label {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
}
.countdown-card .head .date {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  color: var(--marking-yellow);
}
.countdown-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.countdown-cell {
  padding: 28px 12px 24px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.countdown-cell:last-child { border-right: 0; }
.countdown-cell .n {
  font-family: var(--font-sans);
  font-weight: 900;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--line-white);
  font-variant-numeric: tabular-nums;
}
.countdown-cell .u {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.5);
  margin-top: 8px;
}
.countdown-card .foot {
  padding: 14px 24px;
  background: rgba(0,0,0,0.25);
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  display: flex;
  justify-content: space-between;
  letter-spacing: 0.04em;
}

@media (max-width: 820px) {
  .deadline-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ═══════════════════════════════════════════
   CONTACT, single form, dark section
   ═══════════════════════════════════════════ */

.contact {
  background: var(--asphalt);
  color: var(--line-white);
  padding: 96px 0;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.contact .wrap { max-width: 960px; }
.contact-head {
  margin-bottom: 40px;
  max-width: 680px;
}
.contact-head h2 {
  font-size: clamp(32px, 4.4vw, 48px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  color: var(--line-white);
  text-wrap: balance;
}
.contact-head p {
  font-size: 17px;
  line-height: 1.55;
  color: rgba(255,255,255,0.78);
  margin: 0;
  max-width: 58ch;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 680px;
}
.contact-form .field { grid-column: span 1; }
.contact-form .field.full { grid-column: 1 / -1; }
.contact-form label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 6px;
}
.contact-form input,
.contact-form select {
  width: 100%;
  padding: 12px 14px;
  min-height: 48px;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.06);
  color: var(--line-white);
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  transition: border-color var(--dur-fast) var(--ease-out), background var(--dur-fast) var(--ease-out);
}
.contact-form input::placeholder { color: rgba(255,255,255,0.4); }
.contact-form select option { color: var(--asphalt); background: var(--line-white); }
.contact-form input:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--marking-yellow);
  background: rgba(255,255,255,0.08);
}
.contact-form .submit {
  grid-column: 1 / -1;
  padding: 16px 24px;
  min-height: 52px;
  margin-top: 8px;
  background: var(--marking-yellow);
  color: var(--asphalt);
  border: 0;
  border-radius: 6px;
  font-weight: 800;
  font-size: 15px;
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: transform var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out), background var(--dur-fast) var(--ease-out);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.contact-form .submit:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: var(--shadow-yellow);
  background: var(--yellow-hover);
}
.contact-form .submit:disabled { opacity: 0.7; cursor: progress; }
.contact-form .msg {
  grid-column: 1 / -1;
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  margin: 0;
  min-height: 1em;
}
.contact-form .msg.success { color: var(--marking-yellow); font-weight: 700; }
.contact-form .msg.error { color: #ffb4a8; }
.contact-form .honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 700px) {
  .contact-form { grid-template-columns: 1fr; }
}

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

.faq {
  background: var(--line-white);
  padding: 96px 0;
}
.faq-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 56px;
  align-items: start;
}
.faq-side { position: sticky; top: 24px; }
.faq-side h2 {
  font-size: clamp(28px, 3.4vw, 38px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  max-width: 14ch;
}
.faq-side p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--fg-2);
  margin: 0;
}
.faq-side a { color: var(--link); font-weight: 600; }
.faq-list { border-top: 1.5px solid var(--asphalt); }
.faq-list details {
  border-bottom: 1px solid var(--rule);
  padding: 20px 0;
}
.faq-list summary {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  list-style: none;
  font-size: 17px;
  font-weight: 700;
  color: var(--fg-1);
  letter-spacing: -0.005em;
  line-height: 1.35;
  min-height: 44px;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary .q-num {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  color: var(--fg-3);
  flex: 0 0 auto;
  padding-top: 4px;
}
.faq-list summary .q-text { flex: 1; }
.faq-list summary .toggle {
  flex: 0 0 auto;
  width: 28px; height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--asphalt);
  border-radius: 50%;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  color: var(--asphalt);
  transition: all var(--dur-base) var(--ease-out);
}
.faq-list details[open] summary .toggle {
  background: var(--marking-yellow);
  border-color: var(--marking-yellow);
  transform: rotate(180deg);
}
.faq-list .answer {
  margin-top: 14px;
  margin-left: 48px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--fg-2);
  max-width: 64ch;
}

@media (max-width: 900px) {
  .faq-grid { grid-template-columns: 1fr; gap: 32px; }
  .faq-side { position: static; }
  .faq-list .answer { margin-left: 32px; }
}

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

.footer {
  background: var(--asphalt);
  color: var(--line-white);
  padding: 0 0 32px;
}
.footer .stripe-motif,
.footer > .road-center-line,
.footer > .road-edge-line { margin-bottom: 64px; }
.footer .wrap { padding: 0 40px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-grid h4 {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--marking-yellow);
  margin: 0 0 16px;
}
.footer-brand .wordmark {
  font-weight: 900;
  font-size: 28px;
  letter-spacing: 3px;
  color: var(--marking-yellow);
  margin-bottom: 12px;
}
.footer-brand p {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255,255,255,0.7);
  max-width: 42ch;
  margin: 0;
}
.footer-col a {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  padding: 4px 0;
  transition: color var(--dur-fast) var(--ease-out);
}
.footer-col a:hover { color: var(--marking-yellow); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.04em;
  flex-wrap: wrap;
  gap: 12px;
}

@media (max-width: 820px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; padding-bottom: 32px; }
  .footer .wrap { padding: 0 24px; }
}

/* ═══════════════════════════════════════════
   EXIT-INTENT MODAL
   ═══════════════════════════════════════════ */

.exit-modal[hidden] { display: none; }
.exit-modal {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
}
.exit-backdrop {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.72);
  cursor: pointer;
}
.exit-card {
  position: relative;
  background: var(--asphalt);
  color: var(--line-white);
  max-width: 460px; width: 100%;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 40px 32px 30px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  animation: exit-in 0.22s var(--ease-out);
}
.exit-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 6px;
  background: var(--stripe-motif-tight);
}
@keyframes exit-in {
  from { opacity: 0; transform: translateY(10px) scale(0.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.exit-close {
  position: absolute; top: 8px; right: 8px;
  width: 40px; height: 40px;
  background: transparent; border: 0;
  font-size: 26px; line-height: 1;
  color: rgba(255,255,255,0.55);
  cursor: pointer; border-radius: 6px;
}
.exit-close:hover { color: var(--line-white); background: rgba(255,255,255,0.06); }
.exit-eyebrow {
  font-size: 11px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 2px;
  color: var(--marking-yellow);
  margin-bottom: 10px;
  margin-top: 8px;
}
.exit-heading {
  font-size: 22px; font-weight: 900;
  letter-spacing: -0.015em; line-height: 1.2;
  color: var(--line-white);
  margin: 0 0 10px;
}
.exit-sub {
  font-size: 15px; color: rgba(255,255,255,0.75);
  line-height: 1.55; margin: 0 0 22px;
}
.exit-form { display: flex; flex-direction: column; gap: 10px; }
.exit-form .exit-label {
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px;
  color: rgba(255,255,255,0.65);
}
.exit-form input[type="email"] {
  padding: 13px 14px;
  min-height: 48px;
  font-size: 15px; font-family: inherit;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 6px;
  background: rgba(255,255,255,0.06);
  color: var(--line-white);
  transition: border-color 0.15s, background 0.15s;
}
.exit-form input[type="email"]::placeholder { color: rgba(255,255,255,0.4); }
.exit-form input[type="email"]:focus {
  border-color: var(--marking-yellow); outline: none;
  background: rgba(255,255,255,0.08);
}
.exit-submit {
  margin-top: 4px;
  background: var(--marking-yellow); color: var(--asphalt);
  font-weight: 800; font-size: 14px;
  letter-spacing: 0.02em;
  padding: 14px 20px; min-height: 48px;
  border: none; border-radius: 6px; cursor: pointer;
  transition: background 0.15s, transform 0.15s, box-shadow 0.15s;
}
.exit-submit:hover:not(:disabled) {
  background: var(--yellow-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-yellow);
}
.exit-submit:disabled { opacity: 0.7; cursor: progress; }
.exit-msg {
  font-size: 13px; margin: 2px 0 0; min-height: 1em;
  color: rgba(255,255,255,0.75);
}
.exit-msg.error { color: #ffb4a8; }
.exit-msg.success { color: var(--marking-yellow); font-weight: 700; }

.exit-form .honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0;
  pointer-events: none;
}
