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

body {
  background: #050505;
  color: white;
  font-family: Arial, sans-serif;
}

.container {
  width: 90%;
  max-width: 1400px;
  margin: auto;
}

.navbar {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 100;
  background: rgba(0,0,0,.85);
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.logo {
  color: #D90429;
  font-size: 2rem;
  font-weight: 900;
}

nav {
  display: flex;
  gap: 30px;
}

nav a {
  color: white;
  text-decoration: none;
  text-transform: uppercase;
  font-size: .9rem;
}

nav a:hover {
  color: #D90429;
}

.hero {
  position: relative;
  min-height: 100vh;
  background:
    linear-gradient(to right, rgba(0,0,0,.9), rgba(0,0,0,.3)),
    url('https://images.unsplash.com/photo-1503376780353-7e6692767b70?q=80&w=1800&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

.hero-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
}

.eyebrow {
  color: #D90429;
  letter-spacing: .3em;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 6rem;
  line-height: .9;
  font-weight: 900;
}

.hero h1 span {
  color: #D90429;
}

.hero-text {
  color: rgba(255,255,255,.7);
  max-width: 600px;
  margin-top: 30px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  margin-top: 40px;
}

.primary-btn,
.secondary-btn,
.card button {
  padding: 14px 24px;
  border: none;
  cursor: pointer;
  font-weight: bold;
}

.primary-btn {
  background: #D90429;
  color: white;
}

.secondary-btn,
.card button {
  background: transparent;
  border: 1px solid rgba(255,255,255,.2);
  color: white;
}

.stats-card {
  display: flex;
  gap: 40px;
  background: rgba(0,0,0,.7);
  padding: 40px;
  border: 1px solid rgba(255,255,255,.1);
}

.stats-card h2 {
  color: #D90429;
  font-size: 4rem;
}

.stats-card p {
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
}

.section {
  padding: 120px 0;
}

.section-header p {
  color: #D90429;
  letter-spacing: .3em;
  margin-bottom: 15px;
}

.section-header h2 {
  font-size: 4rem;
  font-weight: 900;
  margin-bottom: 50px;
}

.drivers-grid,
.merch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.card {
  background: #111;
  border: 1px solid rgba(255,255,255,.08);
  padding: 25px;
}

.placeholder {
  aspect-ratio: 3/4;
  background: #222;
  margin-bottom: 20px;
}

.square {
  aspect-ratio: 1/1;
  background: #222;
  margin-bottom: 20px;
}

.card h3 {
  font-size: 2rem;
}

.card span {
  display: block;
  color: #D90429;
  font-size: 3rem;
  font-weight: 900;
  margin: 10px 0 20px;
}

footer {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 80px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
}

.footer-logo {
  margin-bottom: 20px;
}

footer h5 {
  margin-bottom: 20px;
  text-transform: uppercase;
}

footer ul {
  list-style: none;
}

footer li,
footer p {
  color: rgba(255,255,255,.6);
  margin-bottom: 10px;
}

@media (max-width: 900px) {
  nav {
    display: none;
  }

  .hero-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero h1 {
    font-size: 4rem;
  }

  .stats-card {
    width: 100%;
    justify-content: space-between;
  }
}
