:root {
  --bg: #070b14;
  --bg-alt: #0e1424;
  --surface: rgba(16, 23, 40, 0.72);
  --surface-strong: rgba(20, 28, 48, 0.92);
  --surface-soft: rgba(255, 255, 255, 0.04);
  --text: #f2f5fb;
  --muted: #98a6c0;
  --line: rgba(255, 255, 255, 0.1);
  --accent: #7dc5ff;
  --accent-2: #ffd27d;
  --accent-3: #8f82ff;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
  --radius-xl: 36px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --font-display: "Aptos Display", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Aptos", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: var(--font-body);
  background:
    radial-gradient(circle at 14% 18%, rgba(125, 197, 255, 0.18), transparent 24%),
    radial-gradient(circle at 84% 10%, rgba(255, 210, 125, 0.12), transparent 22%),
    radial-gradient(circle at 50% 100%, rgba(143, 130, 255, 0.14), transparent 22%),
    linear-gradient(180deg, #070b14 0%, #09101c 38%, #0d1423 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(circle at center, black 54%, transparent 100%);
  opacity: 0.34;
}

body::after {
  content: "";
  position: fixed;
  inset: -20% 0 auto;
  height: 120%;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 20%, rgba(125, 197, 255, 0.16), transparent 28%),
    radial-gradient(circle at 80% 30%, rgba(255, 210, 125, 0.12), transparent 24%);
  filter: blur(24px);
  opacity: 0.72;
  transform: translate3d(0, calc(var(--scroll-shift, 0px)), 0);
}

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

img {
  display: block;
  max-width: 100%;
}

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(125, 197, 255, 0.38);
  outline-offset: 3px;
}

.container {
  width: min(1220px, calc(100% - 40px));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  top: -48px;
  left: 20px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 999px;
  background: #fff;
  color: #09101c;
  transition: top 180ms ease;
}

.skip-link:focus {
  top: 16px;
}

.page-backdrop {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 20%, rgba(125, 197, 255, 0.18), transparent 20%),
    radial-gradient(circle at 80% 10%, rgba(255, 210, 125, 0.08), transparent 18%);
  filter: blur(18px);
  opacity: 0.72;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(20px);
  background: rgba(7, 11, 20, 0.68);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-shell {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  color: white;
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(125, 197, 255, 0.2), rgba(143, 130, 255, 0.28));
  box-shadow: var(--shadow);
}

.brand-mark svg {
  width: 30px;
  height: 30px;
}

.brand strong {
  display: block;
  font-size: 1rem;
  letter-spacing: 0.02em;
}

.brand small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
}

.nav-links a {
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transition: transform 180ms ease;
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-cta,
.button,
.step-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.nav-cta,
.button-primary,
.step-link {
  color: #08101d;
  background: linear-gradient(135deg, #fff 0%, #d8efff 38%, #b6d8ff 100%);
  box-shadow: 0 18px 40px rgba(125, 197, 255, 0.18);
}

.button-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.12);
}

.nav-cta:hover,
.button:hover,
.step-link:hover {
  transform: translateY(-1px);
}

.hero {
  padding: 56px 0 36px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.95fr);
  gap: 34px;
  align-items: center;
}

.hero-copy h1,
.section-head h1,
.section-head h2,
.review-intro h2,
.sync-card h3,
.cta-panel h2,
.contact-intro h1,
.inventory-hero h1 {
  font-family: var(--font-display);
  letter-spacing: -0.04em;
  line-height: 0.98;
}

.hero-copy h1,
.contact-intro h1,
.inventory-hero h1 {
  margin: 0;
  font-size: clamp(3.4rem, 5.8vw, 6.2rem);
  max-width: 11ch;
}

.hero-text,
.section-head p,
.review-intro p,
.sync-card p,
.feature-list p,
.contact-intro p,
.inventory-hero p,
.location-panel p,
.contact-form label,
.contact-method span,
.vehicle-body p,
.modal-description,
.legal-shell p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 1.04rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  color: #0b1220;
  background: linear-gradient(135deg, #d7f0ff, #f2dca2);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-actions,
.cta-actions,
.modal-actions,
.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-badges {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-badges li {
  padding: 12px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.24);
}

.hero-stage {
  position: relative;
  min-height: 660px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  isolation: isolate;
  perspective: 1200px;
  background:
    radial-gradient(circle at 30% 20%, rgba(125, 197, 255, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.hero-stage-ambient {
  position: absolute;
  inset: -10%;
  background:
    radial-gradient(circle at 28% 20%, rgba(125, 197, 255, 0.22), transparent 26%),
    radial-gradient(circle at 72% 16%, rgba(255, 210, 125, 0.16), transparent 24%),
    radial-gradient(circle at 50% 82%, rgba(143, 130, 255, 0.16), transparent 28%);
  filter: blur(16px);
}

.hero-frame {
  position: absolute;
  inset: 24px 24px 120px;
  border-radius: 30px;
  overflow: hidden;
  transform-style: preserve-3d;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.32);
}

.hero-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  filter: saturate(0.94) contrast(1.02) brightness(0.88);
}

.hero-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 11, 20, 0.08) 0%, rgba(7, 11, 20, 0.08) 38%, rgba(7, 11, 20, 0.88) 100%),
    linear-gradient(110deg, rgba(125, 197, 255, 0.18), transparent 34%);
}

.hero-frame-overlay {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  display: grid;
  gap: 6px;
}

.hero-frame-overlay p {
  margin: 0;
  color: rgba(242, 245, 251, 0.72);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.76rem;
}

.hero-frame-overlay strong {
  font-size: clamp(1.4rem, 2.4vw, 2.3rem);
  line-height: 1.05;
}

.hero-float {
  position: absolute;
  z-index: 2;
  padding: 16px 18px;
  border-radius: 22px;
  background: rgba(9, 15, 28, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(14px);
}

.hero-float-a {
  top: 22px;
  right: 22px;
  max-width: 260px;
}

.hero-float-b {
  left: 22px;
  bottom: 22px;
  max-width: 260px;
}

.hero-float-c {
  right: 24px;
  bottom: 158px;
  max-width: 250px;
}

.float-label {
  display: block;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  color: var(--muted);
}

.hero-stage .intro-shutter {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: #05070d;
  transform-origin: center;
  transition: transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-stage .intro-shutter-left {
  clip-path: polygon(0 0, 50% 0, 42% 100%, 0 100%);
}

.hero-stage .intro-shutter-right {
  clip-path: polygon(50% 0, 100% 0, 100% 100%, 58% 100%);
}

.is-intro-complete .hero-stage .intro-shutter-left {
  transform: translateX(-102%);
}

.is-intro-complete .hero-stage .intro-shutter-right {
  transform: translateX(102%);
}

.ticker-section {
  margin-top: 12px;
}

.ticker {
  overflow: hidden;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.ticker-track {
  display: flex;
  align-items: center;
  gap: 24px;
  width: max-content;
  white-space: nowrap;
  animation: ticker 26s linear infinite;
}

.ticker-track span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #eef4ff;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.76rem;
}

.section {
  padding: 96px 0;
  position: relative;
}

.section-dark {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
}

.section-contrast {
  background:
    radial-gradient(circle at 15% 20%, rgba(125, 197, 255, 0.08), transparent 20%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.02));
}

.section-cta {
  padding-top: 0;
}

.section-head {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr) auto;
  gap: 18px 26px;
  align-items: end;
  margin-bottom: 28px;
}

.section-head h1,
.section-head h2,
.review-intro h2,
.sync-card h3,
.cta-panel h2 {
  margin: 12px 0 0;
  font-size: clamp(2.3rem, 4vw, 4rem);
  max-width: 12ch;
}

.text-link {
  color: #d2e8ff;
  white-space: nowrap;
}

.story-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1fr);
  gap: 32px;
  align-items: start;
}

.story-stage {
  position: sticky;
  top: 110px;
  min-height: 78vh;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.scene-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(18px) scale(0.98);
  transition:
    opacity 700ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.scene-slide.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
  z-index: 2;
}

.scene-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.02) brightness(0.88);
}

.scene-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 11, 20, 0.06) 0%, rgba(7, 11, 20, 0.22) 40%, rgba(7, 11, 20, 0.92) 100%),
    linear-gradient(120deg, rgba(125, 197, 255, 0.12), transparent 28%);
}

.scene-slide figcaption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  padding: 18px 20px;
  border-radius: 24px;
  background: rgba(10, 16, 30, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}

.scene-label {
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.74rem;
  color: var(--accent);
}

.scene-slide strong {
  display: block;
  font-size: clamp(1.4rem, 2vw, 2rem);
  line-height: 1.1;
}

.scene-slide span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
}

.story-copy {
  display: grid;
  gap: 20px;
}

.story-step {
  padding: 22px 22px 24px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.18);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background 220ms ease;
}

.story-step.is-active {
  transform: translateY(-2px);
  border-color: rgba(125, 197, 255, 0.3);
  background: linear-gradient(180deg, rgba(125, 197, 255, 0.08), rgba(255, 255, 255, 0.04));
}

.step-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  margin-bottom: 14px;
  color: #08101d;
  font-weight: 800;
  background: linear-gradient(135deg, #fff, #b6d8ff);
}

.story-step h3 {
  margin: 0 0 10px;
  font-size: 1.4rem;
}

.story-step p {
  margin: 0 0 18px;
}

.step-link {
  border: 0;
  font-size: 0.95rem;
}

.inventory-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.36fr) minmax(0, 1fr);
  gap: 28px;
}

.inventory-rail {
  display: grid;
  gap: 18px;
  align-content: start;
  position: sticky;
  top: 112px;
  height: fit-content;
}

.rail-panel,
.glass-panel,
.sync-card,
.cta-panel,
.contact-glass,
.location-panel,
.review-card,
.review-stat,
.vehicle-card,
.contact-method,
.legal-shell,
.modal-copy {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px);
}

.rail-panel {
  border-radius: var(--radius-lg);
  padding: 20px;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.filter-chip {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 700;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.filter-chip:hover,
.filter-chip.is-active {
  transform: translateY(-1px);
  background: linear-gradient(135deg, rgba(125, 197, 255, 0.16), rgba(255, 255, 255, 0.08));
  border-color: rgba(125, 197, 255, 0.28);
}

.rail-sync {
  border-radius: var(--radius-lg);
  padding: 22px;
}

.inventory-main {
  min-width: 0;
}

.inventory-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.inventory-preview {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.inventory-full {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.vehicle-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.vehicle-card:hover {
  transform: translateY(-4px);
  border-color: rgba(125, 197, 255, 0.22);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

.vehicle-media {
  position: relative;
  aspect-ratio: 1.26;
  overflow: hidden;
}

.vehicle-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  filter: saturate(0.94) contrast(1.02) brightness(0.9);
  transition: transform 300ms ease;
}

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

.vehicle-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 0%, rgba(7, 11, 20, 0.06) 54%, rgba(7, 11, 20, 0.92) 100%),
    linear-gradient(120deg, rgba(125, 197, 255, 0.14), transparent 30%);
}

.vehicle-badges {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.vehicle-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #08101d;
  background: linear-gradient(135deg, #fff, #d8efff);
}

.vehicle-body {
  padding: 20px 20px 22px;
}

.vehicle-kicker {
  margin: 0 0 10px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.74rem;
  font-weight: 800;
}

.vehicle-body h3 {
  margin: 0;
  font-size: 1.28rem;
  line-height: 1.12;
}

.vehicle-price {
  margin: 14px 0 0;
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
}

.vehicle-specs,
.spec-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 10px;
  margin: 18px 0 0;
}

.vehicle-specs div,
.spec-list div {
  display: grid;
  gap: 3px;
}

.vehicle-specs dt,
.spec-list dt {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.7rem;
}

.vehicle-specs dd,
.spec-list dd {
  margin: 0;
  font-size: 0.98rem;
}

.vehicle-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.review-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 0.95fr);
  gap: 24px;
  align-items: start;
}

.review-highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.review-stat,
.review-card {
  border-radius: var(--radius-lg);
}

.review-stat {
  padding: 18px;
}

.review-stat strong {
  display: block;
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1;
}

.review-stat span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}

.review-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.review-card {
  padding: 22px;
}

.review-stars {
  color: #ffd66e;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
}

.review-card p {
  margin: 0 0 18px;
  font-size: 1.02rem;
}

.feature-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.feature-list article {
  padding: 18px 18px 18px 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.feature-list h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.8fr);
  gap: 28px;
  align-items: start;
}

.sync-card {
  border-radius: var(--radius-lg);
  padding: 24px;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 18px 0 22px;
  display: grid;
  gap: 12px;
}

.checklist li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
}

.checklist li::before {
  content: "✦";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
}

.cta-panel {
  border-radius: var(--radius-xl);
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 24px 0 30px;
}

.trust-strip > div {
  padding: 16px 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-strip strong,
.trust-value {
  display: block;
  font-size: 1.22rem;
  font-weight: 800;
}

.trust-strip span {
  color: var(--muted);
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 0 42px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

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

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--muted);
}

.site-footer {
  position: relative;
  margin-top: 10px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.02));
}

.vehicle-modal {
  width: min(1100px, calc(100% - 28px));
  border: 0;
  padding: 0;
  background: transparent;
  position: relative;
}

.vehicle-modal::backdrop {
  background: rgba(4, 7, 14, 0.72);
  backdrop-filter: blur(8px);
}

.modal-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.86fr);
  gap: 0;
  overflow: hidden;
  border-radius: 30px;
}

.modal-media {
  min-height: 100%;
  background: #08101d;
}

.modal-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-copy {
  padding: 28px;
}

.modal-copy h3 {
  margin: 12px 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.02;
}

.modal-price {
  margin: 14px 0 0;
  font-size: 1.45rem;
  font-weight: 800;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.contact-section {
  padding-top: 72px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.88fr);
  gap: 24px;
}

.contact-intro {
  grid-column: 1 / 2;
  padding-right: 12px;
}

.contact-panel,
.contact-side {
  display: grid;
  gap: 18px;
}

.contact-glass {
  border-radius: var(--radius-xl);
  padding: 24px;
}

.contact-form {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--text);
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.contact-form textarea {
  resize: vertical;
  min-height: 140px;
}

.contact-methods {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.contact-method {
  border-radius: 22px;
  padding: 18px;
  display: grid;
  gap: 8px;
}

.contact-method strong {
  font-size: 1.02rem;
}

.location-panel {
  border-radius: var(--radius-xl);
  padding: 24px;
}

.hours-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 22px;
  display: grid;
  gap: 8px;
  color: var(--muted);
}

.map-frame {
  min-height: 360px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.16) contrast(1.05) saturate(0.72);
}

.legal-body {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px 0;
}

.legal-shell {
  width: min(760px, calc(100% - 32px));
  padding: 28px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.legal-shell h1 {
  margin: 12px 0 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 680ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 680ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

@keyframes ticker {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 1180px) {
  .hero-grid,
  .story-layout,
  .review-layout,
  .split-grid,
  .contact-layout,
  .inventory-layout,
  .modal-grid {
    grid-template-columns: 1fr;
  }

  .story-stage,
  .inventory-rail {
    position: static;
  }

  .review-grid,
  .inventory-grid,
  .inventory-preview,
  .inventory-full,
  .contact-methods,
  .trust-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-head {
    grid-template-columns: 1fr;
  }

  .cta-panel {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 24px, 1220px);
  }

  .nav-shell {
    min-height: 76px;
  }

  .nav-links {
    display: none;
  }

  .hero,
  .section {
    padding: 72px 0;
  }

  .hero-grid,
  .contact-layout,
  .story-layout,
  .inventory-layout,
  .review-layout,
  .split-grid,
  .modal-grid {
    gap: 22px;
  }

  .hero-copy h1,
  .contact-intro h1,
  .inventory-hero h1 {
    font-size: clamp(2.7rem, 12vw, 4.2rem);
  }

  .hero-stage {
    min-height: 520px;
  }

  .hero-frame {
    inset: 18px 18px 96px;
  }

  .hero-float-a,
  .hero-float-b,
  .hero-float-c {
    position: static;
    margin-top: 12px;
    max-width: none;
  }

  .hero-stage {
    display: grid;
    gap: 12px;
    padding: 18px;
  }

  .hero-frame,
  .story-stage,
  .map-frame {
    min-height: 320px;
  }

  .inventory-grid,
  .inventory-preview,
  .inventory-full,
  .review-grid,
  .review-highlights,
  .contact-methods,
  .trust-strip {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .ticker-track {
    animation: none;
  }
}