:root {
  --orange: #ff6500;
  --orange-light: #ff8a24;
  --black: #050505;
  --white: #f7f7f7;
}

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

html,
body {
  width: 100%;
  min-height: 100%;
  background: var(--black);
  color: var(--white);
  font-family: "Inter", sans-serif;
  overflow: hidden;
}

body {
  min-height: 100svh;
}

.background-video {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: saturate(.72) contrast(1.12) brightness(.48);
}

.video-overlay {
  position: fixed;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 50% 45%, transparent 0%, rgba(0, 0, 0, .2) 38%, rgba(0, 0, 0, .82) 100%),
    linear-gradient(115deg, rgba(0, 0, 0, .82), rgba(0, 0, 0, .25), rgba(0, 0, 0, .76));
}

.noise {
  position: fixed;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  opacity: .045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.95' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.9'/%3E%3C/svg%3E");
}

.orange-glow {
  position: fixed;
  z-index: 2;
  width: 38vw;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(255, 101, 0, .14);
  filter: blur(100px);
  pointer-events: none;
  animation: float 9s ease-in-out infinite alternate;
}

.orange-glow--one {
  top: -18vw;
  right: -12vw;
}

.orange-glow--two {
  bottom: -24vw;
  left: -14vw;
  animation-delay: -4s;
}

.hero {
  position: relative;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 100svh;
  padding: 32px;
  text-align: center;
}

.hero__content {
  width: min(920px, 100%);
  animation: reveal .9s cubic-bezier(.2, .8, .2, 1) both;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--orange-light);
  font-size: clamp(.7rem, 1.5vw, .86rem);
  font-weight: 800;
  letter-spacing: .42em;
  text-indent: .42em;
}

h1 {
  font-size: clamp(3.2rem, 11vw, 8.8rem);
  line-height: .88;
  font-weight: 900;
  letter-spacing: -.075em;
  text-shadow: 0 8px 50px rgba(0, 0, 0, .7);
}

h1 span {
  color: var(--orange);
  text-shadow: 0 0 42px rgba(255, 101, 0, .28);
}

.line {
  width: 74px;
  height: 3px;
  margin: 31px auto;
  border-radius: 999px;
  background: var(--orange);
  box-shadow: 0 0 22px rgba(255, 101, 0, .62);
}

.discord-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 58px;
  padding: 0 25px;
  border: 1px solid rgba(255, 126, 40, .78);
  border-radius: 9px;
  background: linear-gradient(135deg, var(--orange), #df4700);
  color: white;
  font-size: .88rem;
  font-weight: 800;
  letter-spacing: .065em;
  text-decoration: none;
  box-shadow: 0 12px 38px rgba(255, 81, 0, .23), inset 0 1px 0 rgba(255,255,255,.18);
  transition: transform .22s ease, box-shadow .22s ease, filter .22s ease;
}

.discord-button svg {
  width: 22px;
  height: 22px;
}

.discord-button:hover {
  transform: translateY(-3px);
  filter: brightness(1.08);
  box-shadow: 0 17px 46px rgba(255, 81, 0, .34), inset 0 1px 0 rgba(255,255,255,.22);
}

.discord-button:active {
  transform: translateY(0);
}

.discord-button:focus-visible {
  outline: 3px solid rgba(255, 138, 36, .42);
  outline-offset: 5px;
}

@keyframes reveal {
  from {
    opacity: 0;
    transform: translateY(22px) scale(.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes float {
  to {
    transform: translate3d(4vw, 3vw, 0) scale(1.12);
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 22px;
  }

  .eyebrow {
    margin-bottom: 14px;
  }

  .line {
    margin: 25px auto;
  }

  .discord-button {
    width: min(100%, 320px);
    min-height: 56px;
    padding-inline: 18px;
    font-size: .78rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
