:root {
  --bg: #041a31;
  --bg-alt: #003366;
  --surface: rgba(246, 249, 253, 0.97);
  --surface-strong: rgba(234, 241, 249, 0.98);
  --surface-soft: rgba(238, 244, 251, 0.94);
  --line: rgba(181, 201, 230, 0.72);
  --line-strong: rgba(255, 242, 0, 0.4);
  --text: #f8fbff;
  --muted: #5f7498;
  --muted-on-dark: #d6e3f7;
  --blue: #003366;
  --blue-strong: #00264d;
  --gold: #fff200;
  --gold-soft: #d8cb00;
  --shadow: 0 28px 60px rgba(0, 0, 0, 0.42);
  --shadow-soft: 0 14px 30px rgba(0, 0, 0, 0.26);
  --radius: 24px;
  --radius-tight: 16px;
  --content-width: min(1180px, calc(100% - 2rem));
}

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

html {
  scroll-behavior: smooth;
  width: 100%;
  overflow-x: hidden;
  overscroll-behavior-x: none;
}

body {
  margin: 0;
  width: 100%;
  max-width: 100%;
  min-height: 100vh;
  font-family: "Instrument Sans", sans-serif;
  color: var(--blue-strong);
  background:
    radial-gradient(circle at 10% 20%, rgba(255, 242, 0, 0.08), transparent 24%),
    radial-gradient(circle at 88% 16%, rgba(255, 255, 255, 0.08), transparent 22%),
    linear-gradient(160deg, #0b2347 0%, #12345f 48%, #0a2141 100%);
  position: relative;
  overflow-x: hidden;
  overscroll-behavior-x: none;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
}

body::before {
  background:
    linear-gradient(
      120deg,
      transparent 0%,
      rgba(255, 242, 0, 0.05) 20%,
      transparent 40%
    ),
    linear-gradient(
      300deg,
      transparent 0%,
      rgba(255, 255, 255, 0.04) 18%,
      transparent 38%
    );
  animation: beam-drift 18s linear infinite alternate;
}

body::after {
  z-index: -1;
  opacity: 0.24;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), transparent 85%);
}

.page-games {
  background:
    radial-gradient(circle at 15% 15%, rgba(255, 242, 0, 0.08), transparent 32%),
    radial-gradient(circle at 85% 18%, rgba(255, 255, 255, 0.08), transparent 22%),
    linear-gradient(180deg, #0a2347 0%, #133863 40%, #0d2951 100%);
}

.page-contact {
  background:
    radial-gradient(circle at 20% 10%, rgba(255, 242, 0, 0.08), transparent 34%),
    radial-gradient(circle at 90% 25%, rgba(255, 255, 255, 0.08), transparent 24%),
    linear-gradient(180deg, #0b2347 0%, #143963 48%, #0d2b54 100%);
}

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

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

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: #ffffff;
  color: #000000;
  z-index: 20;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 1rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.site-shell {
  width: var(--content-width);
  max-width: calc(100% - 2rem);
  margin: 0 auto;
  padding: 1.2rem 0 2rem;
}

.site-header {
  position: sticky;
  top: 0.8rem;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1.1rem;
  margin-bottom: 1.8rem;
  border: 2px solid rgba(0, 51, 102, 0.94);
  border-radius: calc(var(--radius) + 6px);
  background: #ffffff;
  backdrop-filter: blur(18px);
  box-shadow:
    0 0 0 4px rgba(0, 51, 102, 0.94),
    0 16px 34px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
}

.brand-lockup-logo {
  width: clamp(8.5rem, 16vw, 10.5rem);
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 4px 8px rgba(0, 51, 102, 0.12));
}

.footer-brand {
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.08em;
  font-size: 1.65rem;
  color: var(--blue-strong);
}

.footer-logo {
  width: clamp(8.5rem, 14vw, 10rem);
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 4px 8px rgba(0, 51, 102, 0.12));
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.site-nav-link {
  position: relative;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  color: var(--blue-strong);
  transition:
    color 0.2s ease,
    background-color 0.2s ease,
    transform 0.2s ease;
}

.site-nav-link::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0.32rem;
  width: 0.8rem;
  height: 0.8rem;
  opacity: 0;
  transform: translateY(-50%) scale(0.6);
  transform-origin: center;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
  background: url("assets/branding/brand_mark.png") center / contain no-repeat;
}

.site-nav-link:hover,
.site-nav-link:focus-visible,
.site-nav-link.is-current {
  color: var(--text);
  background: rgba(0, 51, 102, 0.84);
}

.site-nav-link:hover::after,
.site-nav-link:focus-visible::after,
.site-nav-link.is-current::after {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}

.nav-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  padding: 0.65rem;
  border: 1px solid rgba(0, 51, 102, 0.24);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.24);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--blue-strong);
  border-radius: 999px;
  transition: transform 0.2s ease;
}

main {
  display: grid;
  gap: 1.5rem;
}

.hero,
.section,
.site-footer {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(247, 249, 253, 0.98), rgba(235, 241, 248, 0.97));
  box-shadow: 0 28px 60px rgba(3, 15, 36, 0.22);
}

.hero::before,
.section::before,
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    140deg,
    rgba(255, 255, 255, 0.8),
    rgba(255, 255, 255, 0) 28%,
    rgba(255, 242, 0, 0.18) 100%
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.hero {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  padding: clamp(1.5rem, 4vw, 4rem);
  min-height: min(78svh, 740px);
  align-items: center;
}

.hero-home {
  grid-template-columns: 1fr;
  gap: 1.8rem;
  background:
    radial-gradient(circle at 82% 25%, rgba(255, 242, 0, 0.12), transparent 20%),
    linear-gradient(180deg, rgba(249, 251, 255, 0.99), rgba(235, 241, 248, 0.97));
}

.hero-home .hero-art {
  width: 100%;
  justify-items: center;
}

.hero-home .hero-logo-frame {
  display: grid;
  justify-items: center;
  gap: 1rem;
  width: min(100%, 56rem);
  border: 4px solid rgba(0, 51, 102, 0.94);
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.28),
    0 12px 34px rgba(0, 51, 102, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.hero-home .hero-logo-frame::before {
  background: radial-gradient(circle, rgba(0, 51, 102, 0.22), transparent 70%);
}

.hero-home .hero-logo-tagline {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 0;
  padding: 0.35rem 0 0;
  color: var(--blue-strong);
  font-size: clamp(0.98rem, 1.9vw, 1.2rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.35;
  text-align: center;
  text-wrap: balance;
}

.hero-home .hero-note {
  width: min(100%, 34rem);
  justify-self: center;
}

.hero-home .hero-copy {
  width: 100%;
  max-width: 54rem;
  justify-self: start;
}

.hero-home .hero-copy .lead {
  color: var(--blue-strong);
}

.hero-games {
  grid-template-columns: 1fr;
  gap: 1.8rem;
}

.hero-games .hero-art {
  width: 100%;
  justify-items: center;
}

.hero-games .hero-logo-frame {
  width: min(100%, 56rem);
  border: 4px solid rgba(0, 51, 102, 0.94);
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.28),
    0 12px 34px rgba(0, 51, 102, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.hero-games .hero-logo-frame::before {
  background: radial-gradient(circle, rgba(0, 51, 102, 0.22), transparent 70%);
}

.hero-games .hero-copy {
  width: 100%;
  max-width: 56rem;
  justify-self: center;
}

.hero-contact {
  min-height: 34rem;
}

.series-title-frame {
  width: min(100%, 56rem);
  min-height: clamp(8.75rem, 18vw, 11.5rem);
  padding: 0.95rem 1.2rem;
  display: grid;
  place-items: center;
}

.series-title-image {
  display: block;
  width: min(100%, 38rem);
  margin: 0 auto;
  filter: drop-shadow(0 18px 30px rgba(12, 20, 36, 0.16));
}

.games-slate-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(15rem, 0.9fr);
  gap: 1rem;
  align-items: stretch;
}

.games-slate-main,
.games-slate-side {
  border-radius: calc(var(--radius) - 6px);
  box-shadow: 0 24px 54px rgba(3, 15, 36, 0.14);
}

.games-slate-main {
  display: grid;
  align-content: center;
  padding: clamp(1.35rem, 3vw, 2rem);
  border: 1px solid rgba(0, 51, 102, 0.14);
  background:
    linear-gradient(180deg, rgba(250, 252, 255, 0.98), rgba(236, 242, 250, 0.98));
}

.games-slate-main h1 {
  font-size: clamp(2.9rem, 5.6vw, 5.35rem);
  line-height: 0.92;
  letter-spacing: 0.02em;
  max-width: 100%;
}

.games-slate-side {
  position: relative;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 1rem;
  padding: clamp(1.35rem, 3vw, 1.75rem);
  border: 1px solid rgba(191, 210, 238, 0.28);
  background:
    radial-gradient(circle at 50% 15%, rgba(255, 242, 0, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(19, 43, 84, 0.98), rgba(31, 61, 112, 0.94));
  color: var(--text);
  overflow: hidden;
}

.games-slate-mark {
  width: clamp(5.6rem, 12vw, 7.8rem);
  height: auto;
  filter: drop-shadow(0 0 22px rgba(255, 242, 0, 0.34));
  animation: drift 7s ease-in-out infinite;
}

.games-slate-note {
  margin: 0 auto;
  max-width: 19rem;
  color: var(--muted-on-dark);
  text-align: left;
}

.hero-copy,
.hero-art,
.section-heading,
.feature-card,
.showcase-media,
.showcase-copy,
.callout-panel,
.info-panel,
.flow-card,
.feature-case-copy,
.feature-case-art,
.quote-panel,
.cta-card,
.contact-card,
.contact-form-panel,
.contact-side-panel {
  position: relative;
  z-index: 1;
}

.eyebrow,
.section-tag {
  position: relative;
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.35rem;
  width: fit-content;
  margin: 0 0 0.8rem;
  font-size: 0.88rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-soft);
  isolation: isolate;
}

.eyebrow::before,
.section-tag::before {
  content: "";
  width: 1.2rem;
  height: 1.2rem;
  flex: 0 0 auto;
  display: block;
  margin-right: -0.08rem;
  background: url("assets/branding/accent.png") center / contain no-repeat;
  transform: translateY(-0.03rem) scale(2.9);
  transform-origin: center;
  filter: drop-shadow(0 7px 12px rgba(0, 51, 102, 0.18));
}

.eyebrow span,
.section-tag span {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 0.12rem 0.75rem 0.22rem;
  color: #fff26a;
}

.eyebrow span::before,
.section-tag span::before {
  content: "";
  position: absolute;
  inset: -0.08rem -0.48rem -0.12rem;
  z-index: -1;
  border-radius: 0.4rem;
  background:
    linear-gradient(90deg, rgba(0, 51, 102, 0.96), rgba(24, 74, 142, 0.88)),
    radial-gradient(circle at 22% 50%, rgba(255, 255, 255, 0.14), transparent 38%);
  box-shadow:
    0 8px 18px rgba(0, 51, 102, 0.14),
    inset 0 -1px 0 rgba(255, 242, 0, 0.24);
}

.text-link::before,
.footer-links a::before {
  content: "";
  width: 1rem;
  height: 1rem;
  flex: 0 0 1rem;
  background: url("assets/branding/brand_mark.png") center / contain no-repeat;
  filter: drop-shadow(0 0 9px rgba(255, 217, 104, 0.45));
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 0.96;
  letter-spacing: 0.03em;
  text-wrap: balance;
}

h1,
h2 {
  font-family: "Bebas Neue", sans-serif;
}

h1 {
  font-size: clamp(3.6rem, 8vw, 6.6rem);
}

h2 {
  font-size: clamp(2.2rem, 4vw, 4rem);
  margin-bottom: 1rem;
}

.heading-with-glow {
  display: block;
}

.heading-glow-mark {
  margin-left: 0.05em;
  width: auto;
  height: 1.4em;
  display: inline-block;
  vertical-align: -0.14em;
  transform-origin: center bottom;
  animation: drift 7s ease-in-out infinite;
}

h3 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
}

p,
li,
label,
input,
select,
textarea {
  line-height: 1.65;
}

p,
ul {
  margin: 0;
}

.lead {
  font-size: clamp(1.08rem, 2vw, 1.28rem);
  color: var(--muted);
}

.hero-copy {
  display: grid;
  gap: 1.35rem;
}

.hero-actions,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.35rem;
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease,
    background-color 0.2s ease;
}

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

.button-primary {
  border-color: rgba(0, 0, 0, 0.9);
  background: linear-gradient(135deg, #fff200, #fff98a);
  color: var(--blue-strong);
  box-shadow:
    0 18px 36px rgba(255, 242, 0, 0.3),
    0 0 0 1px rgba(255, 248, 184, 0.35) inset;
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow:
    0 22px 42px rgba(255, 242, 0, 0.38),
    0 0 0 1px rgba(255, 250, 196, 0.5) inset;
}

.button-secondary {
  border-color: rgba(0, 51, 102, 0.24);
  background: rgba(0, 51, 102, 0.04);
  color: var(--blue-strong);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(0, 51, 102, 0.58);
  background: rgba(0, 51, 102, 0.84);
  color: var(--text);
}

.text-link,
.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--blue-strong);
  font-weight: 600;
}

.text-link-inline::before {
  display: none;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  list-style: none;
  padding: 0;
}

.hero-stats li {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1rem 1.05rem;
  border: 1px solid rgba(191, 210, 238, 0.24);
  border-radius: var(--radius-tight);
  background:
    linear-gradient(180deg, rgba(19, 43, 84, 0.98), rgba(31, 61, 112, 0.94));
  box-shadow: 0 18px 36px rgba(3, 15, 36, 0.18);
  text-align: center;
}

.hero-stats strong,
.flow-number {
  display: block;
  margin-bottom: 0.2rem;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1.45rem, 3vw, 2.1rem);
  letter-spacing: 0.08em;
}

.hero-stats strong {
  color: #ffffff;
}

.hero-stats span {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.92rem;
}

.hero-stat-callout strong {
  margin-bottom: 0;
  line-height: 0.96;
  letter-spacing: 0.04em;
  text-wrap: balance;
}

.hero-art {
  display: grid;
  gap: 1.2rem;
  justify-items: end;
}

.hero-art-tight {
  align-items: center;
}

.hero-logo-frame,
.panel-image,
.hero-note,
.contact-card,
.contact-form-panel,
.contact-side-panel,
.info-panel,
.quote-panel,
.cta-card {
  border-radius: calc(var(--radius) - 4px);
}

.hero-logo-frame {
  position: relative;
  width: min(100%, 34rem);
  padding: 1.4rem;
  background:
    radial-gradient(circle at 50% 28%, rgba(255, 255, 255, 0.92), transparent 56%),
    linear-gradient(145deg, rgba(247, 249, 255, 0.98), rgba(214, 225, 246, 0.94) 52%, rgba(171, 193, 227, 0.9));
  border: 2px solid rgba(0, 51, 102, 0.94);
  box-shadow:
    0 0 0 4px rgba(255, 242, 0, 0.96),
    0 0 0 7px rgba(0, 51, 102, 0.84),
    0 24px 70px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
  overflow: hidden;
}

.hero-logo-frame::before {
  content: "";
  position: absolute;
  inset: auto 10% -24%;
  height: 42%;
  background: radial-gradient(circle, rgba(255, 242, 0, 0.32), transparent 70%);
  filter: blur(30px);
}

.hero-logo-frame::after {
  content: none;
}

.hero-logo {
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 18px 30px rgba(12, 20, 36, 0.18));
  animation: drift 7s ease-in-out infinite;
}

.hero-note {
  width: min(100%, 28rem);
  padding: 1.25rem 1.3rem;
  border: 1px solid rgba(255, 242, 0, 0.26);
  background: linear-gradient(180deg, rgba(19, 43, 84, 0.98), rgba(31, 61, 112, 0.94));
}

.hero-note-label {
  display: inline-block;
  margin-bottom: 0.45rem;
  color: #fff7a8;
  font-size: 0.82rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.section {
  padding: clamp(1.45rem, 3vw, 2.4rem);
}

.section-heading {
  max-width: 50rem;
}

.section-heading p + p,
.showcase-copy p + p {
  color: var(--muted);
}

.showcase-note-box {
  margin: 0.65rem 0 0.85rem;
  padding: 1.15rem 1.2rem;
  border: 1px solid rgba(191, 210, 238, 0.28);
  border-radius: calc(var(--radius-tight) + 2px);
  background:
    linear-gradient(180deg, rgba(19, 43, 84, 0.98), rgba(31, 61, 112, 0.94));
  box-shadow: 0 18px 36px rgba(3, 15, 36, 0.16);
  color: var(--text) !important;
}

.showcase-button {
  margin-top: 0.95rem;
}

.feature-grid,
.flow-grid,
.dual-panels,
.callout-band {
  display: grid;
  gap: 1rem;
}

.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1.6rem;
}

.feature-card,
.flow-card,
.contact-card,
.info-panel,
.quote-panel,
.cta-card,
.contact-form-panel,
.contact-side-panel {
  padding: 1.4rem;
  border: 1px solid rgba(191, 210, 238, 0.28);
  background:
    linear-gradient(180deg, rgba(19, 43, 84, 0.98), rgba(31, 61, 112, 0.94));
  box-shadow: var(--shadow-soft);
  color: var(--text);
}

.showcase,
.feature-case,
.contact-layout,
.section-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem;
  align-items: center;
}

.contact-layout > :only-child {
  grid-column: 1 / -1;
}

.dual-panels > :only-child {
  grid-column: 1 / -1;
}

.section-split > :only-child {
  grid-column: 1 / -1;
}

.showcase > :only-child {
  grid-column: 1 / -1;
}

.showcase-split {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(18rem, 0.85fr);
  gap: 1.5rem;
  align-items: center;
}

.showcase-main-copy,
.showcase-side-stack {
  display: grid;
  gap: 1rem;
}

.showcase-side-stack {
  align-content: start;
}

.showcase-media img,
.panel-image {
  width: 100%;
  border-radius: calc(var(--radius) - 6px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-soft);
}

.showcase-inline-image {
  margin-top: 0;
}

.callout-band {
  grid-template-columns: 1fr 1.15fr;
}

.callout-panel {
  min-height: 100%;
  padding: clamp(1.4rem, 3vw, 2rem);
  border: 1px solid rgba(191, 210, 238, 0.28);
  border-radius: calc(var(--radius) - 4px);
  background:
    linear-gradient(180deg, rgba(19, 43, 84, 0.98), rgba(31, 61, 112, 0.94));
  color: var(--text);
}

.callout-upcoming {
  display: grid;
  gap: 1rem;
}

.callout-upcoming-header {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  gap: 1rem;
}

.callout-upcoming-header h2 {
  margin: 0;
}

.callout-upcoming-glow {
  display: block;
  justify-self: center;
  width: clamp(6.5rem, 16vw, 10.5rem);
  height: auto;
  margin: 0 auto;
  filter: drop-shadow(0 0 26px rgba(255, 242, 0, 0.34));
  transform-origin: center bottom;
  animation: drift 7s ease-in-out infinite;
}

.callout-suspense-glow {
  margin-top: 1rem;
}

blockquote {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  line-height: 1.08;
}

.detail-list {
  margin: 0;
  padding-left: 1.25rem;
  color: var(--muted-on-dark);
}

.detail-list li + li {
  margin-top: 0.5rem;
}

.flow-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1.35rem;
}

.flow-card {
  min-height: 16rem;
}

.flow-card-image {
  padding: 0.85rem;
  display: grid;
  align-items: center;
}

.flow-card-art {
  height: 100%;
  min-height: 14rem;
  object-fit: cover;
}

.flow-card-glow {
  object-fit: contain;
  width: 100%;
  padding: 0.35rem;
  filter: drop-shadow(0 0 22px rgba(255, 242, 0, 0.28));
  transform-origin: center bottom;
  animation: drift 7s ease-in-out infinite;
}

.flow-card-art-contain {
  object-fit: contain;
  transform-origin: center bottom;
  animation: drift 7s ease-in-out infinite;
}

.flow-number {
  color: var(--gold);
}

.feature-case-copy,
.contact-form-panel {
  display: grid;
  gap: 1rem;
}

.quote-panel {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.steam-callout {
  display: grid;
  justify-items: start;
  gap: 0.35rem;
  margin-top: 0.2rem;
}

.steam-button[disabled] {
  cursor: default;
  opacity: 1;
}

.steam-button[disabled]:hover,
.steam-button[disabled]:focus-visible {
  transform: none;
  box-shadow:
    0 18px 36px rgba(255, 242, 0, 0.3),
    0 0 0 1px rgba(255, 248, 184, 0.35) inset;
}

.steam-note {
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff7a8;
}

.cta-strip {
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.cta-strip::before {
  display: none;
}

.cta-card {
  padding: clamp(1.6rem, 4vw, 2.4rem);
  background:
    radial-gradient(circle at 88% 18%, rgba(255, 242, 0, 0.2), transparent 24%),
    linear-gradient(135deg, rgba(5, 25, 48, 0.98), rgba(0, 51, 102, 0.92));
}

.upcoming-games-card {
  display: grid;
  gap: 1.35rem;
}

.upcoming-game-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 1.4rem;
  align-items: center;
}

.upcoming-game-art {
  padding: 0.9rem;
  border: 1px solid rgba(191, 210, 238, 0.22);
  border-radius: calc(var(--radius) - 6px);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.upcoming-game-image {
  display: block;
  width: 100%;
  border-radius: calc(var(--radius) - 10px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.26);
}

.upcoming-game-copy {
  display: grid;
  gap: 0.9rem;
  align-content: center;
}

.upcoming-game-copy h2 {
  line-height: 0.98;
}

.upcoming-game-status {
  color: #fff7a8;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.contact-form label {
  display: grid;
  gap: 0.45rem;
  font-weight: 600;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(153, 173, 221, 0.24);
  border-radius: 16px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.hero-note p,
.feature-card p,
.info-panel p,
.quote-panel p,
.cta-card p,
.contact-card p,
.contact-side-panel p,
.contact-form-panel p,
.callout-panel p {
  color: var(--muted-on-dark);
}

.contact-side-panel .text-link-inline {
  color: #fff8a6;
}

.contact-privacy-note .text-link-inline {
  color: #fff200;
  font-weight: 700;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(255, 242, 0, 0.5);
  outline-offset: 2px;
  border-color: transparent;
}

.form-status {
  min-height: 1.4rem;
  color: #fff48a;
}

.contact-privacy-note,
.policy-updated {
  color: var(--muted-on-dark);
}

.contact-privacy-note {
  font-size: 0.95rem;
}

.policy-copy {
  display: grid;
  gap: 1.05rem;
}

.policy-copy h2 {
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  margin-bottom: 0;
}

.news-post-shell {
  align-items: start;
}

.hero-news .lead {
  color: var(--blue-strong);
}

.news-date-line,
.news-post-kicker,
.news-archive-date {
  display: inline-block;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.news-date-row {
  display: block;
  margin: -0.05rem 0 0.75rem;
}

.news-date-line {
  margin: 0;
  color: var(--blue);
}

.news-post-card {
  display: grid;
  gap: 0.9rem;
  align-content: start;
}

.news-post-image {
  margin-top: 0.1rem;
}

.news-post-kicker {
  color: #fff7a8;
}

.news-post-status {
  color: #fff7a8 !important;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.news-post-card h3 {
  font-size: clamp(1.5rem, 3vw, 2.15rem);
  margin-bottom: 0;
}

.news-post-actions {
  margin-top: 0.6rem;
}

.news-post-tagline {
  color: #fff7a8 !important;
  font-weight: 700;
}

.news-story-body {
  max-width: 100%;
  width: min(100%, 52rem);
  margin: 0 auto;
  padding: clamp(1.8rem, 3vw, 2.6rem);
  border-radius: calc(var(--radius) - 2px);
  background:
    linear-gradient(180deg, rgba(244, 248, 255, 0.99), rgba(229, 238, 249, 0.98));
  border: 1px solid rgba(0, 51, 102, 0.14);
  box-shadow:
    0 24px 52px rgba(3, 15, 36, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.news-story-body p {
  color: rgba(0, 38, 77, 0.88) !important;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.36rem, 1.7vw, 1.62rem);
  line-height: 1.5;
}

.news-story-body strong {
  color: var(--blue-strong);
}

.news-story-break {
  margin-top: 0.5rem;
}

.news-story-emphasis {
  color: var(--blue-strong) !important;
  font-family: "Bebas Neue", sans-serif !important;
  font-size: clamp(2rem, 3vw, 2.8rem) !important;
  line-height: 0.96 !important;
  letter-spacing: 0.03em;
}

.news-story-question {
  color: #003366 !important;
}

.news-story-signoff {
  color: #b49300 !important;
  font-family: "Instrument Sans", sans-serif !important;
  font-size: 1.05rem !important;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-top: 0.35rem;
}

.news-archive-section {
  display: grid;
  gap: 1.2rem;
}

.news-archive-list {
  display: grid;
  gap: 0.95rem;
}

.news-archive-item {
  display: grid;
  gap: 0.3rem;
  padding: 1.2rem 1.3rem;
  border: 1px solid rgba(191, 210, 238, 0.28);
  border-radius: calc(var(--radius) - 6px);
  background:
    linear-gradient(180deg, rgba(19, 43, 84, 0.98), rgba(31, 61, 112, 0.94));
  box-shadow: var(--shadow-soft);
  color: var(--text);
}

.news-archive-item strong {
  font-size: 1.12rem;
}

.news-archive-item span:last-child {
  color: var(--muted-on-dark);
}

.news-archive-item-muted {
  opacity: 0.86;
}

.compact-panel {
  margin-top: 1.2rem;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem 1.6rem;
  margin-top: 1.5rem;
  border: 2px solid rgba(0, 51, 102, 0.94);
  background: #ffffff;
  box-shadow:
    0 0 0 4px rgba(0, 51, 102, 0.94),
    0 16px 34px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.52);
}

.footer-copy {
  max-width: 34rem;
  color: rgba(0, 51, 102, 0.76);
  font-weight: 700;
}

.site-footer .footer-links a {
  color: var(--blue-strong);
}

.site-legal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
  padding: 0 0.4rem 0.35rem;
  color: rgba(255, 255, 255, 0.96);
  font-size: 0.98rem;
  font-weight: 500;
  text-align: center;
}

.site-legal p {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem;
}

.site-legal p span {
  display: inline-block;
}

.back-to-top-wrap {
  display: flex;
  justify-content: center;
  margin-top: 1.2rem;
}

.back-to-top {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.1rem;
  padding: 0.8rem 1.15rem;
  border: 1px solid rgba(0, 0, 0, 0.9);
  border-radius: 999px;
  background: linear-gradient(135deg, #fff200, #fff98a);
  color: var(--blue-strong);
  font-weight: 700;
  box-shadow:
    0 18px 36px rgba(255, 242, 0, 0.28),
    0 12px 28px rgba(0, 0, 0, 0.2);
}

.back-to-top:hover,
.back-to-top:focus-visible {
  transform: translateY(-2px);
  box-shadow:
    0 22px 42px rgba(255, 242, 0, 0.36),
    0 14px 30px rgba(0, 0, 0, 0.24);
}

.page-hidden-reveal {
  color: #f4ede7;
  background:
    radial-gradient(circle at 18% 12%, rgba(164, 20, 26, 0.22), transparent 24%),
    radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.05), transparent 22%),
    linear-gradient(180deg, #040404 0%, #12090b 46%, #050505 100%);
}

.page-hidden-reveal::before {
  background:
    linear-gradient(
      120deg,
      transparent 0%,
      rgba(164, 20, 26, 0.12) 20%,
      transparent 40%
    ),
    linear-gradient(
      300deg,
      transparent 0%,
      rgba(255, 255, 255, 0.03) 18%,
      transparent 38%
    );
}

.page-hidden-reveal .site-header,
.page-hidden-reveal .site-footer {
  border: 2px solid rgba(42, 35, 34, 0.94);
  background: linear-gradient(180deg, rgba(235, 231, 227, 0.98), rgba(194, 187, 180, 0.96));
  box-shadow:
    0 0 0 4px rgba(42, 35, 34, 0.94),
    0 16px 34px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.52);
}

.page-hidden-reveal .brand-lockup-logo,
.page-hidden-reveal .footer-logo {
  filter: drop-shadow(0 4px 8px rgba(15, 15, 15, 0.16));
}

.page-hidden-reveal .site-nav-link {
  color: #1a1414;
}

.page-hidden-reveal .site-nav-link::after {
  display: none;
}

.page-hidden-reveal .site-nav-link:hover,
.page-hidden-reveal .site-nav-link:focus-visible,
.page-hidden-reveal .site-nav-link.is-current {
  color: #f6efea;
  background: linear-gradient(135deg, rgba(121, 16, 20, 0.98), rgba(174, 24, 29, 0.9));
}

.page-hidden-reveal .nav-toggle {
  border-color: rgba(58, 49, 48, 0.28);
  background: rgba(255, 255, 255, 0.3);
}

.page-hidden-reveal .nav-toggle span {
  background: #1a1414;
}

.page-hidden-reveal .hero,
.page-hidden-reveal .section {
  border-color: rgba(92, 78, 75, 0.44);
  background:
    linear-gradient(180deg, rgba(16, 13, 13, 0.98), rgba(31, 22, 23, 0.97));
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.34);
}

.page-hidden-reveal .hero::before,
.page-hidden-reveal .section::before {
  background: linear-gradient(
    140deg,
    rgba(255, 255, 255, 0.16),
    rgba(255, 255, 255, 0) 28%,
    rgba(164, 20, 26, 0.34) 100%
  );
}

.page-hidden-reveal .hero-hidden-reveal {
  grid-template-columns: 1fr;
  gap: 1.8rem;
  background:
    radial-gradient(circle at 80% 20%, rgba(164, 20, 26, 0.2), transparent 20%),
    linear-gradient(180deg, rgba(10, 8, 8, 0.99), rgba(23, 16, 17, 0.98));
}

.page-hidden-reveal .hero-hidden-reveal .hero-art {
  width: 100%;
  justify-items: center;
}

.page-hidden-reveal .hero-hidden-reveal .hero-copy {
  width: 100%;
  max-width: 54rem;
}

.page-hidden-reveal .hidden-reveal-banner-frame {
  width: min(100%, 58rem);
  padding: 1.5rem;
  background:
    radial-gradient(circle at 50% 24%, rgba(255, 255, 255, 0.1), transparent 54%),
    linear-gradient(145deg, rgba(8, 8, 8, 0.98), rgba(24, 18, 18, 0.96));
  border: 2px solid rgba(94, 17, 21, 0.92);
  box-shadow:
    0 0 0 4px rgba(25, 20, 20, 0.98),
    0 0 0 7px rgba(144, 21, 26, 0.72),
    0 28px 70px rgba(0, 0, 0, 0.42);
}

.page-hidden-reveal .hidden-reveal-banner-frame::before {
  background: radial-gradient(circle, rgba(164, 20, 26, 0.3), transparent 70%);
}

.page-hidden-reveal .hidden-reveal-banner {
  width: min(100%, 54rem);
  filter: drop-shadow(0 22px 38px rgba(0, 0, 0, 0.4));
}

.page-hidden-reveal main h1,
.page-hidden-reveal main h2,
.page-hidden-reveal main h3,
.page-hidden-reveal .lead {
  color: #f4ede7;
}

.page-hidden-reveal .hero-note p,
.page-hidden-reveal .feature-card p,
.page-hidden-reveal .info-panel p,
.page-hidden-reveal .quote-panel p,
.page-hidden-reveal .cta-card p,
.page-hidden-reveal .contact-card p,
.page-hidden-reveal .contact-side-panel p,
.page-hidden-reveal .contact-form-panel p,
.page-hidden-reveal .callout-panel p,
.page-hidden-reveal .section-heading p + p,
.page-hidden-reveal .showcase-copy p + p {
  color: rgba(223, 214, 206, 0.84);
}

.page-hidden-reveal .eyebrow,
.page-hidden-reveal .section-tag {
  color: #c92d31;
}

.page-hidden-reveal .eyebrow::before,
.page-hidden-reveal .section-tag::before {
  display: none;
}

.page-hidden-reveal .eyebrow span,
.page-hidden-reveal .section-tag span {
  color: #f5eeea;
}

.page-hidden-reveal .eyebrow span::before,
.page-hidden-reveal .section-tag span::before {
  background:
    linear-gradient(90deg, rgba(18, 16, 16, 0.98), rgba(115, 16, 20, 0.92)),
    radial-gradient(circle at 22% 50%, rgba(255, 255, 255, 0.08), transparent 38%);
  box-shadow:
    0 10px 20px rgba(0, 0, 0, 0.28),
    inset 0 -1px 0 rgba(255, 255, 255, 0.08);
}

.page-hidden-reveal .button-primary {
  border-color: rgba(103, 0, 8, 0.8);
  background: linear-gradient(135deg, #670008, #b30014);
  color: #f7f0eb;
  box-shadow:
    0 18px 36px rgba(103, 0, 8, 0.4),
    0 0 0 1px rgba(255, 198, 198, 0.2) inset;
}

.page-hidden-reveal .button-primary:hover,
.page-hidden-reveal .button-primary:focus-visible {
  box-shadow:
    0 22px 42px rgba(103, 0, 8, 0.48),
    0 0 0 1px rgba(255, 215, 215, 0.28) inset;
}

.page-hidden-reveal .button-secondary {
  border-color: rgba(179, 0, 20, 0.46);
  background: rgba(103, 0, 8, 0.14);
  color: #f6eeea;
}

.page-hidden-reveal .button-secondary:hover,
.page-hidden-reveal .button-secondary:focus-visible {
  border-color: rgba(196, 0, 18, 0.76);
  background: rgba(120, 0, 10, 0.94);
  color: #f7f0eb;
}

.page-hidden-reveal .hero-stats li,
.page-hidden-reveal .feature-card,
.page-hidden-reveal .flow-card,
.page-hidden-reveal .info-panel,
.page-hidden-reveal .quote-panel,
.page-hidden-reveal .cta-card,
.page-hidden-reveal .callout-panel,
.page-hidden-reveal .showcase-note-box {
  border-color: rgba(109, 91, 88, 0.34);
  background:
    linear-gradient(180deg, rgba(21, 16, 16, 0.98), rgba(42, 30, 31, 0.94));
  color: #f4ede7;
}

.page-hidden-reveal .hero-stats li {
  border-color: rgba(179, 0, 20, 0.42);
  background: linear-gradient(180deg, rgba(103, 0, 8, 0.98), rgba(179, 0, 20, 0.9));
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.26);
}

.page-hidden-reveal .hidden-reveal-tone-band {
  border-color: rgba(179, 0, 20, 0.42);
  background: linear-gradient(180deg, rgba(103, 0, 8, 0.98), rgba(179, 0, 20, 0.9));
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.34);
}

.page-hidden-reveal .hidden-reveal-tone-band::before {
  background: linear-gradient(
    140deg,
    rgba(255, 255, 255, 0.14),
    rgba(179, 0, 20, 0.34),
    rgba(255, 255, 255, 0.08)
  );
}

.page-hidden-reveal .hidden-reveal-tone-panel {
  border-color: rgba(109, 91, 88, 0.34);
  background: linear-gradient(180deg, rgba(21, 16, 16, 0.98), rgba(42, 30, 31, 0.94));
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.26);
}

.page-hidden-reveal .hidden-reveal-core-panel {
  border-color: rgba(179, 0, 20, 0.42);
  background: linear-gradient(180deg, rgba(103, 0, 8, 0.98), rgba(179, 0, 20, 0.9));
}

.page-hidden-reveal .hidden-reveal-core-panel .detail-list {
  color: #ffffff;
}

.page-hidden-reveal .hidden-reveal-core-mark {
  width: clamp(4.6rem, 9vw, 6rem);
  height: auto;
  margin: 0 auto 0.75rem;
  display: block;
  filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.08));
  animation: drift 7s ease-in-out infinite;
}

.page-hidden-reveal .hidden-reveal-case-band {
  border-color: rgba(179, 0, 20, 0.42);
  background: linear-gradient(180deg, rgba(103, 0, 8, 0.98), rgba(179, 0, 20, 0.9));
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.34);
}

.page-hidden-reveal .hidden-reveal-case-band::before {
  background: linear-gradient(
    140deg,
    rgba(255, 255, 255, 0.14),
    rgba(179, 0, 20, 0.34),
    rgba(255, 255, 255, 0.08)
  );
}

.page-hidden-reveal .hidden-reveal-case-panel {
  border-color: rgba(109, 91, 88, 0.34);
  background: linear-gradient(180deg, rgba(21, 16, 16, 0.98), rgba(42, 30, 31, 0.94));
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.26);
  display: grid;
  justify-items: center;
}

.page-hidden-reveal .hidden-reveal-case-panel .detail-list {
  color: #ffffff;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto;
  text-align: left;
}

.page-hidden-reveal .hidden-reveal-case-panel h3 {
  text-align: center;
}

.page-hidden-reveal .hidden-reveal-case-mark {
  width: clamp(4.25rem, 9vw, 5.75rem);
  height: auto;
  margin: 0 auto 0.55rem;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.08));
  animation: drift 7s ease-in-out infinite;
}

.page-hidden-reveal .flow-number,
.page-hidden-reveal .upcoming-game-status,
.page-hidden-reveal .steam-note {
  color: #b30014;
}

.page-hidden-reveal .showcase-media img,
.page-hidden-reveal .panel-image {
  border-color: rgba(255, 255, 255, 0.08);
}

.page-hidden-reveal .callout-upcoming-glow,
.page-hidden-reveal .games-slate-mark {
  filter: drop-shadow(0 0 26px rgba(164, 20, 26, 0.4));
}

.page-hidden-reveal .upcoming-game-art {
  border: 1px solid rgba(179, 0, 20, 0.38);
  background: linear-gradient(180deg, rgba(103, 0, 8, 0.96), rgba(179, 0, 20, 0.86));
}

.page-hidden-reveal .hidden-reveal-signal {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.page-hidden-reveal .hidden-reveal-signal-band,
.page-hidden-reveal .hidden-reveal-promise-band {
  grid-template-columns: 1fr;
}

.page-hidden-reveal .hidden-reveal-promise-band .callout-panel {
  border-color: rgba(179, 0, 20, 0.42);
  background: linear-gradient(180deg, rgba(103, 0, 8, 0.98), rgba(179, 0, 20, 0.9));
}

.page-hidden-reveal .site-footer .footer-copy,
.page-hidden-reveal .site-footer .footer-links a {
  color: #1b1515;
}

.page-hidden-reveal .back-to-top {
  border-color: rgba(103, 0, 8, 0.82);
  background: linear-gradient(135deg, #670008, #b30014);
  color: #f7f0eb;
  box-shadow:
    0 18px 36px rgba(103, 0, 8, 0.42),
    0 12px 28px rgba(0, 0, 0, 0.26);
}

.page-hidden-reveal .back-to-top:hover,
.page-hidden-reveal .back-to-top:focus-visible {
  box-shadow:
    0 22px 42px rgba(103, 0, 8, 0.5),
    0 14px 30px rgba(0, 0, 0, 0.3);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

[data-reveal].reveal-from-right {
  transform: translateX(48px);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal].reveal-from-right.is-visible {
  transform: translateX(0);
}

[data-reveal].reveal-now {
  transition: none;
}

@keyframes drift {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes mark-float {
  0%,
  100% {
    transform: translateY(0) rotate(-2deg);
  }
  50% {
    transform: translateY(-4px) rotate(3deg);
  }
}

@keyframes beam-drift {
  0% {
    transform: translate3d(-4%, 0, 0) scale(1);
  }
  100% {
    transform: translate3d(4%, -2%, 0) scale(1.04);
  }
}

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

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .hero,
  .showcase,
  .feature-case,
  .contact-layout,
  .section-split,
  .callout-band {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .flow-grid,
  .contact-points {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .showcase-split {
    grid-template-columns: 1fr;
  }

  .hero-art {
    justify-items: stretch;
  }

  .hero-logo-frame,
  .hero-note {
    width: 100%;
  }

  .games-slate-grid {
    grid-template-columns: 1fr;
  }

  .upcoming-game-feature {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-shell {
    width: calc(100% - 1rem);
    max-width: calc(100% - 1rem);
    padding-top: 0.55rem;
  }

  .site-header {
    top: 0.4rem;
    flex-wrap: wrap;
  }

  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding-top: 0.4rem;
  }

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

  .site-nav-link {
    width: 100%;
    text-align: center;
  }

  .hero {
    min-height: auto;
    padding: 1.5rem;
  }

  .hero-stats,
  .feature-grid,
  .flow-grid,
  .contact-points,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .site-footer {
    display: grid;
    justify-items: start;
  }

  .site-legal {
    flex-direction: column;
    align-items: center;
  }

  .back-to-top {
    min-height: 2.9rem;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
  }

  .callout-upcoming-header {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: clamp(2.8rem, 17vw, 4.4rem);
  }

  h2 {
    font-size: clamp(2rem, 11vw, 3rem);
  }
}
