/* ============================================
   CHEVROLET CRUZE TEASER — STYLES
   Palette: Volcanic Glass + Burnt Orange
   Font: Outfit (Google Fonts)
============================================ */

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

:root {
  --black:    #0D0D0D;
  --dark:     #1A1A1A;
  --mid:      #2A2A2A;
  --orange:   #FF6B2B;
  --orange-lt:#FFB088;
  --white:    #F5F0EB;
  --muted:    #888880;
  --font:     'Outfit', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font);
  overflow-x: hidden;
  cursor: default;
}

/* ── Noise Texture ── */
.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  background: linear-gradient(to bottom, rgba(13,13,13,0.95) 0%, transparent 100%);
  backdrop-filter: blur(4px);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-brand {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--white);
}

.nav-link {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.3s;
}
.nav-link:hover { color: var(--orange); }

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 120px 24px 60px;
}

/* Background elements */
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,107,43,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,107,43,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}
.glow-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,107,43,0.18) 0%, transparent 70%);
  top: -100px; left: 50%;
  transform: translateX(-50%);
}
.glow-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,176,136,0.08) 0%, transparent 70%);
  bottom: 0; right: 10%;
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  width: 100%;
}

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,107,43,0.1);
  border: 1px solid rgba(255,107,43,0.25);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--orange-lt);
  margin-bottom: 32px;
}
.badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--orange);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

/* Title */
.hero-title {
  display: flex;
  flex-direction: column;
  font-size: clamp(64px, 12vw, 140px);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.title-line { display: block; color: var(--white); }
.title-line.accent {
  color: transparent;
  -webkit-text-stroke: 2px var(--orange);
  text-shadow: 0 0 80px rgba(255,107,43,0.4);
}

/* Subtitle */
.hero-sub {
  font-size: clamp(15px, 2vw, 18px);
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 48px;
  letter-spacing: 0.02em;
}

/* Car SVG */
.car-wrap {
  position: relative;
  width: 100%;
  max-width: 820px;
  margin: 0 auto 48px;
}
.car-svg {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0 40px rgba(255,107,43,0.2));
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}
.car-glow {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 40px;
  background: radial-gradient(ellipse, rgba(255,107,43,0.3) 0%, transparent 70%);
  filter: blur(20px);
  animation: float 6s ease-in-out infinite;
}
.scan-line {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  animation: scan 3s linear infinite;
  opacity: 0.6;
}
@keyframes scan {
  0% { top: 0%; opacity: 0; }
  10% { opacity: 0.6; }
  90% { opacity: 0.6; }
  100% { top: 100%; opacity: 0; }
}

/* ── Countdown ── */
.countdown-section {
  margin-bottom: 40px;
}
.countdown-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: var(--muted);
  margin-bottom: 16px;
  text-transform: uppercase;
}
.countdown {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.time-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,107,43,0.15);
  border-radius: 12px;
  padding: 16px 24px;
  min-width: 90px;
  backdrop-filter: blur(8px);
  transition: border-color 0.3s, background 0.3s;
}
.time-block:hover {
  border-color: rgba(255,107,43,0.4);
  background: rgba(255,107,43,0.06);
}
.time-num {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}
.time-unit {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--muted);
  margin-top: 6px;
}
.time-sep {
  font-size: 36px;
  font-weight: 700;
  color: var(--orange);
  opacity: 0.4;
  margin-bottom: 18px;
  animation: blink 1s step-end infinite;
}
@keyframes blink {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.1; }
}

/* ── Notify Form ── */
.notify-form {
  display: flex;
  align-items: center;
  gap: 0;
  max-width: 480px;
  margin: 0 auto;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,107,43,0.2);
  border-radius: 100px;
  padding: 6px 6px 6px 24px;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.notify-form:focus-within {
  border-color: rgba(255,107,43,0.5);
  box-shadow: 0 0 30px rgba(255,107,43,0.1);
}
.notify-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  font-family: var(--font);
  font-size: 14px;
  color: var(--white);
  letter-spacing: 0.02em;
}
.notify-input::placeholder { color: var(--muted); }
.notify-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: var(--black);
  border: none;
  border-radius: 100px;
  padding: 12px 24px;
  font-family: var(--font);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
  white-space: nowrap;
}
.notify-btn:hover {
  background: var(--orange-lt);
  transform: scale(1.03);
  box-shadow: 0 8px 30px rgba(255,107,43,0.35);
}
.notify-btn:active { transform: scale(0.98); }

.form-success {
  display: none;
  margin-top: 16px;
  font-size: 14px;
  color: var(--orange-lt);
  font-weight: 500;
  letter-spacing: 0.02em;
  animation: fadeIn 0.5s ease;
}
.form-success.show { display: block; }
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── Stats Section ── */
.stats-section {
  border-top: 1px solid rgba(255,107,43,0.1);
  border-bottom: 1px solid rgba(255,107,43,0.1);
  background: rgba(255,107,43,0.03);
  padding: 48px 24px;
}
.stats-grid {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.stat-item {
  flex: 1;
  min-width: 160px;
  text-align: center;
  padding: 16px 24px;
}
.stat-num {
  display: block;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: var(--orange);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--muted);
  text-transform: uppercase;
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,107,43,0.15);
  flex-shrink: 0;
}

/* ── Footer ── */
.footer {
  padding: 32px 48px;
  background: var(--black);
}
.footer-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-copy {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.05em;
}
.footer-link {
  font-size: 12px;
  font-weight: 600;
  color: var(--orange);
  text-decoration: none;
  letter-spacing: 0.08em;
  transition: color 0.3s;
}
.footer-link:hover { color: var(--orange-lt); }

/* ── Reveal Animations ── */
.reveal-up {
  opacity: 0;
  transform: translateY(30px);
  animation: revealUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: var(--delay, 0s);
}
@keyframes revealUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .nav { padding: 16px 24px; }
  .hero { padding: 100px 20px 48px; }
  .time-block { min-width: 68px; padding: 12px 14px; }
  .time-sep { font-size: 24px; }
  .stats-grid { gap: 8px; }
  .stat-divider { display: none; }
  .footer-inner { flex-direction: column; gap: 12px; text-align: center; }
  .notify-form { flex-direction: column; border-radius: 16px; padding: 16px; gap: 12px; }
  .notify-btn { width: 100%; justify-content: center; border-radius: 12px; }
  .notify-input { text-align: center; }
}

@media (max-width: 480px) {
  .countdown { gap: 4px; }
  .time-block { min-width: 58px; padding: 10px 10px; }
  .time-num { font-size: 28px; }
}