* {
  box-sizing: border-box;
}

:root {
  --bg: #05070d;
  --bg2: #080d16;
  --text: #f6fff9;
  --muted: #9aa8a0;
  --line: rgba(255, 255, 255, 0.12);
  --panel: rgba(10, 16, 26, 0.78);
  --panel2: rgba(255, 255, 255, 0.06);
  --green: #09ff75;
  --green2: #a9ff3f;
  --red: #ff234f;
  --purple: #8b5cff;
  --twitch: #9146ff;
  --cyan: #38e8ff;
  --shadow: 0 34px 110px rgba(0, 0, 0, 0.55);
  --font: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --display: "Space Grotesk", var(--font);
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 20%, rgba(9,255,117,0.18), transparent 32rem),
    radial-gradient(circle at 86% 8%, rgba(139,92,255,0.22), transparent 34rem),
    linear-gradient(180deg, #05070d 0%, #070b13 46%, #05070d 100%);
  font-family: var(--font);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -5;
  background:
    linear-gradient(120deg, rgba(5,7,13,0.94), rgba(5,7,13,0.52), rgba(5,7,13,0.95)),
    url("https://images.unsplash.com/photo-1542751371-adc38448a05e?auto=format&fit=crop&w=2400&q=82");
  background-position: center;
  background-size: cover;
  filter: saturate(1.2) contrast(1.08) brightness(0.55);
}

a {
  color: inherit;
}

.ambient {
  position: fixed;
  z-index: -4;
  width: 25rem;
  height: 25rem;
  border-radius: 999px;
  filter: blur(80px);
  opacity: 0.45;
  pointer-events: none;
}

.ambient-one {
  left: -10rem;
  bottom: 6rem;
  background: var(--green);
}

.ambient-two {
  right: -10rem;
  top: 2rem;
  background: var(--purple);
}

.grid-bg {
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.95), transparent 75%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  padding: 1rem clamp(1rem, 4vw, 4.75rem);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: rgba(5, 7, 13, 0.72);
  backdrop-filter: blur(20px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  color: #001007;
  background: linear-gradient(135deg, var(--green), var(--green2));
  box-shadow: 0 0 34px rgba(9, 255, 117, 0.34);
  font-weight: 1000;
}

.brand-text {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  gap: 0.35rem;
}

.nav a {
  padding: 0.72rem 0.9rem;
  border-radius: 999px;
  color: #d9e3de;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.nav a:hover {
  color: var(--green);
  background: rgba(9,255,117,0.08);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(330px, 0.78fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  min-height: calc(100vh - 82px);
  padding: clamp(3rem, 7vw, 7.5rem) clamp(1rem, 5vw, 5.5rem) 3rem;
}

.tagline {
  margin: 0 0 1rem;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 1000;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: var(--display);
}

h1 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(3.2rem, 8.6vw, 8.4rem);
  line-height: 0.88;
  letter-spacing: -0.075em;
  text-transform: uppercase;
}

.lead {
  max-width: 720px;
  margin: 1.25rem 0 1.8rem;
  color: #dbe5df;
  font-size: clamp(1.08rem, 1.8vw, 1.35rem);
  line-height: 1.6;
}

.live-strip {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  max-width: 100%;
  min-height: 3.2rem;
  margin-bottom: 1.1rem;
  padding: 0.8rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  color: #eaf7ef;
  font-weight: 800;
  backdrop-filter: blur(16px);
}

.live-dot {
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 999px;
  background: #808b85;
  box-shadow: 0 0 0 rgba(255,255,255,0);
}

.live-dot.is-live {
  background: var(--green);
  box-shadow: 0 0 24px rgba(9,255,117,0.9);
  animation: liveDot 1s ease-in-out infinite alternate;
}

@keyframes liveDot {
  to {
    transform: scale(1.28);
  }
}

.cta-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(210px, 1fr));
  gap: 1rem;
  max-width: 780px;
}

.cta {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 6rem;
  overflow: hidden;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 1.35rem;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.09), rgba(255,255,255,0.035)),
    rgba(6, 10, 18, 0.78);
  box-shadow: var(--shadow);
  text-decoration: none;
  isolation: isolate;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.18s ease;
}

.cta-kick::before {
  background: linear-gradient(135deg, rgba(9,255,117,0.38), rgba(9,255,117,0.05));
}

.cta-youtube::before {
  background: linear-gradient(135deg, rgba(255,35,79,0.40), rgba(255,35,79,0.04));
}

.cta-twitch::before {
  background: linear-gradient(135deg, rgba(145,70,255,0.44), rgba(145,70,255,0.05));
}

.cta:hover {
  transform: translateY(-4px);
}

.cta:hover::before,
.cta.is-live::before {
  opacity: 1;
}

.cta.is-live {
  border-color: rgba(9,255,117,0.72);
  box-shadow:
    0 0 0 1px rgba(9,255,117,0.2),
    0 0 54px rgba(9,255,117,0.28),
    var(--shadow);
}

.cta-youtube.is-live {
  border-color: rgba(255,35,79,0.72);
  box-shadow:
    0 0 0 1px rgba(255,35,79,0.18),
    0 0 54px rgba(255,35,79,0.22),
    var(--shadow);
}

.cta-twitch.is-live {
  border-color: rgba(145,70,255,0.78);
  box-shadow:
    0 0 0 1px rgba(145,70,255,0.22),
    0 0 54px rgba(145,70,255,0.28),
    var(--shadow);
}

.cta-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 3.3rem;
  height: 3.3rem;
  border-radius: 999px;
  color: #001007;
  background: var(--green);
  box-shadow: 0 0 30px rgba(9,255,117,0.48);
  font-size: 1.2rem;
  font-weight: 1000;
}

.cta-youtube .cta-icon {
  color: white;
  background: var(--red);
  box-shadow: 0 0 30px rgba(255,35,79,0.45);
}

.cta-twitch .cta-icon {
  color: white;
  background: var(--twitch);
  box-shadow: 0 0 30px rgba(145,70,255,0.48);
}

.cta.is-live .cta-icon {
  animation: beat 1.1s ease-in-out infinite;
}

@keyframes beat {
  50% {
    transform: scale(1.08);
  }
}

.cta strong,
.cta small {
  display: block;
}

.cta strong {
  font-size: 1.04rem;
  font-weight: 1000;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.cta small {
  margin-top: 0.28rem;
  color: #b7c4bd;
  font-weight: 700;
}

.mini-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.15rem;
}

.mini-links a {
  padding: 0.72rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,0.055);
  color: #e7f4ed;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

.mini-links a:hover {
  color: var(--green);
  border-color: rgba(9,255,117,0.48);
}

.stream-card {
  position: relative;
  overflow: hidden;
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: 2rem;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.04)),
    rgba(6, 10, 18, 0.74);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}

.stream-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(9,255,117,0.65), rgba(56,232,255,0.26), rgba(255,35,79,0.48));
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  pointer-events: none;
}

.stream-card.is-live {
  box-shadow:
    0 0 68px rgba(9,255,117,0.24),
    var(--shadow);
}

.stream-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.card-label {
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 1000;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.card-badge {
  padding: 0.48rem 0.65rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #c8d3cd;
  font-size: 0.7rem;
  font-weight: 1000;
  letter-spacing: 0.12em;
}

.card-badge.is-live {
  color: #001007;
  background: var(--green);
  border-color: var(--green);
  box-shadow: 0 0 28px rgba(9,255,117,0.42);
}

.screen {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 370px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 1.45rem;
  background:
    radial-gradient(circle at 50% 50%, rgba(9,255,117,0.16), transparent 32%),
    radial-gradient(circle at 84% 12%, rgba(139,92,255,0.25), transparent 32%),
    rgba(0,0,0,0.35);
}

.screen::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: radial-gradient(circle, black, transparent 72%);
}

.screen-orb {
  position: absolute;
  width: 16rem;
  height: 16rem;
  border-radius: 999px;
  background:
    radial-gradient(circle at 35% 30%, rgba(255,255,255,0.98), var(--green) 18%, rgba(9,255,117,0.14) 45%, transparent 70%),
    conic-gradient(from 90deg, var(--green), var(--cyan), var(--purple), var(--red), var(--green));
  filter: saturate(1.12);
  opacity: 0.95;
  box-shadow:
    inset 0 0 44px rgba(255,255,255,0.14),
    0 0 60px rgba(9,255,117,0.34),
    0 0 160px rgba(9,255,117,0.14);
  animation: rotate 16s linear infinite;
}

@keyframes rotate {
  to {
    transform: rotate(360deg);
  }
}

.screen-play {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 6rem;
  height: 6rem;
  border-radius: 999px;
  color: #001007;
  background: rgba(255,255,255,0.88);
  font-size: 2rem;
  font-weight: 1000;
  box-shadow: 0 0 44px rgba(255,255,255,0.25);
  backdrop-filter: blur(16px);
}

.equalizer {
  position: absolute;
  right: 1.1rem;
  bottom: 1.1rem;
  display: flex;
  align-items: end;
  gap: 0.35rem;
  height: 3rem;
}

.equalizer span {
  display: block;
  width: 0.4rem;
  height: 1.2rem;
  border-radius: 999px;
  background: var(--green);
  opacity: 0.8;
  animation: bars 1s ease-in-out infinite alternate;
}

.equalizer span:nth-child(2) { animation-delay: 0.12s; }
.equalizer span:nth-child(3) { animation-delay: 0.24s; }
.equalizer span:nth-child(4) { animation-delay: 0.36s; }
.equalizer span:nth-child(5) { animation-delay: 0.48s; }

@keyframes bars {
  to {
    height: 2.8rem;
  }
}

.stream-card-bottom {
  padding: 1rem 0.2rem 0.1rem;
}

.stream-card-bottom h2 {
  margin: 0;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  line-height: 1.1;
}

.stream-card-bottom p {
  margin: 0.6rem 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  padding: 0 clamp(1rem, 5vw, 5.5rem) clamp(3rem, 6vw, 5rem);
}

.proof article {
  min-height: 220px;
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: 1.45rem;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03)),
    rgba(6, 10, 18, 0.66);
  box-shadow: 0 20px 70px rgba(0,0,0,0.32);
  backdrop-filter: blur(18px);
}

.proof span {
  display: grid;
  place-items: center;
  width: 2.65rem;
  height: 2.65rem;
  border-radius: 0.95rem;
  color: #001007;
  background: var(--green);
  font-size: 0.78rem;
  font-weight: 1000;
}

.proof h3 {
  margin: 1.05rem 0 0.55rem;
  font-size: 1.22rem;
  text-transform: uppercase;
}

.proof p {
  margin: 0;
  color: #b9c6bf;
  line-height: 1.62;
}

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin: 0 clamp(1rem, 5vw, 5.5rem) clamp(3rem, 6vw, 5rem);
  padding: clamp(1.5rem, 4vw, 2.35rem);
  border: 1px solid rgba(9,255,117,0.22);
  border-radius: 1.65rem;
  background:
    linear-gradient(135deg, rgba(9,255,117,0.14), rgba(139,92,255,0.12)),
    rgba(6, 10, 18, 0.7);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}

.final-cta h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(1.9rem, 4.5vw, 4rem);
  line-height: 1;
  letter-spacing: -0.06em;
}

.discord-button {
  flex: 0 0 auto;
  padding: 1rem 1.15rem;
  border-radius: 1rem;
  background: #5865f2;
  color: #fff;
  font-weight: 1000;
  text-decoration: none;
  box-shadow: 0 0 36px rgba(88,101,242,0.34);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1.35rem clamp(1rem, 5vw, 5.5rem);
  color: var(--muted);
  border-top: 1px solid rgba(255,255,255,0.08);
  background: rgba(0,0,0,0.34);
}

@media (max-width: 1180px) {
  .cta-row {
    grid-template-columns: repeat(2, minmax(230px, 1fr));
  }
}

@media (max-width: 1080px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .stream-card {
    max-width: 760px;
  }

  .screen {
    min-height: 300px;
  }

  .proof {
    grid-template-columns: 1fr;
  }

  .final-cta {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 700px) {
  .site-header {
    position: relative;
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    width: 100%;
    justify-content: space-between;
  }

  .hero {
    padding-top: 2.4rem;
  }

  h1 {
    font-size: clamp(3rem, 17vw, 5.4rem);
  }

  .cta-row {
    grid-template-columns: 1fr;
  }

  .cta {
    min-height: 5.4rem;
  }

  .screen-orb {
    width: 13rem;
    height: 13rem;
  }
}
