:root {
  --red: #e00000;
  --red-dark: #950000;
  --black: #050505;
  --black-soft: #0d0d0d;
  --white: #ffffff;
  --muted: #b8b8b8;
  --line: rgba(255, 255, 255, 0.12);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea, select { font: inherit; }

.container {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

.section-pad { padding: 100px 0; }

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  height: 78px;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(20px, 4vw, 60px);
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
  letter-spacing: 0.12em;
}
.brand-mark {
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  font-weight: 500;
  color: var(--red);
}
.brand-sub {
  margin-top: 7px;
  font-size: 0.58rem;
  letter-spacing: 0.55em;
  color: var(--white);
}

.site-nav { display: flex; gap: 34px; align-items: center; }
.site-nav a {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
  transition: color 0.25s ease;
}
.site-nav a:hover { color: var(--red); }

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 8px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  margin: 5px 0;
  background: var(--white);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.hero {
  min-height: 100vh;
  padding-top: 150px;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 18% 12%, rgba(224,0,0,0.38), transparent 28%),
    radial-gradient(circle at 80% 70%, rgba(224,0,0,0.18), transparent 35%),
    linear-gradient(135deg, #050505 0%, #0b0b0b 50%, #120000 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--red);
  text-transform: uppercase;
  font-size: 0.76rem;
  letter-spacing: 0.22em;
  font-weight: 700;
}
.eyebrow.dark { color: var(--black); }

h1, h2, h3, p { margin-top: 0; }
h1 {
  font-size: clamp(3.2rem, 7vw, 6.9rem);
  line-height: 0.9;
  letter-spacing: -0.065em;
  max-width: 790px;
  margin-bottom: 28px;
}
h2 {
  font-size: clamp(2rem, 4.3vw, 4.3rem);
  line-height: 0.95;
  letter-spacing: -0.055em;
  margin-bottom: 24px;
}
h3 {
  font-size: 1.3rem;
  line-height: 1.1;
  margin-bottom: 14px;
}

.hero-text {
  max-width: 680px;
  color: rgba(255,255,255,0.78);
  font-size: 1.08rem;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 34px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn-red { background: var(--red); color: var(--white); border: 1px solid var(--red); }
.btn-red:hover { background: #ff1111; border-color: #ff1111; }
.btn-outline { border: 1px solid rgba(255,255,255,0.22); color: var(--white); }
.btn-outline:hover { border-color: var(--red); }

.hero-stats {
  margin-top: 46px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 760px;
}
.hero-stats div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,0.035);
}
.hero-stats strong { display: block; color: var(--white); font-size: 0.98rem; }
.hero-stats span { color: var(--muted); font-size: 0.82rem; }

.hero-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.04);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.hero-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, rgba(224,0,0,0.55), transparent 45%);
  pointer-events: none;
}
.logo-panel {
  position: relative;
  background: var(--red);
  padding: 42px;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-panel img { width: 100%; filter: contrast(1.05); }
.next-drop { position: relative; padding: 30px; background: #080808; }
.next-drop span {
  display: inline-block;
  color: var(--red);
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  margin-bottom: 14px;
}
.next-drop h2 { font-size: 1.7rem; letter-spacing: -0.04em; margin-bottom: 12px; }
.next-drop p { color: var(--muted); }
.next-drop a { color: var(--red); font-weight: 800; }

.marquee {
  border-block: 1px solid var(--line);
  background: var(--red);
  color: var(--black);
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 42px;
  white-space: nowrap;
  width: max-content;
  padding: 16px 0;
  animation: move 22s linear infinite;
  font-weight: 900;
  letter-spacing: 0.18em;
}
.marquee-track span { padding-left: 42px; }
@keyframes move { to { transform: translateX(-50%); } }

.two-col {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: center;
}
.align-start { align-items: start; }
.section-copy p, .partner-panel p, .contact-copy p {
  color: rgba(255,255,255,0.75);
  font-size: 1.03rem;
}

.section-title { max-width: 760px; margin-bottom: 46px; }
.event-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.event-card {
  min-height: 310px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(224,0,0,0.1), rgba(224,0,0,0.02)),
    #0b0b0b;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.event-card:hover { transform: translateY(-6px); border-color: rgba(224,0,0,0.65); }
.event-number { color: var(--red); font-weight: 900; margin-bottom: auto; }
.event-card p { color: var(--muted); margin-bottom: 0; }

.red-section {
  background: var(--red);
  color: var(--black);
}
.red-section .section-title { color: var(--black); }
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.service {
  padding: 26px;
  border-radius: 22px;
  background: rgba(0,0,0,0.86);
  color: var(--white);
  border: 1px solid rgba(0,0,0,0.18);
}
.service p { color: rgba(255,255,255,0.72); margin-bottom: 0; }

.partner-panel {
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #0b0b0b;
}
.partner-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 26px 0;
}
.partner-list span {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: rgba(255,255,255,0.82);
  font-size: 0.88rem;
}

.split-feature { padding-top: 0; }
.feature-box {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  padding: 46px;
  border: 1px solid rgba(224,0,0,0.5);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 0 0, rgba(224,0,0,0.32), transparent 38%),
    #080808;
}
.feature-points p { color: rgba(255,255,255,0.76); }
.feature-points strong { color: var(--white); }

.contact {
  background:
    linear-gradient(180deg, #050505, #100000);
  border-top: 1px solid var(--line);
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 64px;
  align-items: start;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 30px;
}
.contact-details a { color: var(--red); font-weight: 800; }
.contact-form {
  padding: 32px;
  border-radius: var(--radius);
  background: #090909;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.contact-form label {
  display: block;
  color: rgba(255,255,255,0.84);
  font-weight: 700;
  margin-bottom: 18px;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  margin-top: 8px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 14px;
  background: #111;
  color: var(--white);
  padding: 14px 15px;
  outline: none;
  transition: border-color 0.25s ease;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus { border-color: var(--red); }
.contact-form textarea { resize: vertical; }
.hidden { display: none; }
.form-note { color: var(--muted); font-size: 0.82rem; margin: 14px 0 0; }

.site-footer {
  padding: 56px 0 26px;
  background: #030303;
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
}
.footer-brand { margin-bottom: 16px; }
.site-footer p { color: var(--muted); max-width: 430px; }
.footer-links { display: flex; gap: 22px; flex-wrap: wrap; color: rgba(255,255,255,0.74); }
.footer-links a:hover { color: var(--red); }
.footer-bottom {
  margin-top: 42px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: rgba(255,255,255,0.5);
  font-size: 0.86rem;
}

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

@media (max-width: 980px) {
  .hero-grid, .two-col, .feature-box, .contact-grid { grid-template-columns: 1fr; }
  .event-grid, .service-grid { grid-template-columns: repeat(2, 1fr); }
  .hero { padding-top: 130px; }
}

@media (max-width: 760px) {
  .section-pad { padding: 76px 0; }
  .site-header { height: 70px; }
  .nav-toggle { display: block; }
  .site-nav {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px 20px 24px;
    background: rgba(0,0,0,0.96);
    border-bottom: 1px solid var(--line);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }
  .site-nav.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .site-nav a { padding: 14px 0; border-bottom: 1px solid var(--line); }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .hero-stats, .event-grid, .service-grid, .partner-list { grid-template-columns: 1fr; }
  .logo-panel { padding: 22px; }
  .feature-box, .contact-form, .partner-panel { padding: 26px; }
  .footer-grid, .footer-bottom { flex-direction: column; }
}

@media (max-width: 480px) {
  .container { width: min(100% - 28px, 1120px); }
  .hero-actions .btn { width: 100%; }
  h1 { font-size: 3rem; }
}
