/* === TOKENS === */
:root {
  --bg: #0B0D0F;
  --bg-2: #111318;
  --bg-3: #181B21;
  --surface: #1A1D23;
  --border: #23262E;
  --text: #E8EAF0;
  --text-2: #9BA1AD;
  --text-3: #5E6470;
  --accent: #F59E0B;
  --accent-dim: rgba(245, 158, 11, 0.12);
  --accent-glow: rgba(245, 158, 11, 0.06);
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --radius: 12px;
  --radius-sm: 6px;
}

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--accent); color: #000; }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }

/* === NAV === */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(11, 13, 15, 0.8);
  border-bottom: 1px solid var(--border);
}

.nav__logo { display: flex; align-items: center; gap: 10px; }
.nav__logo-mark { display: flex; }
.nav__logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--text);
  letter-spacing: -0.02em;
}
.nav__tagline {
  font-size: 13px;
  color: var(--text-3);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* === HERO === */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 0;
  padding: 80px 48px 60px;
  position: relative;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}
.hero__orb--1 {
  width: 600px; height: 600px;
  top: -200px; left: -100px;
  background: radial-gradient(circle, rgba(245,158,11,0.08) 0%, transparent 70%);
}
.hero__orb--2 {
  width: 400px; height: 400px;
  bottom: -100px; right: -50px;
  background: radial-gradient(circle, rgba(245,158,11,0.05) 0%, transparent 70%);
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(245,158,11,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,158,11,0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}

.hero__content { position: relative; z-index: 1; }

.hero__eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(48px, 5vw, 80px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 28px;
}

.hero__sub {
  font-size: 17px;
  color: var(--text-2);
  max-width: 420px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.hero__price-row {
  display: flex;
  align-items: baseline;
  gap: 16px;
}
.hero__price {
  display: flex;
  align-items: baseline;
  gap: 2px;
}
.hero__price-dollar {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
}
.hero__price-number {
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.hero__price-label {
  font-size: 14px;
  color: var(--text-3);
}

.hero__visual {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.hero__car-silhouette {
  width: 100%;
  max-width: 480px;
  opacity: 0.7;
  animation: float 6s ease-in-out infinite;
}
.hero__car-silhouette svg { width: 100%; height: auto; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.hero__stats {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 20px 32px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 100px;
}
.hero__stat { text-align: center; }
.hero__stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--accent);
}
.hero__stat-label {
  font-size: 11px;
  color: var(--text-3);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.hero__stat-divider {
  width: 1px;
  height: 32px;
  background: var(--border);
}

/* === SECTION LABELS === */
.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

/* === HOW IT WORKS === */
.hiw { padding: 120px 48px; }
.hiw__header { max-width: 600px; margin-bottom: 64px; }
.hiw__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.hiw__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.hiw__step {
  background: var(--bg-2);
  padding: 48px 40px;
}
.hiw__step-number {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 24px;
}
.hiw__step-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
}
.hiw__step-desc {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.6;
}

/* === PACKAGES === */
.packages {
  padding: 120px 48px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.packages__header { max-width: 600px; margin-bottom: 64px; }
.packages__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.packages__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pkg {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 36px;
  position: relative;
  transition: border-color 0.2s;
}
.pkg:hover { border-color: rgba(245,158,11,0.3); }
.pkg--featured {
  border-color: var(--accent);
  background: var(--surface);
}
.pkg--featured::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--accent) 0%, transparent 60%);
  opacity: 0.06;
  pointer-events: none;
}
.pkg__badge {
  position: absolute;
  top: -1px;
  right: 24px;
  background: var(--accent);
  color: #000;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 4px 12px;
  border-radius: 0 0 6px 6px;
}
.pkg__icon { color: var(--accent); margin-bottom: 20px; }
.pkg__name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}
.pkg__tagline {
  font-size: 13px;
  color: var(--text-3);
  margin-bottom: 24px;
}
.pkg__price {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 24px;
}
.pkg__price-dollar {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--accent);
}
.pkg__price-amount {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.pkg__price-per {
  font-size: 14px;
  color: var(--text-3);
}
.pkg__features {
  list-style: none;
  margin-bottom: 24px;
}
.pkg__features li {
  font-size: 14px;
  color: var(--text-2);
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}
.pkg__features li::before {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}
.pkg__ideal {
  font-size: 12px;
  color: var(--text-3);
  font-style: italic;
}
.packages__note {
  margin-top: 40px;
  padding: 20px 24px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 13px;
  color: var(--text-3);
}
.packages__note p { line-height: 1.6; }

/* === MANIFESTO === */
.manifesto {
  padding: 120px 48px;
  background: var(--bg);
}
.manifesto__inner { max-width: 760px; }
.manifesto__quote {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 32px;
  position: relative;
  padding-left: 32px;
}
.manifesto__quote::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 3px;
  background: var(--accent);
  border-radius: 2px;
}
.manifesto__body {
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.8;
  margin-bottom: 20px;
}

/* === CLOSING === */
.closing {
  padding: 120px 48px;
  background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 100%);
  border-top: 1px solid var(--border);
  text-align: center;
}
.closing__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.closing__headline {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 20px;
}
.closing__sub {
  font-size: 17px;
  color: var(--text-2);
  max-width: 480px;
  margin: 0 auto 48px;
}
.closing__vision {
  max-width: 520px;
  margin: 0 auto;
  padding: 24px 32px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.closing__vision p {
  font-size: 14px;
  color: var(--text-3);
  line-height: 1.7;
}

/* === FOOTER === */
.footer {
  padding: 40px 48px 32px;
  border-top: 1px solid var(--border);
}
.footer__top { display: flex; align-items: center; gap: 24px; margin-bottom: 24px; }
.footer__brand { display: flex; align-items: center; gap: 8px; }
.footer__logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
}
.footer__desc { font-size: 14px; color: var(--text-3); }
.footer__bottom p {
  font-size: 12px;
  color: var(--text-3);
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; padding: 60px 32px 80px; }
  .hero__visual { display: none; }
  .hiw, .packages, .manifesto, .closing { padding: 80px 32px; }
  .packages__grid { grid-template-columns: 1fr; max-width: 480px; }
  .hiw__steps { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .nav { padding: 16px 24px; }
  .nav__tagline { display: none; }
  .hero, .hiw, .packages, .manifesto, .closing { padding: 60px 24px 80px; }
  .packages__grid { max-width: 100%; }
  .footer { padding: 32px 24px 24px; }
}
