@font-face {
  font-family: "Orbitron";
  src: url("font/Orbitron-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  color-scheme: only light;
  --ink: #f6f2ea;
  --ink-strong: #ffffff;
  --shadow: rgba(3, 7, 18, 0.6);
  --section-padding: clamp(3rem, 6vw, 5rem);
  --section-width: 60rem;
}

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

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: "Orbitron", "Segoe UI", "Helvetica Neue", sans-serif;
  background: #0b0b10;
  color: var(--ink);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero {
  position: relative;
  width: 100vw;
  height: 92vh;
  min-height: 28rem;
  overflow: hidden;
  display: grid;
  place-items: center;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.2) contrast(1.05);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(6, 16, 30, 0.35), transparent 55%),
    linear-gradient(120deg, rgba(3, 6, 12, 0.75), rgba(3, 6, 12, 0.1));
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 8vw;
  max-width: 100%;
  text-shadow: 0 12px 40px var(--shadow);
  animation: rise 1.2s ease-out both;
}

.hero__title {
  margin: 0;
  font-size: clamp(3rem, 8vw, 7rem);
  letter-spacing: -0.02em;
  color: var(--ink-strong);
  position: relative;
  display: block;
  width: 100%;
  text-align: center;
  animation: glitch-flicker 3.5s infinite;
}

.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 1.75rem;
  transform: translateX(-50%);
  padding: 0.65rem;
  border-radius: 0.75rem;
  border: none;
  display: grid;
  place-items: center;
  text-decoration: none;
  z-index: 2;
  animation: none;
}

.scroll-indicator:focus-visible {
  outline: 2px solid #45f2ff;
  outline-offset: 4px;
}

.scroll-indicator__dot {
  width: 2.4rem;
  height: 1.9rem;
  display: block;
  fill: none;
  stroke: rgba(246, 242, 234, 0.9);
  stroke-width: 4.5;
  stroke-linejoin: round;
  stroke-linecap: round;
  animation: none;
}

.hero__title::before,
.hero__title::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  color: var(--ink-strong);
  overflow: hidden;
  pointer-events: none;
}

.hero__title::before {
  text-shadow: -2px 0 #45f2ff;
  transform: translate(-2px, 0);
  animation: glitch-slice 2.4s infinite linear alternate-reverse;
}

.hero__title::after {
  text-shadow: 2px 0 #ff3ef5;
  transform: translate(2px, 0);
  animation: glitch-slice 1.8s infinite linear alternate;
}


.section {
  position: relative;
  padding: var(--section-padding) 8vw;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.section--content {
  background:
    radial-gradient(circle at 10% 10%, rgba(69, 242, 255, 0.08), transparent 55%),
    linear-gradient(120deg, rgba(8, 10, 20, 0.95), rgba(18, 20, 30, 0.75));
}

.section--footer {
  background:
    radial-gradient(circle at 85% 20%, rgba(69, 242, 255, 0.08), transparent 55%),
    linear-gradient(120deg, rgba(6, 8, 16, 0.92), rgba(18, 20, 30, 0.82));
}

.section--socials {
  padding: calc(var(--section-padding) + 1.5rem) 8vw;
}

.section__inner {
  max-width: var(--section-width);
  margin: 0 auto;
}

.section__inner--center {
  text-align: center;
}

.section__title {
  margin: 0 0 0.75rem;
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-strong);
  text-align: center;
}

.section__text {
  margin: 0 0 1rem;
  font-size: clamp(0.9rem, 1.6vw, 1.1rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.85;
}

.section__text:last-child {
  margin-bottom: 0;
}

.section__link {
  color: var(--ink-strong);
  text-decoration: none;
  border-bottom: 1px solid rgba(246, 242, 234, 0.6);
}

.section__link:hover {
  color: #0b0b10;
  background: var(--ink-strong);
}

.section__link:focus-visible {
  outline: 2px solid #45f2ff;
  outline-offset: 3px;
}

.video-feature {
  position: relative;
  width: 100vw;
  height: clamp(14rem, 56vw, 44rem);
  max-height: 80vh;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@media (min-width: 900px) {
  .video-feature {
    height: 90vh;
    min-height: 36rem;
    max-height: 96vh;
  }
}

.video-feature__frame {
  position: relative;
  inset: 0;
  background: #000;
  height: 100%;
  width: 100%;
}

.video-feature__frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 2.5rem;
}

.social-links__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 9.5rem;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  border: 2px solid rgba(246, 242, 234, 0.7);
  color: var(--ink-strong);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.85rem;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.social-links__item:hover {
  transform: translateY(-2px);
  background: var(--ink-strong);
  color: #0b0b10;
}

.social-links__item:focus-visible {
  outline: 2px solid #45f2ff;
  outline-offset: 3px;
}

.soundcloud-embed {
  background: rgba(7, 9, 16, 0.6);
  padding: 0.75rem;
  border-radius: 1rem;
  box-shadow: 0 18px 40px rgba(2, 5, 14, 0.55);
}

.soundcloud-embed iframe {
  display: block;
  border-radius: 0.75rem;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes glitch-slice {
  0% {
    clip-path: inset(5% 0 70% 0);
    transform: translate(-1px, -1px);
  }
  12% {
    clip-path: inset(15% 0 55% 0);
    transform: translate(1px, 1px);
  }
  26% {
    clip-path: inset(55% 0 25% 0);
    transform: translate(-2px, 0);
  }
  38% {
    clip-path: inset(25% 0 40% 0);
    transform: translate(2px, -1px);
  }
  52% {
    clip-path: inset(65% 0 10% 0);
    transform: translate(-1px, 1px);
  }
  66% {
    clip-path: inset(30% 0 45% 0);
    transform: translate(1px, -2px);
  }
  80% {
    clip-path: inset(45% 0 35% 0);
    transform: translate(-2px, 1px);
  }
  100% {
    clip-path: inset(8% 0 72% 0);
    transform: translate(1px, 0);
  }
}

@keyframes glitch-flicker {
  0%,
  100% {
    text-shadow: 0 0 0 transparent;
  }
  12% {
    text-shadow: -1px 0 #45f2ff, 1px 0 #ff3ef5;
  }
  13% {
    text-shadow: none;
  }
  38% {
    text-shadow: -2px 0 #45f2ff, 2px 0 #ff3ef5;
  }
  39% {
    text-shadow: none;
  }
}

@keyframes indicator-bounce {
  0%,
  100% {
    transform: translateY(-0.4rem);
  }
  50% {
    transform: translateY(0.45rem);
  }
}

@keyframes indicator-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 rgba(246, 242, 234, 0);
  }
  50% {
    box-shadow: 0 0 18px rgba(246, 242, 234, 0.3);
  }
}
