/* ========================================
   AutoElite — Dark Predator Base + Layout
   v4.0 — Predator Mode
   ======================================== */

html, body { height: 100%; }
body {
  margin: 0;
  font-family: var(--font-sans);
  line-height: var(--lh);
  letter-spacing: var(--tracking);
  color: var(--text-0);
  background:
    radial-gradient(ellipse 1200px 600px at 50% -5%, rgba(255,45,45,0.06), transparent 60%),
    radial-gradient(ellipse 800px 500px at 80% 30%, rgba(255,45,45,0.03), transparent 50%),
    linear-gradient(180deg, #050608 0%, #0a0206 40%, #050608 100%);
  background-attachment: fixed;
}

a { color: inherit; text-decoration: none; }
a:hover { color: var(--text-0); }

.container {
  width: min(1160px, calc(100% - 2*var(--s-5)));
  margin: 0 auto;
}

.section {
  padding: var(--s-7) 0;
}

.hr {
  height: 1px;
  background: var(--border);
  border: none;
  margin: var(--s-5) 0;
}

.muted { color: var(--text-1); }
.small { font-size: var(--fs-1); color: var(--text-1); }
.kicker {
  font-size: var(--fs-1);
  color: var(--text-1);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.h1 {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.12;
  margin: 0 0 var(--s-3) 0;
}
.h2 {
  font-size: clamp(20px, 2.4vw, 28px);
  line-height: 1.2;
  margin: 0 0 var(--s-2) 0;
}
.p {
  margin: 0;
  color: var(--text-1);
}

.glow {
  position: relative;
}
.glow::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: radial-gradient(circle, rgba(255,45,45,0.25), transparent 70%);
  filter: blur(20px);
  opacity: 0.5;
  pointer-events: none;
  z-index: -1;
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}
