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

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

:root {
  --black: #0D0D0D;
  --card: #161614;
  --border: #252520;
  --red: #A01830;
  --red-dim: #701020;
  --white: #E8E4D9;
  --grey: #7A7770;
  --light-grey: #C4BFB4;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
}

/* FILMSTRIP RULE */
.filmstrip {
  width: 100%;
  height: 10px;
  background: var(--red);
  position: relative;
  overflow: hidden;
}
.filmstrip::before {
  content: '';
  position: absolute;
  top: 1px;
  left: 0;
  right: 0;
  height: 8px;
  background: repeating-linear-gradient(
    90deg,
    transparent 0px,
    transparent 6px,
    var(--black) 6px,
    var(--black) 10px
  );
  opacity: 0.35;
}

/* NAV */
nav {
  background: rgba(10,10,10,0.97);
  backdrop-filter: blur(8px);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}
.nav-brand {
  font-family: 'Bebas Neue', sans-serif;
  
  
  color: var(--white);
  text-decoration: none;
}
.nav-brand span { color: var(--red); }
.nav-links {
  display: flex;
  gap: 0;
  list-style: none;
}
.nav-links a {
  display: block;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--grey);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  border-bottom-color: var(--red);
}

/* HERO */
.hero {
  max-width: 900px;
  margin: 0 auto;
  padding: 80px 24px 60px;
  text-align: center;
}
.hero-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
}
.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 8vw, 90px);
  letter-spacing: 4px;
  line-height: 1;
  color: var(--white);
  margin-bottom: 24px;
}
.hero h1 span { color: var(--red); }
.hero-sub {
  font-size: 17px;
  color: var(--light-grey);
  max-width: 600px;
  margin: 0 auto 40px;
  font-weight: 300;
}
.hero-rule {
  width: 60px;
  height: 3px;
  background: var(--red);
  margin: 0 auto;
}

/* LOGO */
.logo-block {
  text-align: center;
  padding: 40px 24px 20px;
}
.logo-block img {
  max-width: 320px;
  width: 100%;
  height: auto;
}

/* CONTENT */
.content {
  max-width: 760px;
  margin: 0 auto;
  padding: 40px 24px 80px;
}
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  
  color: var(--white);
  margin-bottom: 8px;
}
.section-rule {
  width: 40px;
  height: 2px;
  background: var(--red);
  margin-bottom: 24px;
}
.content p {
  color: var(--light-grey);
  margin-bottom: 20px;
  font-weight: 300;
}
.content strong { color: var(--white); font-weight: 600; }

/* MISSION BLOCKS */
.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 40px 0;
}
.mission-card {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 28px;
  border-radius: 2px;
}
.mission-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 12px;
}
.mission-card p {
  font-size: 14px;
  color: var(--grey);
  margin: 0;
}

/* PLEDGE LIST */
.pledge-list {
  list-style: none;
  margin: 24px 0;
}
.pledge-list li {
  padding: 12px 0 12px 20px;
  border-bottom: 1px solid var(--border);
  color: var(--light-grey);
  font-weight: 300;
  position: relative;
  font-size: 15px;
}
.pledge-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
}

/* BOARD */
.board-section {
  margin-bottom: 48px;
}
.board-section h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  
  color: var(--white);
  margin-bottom: 6px;
}
.board-list {
  list-style: none;
  margin-top: 16px;
}
.board-list li {
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.board-list li a {
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}
.board-list li a:hover { color: var(--red); }
.board-list li .role {
  font-size: 13px;
  color: var(--grey);
  font-weight: 300;
}

/* SPONSORS */
.sponsor-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
  justify-content: center;
  margin: 40px 0;
}
.sponsor-item {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 32px 40px;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 240px;
  transition: border-color 0.2s;
}
.sponsor-item:hover { border-color: var(--red); }
.sponsor-item img {
  max-width: 240px;
  max-height: 80px;
  object-fit: contain;
  filter: brightness(1.1);
}

/* CONTACT */
.contact-block {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 40px;
  border-radius: 2px;
  text-align: center;
  margin: 40px 0;
}
.contact-block p {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 12px;
}
.contact-block a {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 2px;
  color: var(--white);
  text-decoration: none;
  transition: color 0.2s;
}
.contact-block a:hover { color: var(--red); }

/* SOCIAL */
.social-row {
  text-align: center;
  margin: 32px 0;
}
.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--white);
  text-decoration: none;
  padding: 14px 28px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 2px;
  transition: border-color 0.2s, color 0.2s;
}
.social-btn:hover { border-color: var(--red); color: var(--red); }

/* FOOTER */
footer {
  border-top: 1px solid var(--border);
  padding: 32px 24px;
  text-align: center;
  color: var(--grey);
  font-size: 12px;
  letter-spacing: 1px;
}
footer a { color: var(--grey); text-decoration: none; }
footer a:hover { color: var(--red); }

/* RESPONSIVE */
@media (max-width: 640px) {
  .mission-grid { grid-template-columns: 1fr; }
  .nav-links a { padding: 8px 10px; font-size: 11px; }
  .hero h1 { font-size: 48px; }
  .contact-block a { font-size: 20px; }
}
