:root {
  --bg: #ffffff;
  --ink: #0e0f12;
  --muted: #33383f;
  --line: #ececf0;
  --accent: #0e0f12;      /* black */
  --accent-dark: #000000;
  --card: #fbfbfc;
  --radius: 18px;
  --shadow: 0 12px 40px rgba(16, 17, 22, 0.08);
  --shadow-sm: 0 4px 16px rgba(16, 17, 22, 0.06);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  position: relative;
  overflow-x: hidden;
}

/* PARKING LOT BACKGROUND */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background: url("assets/parking-lot.png") center center / cover no-repeat fixed;
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(1px);
}

/* FLOATING CARS */
.floating-cars {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.fcar {
  position: absolute;
  width: 190px;
  height: auto;
  opacity: 0.85;
  filter: drop-shadow(0 18px 26px rgba(0, 0, 0, 0.28));
  will-change: transform;
}
.fcar-1 { top: 12%;  left: -220px; width: 210px; animation: drift-lr 26s linear infinite; }
.fcar-2 { top: 62%;  right: -220px; width: 240px; animation: drift-rl 32s linear infinite; animation-delay: -6s; }
.fcar-3 { top: 38%;  left: -220px; width: 150px; opacity: 0.7; animation: drift-lr 40s linear infinite; animation-delay: -14s; }
.fcar-4 { top: 80%;  left: -220px; width: 180px; animation: drift-lr 30s linear infinite; animation-delay: -22s; }
.fcar-5 { top: 24%;  right: -220px; width: 130px; opacity: 0.65; animation: drift-rl 44s linear infinite; animation-delay: -30s; }

@keyframes drift-lr {
  0%   { transform: translateX(0) translateY(0) rotate(-1deg); }
  50%  { transform: translateX(60vw) translateY(-22px) rotate(1.5deg); }
  100% { transform: translateX(120vw) translateY(0) rotate(-1deg); }
}
@keyframes drift-rl {
  0%   { transform: translateX(0) translateY(0) rotate(1deg) scaleX(-1); }
  50%  { transform: translateX(-60vw) translateY(24px) rotate(-1.5deg) scaleX(-1); }
  100% { transform: translateX(-120vw) translateY(0) rotate(1deg) scaleX(-1); }
}

@media (prefers-reduced-motion: reduce) {
  .fcar { animation: none; display: none; }
  .hero-art img { animation: none; }
}

h1, h2, h3, .brand-text, .stat-num, .tok-num, .step-n, .plate {
  font-family: "Bangers", "Space Grotesk", system-ui, sans-serif;
  letter-spacing: 0.02em;
  font-weight: 400;
}
h1, h2 { letter-spacing: 0.04em; line-height: 1.05; }

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

.accent { color: var(--accent); }

/* keep readable content above the floating-car layer */
.nav, main, .footer { position: relative; z-index: 2; }

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand { display: flex; align-items: center; gap: 8px; font-weight: 700; }
.brand-mark { font-size: 20px; }
.brand-text { font-size: 20px; font-weight: 700; }
.nav-links { display: flex; gap: 26px; }
.nav-links a { color: var(--muted); font-weight: 500; font-size: 15px; transition: color .15s; }
.nav-links a:hover { color: var(--ink); }

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  font-size: 15px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .12s ease, box-shadow .2s ease, background .2s ease;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 8px 24px rgba(14, 15, 18, 0.28); }
.btn-primary:hover { background: var(--accent-dark); box-shadow: 0 10px 30px rgba(14, 15, 18, 0.36); }
.btn-ghost { color: var(--ink); background: transparent; }
.btn-ghost:hover { color: var(--accent); }
.btn-outline { border-color: var(--line); background: #fff; color: var(--ink); box-shadow: var(--shadow-sm); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.btn-small { padding: 8px 16px; font-size: 13px; background: var(--ink); color: #fff; }
.btn-small:hover { background: var(--accent); }
.nav-cta { padding: 10px 18px; }

/* HERO */
.hero {
  max-width: 1120px;
  margin: 0 auto;
  padding: 72px 24px 40px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}
.pill {
  display: inline-block;
  padding: 7px 14px;
  border-radius: 999px;
  background: #f2f2f4;
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  border: 1px solid #e2e2e7;
  margin-bottom: 22px;
}
.hero h1 {
  font-size: clamp(38px, 5.4vw, 62px);
  line-height: 1.03;
  font-weight: 700;
  margin-bottom: 20px;
}
.lead { font-size: 18px; color: var(--ink); max-width: 520px; margin-bottom: 30px; }
.lead strong { color: var(--ink); }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }

.ticker-row { display: flex; gap: 36px; }
.stat { display: flex; flex-direction: column; }
.stat-num { font-size: 30px; font-weight: 700; }
.stat-label { font-size: 13px; color: var(--muted); text-transform: uppercase; letter-spacing: .05em; }

.hero-art { position: relative; display: flex; align-items: center; justify-content: center; }
.hero-art img {
  width: 100%;
  max-width: 560px;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 26px 30px rgba(0, 0, 0, 0.32));
  animation: hero-float 6s ease-in-out infinite;
}
@keyframes hero-float {
  0%, 100% { transform: translateY(0) rotate(-0.6deg); }
  50%      { transform: translateY(-16px) rotate(0.6deg); }
}
.glow {
  position: absolute;
  inset: 10% 6%;
  background: radial-gradient(circle at 50% 50%, rgba(14, 15, 18, 0.18), transparent 70%);
  filter: blur(40px);
  z-index: 1;
}
.plate {
  position: absolute;
  bottom: 18px;
  right: 22px;
  z-index: 3;
  background: #fff;
  color: var(--accent);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 10px;
  border: 2px solid var(--accent);
  box-shadow: var(--shadow-sm);
  letter-spacing: .04em;
}

/* MARQUEE */
.marquee {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fafafb;
  padding: 14px 0;
}
.marquee-track {
  display: flex;
  gap: 40px;
  white-space: nowrap;
  width: max-content;
  animation: scroll 26s linear infinite;
}
.marquee-track span {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  color: var(--muted);
  font-size: 15px;
  letter-spacing: .08em;
}
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-33.33%); } }

/* SECTIONS */
.section { max-width: 1120px; margin: 0 auto; padding: 76px 24px; }
.section-head { text-align: center; margin-bottom: 48px; }
.section-head h2 { font-size: clamp(28px, 4vw, 40px); font-weight: 700; margin-bottom: 8px; }
.section-sub { color: var(--muted); font-size: 17px; }

/* CARDS */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform .18s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card-emoji { font-size: 34px; margin-bottom: 14px; }
.card h3 { font-size: 20px; margin-bottom: 8px; }
.card p { color: var(--muted); font-size: 15px; }

/* MEET VLAD */
.vlad-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 44px;
  align-items: center;
}
.vlad-photo { margin: 0; }
.vlad-photo img {
  width: 100%;
  max-width: 360px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: block;
}
.vlad-photo figcaption {
  margin-top: 10px;
  font-size: 12px;
  color: var(--muted);
}
.vlad-photo figcaption a { color: var(--accent); text-decoration: underline; }
.vlad-copy h2 { font-size: clamp(30px, 4vw, 44px); margin: 14px 0 14px; }
.vlad-copy p { color: var(--muted); font-size: 17px; margin-bottom: 16px; max-width: 540px; }
.vlad-copy p strong { color: var(--ink); }
.vlad-copy .btn { margin-top: 8px; }

/* PROOF */
.proof { background: rgba(250, 250, 251, 0.82); backdrop-filter: blur(6px); max-width: none; }
.proof .section-head, .proof .quote, .proof .proof-cta { max-width: 780px; margin-left: auto; margin-right: auto; }
.quote {
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--accent);
  border-radius: 14px;
  padding: 26px 28px;
  margin-bottom: 18px;
  box-shadow: var(--shadow-sm);
}
.quote blockquote { font-size: 19px; font-weight: 500; line-height: 1.5; }
.quote figcaption { margin-top: 12px; color: var(--muted); font-size: 14px; font-weight: 600; }
.proof-cta { text-align: center; margin-top: 30px; }

/* TOKENOMICS */
.tok-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-bottom: 40px; }
.tok {
  text-align: center;
  padding: 30px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
}
.tok-num { display: block; font-size: 38px; font-weight: 700; color: var(--accent); }
.tok-label { font-size: 14px; color: var(--muted); text-transform: uppercase; letter-spacing: .05em; }
.ca { max-width: 640px; margin: 0 auto; text-align: center; }
.ca-label { display: block; font-size: 13px; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 10px; }
.ca-box {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
  background: var(--card);
  border: 1px dashed var(--line);
  border-radius: 12px;
  padding: 12px 12px 12px 18px;
}
.ca-box code { font-size: 14px; color: var(--ink); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* BUY */
.buy { background: rgba(250, 250, 251, 0.82); backdrop-filter: blur(6px); max-width: none; }
.steps { list-style: none; max-width: 720px; margin: 0 auto; display: grid; gap: 16px; }
.steps li {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px 24px;
  box-shadow: var(--shadow-sm);
}
.step-n {
  flex: none;
  width: 40px; height: 40px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 18px;
}
.steps h3 { font-size: 18px; margin-bottom: 2px; }
.steps p { color: var(--muted); font-size: 15px; }

/* DISCLAIMER */
.disclaimer-wrap { padding-top: 20px; padding-bottom: 40px; }
.disclaimer { max-width: 780px; margin: 0 auto; text-align: center; color: var(--ink); font-size: 13px; }

/* FOOTER */
.footer { border-top: 1px solid var(--line); }
.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 40px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-links { display: flex; gap: 24px; }
.footer-links a { color: var(--muted); font-size: 15px; }
.footer-links a:hover { color: var(--accent); }
.copyright { color: var(--muted); font-size: 14px; width: 100%; text-align: center; padding-top: 8px; border-top: 1px solid var(--line); }
.credit { font-size: 12px; color: var(--ink); }
.credit a { color: inherit; text-decoration: underline; }

/* RESPONSIVE */
@media (max-width: 860px) {
  .hero { grid-template-columns: 1fr; padding-top: 48px; }
  .hero-art { order: -1; }
  .nav-links { display: none; }
  .cards, .tok-grid { grid-template-columns: 1fr 1fr; }
  .vlad-grid { grid-template-columns: 1fr; }
  .vlad-photo { text-align: center; }
  .vlad-photo img { margin: 0 auto; }
}
@media (max-width: 560px) {
  .cards, .tok-grid { grid-template-columns: 1fr; }
  .ticker-row { gap: 22px; }
  .footer-inner { flex-direction: column; text-align: center; }
}
