@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@600;700&family=Sora:wght@400;500;600;700;800&display=swap');

:root {
  --bg: #0a0a0a;
  --panel: #121212;
  --red: #ff2a2a;
  --cyan: #00d4ff;
  --violet: #7c3aed;
  --text: #ffffff;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Sora', system-ui, sans-serif;
  scroll-behavior: smooth;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1200px, calc(100% - 2rem));
  margin: 0 auto;
}

.section {
  padding: 5rem 0;
}

.section.panel {
  background: var(--panel);
}

.tracks-section {
  background:
    linear-gradient(180deg, rgba(0, 212, 255, 0.06) 0%, rgba(124, 58, 237, 0.05) 100%),
    #0e1218;
  border-top: 1px solid rgba(0, 212, 255, 0.24);
  border-bottom: 1px solid rgba(124, 58, 237, 0.28);
}

.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: clamp(2rem, 4vw, 3.3rem);
  margin: 0;
}

.subtle {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.65;
}

.top-nav {
  position: fixed;
  inset: 1rem 0 auto;
  z-index: 30;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(8px);
  padding: 0.75rem 1rem;
}

.logo {
  height: 36px;
  width: auto;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.32), 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.82);
}

.nav-links a:hover {
  color: #fff;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 0.2rem;
}

.lang-switch a {
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  font-size: 0.7rem;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.lang-switch a.active {
  background: var(--red);
  color: #fff;
}

.burger {
  display: none;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: transparent;
  color: #fff;
  border-radius: 999px;
  width: 44px;
  height: 44px;
}

.mobile-menu {
  display: none;
  margin-top: 0.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
}

.mobile-menu.open {
  display: grid;
  gap: 0.7rem;
}

.hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

.hero-video,
.hero-mobile,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-video video,
.hero-mobile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-mobile {
  display: none;
}


.hero-overlay {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.62), var(--bg));
}

.hero-content {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 0 3rem;
}

.kicker {
  display: inline-block;
  border: 1px solid rgba(0, 212, 255, 0.3);
  background: rgba(0, 212, 255, 0.14);
  border-radius: 999px;
  padding: 0.45rem 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.7rem;
  color: var(--cyan);
}

.hero h1 {
  margin: 1rem 0 0;
  font-family: 'Barlow Condensed', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 0.9;
  font-size: clamp(2.4rem, 8vw, 6.4rem);
  max-width: 880px;
}

.hero p {
  font-size: clamp(1.05rem, 2.1vw, 1.7rem);
  color: rgba(255, 255, 255, 0.88);
  max-width: 620px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.8rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.35rem;
  border-radius: 999px;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  border: 1px solid transparent;
}

.btn.primary {
  background: var(--red);
}

.btn.secondary {
  border-color: rgba(255, 255, 255, 0.32);
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.8rem;
}

.card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
}

.thumb {
  position: relative;
  aspect-ratio: 4 / 5;
  background: #000;
}

.thumb video,
.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thumb span {
  position: absolute;
  left: 0.9rem;
  bottom: 0.8rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.6rem;
  text-transform: uppercase;
}

.tech {
  position: relative;
}

.tech::before,
.tech::after {
  content: '';
  position: absolute;
  filter: blur(52px);
  opacity: 0.24;
}

.tech::before {
  width: 180px;
  height: 180px;
  background: var(--cyan);
  left: -20px;
  top: 40px;
}

.tech::after {
  width: 220px;
  height: 220px;
  background: var(--violet);
  right: -30px;
  bottom: 30px;
}

.tech-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 1.7rem;
}

.tech-item {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  padding: 1.1rem;
}

.tech-item h3 {
  margin: 0;
  color: var(--cyan);
  font-family: 'Barlow Condensed', sans-serif;
  text-transform: uppercase;
  font-size: 1.55rem;
}

.tech-item p {
  margin: 0.6rem 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.93rem;
  line-height: 1.55;
}

.two-col {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 1.2rem;
  align-items: center;
}

.pill-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.pill {
  border: 1px solid rgba(0, 212, 255, 0.27);
  background: rgba(0, 212, 255, 0.1);
  border-radius: 12px;
  padding: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  font-weight: 700;
}

.shot-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.shot-grid img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.8rem;
}

.event-body {
  padding: 0.9rem;
}

.event-type {
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-size: 0.7rem;
}

.event-title {
  margin: 0.45rem 0 0;
  font-family: 'Barlow Condensed', sans-serif;
  text-transform: uppercase;
  font-size: 2rem;
}

.event-cta {
  display: block;
}

.event-cta .card {
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.event-cta:hover .card {
  transform: translateY(-2px);
  border-color: rgba(255, 42, 42, 0.55);
}

.cta {
  text-align: center;
  background: radial-gradient(circle at center, rgba(255, 42, 42, 0.2), transparent 55%), var(--bg);
}

.cta h2 {
  margin: 0;
  font-family: 'Barlow Condensed', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: clamp(2.4rem, 6.4vw, 5.2rem);
}

.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: #000;
  padding: 2.2rem 0;
}

.footer-wrap {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
}

.small {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 992px) {
  .nav-links {
    display: none;
  }

  .burger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }



  .grid-4,
  .tech-grid,
  .events-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .two-col {
    grid-template-columns: 1fr;
  }

  .hero,
  .hero-content {
    min-height: 100svh;
  }

  .hero-video {
    inset: 0;
  }

  .hero-video video {
    width: 100vw;
    height: 100svh;
    min-width: 100vw;
    min-height: 100svh;
    object-fit: cover;
    object-position: center center;
    transform: scale(1.06);
  }
}

@media (max-width: 620px) {
  .section {
    padding: 4.2rem 0;
  }

  .grid-4,
  .tech-grid,
  .events-grid,
  .pill-list,
  .shot-grid {
    grid-template-columns: 1fr;
  }

  .footer-wrap {
    grid-template-columns: 1fr;
  }
}
