*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --ink: #09090b;
  --ink-soft: #141418;
  --paper: #f1efe8;
  --white: #fff;
  --muted: #686863;
  --line: #d6d2c8;
  --red: #ff344f;
  --red-dark: #df1535;
  --purple: #9146ff;
  --purple-bright: #a970ff;
  --max: 1220px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.wrap {
  width: min(calc(100% - 2.5rem), var(--max));
  margin-inline: auto;
}

.sr-only,
.skip-link:not(:focus) {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 100;
  padding: 0.65rem 0.9rem;
  color: var(--ink);
  background: var(--white);
  font-size: 0.8rem;
  font-weight: 800;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  background: rgba(9, 9, 11, 0.76);
  backdrop-filter: blur(18px);
  transition: background 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(9, 9, 11, 0.94);
}

.nav-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-decoration: none;
  text-transform: uppercase;
}

.brand-mark {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--red);
  font-size: 0.85rem;
  font-weight: 950;
  letter-spacing: -0.04em;
  transform: rotate(-4deg);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.8vw, 2.2rem);
}

.site-nav a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--white);
}

.site-nav .nav-cta {
  padding: 0.6rem 0.85rem;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.menu-button {
  display: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  padding: 9.5rem 0 0;
  color: var(--white);
  background: var(--ink);
}

.hero-orbit {
  position: absolute;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
}

.hero-orbit-one {
  width: min(66vw, 860px);
  aspect-ratio: 1;
  top: -45%;
  right: -22%;
  box-shadow: 0 0 0 8rem rgba(255, 52, 79, 0.025), 0 0 0 16rem rgba(145, 70, 255, 0.018);
}

.hero-orbit-two {
  width: 19rem;
  aspect-ratio: 1;
  left: -10rem;
  bottom: 5rem;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(3rem, 7vw, 7.5rem);
  align-items: center;
  padding-bottom: clamp(5rem, 9vw, 8rem);
}

.hero-grid > * {
  min-width: 0;
}

.eyebrow,
.section-label {
  margin: 0 0 1.1rem;
  color: var(--red);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.live-dot {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 5px rgba(255, 52, 79, 0.13);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  50% { box-shadow: 0 0 0 8px rgba(255, 52, 79, 0); }
}

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

h1 {
  margin-bottom: 1.7rem;
  font-size: clamp(4.4rem, 9vw, 8.2rem);
  font-weight: 900;
  letter-spacing: -0.075em;
  line-height: 0.81;
}

h1 span {
  color: var(--red);
}

.hero-lede {
  max-width: 550px;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.61);
  font-size: clamp(1rem, 2vw, 1.15rem);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.8rem 1.15rem;
  border: 1px solid transparent;
  color: var(--white);
  font-size: 0.77rem;
  font-weight: 850;
  letter-spacing: 0.035em;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

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

.button svg {
  width: 18px;
  fill: currentColor;
}

.button-youtube {
  background: var(--red-dark);
}

.button-youtube:hover {
  background: var(--red);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.035);
}

.button-ghost:hover {
  border-color: rgba(255, 255, 255, 0.75);
}

.hero-media {
  position: relative;
  min-width: 0;
}

.media-label,
.twitch-topline {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: rgba(255, 255, 255, 0.44);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.media-label-line {
  height: 1px;
  flex: 1;
  background: rgba(255, 255, 255, 0.13);
}

.video-shell {
  position: relative;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.035);
}

.video-shell::before {
  position: absolute;
  inset: -13px 13px 13px -13px;
  z-index: -1;
  border: 1px solid rgba(255, 52, 79, 0.65);
  content: "";
}

.video-shell iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  border: 0;
  background: #000;
}

.creator-tag {
  position: relative;
  z-index: 2;
  width: min(85%, 385px);
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin: -1.5rem -1rem 0 auto;
  padding: 0.8rem;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.25);
}

.creator-tag img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.creator-tag span {
  display: grid;
  color: var(--muted);
  font-size: 0.67rem;
  line-height: 1.5;
}

.creator-tag strong {
  color: var(--ink);
  font-size: 0.77rem;
}

.channel-rail {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.channel-rail a {
  min-height: 92px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.2rem;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 800;
  text-decoration: none;
  transition: background 0.2s ease;
}

.channel-rail a:hover {
  background: rgba(255, 255, 255, 0.06);
}

.rail-num {
  color: rgba(255, 255, 255, 0.29);
  font-size: 0.58rem;
  letter-spacing: 0.1em;
}

.rail-arrow {
  color: var(--red);
}

.section {
  padding: clamp(5rem, 9vw, 8rem) 0;
}

.section-head {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 3rem;
  align-items: end;
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

h2 {
  margin-bottom: 0;
  font-size: clamp(3rem, 6vw, 5.6rem);
  font-weight: 890;
  letter-spacing: -0.068em;
  line-height: 0.9;
}

.section-side {
  max-width: 470px;
  margin-left: auto;
}

.section-side p,
.connect-intro,
.live-copy > p {
  color: var(--muted);
  font-size: 1rem;
}

.text-link {
  display: inline-flex;
  gap: 0.4rem;
  padding-bottom: 0.2rem;
  border-bottom: 1px solid currentColor;
  color: var(--ink);
  font-size: 0.75rem;
  font-weight: 850;
  text-decoration: none;
}

.text-link span {
  color: var(--red);
}

.video-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.825fr 0.825fr;
  gap: 1.2rem;
  align-items: start;
}

.video-card {
  display: block;
  color: var(--ink);
  text-decoration: none;
}

.video-thumb {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #c7c4bd;
}

.video-card-featured .video-thumb {
  aspect-ratio: 16 / 10.8;
}

.video-thumb::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.48), transparent 52%);
  content: "";
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease, filter 0.45s ease;
}

.video-card:hover .video-thumb img {
  transform: scale(1.035);
  filter: saturate(1.08);
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  padding-left: 3px;
  color: var(--white);
  background: var(--red-dark);
  font-size: 0.8rem;
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease, background 0.2s ease;
}

.video-card:hover .play-button {
  background: var(--red);
  transform: translate(-50%, -50%) scale(1.08);
}

.video-type {
  position: absolute;
  left: 0.85rem;
  bottom: 0.8rem;
  z-index: 2;
  color: var(--white);
  font-size: 0.61rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.video-meta {
  position: relative;
  padding: 1.15rem 0 0;
}

.video-meta > span:first-child {
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.video-meta h3 {
  margin: 0.35rem 0 0;
  padding-right: 1.8rem;
  font-size: clamp(1.08rem, 2vw, 1.45rem);
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.video-card-featured .video-meta h3 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}

.watch-now {
  display: inline-block;
  margin-top: 0.8rem;
  color: var(--red-dark);
  font-size: 0.69rem;
  font-weight: 850;
}

.live {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.live::before {
  position: absolute;
  width: 38rem;
  aspect-ratio: 1;
  right: -15rem;
  bottom: -25rem;
  border: 1px solid rgba(145, 70, 255, 0.28);
  border-radius: 50%;
  box-shadow: 0 0 0 8rem rgba(145, 70, 255, 0.025), 0 0 0 16rem rgba(145, 70, 255, 0.015);
  content: "";
}

.live-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(3rem, 8vw, 8rem);
  align-items: center;
}

.section-label-purple {
  color: var(--purple-bright);
}

.live-copy h2 {
  margin-bottom: 1.5rem;
}

.live-copy > p {
  max-width: 480px;
  margin-bottom: 1.8rem;
  color: rgba(255, 255, 255, 0.53);
}

.button-twitch {
  background: var(--purple);
}

.button-twitch:hover {
  background: var(--purple-bright);
}

.text-link-light {
  color: rgba(255, 255, 255, 0.72);
}

.twitch-card {
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.035);
}

.twitch-topline {
  justify-content: space-between;
  padding: 0.35rem 0.2rem 0.7rem;
  margin: 0;
}

.twitch-topline span:first-child {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.live-dot-purple {
  color: var(--purple-bright);
  box-shadow: 0 0 0 5px rgba(145, 70, 255, 0.13);
}

.twitch-player,
.twitch-player iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  background: #0d0d10;
}

.twitch-placeholder {
  height: 100%;
  display: grid;
  place-content: center;
  justify-items: center;
  text-align: center;
  background: radial-gradient(circle at 50% 20%, rgba(145, 70, 255, 0.25), transparent 45%), #0d0d10;
}

.placeholder-mark {
  width: 72px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--purple);
  font-size: 2rem;
  font-weight: 950;
  transform: rotate(-4deg);
}

.twitch-placeholder p {
  margin: 1rem 0 0.35rem;
  font-size: 0.85rem;
  font-weight: 850;
}

.twitch-placeholder a {
  color: var(--purple-bright);
  font-size: 0.67rem;
  font-weight: 800;
}

.twitch-bottom {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.8rem;
  align-items: center;
  padding: 0.9rem 0.3rem 0.2rem;
}

.twitch-bottom img {
  border-radius: 50%;
}

.twitch-bottom div {
  display: grid;
}

.twitch-bottom strong {
  font-size: 0.75rem;
}

.twitch-bottom div span {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.65rem;
}

.twitch-arrow {
  color: var(--purple-bright);
}

.connect {
  background: var(--white);
}

.section-head-connect {
  margin-bottom: 3rem;
}

.connect-intro {
  max-width: 490px;
  margin: 0 0 0 auto;
}

.link-stack {
  border-top: 1px solid var(--line);
}

.link-stack > a {
  min-height: 116px;
  display: grid;
  grid-template-columns: 70px 1fr 1fr auto;
  gap: 1rem;
  align-items: center;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  text-decoration: none;
  transition: padding 0.25s ease, color 0.25s ease, background 0.25s ease;
}

.link-stack > a:hover {
  padding-inline: 1.1rem;
  color: var(--white);
  background: var(--ink);
}

.link-index {
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.link-name {
  font-size: clamp(1.35rem, 3vw, 2.25rem);
  font-weight: 880;
  letter-spacing: -0.045em;
}

.link-handle {
  color: var(--muted);
  font-size: 0.78rem;
}

.link-stack > a:hover .link-handle,
.link-stack > a:hover .link-index {
  color: rgba(255, 255, 255, 0.5);
}

.link-arrow {
  color: var(--red);
  font-size: 1.25rem;
}

.final-cta {
  color: var(--white);
  background: var(--red-dark);
}

.final-cta .section-label {
  color: rgba(255, 255, 255, 0.62);
}

.final-grid {
  display: grid;
  grid-template-columns: 1.3fr auto;
  gap: 3rem;
  align-items: end;
}

.final-actions {
  display: grid;
  gap: 1rem;
  justify-items: start;
}

.button-light {
  color: var(--ink);
  background: var(--white);
}

.final-discord {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.75rem;
  font-weight: 800;
  text-decoration: none;
}

footer {
  padding: 1.6rem 0;
  color: rgba(255, 255, 255, 0.39);
  background: var(--ink);
  font-size: 0.65rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.5rem;
}

.footer-inner p {
  margin: 0;
}

.footer-inner p:last-child {
  text-align: right;
}

.brand-footer {
  font-size: 0.68rem;
}

.brand-footer .brand-mark {
  width: 25px;
  height: 25px;
  font-size: 0.7rem;
}

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

  .hero-grid {
    gap: 5rem;
  }

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

  .hero-media {
    width: min(100%, 780px);
  }

  .channel-rail {
    grid-template-columns: 1fr 1fr;
  }

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

  .video-card-featured {
    grid-column: 1 / -1;
  }

  .video-card-featured .video-thumb {
    aspect-ratio: 16 / 8.5;
  }

  .live-copy {
    max-width: 700px;
  }

  .twitch-card {
    width: min(100%, 850px);
  }
}

@media (max-width: 720px) {
  .wrap {
    width: min(calc(100% - 1.5rem), var(--max));
  }

  .nav-inner {
    min-height: 64px;
  }

  .menu-button {
    width: 42px;
    height: 42px;
    display: grid;
    place-content: center;
    gap: 6px;
    padding: 0;
    border: 0;
    color: var(--white);
    background: transparent;
    cursor: pointer;
  }

  .menu-button > span:not(.sr-only) {
    width: 22px;
    height: 1px;
    display: block;
    background: currentColor;
    transition: transform 0.2s ease;
  }

  .menu-button[aria-expanded="true"] > span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] > span:nth-child(2) {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .site-nav {
    position: absolute;
    inset: 64px 0 auto;
    display: none;
    align-items: stretch;
    padding: 1rem 0.75rem 1.35rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(9, 9, 11, 0.98);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    padding: 0.8rem 0.3rem;
  }

  .site-nav .nav-cta {
    margin-top: 0.4rem;
    text-align: center;
  }

  .hero {
    padding-top: 8.2rem;
  }

  h1 {
    font-size: clamp(3.65rem, 16vw, 5.75rem);
  }

  h1 span {
    display: block;
  }

  .hero-grid {
    gap: 4rem;
  }

  .creator-tag {
    width: 90%;
    margin-right: 0;
  }

  .section-head,
  .final-grid {
    grid-template-columns: 1fr;
  }

  .section-side,
  .connect-intro {
    max-width: 560px;
    margin-left: 0;
  }

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

  .video-card-featured {
    grid-column: auto;
  }

  .video-card-featured .video-thumb,
  .video-thumb {
    aspect-ratio: 16 / 9.5;
  }

  .link-stack > a {
    grid-template-columns: 44px 1fr auto;
    min-height: 100px;
  }

  .link-handle {
    display: none;
  }

  .footer-inner {
    grid-template-columns: 1fr auto;
  }

  .footer-inner p:nth-child(2) {
    display: none;
  }
}

@media (max-width: 480px) {
  .actions {
    align-items: stretch;
  }

  .hero-copy .button {
    width: 100%;
  }

  .channel-rail {
    grid-template-columns: 1fr;
  }

  .channel-rail a {
    min-height: 64px;
  }

  h2 {
    font-size: clamp(2.75rem, 15vw, 4.1rem);
  }

  .creator-tag {
    width: calc(100% - 0.5rem);
    margin-top: -0.5rem;
  }

  .media-label span:last-child {
    display: none;
  }

  .twitch-bottom {
    grid-template-columns: auto 1fr;
  }

  .twitch-arrow {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

}
