:root {
  color-scheme: light;
  --ink: #070707;
  --ink-soft: #2b2926;
  --muted: #8f8a82;
  --muted-strong: #6d675f;
  --line: rgba(7, 7, 7, 0.1);
  --line-strong: rgba(7, 7, 7, 0.18);
  --surface: #f4f0e8;
  --surface-soft: #ebe6dc;
  --panel: #fbfaf6;
  --panel-muted: #ded9cf;
  --inverse: #070707;
  --inverse-muted: #24211d;
  --danger: #9d3b2f;
  --shadow: 0 26px 80px rgba(28, 24, 19, 0.16);
  --shadow-soft: 0 12px 38px rgba(28, 24, 19, 0.1);
  --glass-bg: linear-gradient(145deg, rgba(255, 255, 255, 0.72), rgba(244, 240, 232, 0.48));
  --glass-line: rgba(255, 255, 255, 0.72);
  --glass-shadow: 0 18px 54px rgba(28, 24, 19, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.62);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background:
    radial-gradient(circle at 20% 8%, rgba(255, 255, 255, 0.72), transparent 24rem),
    radial-gradient(circle at 80% 18%, rgba(214, 208, 196, 0.55), transparent 28rem),
    linear-gradient(115deg, transparent 0 48%, rgba(7, 7, 7, 0.025) 48% 48.2%, transparent 48.2%),
    var(--surface);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(7, 7, 7, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 7, 7, 0.028) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at 50% 18%, black, transparent 62%);
  content: "";
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.34;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(7, 7, 7, 0.08) 0 1px, transparent 1px),
    radial-gradient(circle at 70% 55%, rgba(7, 7, 7, 0.06) 0 1px, transparent 1px);
  background-size: 18px 18px, 26px 26px;
  mix-blend-mode: multiply;
  content: "";
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 0 clamp(18px, 4vw, 38px);
  background: rgba(244, 240, 232, 0.88);
  backdrop-filter: blur(18px);
}

.site-header-inner {
  display: grid;
  grid-template-columns: minmax(140px, 1fr) minmax(0, auto) minmax(190px, 1fr);
  align-items: center;
  gap: 22px;
  width: min(100%, var(--max));
  min-height: 70px;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  color: var(--ink);
  font-size: 1.38rem;
  font-weight: 900;
  letter-spacing: -0.06em;
  text-decoration: none;
}

.site-header-inner > .brand {
  grid-column: 1;
  grid-row: 1;
}

.site-header .brand {
  transform-origin: left center;
}

.brand-word {
  position: relative;
  display: inline-flex;
  align-items: baseline;
  color: var(--ink);
  font-size: clamp(1.28rem, 1.8vw, 1.62rem);
  font-weight: 950;
  letter-spacing: -0.075em;
  line-height: 1;
}

.brand-word span {
  color: #cf4a1f;
}

.brand-word::after {
  position: absolute;
  right: 0.03em;
  bottom: -0.34em;
  left: 0.08em;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--ink), #cf4a1f);
  opacity: 0;
  transform: scaleX(0.38);
  transform-origin: left center;
  transition: opacity 180ms ease, transform 180ms ease;
  content: "";
}

.brand:hover .brand-word::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-shell {
  display: contents;
}

.nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-links {
  grid-column: 2;
  grid-row: 1;
  justify-content: center;
}

.nav-account {
  grid-column: 3;
  grid-row: 1;
  justify-content: flex-end;
  gap: 12px;
  padding-left: 52px;
}

.nav a,
.nav-form button {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: -0.02em;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
}

.nav a:hover,
.nav-form button:hover,
.text-link:hover {
  color: var(--muted-strong);
}

.nav-cta {
  min-height: 38px !important;
  padding: 0 16px !important;
  border-radius: 999px;
  background: var(--inverse) !important;
  color: #ffffff !important;
  text-transform: none !important;
}

.nav-profile {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-content: flex-start;
  width: 112px;
  height: 38px;
  min-height: 38px !important;
  padding: 0 12px !important;
  border: 1px solid var(--line) !important;
  border-radius: 999px;
  background: rgba(251, 250, 246, 0.62) !important;
  text-transform: none !important;
  cursor: pointer;
}

.nav-profile .fa-user {
  color: var(--ink);
  font-size: 0.9rem;
  line-height: 1;
}

.account-name {
  /* flex: 1 1 auto; */
  min-width: 0;
  max-width: 70px;
  overflow: hidden;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
  text-overflow: hidden;
  white-space: nowrap;
}

.account-menu {
  position: relative;
  z-index: 50;
}

.account-menu.is-open,
body.account-menu-open .account-menu {
  z-index: 80;
}

.account-menu.is-open .nav-profile,
.nav-profile:hover {
  border-color: rgba(7, 7, 7, 0.18) !important;
  background: rgba(255, 255, 255, 0.74) !important;
}

.account-panel {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  z-index: 80;
  display: grid;
  min-width: 174px;
  padding: 8px;
  border: 1px solid rgba(7, 7, 7, 0.08);
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(244, 240, 232, 0.78));
  box-shadow: var(--glass-shadow);
  backdrop-filter: blur(18px) saturate(1.08);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px) scale(0.98);
  transform-origin: top right;
  transition: opacity 160ms ease, transform 160ms ease;
}

.account-menu.is-open .account-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.account-panel a,
.account-panel button {
  width: 100%;
  min-height: 38px;
  justify-content: flex-start;
  padding: 0 10px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 0.8rem;
  font-weight: 850;
  text-align: left;
  text-decoration: none;
  text-transform: none;
  cursor: pointer;
}

.account-panel a:hover,
.account-panel button:hover {
  background: rgba(7, 7, 7, 0.06);
  color: var(--ink);
}

.notification-menu {
  position: relative;
}

.header-notification {
  grid-column: 3;
  grid-row: 1;
  justify-self: end;
  align-self: center;
  margin-right: 124px;
  z-index: 60;
}

body.account-menu-open .header-notification {
  z-index: 40;
}

body.notification-menu-open .header-notification {
  z-index: 90;
}

.notification-button {
  position: relative;
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(251, 250, 246, 0.68);
  color: var(--ink);
  cursor: pointer;
  backdrop-filter: blur(14px);
}

.notification-button .fa-bell {
  font-size: 0.95rem;
  line-height: 1;
}

.notification-button:hover,
.notification-menu.is-open .notification-button {
  border-color: rgba(7, 7, 7, 0.18);
  background: rgba(255, 255, 255, 0.74);
}

.notification-count {
  position: absolute;
  top: -5px;
  right: -5px;
  display: inline-grid;
  min-width: 19px;
  height: 19px;
  place-items: center;
  padding: 0 5px;
  border: 2px solid var(--surface);
  border-radius: 999px;
  background: #d94a27;
  color: #ffffff;
  font-size: 0.68rem;
  font-weight: 900;
  line-height: 1;
}

.notification-count.is-empty {
  display: none;
}

.notification-panel {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  z-index: 90;
  display: grid;
  width: min(380px, calc(100vw - 32px));
  max-height: 420px;
  overflow: hidden;
  border: 1px solid rgba(7, 7, 7, 0.12);
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(246, 242, 235, 0.94));
  box-shadow: 0 24px 70px rgba(28, 24, 19, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(24px) saturate(1.12);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px) scale(0.98);
  transform-origin: top right;
  transition: opacity 160ms ease, transform 160ms ease;
}

.notification-menu.is-open .notification-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.notification-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px;
  border-bottom: 1px solid rgba(7, 7, 7, 0.1);
  background: rgba(255, 255, 255, 0.48);
}

.notification-panel-head strong {
  font-size: 0.88rem;
  font-weight: 900;
}

.notification-panel-head button {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--muted-strong);
  font: inherit;
  font-size: 0.74rem;
  font-weight: 850;
  cursor: pointer;
}

.notification-list {
  display: grid;
  max-height: 340px;
  overflow: auto;
  gap: 6px;
  padding: 10px;
}

.notification-item,
.notification-empty {
  border-radius: 10px;
  padding: 12px 13px;
}

.notification-item {
  display: grid;
  gap: 6px;
  background: rgba(255, 255, 255, 0.5);
  color: inherit;
  text-decoration: none;
}

.notification-item:hover,
.notification-item:focus-visible {
  background: rgba(7, 7, 7, 0.055);
}

.notification-item.is-unread {
  background: rgba(217, 74, 39, 0.13);
}

.notification-item span {
  color: #655e55;
  font-size: 0.68rem;
  font-weight: 850;
  line-height: 1;
  text-transform: uppercase;
}

.notification-item strong {
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 850;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.notification-empty {
  color: var(--muted-strong);
  font-size: 0.84rem;
  font-weight: 750;
}

.nav-form {
  margin: 0;
}

.nav-toggle,
.nav-drawer-head,
.nav-backdrop {
  display: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.messages {
  width: min(100% - 32px, var(--max));
  margin: 16px auto 0;
}

.message {
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  color: var(--ink);
  font-weight: 750;
}

.motion-enabled .site-header .brand,
.motion-enabled .nav-links a,
.motion-enabled .nav-account > *,
.motion-enabled .hero-copy,
.motion-enabled .hero-action-rail,
.motion-enabled .hero-stage {
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 620ms ease,
    transform 620ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.motion-enabled .site-header .brand {
  transform: translateY(-8px) scale(0.98);
}

.motion-enabled.page-ready .site-header .brand,
.motion-enabled.page-ready .nav-links a,
.motion-enabled.page-ready .nav-account > *,
.motion-enabled.page-ready .hero-copy,
.motion-enabled.page-ready .hero-action-rail,
.motion-enabled.page-ready .hero-stage {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.motion-enabled.page-ready .nav-links a:nth-child(2) {
  transition-delay: 60ms;
}

.motion-enabled.page-ready .nav-links a:nth-child(3) {
  transition-delay: 120ms;
}

.motion-enabled.page-ready .nav-links a:nth-child(4) {
  transition-delay: 180ms;
}

.motion-enabled.page-ready .nav-account > * {
  transition-delay: 220ms;
}

.motion-enabled.page-ready .hero-copy {
  transition-delay: 120ms;
}

.motion-enabled.page-ready .hero-action-rail {
  transition-delay: 240ms;
}

.motion-enabled.page-ready .hero-stage {
  transition-delay: 320ms;
}

.motion-enabled .reveal-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 680ms ease,
    transform 680ms cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.motion-enabled .reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero {
  position: relative;
  width: min(100% - 32px, var(--max));
  min-height: calc(100svh - 70px);
  margin: 0 auto;
  padding: clamp(26px, 3.6vh, 38px) 0 18px;
  overflow: hidden;
}

.hero::before {
  position: absolute;
  right: 4%;
  bottom: 34px;
  left: 4%;
  height: 250px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(255, 255, 255, 0.72), transparent 68%);
  filter: blur(2px);
  content: "";
}

.hero::after {
  position: absolute;
  right: 12%;
  bottom: 0;
  left: 12%;
  height: 70px;
  background: linear-gradient(180deg, transparent, rgba(244, 240, 232, 0.96));
  content: "";
  z-index: 5;
}

.hero-ambient {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.ambient-ring {
  position: absolute;
  display: block;
  border: 1px solid rgba(7, 7, 7, 0.08);
  border-radius: 999px;
  animation: floatDrift 10s ease-in-out infinite;
}

.ambient-ring-one {
  top: 78px;
  left: 4%;
  width: 190px;
  height: 190px;
}

.ambient-ring-two {
  top: 182px;
  right: 5%;
  width: 260px;
  height: 260px;
  animation-delay: -4s;
}

.ambient-line {
  position: absolute;
  display: block;
  width: 220px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(7, 7, 7, 0.18), transparent);
  transform: rotate(-18deg);
  animation: shimmerLine 5.5s ease-in-out infinite;
}

.ambient-line-one {
  top: 205px;
  left: 14%;
  --angle: -18deg;
}

.ambient-line-two {
  top: 140px;
  right: 18%;
  --angle: 14deg;
  transform: rotate(var(--angle));
  animation-delay: -2s;
}

.hero-copy {
  position: relative;
  z-index: 6;
  max-width: 760px;
  animation: riseIn 700ms ease both;
}

.hero-copy.centered {
  margin: 0 auto;
  text-align: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--muted-strong);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(3rem, 6.2vw, 5.35rem);
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 0.9;
}

.hero h1 span {
  display: block;
  color: #c8c3bb;
}

.hero p {
  max-width: 590px;
  margin: 14px auto 0;
  color: #b1aca4;
  font-size: clamp(1rem, 1.7vw, 1.18rem);
  font-weight: 650;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 0;
}

.hero-actions.centered,
.hero-action-rail {
  justify-content: center;
}

.hero-action-rail {
  position: relative;
  z-index: 7;
  width: fit-content;
  max-width: 100%;
  margin: 20px auto 0;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 999px;
  background: rgba(244, 240, 232, 0.7);
  box-shadow: 0 18px 50px rgba(28, 24, 19, 0.12);
  backdrop-filter: blur(18px);
  animation: riseIn 760ms 160ms ease both;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 850;
  text-decoration: none;
}

.button-primary,
.button-primary.dark {
  border: 1px solid var(--inverse);
  background: var(--inverse);
  color: #ffffff;
  cursor: pointer;
}

.button:hover,
.filter-chip:hover,
.panel-topline a:hover {
  transform: translateY(-1px);
}

.button,
.filter-chip,
.panel-topline a {
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, color 160ms ease;
}

.button-secondary {
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.36);
  color: var(--ink);
}

.hero-stage {
  position: relative;
  z-index: 1;
  height: min(360px, 38svh);
  min-height: 318px;
  margin-top: clamp(20px, 3.5vh, 30px);
}

.hero-stage::before {
  position: absolute;
  inset: 0 0 auto;
  height: 260px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.76), transparent 64%);
  content: "";
}

.hero-panel {
  position: absolute;
  right: 50%;
  bottom: 18px;
  z-index: 3;
  display: grid;
  grid-template-columns: 168px minmax(0, 1fr);
  width: min(720px, calc(100% - 48px));
  min-height: 270px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 10px;
  background: rgba(250, 249, 245, 0.9);
  box-shadow: var(--shadow);
  transform: translateX(50%);
  backdrop-filter: blur(18px);
  animation: panelLift 850ms 220ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.hero-panel-sidebar {
  display: grid;
  align-content: start;
  gap: 9px;
  padding: 20px 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 38%),
    linear-gradient(180deg, #57544f, #24221f);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.76rem;
}

.hero-panel-sidebar strong {
  margin-bottom: 12px;
  color: #ffffff;
  font-size: 1rem;
  letter-spacing: -0.04em;
}

.hero-panel-sidebar span {
  display: flex;
  align-items: center;
  min-height: 32px;
  padding: 0 10px;
  border-radius: 999px;
}

.hero-panel-sidebar span:first-of-type {
  background: rgba(255, 255, 255, 0.11);
  color: #ffffff;
}

.hero-panel-main {
  display: grid;
  align-content: center;
  padding: 22px 26px;
}

.panel-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted-strong);
  font-size: 0.76rem;
  font-weight: 750;
}

.panel-topline a {
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--inverse);
  color: #ffffff;
  text-decoration: none;
}

.hero-panel h2 {
  max-width: 420px;
  margin: 14px 0 4px;
  font-size: clamp(1.3rem, 2.1vw, 1.8rem);
  letter-spacing: -0.05em;
  line-height: 1.02;
}

.hero-price {
  margin-bottom: 14px;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 850;
  letter-spacing: -0.06em;
}

.panel-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}

.panel-metrics div,
.detail-stats div {
  padding: 12px;
  border-radius: var(--radius);
  background: #f0ede6;
}

.panel-metrics span,
.detail-stats span {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 850;
  text-transform: uppercase;
}

.panel-metrics strong,
.detail-stats strong {
  color: var(--ink);
  font-size: 0.88rem;
}

.panel-bars {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  align-items: end;
  height: 54px;
  gap: 4px;
  padding-top: 8px;
  border-top: 1px solid var(--line);
}

.panel-bars span {
  display: block;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(180deg, #9d968b, #d8d3ca);
  transform-origin: bottom;
  animation: barPulse 2.8s ease-in-out infinite;
}

.panel-bars span:nth-child(2n) {
  animation-delay: -700ms;
}

.panel-bars span:nth-child(3n) {
  animation-delay: -1.3s;
}

.hero-side-image {
  position: absolute;
  bottom: -26px;
  z-index: 2;
  width: clamp(300px, 38vw, 520px);
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 28px 28px 0 0;
  filter: saturate(0.76) contrast(1.03);
  opacity: 0.9;
  transform: translateZ(0);
  animation: carReveal 900ms 280ms ease both;
}

.hero-side-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(244, 240, 232, 0.92));
  content: "";
}

.hero-side-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 700ms ease;
}

.hero:hover .hero-side-image img {
  transform: scale(1.075);
}

.hero-side-left {
  left: -128px;
}

.hero-side-right {
  right: -128px;
}

.trust-strip,
.section,
.site-footer {
  width: min(100% - 32px, var(--max));
  margin-right: auto;
  margin-left: auto;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.trust-strip div {
  min-height: 92px;
  padding: 18px;
  background: rgba(251, 250, 246, 0.62);
}

.trust-strip strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.18rem;
  letter-spacing: -0.04em;
}

.trust-strip span {
  color: var(--muted-strong);
  font-size: 0.9rem;
}

.section {
  padding: 68px 0;
}

.section-soft {
  width: 100%;
  max-width: none;
  padding-right: max(16px, calc((100% - var(--max)) / 2));
  padding-left: max(16px, calc((100% - var(--max)) / 2));
  background: rgba(235, 230, 220, 0.52);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}

.section-heading h2,
.page-band h1,
.auth-panel h1,
.detail-panel h1,
.sell-band h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.075em;
  line-height: 0.95;
}

.section-heading p:not(.eyebrow),
.page-band p:not(.eyebrow),
.sell-band p,
.auth-panel p,
.detail-panel p {
  color: var(--muted-strong);
  line-height: 1.55;
}

.text-link {
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 850;
  text-decoration: none;
  text-transform: uppercase;
}

.page-band {
  width: min(100% - 32px, var(--max));
  margin: 26px auto 0;
  padding: 68px 0 30px;
  text-align: center;
}

.page-band p:not(.eyebrow) {
  max-width: 560px;
  margin: 18px auto 0;
}

.toolbar {
  margin-bottom: 24px;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 26px;
}

.filter-chip {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(251, 250, 246, 0.52);
  color: var(--muted-strong);
  font-size: 0.8rem;
  font-weight: 800;
  text-decoration: none;
}

.filter-chip.active {
  border-color: var(--inverse);
  background: var(--inverse);
  color: #ffffff;
}

.auction-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 18px;
}

.auction-card,
.vehicle-card,
.empty-state,
.form-card,
.detail-panel {
  border: 1px solid rgba(7, 7, 7, 0.08);
  border-radius: var(--radius);
  background: var(--glass-bg);
  box-shadow: 0 1px 0 rgba(28, 24, 19, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.64);
  backdrop-filter: blur(18px) saturate(1.08);
  -webkit-backdrop-filter: blur(18px) saturate(1.08);
}

.auction-card {
  position: relative;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.auction-card::before,
.vehicle-card::before,
.detail-panel::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.62), transparent 42%),
    radial-gradient(circle at 18% 0%, rgba(255, 255, 255, 0.46), transparent 32%);
  opacity: 0.72;
  content: "";
}

.auction-card > *,
.vehicle-card > *,
.detail-panel > * {
  position: relative;
  z-index: 1;
}

.auction-card:hover,
.auction-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(7, 7, 7, 0.12);
  box-shadow: var(--glass-shadow);
}

.auction-card:focus-visible {
  outline: 3px solid rgba(7, 7, 7, 0.28);
  outline-offset: 4px;
}

.auction-card,
.vehicle-card,
.process-grid article,
.sell-band {
  animation: fadeUp 650ms ease both;
}

@supports (animation-timeline: view()) {
  .auction-card,
  .vehicle-card,
  .process-grid article,
  .sell-band {
    animation-timeline: view();
    animation-range: entry 0% cover 28%;
  }
}

.vehicle-media {
  position: relative;
  aspect-ratio: 16 / 10;
  background: var(--panel-muted);
}

.vehicle-media img,
.detail-media img,
.vehicle-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vehicle-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 7, 7, 0.02), rgba(7, 7, 7, 0.52));
  content: "";
}

.media-label,
.source-badge-media,
.auction-status {
  position: absolute;
  z-index: 1;
}

.media-label {
  top: 12px;
  left: 12px;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(251, 250, 246, 0.9);
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 900;
}

.source-badge,
.source-badge-inline {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--inverse);
  color: #ffffff;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0;
}

.source-badge {
  margin-top: 12px;
}

.source-badge-media {
  top: 0px;
  right: 12px;
  max-width: calc(100% - 82px);
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(7, 7, 7, 0.18);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.meta-row .source-badge-inline {
  background: var(--inverse);
  color: #ffffff;
}

.auction-status {
  right: 12px;
  bottom: 12px;
  left: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 38px;
  padding: 7px 11px;
  border-radius: 12px;
  color: #ffffff;
  font-size: 0.84rem;
  backdrop-filter: blur(18px) saturate(1.26) brightness(1.04);
  -webkit-backdrop-filter: blur(18px) saturate(1.26) brightness(1.04);
}

.countdown {
  color: #ffffff;
  font-weight: 900;
}

.countdown.is-normal {
  color: rgb(255, 174, 0);
}

.countdown.is-urgent {
  color: #b82411;
}

.auction-status strong {
  color: #ffffff;
  text-shadow: 0 1px 12px rgba(7, 7, 7, 0.5);
  white-space: nowrap;
}
.detail-stats .countdown {
  text-shadow: none;
}
.auction-body {
  padding: 17px;
}

.auction-body h2,
.auction-body h3,
.vehicle-card h2,
.vehicle-card h3,
.empty-state h2,
.empty-state h3,
.process-grid h3 {
  margin: 0 0 8px;
  font-size: 1.12rem;
  font-weight: 850;
  letter-spacing: -0.04em;
  line-height: 1.18;
}

.vehicle-card h2,
.vehicle-card h3 {
  max-width: 13rem;
  margin-bottom: 10px;
  font-size: 1.05rem;
  line-height: 1.12;
}

.auction-body p,
.vehicle-card p,
.empty-state p,
.process-grid p {
  margin: 0;
  color: var(--muted-strong);
  line-height: 1.45;
}

.vehicle-card p {
  font-size: 0.92rem;
  line-height: 1.42;
}

.meta-row,
.reserve-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.meta-row {
  margin-top: 14px;
}

.reserve-row {
  justify-content: flex-start;
  margin-top: 8px;
}

.meta-row span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 9px;
  border-radius: 999px;
  background: #ede8dd;
  color: var(--ink-soft);
  font-size: 0.76rem;
  font-weight: 850;
}

.reserve-row .reserve-chip {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 9px;
  border-radius: 999px;
  background: #ede8dd;
  color: var(--ink-soft);
  font-size: 0.76rem;
  font-weight: 850;
}

.vehicle-grid,
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 18px;
}

.vehicle-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(158px, 45%) minmax(0, 1fr);
  align-items: stretch;
  gap: 0;
  min-height: 190px;
  padding: 0;
  color: inherit;
  text-decoration: none;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.vehicle-card *,
.vehicle-card:hover *,
.vehicle-card:focus-visible * {
  text-decoration: none;
}

.vehicle-card:hover,
.vehicle-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(7, 7, 7, 0.12);
  box-shadow: var(--glass-shadow);
}

.vehicle-card:focus-visible {
  outline: 3px solid rgba(7, 7, 7, 0.28);
  outline-offset: 4px;
}

.vehicle-card-rich {
  min-height: 206px;
}

.vehicle-thumb {
  position: relative;
  display: grid;
  width: 100%;
  height: 100%;
  min-height: inherit;
  place-items: center;
  overflow: hidden;
  border-radius: 0;
  background: var(--inverse);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 850;
  text-transform: uppercase;
}

.vehicle-thumb::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 7, 7, 0.1), transparent 42%);
  content: "";
}

.vehicle-card > div:not(.vehicle-thumb) {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-width: 0;
  padding: 18px 20px;
}

.vehicle-card strong {
  display: block;
  margin-top: auto;
  padding-top: 18px;
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.vehicle-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(380px, 0.85fr);
  gap: 22px;
  width: min(100% - 32px, var(--max));
  margin: 42px auto 0;
}

.vehicle-gallery,
.vehicle-gallery-main,
.vehicle-gallery-strip img {
  border-radius: var(--radius);
}

.vehicle-gallery {
  display: grid;
  gap: 12px;
}

.vehicle-gallery-main {
  display: grid;
  min-height: 510px;
  place-items: center;
  overflow: hidden;
  background: var(--inverse);
  color: #ffffff;
  font-size: 2rem;
  font-weight: 900;
  box-shadow: var(--shadow-soft);
  text-transform: uppercase;
}

.vehicle-gallery-main img,
.vehicle-gallery-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vehicle-gallery-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(96px, 1fr));
  gap: 10px;
}

.vehicle-gallery-strip img {
  aspect-ratio: 4 / 3;
  background: var(--panel-muted);
}

.vehicle-spec-panel h1 {
  margin: 10px 0 0;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.spec-block {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.spec-block h2 {
  margin: 0 0 12px;
  font-size: 1rem;
  letter-spacing: -0.03em;
}

.process-grid article {
  min-height: 230px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(251, 250, 246, 0.58);
}

.process-grid span {
  display: inline-flex;
  margin-bottom: 42px;
  color: #beb7ac;
  font-size: 2.4rem;
  font-weight: 900;
  letter-spacing: -0.08em;
}

.sell-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(28px, 5vw, 54px);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(7, 7, 7, 0.85), rgba(7, 7, 7, 0.56)),
    url("../img/vehicles/toyota-prado.fb36372c9e7f.png");
  background-position: center;
  background-size: cover;
  color: #ffffff;
}

.sell-band .eyebrow,
.sell-band p {
  color: rgba(255, 255, 255, 0.72);
}

.sell-band h2 {
  color: #ffffff;
}

.empty-state {
  grid-column: 1 / -1;
  padding: 26px;
}

.auth-panel,
.auction-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 22px;
  width: min(100% - 32px, var(--max));
  margin: 42px auto 0;
}

.auth-panel {
  grid-template-columns: minmax(0, 1fr) 460px;
  align-items: start;
}

.form-card,
.detail-panel {
  padding: 24px;
  box-shadow: var(--glass-shadow);
}

.detail-panel {
  position: relative;
  overflow: hidden;
}

.detail-actions {
  display: flex;
  align-items: center;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(7, 7, 7, 0.1);
}

.detail-actions .button {
  width: fit-content;
  min-width: 166px;
}

.form-card {
  display: grid;
  gap: 15px;
}

.listing-panel {
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
}

.form-grid {
  display: grid;
  align-items: start;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px;
}

.form-field-full {
  grid-column: 1 / -1;
}

.form-card label,
.bid-form label {
  display: grid;
  align-self: start;
  gap: 7px;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 850;
}

.form-card input,
.form-card select,
.form-card textarea,
.input {
  width: 100%;
  min-height: 45px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.64);
  color: var(--ink);
  font: inherit;
}

.form-card select {
  height: 45px;
  max-height: 45px;
  align-self: start;
}

.input.input-invalid {
  border-color: rgba(157, 59, 47, 0.58);
  background: rgba(157, 59, 47, 0.06);
}

.bid-input-feedback {
  color: var(--danger) !important;
  font-weight: 750 !important;
}

.bid-input-feedback.is-valid {
  color: var(--muted-strong) !important;
}

.bid-form button:disabled {
  cursor: not-allowed;
  opacity: 0.52;
  transform: none;
}

.form-card input[type="file"] {
  padding: 10px 13px;
  background: rgba(255, 255, 255, 0.48);
}

.form-card textarea {
  min-height: 120px;
  padding-block: 12px;
  resize: vertical;
}

.form-card small,
.bid-form small {
  color: var(--muted-strong);
  font-weight: 550;
}

.errorlist {
  margin: 0;
  padding-left: 18px;
  color: var(--danger);
}

.detail-media {
  min-height: 520px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--panel-muted);
  box-shadow: var(--shadow-soft);
}

.detail-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 22px 0;
}

.bid-form {
  display: grid;
  gap: 14px;
}

.bid-list {
  display: grid;
  gap: 10px;
}

.bid-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(251, 250, 246, 0.72);
}

.bid-row span {
  color: var(--muted-strong);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 40px;
  padding: 34px 0 42px;
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 8px 0 0;
  color: var(--muted-strong);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  }

.site-footer a {
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 850;
  text-decoration: none;
}

@media (max-width: 900px) {
  body.nav-open {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    overscroll-behavior: none;
  }

  body.nav-open main,
  body.nav-open .site-footer {
    visibility: hidden;
  }

  .nav-open .site-header {
    z-index: 1200;
    background: var(--surface);
    backdrop-filter: none;
  }

  .site-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 0;
    min-height: 66px;
  }

  .header-notification {
    position: relative;
    z-index: 1300;
    margin-left: auto;
    margin-right: 0;
  }

  .header-notification .notification-button {
    width: 42px;
    height: 38px;
    border-radius: 999px;
  }

  .header-notification .notification-button::after {
    content: none;
  }

  .header-notification .notification-count {
    top: -5px;
    right: -5px;
  }

  .header-notification .notification-panel {
    position: fixed;
    top: 64px;
    right: 12px;
    left: 12px;
    z-index: 1301;
    width: auto;
    max-height: min(440px, calc(100vh - 84px));
    border-radius: 16px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px) scale(0.98);
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .header-notification.is-open .notification-panel {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .nav-toggle {
    position: relative;
    z-index: 1300;
    display: inline-grid;
    gap: 5px;
    width: 44px;
    height: 38px;
    place-content: center;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(251, 250, 246, 0.64);
    cursor: pointer;
  }

  .nav-toggle span:not(.sr-only) {
    display: block;
    width: 17px;
    height: 2px;
    border-radius: 999px;
    background: var(--ink);
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .nav-open .nav-toggle span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .nav-open .nav-toggle span:nth-child(2) {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .nav-backdrop {
    position: fixed;
    inset: 0;
    z-index: 1100;
    display: block;
    pointer-events: none;
    background: var(--surface);
    opacity: 0;
    transition: opacity 220ms ease;
  }

  .nav-open .nav-backdrop {
    pointer-events: auto;
    background: var(--surface);
    opacity: 1;
  }

  .nav-shell {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1150;
    display: flex;
    flex-direction: column;
    width: min(88vw, 360px);
    height: 100dvh;
    max-height: 100dvh;
    max-width: 360px;
    overflow: hidden;
    padding: 86px 20px 24px;
    border: 0;
    border-left: 1px solid rgba(7, 7, 7, 0.08);
    border-radius: 22px 0 0 22px;
    background:
      radial-gradient(circle at 76% 8%, rgba(255, 255, 255, 0.92), transparent 11rem),
      radial-gradient(circle at 10% 92%, rgba(196, 190, 177, 0.22), transparent 13rem),
      linear-gradient(180deg, #f7f4ed 0%, #eee9df 100%);
    box-shadow: none;
    isolation: isolate;
    transform: translateX(110%);
    transition: transform 320ms cubic-bezier(0.2, 0.8, 0.2, 1);
  }

  .nav-shell::before {
    position: absolute;
    inset: 0;
    z-index: -1;
    border-radius: inherit;
    background-image:
      linear-gradient(rgba(7, 7, 7, 0.035) 1px, transparent 1px),
      linear-gradient(90deg, rgba(7, 7, 7, 0.03) 1px, transparent 1px);
    background-size: 34px 34px;
    mask-image: linear-gradient(180deg, black, transparent 72%);
    content: "";
  }

  .nav-open .nav-shell {
    transform: translateX(0);
  }

  .nav-open .nav-links {
    padding-top: 4px;
  }

  .nav-drawer-head {
    display: none;
    align-items: center;
    justify-content: space-between;
    padding: 0 0 18px;
    border-bottom: 1px solid var(--line);
  }

  .nav-drawer-head .brand {
    visibility: hidden;
  }

  .drawer-close {
    min-height: 34px;
    padding: 0 12px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(251, 250, 246, 0.7);
    color: var(--ink);
    font: inherit;
    font-size: 0.76rem;
    font-weight: 850;
    cursor: pointer;
    text-transform: uppercase;
  }

  .nav-links,
  .nav-account {
    grid-column: auto;
    align-items: stretch;
    justify-content: flex-start;
    width: 100%;
  }

  .nav-links {
    display: grid;
    flex: 0 0 auto;
    align-content: start;
    gap: 8px;
    padding-top: 0;
    justify-items: stretch;
  }

  .nav-account {
    display: grid;
    flex: 0 0 auto;
    gap: 10px;
    margin-top: auto;
    padding-top: 16px;
    padding-left: 0;
    border-top: 1px solid var(--line);
    justify-items: stretch;
  }

  .nav a,
  .nav-form button {
    width: 100%;
    min-height: 52px;
    justify-content: flex-start;
    padding: 0 14px;
    border-radius: 14px;
    font-size: 1rem;
    letter-spacing: -0.05em;
  }

  .nav-links a {
    background: rgba(251, 250, 246, 0.86);
    border: 1px solid rgba(7, 7, 7, 0.08);
  }

  .nav-form {
    width: 100%;
  }

  .account-menu {
    display: grid;
    gap: 10px;
    width: 100%;
  }

  .account-panel {
    position: static;
    display: grid;
    gap: 10px;
    min-width: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .account-panel a,
  .account-panel button {
    min-height: 52px;
    padding: 0 14px;
    border-radius: 14px;
    font-size: 1rem;
    font-weight: 900;
    letter-spacing: -0.05em;
    text-transform: uppercase;
  }

  .account-panel a {
    display: none;
  }

  .account-panel button {
    background: transparent;
  }

  .nav-profile {
    display: inline-flex !important;
    width: 100%;
    height: auto;
    gap: 10px;
    min-height: 52px !important;
    justify-content: flex-start;
    padding: 10px 14px !important;
    border-radius: 14px !important;
    background: var(--inverse) !important;
    color: #ffffff !important;
  }

  .nav-profile::after {
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 900;
    content: "Profile";
    text-transform: uppercase;
  }

  .nav-profile .fa-user {
    color: #ffffff;
  }

  .nav-profile .account-name {
    display: none;
  }

  .nav-profile:hover,
  .account-menu.is-open .nav-profile {
    background: var(--inverse) !important;
  }

  .nav-links a:hover,
  .nav-form button:hover {
    background: rgba(7, 7, 7, 0.06);
    color: var(--ink);
  }

  .nav-cta {
    justify-content: center !important;
    min-height: 46px !important;
    padding: 0 18px !important;
    letter-spacing: -0.02em !important;
  }

  .hero-panel {
    grid-template-columns: 1fr;
    width: min(620px, 100%);
  }

  .hero-panel-sidebar {
    display: none;
  }

  .hero-side-image {
    width: 250px;
    opacity: 0.65;
  }

  .hero-side-left {
    left: -110px;
  }

  .hero-side-right {
    right: -110px;
  }

  .trust-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-heading,
  .sell-band,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .auth-panel,
  .auction-detail,
  .vehicle-detail {
    grid-template-columns: 1fr;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .vehicle-gallery-main {
    min-height: 360px;
  }

  .detail-media {
    min-height: 330px;
  }
}

@media (max-width: 560px) {
  .hero {
    display: flex;
    flex-direction: column;
    min-height: calc(100svh - 66px);
    padding-top: 28px;
    padding-bottom: 18px;
    overflow: hidden;
  }

  .hero h1 {
    font-size: clamp(3rem, 15vw, 4.25rem);
    line-height: 0.86;
  }

  .hero p {
    margin-top: 12px;
    font-size: 0.94rem;
    line-height: 1.4;
  }

  .hero::before {
    top: 220px;
    right: -20%;
    bottom: auto;
    left: -20%;
    height: 360px;
  }

  .hero::after {
    right: 0;
    bottom: 0;
    left: 0;
  }

  .hero-copy {
    order: 1;
  }

  .hero-action-rail {
    order: 2;
    margin-top: 16px;
  }

  .hero-action-rail .button {
    min-height: 38px;
    padding: 0 14px;
    font-size: 0.85rem;
    white-space: nowrap;
  }

  .hero-stage {
    order: 3;
    height: auto;
    min-height: 0;
    margin-top: 16px;
    padding: 12px 0 0;
  }

  .hero-stage::before {
    top: 0;
    height: 220px;
  }

  .hero-panel {
    position: relative;
    right: auto;
    bottom: auto;
    z-index: 4;
    grid-template-columns: 1fr;
    width: 100%;
    min-height: 0;
    border-radius: 14px;
    transform: none;
    animation-name: riseIn;
  }

  .hero-panel-sidebar {
    display: none;
  }

  .hero-panel-main {
    padding: 18px;
  }

  .hero-panel h2 {
    margin-top: 16px;
    font-size: 1.28rem;
    line-height: 1.04;
  }

  .hero-price {
    margin-bottom: 14px;
    font-size: clamp(2rem, 10.5vw, 2.65rem);
    line-height: 0.95;
  }

  .panel-topline {
    align-items: flex-start;
  }

  .panel-metrics {
    grid-template-columns: 1fr;
  }

  .panel-bars {
    height: 62px;
  }

  .hero-side-image {
    top: 0;
    bottom: auto;
    width: 210px;
    border-radius: 22px;
    opacity: 0.34;
    filter: saturate(0.65) contrast(1.05);
  }

  .hero-side-left {
    left: -92px;
  }

  .hero-side-right {
    right: -92px;
  }

  .detail-stats,
  .trust-strip {
    grid-template-columns: 1fr;
  }

  .auction-grid,
  .vehicle-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .vehicle-card {
    grid-template-columns: minmax(128px, 42%) minmax(0, 1fr);
    min-height: 176px;
  }

  .vehicle-thumb {
    width: 100%;
    height: 100%;
  }

  .vehicle-card > div:not(.vehicle-thumb) {
    padding: 15px 16px;
  }

  .vehicle-card h2,
  .vehicle-card h3 {
    font-size: 0.98rem;
  }

  .vehicle-card p {
    font-size: 0.86rem;
  }

}

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

  .motion-enabled .site-header .brand,
  .motion-enabled .nav-links a,
  .motion-enabled .nav-account > *,
  .motion-enabled .hero-copy,
  .motion-enabled .hero-action-rail,
  .motion-enabled .hero-stage,
  .motion-enabled .reveal-on-scroll {
    opacity: 1 !important;
    transform: none !important;
  }
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes panelLift {
  from {
    opacity: 0;
    transform: translateX(50%) translateY(28px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateX(50%) translateY(0) scale(1);
  }
}

@keyframes carReveal {
  from {
    opacity: 0;
    transform: translateY(34px) scale(0.97);
  }
  to {
    opacity: 0.9;
    transform: translateY(0) scale(1);
  }
}

@keyframes floatDrift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(0, -18px, 0) scale(1.04);
  }
}

@keyframes shimmerLine {
  0%,
  100% {
    opacity: 0.15;
    transform: translateX(-10px) rotate(var(--angle, -18deg));
  }
  50% {
    opacity: 0.55;
    transform: translateX(18px) rotate(var(--angle, -18deg));
  }
}

@keyframes barPulse {
  0%,
  100% {
    transform: scaleY(0.88);
    opacity: 0.72;
  }
  50% {
    transform: scaleY(1);
    opacity: 1;
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.vehicle-showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 18px;
}

.vehicle-showcase-card {
  display: grid;
  min-height: 420px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(251, 250, 246, 0.84);
  color: var(--ink);
  text-decoration: none !important;
  box-shadow: 0 1px 0 rgba(28, 24, 19, 0.04);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.vehicle-showcase-card *,
.vehicle-showcase-card:hover *,
.vehicle-showcase-card:focus-visible * {
  text-decoration: none !important;
}

.vehicle-showcase-card:hover,
.vehicle-showcase-card:focus-visible {
  border-color: rgba(7, 7, 7, 0.18);
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.vehicle-showcase-card:focus-visible {
  outline: 3px solid rgba(7, 7, 7, 0.28);
  outline-offset: 4px;
}

.vehicle-showcase-media {
  position: relative;
  display: grid;
  aspect-ratio: 16 / 10;
  place-items: center;
  overflow: hidden;
  background: var(--inverse);
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 900;
  text-transform: uppercase;
}

.vehicle-showcase-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 500ms ease;
}

.vehicle-showcase-card:hover .vehicle-showcase-media img {
  transform: scale(1.055);
}

.vehicle-showcase-media::after {
  position: absolute;
  inset: auto 0 0;
  height: 44%;
  background: linear-gradient(180deg, transparent, rgba(7, 7, 7, 0.42));
  content: "";
}

.vehicle-showcase-badge {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  max-width: calc(100% - 24px);
  padding: 0 11px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--inverse);
  color: #ffffff;
  font-size: 0.76rem;
  font-weight: 900;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.vehicle-showcase-body {
  display: grid;
  align-content: start;
  padding: 17px;
}

.vehicle-showcase-body h2,
.vehicle-showcase-body h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.18rem;
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.vehicle-showcase-body p {
  margin: 8px 0 0;
  color: var(--muted-strong);
  font-size: 0.9rem;
  line-height: 1.35;
}

.vehicle-showcase-specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 16px;
}

.vehicle-showcase-specs span {
  display: grid;
  gap: 2px;
  min-height: 50px;
  padding: 9px 10px;
  border-radius: var(--radius);
  background: #ede8dd;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 850;
  line-height: 1.1;
}

.vehicle-showcase-specs small {
  color: var(--muted-strong);
  font-size: 0.66rem;
  font-weight: 850;
  text-transform: uppercase;
}

.vehicle-showcase-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
  padding-top: 15px;
  border-top: 1px solid var(--line);
}

.vehicle-showcase-footer span {
  color: var(--muted-strong);
  font-size: 0.82rem;
  font-weight: 800;
}

.vehicle-showcase-footer strong {
  margin: 0;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 950;
  letter-spacing: -0.025em;
  white-space: nowrap;
}

@media (max-width: 560px) {
  .vehicle-showcase-grid {
    grid-template-columns: 1fr;
  }

  .vehicle-showcase-card {
    min-height: 0;
  }
}
