* {
  box-sizing: border-box;
}

:root {
  --bg: #050505;
  --panel: rgba(12, 12, 12, 0.82);
  --white: #f5f7f7;
  --muted: #a9b0b3;
  --green: #39ff4f;
  --green-soft: rgba(57, 255, 79, 0.18);
  --border: rgba(255, 255, 255, 0.10);
}

html,
body {
  margin: 0;
  min-height: 100%;
  background:
    radial-gradient(circle at 50% 20%, rgba(34, 255, 74, 0.10), transparent 32rem),
    linear-gradient(180deg, #080808 0%, #030303 100%);
  color: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
  min-height: 100vh;
}

.page-shell {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: grid;
  grid-template-rows: 1fr auto;
  isolation: isolate;
}

.page-shell::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34vh;
  z-index: -3;
  opacity: 0.25;
  background:
    repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent calc(10% - 1px),
      rgba(255,255,255,0.07) 10%
    ),
    linear-gradient(180deg, transparent 0%, rgba(18, 90, 26, 0.28) 100%);
  transform: perspective(520px) rotateX(62deg);
  transform-origin: bottom;
}

.page-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.7), transparent 75%);
}

.stadium-glow {
  position: absolute;
  top: 11%;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  filter: blur(85px);
  background: rgba(57, 255, 79, 0.12);
  z-index: -1;
}

.stadium-glow-left {
  left: -130px;
}

.stadium-glow-right {
  right: -130px;
}

.hero {
  width: min(760px, calc(100% - 40px));
  margin: auto;
  padding: 56px 30px 44px;
  text-align: center;
}

.logo-wrap {
  width: clamp(154px, 28vw, 230px);
  aspect-ratio: 1;
  margin: 0 auto 22px;
  border-radius: 50%;
  position: relative;
  filter: drop-shadow(0 0 26px rgba(57, 255, 79, 0.18));
}

.logo-wrap::after {
  content: "";
  position: absolute;
  inset: 5%;
  border-radius: 50%;
  box-shadow: 0 0 42px rgba(57, 255, 79, 0.22);
  z-index: -1;
}

.logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  border-radius: 50%;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid rgba(57, 255, 79, 0.48);
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  margin-bottom: 18px;
}

.status-pill::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 12px var(--green);
}

h1 {
  margin: 0;
  font-size: clamp(2.35rem, 7vw, 4.9rem);
  line-height: 0.96;
  letter-spacing: -0.055em;
  font-weight: 900;
  text-transform: uppercase;
}

.tm {
  font-size: 0.24em;
  vertical-align: top;
  margin-left: 0.12em;
  color: var(--green);
}

.headline {
  margin: 20px 0 12px;
  font-size: clamp(1.05rem, 2.3vw, 1.4rem);
  color: var(--white);
  font-weight: 650;
}

.categories {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px 12px;
  color: var(--muted);
  font-size: clamp(0.91rem, 2vw, 1.02rem);
  font-weight: 650;
}

.categories i {
  color: var(--green);
  font-style: normal;
}

.divider {
  width: min(360px, 72%);
  height: 1px;
  margin: 28px auto 26px;
  background: linear-gradient(90deg, transparent, rgba(57,255,79,.8), transparent);
}

.tagline {
  margin: 0;
  text-transform: uppercase;
  font-size: clamp(1.45rem, 4vw, 2.2rem);
  line-height: 1.05;
  font-style: italic;
  font-weight: 900;
  letter-spacing: -0.035em;
}

.tagline span {
  display: block;
  margin-top: 5px;
}

.tagline strong {
  color: var(--green);
}

.supporting-copy {
  max-width: 590px;
  margin: 22px auto 0;
  color: var(--muted);
  line-height: 1.65;
  font-size: 0.98rem;
}

.socials {
  margin: 30px auto 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.socials a {
  color: var(--white);
  text-decoration: none;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.035);
  border-radius: 12px;
  padding: 11px 15px;
  font-size: 0.88rem;
  font-weight: 750;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.socials a:hover,
.socials a:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(57,255,79,.55);
  background: rgba(57,255,79,.08);
  outline: none;
}

footer {
  padding: 20px;
  text-align: center;
  color: rgba(255,255,255,0.38);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

@media (max-width: 520px) {
  .hero {
    width: min(100% - 24px, 760px);
    padding: 34px 16px 30px;
  }

  .logo-wrap {
    margin-bottom: 18px;
  }

  h1 {
    letter-spacing: -0.045em;
  }

  .supporting-copy {
    font-size: 0.92rem;
  }

  .socials {
    flex-direction: column;
  }

  .socials a {
    width: 100%;
  }
}
