:root {
  --ink: #081c24;
  --ink-2: #12313c;
  --mint: #55e6b5;
  --mint-soft: #dffaf1;
  --sky: #eaf4f7;
  --paper: #f7faf9;
  --white: #fff;
  --muted: #60747b;
  --line: #dbe5e7;
  --orange: #ffb45c;
  --shadow: 0 20px 60px rgba(3, 25, 33, 0.12);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 16px;
  line-height: 1.5;
}
button,
input {
  font: inherit;
}
button {
  cursor: pointer;
}
.topbar {
  height: 78px;
  padding: 0 clamp(22px, 5vw, 72px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(8, 28, 36, 0.1);
  background: rgba(247, 250, 249, 0.92);
  backdrop-filter: blur(16px);
  position: sticky;
  top: 0;
  z-index: 20;
}
.brand {
  display: flex;
  gap: 11px;
  align-items: center;
  text-decoration: none;
  color: var(--ink);
  font:
    800 21px/1 system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  letter-spacing: -0.7px;
}
.brand-logo {
  width: 52px;
  height: 40px;
  object-fit: contain;
  flex: 0 0 auto;
  filter: drop-shadow(0 3px 5px rgba(8, 28, 36, 0.16));
}
.brand-wordmark {
  letter-spacing: -0.8px;
}
.brand-wordmark > span {
  color: #12aa7a;
  letter-spacing: 0.02em;
}
.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--ink);
  display: grid;
  place-items: center;
  position: relative;
}
.brand-mark:before {
  content: "";
  width: 19px;
  height: 10px;
  border: 2px solid var(--mint);
  border-bottom: 0;
  border-radius: 7px 7px 2px 2px;
  position: absolute;
  top: 8px;
}
.brand-mark span {
  width: 22px;
  height: 9px;
  border: 2px solid white;
  border-radius: 3px;
  position: absolute;
  bottom: 7px;
}
.brand-mark span:before,
.brand-mark span:after {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--mint);
  bottom: -4px;
}
.brand-mark span:before {
  left: 1px;
}
.brand-mark span:after {
  right: 1px;
}
nav {
  display: flex;
  gap: 6px;
}
.nav-link {
  border: 0;
  background: transparent;
  color: #687a80;
  padding: 11px 16px;
  border-radius: 9px;
  font-weight: 600;
}
.nav-link:hover,
.nav-link.active {
  color: var(--ink);
  background: white;
  box-shadow: 0 2px 10px rgba(8, 28, 36, 0.07);
}
.account-button {
  border: 0;
  background: transparent;
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--ink);
}
.account-button span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--mint);
  font-weight: 800;
  font-size: 13px;
}
.account-button b {
  font-size: 14px;
}
.view {
  display: none;
}
.view.active {
  display: block;
}
.hero-shell {
  min-height: 650px;
  padding: clamp(50px, 8vh, 92px) clamp(24px, 7vw, 110px) 60px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.72fr);
  gap: clamp(50px, 8vw, 125px);
  align-items: center;
  background:
    radial-gradient(circle at 68% 5%, rgba(85, 230, 181, 0.2), transparent 28%),
    linear-gradient(135deg, #f8fbfa 40%, #eef7f5 100%);
  overflow: hidden;
}
.hero-copy {
  max-width: 690px;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 700;
  color: #476268;
}
.eyebrow span {
  width: 24px;
  height: 2px;
  background: #13b17f;
}
.hero-copy h1,
.page-heading h1,
.garage-heading h1 {
  font:
    800 clamp(48px, 6vw, 82px)/0.98 system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  letter-spacing: -4.5px;
  margin: 20px 0 24px;
}
.hero-copy h1 em {
  font-style: normal;
  color: #0f9e72;
}
.lede {
  font-size: 19px;
  line-height: 1.6;
  max-width: 580px;
  color: #526970;
}
.reg-search {
  margin-top: 38px;
  padding: 18px;
  background: white;
  border: 1px solid #e0e9e8;
  border-radius: 16px;
  box-shadow: 0 13px 34px rgba(8, 28, 36, 0.08);
  max-width: 630px;
}
.reg-search > label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin: 0 0 9px;
  color: #50656c;
  text-transform: uppercase;
  letter-spacing: 0.7px;
}
.reg-row {
  display: flex;
  gap: 10px;
}
.plate-wrap {
  display: flex;
  height: 56px;
  border: 2px solid var(--ink);
  border-radius: 9px;
  overflow: hidden;
  flex: 1;
  background: #ffdc2e;
}
.gb-strip {
  width: 38px;
  display: grid;
  place-items: center;
  background: #1248a2;
  color: white;
  font-size: 11px;
  font-weight: 800;
  writing-mode: vertical-rl;
}
.plate-wrap input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: #ffdc2e;
  text-transform: uppercase;
  text-align: center;
  font:
    800 23px/1 system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  letter-spacing: 3px;
  color: #111;
}
.primary-button {
  border: 0;
  border-radius: 9px;
  padding: 0 22px;
  min-height: 50px;
  background: var(--ink);
  color: white;
  font-weight: 700;
  box-shadow: 0 5px 14px rgba(8, 28, 36, 0.18);
}
.primary-button:hover {
  background: #123743;
}
.primary-button span {
  color: var(--mint);
  font-size: 20px;
  margin-left: 8px;
}
.demo-note {
  font-size: 12px !important;
  color: #789096 !important;
  margin: 9px 0 0 !important;
}
.trust-row {
  display: flex;
  gap: 26px;
  margin-top: 24px;
  color: #496168;
  font-size: 14px;
  font-weight: 600;
  flex-wrap: wrap;
}
.trust-row i {
  font-style: normal;
  color: #0c9c6e;
  margin-right: 5px;
}
.vehicle-card {
  background: var(--ink);
  color: white;
  border-radius: 22px;
  padding: 27px;
  box-shadow: 0 30px 80px rgba(8, 28, 36, 0.24);
  position: relative;
}
.vehicle-card:before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  pointer-events: none;
}
.card-topline {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(85, 230, 181, 0.12);
  color: #8ff2d1;
  padding: 6px 10px;
  border-radius: 99px;
  font-size: 12px;
  font-weight: 700;
}
.status-pill i,
.mot-band i {
  width: 6px;
  height: 6px;
  background: var(--mint);
  border-radius: 50%;
}
.source-label {
  font-size: 11px;
  letter-spacing: 1.6px;
  color: #76929a;
}
.vehicle-heading {
  padding: 28px 0 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.mini-plate {
  display: inline-block;
  background: #ffdc2e;
  color: #111;
  padding: 5px 10px;
  border: 1px solid #111;
  border-radius: 4px;
  font:
    800 13px/1 system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  letter-spacing: 1.3px;
}
.vehicle-heading h2 {
  font:
    800 34px/1.1 system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  letter-spacing: -1.5px;
  margin: 16px 0 2px;
}
.vehicle-heading p {
  margin: 0;
  color: #9bb1b8;
}
.vehicle-specs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin: 22px 0;
}
.vehicle-specs div {
  display: flex;
  flex-direction: column;
}
.vehicle-specs dt {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #7f9aa2;
}
.vehicle-specs dd {
  margin: 4px 0 0;
  font-weight: 700;
  font-size: 14px;
}
.mot-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: rgba(255, 255, 255, 0.065);
  border-radius: 10px;
  padding: 13px 15px;
  margin-bottom: 13px;
}
.mot-band div {
  display: flex;
  flex-direction: column;
}
.mot-band div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.11);
  padding-left: 18px;
}
.mot-band span {
  font-size: 11px;
  color: #88a0a7;
  text-transform: uppercase;
}
.mot-band strong {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  margin-top: 3px;
}
.wide-action {
  width: 100%;
  border: 0;
  background: var(--mint);
  color: var(--ink);
  height: 52px;
  border-radius: 9px;
  font-weight: 800;
  display: flex;
  justify-content: space-between;
  padding: 0 18px;
  align-items: center;
}
.wide-action:hover {
  background: #7af0c9;
}
.wide-action span {
  font-size: 13px;
}
.text-action {
  display: flex;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: transparent;
  color: #b7c7cb;
  border: 0;
  padding: 15px 0 0;
  font-size: 13px;
}
.text-action:hover {
  color: white;
}
.steps-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 0 clamp(24px, 7vw, 110px);
  background: white;
}
.steps-strip article {
  display: flex;
  gap: 20px;
  padding: 34px 5vw 34px 0;
}
.steps-strip article + article {
  border-left: 1px solid var(--line);
  padding-left: 5vw;
}
.steps-strip article > span {
  font: 800 13px system-ui;
  color: #12aa7a;
}
.steps-strip h3 {
  margin: 0;
  font: 700 16px system-ui;
}
.steps-strip p {
  font-size: 14px;
  color: var(--muted);
  margin: 5px 0 0;
}
.future-platform {
  padding: 76px clamp(24px, 7vw, 110px) 90px;
  background: #081c24;
  color: white;
}
.future-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  align-items: end;
  gap: 50px;
  max-width: 1320px;
  margin: 0 auto 34px;
}
.future-label {
  color: #68e9bd;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.4px;
}
.future-heading h2 {
  max-width: 760px;
  margin: 12px 0 0;
  font-size: clamp(36px, 4.2vw, 62px);
  line-height: 1.02;
  letter-spacing: -3px;
}
.future-heading > p {
  margin: 0;
  color: #b4c6ca;
  font-size: 16px;
  line-height: 1.65;
}
.future-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  max-width: 1320px;
  margin: 0 auto;
}
.future-card {
  min-width: 0;
  padding: clamp(24px, 3vw, 38px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: #102b35;
}
.future-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.future-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: #55e6b5;
  color: #081c24;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.5px;
}
.garage-icon {
  border: 1px solid rgba(85, 230, 181, 0.5);
  background: rgba(85, 230, 181, 0.1);
  color: #79edc7;
  font-size: 20px;
}
.planned-pill {
  padding: 6px 9px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  color: #a9bec3;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.8px;
}
.future-card h3 {
  margin: 22px 0 10px;
  font-size: 27px;
  letter-spacing: -1px;
}
.future-card > p {
  max-width: 650px;
  margin: 0;
  color: #b8c9cd;
  font-size: 16px;
  line-height: 1.65;
}
.future-card footer {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #91aab0;
  font-size: 13px;
}
.impact-preview {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-top: 24px;
}
.impact-preview span {
  display: block;
  padding: 13px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
}
.impact-preview b,
.impact-preview small {
  display: block;
}
.impact-preview b {
  font-size: 14px;
}
.impact-preview small {
  margin-top: 3px;
  color: #8da6ac;
  font-size: 12px;
}
.partner-card {
  background: linear-gradient(145deg, #123740, #0d2933);
}
.partner-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}
.partner-flow li {
  padding: 13px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
}
.partner-flow span,
.partner-flow b {
  display: block;
}
.partner-flow span {
  color: #68e9bd;
  font-size: 12px;
  font-weight: 900;
}
.partner-flow b {
  margin-top: 5px;
  font-size: 14px;
}
.partner-login {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 48px;
  margin-top: 14px;
  padding: 0 15px;
  border: 1px solid rgba(85, 230, 181, 0.28);
  border-radius: 9px;
  background: rgba(85, 230, 181, 0.08);
  color: #d8f7ec;
  font-size: 14px;
  font-weight: 800;
  cursor: not-allowed;
}
.partner-login span {
  color: #68e9bd;
  font-size: 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.compact-card {
  background: #0c252e;
}
.compact-card h3 {
  margin-top: 13px;
}
.compact-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}
.compact-card li {
  padding: 7px 10px;
  border-radius: 7px;
  background: rgba(85, 230, 181, 0.09);
  color: #9eeecd;
  font-size: 13px;
  font-weight: 700;
}
.parts-route {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 23px;
}
.parts-route span {
  padding: 8px 11px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  font-size: 13px;
  font-weight: 700;
}
.parts-route i {
  color: #68e9bd;
  font-style: normal;
}
.parts-card > small {
  display: block;
  margin-top: 17px;
  color: #91aab0;
  font-size: 13px;
  line-height: 1.5;
}
.page-view {
  max-width: 1320px;
  margin: 0 auto;
  padding: 65px clamp(22px, 5vw, 65px) 85px;
}
.page-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 37px;
}
.page-heading h1 {
  font-size: 56px;
  margin: 16px 0 0;
  letter-spacing: -3px;
}
.page-heading > p {
  max-width: 470px;
  font-size: 18px;
  color: var(--muted);
  margin: 0 0 5px;
}
.vehicle-context {
  background: var(--ink);
  color: white;
  border-radius: 15px;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
.vehicle-context > div {
  display: flex;
  align-items: center;
  gap: 15px;
}
.vehicle-context strong,
.vehicle-context small {
  display: block;
}
.vehicle-context small {
  color: #8ca3aa;
  margin-top: 2px;
}
.vehicle-context button {
  background: transparent;
  border: 1px solid #4b6269;
  color: white;
  border-radius: 8px;
  padding: 9px 13px;
}
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
}
.price-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 17px;
  padding: 28px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.price-card.featured {
  border: 2px solid #11aa79;
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}
.popular {
  position: absolute;
  right: 16px;
  top: 16px;
  background: var(--mint-soft);
  color: #087755;
  padding: 6px 9px;
  border-radius: 99px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.7px;
}
.tier {
  font-size: 11px;
  letter-spacing: 1.4px;
  color: #0b8a64;
  font-weight: 800;
}
.price-card h2 {
  font: 800 25px system-ui;
  margin: 10px 0;
}
.price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 4px 0 15px;
}
.price strong {
  font: 800 44px system-ui;
  letter-spacing: -2px;
}
.price span {
  font-size: 13px;
  color: var(--muted);
}
.price-card > p:not(.price) {
  color: var(--muted);
  min-height: 72px;
}
.price-card ul {
  list-style: none;
  padding: 15px 0;
  margin: 0 0 20px;
  border-top: 1px solid var(--line);
  flex: 1;
}
.price-card li {
  padding: 7px 0 7px 25px;
  position: relative;
  font-size: 14px;
}
.price-card li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #0ca375;
  font-weight: 800;
}
.price-card > button {
  height: 48px;
  border: 1px solid var(--ink);
  background: white;
  color: var(--ink);
  border-radius: 8px;
  font-weight: 700;
}
.price-card.featured > button,
.price-card > button:hover {
  background: var(--ink);
  color: white;
}
.price-note {
  text-align: center;
  color: #789096;
  font-size: 13px;
  margin-top: 25px;
}
.garage-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 30px;
}
.garage-heading h1 {
  font-size: 60px;
  margin: 13px 0 5px;
}
.garage-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}
.garage-layout {
  display: grid;
  grid-template-columns: 285px 1fr;
  gap: 20px;
}
.car-list {
  background: var(--ink);
  color: white;
  border-radius: 16px;
  padding: 20px;
  height: max-content;
}
.car-list-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #78939b;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.4px;
  padding: 2px 3px 15px;
}
.car-list-title button {
  width: 27px;
  height: 27px;
  border-radius: 7px;
  border: 1px solid #496168;
  background: transparent;
  color: white;
}
.car-item {
  width: 100%;
  border: 0;
  background: transparent;
  color: white;
  display: grid;
  grid-template-columns: 45px 1fr 12px;
  gap: 12px;
  align-items: center;
  text-align: left;
  padding: 12px;
  border-radius: 10px;
}
.car-item.active {
  background: rgba(85, 230, 181, 0.12);
}
.car-item:hover {
  background: rgba(255, 255, 255, 0.07);
}
.car-thumb {
  width: 45px;
  height: 38px;
  border-radius: 7px;
  background: #1e3b46;
  color: var(--mint);
  display: grid;
  place-items: center;
  font-weight: 800;
}
.car-thumb.light {
  background: #eaf3f4;
  color: #38535c;
}
.car-item strong,
.car-item small {
  display: block;
}
.car-item strong {
  font-size: 14px;
}
.car-item small {
  font-size: 11px;
  color: #8ba2a9;
  margin-top: 2px;
  letter-spacing: 0.8px;
}
.car-item i {
  font-style: normal;
  color: #6e878e;
}
.garage-summary {
  margin-top: 20px;
  padding: 17px 12px 2px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: grid;
  grid-template-columns: auto 1fr auto 1fr;
  gap: 6px;
  align-items: baseline;
}
.garage-summary strong {
  font: 800 19px system-ui;
  color: var(--mint);
}
.garage-summary span {
  font-size: 11px;
  color: #8299a0;
}
.garage-main {
  min-width: 0;
}
.car-overview {
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 25px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.car-overview h2 {
  font: 800 27px system-ui;
  margin: 12px 0 1px;
  letter-spacing: -1px;
}
.car-overview p {
  margin: 0;
  color: var(--muted);
}
.health-score {
  display: grid;
  grid-template-columns: auto auto;
  gap: 0 10px;
  align-items: center;
  border-left: 1px solid var(--line);
  padding-left: 25px;
}
.health-score > span {
  grid-column: 1;
  color: var(--muted);
  font-size: 12px;
}
.health-score strong {
  grid-column: 2;
  grid-row: 1/3;
  font: 800 38px system-ui;
  color: #0d9f72;
}
.health-score strong small {
  font-size: 17px;
}
.health-score em {
  font-style: normal;
  font-size: 12px;
  font-weight: 700;
}
.reminder-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin: 15px 0;
}
.reminder-row article {
  background: #eef8f5;
  border: 1px solid #d2ebe3;
  border-radius: 13px;
  padding: 15px;
  display: grid;
  grid-template-columns: 45px 1fr auto;
  align-items: center;
  gap: 13px;
}
.reminder-icon {
  width: 45px;
  height: 45px;
  border-radius: 10px;
  background: #0ca374;
  color: white;
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 800;
}
.reminder-icon.service {
  background: #e8ae5b;
  color: #3a2707;
}
.reminder-row small,
.reminder-row strong {
  display: block;
}
.reminder-row small {
  font-size: 10px;
  color: #668079;
  letter-spacing: 1px;
}
.reminder-row strong {
  font-size: 14px;
  margin-top: 2px;
}
.reminder-row b {
  font-size: 11px;
  color: #0b8d67;
  background: white;
  padding: 5px 8px;
  border-radius: 99px;
}
.records-panel {
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 23px 26px;
}
.panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 19px;
}
.panel-title h3 {
  font: 800 19px system-ui;
  margin: 0;
}
.panel-title p {
  font-size: 12px;
  color: var(--muted);
  margin: 2px 0 0;
}
.panel-title button {
  border: 1px solid var(--line);
  background: white;
  border-radius: 8px;
  padding: 8px 12px;
  font-weight: 700;
}
.timeline {
  border-top: 1px solid var(--line);
}
.timeline article {
  position: relative;
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 20px;
  padding: 22px 0 22px 25px;
  border-bottom: 1px solid #edf1f2;
}
.timeline-dot {
  position: absolute;
  left: 0;
  top: 27px;
  width: 11px;
  height: 11px;
  border: 3px solid #11ad7c;
  border-radius: 50%;
  background: white;
}
.timeline-dot:after {
  content: "";
  position: absolute;
  top: 9px;
  left: 1px;
  width: 2px;
  height: 79px;
  background: #dfe8e9;
}
.timeline article:last-child .timeline-dot:after {
  display: none;
}
.timeline-dot.muted {
  border-color: #aab9bd;
}
.record-date {
  font-size: 11px;
  font-weight: 700;
  color: #71878d;
  letter-spacing: 0.7px;
}
.record-content strong {
  font-size: 14px;
}
.record-content p {
  margin: 4px 0;
  color: #40575e;
  font-size: 13px;
}
.record-content small {
  color: #85999f;
}
.record-content > div {
  display: flex;
  align-items: center;
  gap: 9px;
}
.verified {
  font-size: 10px;
  color: #07845e;
  background: var(--mint-soft);
  padding: 3px 6px;
  border-radius: 99px;
}
.timeline article > b {
  font-size: 13px;
}
.timeline .new-record {
  animation: flash 1.4s ease;
}
@keyframes flash {
  0% {
    background: #dffaf1;
  }
  100% {
    background: transparent;
  }
}
dialog {
  width: min(475px, calc(100% - 28px));
  border: 0;
  border-radius: 18px;
  padding: 31px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.3);
  color: var(--ink);
}
dialog::backdrop {
  background: rgba(3, 18, 23, 0.67);
  backdrop-filter: blur(5px);
}
dialog h2 {
  font: 800 28px system-ui;
  margin: 8px 0;
}
.dialog-close {
  position: absolute;
  right: 15px;
  top: 12px;
  border: 0;
  background: transparent;
  font-size: 26px;
  color: #70848a;
}
.dialog-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--mint);
  font-weight: 900;
  margin-bottom: 18px;
}
.order-summary {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 9px;
  background: #f2f6f5;
  border-radius: 11px;
  padding: 15px;
  margin: 20px 0;
}
.order-summary span {
  color: var(--muted);
  font-size: 13px;
}
.order-summary strong {
  text-align: right;
  font-size: 13px;
}
.full {
  width: 100%;
  height: 51px;
}
dialog > small {
  display: block;
  text-align: center;
  color: #789096;
  margin-top: 10px;
}
#record-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}
#record-form label {
  font-size: 12px;
  font-weight: 700;
  color: #526870;
}
#record-form input {
  width: 100%;
  height: 45px;
  border: 1px solid #cad8db;
  border-radius: 8px;
  padding: 0 11px;
  margin-top: 5px;
  font-size: 14px;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
#toast {
  position: fixed;
  right: 25px;
  bottom: 25px;
  background: var(--ink);
  color: white;
  padding: 13px 18px;
  border-radius: 10px;
  box-shadow: var(--shadow);
  font-weight: 600;
  transform: translateY(30px);
  opacity: 0;
  pointer-events: none;
  transition: 0.25s;
  z-index: 50;
}
#toast.show {
  transform: none;
  opacity: 1;
}
@media (max-width: 900px) {
  .topbar {
    padding: 0 22px;
  }
  nav {
    display: none;
  }
  .hero-shell {
    grid-template-columns: 1fr;
    padding-top: 55px;
  }
  .hero-copy {
    max-width: none;
  }
  .vehicle-card {
    max-width: 570px;
  }
  .steps-strip {
    grid-template-columns: 1fr;
  }
  .steps-strip article + article {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding-left: 0;
  }
  .future-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .future-grid {
    grid-template-columns: 1fr;
  }
  .page-heading {
    display: block;
  }
  .page-heading > p {
    margin-top: 18px;
  }
  .price-grid {
    grid-template-columns: 1fr;
  }
  .price-card.featured {
    transform: none;
  }
  .garage-layout {
    grid-template-columns: 1fr;
  }
  .car-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 7px;
  }
  .car-list-title,
  .garage-summary {
    grid-column: 1/-1;
  }
  .garage-heading {
    align-items: flex-start;
    gap: 20px;
  }
  .garage-heading .primary-button {
    padding: 0 14px;
  }
  .reminder-row {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {
  .topbar {
    height: 65px;
  }
  .account-button b {
    display: none;
  }
  .hero-shell {
    padding: 40px 18px 42px;
    gap: 40px;
  }
  .hero-copy h1 {
    font-size: 47px;
    letter-spacing: -3px;
  }
  .lede {
    font-size: 17px;
  }
  .reg-search {
    padding: 13px;
  }
  .reg-row {
    display: block;
  }
  .primary-button {
    width: 100%;
    margin-top: 10px;
  }
  .trust-row {
    gap: 10px 18px;
  }
  .vehicle-card {
    padding: 21px;
  }
  .vehicle-specs {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }
  .steps-strip {
    padding: 0 19px;
  }
  .future-platform {
    padding: 52px 18px 64px;
  }
  .future-heading h2 {
    font-size: 39px;
    letter-spacing: -2px;
  }
  .future-card {
    padding: 23px 19px;
  }
  .impact-preview,
  .partner-flow {
    grid-template-columns: 1fr 1fr;
  }
  .parts-route {
    align-items: stretch;
    flex-direction: column;
  }
  .parts-route i {
    transform: rotate(90deg);
    align-self: flex-start;
    margin-left: 22px;
  }
  .page-view {
    padding: 42px 17px 65px;
  }
  .page-heading h1,
  .garage-heading h1 {
    font-size: 42px;
    letter-spacing: -2.5px;
  }
  .vehicle-context {
    align-items: flex-start;
  }
  .vehicle-context > div {
    align-items: flex-start;
  }
  .vehicle-context button {
    font-size: 12px;
  }
  .garage-heading {
    display: block;
  }
  .garage-heading .primary-button {
    margin-top: 20px;
    width: auto;
  }
  .car-list {
    display: block;
  }
  .garage-summary {
    display: grid;
  }
  .car-overview {
    align-items: flex-start;
  }
  .health-score {
    padding-left: 15px;
  }
  .health-score > span {
    display: none;
  }
  .health-score strong {
    grid-row: auto;
  }
  .reminder-row article {
    grid-template-columns: 40px 1fr;
  }
  .reminder-icon {
    width: 40px;
    height: 40px;
  }
  .reminder-row b {
    display: none;
  }
  .records-panel {
    padding: 19px 16px;
  }
  .timeline article {
    grid-template-columns: 1fr auto;
    padding-left: 22px;
    gap: 6px;
  }
  .record-date {
    grid-column: 1/-1;
  }
  .record-content {
    grid-column: 1;
  }
  .record-content > div {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }
  .field-row {
    grid-template-columns: 1fr;
  }
  #toast {
    left: 16px;
    right: 16px;
    bottom: 16px;
    text-align: center;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    animation: none !important;
    transition: none !important;
  }
}
.topbar a.nav-link,
.topbar a.account-button {
  text-decoration: none;
}
