:root {
  --bg-ink: #0f1628;
  --bg-mid: #1d2945;
  --bg-soft: #f5f3eb;
  --bg-card: #fefefe;
  --line: #d7deeb;
  --text-dark: #1c2434;
  --text-muted: #5d6677;
  --text-light: #f7f8fc;
  --accent-red: #d91f34;
  --accent-gold: #d89b35;
  --accent-teal: #2d7f70;
  --shadow-soft: 0 12px 35px rgba(9, 13, 24, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  color: var(--text-dark);
  background: var(--bg-soft);
  line-height: 1.55;
}

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

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

a[href],
a[href] *,
button {
  cursor: pointer;
}

.container {
  width: min(1160px, 92vw);
  margin-inline: auto;
}

h1,
h2,
h3,
h4 {
  font-family: "Sora", sans-serif;
  line-height: 1.18;
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
}

p {
  margin: 0 0 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 4vw;
  background: rgba(246, 243, 235, 0.87);
  border-bottom: 1px solid rgba(28, 36, 52, 0.1);
  backdrop-filter: blur(12px);
}

.logo-pill {
  background: #fff;
  border: 1px solid rgba(17, 25, 43, 0.15);
  border-radius: 999px;
  padding: 0.55rem 1.2rem;
  box-shadow: 0 5px 16px rgba(8, 10, 20, 0.12);
}

.logo-pill img {
  width: clamp(160px, 18vw, 230px);
  height: auto;
}

.menu-toggle {
  display: none;
  border: 1px solid rgba(17, 25, 43, 0.25);
  background: #fff;
  color: var(--text-dark);
  border-radius: 10px;
  padding: 0.55rem 0.8rem;
  font-weight: 700;
  font-family: "Sora", sans-serif;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.35rem;
}

.site-nav a {
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 0.6rem 0.75rem;
  border-radius: 999px;
  transition: 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(217, 31, 52, 0.11);
  color: #7f1220;
  outline: none;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: min(920px, 94svh);
  color: var(--text-light);
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(112deg, rgba(11, 17, 33, 0.95) 10%, rgba(9, 14, 28, 0.82) 48%, rgba(9, 14, 28, 0.38) 100%),
    radial-gradient(circle at 84% 10%, rgba(216, 155, 53, 0.45), transparent 45%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 1.75rem;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  align-items: end;
}

.eyebrow {
  margin: 0 0 1rem;
  display: inline-flex;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  padding: 0.28rem 0.7rem;
  font-family: "Sora", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.74rem;
  font-weight: 700;
}

.eyebrow-dark {
  border-color: rgba(17, 25, 43, 0.2);
  color: #4e5768;
}

.hero-copy h1 {
  font-size: clamp(2rem, 4.8vw, 4.2rem);
  max-width: 14ch;
}

.lead {
  max-width: 62ch;
  font-size: clamp(1rem, 1.45vw, 1.2rem);
  color: rgba(247, 248, 252, 0.9);
}

.cta-row {
  margin: 1.25rem 0 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border-radius: 12px;
  padding: 0.72rem 1.05rem;
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  transition: 180ms ease;
  border: 1px solid transparent;
}

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

.button-primary {
  background: linear-gradient(120deg, #d91f34, #b2172b);
  color: #fff;
  box-shadow: 0 10px 20px rgba(185, 25, 49, 0.32);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 14px 24px rgba(185, 25, 49, 0.45);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.16);
}

.hero-stats {
  list-style: none;
  display: grid;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
  color: rgba(247, 248, 252, 0.93);
}

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

.hero-feature {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 22px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 14px 35px rgba(8, 11, 19, 0.4);
  backdrop-filter: blur(6px);
}

.hero-feature-image {
  aspect-ratio: 16 / 9;
  width: 100%;
  object-fit: cover;
}

.hero-feature-content {
  padding: 1rem;
}

.hero-feature-content h2 {
  font-size: 1.3rem;
  margin-bottom: 0.35rem;
}

.hero-feature-content p {
  margin-bottom: 1rem;
  color: rgba(247, 248, 252, 0.86);
}

.store-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.store-row a {
  display: block;
  width: min(160px, 100%);
}

.store-row img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.section {
  padding: clamp(3.5rem, 8vw, 6.7rem) 0;
}

.section-light {
  background:
    radial-gradient(circle at 8% 0%, rgba(216, 155, 53, 0.15), transparent 40%),
    var(--bg-soft);
}

.section-dark {
  background:
    radial-gradient(circle at 75% 0%, rgba(217, 31, 52, 0.22), transparent 38%),
    linear-gradient(180deg, #111a2f 0%, #121f39 100%);
  color: var(--text-light);
}

.section-grid {
  display: grid;
  gap: 1.3rem;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: start;
}

.section-grid h2 {
  font-size: clamp(1.7rem, 2.6vw, 2.6rem);
}

.section-grid p {
  color: var(--text-muted);
  font-size: 1.04rem;
}

.mission-cards {
  display: grid;
  gap: 0.85rem;
}

.mission-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.1rem 1.15rem;
  box-shadow: var(--shadow-soft);
}

.mission-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
}

.mission-card p {
  margin: 0;
  color: #4d586d;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 2rem;
}

.section-heading h2 {
  font-size: clamp(1.8rem, 3vw, 2.9rem);
}

.section-heading p {
  color: rgba(247, 248, 252, 0.82);
}

.section-light .section-heading p,
.section-intro {
  color: #5b6478;
}

.game-grid {
  display: grid;
  gap: 1.2rem;
}

.game-card {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.02));
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  box-shadow: 0 15px 35px rgba(7, 11, 19, 0.35);
}

.game-media img,
.placeholder-media {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.game-body {
  padding: 1.2rem 1.2rem 1.35rem;
}

.game-body h3 {
  font-size: clamp(1.2rem, 1.8vw, 1.7rem);
}

.game-subtitle {
  color: #e8c999;
  font-weight: 600;
}

.game-body p {
  color: rgba(247, 248, 252, 0.84);
}

.thumb-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.55rem;
  margin: 0.9rem 0;
}

.thumb-row img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: transform 180ms ease, filter 180ms ease, border-color 180ms ease;
}

.thumb-row img:hover,
.thumb-row img:focus-visible {
  transform: translateY(-2px);
  filter: brightness(1.08);
  border-color: rgba(255, 255, 255, 0.45);
}

.platform-row {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.platform-row a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  transition: transform 160ms ease, background-color 160ms ease;
}

.platform-row a:hover,
.platform-row a:focus-visible {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.12);
}

.platform-row img {
  width: 26px;
  height: 26px;
  object-fit: contain;
  opacity: 0.95;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  padding: 0.34rem 0.8rem;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: #f7f8fc;
}

.placeholder-media {
  background:
    linear-gradient(135deg, rgba(216, 155, 53, 0.25), rgba(34, 44, 79, 0.75)),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.04) 0, rgba(255, 255, 255, 0.04) 8px, transparent 8px, transparent 16px);
  display: grid;
  place-content: center;
  text-align: center;
  gap: 0.55rem;
  padding: 2rem;
  border-right: 1px dashed rgba(255, 255, 255, 0.4);
}

.placeholder-media p {
  font-family: "Sora", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0;
  color: #fff;
}

.placeholder-media span {
  max-width: 34ch;
  margin-inline: auto;
  color: rgba(247, 248, 252, 0.9);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.85rem;
}

.value-card {
  position: relative;
  aspect-ratio: 400 / 522;
  box-shadow: var(--shadow-soft);
}

.value-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.value-card div {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-align: center;
  padding: 38% 3rem 0.7rem;
}

.value-card h3 {
  font-size: 0.96rem;
  margin-bottom: 0.45rem;
}

.value-card p {
  color: #34405a;
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.085;
}

.placeholder-band {
  margin-top: 1.3rem;
  border: 2px dashed rgba(45, 127, 112, 0.45);
  background: rgba(45, 127, 112, 0.08);
  border-radius: 18px;
  padding: 1rem 1.15rem;
}

.placeholder-band p {
  margin: 0 0 0.25rem;
  font-family: "Sora", sans-serif;
  color: #1f564d;
  font-weight: 700;
}

.placeholder-band span {
  color: #3f4b61;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.95rem;
}

.team-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 18px;
  padding: 1rem;
}

.team-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.team-card h3 {
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.team-card p {
  color: rgba(247, 248, 252, 0.86);
  margin: 0;
  font-size: 0.92rem;
}

.jobs-wrap {
  max-width: 900px;
}

.job-card {
  display: grid;
  gap: 1rem;
  grid-template-columns: 112px minmax(0, 1fr);
  align-items: start;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  padding: 1.1rem;
}

.job-icon {
  width: 96px;
  height: 96px;
  margin-inline: auto;
}

.job-card h3 {
  margin-top: 0.3rem;
  font-size: 1.25rem;
}

.job-card p {
  color: #4c5870;
}

.site-footer {
  background:
    radial-gradient(circle at 12% 0%, rgba(216, 155, 53, 0.22), transparent 45%),
    linear-gradient(180deg, #11192e 0%, #0e1526 100%);
  color: var(--text-light);
  padding: 3.3rem 0 2rem;
}

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

.footer-grid h2 {
  font-size: 1rem;
  margin-bottom: 0.45rem;
}

.footer-grid p {
  margin: 0 0 0.5rem;
  color: rgba(247, 248, 252, 0.85);
}

.footer-grid a {
  color: rgba(247, 248, 252, 0.92);
}

.footer-grid a:hover,
.footer-grid a:focus-visible {
  color: #ffd087;
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.social-row a {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.05);
  display: grid;
  place-items: center;
}

.social-row img {
  width: 22px;
  height: 22px;
}

.footer-legal {
  margin-top: 1.4rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.6rem;
}

.footer-legal p {
  margin: 0;
  color: rgba(247, 248, 252, 0.72);
  font-size: 0.88rem;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  background: rgba(8, 10, 17, 0.84);
  backdrop-filter: blur(2px);
  display: grid;
  place-items: center;
  gap: 0.75rem;
  padding: min(4vw, 2rem);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-image {
  width: auto;
  max-width: min(94vw, 1600px);
  max-height: 84vh;
  object-fit: contain;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
  margin: 0;
  color: rgba(247, 248, 252, 0.88);
  font-size: 0.95rem;
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: min(3vw, 1.2rem);
  right: min(3vw, 1.2rem);
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.09);
  color: #fff;
  border-radius: 10px;
  padding: 0.45rem 0.7rem;
  font-family: "Sora", sans-serif;
  font-weight: 700;
}

.lightbox-close:hover,
.lightbox-close:focus-visible {
  background: rgba(255, 255, 255, 0.18);
}

body.lightbox-open {
  overflow: hidden;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 620ms ease, transform 620ms ease;
}

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

/* Privacy Page */
.policy-page {
  background:
    radial-gradient(circle at 82% 2%, rgba(216, 155, 53, 0.18), transparent 32%),
    linear-gradient(180deg, #f6f4ed 0%, #f2f4f9 100%);
  color: var(--text-dark);
}

.policy-top {
  padding: 2.8rem 0 1.8rem;
}

.policy-hero {
  background:
    linear-gradient(120deg, rgba(17, 25, 46, 0.92), rgba(20, 34, 62, 0.85)),
    url("lbw3-intro-thumb.jpg") center/cover no-repeat;
  color: #fff;
  border-radius: 24px;
  padding: clamp(1.3rem, 4vw, 2.2rem);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 18px 40px rgba(8, 12, 21, 0.28);
}

.policy-hero h1 {
  margin-bottom: 0.5rem;
  font-size: clamp(1.6rem, 3.2vw, 2.8rem);
}

.policy-hero p {
  margin: 0;
  color: rgba(247, 248, 252, 0.9);
}

.policy-links {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.policy-links a {
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.policy-links a:hover,
.policy-links a:focus-visible {
  background: rgba(255, 255, 255, 0.18);
}

.policy-page .section-mission {
  width: min(1120px, 92vw);
  margin: 0 auto 3rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
  padding: clamp(1rem, 2.7vw, 2.2rem);
}

.policy-page .policy-header {
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  margin-top: 1.4rem;
  color: #192640;
}

.policy-page .policy-text,
.policy-page .policy-text p,
.policy-page .policy-text li,
.policy-page .w-richtext p,
.policy-page .w-richtext li {
  color: #2b3447;
  font-size: 0.98rem;
  line-height: 1.72;
}

.policy-page .policy-text,
.policy-page .w-richtext {
  margin-bottom: 0.5rem;
}

.policy-page .w-richtext ul,
.policy-page ul[role="list"] {
  padding-left: 1.2rem;
  margin: 0.7rem 0 1.1rem;
}

.policy-page a {
  color: #00458d;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.policy-page .div-block-23 {
  margin: 1rem 0;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
}

.policy-page .div-block-20-copy,
.policy-page .div-block-20 {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(0, 1fr);
}

.policy-page .div-block-20-copy {
  background: #1c2948;
}

.policy-page .div-block-20-copy p {
  color: #fff;
  font-weight: 700;
}

.policy-page .div-block-20:nth-child(odd) {
  background: #f8fafd;
}

.policy-page .div-block-20:nth-child(even) {
  background: #ffffff;
}

.policy-page .div-block-20-copy p,
.policy-page .div-block-20 p,
.policy-page .policy-oolumn-top,
.policy-page .policy-oolumn-a,
.policy-page .policy-oolumn-b {
  margin: 0;
  padding: 0.85rem 0.95rem;
  border-bottom: 1px solid #e1e6f0;
}

.policy-page .div-block-20-copy p:last-child,
.policy-page .div-block-20 p:last-child {
  border-left: 1px solid #e1e6f0;
}

.policy-footer {
  width: min(1120px, 92vw);
  margin: 0 auto 2.8rem;
  background: #10182e;
  color: #f7f8fc;
  border-radius: 20px;
  padding: 1.1rem 1.2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.7rem;
}

.policy-footer p {
  margin: 0;
  color: rgba(247, 248, 252, 0.84);
  font-size: 0.88rem;
}

.policy-footer a {
  color: #ffd087;
}

@media (max-width: 1120px) {
  .hero-inner {
    grid-template-columns: 1fr;
    align-items: start;
  }

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

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

@media (max-width: 960px) {
  .site-header {
    flex-wrap: wrap;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 240ms ease;
    padding-bottom: 0;
  }

  .site-nav.open {
    max-height: 360px;
    padding-bottom: 0.5rem;
  }

  .site-nav a {
    width: 100%;
    border-radius: 10px;
    padding: 0.55rem 0.6rem;
  }

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

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

  .placeholder-media {
    border-right: 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.4);
  }

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

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

@media (max-width: 760px) {
  .site-header {
    padding-inline: 4vw;
  }

  .hero {
    min-height: auto;
  }

  .hero-copy h1 {
    max-width: 100%;
  }

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

  .value-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .job-card {
    grid-template-columns: 1fr;
  }

  .job-icon {
    margin-inline: 0;
  }

  .policy-page .div-block-20-copy,
  .policy-page .div-block-20 {
    grid-template-columns: 1fr;
  }

  .policy-page .div-block-20-copy p:last-child,
  .policy-page .div-block-20 p:last-child {
    border-left: 0;
  }
}
