:root {
  --midnight: #0b1d34;
  --steel: #1e3a5f;
  --silver: #8d97a6;
  --pearl: #f4f6f8;
  --champagne: #d9c8b2;
  --orange: #f59d00;
  --white: #ffffff;
  --ink: #111827;
  --shadow: 0 24px 70px rgba(11, 29, 52, 0.16);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--pearl);
  line-height: 1.6;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
  padding: 24px 56px;
  transition: background 220ms ease, padding 220ms ease, border-color 220ms ease;
}

.site-header.is-scrolled {
  padding-block: 14px;
  background: rgba(11, 29, 52, 0.82);
  border-bottom: 1px solid rgba(244, 246, 248, 0.08);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: 100%;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  color: var(--white);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0;
}

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

.brand span::before {
  content: "";
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: var(--orange);
  box-shadow: 0 0 0 7px rgba(245, 157, 0, 0.16);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
}

.nav-links a {
  transition: color 180ms ease;
}

.nav-links a:hover {
  color: var(--white);
}

.nav-cta {
  padding: 11px 18px;
  color: var(--midnight) !important;
  background: var(--orange);
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 14px 35px rgba(245, 157, 0, 0.28);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background: var(--white);
}

.hero {
  position: relative;
  height: 96vh;
  min-height: 680px;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  background: linear-gradient(135deg, var(--midnight), var(--steel));
}

.hero-video,
.hero-fallback,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-video {
  z-index: 1;
  object-fit: cover;
  object-position: center bottom;
}

.hero-fallback {
  z-index: 0;
  background: linear-gradient(135deg, var(--midnight) 0%, var(--steel) 58%, #152943 100%);
}

.hero-overlay {
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(11, 29, 52, 0.88) 0%, rgba(11, 29, 52, 0.58) 52%, rgba(11, 29, 52, 0.3) 100%),
    linear-gradient(180deg, rgba(11, 29, 52, 0.18) 0%, rgba(11, 29, 52, 0.42) 100%);
}

.hero-content {
  position: relative;
  z-index: 4;
  width: min(620px, calc(100% - 112px));
  margin: 0;
  padding-top: clamp(230px, 34vh, 330px);
  margin-left: 56px;
  color: var(--white);
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(4rem, 9vw, 7.8rem);
  line-height: 0.9;
  letter-spacing: 0;
}

.hero-subtitle {
  max-width: 660px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.05rem, 2vw, 1.45rem);
  font-weight: 300;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.cta-actions {
  justify-content: center;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 14px 22px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--midnight);
  background: var(--orange);
  box-shadow: 0 18px 42px rgba(245, 157, 0, 0.32);
}

.button-secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.button-ghost {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
}

.orange-intro {
  margin: -1px 0 0;
  padding: 74px 0 88px;
  color: var(--midnight);
  background: var(--orange);
}

.section-inner {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.orange-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.72fr);
  gap: 44px;
  align-items: center;
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.16)),
    rgba(217, 200, 178, 0.18);
  box-shadow: 0 28px 80px rgba(11, 29, 52, 0.18);
  backdrop-filter: blur(14px);
}

.orange-copy .section-kicker {
  color: rgba(11, 29, 52, 0.78);
}

.orange-copy h2 {
  color: #071426;
}

.orange-copy h2,
.section-heading h2,
.cta-shell h2 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.orange-copy p:not(.section-kicker),
.section-heading p,
.cta-shell > p {
  max-width: 620px;
  margin: 20px 0 0;
  color: rgba(11, 29, 52, 0.7);
  font-size: 1.06rem;
}

.quick-points {
  display: grid;
  gap: 12px;
}

.quick-points span {
  display: flex;
  align-items: center;
  min-height: 58px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.24)),
    rgba(255, 255, 255, 0.22);
  box-shadow: 0 18px 45px rgba(11, 29, 52, 0.12);
  backdrop-filter: blur(14px);
  color: #071426;
  font-weight: 800;
}

.section-light {
  padding: 96px 0;
  background: var(--pearl);
}

.section-heading {
  margin-bottom: 40px;
}

.section-heading .section-kicker {
  color: var(--orange);
}

.section-heading.centered {
  text-align: center;
}

.section-heading.centered h2,
.section-heading.centered p {
  margin-inline: auto;
}

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

.feature-card,
.step-card,
.vehicle-showcase,
.cta-shell {
  border: 1px solid rgba(30, 58, 95, 0.08);
  box-shadow: var(--shadow);
}

.feature-card,
.step-card {
  min-height: 250px;
  padding: 28px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
}

.card-icon {
  display: block;
  width: 42px;
  height: 42px;
  margin-bottom: 34px;
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(245, 157, 0, 0.95), rgba(217, 200, 178, 0.95)),
    var(--orange);
  box-shadow: 0 15px 34px rgba(245, 157, 0, 0.28);
}

.feature-card h3,
.step-card h3 {
  margin: 0 0 12px;
  color: var(--midnight);
  font-size: 1.08rem;
  line-height: 1.2;
}

.feature-card p,
.step-card p {
  margin: 0;
  color: rgba(11, 29, 52, 0.64);
}

.vehicles {
  padding-top: 44px;
}

.vehicle-showcase {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 18px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.74);
}

.vehicle-slot {
  position: relative;
  aspect-ratio: 1080 / 700;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 20px;
  background:
    linear-gradient(145deg, rgba(11, 29, 52, 0.9), rgba(30, 58, 95, 0.84)),
    var(--steel);
}

.vehicle-slot::before {
  content: "";
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(244, 246, 248, 0.14);
  border-radius: 16px;
}

.vehicle-slot::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 42%;
  width: 96px;
  height: 32px;
  border: 2px solid rgba(245, 157, 0, 0.9);
  border-top-left-radius: 36px;
  border-top-right-radius: 50px;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  transform: translate(-50%, -50%);
  opacity: 0.88;
}

.vehicle-slot img {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.vehicle-slot img.is-missing {
  display: none;
}

.vehicle-slot figcaption {
  position: absolute;
  left: 50%;
  bottom: 18px;
  z-index: 3;
  min-width: 128px;
  padding: 12px 18px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(11, 29, 52, 0.68);
  backdrop-filter: blur(12px);
  text-align: center;
  transform: translateX(-50%);
  font-weight: 800;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
}

.how-it-works {
  padding: 96px 0;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 18%, rgba(245, 157, 0, 0.16), transparent 30%),
    linear-gradient(135deg, var(--midnight), var(--steel));
}

.how-it-works .section-heading h2 {
  color: var(--white);
}

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

.step-card {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
}

.step-card span {
  display: inline-flex;
  margin-bottom: 44px;
  color: var(--orange);
  font-weight: 900;
}

.step-card h3 {
  color: var(--white);
}

.step-card p {
  color: rgba(255, 255, 255, 0.66);
}

.final-cta {
  padding: 112px 0;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 18%, rgba(245, 157, 0, 0.18), transparent 28%),
    linear-gradient(180deg, var(--steel), var(--midnight));
}

.cta-shell {
  width: min(1180px, calc(100% - 48px));
  padding: clamp(34px, 6vw, 78px);
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.045)),
    rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(18px);
  text-align: center;
}

.cta-shell .section-kicker,
.cta-shell h2 {
  color: var(--white);
}

.cta-shell > p {
  margin-inline: auto;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.02rem, 2vw, 1.22rem);
}

.cta-shell h2 {
  max-width: 880px;
  margin-inline: auto;
}

.price-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 34px auto 0;
  max-width: 900px;
}

.price-highlights span,
.price-highlights strong {
  display: flex;
  min-height: 88px;
  align-items: center;
  justify-content: center;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.88);
  font-size: 1rem;
  font-weight: 800;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.16);
}

.price-highlights strong {
  color: var(--midnight);
  background: var(--orange);
  box-shadow: 0 22px 55px rgba(245, 157, 0, 0.24);
}

.cta-note {
  max-width: 720px !important;
  margin-top: 24px !important;
  color: rgba(255, 255, 255, 0.7) !important;
}

.contact-lines {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.75);
}

.instagram-link {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
  backdrop-filter: blur(12px);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.instagram-link:hover {
  transform: translateY(-2px);
  border-color: rgba(245, 157, 0, 0.54);
  background: rgba(255, 255, 255, 0.12);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 26px 24px;
  color: rgba(255, 255, 255, 0.58);
  background: #071426;
  font-size: 0.9rem;
}

.site-footer p {
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

@media (max-width: 980px) {
  .site-header {
    padding: 22px 28px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 8px);
    left: 28px;
    right: 28px;
    display: grid;
    gap: 6px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 22px;
    background: rgba(11, 29, 52, 0.94);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(18px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .nav-links.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links a {
    padding: 12px 14px;
    border-radius: 14px;
  }

  .nav-cta {
    text-align: center;
  }

  .hero {
    height: 94vh;
    min-height: 660px;
  }

  .hero-video {
    object-position: center bottom;
  }

  .hero-content {
    width: min(620px, calc(100% - 64px));
    margin-left: 28px;
    padding-top: clamp(185px, 29vh, 260px);
  }

  .hero h1 {
    font-size: clamp(4rem, 12vw, 6.8rem);
  }

  .orange-grid {
    gap: 24px;
    padding: 34px;
    border-radius: 26px;
  }

  .orange-grid,
  .benefit-grid,
  .vehicle-showcase,
  .price-highlights,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .step-card {
    min-height: auto;
  }

  .vehicle-showcase {
    gap: 14px;
  }

  .cta-shell {
    width: min(100% - 40px, 1180px);
  }

}

@media (max-width: 768px) {
  .site-header {
    padding: 20px;
  }

  .site-header.is-scrolled {
    padding-block: 14px;
  }

  .nav-links {
    left: 20px;
    right: 20px;
    max-height: calc(100vh - 94px);
    overflow-y: auto;
  }

  .hero {
    height: 94vh;
    min-height: 640px;
  }

  .hero-video {
    object-position: center bottom;
  }

  .hero-content {
    width: calc(100% - 40px);
    margin-left: 20px;
    padding-top: clamp(155px, 23vh, 200px);
  }

  .section-inner {
    width: min(100% - 40px, 1180px);
  }

  .hero h1 {
    font-size: clamp(3.1rem, 15vw, 4.8rem);
    line-height: 0.95;
  }

  .hero-subtitle {
    max-width: 29rem;
    margin-top: 20px;
    font-size: 1rem;
    line-height: 1.55;
  }

  .button,
  .hero-actions,
  .cta-actions {
    width: 100%;
  }

  .hero-actions,
  .cta-actions {
    gap: 10px;
    margin-top: 26px;
  }

  .price-highlights span,
  .price-highlights strong {
    min-height: 72px;
  }

  .button {
    min-height: 52px;
    padding-inline: 18px;
  }

  .orange-intro,
  .section-light,
  .how-it-works,
  .final-cta {
    padding-block: 68px;
  }

  .orange-grid {
    width: min(100% - 40px, 1180px);
    padding: 26px;
    gap: 22px;
    border-radius: 24px;
  }

  .orange-copy h2,
  .section-heading h2,
  .cta-shell h2 {
    font-size: clamp(1.85rem, 8vw, 2.55rem);
    line-height: 1.1;
  }

  .orange-copy p:not(.section-kicker),
  .section-heading p,
  .cta-shell > p {
    font-size: 1rem;
    line-height: 1.6;
  }

  .quick-points span {
    min-height: 54px;
    padding: 15px 16px;
  }

  .section-heading {
    margin-bottom: 28px;
  }

  .feature-card,
  .step-card {
    padding: 24px;
    border-radius: 22px;
  }

  .card-icon {
    margin-bottom: 24px;
  }

  .vehicle-showcase {
    padding: 10px;
    border-radius: 22px;
  }

  .vehicle-slot {
    border-radius: 18px;
  }

  .vehicle-slot figcaption {
    bottom: 14px;
    min-width: 112px;
    padding: 10px 16px;
  }

  .steps-grid {
    gap: 14px;
  }

  .step-card span {
    margin-bottom: 28px;
  }

  .cta-shell {
    width: min(100% - 40px, 1180px);
    padding: 30px 22px;
    border-radius: 26px;
  }

  .price-highlights {
    gap: 10px;
    margin-top: 26px;
  }

  .instagram-link {
    width: min(100%, 320px);
  }

  .site-footer {
    flex-direction: column;
    padding-inline: 20px;
  }
}

@media (max-width: 480px) {
  .site-header {
    padding: 16px 20px;
  }

  .brand {
    font-size: 1.18rem;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
  }

  .hero {
    height: 92vh;
    min-height: 600px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(11, 29, 52, 0.9) 0%, rgba(11, 29, 52, 0.68) 62%, rgba(11, 29, 52, 0.46) 100%),
      linear-gradient(180deg, rgba(11, 29, 52, 0.14) 0%, rgba(11, 29, 52, 0.36) 100%);
  }

  .hero-content {
    padding-top: clamp(140px, 22vh, 180px);
  }

  .hero h1 {
    font-size: clamp(2.8rem, 17vw, 4rem);
  }

  .hero-subtitle {
    font-size: 0.96rem;
  }

  .orange-grid {
    padding: 22px;
  }

  .section-light,
  .how-it-works,
  .final-cta {
    padding-block: 60px;
  }

  .feature-card,
  .step-card {
    padding: 22px;
  }

  .vehicle-showcase {
    padding: 8px;
  }

  .price-highlights span,
  .price-highlights strong {
    min-height: 66px;
    padding: 15px;
  }

  .cta-shell {
    padding: 28px 20px;
  }
}

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