:root {
  --blue: #0ea5ff;
  --blue-dark: #143e91;
  --green: #19dd8a;
  --yellow: #ffdd2d;
  --purple: #5965f3;
  --pink: #ff2f62;
  --ink: #151722;
  --muted: #6c7282;
  --paper: #f2f5fb;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(16, 24, 40, 0.18);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, system-ui, sans-serif;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 28px clamp(20px, 8vw, 160px);
  color: var(--white);
}

.brand img {
  width: 118px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.site-nav a:not(.button) {
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.55);
}

.site-nav a[aria-current="page"] {
  color: var(--yellow);
}

.nav-toggle {
  display: none;
  border: 0;
  color: var(--white);
  background: transparent;
  font-weight: 900;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 48px;
  padding: 0 28px;
  border: 2px solid transparent;
  border-radius: 4px;
  color: #05060a;
  background: var(--yellow);
  box-shadow: 0 14px 0 rgba(0, 0, 0, 0.1);
  font-weight: 900;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 0 rgba(0, 0, 0, 0.12);
}

.button-small {
  min-height: 42px;
  padding: 0 30px;
  box-shadow: none;
}

.button-large {
  min-width: min(100%, 420px);
  min-height: 66px;
  font-size: clamp(1.05rem, 2.4vw, 1.45rem);
}

.button-discord {
  color: var(--white);
  background: var(--purple);
}

.button-outline {
  color: var(--pink);
  background: transparent;
  border-color: var(--pink);
  box-shadow: none;
}

.button-icon {
  width: 24px;
  height: 24px;
}

.hero {
  min-height: 760px;
  display: grid;
  place-items: center;
  padding: 130px 20px 220px;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(3, 9, 25, 0.2), rgba(3, 9, 25, 0.16) 50%, rgba(242, 245, 251, 0) 88%),
    url("/assets/hero-stadium.jpg") center top / cover no-repeat;
  text-align: center;
}

.hero-content {
  width: min(980px, 100%);
}

.hero h1,
.page-hero h1 {
  margin: 0;
  font-size: clamp(3.2rem, 8vw, 7.6rem);
  line-height: 0.9;
  font-weight: 900;
  letter-spacing: -0.07em;
  text-transform: uppercase;
  text-shadow: 0 8px 26px rgba(0, 0, 0, 0.36);
}

.hero h1 span,
.page-hero h1 span,
.section-heading span {
  color: var(--green);
}

.hero p {
  margin: 22px 0 26px;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.5);
}

.hero-actions {
  display: grid;
  gap: 20px;
  justify-items: center;
}

.logo-break {
  margin-top: -155px;
  min-height: 270px;
  display: grid;
  place-items: center;
  pointer-events: none;
}

.large-logo {
  width: min(360px, 58vw);
  filter: drop-shadow(0 18px 24px rgba(14, 33, 68, 0.25));
}

.section {
  padding: clamp(64px, 8vw, 120px) clamp(20px, 8vw, 150px);
}

.section-light {
  background: var(--paper);
}

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

.section-heading-center {
  display: block;
  text-align: center;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 5rem);
  line-height: 0.95;
  font-weight: 900;
  letter-spacing: -0.06em;
  text-transform: uppercase;
}

.section-heading h2 span {
  color: var(--blue);
}

.arrow-link,
.text-link {
  color: var(--pink);
  font-weight: 900;
  text-transform: uppercase;
}

.section-video {
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(9, 24, 57, 0.86), rgba(9, 24, 57, 0.94)),
    url("/assets/menu-overlay.jpg") center / cover no-repeat;
}

.video-frame {
  width: min(980px, 100%);
  aspect-ratio: 16 / 9;
  margin: 42px auto 0;
  overflow: hidden;
  border: 10px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  background: var(--white);
}

.feature-card {
  padding: clamp(28px, 4vw, 48px);
  border-radius: 26px;
  background: var(--paper);
}

.feature-icon {
  width: 68px;
  height: 68px;
  margin-bottom: 28px;
}

.feature-card h3 {
  display: grid;
  margin: 0 0 18px;
  font-size: clamp(1.9rem, 3vw, 3.1rem);
  line-height: 0.92;
  font-weight: 900;
  letter-spacing: -0.06em;
  text-transform: uppercase;
}

.feature-card h3 span {
  color: var(--blue);
}

.feature-card p,
.article-body p,
.legal-copy p,
.contact-note p {
  color: var(--muted);
  line-height: 1.75;
}

.page-hero {
  padding: 180px 20px 110px;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(4, 11, 29, 0.74), rgba(4, 11, 29, 0.5)),
    url("/assets/hero-stadium.jpg") center top / cover no-repeat;
  text-align: center;
}

.page-hero.compact {
  min-height: 420px;
}

.page-hero p {
  margin: 20px 0 0;
  font-weight: 900;
  text-transform: uppercase;
}

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

.article-body,
.legal-copy {
  width: min(860px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(48px, 7vw, 96px) 0;
}

.article-body h1 {
  margin: 22px 0 10px;
  font-size: clamp(2.8rem, 6vw, 5.8rem);
  line-height: 0.9;
  font-weight: 900;
  letter-spacing: -0.07em;
  text-transform: uppercase;
}

.legal-copy h1 {
  margin: 0 0 28px;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  line-height: 0.92;
  font-weight: 900;
  letter-spacing: -0.06em;
  text-transform: uppercase;
}

.article-body h2,
.legal-copy h2,
.contact-note h2 {
  margin-top: 42px;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.article-body time {
  display: block;
  margin-bottom: 36px;
  color: var(--blue);
  font-weight: 900;
  text-transform: uppercase;
}

.article-body li {
  margin-bottom: 14px;
  color: var(--muted);
  line-height: 1.7;
}

.legal-copy li {
  margin-bottom: 12px;
  color: var(--muted);
  line-height: 1.7;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 38px;
  padding: clamp(56px, 8vw, 110px) clamp(20px, 8vw, 150px);
  background: var(--paper);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  padding: clamp(24px, 4vw, 48px);
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 2px solid #dde4f0;
  border-radius: 10px;
  padding: 16px;
  color: var(--ink);
  background: #fbfcff;
}

.contact-form textarea {
  resize: vertical;
}

.full-span {
  grid-column: 1 / -1;
}

.contact-note {
  align-self: start;
  padding: 32px;
  border-radius: 24px;
  color: var(--white);
  background: var(--blue-dark);
}

.contact-note p {
  color: rgba(255, 255, 255, 0.82);
}

.contact-note .text-link {
  color: var(--yellow);
}

.site-footer {
  color: var(--white);
  background: #07142d;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 42px;
  align-items: center;
  padding: 56px clamp(20px, 8vw, 150px);
}

.vault-logo {
  width: 96px;
  margin-bottom: 18px;
}

.site-footer p {
  max-width: 680px;
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.86rem;
}

.footer-links {
  display: grid;
  gap: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.socials {
  display: flex;
  gap: 16px;
}

.socials a {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}

.social-icon {
  width: 20px;
  height: 20px;
}

@media (max-width: 980px) {
  .site-header {
    position: fixed;
    padding: 18px 20px;
    background: rgba(5, 14, 33, 0.9);
    backdrop-filter: blur(12px);
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 20px;
    display: none;
    min-width: 220px;
    padding: 20px;
    border-radius: 16px;
    background: #07142d;
    box-shadow: var(--shadow);
  }

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

  .features,
  .contact-section,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .section-heading {
    display: grid;
    align-items: start;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: 680px;
    padding-bottom: 170px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 3rem;
  }

  .button-large {
    min-width: 100%;
  }
}

/* Premium launch redesign */
body {
  background:
    radial-gradient(circle at top left, rgba(25, 221, 138, 0.13), transparent 30rem),
    radial-gradient(circle at top right, rgba(14, 165, 255, 0.15), transparent 34rem),
    #06111f;
}

html,
body {
  overflow-x: hidden;
}

main {
  overflow: hidden;
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  width: min(1160px, calc(100% - 32px));
  padding: 12px 14px 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  background: rgba(5, 13, 28, 0.72);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(22px);
  transform: translateX(-50%);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 950;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  color: #06111f;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(255, 221, 45, 0.94)),
    var(--yellow);
  box-shadow: 0 10px 30px rgba(255, 221, 45, 0.2);
  font-size: 0.78rem;
}

.brand-copy {
  display: inline-flex;
  gap: 0.24em;
  color: var(--white);
  font-size: 0.95rem;
}

.brand-copy em {
  color: var(--green);
  font-style: normal;
}

.site-nav {
  gap: 24px;
}

.site-nav a:not(.button) {
  color: rgba(255, 255, 255, 0.76);
  text-shadow: none;
  transition: color 160ms ease;
}

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

.button {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: 999px;
  color: #06111f;
  background: linear-gradient(135deg, #fff6a2, var(--yellow) 44%, #ff9d2d);
  box-shadow: 0 16px 34px rgba(255, 157, 45, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.5);
  letter-spacing: -0.01em;
}

.button::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.62), transparent);
  content: "";
  opacity: 0;
  transform: translateX(-100%);
  transition: opacity 180ms ease, transform 360ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 22px 42px rgba(255, 157, 45, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.56);
}

.button:hover::before,
.button:focus-visible::before {
  opacity: 1;
  transform: translateX(100%);
}

.button-small {
  min-height: 44px;
  padding: 0 24px;
}

.button-large {
  min-width: min(100%, 360px);
}

.button-steam {
  color: #04121f;
}

.button-discord {
  border-color: rgba(255, 255, 255, 0.14);
  color: var(--white);
  background: linear-gradient(135deg, #7680ff, var(--purple));
  box-shadow: 0 16px 34px rgba(89, 101, 243, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.hero {
  position: relative;
  min-height: 100svh;
  padding: 160px clamp(20px, 6vw, 96px) 110px;
  background:
    radial-gradient(circle at 20% 24%, rgba(25, 221, 138, 0.2), transparent 26rem),
    radial-gradient(circle at 78% 20%, rgba(14, 165, 255, 0.26), transparent 28rem),
    linear-gradient(145deg, rgba(5, 12, 28, 0.98), rgba(5, 21, 43, 0.92) 46%, rgba(0, 30, 28, 0.94));
  text-align: left;
}

.hero::before,
.hero::after {
  position: absolute;
  inset: auto;
  pointer-events: none;
  content: "";
}

.hero::before {
  right: -12vw;
  bottom: -24vw;
  width: min(780px, 80vw);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  background:
    linear-gradient(rgba(255, 255, 255, 0.08) 2px, transparent 2px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 2px, transparent 2px);
  background-size: 100% 50%, 50% 100%;
  opacity: 0.38;
}

.hero::after {
  left: 50%;
  bottom: 42px;
  width: min(1060px, calc(100% - 40px));
  height: 170px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 36px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(25, 221, 138, 0.16), rgba(25, 221, 138, 0.02));
  background-size: 88px 100%, 100% 50%, auto;
  transform: translateX(-50%) perspective(600px) rotateX(64deg);
  transform-origin: bottom;
}

.hero-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.68fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.hero-content {
  width: auto;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero .eyebrow,
.section-video .eyebrow {
  color: #7fffc2;
}

.hero h1,
.page-hero h1 {
  max-width: 820px;
  font-size: clamp(3.4rem, 8.4vw, 8.8rem);
  letter-spacing: -0.085em;
  text-wrap: balance;
}

.hero h1 {
  text-shadow: 0 20px 58px rgba(0, 0, 0, 0.42);
}

.hero-lede,
.hero .hero-lede {
  max-width: 690px;
  margin: 24px 0 34px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.08rem, 1.6vw, 1.32rem);
  font-style: normal;
  font-weight: 650;
  line-height: 1.65;
  text-transform: none;
  text-shadow: none;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-items: start;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 700px;
  margin-top: 34px;
}

.hero-metrics span {
  display: grid;
  gap: 6px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  color: rgba(255, 255, 255, 0.68);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  font-size: 0.86rem;
  font-weight: 700;
}

.hero-metrics strong {
  color: var(--white);
  font-size: clamp(1.3rem, 2.2vw, 2rem);
  font-weight: 950;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.section {
  position: relative;
}

.section-light {
  background:
    radial-gradient(circle at top right, rgba(14, 165, 255, 0.12), transparent 28rem),
    linear-gradient(180deg, #f7f9ff, #edf3fb);
}

.section-heading {
  align-items: end;
}

.section-heading h2 {
  max-width: 820px;
  color: #07142d;
  font-weight: 950;
}

.arrow-link,
.text-link {
  color: #e71d56;
}

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.arrow-link::after {
  content: "->";
}

.section-video {
  background:
    radial-gradient(circle at 50% 0%, rgba(14, 165, 255, 0.25), transparent 34rem),
    linear-gradient(180deg, #06111f, #081a30 60%, #06111f);
}

.section-video .section-heading {
  max-width: 820px;
  margin-right: auto;
  margin-left: auto;
}

.section-video .section-heading h2 {
  color: var(--white);
}

.section-video .section-heading p:not(.eyebrow) {
  max-width: 620px;
  margin: 18px auto 0;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

.video-frame {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 34px;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.36);
}

.center-actions {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.features {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background:
    radial-gradient(circle at bottom left, rgba(25, 221, 138, 0.12), transparent 32rem),
    #ffffff;
}

.feature-intro {
  grid-column: 1 / -1;
  max-width: 880px;
  margin-bottom: 18px;
}

.feature-intro h2 {
  margin: 0;
  color: #07142d;
  font-size: clamp(2.5rem, 5.4vw, 5.4rem);
  line-height: 0.92;
  font-weight: 950;
  letter-spacing: -0.075em;
  text-transform: uppercase;
}

.feature-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(7, 20, 45, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(244, 248, 255, 0.92)),
    var(--paper);
  box-shadow: 0 22px 54px rgba(35, 55, 90, 0.1);
}

.feature-card::after {
  position: absolute;
  right: -46px;
  bottom: -46px;
  width: 150px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(14, 165, 255, 0.08);
  content: "";
}

.feature-icon {
  padding: 14px;
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 16px 34px rgba(35, 55, 90, 0.1);
}

.site-footer {
  background: #040b16;
}

.footer-brand {
  margin-bottom: 18px;
  color: var(--white);
}

.vault-logo {
  display: none;
}

@media (max-width: 980px) {
  .site-header {
    top: 12px;
    left: 12px;
    width: calc(100% - 24px);
    transform: none;
  }

  .brand-copy {
    display: none;
  }

  .site-nav {
    right: 0;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 22px;
    background: rgba(5, 13, 28, 0.96);
  }

  .hero-shell {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 720px) {
  .hero {
    min-height: auto;
    padding-top: 130px;
    padding-bottom: 80px;
    padding-inline: 16px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(2.8rem, 13vw, 3.9rem);
    letter-spacing: -0.075em;
  }

  .hero-actions {
    display: grid;
  }

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

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .section {
    padding-inline: 18px;
  }
}

@media (max-width: 520px) {
  .site-header {
    top: 10px;
    left: 10px;
    width: calc(100% - 20px);
    padding: 10px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
    border-radius: 13px;
  }

  .hero-shell {
    display: block;
  }

  .hero h1 {
    font-size: clamp(2.65rem, 12.5vw, 3.35rem);
  }

  .button-large {
    min-width: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}

/* First-viewport conversion tuning */
.hero {
  padding: 132px clamp(20px, 4vw, 72px) 92px;
}

.hero-shell {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.5fr);
  gap: clamp(28px, 4vw, 58px);
}

.hero h1 {
  max-width: 780px;
  font-size: clamp(3.25rem, 6.15vw, 6.6rem);
  line-height: 0.88;
}

.hero-lede,
.hero .hero-lede {
  margin: 20px 0 26px;
}

.hero-metrics {
  margin-top: 24px;
}

@media (max-width: 980px) {
  .hero {
    padding-top: 124px;
  }
}

/* Brand asset and screenshot refinements */
.site-header {
  width: min(1240px, calc(100% - 32px));
  padding-right: 12px;
}

.brand {
  min-width: auto;
}

.brand-logo {
  width: clamp(148px, 16vw, 224px);
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.28));
}

.brand-logo-mark {
  width: 54px;
  border-radius: 14px;
}

.site-nav {
  gap: clamp(34px, 4.5vw, 58px);
}

.site-nav a:not(.button) {
  letter-spacing: 0.1em;
}

.hero-shell {
  grid-template-columns: minmax(0, 0.95fr) minmax(380px, 0.72fr);
  gap: clamp(34px, 5vw, 72px);
}

.hero h1,
.page-hero h1,
.section-heading h2,
.feature-intro h2,
.steam-embed-copy h2,
.article-body h1 {
  letter-spacing: -0.025em;
  word-spacing: 0.045em;
}

.hero h1 {
  max-width: 820px;
  font-size: clamp(3.15rem, 5.7vw, 6.2rem);
  line-height: 1;
}

.hero-lede,
.hero .hero-lede {
  max-width: 660px;
}

.hero-media {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 34px 92px rgba(0, 0, 0, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.18);
  transform: rotate(1deg);
}

.hero-media::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 42%, rgba(2, 8, 18, 0.78));
  content: "";
  pointer-events: none;
}

.hero-screenshot {
  width: 100%;
  min-height: 390px;
  object-fit: cover;
  transform: scale(1.02);
}

.hero-media-caption {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  z-index: 2;
  display: grid;
  gap: 6px;
  color: var(--white);
}

.hero-media-caption strong {
  font-size: clamp(1.4rem, 2.8vw, 2.25rem);
  line-height: 1;
  font-weight: 950;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

.hero-media-caption span {
  max-width: 420px;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 750;
  line-height: 1.45;
}

.steam-embed-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1fr);
  gap: clamp(32px, 6vw, 76px);
  align-items: center;
  padding: clamp(76px, 10vw, 144px) clamp(20px, 8vw, 150px);
  color: var(--white);
  background:
    radial-gradient(circle at 14% 20%, rgba(25, 221, 138, 0.2), transparent 28rem),
    radial-gradient(circle at 82% 18%, rgba(255, 221, 45, 0.16), transparent 30rem),
    linear-gradient(135deg, #07142d, #06111f 64%, #041411);
}

.steam-embed-copy h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.8rem, 6vw, 6.4rem);
  line-height: 0.96;
  font-weight: 950;
  text-transform: uppercase;
}

.steam-embed-copy p:not(.eyebrow) {
  max-width: 610px;
  margin: 22px 0 30px;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.75;
}

.steam-widget {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 34px 92px rgba(0, 0, 0, 0.34);
}

.steam-widget iframe {
  display: block;
  width: 100%;
  height: 190px;
  border: 0;
}

.steam-widgets {
  display: grid;
  gap: 18px;
}

.steam-announcements-card {
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 28px;
  color: var(--white);
  background:
    radial-gradient(circle at top right, rgba(25, 221, 138, 0.16), transparent 14rem),
    rgba(255, 255, 255, 0.07);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.steam-announcements-card h3 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.06;
  font-weight: 950;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.steam-announcements-card p:not(.eyebrow) {
  max-width: 620px;
  margin: 16px 0 24px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
}

.footer-inner {
  grid-template-columns: minmax(0, 1fr) auto auto auto;
}

.footer-brand {
  display: inline-flex;
  margin-bottom: 22px;
}

.footer-game-logo {
  width: min(210px, 52vw);
  filter: drop-shadow(0 12px 22px rgba(0, 0, 0, 0.28));
}

.footer-logo-mark {
  width: 56px;
  border-radius: 18px;
}

.footer-studio {
  display: grid;
  justify-items: center;
}

.vault-logo {
  display: block;
  width: 190px;
  margin: 0;
}

.site-footer p {
  max-width: 760px;
}

@media (max-width: 980px) {
  .brand {
    min-width: auto;
  }

  .brand-logo {
    width: 150px;
  }

  .site-nav {
    gap: 18px;
  }

  .hero-shell {
    grid-template-columns: 1fr;
  }

  .hero-media {
    transform: none;
  }

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

  .steam-embed-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .hero h1 {
    font-size: clamp(2.65rem, 12.4vw, 3.9rem);
    line-height: 1.03;
  }

  .hero-screenshot {
    min-height: 260px;
  }

  .steam-embed-copy h2 {
    font-size: clamp(2.5rem, 11vw, 3.8rem);
  }

  .hero-media-caption {
    right: 16px;
    bottom: 16px;
    left: 16px;
  }
}

/* Readability pass: keep marketing copy punchy without one-word lines. */
.hero-shell {
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.82fr);
  gap: clamp(28px, 4vw, 58px);
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(2.75rem, 4.45vw, 5rem);
  line-height: 1.06;
  letter-spacing: -0.018em;
  word-spacing: 0.025em;
}

.hero-lede,
.hero .hero-lede {
  max-width: 720px;
  font-size: clamp(1rem, 1.2vw, 1.18rem);
}

.steam-embed-section {
  grid-template-columns: minmax(0, 0.95fr) minmax(460px, 1.1fr);
  gap: clamp(30px, 5vw, 64px);
}

.steam-embed-copy h2 {
  max-width: 780px;
  font-size: clamp(2.35rem, 3.65vw, 4.25rem);
  line-height: 1.08;
  letter-spacing: -0.018em;
  word-spacing: 0.025em;
}

.steam-embed-copy p:not(.eyebrow) {
  max-width: 700px;
}

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

  .hero h1,
  .steam-embed-copy h2 {
    max-width: 860px;
  }
}

@media (max-width: 720px) {
  .hero h1 {
    font-size: clamp(2.4rem, 10.4vw, 3.45rem);
  }

  .steam-embed-copy h2 {
    font-size: clamp(2.15rem, 9vw, 3.2rem);
  }

  .steam-announcements-card h3 {
    font-size: clamp(1.65rem, 8vw, 2.45rem);
  }
}

/* Hero feature carousel */
.hero {
  min-height: 100svh;
  padding-top: clamp(94px, 12vh, 118px);
  padding-bottom: clamp(34px, 5vw, 56px);
}

.hero::before,
.hero::after {
  display: none;
}

.hero-showcase-shell {
  grid-template-columns: 1fr;
  gap: clamp(18px, 3vw, 28px);
  align-items: start;
}

.hero-content-centered {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.94fr);
  gap: clamp(18px, 4vw, 54px);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  text-align: left;
}

.hero-content-centered h1 {
  max-width: none;
  font-size: clamp(2.35rem, 4.2vw, 4.55rem);
  line-height: 0.98;
}

.hero-content-centered .hero-lede {
  align-self: end;
}

.hero-content-centered .hero-lede,
.hero-content-centered.hero-content .hero-lede {
  margin: 0 0 18px;
}

.hero-content-centered .hero-actions {
  grid-column: 2;
  justify-content: flex-start;
}

.feature-showcase {
  display: grid;
  gap: 12px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.showcase-media {
  position: relative;
  min-height: clamp(300px, 38vw, 430px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: clamp(24px, 4vw, 42px);
  background:
    radial-gradient(circle at 20% 20%, rgba(25, 221, 138, 0.18), transparent 26rem),
    rgba(255, 255, 255, 0.08);
  box-shadow: 0 34px 92px rgba(0, 0, 0, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.showcase-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transform: scale(1.015);
  transition: opacity 420ms ease, transform 620ms ease;
}

.showcase-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.showcase-frame {
  position: relative;
  height: 100%;
  margin: 0;
}

.showcase-frame::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 8, 20, 0.88), rgba(3, 8, 20, 0.42) 44%, rgba(3, 8, 20, 0.12)),
    linear-gradient(180deg, transparent 42%, rgba(2, 8, 18, 0.82));
  content: "";
}

.showcase-image {
  width: 100%;
  height: 100%;
  min-height: clamp(300px, 38vw, 430px);
  object-fit: cover;
  transform: scale(1.02);
}

.showcase-caption {
  position: absolute;
  bottom: clamp(18px, 3.4vw, 34px);
  left: clamp(20px, 4vw, 42px);
  z-index: 1;
  width: min(620px, calc(100% - 44px));
  color: var(--white);
}

.showcase-caption h2 {
  margin: 0;
  font-size: clamp(1.95rem, 3.8vw, 3.95rem);
  line-height: 0.96;
  font-weight: 950;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  text-wrap: balance;
}

.showcase-caption p:not(.eyebrow) {
  max-width: 580px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(0.92rem, 1.1vw, 1.04rem);
  font-weight: 650;
  line-height: 1.65;
}

.showcase-controls {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(128px, 1fr));
  gap: 8px;
}

.showcase-tab {
  position: relative;
  min-height: 46px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 14px;
  padding: 11px 12px 13px;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  cursor: pointer;
  font-size: 0.64rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-align: left;
  text-transform: uppercase;
  transition: border-color 180ms ease, color 180ms ease, background 180ms ease, transform 180ms ease;
}

.showcase-tab::before {
  position: absolute;
  right: auto;
  bottom: 0;
  left: 0;
  width: calc(var(--progress, 0) * 100%);
  height: 4px;
  background: linear-gradient(90deg, var(--green), var(--yellow));
  content: "";
  transition: width 90ms linear;
}

.showcase-tab span {
  position: relative;
  z-index: 1;
}

.showcase-tab:hover,
.showcase-tab:focus-visible,
.showcase-tab[aria-selected="true"] {
  border-color: rgba(25, 221, 138, 0.55);
  color: var(--white);
  background: rgba(25, 221, 138, 0.12);
}

.showcase-tab[aria-selected="true"] {
  transform: translateY(-2px);
}

/* Steam updates embed */
.steam-updates-section {
  grid-template-columns: minmax(0, 940px);
  justify-content: center;
  text-align: center;
}

.steam-updates-intro {
  max-width: 860px;
  margin: 0 auto;
}

.steam-updates-intro h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(2.35rem, 4.7vw, 5.2rem);
  line-height: 1.02;
  font-weight: 950;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  text-wrap: balance;
}

.steam-updates-intro p:not(.eyebrow) {
  max-width: 720px;
  margin: 22px auto 0;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.75;
}

.steam-updates-intro .button {
  margin-top: 26px;
}

.steam-updates-widgets {
  width: min(860px, 100%);
  margin: 30px auto 0;
  text-align: left;
}

/* Footer balance pass */
.footer-inner {
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas:
    "main studio"
    "links socials";
  gap: 28px clamp(32px, 6vw, 72px);
  align-items: center;
  padding-block: clamp(42px, 6vw, 68px);
}

.footer-main {
  grid-area: main;
}

.footer-studio {
  grid-area: studio;
  justify-items: end;
}

.footer-links {
  grid-area: links;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  align-items: center;
}

.socials {
  grid-area: socials;
  justify-content: flex-end;
}

.footer-brand {
  margin-bottom: 16px;
}

@media (max-width: 980px) {
  .footer-inner {
    grid-template-columns: 1fr;
    grid-template-areas:
      "main"
      "studio"
      "links"
      "socials";
    justify-items: center;
    text-align: center;
  }

  .footer-studio,
  .socials {
    justify-content: center;
    justify-items: center;
  }

  .footer-links {
    justify-content: center;
  }
}

@media (max-width: 720px) {
  .hero {
    min-height: auto;
    padding-top: 112px;
  }

  .hero-content-centered {
    display: block;
    text-align: left;
  }

  .hero-content-centered .hero-actions {
    justify-content: stretch;
  }

  .showcase-media,
  .showcase-image {
    min-height: 430px;
  }

  .showcase-frame::after {
    background:
      linear-gradient(180deg, rgba(3, 8, 20, 0.12), rgba(3, 8, 20, 0.86)),
      linear-gradient(90deg, rgba(3, 8, 20, 0.72), rgba(3, 8, 20, 0.24));
  }

  .showcase-caption {
    right: 18px;
    bottom: 24px;
    left: 18px;
    width: auto;
  }

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

  .showcase-tab {
    min-height: 50px;
    font-size: 0.64rem;
  }
}

.brand-logo.brand-logo-mark {
  width: 54px;
}

.footer-game-logo.footer-logo-mark {
  width: 56px;
}

/* Latest layout pass: sharper logo, compact CTA hero, light updates section. */
.brand-logo.brand-logo-full {
  width: 64px;
  border-radius: 0;
}

.footer-game-logo.footer-logo-full {
  width: 116px;
  border-radius: 0;
}

.hero {
  place-items: start center;
  padding-top: 128px;
  padding-bottom: clamp(28px, 4vw, 44px);
}

.hero-showcase-shell {
  gap: clamp(28px, 4vw, 50px);
  width: min(1200px, 100%);
}

.hero-content-centered {
  display: flex;
  width: 100%;
  max-width: 1200px;
  padding-top: 0;
}

.hero-content-centered h1 {
  display: flex;
  width: 100%;
  max-width: none;
  font-size: clamp(2.05rem, 2.9vw, 3.55rem);
  line-height: 0.96;
  text-wrap: auto;
}

.hero-copy-compact {
  flex: 1 1 320px;
  max-width: 420px;
}

.hero-content-centered .hero-lede,
.hero-content-centered.hero-content .hero-lede {
  max-width: 100%;
  margin-bottom: 10px;
  font-size: clamp(0.78rem, 0.82vw, 0.88rem);
  line-height: 1.38;
}

.hero-content-centered .hero-actions {
  grid-column: auto;
  gap: 10px;
}

.hero-content-centered .button-large {
  gap: 8px;
  min-width: min(100%, 176px);
  min-height: 48px;
  padding: 0 16px;
  font-size: clamp(0.74rem, 0.78vw, 0.84rem);
}

.hero-content-centered .button-icon {
  width: 18px;
  height: 18px;
}

.feature-showcase-actions {
  justify-content: center;
  margin-top: clamp(28px, 4vw, 48px);
}

.feature-showcase {
  width: min(1200px, 100%);
}

.showcase-media {
  min-height: 0;
  border-radius: 28px;
}

.showcase-media::before {
  display: block;
  padding-top: 52%;
  content: "";
}

.showcase-image {
  min-height: 0;
}

.showcase-slide,
.showcase-frame {
  position: absolute;
  inset: 0;
}

.showcase-caption {
  bottom: clamp(18px, 3.1vw, 34px);
  left: clamp(20px, 3.6vw, 42px);
  width: min(640px, calc(100% - 40px));
}

.showcase-caption h2 {
  font-size: clamp(2.15rem, 4vw, 4.2rem);
}

.showcase-caption p:not(.eyebrow) {
  max-width: 560px;
  margin-top: 10px;
  font-size: clamp(0.92rem, 1.05vw, 1.06rem);
  line-height: 1.56;
}

.showcase-controls {
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 8px;
}

.showcase-tab {
  min-height: 48px;
  border-radius: 14px;
  padding: 10px 11px 12px;
  font-size: clamp(0.5rem, 0.62vw, 0.66rem);
  letter-spacing: 0.052em;
}

.steam-updates-section {
  display: block;
  padding-block: clamp(48px, 7vw, 82px);
  text-align: left;
  color: #07142d;
  background:
    radial-gradient(circle at top right, rgba(14, 165, 255, 0.12), transparent 28rem),
    linear-gradient(180deg, #f7f9ff, #edf3fb);
}

.steam-updates-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1fr);
  gap: clamp(24px, 4vw, 52px);
  align-items: center;
  width: min(1200px, 100%);
  margin-inline: auto;
}

.steam-updates-intro {
  max-width: 680px;
  margin: 0;
}

.steam-updates-intro .eyebrow {
  color: var(--green);
}

.steam-updates-intro h2 {
  color: #07142d;
  font-size: clamp(2rem, 3.25vw, 3.7rem);
  line-height: 1;
}

.steam-updates-intro p:not(.eyebrow) {
  max-width: 600px;
  margin-top: 16px;
  margin-inline: 0;
  color: var(--muted);
  line-height: 1.6;
}

.steam-updates-widgets {
  width: 100%;
  margin: 0;
}

.steam-updates-section .steam-widget {
  border-color: rgba(7, 20, 45, 0.1);
  background: var(--white);
  box-shadow: 0 18px 48px rgba(35, 55, 90, 0.12);
}

@media (max-width: 980px) {
  .hero-content-centered {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .hero-content-centered .hero-lede,
  .hero-content-centered.hero-content .hero-lede {
    max-width: 620px;
    margin-top: 12px;
  }

  .hero-content-centered .hero-actions {
    grid-column: auto;
  }

  .steam-updates-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .steam-updates-intro,
  .steam-updates-intro p:not(.eyebrow) {
    margin-inline: auto;
  }

  .steam-updates-widgets {
    width: min(760px, 100%);
    margin-inline: auto;
  }
}

@media (max-width: 720px) {
  .brand-logo.brand-logo-full {
    width: 54px;
  }

  .hero-content-centered h1 {
    font-size: clamp(2.05rem, 9vw, 3rem);
  }

  .hero-content-centered {
    display: block;
  }

  .hero-content-centered .hero-lede,
  .hero-content-centered.hero-content .hero-lede {
    max-width: 100%;
    margin: 12px 0 14px;
    font-size: 0.88rem;
  }

  .hero-content-centered .hero-actions {
    display: grid;
  }

  .feature-showcase-actions {
    display: grid;
    margin-top: 14px;
  }

  .hero-content-centered .button-large {
    width: 100%;
    min-width: 0;
    font-size: 0.8rem;
  }

  .showcase-media,
  .showcase-image {
    min-height: 390px;
  }

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

  .showcase-caption h2 {
    font-size: clamp(1.95rem, 8.6vw, 2.75rem);
  }

  .showcase-caption p:not(.eyebrow) {
    font-size: 0.84rem;
    line-height: 1.45;
  }
}

.site-header {
  top: 12px;
  padding-block: 8px;
  padding-inline: clamp(24px, 3vw, 42px);
}

.site-nav {
  flex: 1;
  gap: clamp(16px, 2.2vw, 28px);
  margin-left: clamp(22px, 3vw, 46px);
}

.site-nav a:not(.button) {
  order: 3;
}

.site-nav > a:not(.button):first-of-type {
  margin-left: auto;
}

.site-nav .button:not(.header-discord-button) {
  order: 4;
  margin-left: clamp(8px, 1.8vw, 24px);
  padding-inline: 28px;
}

.header-socials {
  order: 1;
  display: inline-flex;
  align-items: center;
  gap: clamp(18px, 2vw, 28px);
}

.header-social-link {
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.72);
  opacity: 0.72;
  transition: color 160ms ease, opacity 160ms ease, transform 160ms ease;
}

.header-social-link:hover,
.header-social-link:focus-visible {
  color: var(--white);
  opacity: 1;
  transform: translateY(-1px);
}

.header-social-icon {
  width: 18px;
  height: 18px;
}

.header-discord-button {
  order: 2;
  gap: 8px;
  min-height: 40px;
  padding-inline: 18px;
  border-color: rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.header-discord-button .button-icon {
  width: 18px;
  height: 18px;
}

.brand-logo.brand-logo-full {
  width: 58px;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 760px);
  grid-template-areas:
    "links"
    "socials"
    "legal"
    "main";
  justify-content: center;
  justify-items: center;
  gap: 22px;
  padding: clamp(42px, 6vw, 64px) 20px;
  text-align: center;
}

.footer-main {
  grid-area: main;
}

.footer-studio {
  display: none;
}

.vault-logo {
  display: none;
}

.site-footer p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.9rem;
  line-height: 1.8;
}

.footer-links {
  justify-content: center;
  gap: clamp(18px, 4vw, 34px);
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1rem, 1.6vw, 1.28rem);
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.socials {
  grid-area: socials;
  gap: 18px;
  justify-content: center;
}

.footer-primary-links {
  grid-area: links;
}

.footer-legal-links {
  grid-area: legal;
  color: #7fffc2;
  font-size: 1rem;
}

.socials a {
  width: 28px;
  height: 28px;
  background: transparent;
  opacity: 0.58;
  transition: opacity 160ms ease, transform 160ms ease;
}

.socials a:hover,
.socials a:focus-visible {
  opacity: 1;
  transform: translateY(-2px);
}

.social-icon {
  width: 24px;
  height: 24px;
}

@media (max-width: 980px) {
  .footer-inner {
    grid-template-columns: minmax(0, 720px);
    grid-template-areas:
      "links"
      "socials"
      "legal"
      "main";
  }

  .footer-studio,
  .footer-links,
  .socials {
    justify-content: center;
    justify-items: center;
  }
}
