@import url("https://fonts.googleapis.com/css2?family=Clash+Grotesk:wght@500;700&family=Inter:wght@300;600&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Prevent horizontal scroll forever */
html,
body {
  width: 100%;
  overflow-x: hidden;
  background: #000;
  color: #fff;
  font-family: "Inter", sans-serif;
}

.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 5vw;
}

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  background: url("grain.png") repeat;
  opacity: 0.06;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  background: radial-gradient(circle at center, #111 0%, #000 80%);
  padding: 0 5vw;
}

.hero-inner h1 {
  font-family: "Clash Grotesk", sans-serif;
  font-size: clamp(3.5rem, 12vw, 12rem);
  line-height: 0.9;
}

.neon {
  color: #ff2d55;
  text-shadow: 0 0 15px #ff2d55, 0 0 30px #ff2d55;
}

.glitch {
  position: relative;
  display: inline-block;
}
.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.glitch::before {
  animation: glitch1 0.8s infinite;
  color: #00f2ff;
  left: 2px;
  clip-path: inset(0 0 50% 0);
}
.glitch::after {
  animation: glitch2 0.6s infinite;
  color: #00f2ff;
  left: -2px;
  clip-path: inset(50% 0 0 0);
}

@keyframes glitch1 {
  0%,
  100% {
    transform: translate(0);
  }
  20% {
    transform: translate(-3px, 3px);
  }
  40% {
    transform: translate(3px, -3px);
  }
}
@keyframes glitch2 {
  0%,
  100% {
    transform: translate(0);
  }
  30% {
    transform: translate(2px, -2px);
  }
  60% {
    transform: translate(-2px, 2px);
  }
}

.tagline {
  font-size: clamp(1rem, 3.5vw, 1.4rem);
  color: #00f2ff;
  letter-spacing: 4px;
  margin: 30px 0 50px;
}

.buttons {
  gap: 16px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  padding: 14px 32px;
  border: 2px solid;
  text-decoration: none;
  font-weight: 700;
  font-size: clamp(0.95rem, 3vw, 1.1rem);
  transition: 0.4s;
  white-space: nowrap;
}

.primary {
  background: #ff2d55;
  color: #000;
  border-color: #ff2d55;
}
.primary:hover {
  background: transparent;
  color: #ff2d55;
  box-shadow: 0 0 30px #ff2d55;
}
.secondary {
  border-color: #00f2ff;
  color: #00f2ff;
}
.secondary:hover {
  background: #00f2ff;
  color: #000;
}

.scroll-hint {
  position: absolute;
  bottom: 30px;
  font-size: 1.8rem;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

/* SECTIONS */
section {
  padding: clamp(80px, 15vw, 160px) 0;
}
.about,
.contact {
  background: #050505;
}

.about h2,
.contact h2,
.videos h2 {
  font-size: clamp(2.5rem, 8vw, 5.5rem);
  margin-bottom: 50px;
  text-align: center;
}

.big {
  font-size: clamp(1.1rem, 4vw, 1.7rem);
  line-height: 1.6;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 30px;
}

.services {
  font-size: clamp(1.1rem, 3.5vw, 1.5rem);
  color: #00f2ff;
  text-align: center;
  letter-spacing: 4px;
  margin: 40px 0;
}

.final {
  font-size: clamp(1rem, 3.5vw, 1.35rem);
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  opacity: 0.9;
}

.contact-text {
  font-size: clamp(1.1rem, 4vw, 1.5rem);
  line-height: 1.8;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
}

.email-btn {
  display: block;
  width: fit-content;
  margin: 50px auto 0;
  padding: clamp(20px, 6vw, 32px) clamp(40px, 10vw, 60px);
  background: #ff2d55;
  color: #000;
  font-size: clamp(1.1rem, 4vw, 1.4rem);
  font-weight: 800;
  letter-spacing: 1px;
  border-radius: 12px;
  box-shadow: 0 0 40px rgba(255, 45, 85, 0.6);
  transition: all 0.4s ease;
}
.email-btn:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 60px rgba(255, 45, 85, 0.9);
}

.small {
  margin-top: 40px;
  font-size: 0.9rem;
  opacity: 0.7;
  text-align: center;
}

.center {
  display: block;
  margin: 50px auto 0;
  max-width: 90%;
  text-align: center;
}

/* VIDEOS */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: clamp(20px, 5vw, 40px);
  margin-top: 60px;
}
.video-grid iframe {
  width: 100%;
  aspect-ratio: 16/9;
  border: none;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7);
}

/* FOOTER */
footer {
  padding: 80px 20px;
  text-align: center;
  background: #000;
  border-top: 1px solid #222;
  font-size: 0.9rem;
}
