:root {
  --ink: #fff6db;
  --muted: #d8ccdc;
  --cyan: #27d0c7;
  --pink: #f24aad;
  --yellow: #ffe45c;
  --bg: #08070e;
  --line: rgba(255, 246, 219, 0.18);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
  color: inherit;
}

.hero {
  min-height: 92vh;
  display: grid;
  align-items: center;
  padding: 92px 28px 42px;
  background:
    linear-gradient(90deg, rgba(8, 7, 14, 0.92), rgba(8, 7, 14, 0.56) 48%, rgba(8, 7, 14, 0.78)),
    url("/assets/signal-909-landing-hero-01.png") center / cover no-repeat;
  overflow: hidden;
}

.nav {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 18px 28px;
}

.brand,
.links a {
  text-decoration: none;
  font-weight: 900;
}

.brand {
  letter-spacing: 0;
}

.links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  color: var(--muted);
}

.hero-copy {
  max-width: 760px;
}

.mark {
  width: 128px;
  height: 128px;
  display: block;
  margin-bottom: 22px;
  filter: drop-shadow(0 0 24px rgba(39, 208, 199, 0.38));
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--cyan);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  color: var(--ink);
  font-size: 5.2rem;
  line-height: 0.92;
  text-transform: uppercase;
  text-shadow: 6px 6px 0 #000;
}

.lede {
  max-width: 620px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.2rem;
  line-height: 1.55;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.button {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 10px 15px;
  border: 2px solid #05050a;
  border-radius: 8px;
  background: var(--yellow);
  color: #05050a;
  text-decoration: none;
  font-weight: 950;
  box-shadow: 5px 5px 0 var(--pink);
}

.button.secondary {
  background: rgba(8, 7, 14, 0.72);
  color: var(--ink);
  border-color: var(--line);
  box-shadow: none;
}

.socials {
  padding: 52px 28px 68px;
  background:
    linear-gradient(135deg, rgba(39, 208, 199, 0.08), transparent 34%),
    linear-gradient(315deg, rgba(242, 74, 173, 0.1), transparent 42%),
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    #08070e;
  background-size: auto, auto, 44px 44px, 44px 44px;
  border-top: 1px solid var(--line);
}

.socials h2 {
  max-width: 1120px;
  margin: 0 auto 22px;
  font-size: 2.2rem;
  line-height: 1.05;
  text-transform: uppercase;
}

.social-grid {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 12px;
}

.social-link {
  min-height: 72px;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(255, 246, 219, 0.2);
  border-radius: 8px;
  padding: 10px 13px;
  background:
    linear-gradient(110deg, rgba(39, 208, 199, 0.2) 0 24%, transparent 24% 58%, rgba(242, 74, 173, 0.16) 58% 78%, rgba(255, 228, 92, 0.16) 78%),
    rgba(16, 14, 28, 0.88);
  text-decoration: none;
  box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.5);
  transform: translate(0, 0);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease, background 160ms ease;
}

.social-link::after {
  content: "";
  position: absolute;
  right: 13px;
  top: 12px;
  width: 42px;
  height: 18px;
  background:
    linear-gradient(to top, var(--pink) 0 28%, transparent 28%) 0 100% / 5px 100% repeat-x;
  opacity: 0.7;
}

.social-link:hover,
.social-link:focus-visible {
  border-color: rgba(255, 228, 92, 0.84);
  box-shadow: 6px 6px 0 rgba(242, 74, 173, 0.82);
  outline: none;
  transform: translate(2px, 2px);
}

.social-badge {
  width: 48px;
  height: 48px;
  display: inline-grid;
  place-items: center;
  border: 2px solid #05050a;
  border-radius: 6px;
  background: var(--yellow);
  color: #05050a;
  font-weight: 950;
  box-shadow: 3px 3px 0 var(--pink);
}

.social-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.social-copy strong {
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.05;
  text-transform: uppercase;
}

.social-copy span {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.social-instagram .social-badge,
.social-twitch .social-badge {
  background: var(--pink);
}

.social-tiktok .social-badge,
.social-bluesky .social-badge {
  background: var(--cyan);
}

.social-youtube .social-badge,
.social-reddit .social-badge {
  background: var(--ink);
}

@media (max-width: 760px) {
  .hero {
    padding: 34px 18px;
  }

  .nav {
    position: static;
    padding: 16px 0 24px;
  }

  .links {
    display: none;
  }

  h1 {
    font-size: 3.15rem;
  }

  .mark {
    width: 100px;
    height: 100px;
  }

  .social-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .socials {
    padding: 38px 18px 50px;
  }

  .socials h2 {
    font-size: 1.8rem;
  }

  .social-link {
    min-height: 112px;
    grid-template-columns: 1fr;
    align-content: start;
    gap: 9px;
    padding: 11px;
    box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.48);
  }

  .social-link::after {
    width: 30px;
    right: 9px;
    top: 10px;
  }

  .social-badge {
    width: 42px;
    height: 42px;
  }

  .social-copy strong {
    font-size: 0.86rem;
  }

  .social-copy span {
    font-size: 0.78rem;
  }
}
