@font-face {
  font-family: Hedvig;
  src: url('/fonts/HedvigLettersSans-Regular.ttf') format('truetype');
  font-display: swap;
}

:root {
  --ink: #222222;
  --ink-soft: #484848;
  --muted: #717171;
  --line: #ebebeb;
  --soft: #f7f7f7;
  --white: #ffffff;
  --pink: #ff385c;
  --pink-deep: #e31c5f;
  --blush: #fff1f3;
  --shadow: 0 18px 50px rgba(34, 34, 34, .1);
  --sans: Hedvig, Inter, 'Helvetica Neue', Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font: 15px/1.55 var(--sans);
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; }
button, input, textarea { font: inherit; }
img { display: block; max-width: 100%; }

.skip-link {
  position: fixed;
  z-index: 100;
  top: -80px;
  left: 18px;
  padding: 12px 17px;
  border-radius: 999px;
  background: var(--pink);
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
}
.skip-link:focus { top: 18px; }
.section-shell {
  width: min(1440px, 100%);
  margin: 0 auto;
  padding-left: clamp(24px, 5vw, 80px);
  padding-right: clamp(24px, 5vw, 80px);
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.eyebrow > span {
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--pink);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  min-height: 54px;
  padding: 0 23px;
  border: 0;
  border-radius: 999px;
  background: var(--pink);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(255, 56, 92, .22);
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.button:hover {
  background: var(--pink-deep);
  box-shadow: 0 16px 34px rgba(255, 56, 92, .28);
  transform: translateY(-2px);
}
.button span { font-size: 17px; }
.button-small { min-height: 44px; padding: 0 18px; gap: 20px; }
.button-ink { background: var(--ink); color: var(--white); box-shadow: 0 12px 28px rgba(34, 34, 34, .18); }
.button-ink:hover { background: #000; box-shadow: 0 16px 34px rgba(34, 34, 34, .24); }
.button-lime { background: var(--pink); color: var(--white); }
.text-action {
  display: inline-flex;
  align-items: center;
  gap: 17px;
  padding: 8px 0;
  border-bottom: 1px solid var(--ink);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}
.text-action span { color: var(--pink); font-size: 18px; transition: transform .2s ease; }
.text-action:hover span { transform: translateX(5px); }

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  height: 80px;
  display: flex;
  align-items: center;
  gap: 50px;
  padding: 0 clamp(24px, 5vw, 80px);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(18px);
  transition: height .25s ease, box-shadow .25s ease;
}
.site-header.is-scrolled { height: 70px; box-shadow: 0 7px 24px rgba(34, 34, 34, .06); }
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -.045em;
  text-decoration: none;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 52px;
  height: 34px;
}
.brand-mark img { width: 52px; height: 34px; object-fit: contain; }
.desktop-nav { display: flex; align-items: center; gap: 34px; margin: auto; }
.desktop-nav a {
  position: relative;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}
.desktop-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 2px;
  background: var(--pink);
  transition: right .2s ease;
}
.desktop-nav a:hover::after { right: 0; }
.header-actions { display: flex; align-items: center; gap: 28px; }
.menu-button, .mobile-menu { display: none; }

.hero {
  min-height: calc(100svh - 80px);
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(520px, 1.1fr);
  align-items: center;
  gap: clamp(42px, 6vw, 92px);
  padding-top: clamp(48px, 6vw, 90px);
  padding-bottom: clamp(58px, 7vw, 100px);
}
.hero-copy { padding: 35px 0; }
.hero h1 {
  max-width: 700px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(58px, 6.6vw, 104px);
  font-weight: 500;
  line-height: .91;
  letter-spacing: -.065em;
}
.hero-lede {
  max-width: 590px;
  margin: 34px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 1.6vw, 23px);
  line-height: 1.45;
  letter-spacing: -.022em;
}
.hero-actions { display: flex; align-items: center; gap: 28px; margin-top: 38px; }
body[data-page='home'] .hero-actions { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 590px; gap: 12px; }
body[data-page='home'] .hero-actions .button,
body[data-page='home'] .hero-actions .text-action { justify-content: space-between; min-height: 58px; padding: 0 24px; border: 0; border-radius: 999px; color: var(--white); font-size: 12px; text-decoration: none; }
body[data-page='home'] .hero-actions .text-action { background: var(--pink); box-shadow: 0 12px 28px rgba(255, 56, 92, .22); }
body[data-page='home'] .hero-actions .text-action span { color: var(--white); }
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 50px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.hero-trust span { display: flex; align-items: center; gap: 8px; }
.hero-trust i { width: 6px; height: 6px; border-radius: 50%; background: var(--pink); box-shadow: 0 0 0 4px var(--blush); }
.hero-product {
  position: relative;
  min-height: 700px;
  overflow: hidden;
  border-radius: 28px;
  background: var(--soft);
  box-shadow: 0 24px 70px rgba(34, 34, 34, .12);
}
.hero-product > picture { position: absolute; inset: 0; }
.hero-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: var(--hero-position, 58% center); }
.photo-shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0, 0, 0, .12), transparent 42%, rgba(0, 0, 0, .28)); }
.visual-label {
  position: absolute;
  z-index: 2;
  top: 28px;
  right: 28px;
  margin: 0;
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .94);
  color: var(--ink);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .13em;
}
.signal-card {
  position: absolute;
  z-index: 3;
  display: grid;
  grid-template-columns: 40px 1fr;
  align-items: center;
  gap: 12px;
  width: 210px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, .6);
  border-radius: 15px;
  background: rgba(255, 255, 255, .95);
  box-shadow: 0 20px 45px rgba(0, 0, 0, .18);
  backdrop-filter: blur(12px);
}
.signal-card small, .signal-card strong, .signal-card span { display: block; }
.signal-card small { color: var(--muted); font-size: 8px; font-weight: 800; letter-spacing: .1em; }
.signal-card strong { margin: 2px 0; color: var(--ink); font-size: 16px; }
.signal-card span { color: var(--muted); font-size: 9px; }
.signal-icon { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 12px; background: var(--blush); color: var(--pink); font-weight: 900; }
.signal-service { left: 5%; top: 10%; }
.signal-value { right: 5%; top: 42%; }
.signal-history { left: 6%; bottom: 9%; }
.ownership-score {
  position: absolute;
  z-index: 3;
  right: 6%;
  bottom: 8%;
  width: 210px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .4);
  border-radius: 16px;
  background: rgba(34, 34, 34, .8);
  backdrop-filter: blur(12px);
}
.ownership-score small, .ownership-score strong { display: block; }
.ownership-score small { color: #d4d4d4; font-size: 8px; font-weight: 800; letter-spacing: .12em; }
.ownership-score strong { margin: 5px 0 12px; color: var(--white); font-size: 20px; }
.ownership-score > span { display: block; height: 5px; overflow: hidden; border-radius: 99px; background: rgba(255, 255, 255, .18); }
.ownership-score i { display: block; width: var(--score); height: 100%; background: var(--pink); }

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}
.proof-strip > div {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 3px 14px;
  min-height: 126px;
  padding: 29px clamp(18px, 3vw, 48px);
  border-right: 1px solid var(--line);
}
.proof-strip > div:last-child { border-right: 0; }
.proof-strip span { grid-row: 1 / 3; color: var(--pink); font-size: 10px; font-weight: 800; }
.proof-strip strong { font-size: 13px; }
.proof-strip small { color: var(--muted); font-size: 10px; }

.relationship { padding-top: 130px; padding-bottom: 140px; }
.section-heading {
  display: grid;
  grid-template-columns: minmax(270px, .62fr) 1.38fr;
  gap: 50px;
  align-items: start;
  margin-bottom: 66px;
}
.section-heading h2, .journey-intro h2, .security-copy h2, .final-cta h2, .application-intro h2 {
  margin: 0;
  font-size: clamp(42px, 5vw, 76px);
  font-weight: 500;
  line-height: 1.03;
  letter-spacing: -.055em;
}
.section-heading h2 { grid-column: 2; max-width: 920px; }
.section-heading .eyebrow { grid-column: 1; grid-row: 1; }
.audience-switcher { overflow: hidden; border: 1px solid var(--line); border-radius: 26px; background: var(--white); box-shadow: var(--shadow); }
.audience-tabs { display: grid; grid-template-columns: 1fr 1fr; border-bottom: 1px solid var(--line); }
.audience-tabs button {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 21px 28px;
  border: 0;
  border-right: 1px solid var(--line);
  background: var(--soft);
  color: var(--muted);
  cursor: pointer;
  font-weight: 800;
  text-align: left;
}
.audience-tabs button:last-child { border-right: 0; }
.audience-tabs button span { color: #b0b0b0; font-size: 9px; }
.audience-tabs button[aria-selected='true'] { background: var(--white); color: var(--ink); box-shadow: inset 0 3px var(--pink); }
.audience-tabs button[aria-selected='true'] span { color: var(--pink); }
.audience-panel { display: grid; grid-template-columns: .88fr 1.12fr; min-height: 660px; }
.audience-panel[hidden] { display: none; }
.audience-copy { padding: clamp(42px, 5vw, 78px); }
.audience-copy h3 { max-width: 570px; margin: 0; font-size: clamp(38px, 4vw, 61px); font-weight: 500; line-height: 1.04; letter-spacing: -.05em; }
.audience-copy > p:not(.eyebrow) { max-width: 540px; margin: 27px 0; color: var(--muted); font-size: 17px; }
.audience-copy ul { margin: 32px 0 38px; padding: 0; list-style: none; }
.audience-copy li { display: grid; grid-template-columns: 35px 1fr; gap: 12px; padding: 13px 0; border-top: 1px solid var(--line); font-weight: 700; }
.audience-copy li span { color: var(--pink); font-size: 9px; }
.audience-photo { position: relative; min-height: 660px; margin: 0; overflow: hidden; border-left: 1px solid var(--line); background: var(--soft); }
.audience-photo > img { width: 100%; height: 100%; min-height: 660px; object-fit: cover; }
.photo-callout {
  position: absolute;
  right: 26px;
  bottom: 26px;
  left: 26px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, .55);
  border-radius: 17px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 18px 45px rgba(0, 0, 0, .16);
  backdrop-filter: blur(14px);
}
.photo-callout small, .photo-callout strong, .photo-callout span { display: block; }
.photo-callout small { color: var(--pink); font-size: 9px; font-weight: 800; letter-spacing: .13em; }
.photo-callout strong { margin: 6px 0 4px; font-size: 21px; letter-spacing: -.02em; }
.photo-callout span { color: var(--muted); font-size: 11px; }

.journey { display: grid; grid-template-columns: .74fr 1.26fr; gap: clamp(50px, 9vw, 130px); padding-top: 125px; padding-bottom: 135px; border-top: 1px solid var(--line); }
.journey-intro { position: sticky; top: 120px; align-self: start; }
.journey-intro p:not(.eyebrow) { max-width: 460px; color: var(--muted); font-size: 17px; }
.journey-steps { border-top: 1px solid var(--line); }
.journey-step { display: grid; grid-template-columns: 50px 1fr; gap: 20px; min-height: 195px; padding: 32px 0; border-bottom: 1px solid var(--line); opacity: .45; transition: opacity .25s ease, padding-left .25s ease; }
.journey-step.is-active { padding-left: 18px; opacity: 1; }
.journey-step > span { color: var(--pink); font-size: 10px; font-weight: 800; }
.journey-step small { color: var(--muted); font-size: 9px; font-weight: 800; letter-spacing: .13em; }
.journey-step h3 { margin: 10px 0 11px; font-size: clamp(26px, 2.8vw, 40px); font-weight: 500; line-height: 1.1; letter-spacing: -.04em; }
.journey-step p { max-width: 500px; margin: 0; color: var(--muted); }

.platform-detail { padding: 130px 0; border-top: 1px solid var(--line); background: var(--white); }
.section-heading.inverse { margin-bottom: 70px; }
.section-heading.inverse h2 { color: var(--ink); }
.section-heading.inverse .eyebrow { color: var(--muted); }
.platform-grid { display: grid; grid-template-columns: 1.3fr .7fr; gap: 16px; }
.feature { position: relative; min-height: 350px; overflow: hidden; padding: 34px; border: 1px solid var(--line); border-radius: 24px; background: var(--soft); }
.feature h3 { position: relative; margin: 14px 0 11px; font-size: 30px; font-weight: 500; letter-spacing: -.04em; }
.feature p { position: relative; max-width: 470px; margin: 0; color: var(--muted); }
.feature-number { position: relative; z-index: 2; color: var(--pink); font-size: 9px; font-weight: 800; }
.feature-large { grid-row: span 2; min-height: 716px; padding: 43px; color: var(--white); }
.feature-large h3 { z-index: 2; font-size: 44px; }
.feature-large p { z-index: 2; color: rgba(255, 255, 255, .78); }
.feature-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.feature-photo-shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0, 0, 0, .68), rgba(0, 0, 0, .08) 55%, rgba(0, 0, 0, .52)); }
.feature-blue { background: var(--blush); }
.feature-peach { background: var(--white); }
.feature-ink { grid-column: 1 / -1; min-height: 290px; border-color: var(--pink); background: var(--pink); color: var(--white); }
.feature-ink p { color: rgba(255, 255, 255, .8); }
.feature-ink .feature-number { color: var(--white); }
.service-visual {
  position: absolute;
  z-index: 2;
  right: 42px;
  bottom: 42px;
  left: 42px;
  padding: 27px;
  border: 1px solid rgba(255, 255, 255, .4);
  border-radius: 17px;
  background: rgba(34, 34, 34, .7);
  backdrop-filter: blur(12px);
}
.service-visual span, .service-visual strong, .service-visual small { display: block; }
.service-visual span { color: #dedede; font-size: 9px; font-weight: 800; letter-spacing: .12em; }
.service-visual strong { margin: 7px 0 20px; font-size: 39px; }
.service-visual > i { display: block; height: 8px; overflow: hidden; border-radius: 99px; background: rgba(255, 255, 255, .22); }
.service-visual b { display: block; width: 66%; height: 100%; background: var(--pink); }
.service-visual small { margin-top: 12px; color: #dedede; font-size: 9px; }
.passport-visual { display: flex; align-items: center; margin-top: 70px; }
.passport-visual i { display: grid; place-items: center; width: 38px; height: 38px; border: 1px solid #ffd2da; border-radius: 50%; background: var(--white); color: var(--pink); font-style: normal; }
.passport-visual span { flex: 1; height: 1px; background: #ffd2da; }
.value-visual { position: absolute; right: 33px; bottom: 33px; left: 33px; height: 100px; display: flex; align-items: end; gap: 8px; border-bottom: 1px solid #dedede; }
.value-visual span { position: absolute; top: -28px; font-size: 27px; }
.value-visual i { flex: 1; border-radius: 4px 4px 0 0; background: #dddddd; }
.value-visual i:nth-of-type(1) { height: 30%; }
.value-visual i:nth-of-type(2) { height: 44%; }
.value-visual i:nth-of-type(3) { height: 40%; }
.value-visual i:nth-of-type(4) { height: 68%; background: var(--pink); }
.value-visual i:nth-of-type(5) { height: 82%; }
.ops-visual { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 55px; }
.ops-visual span { padding: 20px 18px; border: 1px solid rgba(255, 255, 255, .55); border-radius: 12px; color: var(--white); }
.ops-visual span:first-child { background: var(--white); color: var(--pink); }

.security { display: grid; grid-template-columns: .84fr 1.16fr; gap: clamp(50px, 10vw, 145px); padding-top: 130px; padding-bottom: 135px; }
.security-copy > p:not(.eyebrow) { max-width: 510px; margin: 27px 0 31px; color: var(--muted); font-size: 17px; }
.security-principles { border-top: 1px solid var(--line); }
.security-principles > div { display: grid; grid-template-columns: 42px 1fr; gap: 6px 15px; padding: 25px 0; border-bottom: 1px solid var(--line); }
.security-principles span { grid-row: 1 / 3; color: var(--pink); font-size: 9px; font-weight: 800; }
.security-principles strong { font-size: 15px; }
.security-principles p { margin: 0; color: var(--muted); font-size: 12px; }

.final-cta { min-height: 650px; display: grid; grid-template-columns: 1.08fr .92fr; border-top: 1px solid var(--line); background: var(--blush); overflow: hidden; }
.final-cta-car { min-height: 650px; margin: 0; overflow: hidden; background: var(--soft); }
.final-cta-car img { width: 100%; height: 100%; min-height: 650px; object-fit: cover; }
.final-cta-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(60px, 7vw, 115px); }
.final-cta-copy > p:not(.eyebrow) { max-width: 560px; margin: 28px 0 38px; color: var(--muted); font-size: 18px; }
.final-cta-copy > div { display: flex; align-items: center; gap: 28px; }
.light-action { border-color: var(--ink); color: var(--ink); }

body:not([data-page='home']) .home-only { display: none; }
body:not([data-page='home']) .signal-card,
body:not([data-page='home']) .ownership-score,
body:not([data-page='home']) .visual-label { display: none; }
body:not([data-page='home']) .hero { min-height: 690px; }
body:not([data-page='home']) .hero-product { min-height: 560px; }

.subpage-content { display: none; padding-top: 110px; padding-bottom: 125px; }
body[data-page='drivers'] .subpage-content,
body[data-page='dealerships'] .subpage-content,
body[data-page='platform'] .subpage-content,
body[data-page='about'] .subpage-content { display: block; }
.route-story { display: none; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(55px, 8vw, 120px); }
body[data-page='drivers'] [data-route-content='drivers'],
body[data-page='dealerships'] [data-route-content='dealerships'],
body[data-page='platform'] [data-route-content='platform'],
body[data-page='about'] [data-route-content='about'] { display: grid; }
.route-photo { min-height: 690px; margin: 0; overflow: hidden; border-radius: 26px; background: var(--soft); }
.route-photo img { width: 100%; height: 100%; min-height: 690px; object-fit: cover; }
.route-copy { max-width: 600px; }
.route-copy h2 { margin: 0; font-size: clamp(42px, 4.8vw, 70px); font-weight: 500; line-height: 1.03; letter-spacing: -.055em; }
.route-lede { margin: 27px 0 35px; color: var(--muted); font-size: 18px; }
.route-list { margin: 0 0 36px; border-top: 1px solid var(--line); }
.route-list > div { padding: 20px 0; border-bottom: 1px solid var(--line); }
.route-list dt { margin-bottom: 5px; font-size: 15px; font-weight: 800; }
.route-list dd { margin: 0; color: var(--muted); font-size: 13px; }
.about-copy { margin: 0 0 35px; color: var(--muted); font-size: 16px; }
.about-copy p { margin: 0 0 18px; }

.application { display: none; grid-template-columns: .7fr 1.3fr; gap: clamp(50px, 8vw, 115px); padding-top: 115px; padding-bottom: 125px; }
.application-intro > p:not(.eyebrow) { max-width: 500px; color: var(--muted); font-size: 16px; }
.application-intro ol { margin: 42px 0 0; padding: 0; list-style: none; }
.application-intro li { display: grid; grid-template-columns: 36px 1fr; gap: 15px; padding: 20px 0; border-top: 1px solid var(--line); }
.application-intro li > b { color: var(--pink); font-size: 9px; }
.application-intro li strong, .application-intro li span { display: block; }
.application-intro li strong { margin-bottom: 4px; color: var(--ink); font-size: 13px; }
.application-intro li span { color: var(--muted); font-size: 12px; }
body[data-page='dealer-sign-up'] .application { display: grid; }
body[data-page='dealer-sign-up'] .proof-strip,
body[data-page='dealer-sign-up'] .relationship,
body[data-page='dealer-sign-up'] .journey,
body[data-page='dealer-sign-up'] .platform-detail,
body[data-page='dealer-sign-up'] .security,
body[data-page='dealer-sign-up'] .final-cta { display: none; }
body[data-page='dealer-sign-up'] .hero { min-height: 600px; }
body[data-page='dealer-sign-up'] .hero-product { min-height: 600px; }
.public-security-check { min-height: 65px; margin-top: 4px; }
#dealer-form { padding: clamp(28px, 4vw, 48px); border: 1px solid var(--line); border-radius: 22px; background: var(--white); box-shadow: var(--shadow); }
.form-section-head { display: flex; gap: 14px; margin: 10px 0 24px; padding-bottom: 17px; border-bottom: 1px solid var(--line); }
.form-section-head > span { color: var(--pink); font-size: 9px; font-weight: 800; }
.form-section-head strong, .form-section-head small { display: block; }
.form-section-head strong { font-size: 15px; }
.form-section-head small { margin-top: 2px; color: var(--muted); font-size: 10px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-grid label { color: var(--ink-soft); font-size: 11px; font-weight: 800; }
.form-grid label em { color: #999; font-weight: 400; }
.form-grid input, .form-grid textarea { display: block; width: 100%; margin-top: 8px; padding: 13px 14px; border: 1px solid #dddddd; border-radius: 10px; background: var(--white); color: var(--ink); }
.form-grid input:focus, .form-grid textarea:focus { outline: 0; border-color: var(--pink); box-shadow: 0 0 0 3px rgba(255, 56, 92, .13); }
.form-grid textarea { min-height: 90px; resize: vertical; }
.form-grid .wide { grid-column: 1 / -1; }
.uploads { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 0 0 28px; }
.uploads .file-field { display: grid; grid-template-columns: 1fr auto; gap: 6px 10px; align-items: start; padding: 0; border: 0; background: transparent; cursor: default; font-size: 11px; font-weight: 800; color: var(--ink-soft); }
.uploads .file-field > b { font-size: 12px; }
.uploads .file-field > span { color: var(--muted); font-weight: 600; }
.uploads .file-drop { grid-column: 1 / -1; position: relative; display: grid; min-height: 158px; margin-top: 4px; border: 1.5px dashed #d4d4d4; border-radius: 16px; background: linear-gradient(180deg, #fff 0%, var(--soft) 100%); cursor: pointer; transition: border-color .18s ease, background .18s ease, box-shadow .18s ease, transform .18s ease; }
.uploads .file-drop:hover, .uploads .file-drop:focus-within { border-color: var(--pink); background: linear-gradient(180deg, #fff 0%, var(--blush) 100%); box-shadow: 0 0 0 3px rgba(255, 56, 92, .1); }
.uploads .file-drop.is-dragging { border-color: var(--pink); border-style: solid; background: var(--blush); box-shadow: 0 0 0 4px rgba(255, 56, 92, .12); transform: translateY(-1px); }
.uploads .file-drop.is-invalid { border-color: #b42318; background: #fff7f7; }
.uploads .file-drop.has-file { border-style: solid; border-color: #ffc1cd; background: #fff; }
.uploads .file-drop-input { position: absolute; inset: 0; z-index: 2; width: 100%; height: 100%; margin: 0; padding: 0; opacity: 0; cursor: pointer; font-size: 22px; border: 0; background: transparent; color: transparent; -webkit-tap-highlight-color: transparent; }
.uploads .file-drop-body, .uploads .file-drop-browse { pointer-events: none; }
.uploads .file-drop-body { display: grid; justify-items: center; align-content: center; gap: 7px; padding: 20px 16px; text-align: center; }
.uploads .file-drop-glyph { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 12px; background: var(--blush); color: var(--pink); box-shadow: inset 0 0 0 1px #ffd0d9; }
.uploads .file-drop-glyph:before { content: ""; width: 17px; height: 17px; background: currentColor; mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M12 16V4m0 0 4 4m-4-4-4 4M4 14v4a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-4' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat; -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M12 16V4m0 0 4 4m-4-4-4 4M4 14v4a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-4' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat; }
.uploads .file-drop-title { color: var(--ink); font-size: 13px; font-weight: 800; line-height: 1.3; }
.uploads .file-drop-hint { max-width: 26ch; color: var(--muted); font-size: 10px; font-weight: 600; line-height: 1.45; }
.uploads .file-drop-browse { appearance: none; border: 1px solid #e5e5e5; border-radius: 999px; background: #fff; color: var(--ink); padding: 9px 15px; font: 700 11px/1 var(--sans); cursor: pointer; transition: background .15s ease, border-color .15s ease, color .15s ease; }
.uploads .file-drop-browse:hover, .uploads .file-drop.has-file .file-drop-browse { border-color: var(--pink); background: var(--blush); color: var(--pink-deep); }
.uploads .file-drop-name { min-height: 15px; color: var(--muted); font-size: 10px; font-weight: 700; }
.uploads .file-drop.has-file .file-drop-name { color: var(--ink); }
.uploads .file-drop.has-file .file-drop-title { color: var(--pink-deep); }
.consent { display: flex; gap: 10px; margin-bottom: 20px; color: var(--muted); font-size: 11px; }
.consent input { accent-color: var(--pink); }
.submit { width: 100%; }
.form-status { min-height: 22px; margin: 14px 0 0; font-weight: 800; }
.form-status.success { color: #267a48; }
.form-status.error { color: #b42318; }

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  padding: 85px clamp(24px, 6vw, 92px) 30px;
  border-top: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
}
.footer-lead p { max-width: 420px; margin-top: 28px; color: var(--muted); font-size: 23px; line-height: 1.4; }
.footer-brand { color: var(--ink); }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 35px; }
.footer-links strong, .footer-links a { display: block; }
.footer-links strong { margin-bottom: 21px; color: #999; font-size: 9px; letter-spacing: .14em; text-transform: uppercase; }
.footer-links a { margin: 12px 0; color: var(--ink-soft); font-size: 12px; text-decoration: none; }
.footer-links a:hover { color: var(--pink); }
.footer-bottom { grid-column: 1 / -1; display: flex; justify-content: space-between; margin-top: 34px; padding-top: 23px; border-top: 1px solid var(--line); color: #999; font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* Long pages keep their visual rhythm while deferring work outside the viewport. */
.relationship,
.journey,
.platform-detail,
.security,
.final-cta,
.subpage-content,
.application {
  content-visibility: auto;
  contain-intrinsic-size: auto 900px;
}

@media (max-width: 1100px) {
  .hero { grid-template-columns: 1fr; }
  .hero-copy { min-height: 570px; }
  .hero-product { min-height: 690px; }
  .relationship { padding-top: 100px; }
  .audience-panel { grid-template-columns: 1fr; }
  .audience-photo { border-top: 1px solid var(--line); border-left: 0; }
  .journey { grid-template-columns: 1fr; }
  .journey-intro { position: static; }
  .journey-intro p:not(.eyebrow) { max-width: 700px; }
  .security { grid-template-columns: 1fr; }
  .security-copy > p:not(.eyebrow) { max-width: 700px; }
  .application { grid-template-columns: 1fr; }
  .application-intro { max-width: 760px; }
  .route-story { grid-template-columns: 1fr; }
  .route-copy { max-width: 760px; }
  .route-photo, .route-photo img { min-height: 590px; }
}

@media (max-width: 820px) {
  .site-header { height: 70px; }
  .desktop-nav, .header-actions { display: none; }
  .menu-button { display: grid; gap: 6px; min-width: 44px; min-height: 44px; margin-left: auto; padding: 10px; border: 0; background: transparent; }
  .menu-button span { display: block; width: 23px; height: 2px; background: var(--ink); transition: transform .2s ease; }
  .menu-button[aria-expanded='true'] { place-items: center; gap: 0; width: 44px; height: 44px; }
  .menu-button[aria-expanded='true'] span { width: 32px; }
  .menu-button[aria-expanded='true'] span:first-child { grid-area: 1 / 1; transform: rotate(45deg); }
  .menu-button[aria-expanded='true'] span:last-child { grid-area: 1 / 1; transform: rotate(-45deg); }
  .mobile-menu { position: fixed; z-index: 60; top: 70px; right: 0; left: 0; height: calc(100svh - 70px); display: flex; flex-direction: column; justify-content: space-between; padding: 44px 24px; background: var(--white); box-shadow: 0 20px 60px rgba(34, 34, 34, .08); }
  .mobile-menu[hidden] { display: none; }
  .mobile-menu nav a { display: flex; justify-content: space-between; padding: 17px 0; border-bottom: 1px solid var(--line); font-size: 29px; font-weight: 500; letter-spacing: -.04em; text-decoration: none; }
  .mobile-menu nav span { color: var(--pink); font-size: 9px; font-weight: 800; }
  .mobile-menu > .mobile-menu-actions { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .mobile-menu-actions .button { justify-content: space-between; min-width: 0; min-height: 58px; padding: 0 18px; font-size: 11px; }
  .mobile-sign-in { font-weight: 800; text-align: left; text-decoration: none; }
  .hero-copy { min-height: 540px; }
  .hero h1 { font-size: clamp(58px, 14vw, 88px); }
  .hero-lede { font-size: 19px; }
  .proof-strip { grid-template-columns: 1fr 1fr; }
  .proof-strip > div:nth-child(2) { border-right: 0; }
  .proof-strip > div:nth-child(-n + 2) { border-bottom: 1px solid var(--line); }
  .section-heading { display: block; }
  .section-heading h2 { margin-top: 25px; }
  .audience-copy { padding: 45px 28px; }
  .platform-grid { grid-template-columns: 1fr; }
  .feature-large { grid-row: auto; min-height: 650px; }
  .feature-ink { grid-column: auto; }
  .ops-visual { grid-template-columns: 1fr 1fr; }
  .final-cta { grid-template-columns: 1fr; }
  .final-cta-car { min-height: 500px; }
  .final-cta-car img { min-height: 500px; }
  .final-cta-copy { padding: 70px 28px; }
  .final-cta-copy > div { align-items: flex-start; flex-direction: column; }
  .site-footer { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .section-shell { padding-left: 19px; padding-right: 19px; }
  .site-header { padding: 0 19px; }
  .brand { font-size: 19px; }
  .brand-mark, .brand-mark img { width: 45px; height: 29px; }
  .hero { gap: 22px; padding-top: 32px; padding-bottom: 48px; }
  .hero-copy { min-height: 520px; padding: 20px 0; }
  .hero h1 { font-size: clamp(53px, 17vw, 76px); }
  .hero-lede { margin-top: 28px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 18px; }
  body[data-page='home'] .hero-actions { grid-template-columns: repeat(2, minmax(0, 1fr)); width: 100%; max-width: none; gap: 9px; }
  body[data-page='home'] .hero-actions .button,
  body[data-page='home'] .hero-actions .text-action { min-width: 0; min-height: 56px; gap: 9px; padding: 0 16px; font-size: 11px; }
  .hero-trust { gap: 14px; margin-top: 40px; }
  .hero-product {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 8px;
    min-height: 560px;
    border-radius: 22px;
    padding: 18px 14px 16px;
  }
  .hero-photo { object-position: var(--hero-position, 55% center); }
  .visual-label { top: 16px; right: 14px; left: auto; }
  .signal-card,
  .signal-service,
  .signal-value,
  .signal-history {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: 100%;
    grid-template-columns: 40px 1fr;
    padding: 12px 14px;
  }
  .signal-icon { width: 40px; height: 40px; }
  .signal-card strong { font-size: 16px; }
  .ownership-score { display: none; }
  .proof-strip { grid-template-columns: 1fr; }
  .proof-strip > div { min-height: 102px; border-right: 0; border-bottom: 1px solid var(--line); }
  .relationship, .journey, .security { padding-top: 82px; padding-bottom: 88px; }
  .section-heading h2, .journey-intro h2, .security-copy h2, .final-cta h2, .application-intro h2 { font-size: 42px; }
  .section-heading { margin-bottom: 38px; }
  .audience-tabs button { gap: 8px; padding: 16px 12px; font-size: 11px; }
  .audience-copy h3 { font-size: 39px; }
  .audience-copy > p:not(.eyebrow) { font-size: 15px; }
  .audience-photo, .audience-photo > img { min-height: 500px; }
  .photo-callout { right: 16px; bottom: 16px; left: 16px; padding: 18px; }
  .photo-callout strong { font-size: 17px; }
  .journey-step { min-height: 185px; }
  .journey-step.is-active { padding-left: 10px; }
  .feature { min-height: 320px; padding: 25px; }
  .feature-large { min-height: 590px; padding: 28px; }
  .feature-large h3 { font-size: 36px; }
  .service-visual { right: 28px; bottom: 28px; left: 28px; }
  .ops-visual { grid-template-columns: 1fr; }
  .ops-visual span:nth-child(n + 3) { display: none; }
  .security-principles > div { grid-template-columns: 32px 1fr; }
  .final-cta-car, .final-cta-car img { min-height: 420px; }
  body:not([data-page='home']) .hero { min-height: auto; }
  body:not([data-page='home']) .hero-product { min-height: 440px; }
  .subpage-content { padding-top: 75px; padding-bottom: 85px; }
  .route-story { gap: 42px; }
  .route-photo, .route-photo img { min-height: 440px; border-radius: 20px; }
  .route-copy h2 { font-size: 42px; }
  .route-lede { font-size: 16px; }
  #dealer-form { padding: 25px 18px; }
  .form-grid input, .form-grid textarea { min-height: 44px; }
  .form-grid, .uploads { grid-template-columns: 1fr; }
  .form-grid .wide { grid-column: auto; }
  .site-footer { padding: 68px 24px 25px; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .button, .text-action span, .journey-step { transition: none; }
}
