@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Montserrat:wght@400;600;700;900&display=swap');

:root {
  --red: #E8001D;
  --dark: #0a0a0a;
  --gray: #141414;
  --white: #ffffff;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--dark);
  color: var(--white);
  overflow-x: hidden;
}

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 40px;
  background: rgba(5,5,5,0.97);
  border-bottom: 2px solid var(--red);
}

.logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  letter-spacing: 4px;
  text-decoration: none;
  color: var(--white);
}
.logo span { color: var(--red); }

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color .25s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--red); }

/* FOOTER */
footer {
  background: #000;
  border-top: 2px solid var(--red);
  padding: 24px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.copy {
  font-size: 11px;
  color: rgba(255,255,255,.25);
  letter-spacing: 1px;
}

/* SHARED */
.page-wrap {
  padding-top: 60px;
}

.blk {
  padding: 80px 40px;
  max-width: 1140px;
  margin: 0 auto;
}

.lbl {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 8px;
}

.ttl {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(38px, 5.5vw, 64px);
  letter-spacing: 2px;
  line-height: 1;
  margin-bottom: 40px;
}

.red-line {
  display: block;
  width: 60px;
  height: 3px;
  background: var(--red);
  margin: 16px 0 36px;
}

/* STRIP */
.strip {
  background: var(--red);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.strip-item {
  padding: 20px 48px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.2);
}
.strip-item:last-child { border: none; }

.strip-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  line-height: 1;
}
.strip-lbl {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
  margin-top: 2px;
}

/* ANIMATIONS */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(8px); }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.on { opacity: 1; transform: translateY(0); }

/* RESPONSIVE */
@media (max-width: 760px) {
  nav { padding: 14px 20px; }
  .nav-links { display: none; }
  .blk { padding: 60px 20px; }
  footer { flex-direction: column; text-align: center; }
  .strip-item { padding: 18px 28px; }
}
