:root {
  color-scheme: dark;
  --bg: #08080a;
  --surface: #101014;
  --surface-2: #17171d;
  --line: rgba(255, 255, 255, 0.14);
  --line-strong: rgba(255, 255, 255, 0.26);
  --text: #f7f7fb;
  --muted: #bfc0c8;
  --red: #ef003d;
  --red-2: #aa082e;
  --cyan: #53f5ff;
  --shadow: rgba(239, 0, 61, 0.28);
  --max: 1160px;
  --font-display: Impact, Haettenschweiler, "Arial Black", sans-serif;
  --font-body: Inter, "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(239, 0, 61, 0.18), transparent 34rem),
    linear-gradient(180deg, #0a0a0d 0%, var(--bg) 42%, #050507 100%);
  font-family: var(--font-body);
  line-height: 1.6;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, black, transparent 78%);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 14px max(22px, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid var(--line);
  background: rgba(8, 8, 10, 0.86);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 1.45rem;
  line-height: 1;
  text-transform: uppercase;
}

.brand span span,
.hero h1 span,
.section-heading h2 span {
  color: var(--red);
}

.brand-mark {
  width: 42px;
  height: 42px;
  filter: drop-shadow(0 0 18px var(--shadow));
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-nav a {
  min-height: 42px;
  padding: 10px 16px;
  border: 1px solid transparent;
  font-size: 0.92rem;
  font-weight: 800;
  text-transform: uppercase;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.06);
}

.site-nav .nav-discord {
  border-color: rgba(239, 0, 61, 0.7);
  background: linear-gradient(135deg, var(--red), var(--red-2));
  box-shadow: 0 0 24px rgba(239, 0, 61, 0.26);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero,
.subhero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero {
  min-height: clamp(460px, calc(100svh - 120px), 660px);
}

.hero-image,
.subhero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-scrim,
.subhero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 8, 10, 0.96), rgba(8, 8, 10, 0.72) 32%, rgba(8, 8, 10, 0.12) 68%),
    linear-gradient(180deg, rgba(8, 8, 10, 0.1), rgba(8, 8, 10, 0.88));
}

.hero-content,
.subhero-content {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: inherit;
  padding: 48px 0;
}

.eyebrow,
.card-kicker,
.panel-label {
  margin: 0 0 10px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero h1,
.subhero h1,
.section-heading h2,
.feature-copy h2,
.about-main h2,
.tag-panel h2 {
  margin: 0;
  font-family: var(--font-display);
  line-height: 0.95;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  font-size: 5.7rem;
}

.hero h1 span {
  display: block;
}

.hero-copy {
  max-width: 580px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.2rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid var(--line-strong);
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

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

.button-primary {
  border-color: rgba(239, 0, 61, 0.78);
  background: linear-gradient(135deg, var(--red), var(--red-2));
  box-shadow: 0 0 30px rgba(239, 0, 61, 0.24);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.06);
}

.button-icon {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  background: rgba(0, 0, 0, 0.22);
  font-size: 0.72rem;
}

.quick-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 170px));
  gap: 10px;
  max-width: 650px;
  margin: 36px 0 0;
}

.quick-stats div,
.game-card,
.discord-panel,
.tag-panel,
.timeline-list article,
.casting-strip,
.journey-grid article {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 34%),
    rgba(16, 16, 20, 0.86);
}

.quick-stats div {
  min-height: 88px;
  padding: 16px;
}

.quick-stats dt {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.quick-stats dd {
  margin: 4px 0 0;
  font-weight: 900;
}

.section-panel,
.split-section,
.about-layout,
.casting-strip,
.journey-section {
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
}

.section-panel {
  padding: 76px 0 34px;
}

.section-first {
  padding-top: 56px;
}

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

.section-heading h2,
.feature-copy h2,
.about-main h2,
.tag-panel h2,
.casting-strip h2 {
  font-size: 3rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.game-card {
  min-height: 260px;
  padding: 28px;
}

.card-ribbon {
  position: absolute;
  top: -24px;
  right: 24px;
  width: 80px;
  height: 145px;
  background: linear-gradient(180deg, var(--red), transparent);
  opacity: 0.65;
  transform: skewX(-24deg);
}

.game-card h3,
.discord-panel h3,
.timeline-list h3,
.journey-grid h3,
.rsc-status-card h3 {
  position: relative;
  margin: 0;
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.game-card p:not(.card-kicker),
.discord-panel p,
.feature-copy p,
.about-main p,
.timeline-list p,
.subhero p,
.casting-strip p,
.journey-grid p,
.rsc-info-band p {
  color: var(--muted);
}

.casting-strip {
  display: grid;
  grid-template-columns: minmax(260px, 0.44fr) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  margin-top: 18px;
  padding: 24px 28px;
}

.casting-strip::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  content: "";
  background: var(--cyan);
  box-shadow: 0 0 28px rgba(83, 245, 255, 0.22);
}

.casting-strip h2 {
  margin: 0;
  font-family: var(--font-display);
  line-height: 0.95;
  text-transform: uppercase;
}

.casting-strip p {
  margin: 0;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: 24px;
  align-items: stretch;
  padding: 56px 0 82px;
}

.feature-copy {
  align-self: center;
}

.discord-panel,
.tag-panel {
  padding: 28px;
}

.discord-panel::before,
.tag-panel::before,
.timeline-list article::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  content: "";
  background: var(--red);
  box-shadow: 0 0 28px var(--shadow);
}

.discord-panel .button {
  margin-top: 12px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
  padding: 26px 0 34px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer p {
  margin: 0;
}

.subhero {
  min-height: 360px;
}

.subhero-scrim {
  background:
    linear-gradient(90deg, rgba(8, 8, 10, 0.96), rgba(8, 8, 10, 0.76) 46%, rgba(8, 8, 10, 0.28)),
    linear-gradient(180deg, rgba(8, 8, 10, 0.04), rgba(8, 8, 10, 0.9));
}

.subhero-content {
  display: flex;
  flex-direction: column;
  justify-content: end;
  min-height: 360px;
  padding: 70px 0 54px;
}

.subhero h1 {
  max-width: 780px;
  font-size: 4.2rem;
}

.subhero p {
  max-width: 680px;
  margin: 18px 0 0;
  font-size: 1.08rem;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.42fr);
  gap: 24px;
  padding: 72px 0 24px;
}

.about-main {
  padding-right: 20px;
}

.about-main p {
  max-width: 760px;
  font-size: 1.05rem;
}

.tag-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.tag-list li {
  display: grid;
  gap: 4px;
  padding: 14px;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.18);
}

.tag-list span {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.tag-list strong {
  overflow-wrap: anywhere;
}

.timeline-list {
  display: grid;
  gap: 14px;
}

.timeline-list article {
  display: grid;
  grid-template-columns: 70px minmax(180px, 240px) minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  min-height: 128px;
  padding: 24px 28px;
}

.timeline-list span {
  color: var(--red);
  font-family: var(--font-display);
  font-size: 2.6rem;
  line-height: 1;
}

.timeline-list p {
  margin: 0;
}

.journey-section {
  padding: 18px 0 82px;
}

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

.journey-grid article {
  min-height: 220px;
  padding: 24px;
}

.journey-grid article::after {
  position: absolute;
  right: 18px;
  bottom: -62px;
  width: 96px;
  height: 96px;
  content: "";
  border: 1px solid rgba(239, 0, 61, 0.34);
  transform: rotate(45deg);
}

.journey-grid span {
  display: block;
  margin-bottom: 16px;
  color: var(--cyan);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.journey-grid h3 {
  font-size: 1.8rem;
}

.journey-grid p {
  position: relative;
  margin: 14px 0 0;
}

.rsc-page {
  background:
    radial-gradient(circle at 82% 12%, rgba(24, 158, 255, 0.22), transparent 28rem),
    linear-gradient(180deg, #102847 0%, #071021 42%, #050507 100%);
}

.rsc-hero {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  border-bottom: 1px solid rgba(55, 172, 255, 0.2);
  background:
    linear-gradient(135deg, rgba(8, 15, 32, 0.96), rgba(18, 54, 90, 0.78)),
    radial-gradient(circle at 78% 42%, rgba(239, 0, 61, 0.24), transparent 24rem);
}

.rsc-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    radial-gradient(circle at 82% 56%, transparent 0 82px, rgba(83, 245, 255, 0.18) 83px 85px, transparent 86px);
  background-size: 64px 64px, 64px 64px, auto;
  opacity: 0.65;
}

.rsc-hero::after {
  position: absolute;
  right: -8vw;
  bottom: -160px;
  width: min(520px, 70vw);
  aspect-ratio: 1;
  content: "";
  border: 1px solid rgba(83, 245, 255, 0.2);
  transform: rotate(45deg);
}

.rsc-hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.35fr);
  gap: 26px;
  align-items: end;
  width: min(var(--max), calc(100% - 44px));
  min-height: inherit;
  margin: 0 auto;
  padding: 58px 0;
}

.rsc-lockup {
  display: flex;
  gap: 26px;
  align-items: center;
}

.rsc-badge {
  display: grid;
  place-items: center;
  width: 106px;
  height: 124px;
  background:
    linear-gradient(180deg, rgba(83, 245, 255, 0.28), rgba(239, 0, 61, 0.16)),
    #0b1428;
  clip-path: polygon(50% 0, 93% 20%, 93% 76%, 50% 100%, 7% 76%, 7% 20%);
  box-shadow: 0 0 34px rgba(83, 245, 255, 0.18);
}

.rsc-badge span {
  display: grid;
  place-items: center;
  width: 78px;
  height: 92px;
  border: 2px solid rgba(247, 247, 251, 0.88);
  color: var(--text);
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
  clip-path: polygon(50% 0, 93% 20%, 93% 76%, 50% 100%, 7% 76%, 7% 20%);
}

.rsc-hero h1,
.rsc-info-band h2 {
  margin: 0;
  font-family: var(--font-display);
  line-height: 0.95;
  text-transform: uppercase;
}

.rsc-hero h1 {
  font-size: clamp(4rem, 10vw, 7.5rem);
}

.rsc-coming-soon {
  justify-self: end;
  min-width: 220px;
  padding: 22px;
  border: 1px solid rgba(83, 245, 255, 0.24);
  background: rgba(5, 9, 22, 0.72);
  box-shadow: 0 0 28px rgba(83, 245, 255, 0.08);
}

.rsc-coming-soon p {
  margin: 0;
  color: var(--cyan);
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
  text-transform: uppercase;
}

.rsc-coming-soon span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
}

.rsc-overview,
.rsc-status-section,
.rsc-info-band {
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
}

.rsc-overview {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 250px)) minmax(180px, auto);
  gap: 16px;
  align-items: stretch;
  padding: 34px 0 18px;
}

.rsc-meta-card,
.rsc-status-card,
.rsc-info-band {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(83, 245, 255, 0.18);
  background:
    linear-gradient(135deg, rgba(83, 245, 255, 0.08), transparent 36%),
    rgba(6, 12, 28, 0.9);
}

.rsc-meta-card {
  min-height: 74px;
  padding: 15px 18px;
}

.rsc-meta-card span,
.rsc-status-card p {
  display: block;
  margin: 0 0 4px;
  color: #22aaff;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.rsc-meta-card strong {
  font-size: 1.1rem;
}

.rsc-signup {
  justify-self: end;
  align-self: stretch;
}

.rsc-status-section {
  padding: 46px 0 34px;
}

.rsc-status-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.rsc-status-card {
  min-height: 210px;
  padding: 26px;
}

.rsc-status-card::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  content: "";
  background: #22aaff;
  box-shadow: 0 0 28px rgba(34, 170, 255, 0.34);
}

.rsc-status-card-confirmed::before {
  background: var(--red);
  box-shadow: 0 0 28px var(--shadow);
}

.rsc-status-card h3 {
  font-size: 2.9rem;
}

.rsc-status-card span {
  display: block;
  margin-top: 14px;
  color: var(--muted);
  font-weight: 700;
}

.rsc-info-band {
  display: grid;
  grid-template-columns: minmax(260px, 0.48fr) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  margin-bottom: 82px;
  padding: 28px;
}

.rsc-info-band h2 {
  font-size: 2.7rem;
}

.rsc-info-band p {
  margin: 0;
}

@media (max-width: 900px) {
  .site-header {
    min-height: 70px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 22px;
    left: 22px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    background: rgba(8, 8, 10, 0.98);
  }

  body.nav-open .site-nav {
    display: flex;
  }

  .site-nav a {
    text-align: center;
  }

  .hero h1 {
    font-size: 3.5rem;
  }

  .hero-copy {
    font-size: 1.05rem;
  }

  .quick-stats,
  .card-grid,
  .split-section,
  .about-layout,
  .casting-strip,
  .journey-grid,
  .rsc-hero-content,
  .rsc-overview,
  .rsc-status-grid,
  .rsc-info-band {
    grid-template-columns: 1fr;
  }

  .section-heading {
    display: block;
  }

  .section-heading h2,
  .feature-copy h2,
  .about-main h2,
  .tag-panel h2,
  .casting-strip h2,
  .rsc-info-band h2 {
    font-size: 2.35rem;
  }

  .rsc-lockup {
    align-items: flex-start;
  }

  .rsc-coming-soon,
  .rsc-signup {
    justify-self: stretch;
  }

  .timeline-list article {
    grid-template-columns: 54px minmax(0, 1fr);
  }

  .timeline-list p {
    grid-column: 2;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding-right: 16px;
    padding-left: 16px;
  }

  .brand {
    font-size: 1.12rem;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .hero {
    min-height: clamp(460px, calc(100svh - 108px), 560px);
  }

  .hero-content,
  .subhero-content,
  .section-panel,
  .split-section,
  .about-layout,
  .casting-strip,
  .journey-section,
  .rsc-hero-content,
  .rsc-overview,
  .rsc-status-section,
  .rsc-info-band,
  .site-footer {
    width: min(100% - 32px, var(--max));
  }

  .hero h1 {
    font-size: 2.75rem;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .quick-stats {
    grid-template-columns: 1fr;
    margin-top: 24px;
  }

  .game-card {
    min-height: 220px;
    padding: 22px;
  }

  .subhero h1 {
    font-size: 2.65rem;
  }

  .rsc-badge {
    width: 82px;
    height: 96px;
  }

  .rsc-badge span {
    width: 60px;
    height: 72px;
    font-size: 1.45rem;
  }

  .rsc-lockup {
    gap: 16px;
  }

  .rsc-status-card {
    min-height: auto;
  }

  .timeline-list article {
    display: block;
  }

  .journey-grid article {
    min-height: auto;
  }

  .timeline-list span,
  .timeline-list h3 {
    margin-bottom: 10px;
  }

  .site-footer {
    display: block;
  }

  .site-footer p + p {
    margin-top: 8px;
  }
}
