:root {
  --bg: #101114;
  --panel: rgba(255, 255, 255, 0.08);
  --panel-strong: rgba(255, 255, 255, 0.14);
  --text: #f7f4ed;
  --muted: #b9b3a8;
  --line: rgba(255, 255, 255, 0.16);
  --green: #75f0a4;
  --coral: #ff7a66;
  --blue: #72b8ff;
  --yellow: #ffd166;
  --twitch: #9146ff;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--text);
  background:
    linear-gradient(135deg, rgba(117, 240, 164, 0.12), transparent 34%),
    linear-gradient(315deg, rgba(255, 122, 102, 0.14), transparent 38%),
    var(--bg);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

#signalCanvas {
  position: fixed;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  opacity: 0.72;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0;
  backdrop-filter: blur(18px);
}

.brand,
.nav-links {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--green);
  font-size: 0.78rem;
}

.nav-links {
  gap: 8px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(16, 17, 20, 0.58);
}

.nav-links a {
  padding: 10px 12px;
  border-radius: 7px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  background: var(--panel-strong);
  color: var(--text);
}

main {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  display: grid;
  min-height: calc(100vh - 84px);
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.65fr);
  gap: 34px;
  align-items: center;
  padding: 42px 0 76px;
}

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

.eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 18px;
  font-size: clamp(4rem, 12vw, 9.5rem);
  line-height: 0.84;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-text,
.split-section p {
  max-width: 620px;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.18rem);
  line-height: 1.7;
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0 18px;
  font-weight: 800;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button.primary {
  background: var(--green);
  color: #101114;
  box-shadow: 0 16px 40px rgba(117, 240, 164, 0.22);
}

.button.secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.08);
}

.profile-panel {
  display: grid;
  gap: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.06)),
    rgba(16, 17, 20, 0.58);
  box-shadow: var(--shadow);
}

.avatar-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 1 / 1;
  background:
    linear-gradient(135deg, rgba(117, 240, 164, 0.22), transparent 52%),
    linear-gradient(315deg, rgba(114, 184, 255, 0.26), transparent 48%),
    #202229;
}

.avatar {
  position: absolute;
  inset: 18px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.2);
  color: var(--text);
  font-size: clamp(3rem, 8vw, 5.6rem);
  font-weight: 800;
}

.live-dot {
  position: absolute;
  right: 16px;
  bottom: 16px;
  padding: 8px 10px;
  border-radius: 8px;
  background: var(--coral);
  color: #17100f;
  font-size: 0.78rem;
  font-weight: 800;
}

.profile-info {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  border: 1px solid rgba(117, 240, 164, 0.36);
  border-radius: 8px;
  padding: 9px 10px;
  background: rgba(117, 240, 164, 0.1);
  color: var(--green);
  font-size: 0.84rem;
  font-weight: 800;
}

.tag.accent {
  border-color: rgba(114, 184, 255, 0.38);
  background: rgba(114, 184, 255, 0.1);
  color: var(--blue);
}

.tag.warm {
  border-color: rgba(255, 209, 102, 0.38);
  background: rgba(255, 209, 102, 0.1);
  color: var(--yellow);
}

.link-section,
.split-section,
.contact-band {
  padding: 84px 0;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}

.link-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.link-card {
  display: grid;
  min-height: 220px;
  align-content: end;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background:
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.28)),
    rgba(255, 255, 255, 0.08);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.link-card:hover,
.link-card:focus-visible {
  transform: translateY(-5px);
  border-color: rgba(117, 240, 164, 0.62);
  background:
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.22)),
    rgba(255, 255, 255, 0.13);
}

.link-card.twitch {
  background:
    linear-gradient(180deg, rgba(145, 70, 255, 0.2), rgba(0, 0, 0, 0.3)),
    rgba(255, 255, 255, 0.09);
}

.link-kicker {
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.link-card strong {
  font-size: 1.5rem;
}

.link-card span:last-child {
  color: var(--muted);
  line-height: 1.5;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.7fr);
  gap: 34px;
  align-items: center;
}

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

.stats-grid div {
  display: grid;
  gap: 8px;
  min-height: 132px;
  align-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: var(--panel);
}

.stats-grid strong {
  color: var(--green);
  font-size: 1.8rem;
}

.stats-grid span {
  color: var(--muted);
  font-weight: 700;
}

.contact-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.contact-band h2 {
  margin-bottom: 0;
}

footer {
  display: flex;
  justify-content: space-between;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 26px 0 34px;
  color: var(--muted);
  font-size: 0.92rem;
}

footer a {
  font-weight: 800;
}

@media (max-width: 860px) {
  .site-header {
    align-items: flex-start;
    gap: 14px;
  }

  .nav-links {
    overflow-x: auto;
    max-width: 58vw;
  }

  .hero,
  .split-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 54px;
  }

  .profile-panel {
    max-width: 430px;
  }

  .link-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .site-header,
  main,
  footer {
    width: min(100% - 24px, 1120px);
  }

  .site-header,
  .contact-band,
  footer {
    flex-direction: column;
    align-items: stretch;
  }

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

  .nav-links a {
    flex: 1;
    text-align: center;
  }

  h1 {
    font-size: clamp(3.2rem, 21vw, 5.4rem);
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .link-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .link-section,
  .split-section,
  .contact-band {
    padding: 58px 0;
  }
}
