@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@400;500;600;700;800&display=swap");
:root {
  --bg: #0c1014;
  --panel: #141b21;
  --line: #2c343c;
  --text: #f3f5f5;
  --muted: #a6b0b8;
  --accent: #d6f17d;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font:
    16px/1.65 "DM Sans",
    Arial,
    sans-serif;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input {
  font: inherit;
}
button,
a,
input,
summary {
  -webkit-tap-highlight-color: transparent;
}
a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 5px;
}
header {
  height: 88px;
  padding: 0 4.5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  background: #0c1014;
  gap: 20px;
}
.brand {
  font-size: 12px;
  letter-spacing: 1.8px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 15px;
}
.brand b {
  font:
    800 29px Manrope,
    Arial,
    sans-serif;
  letter-spacing: -1px;
}
.brand b span {
  color: var(--accent);
  margin-left: 10px;
}
nav {
  display: flex;
  gap: 30px;
  font-size: 14px;
}
nav a {
  color: #bec5cb;
}
nav a:hover {
  color: var(--accent);
}
.nav-cta {
  font-size: 14px;
  border: 1px solid #59626a;
  padding: 10px 17px;
}
.hero {
  height: min(740px, 72vw);
  min-height: 580px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}
.hero-image {
  object-position: 60% center;
}
.hero-shade {
  z-index: -1;
  background:
    linear-gradient(
      90deg,
      rgba(7, 12, 17, 0.86),
      rgba(7, 12, 17, 0.35) 45%,
      transparent 78%
    ),
    linear-gradient(0deg, #0c1014 0%, transparent 25%);
}
.hero-copy {
  padding: 86px 0 0 7%;
  max-width: 660px;
}
.eyebrow {
  font-size: 12px;
  letter-spacing: 2px;
  font-weight: 600;
  color: var(--accent);
  margin: 0 0 18px;
}
h1,
h2,
h3,
strong {
  font-family: Manrope, Arial, sans-serif;
}
h1 {
  font-size: clamp(54px, 5.4vw, 85px);
  line-height: 1.06;
  letter-spacing: -3.8px;
  font-weight: 500;
  margin: 22px 0 28px;
}
h2 {
  font-size: clamp(30px, 3.15vw, 46px);
  line-height: 1.18;
  letter-spacing: -1.4px;
  font-weight: 500;
  margin: 0;
}
h3 {
  font-weight: 600;
  letter-spacing: -0.3px;
}
.hero-sub {
  color: #c3cbd0;
  font-size: 17px;
  line-height: 1.75;
  margin-bottom: 30px;
}
.button {
  display: inline-flex;
  align-items: center;
  gap: 40px;
  background: var(--accent);
  color: #142012;
  padding: 15px 22px;
  font-size: 14px;
  font-weight: 600;
}
.button:hover {
  background: #e6ffa0;
}
.button span {
  font-size: 22px;
}
.hero-bottom {
  position: absolute;
  bottom: 27px;
  left: 7%;
  right: 7%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  color: #d2d8de;
}
.hero-bottom i {
  font-style: normal;
  color: #74818b;
  margin: 0 18px;
}
.image-caption {
  font-size: 12px;
  color: #9aabb8;
}
.wrap {
  width: 86%;
  max-width: 1280px;
  margin: auto;
}
.purchase {
  padding: 42px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.purchase h2 {
  font-size: 30px;
  margin-top: 9px;
}
.purchase h2 span {
  font-weight: 400;
  color: #aeb7bf;
}
.purchase p {
  color: var(--muted);
  font-size: 14px;
  margin: 10px 0 0;
}
.asking {
  text-align: right;
  display: flex;
  flex-direction: column;
}
.asking span {
  color: var(--muted);
  font-size: 14px;
}
.asking strong {
  font-size: 36px;
  font-weight: 500;
  line-height: 1.5;
}
.asking small {
  font-size: 12px;
  color: var(--muted);
}
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 33px 0;
}
.stats div {
  padding-left: 35px;
  border-left: 1px solid var(--line);
}
.stats div:first-child {
  padding-left: 0;
  border: none;
}
.stats strong {
  font-size: 36px;
  line-height: 1.3;
  font-weight: 500;
  letter-spacing: -1px;
}
.stats strong span {
  font-size: 17px;
  letter-spacing: 0;
  color: var(--muted);
}
.stats p {
  font-size: 13px;
  color: var(--muted);
  margin: 8px 0 0;
}
.section {
  padding-top: 90px;
  padding-bottom: 80px;
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 50px;
  margin-bottom: 40px;
}
.section-head > p {
  max-width: 365px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}
.car-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 28px;
}
.actual {
  margin: 0;
  background: var(--panel);
  position: relative;
  min-width: 0;
}
.actual img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
}
.actual figcaption {
  position: absolute;
  bottom: 0;
  padding: 10px 14px;
  width: 100%;
  background: linear-gradient(transparent, #101010c9);
  font-size: 12px;
}
.spec-panel {
  padding: 28px 32px;
  background: var(--panel);
}
dl {
  margin: 0;
}
dl > div {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
}
dt {
  font-size: 14px;
  color: var(--muted);
}
dd {
  margin: 0;
  font-size: 14px;
  text-align: right;
}
.features {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 27px 0 19px;
}
.features span {
  font-size: 13px;
  color: #c5cdd4;
  border: 1px solid var(--line);
  padding: 7px 13px;
}
.note {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}
.cost-section {
  background: #151c22;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.calculator {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 50px;
  margin-top: 46px;
}
.controls {
  padding-right: 12px;
}
.field {
  margin-bottom: 34px;
}
.field label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  font-size: 15px;
  gap: 15px;
}
.field output {
  font-size: 19px;
  color: var(--accent);
  font-weight: 500;
  white-space: nowrap;
}
input[type="range"] {
  width: 100%;
  height: 4px;
  accent-color: var(--accent);
  cursor: pointer;
  margin: 15px 0;
}
.range-ends {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 12px;
  margin-top: 6px;
}
.input-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.input-grid label {
  font-size: 13px;
  color: #c1c9cf;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
input[type="number"] {
  width: 100%;
  min-width: 0;
  background: #0e1419;
  color: var(--text);
  border: 1px solid #3b464f;
  border-radius: 0;
  padding: 11px 12px;
  font-size: 17px;
}
.extra {
  margin-top: 18px;
}
.controls details {
  border-bottom: 1px solid #35404a;
  padding: 19px 0;
  font-size: 14px;
}
.controls details:first-of-type {
  margin-top: 12px;
}
summary {
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 25px;
}
summary::-webkit-details-marker {
  display: none;
}
summary:after {
  content: "+";
  position: absolute;
  right: 0;
  font-size: 21px;
  top: -5px;
  color: var(--accent);
}
details[open] > summary:after {
  content: "−";
}
.reset {
  background: none;
  border: 0;
  color: var(--muted);
  padding: 20px 0;
  cursor: pointer;
  font-size: 13px;
  text-align: left;
}
.reset:hover {
  color: white;
}
.result {
  background: #202930;
  border: 1px solid #3b464e;
  padding: 34px 35px;
  align-self: start;
}
.result .eyebrow {
  color: #c2cdd5;
}
.total {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 9px;
}
.total strong {
  font-size: clamp(42px, 4.5vw, 62px);
  font-weight: 500;
  letter-spacing: -2px;
  line-height: 1.25;
}
.total span {
  color: var(--muted);
  font-size: 15px;
}
.perkm {
  font-size: 13px;
  color: #c4cdd3;
  margin: 10px 0 24px;
}
.cost-bar {
  height: 7px;
  display: flex;
  gap: 4px;
  margin-bottom: 24px;
}
.cost-bar i {
  display: block;
  transition: width 0.25s;
}
.cost-bar i:nth-child(1),
.energy {
  background: var(--accent);
}
.cost-bar i:nth-child(2),
.fixed {
  background: #91b4c8;
}
.cost-bar i:nth-child(3),
.maintenance {
  background: #ceaa7a;
}
.cost-bar i:nth-child(4),
.depreciation {
  background: #677885;
}
.breakdown > div {
  border: 0;
  padding: 8px 0;
}
.breakdown dt {
  color: #c5cdd3;
  display: flex;
  align-items: center;
  font-size: 14px;
  gap: 10px;
}
.breakdown dd {
  font-size: 16px;
  white-space: nowrap;
}
.dot {
  width: 6px;
  height: 6px;
  display: inline-block;
  flex-shrink: 0;
}
.cash {
  border-top: 1px solid #45505a;
  margin-top: 23px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}
.cash span {
  font-size: 13px;
}
.cash small {
  font-size: 12px;
  display: block;
  color: var(--muted);
}
.cash strong {
  font-size: 24px;
  white-space: nowrap;
  font-weight: 500;
}
.result-note {
  font-size: 12px;
  color: var(--muted);
  margin: 20px 0 0;
}
.assumptions {
  margin-top: 45px;
  padding-top: 28px;
  border-top: 1px solid #36414a;
}
.assumptions h3 {
  font-size: 18px;
}
.assumptions > div {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.assumptions p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
}
.assumptions b {
  color: #d8dfe3;
  font-weight: 500;
}
.reserve {
  max-width: 420px;
  border-left: 2px solid var(--accent);
  padding-left: 25px;
}
.reserve > span {
  color: var(--muted);
  font-size: 13px;
}
.reserve strong {
  display: block;
  font-size: 29px;
  font-weight: 500;
  line-height: 1.5;
}
.reserve strong small {
  font-size: 15px;
  color: var(--muted);
}
.reserve p {
  font-size: 13px;
  color: var(--muted);
  margin: 8px 0 0;
}
.maintenance-intro {
  padding: 24px 28px;
  background: #171e24;
  margin-bottom: 35px;
}
.maintenance-intro p {
  font-size: 14px;
  color: var(--muted);
  margin: 8px 0 0;
}
.maintenance-intro b {
  font-size: 15px;
  font-weight: 500;
}
.table-head,
.maintenance-table article {
  display: grid;
  grid-template-columns: 1.8fr 1fr 0.75fr;
  gap: 30px;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}
.table-head {
  padding: 12px 0;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
}
.table-head span:last-child {
  text-align: right;
}
.maintenance-table h3 {
  font-size: 17px;
  margin: 0 0 8px;
}
.maintenance-table p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
  max-width: 480px;
}
.maintenance-table article > span {
  font-size: 14px;
  color: #c6d0d6;
}
.maintenance-table strong {
  font-size: 18px;
  text-align: right;
  font-weight: 500;
  white-space: nowrap;
}
.maintenance-table small {
  display: block;
  font-size: 12px;
  color: var(--muted);
  white-space: normal;
}
.takeaway {
  margin-top: 54px;
  border-left: 2px solid var(--accent);
  padding-left: 30px;
  max-width: 900px;
}
.takeaway > span {
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--accent);
}
.takeaway h3 {
  font-size: 29px;
  line-height: 1.35;
  font-weight: 500;
  margin: 16px 0;
}
.takeaway p {
  color: var(--muted);
  font-size: 15px;
  max-width: 800px;
}
.sources {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}
.sources summary {
  font-size: 14px;
}
.sources p,
.sources li {
  font-size: 13px;
  color: var(--muted);
}
.sources a {
  text-decoration: underline;
  text-underline-offset: 4px;
}
footer {
  padding: 35px 0 !important;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}
footer > span {
  color: var(--muted);
  font-size: 12px;
}
footer > a:last-child {
  font-size: 13px;
}
footer .brand {
  font-size: 10px;
  letter-spacing: 1px;
}
footer .brand b {
  font-size: 24px;
}
@media (min-width: 1600px) {
  .hero-copy {
    padding-left: calc((100% - 1280px) / 2);
  }
  .hero-bottom {
    left: calc((100% - 1280px) / 2);
    right: calc((100% - 1280px) / 2);
  }
}
@media (max-width: 1000px) {
  header {
    padding: 0 5%;
    height: 75px;
  }
  .brand {
    font-size: 10px;
    gap: 8px;
    letter-spacing: 1px;
  }
  nav {
    gap: 18px;
  }
  .nav-cta {
    display: none;
  }
  .hero {
    min-height: 610px;
  }
  .hero-copy {
    padding-top: 75px;
  }
  .hero-image {
    object-position: 63%;
  }
  .hero-shade {
    background:
      linear-gradient(90deg, #070c11d9, #070c1144),
      linear-gradient(0deg, #0c1014, transparent 40%);
  }
  .stats strong {
    font-size: 28px;
  }
  .stats div {
    padding-left: 20px;
  }
  .car-grid {
    grid-template-columns: 1fr 1fr;
  }
  .spec-panel {
    padding: 23px;
  }
  .spec-panel dl > div {
    gap: 14px;
  }
  .section-head {
    gap: 30px;
  }
  .calculator {
    gap: 25px;
  }
  .result {
    padding: 27px;
  }
  .section-head > p {
    max-width: 310px;
  }
  .asking small {
    max-width: 250px;
  }
  .hero-bottom {
    align-items: flex-start;
    gap: 10px;
  }
  .image-caption {
    max-width: 180px;
    text-align: right;
  }
  .assumptions > div {
    gap: 20px;
  }
}
@media (max-width: 700px) {
  header {
    height: auto;
    min-height: 73px;
    flex-wrap: wrap;
    padding: 15px 6%;
    gap: 12px;
  }
  .brand {
    font-size: 10px;
  }
  nav {
    gap: 20px;
    font-size: 13px;
  }
  .hero {
    height: 650px;
    min-height: 0;
  }
  .hero-image {
    object-position: 67%;
    height: 67%;
    top: auto;
    bottom: 0;
  }
  .hero-shade {
    background:
      linear-gradient(180deg, #0c1014 20%, #0c101480 48%, transparent 80%),
      linear-gradient(0deg, #0c1014 0%, transparent 23%);
  }
  .hero-copy {
    padding: 35px 7% 0;
    max-width: none;
  }
  .hero .eyebrow {
    font-size: 10px;
    letter-spacing: 1.6px;
  }
  h1 {
    font-size: 52px;
    letter-spacing: -2.5px;
    margin: 14px 0 16px;
    line-height: 1.06;
  }
  .hero-sub {
    font-size: 14px;
    line-height: 1.65;
    margin-bottom: 21px;
  }
  .button {
    padding: 10px 15px;
    font-size: 13px;
    gap: 22px;
  }
  .hero-bottom {
    bottom: 13px;
    flex-direction: column;
    font-size: 12px;
    gap: 5px;
  }
  .hero-bottom i {
    margin: 0 10px;
  }
  .image-caption {
    max-width: none;
    font-size: 10px;
  }
  .purchase {
    padding: 26px 0;
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }
  .purchase h2 {
    font-size: 25px;
  }
  .asking {
    text-align: left;
  }
  .asking strong {
    font-size: 32px;
  }
  .asking small {
    max-width: none;
  }
  .stats {
    grid-template-columns: 1fr 1fr;
    gap: 26px 10px;
    padding: 25px 0;
  }
  .stats div {
    padding-left: 18px;
  }
  .stats div:nth-child(3) {
    padding-left: 0;
    border: none;
  }
  .stats strong {
    font-size: 30px;
  }
  .stats p {
    font-size: 12px;
    max-width: 135px;
  }
  .section {
    padding-top: 55px;
    padding-bottom: 48px;
  }
  .section-head {
    display: block;
    margin-bottom: 27px;
  }
  .section-head > p {
    margin-top: 21px;
    max-width: none;
    font-size: 15px;
  }
  h2 {
    font-size: 33px;
  }
  .eyebrow {
    font-size: 11px;
  }
  .car-grid,
  .calculator {
    grid-template-columns: 1fr;
  }
  .car-grid {
    gap: 18px;
  }
  .actual img {
    min-height: 0;
    aspect-ratio: 1.5;
    display: block;
  }
  .spec-panel {
    padding: 22px;
  }
  .features {
    gap: 7px;
  }
  .features span {
    font-size: 12px;
    padding: 6px 9px;
  }
  .calculator {
    margin-top: 30px;
    gap: 16px;
  }
  .controls {
    padding-right: 0;
  }
  .result {
    padding: 26px 23px;
  }
  .total strong {
    font-size: 53px;
  }
  .assumptions > div {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .reserve {
    margin-top: 28px;
    max-width: none;
  }
  .reserve strong {
    font-size: 27px;
  }
  .maintenance-intro {
    padding: 20px;
  }
  .table-head {
    display: none;
  }
  .maintenance-table article {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    padding: 24px 0;
  }
  .maintenance-table article > div {
    grid-column: 1/-1;
  }
  .maintenance-table article > span {
    font-size: 12px;
  }
  .maintenance-table strong {
    font-size: 18px;
  }
  .takeaway {
    padding-left: 20px;
    margin-top: 36px;
  }
  .takeaway h3 {
    font-size: 24px;
  }
  footer {
    flex-wrap: wrap;
  }
  footer > span {
    order: 3;
    width: 100%;
  }
  footer .brand {
    font-size: 9px;
  }
  .input-grid {
    gap: 14px;
  }
  .input-grid label {
    font-size: 12px;
  }
  .breakdown dt {
    font-size: 13px;
  }
  .range-ends {
    font-size: 11px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    transition: none !important;
  }
}
/* v0.2 — buyer decision tools */
.version {
  color: var(--accent);
  font-size: 12px;
  letter-spacing: 0;
  border: 1px solid #46513a;
  padding: 2px 6px;
}
.buyer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 8px 25px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.buyer-nav a {
  font-size: 14px;
  color: #bdc7ce;
}
.buyer-nav a:hover,
.text-link:hover {
  color: var(--accent);
}
.buyer-intro {
  border-top: 1px solid var(--line);
  padding-bottom: 40px;
}
.buyer-intro > p:not(.eyebrow) {
  color: var(--muted);
  max-width: 660px;
  font-size: 17px;
}
.buyer-section {
  border-top: 1px solid var(--line);
}
.buyer-band {
  background: #151c22;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.status {
  display: inline-block;
  width: fit-content;
  font-size: 12px;
  line-height: 1.5;
  padding: 4px 9px;
  font-weight: 500;
  letter-spacing: 0.1px;
  border: 1px solid #53645d;
  white-space: normal;
}
.status.confirmed {
  background: #1f302d;
  color: #c5e3d7;
  border-color: #38584e;
}
.status.estimate {
  background: #303526;
  color: #dae9ac;
  border-color: #505c35;
}
.status.unknown {
  background: #342d25;
  color: #edd1ac;
  border-color: #5d4a34;
}
.status-legend {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px 18px;
  align-items: center;
  padding: 22px 0;
}
.status-legend > span:not(.status) {
  font-size: 14px;
  color: var(--muted);
}
.price-verdict {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 35px;
  padding: 30px;
  background: var(--panel);
  margin-bottom: 25px;
}
.price-verdict strong {
  font-size: 43px;
  line-height: 1.3;
  font-weight: 500;
  display: block;
}
.price-verdict h3 {
  font-size: 20px;
  line-height: 1.5;
  margin: 0 0 10px;
}
.price-verdict p {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 0;
}
.table-scroll {
  overflow-x: auto;
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 800px;
  text-align: left;
}
.compare-table caption {
  text-align: left;
  color: var(--muted);
  font-size: 14px;
  padding: 0 0 18px;
}
.compare-table th,
.compare-table td {
  padding: 20px 15px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
  font-size: 14px;
}
.compare-table thead {
  background: #1a2229;
  color: var(--muted);
}
.compare-table th {
  font-weight: 500;
}
.compare-table th:first-child {
  width: 24%;
}
.compare-table th:nth-child(2) {
  width: 17%;
}
.compare-table th:nth-child(3) {
  width: 15%;
}
.compare-table td:last-child {
  color: #bdc7ce;
}
.compare-table small {
  font-size: 12px;
  color: var(--muted);
}
.compare-table a,
.text-link {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.selected-car {
  background: #1a221b;
}
.timeline {
  padding: 0;
  list-style: none;
}
.timeline li {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 25px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}
.timeline time {
  color: var(--muted);
  font-size: 15px;
  padding-top: 6px;
}
.timeline h3 {
  font-size: 20px;
  margin: 12px 0 8px;
}
.timeline p {
  color: var(--muted);
  font-size: 15px;
  max-width: 750px;
  margin: 0;
}
.document-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 28px;
}
.document-grid article {
  background: #171f26;
  padding: 24px;
  border: 1px solid var(--line);
}
.document-grid h3 {
  font-size: 18px;
  margin: 15px 0 10px;
}
.document-grid p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
}
.document-grid strong {
  font-size: 21px;
  font-weight: 500;
  display: block;
  margin-bottom: 12px;
}
.battery-status {
  margin-bottom: 35px;
}
.buyer-tool {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 35px;
}
.tool-inputs {
  padding: 28px;
  border: 1px solid #35414b;
}
.tool-inputs h3 {
  font-size: 22px;
  margin: 18px 0 24px;
}
.tool-inputs .input-grid {
  align-items: end;
  row-gap: 22px;
}
.tool-inputs .input-grid label,
.ownership-controls .input-grid label {
  font-size: 14px;
}
.tool-result {
  background: #202b33;
  border: 1px solid #3a4852;
  padding: 30px;
}
.tool-result h3 {
  font-size: 26px;
  line-height: 1.35;
  margin: 20px 0;
}
.tool-result li {
  font-size: 15px;
  color: #c5d0d6;
  margin-bottom: 13px;
}
.tool-result ul {
  padding-left: 20px;
}
.tool-result a {
  font-size: 14px;
}
.range-results > div {
  padding: 18px 0;
  border-bottom: 1px solid #3b4852;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.range-results > div > span {
  font-size: 14px;
  color: var(--muted);
}
.range-results strong {
  font-size: 33px;
  font-weight: 500;
}
select {
  width: 100%;
  min-width: 0;
  background: #0e1419;
  color: var(--text);
  border: 1px solid #3b464f;
  border-radius: 0;
  padding: 13px 10px;
  font:
    15px "DM Sans",
    Arial,
    sans-serif;
}
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.gallery-photo {
  padding: 0;
  border: 1px solid #34414b;
  background: #151d24;
  color: white;
  cursor: pointer;
  text-align: left;
  overflow: hidden;
}
.gallery-photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 1.5;
  object-fit: cover;
  display: block;
  transition: transform 0.25s;
}
.gallery-photo:hover img {
  transform: scale(1.025);
}
.gallery-photo span {
  display: block;
  padding: 12px;
  font-size: 14px;
}
.condition-note {
  margin-top: 25px;
  border-left: 2px solid #c3a780;
  padding-left: 22px;
}
.condition-note p {
  font-size: 15px;
  color: var(--muted);
}
#photo-dialog {
  max-width: 1000px;
  width: 92vw;
  background: #151d24;
  color: white;
  border: 1px solid #586a78;
  padding: 20px;
  max-height: 94vh;
}
#photo-dialog::backdrop {
  background: #020509de;
}
#photo-dialog > img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 67vh;
  object-fit: contain;
}
#close-photo {
  display: block;
  margin: 0 0 12px auto;
}
.photo-buttons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}
.photo-buttons button,
#close-photo {
  background: #28343d;
  border: 1px solid #53626e;
  color: #eef3f7;
  font-size: 14px;
  padding: 8px 12px;
  cursor: pointer;
}
#photo-title {
  font-size: 14px;
}
.ownership-controls {
  display: flex;
  gap: 35px;
  align-items: end;
  justify-content: space-between;
}
.ownership-controls fieldset {
  display: flex;
  gap: 15px;
  flex-shrink: 0;
  border: 0;
  margin: 0;
  padding: 0;
}
.ownership-controls legend {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 10px;
}
.ownership-controls fieldset label {
  border: 1px solid #55606a;
  padding: 12px 18px;
  cursor: pointer;
  font-size: 16px;
}
.ownership-controls input[type="radio"] {
  accent-color: var(--accent);
  margin-right: 7px;
}
.ownership-controls .input-grid {
  width: 62%;
}
.ownership-context {
  font-size: 16px;
  border-top: 1px solid #3a444e;
  padding-top: 25px;
  margin-top: 28px;
}
.scenario-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.scenario {
  padding: 25px;
  background: #0f171d;
  border: 1px solid #33414b;
  min-width: 0;
}
.scenario.base {
  border-color: #9cba62;
  background: #202b21;
}
.scenario.bad .eyebrow {
  color: #e3bb87;
}
.scenario > strong {
  display: block;
  font-size: 35px;
  font-weight: 500;
  letter-spacing: -1px;
  line-height: 1.3;
}
.scenario > p {
  font-size: 14px;
  color: var(--muted);
}
.scenario dl > div {
  display: block;
  padding: 12px 0;
}
.scenario dt {
  font-size: 14px;
}
.scenario dd {
  text-align: left;
  font-size: 18px;
  margin-top: 4px;
}
.method,
.seller-questions {
  border-bottom: 1px solid #34414b;
  padding: 22px 0;
  margin-top: 16px;
  font-size: 15px;
}
.method p,
.seller-questions li {
  color: var(--muted);
  font-size: 14px;
}
.warranty-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}
.warranty-card {
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 30px;
}
.warranty-card h3 {
  font-size: 23px;
  margin: 18px 0;
}
.warranty-card > strong {
  display: block;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.35;
}
.warranty-card li,
.warranty-card p {
  font-size: 15px;
  color: var(--muted);
}
.warranty-card ul {
  padding-left: 20px;
}
.warranty-questions h3 {
  margin-top: 0;
}
.checklist-toolbar {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: #1a242b;
}
.checklist-toolbar > span {
  font-size: 16px;
  color: var(--accent);
}
.checklist-toolbar > div {
  display: flex;
  gap: 10px;
}
.secondary {
  background: #252f37;
  color: #eef3f5;
  border: 1px solid #5a6874;
  font-size: 14px;
  cursor: pointer;
  padding: 10px 15px;
}
.secondary:hover {
  background: #3a4853;
}
.check-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 30px;
  margin-top: 22px;
}
.check-items > h3 {
  grid-column: 1/-1;
  font-size: 20px;
  margin: 25px 0 12px;
}
.check-items > label {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  font-size: 15px;
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
  cursor: pointer;
  color: #cad4db;
}
.check-items input {
  accent-color: var(--accent);
  height: 19px;
  width: 19px;
  flex-shrink: 0;
  margin: 3px 0;
}
.check-items > label:has(input:checked) {
  color: #d6f17d;
}
.notes-label {
  display: block;
  margin-top: 30px;
  font-size: 15px;
}
textarea {
  display: block;
  width: 100%;
  padding: 15px;
  background: #10171d;
  color: white;
  border: 1px solid #4c5a65;
  margin-top: 10px;
  font:
    16px/1.6 "DM Sans",
    Arial,
    sans-serif;
  resize: vertical;
}
.seller-questions li {
  margin-bottom: 9px;
}
@media (max-width: 1100px) {
  .document-grid {
    gap: 13px;
  }
  .document-grid article {
    padding: 19px;
  }
  .buyer-tool {
    gap: 22px;
  }
  .tool-inputs,
  .tool-result {
    padding: 23px;
  }
  .gallery {
    grid-template-columns: repeat(3, 1fr);
  }
  .scenario {
    padding: 20px;
  }
  .scenario > strong {
    font-size: 29px;
  }
  .ownership-controls {
    gap: 20px;
  }
  .ownership-controls .input-grid {
    width: 65%;
  }
  .checklist-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }
  .price-verdict {
    gap: 25px;
  }
}
@media (max-width: 700px) {
  .buyer-nav {
    gap: 9px 20px;
    padding: 18px 0;
  }
  .buyer-nav a {
    font-size: 13px;
  }
  .buyer-intro {
    padding-bottom: 25px;
  }
  .status-legend {
    grid-template-columns: 1fr;
    gap: 7px;
  }
  .status-legend > span:not(.status) {
    margin-bottom: 10px;
  }
  .buyer-section .section-head > .status {
    margin-top: 20px;
  }
  .price-verdict {
    grid-template-columns: 1fr;
    padding: 24px;
    gap: 22px;
  }
  .price-verdict strong {
    font-size: 37px;
  }
  .timeline li {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .document-grid,
  .buyer-tool,
  .warranty-grid {
    grid-template-columns: 1fr;
  }
  .document-grid {
    gap: 15px;
  }
  .tool-inputs,
  .tool-result {
    padding: 22px;
  }
  .tool-inputs .input-grid {
    grid-template-columns: 1fr;
  }
  .tool-result h3 {
    font-size: 23px;
  }
  .range-results strong {
    font-size: 30px;
  }
  .gallery {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .gallery-photo span {
    font-size: 13px;
    padding: 10px;
  }
  .ownership-controls {
    flex-direction: column;
    align-items: stretch;
    gap: 22px;
  }
  .ownership-controls .input-grid {
    width: 100%;
    grid-template-columns: 1fr;
  }
  .scenario-cards {
    grid-template-columns: 1fr;
  }
  .scenario > strong {
    font-size: 39px;
  }
  .scenario dl > div {
    display: flex;
    align-items: baseline;
  }
  .scenario dt {
    max-width: 65%;
  }
  .scenario dd {
    text-align: right;
    white-space: nowrap;
    font-size: 17px;
  }
  .warranty-card {
    padding: 24px;
  }
  .checklist-toolbar > div {
    flex-wrap: wrap;
  }
  .check-items {
    grid-template-columns: 1fr;
  }
  .photo-buttons button {
    padding: 8px;
    font-size: 13px;
  }
  .buyer-nav.wrap {
    width: 86%;
  }
  .version {
    font-size: 11px;
  }
  header nav {
    flex-wrap: wrap;
  }
  .brand {
    white-space: normal;
  }
}
@media print {
  @page {
    size: A4;
    margin: 16mm;
  }
  body {
    background: white !important;
    color: #111 !important;
    font-family: Arial, sans-serif;
  }
  header,
  footer,
  main > section:not(#checklist),
  main > nav {
    display: none !important;
  }
  #checklist {
    display: block !important;
    width: 100%;
    max-width: none;
    padding: 0;
    border: 0;
  }
  #checklist * {
    color: #111 !important;
    background: white !important;
  }
  #checklist .section-head {
    display: block;
  }
  #checklist h2 {
    font-size: 26px;
  }
  #checklist h2 br {
    display: none;
  }
  #checklist .section-head > p {
    max-width: none;
    font-size: 12px;
  }
  #checklist .eyebrow {
    font-size: 11px;
  }
  #checklist .checklist-toolbar {
    padding: 5px 0;
    border-bottom: 1px solid #777;
  }
  #checklist .checklist-toolbar > div,
  #checklist .seller-questions {
    display: none;
  }
  #checklist .check-items {
    display: block;
  }
  #checklist .check-items h3 {
    font-size: 14px;
    margin: 17px 0 4px;
  }
  #checklist .check-items label {
    display: flex;
    padding: 5px 0;
    font-size: 11px;
    break-inside: avoid;
  }
  #checklist .check-items input {
    width: 12px;
    height: 12px;
  }
  #checklist textarea {
    font-size: 12px;
    border: 1px solid #aaa;
    min-height: 100px;
  }
  #checklist .note {
    font-size: 10px;
  }
  #checklist .notes-label {
    break-inside: avoid;
    font-size: 12px;
    margin-top: 20px;
  }
}
/* v0.3 dealer presentation */
html {
  scroll-behavior: smooth;
}
section[id] {
  scroll-margin-top: 90px;
}
.brand {
  gap: 10px;
}
.brand b {
  font-size: 19px;
  letter-spacing: 0.03em;
}
.brand-small {
  font-size: 12px;
  letter-spacing: 0.16em;
}
.hero-link {
  color: white;
  padding: 18px;
  display: inline-block;
}

/* v0.4 status-led campaign opening */
.status-visuals {
  background: #111820;
  border-bottom: 1px solid var(--line);
}
.status-visuals figure {
  margin: 0;
  position: relative;
}
.status-visuals figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, #111820 0%, transparent 32%);
  pointer-events: none;
}
.status-visuals img {
  width: 100%;
  height: min(580px, 48vw);
  min-height: 360px;
  object-fit: cover;
  object-position: center;
  display: block;
}
.status-visuals figcaption {
  position: absolute;
  right: 4%;
  bottom: 18px;
  z-index: 1;
  color: #c9d1d6;
  font-size: 12px;
}
.status-quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding: 36px 0 48px;
}
.status-quotes blockquote {
  margin: 0;
  padding: 0 0 0 19px;
  border-left: 2px solid #d8bd8b;
  font:
    500 19px/1.45 Manrope,
    Arial,
    sans-serif;
  color: #eff2f4;
}
.sales-intro {
  padding-bottom: 45px;
  max-width: 900px;
  font-size: 20px;
  line-height: 1.65;
}
.all-specs,
.option-group {
  border-bottom: 1px solid #343a40;
  padding: 20px 0;
}
.all-specs summary,
.option-group summary,
.market-details > summary {
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
}
.full-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 45px;
  margin-top: 25px;
}
.full-specs > div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 13px 0;
  border-bottom: 1px solid #30363b;
}
.full-specs dd {
  margin: 0;
  text-align: right;
}
.option-group ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px 30px;
  padding: 24px 20px;
  margin: 0;
  line-height: 1.5;
}
#uitrusting {
  padding-top: 35px;
}
#uitrusting > p {
  max-width: 850px;
  color: #b7bec5;
  line-height: 1.7;
}
.lifestyle {
  background: #13181e;
}
.lifestyle figure {
  margin: 0;
  position: relative;
}
.lifestyle img {
  width: 100%;
  height: 530px;
  object-fit: cover;
  display: block;
}
.lifestyle figcaption {
  position: absolute;
  bottom: 12px;
  right: 20px;
  font-size: 12px;
  background: #10151bd9;
  padding: 7px 12px;
  color: white;
}
.lifestyle-copy {
  padding-top: 60px;
  padding-bottom: 75px;
}
.selling-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 45px;
  margin-top: 40px;
}
.selling-points h3 {
  font-size: 22px;
}
.selling-points p {
  color: #bec4cb;
  line-height: 1.7;
}
.scenario-note {
  border-left: 2px solid #b59b73;
  padding: 16px 20px;
  background: #191f25;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 30px;
}
.market-details {
  margin-top: 50px;
  margin-bottom: 20px;
}
.market-details section {
  padding-left: 0;
  padding-right: 0;
}
.weekend {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.weekend > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.weekend:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #070d13dd, transparent);
}
.weekend > div {
  position: relative;
  z-index: 1;
  padding: 65px 8%;
  max-width: 750px;
}
.weekend h2 {
  margin-bottom: 28px;
}
.choice-form {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.choice-form label {
  display: grid;
  gap: 12px;
  font-size: 15px;
}
.choice-form select {
  width: 100%;
  background: #1b2229;
  color: #fff;
  border: 1px solid #47515a;
  padding: 14px;
  font: inherit;
  border-radius: 0;
}
.choice-result {
  padding: 25px;
  margin: 25px 0 35px;
  border-left: 3px solid #b59b73;
  background: #1b2229;
  line-height: 1.6;
}
.alternative-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
.alternative-card {
  border: 1px solid #343c44;
  background: #131a20;
}
.alternative-card > img {
  width: 100%;
  aspect-ratio: 1.5;
  object-fit: cover;
}
.alternative-card > div {
  padding: 24px;
}
.alternative-card h3 {
  font-size: 21px;
  line-height: 1.3;
}
.alternative-card p {
  line-height: 1.6;
}
.alternative-card.recommended {
  border-color: #c9a86e;
}
.contact-section {
  background: #202933;
}
.contact-section h2 {
  font-size: clamp(36px, 5vw, 70px);
}
.contact-section p {
  line-height: 1.8;
}
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin: 30px 0;
}
.mobile-contact {
  display: none;
}
.document-grid a,
.alternative-card a {
  color: #dcc399;
}
.document-grid article p {
  line-height: 1.65;
}
a:focus-visible,
summary:focus-visible {
  outline: 2px solid #e7c98d;
  outline-offset: 5px;
}
@media (max-width: 800px) {
  .brand-small {
    display: none;
  }
  .selling-points,
  .alternative-grid {
    grid-template-columns: 1fr;
  }
  .choice-form {
    grid-template-columns: 1fr;
  }
  .full-specs {
    grid-template-columns: 1fr;
  }
  .option-group ul {
    grid-template-columns: 1fr 1fr;
  }
  .lifestyle img {
    height: 330px;
  }
  .weekend {
    min-height: 460px;
  }
  .contact-actions {
    flex-direction: column;
  }
  .mobile-contact {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: #d8bd8b;
    color: #10161c;
    text-align: center;
    padding: 17px;
    font-weight: 700;
    text-decoration: none;
  }
  body {
    padding-bottom: 58px;
  }
  .hero-copy h1 {
    font-size: clamp(46px, 12vw, 80px);
  }
  .hero-copy {
    max-width: 90%;
  }
  .sales-intro {
    font-size: 18px;
  }
  .market-details {
    margin-top: 30px;
  }
  .document-grid {
    grid-template-columns: 1fr;
  }
  .full-specs dt,
  .full-specs dd {
    font-size: 14px;
  }
  .weekend > div {
    padding-left: 6%;
  }
}
@media (max-width: 450px) {
  .option-group ul {
    grid-template-columns: 1fr;
  }
  .hero-sub {
    font-size: 17px;
  }
  .hero-link {
    padding-left: 0;
  }
  .hero {
    min-height: 720px;
  }
  .brand b {
    font-size: 16px;
  }
}

@media (max-width: 800px) {
  .status-visuals img {
    min-height: 300px;
    height: 72vw;
  }
  .status-quotes {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 28px 0 35px;
  }
  .status-quotes blockquote {
    font-size: 17px;
  }
}
