/* ============================================================
   Lumion Technologies — Stylesheet
   Home + Publish + Studio + About + Careers + Catalog pages
   ============================================================ */

/* ---------- Design Tokens ---------- */
:root {
  --sky:          #7fc8e6;
  --sky-soft:     #9ed4ec;
  --ink:          #111111;
  --ink-soft:     #1a1a1a;
  --blue-stat:    #4a7aa6;
  --blue-deep:    #2d5a88;
  --teal-cta:    #2d5a6d;
  --intro-bg:    #f3f5f7;
  --footer-bg:    #f5f6f8;
  --footer-rule:  #e3e6eb;
  --muted:        #94a0b1;
  --white:        #ffffff;
  --star:        #f4b942;
  --accent:      #d97a3a;

  --max-width:    1200px;
  --grid-width:   1100px;
  --radius-sm:    8px;
  --radius-md:    14px;
  --radius-lg:    22px;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: 'Nunito', 'Quicksand', system-ui, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

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

ul {
  list-style: none;
}

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--white);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  transition: opacity 0.2s ease;
}

.logo:hover {
  opacity: 0.75;
}

.logo-icon {
  width: 120px;
  object-fit: contain;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-name {
  font-family: 'Quicksand', 'Nunito', sans-serif;
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink);
}

.logo-sub {
  font-family: 'Quicksand', 'Nunito', sans-serif;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--ink);
  margin-top: 3px;
}

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

.site-nav a {
  font-family: 'Quicksand', 'Nunito', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--ink);
  position: relative;
  padding: 4px 2px;
  transition: color 0.2s ease;
}

.site-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

/* ---------- Mobile menu toggle (hidden on desktop) ----------
   The .nav-toggle <input> is the source of state; the .nav-hamburger
   <label> is the visible button. CSS-only, no JS required.
*/
.nav-toggle {
  /* Visually hide the checkbox but keep it focusable for accessibility */
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
  pointer-events: none;
}

.nav-hamburger {
  display: none; /* hidden on desktop */
}

.nav-backdrop {
  display: none; /* hidden on desktop */
}

/* ============================================================
   Hero Banner (image-based hero used on home/publish)
   ============================================================ */
.hero-banner {
  width: 100%;
  overflow: hidden;
  background: #7fb8e3;
}

.hero-image {
  width: 100%;
  height: auto;
  max-height: 600px;
  object-fit: cover;
  display: block;
}

/* ============================================================
   HOME — Blue Section
   ============================================================ */
.blue-section {
  background: var(--sky);
  padding: 56px 32px 72px;
}

.tagline {
  font-family: 'Quicksand', 'Nunito', sans-serif;
  font-weight: 500;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: var(--ink);
  text-align: center;
  line-height: 1.25;
  max-width: 1000px;
  margin: 0 auto 28px;
  letter-spacing: -0.005em;
}

.lede {
  max-width: 820px;
  margin: 0 auto 56px;
  text-align: center;
  font-family: 'Quicksand', 'Nunito', sans-serif;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.55;
}

.lede p + p {
  margin-top: 22px;
}

.games-grid {
  max-width: var(--grid-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.game-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.game-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: #e8eef7;
}

.game-card:hover .game-thumb {
  transform: translateY(-4px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.14);
}

.game-thumb-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.game-card:hover .game-thumb-img {
  transform: scale(1.05);
}

.game-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(0, 0, 0, 0.28) 0%,
    rgba(0, 0, 0, 0.12) 38%,
    transparent 70%
  );
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.game-card:hover .game-thumb::after {
  opacity: 0.7;
}

/* ---------- Play Button ---------- */
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
  padding: 0;
  color: var(--ink);
  z-index: 2;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

.play-btn svg {
  width: 26px;
  height: 26px;
  margin-left: 4px;
  pointer-events: none;
}

.play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
  background: var(--white);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}

.play-btn:active {
  transform: translate(-50%, -50%) scale(0.96);
}

/* Smaller play button (used inside catalog cards) */
.play-btn--sm {
  width: 48px;
  height: 48px;
}

.play-btn--sm svg {
  width: 18px;
  height: 18px;
  margin-left: 3px;
}

.store-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  height: 22px;
}

.store-icon {
  height: 22px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.2s ease, opacity 0.2s ease;
  opacity: 0.9;
}

.store-icon:hover {
  transform: translateY(-1px);
  opacity: 1;
}

.game-title {
  margin-top: 14px;
  font-family: 'Quicksand', 'Nunito', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--blue-deep);
  letter-spacing: 0.02em;
}

.game-desc {
  margin-top: 10px;
  font-family: 'Nunito', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--blue-deep);
  line-height: 1.55;
  max-width: 95%;
}

/* ============================================================
   HOME — Stats Section
   ============================================================ */
.stats-section {
  background: var(--white);
  padding: 80px 32px;
}

.stats-grid {
  max-width: var(--grid-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
  color: var(--blue-stat);
}

.stat-label {
  font-family: 'Quicksand', 'Nunito', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--blue-stat);
  letter-spacing: 0.18em;
}

.stat-icon {
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-stat);
}

.stat-icon svg {
  width: 100%;
  height: 100%;
}

.stat-value {
  font-family: 'Quicksand', 'Nunito', sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--blue-stat);
  letter-spacing: 0.02em;
}

/* ============================================================
   PUBLISH — Intro / Pitch
   ============================================================ */
.publish-intro {
  background: var(--intro-bg);
  padding: 80px 32px 96px;
}

.publish-intro-inner {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

.publish-headline {
  font-family: 'Quicksand', 'Nunito', sans-serif;
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  font-weight: 600;
  color: var(--blue-deep);
  line-height: 1.4;
  letter-spacing: -0.005em;
  max-width: 820px;
  margin: 0 auto;
}

.publish-lede {
  font-family: 'Quicksand', 'Nunito', sans-serif;
  font-size: clamp(0.95rem, 1.4vw, 1.1rem);
  font-weight: 400;
  color: var(--blue-deep);
  line-height: 1.65;
  margin: 38px auto 48px;
  max-width: 760px;
}

/* ---------- CTA Button (shared across all pages) ---------- */
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--teal-cta);
  color: var(--white);
  font-family: 'Quicksand', 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  padding: 14px 30px;
  border-radius: 999px;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  box-shadow: 0 4px 12px rgba(45, 90, 109, 0.25);
  border: 2px solid var(--teal-cta);
}

.cta-btn:hover {
  background: #224657;
  border-color: #224657;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(45, 90, 109, 0.35);
}

.cta-btn:active {
  transform: translateY(0);
}

.cta-btn-arrow {
  width: 16px;
  height: 16px;
  transition: transform 0.2s ease;
}

.cta-btn:hover .cta-btn-arrow {
  transform: translateX(3px);
}

.cta-btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.cta-btn--ghost-light {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
  box-shadow: none;
}

.cta-btn--ghost-light:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--teal-cta);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.cta-btn--ghost-dark {
  background: transparent;
  border: 2px solid var(--teal-cta);
  color: var(--teal-cta);
  box-shadow: none;
}

.cta-btn--ghost-dark:hover {
  background: var(--teal-cta);
  border-color: var(--teal-cta);
  color: var(--white);
}

/* ============================================================
   PUBLISH — What We Offer
   ============================================================ */
.what-we-offer {
  background: var(--sky);
  padding: 80px 32px 100px;
}

.what-we-offer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.offer-heading {
  font-family: 'Quicksand', 'Nunito', sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  color: var(--white);
  text-align: center;
  letter-spacing: 0.06em;
  margin-bottom: 64px;
}

.offer-row {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 64px;
}

.offer-row:last-child {
  margin-bottom: 0;
}

.offer-text {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.offer-block {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.offer-title {
  font-family: 'Quicksand', 'Nunito', sans-serif;
  font-size: clamp(1.05rem, 1.8vw, 1.4rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.06em;
}

.offer-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.offer-list li {
  font-family: 'Quicksand', 'Nunito', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--white);
  line-height: 1.6;
  padding-left: 16px;
  position: relative;
}

.offer-list li::before {
  content: '-';
  position: absolute;
  left: 0;
  color: var(--white);
  font-weight: 600;
}

.offer-list--two-col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px 24px;
}

.offer-img {
  width: 100%;
}

.offer-img img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
  display: block;
}

/* ============================================================
   STUDIO + ABOUT + CAREERS + CATALOG — Section bands
   ============================================================ */
.studio-section {
  padding: 72px 32px;
  scroll-margin-top: 80px;
}

.studio-section--sky {
  background: var(--sky);
}

.studio-section--light {
  background: var(--intro-bg);
}

/* ---------- Shared headings ---------- */
.studio-h1 {
  font-family: 'Quicksand', 'Nunito', sans-serif;
  font-size: clamp(1.9rem, 3.6vw, 2.6rem);
  font-weight: 600;
  color: var(--white);
  text-align: center;
  letter-spacing: 0.01em;
  margin-bottom: 36px;
}

.studio-h2 {
  font-family: 'Quicksand', 'Nunito', sans-serif;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 600;
  color: var(--blue-deep);
  text-align: center;
  letter-spacing: 0.01em;
  margin-bottom: 36px;
}

/* ---------- Generic section header ---------- */
.section-heading {
  text-align: center;
  margin-bottom: 56px;
}

.section-heading-title {
  font-family: 'Quicksand', 'Nunito', sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 700;
  letter-spacing: -0.005em;
  margin: 4px 0 0;
  color: var(--blue-deep);
}

.section-heading--light .section-heading-title {
  color: var(--white);
}

.section-heading-intro {
  font-family: 'Quicksand', 'Nunito', sans-serif;
  font-size: clamp(0.95rem, 1.4vw, 1.1rem);
  font-weight: 500;
  line-height: 1.6;
  max-width: 620px;
  margin: 16px auto 0;
  color: var(--blue-deep);
  opacity: 0.85;
}

.section-heading--light .section-heading-intro {
  color: var(--white);
  opacity: 0.95;
}

/* ---------- Eyebrow label ---------- */
.eyebrow {
  display: inline-block;
  font-family: 'Quicksand', 'Nunito', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.eyebrow--light {
  color: var(--white);
}

.eyebrow--dark {
  color: var(--blue-deep);
}

.eyebrow--with-icon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.eyebrow--with-icon svg {
  width: 16px;
  height: 16px;
}

/* ============================================================
   STUDIO — Hero (Who We Are)
   ============================================================ */
.studio-hero {
  padding: 60px 32px 76px;
}

.studio-hero-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.studio-video {
  position: relative;
  width: 100%;
  max-width: 540px;
  aspect-ratio: 16 / 9;
  margin: 0 auto;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #cbe6f3;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  cursor: pointer;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.studio-video:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.24);
}

.studio-video-thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.studio-video:hover .studio-video-thumb {
  transform: scale(1.04);
}

.studio-video-duration {
  position: absolute;
  bottom: 10px;
  right: 12px;
  background: rgba(0, 0, 0, 0.78);
  color: var(--white);
  font-family: 'Nunito', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 3px 7px;
  border-radius: 4px;
  z-index: 3;
  pointer-events: none;
}

.studio-hero-tagline {
  font-family: 'Quicksand', 'Nunito', sans-serif;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  font-weight: 500;
  color: var(--white);
  line-height: 1.6;
  margin-top: 40px;
}

/* ============================================================
   STUDIO — The Team
   ============================================================ */
.studio-team {
  padding: 64px 32px 80px;
}

.studio-team-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.studio-team-photo {
  width: 100%;
}

.studio-team-photo img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
  display: block;
}

/* ============================================================
   STUDIO — What We Help With (numbered cards)
   ============================================================ */
.help-section {
  background: var(--intro-bg);
  padding: 0 0 88px;
}

/* Dark teal banner */
.help-banner {
  background: #2d4f5e;
  padding: 56px 32px;
  text-align: center;
}

.help-banner-inner {
  max-width: 720px;
  margin: 0 auto;
}

.help-title {
  font-family: 'Quicksand', 'Nunito', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.005em;
  margin-bottom: 14px;
}

.help-tagline {
  font-family: 'Quicksand', 'Nunito', sans-serif;
  font-size: clamp(0.9rem, 1.3vw, 1.05rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.55;
}

/* Cards grid wrapper sits below the banner with extra top space */
.help-grid-wrap {
  max-width: 920px;
  margin: 0 auto;
  padding: 64px 32px 0;
}

.help-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 56px 64px;
}

/* Card */
.help-card {
  background: rgba(127, 200, 230, 0.28);
  border-radius: var(--radius-md);
  padding: 24px 26px 26px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.help-card:hover {
  transform: translateY(-3px);
  background: rgba(127, 200, 230, 0.38);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.10);
}

.help-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.help-card-num {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--sky);
  color: var(--white);
  font-family: 'Quicksand', 'Nunito', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.10);
}

.help-card-title {
  font-family: 'Quicksand', 'Nunito', sans-serif;
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  font-weight: 700;
  color: var(--blue-deep);
  letter-spacing: 0.005em;
  line-height: 1.25;
}

.help-card-desc {
  font-family: 'Quicksand', 'Nunito', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--blue-deep);
  line-height: 1.6;
  opacity: 0.85;
}

/* ============================================================
   STUDIO — Featured Videos (3-column showcase)
   ============================================================ */
.studio-videos-section {
  padding: 72px 32px 88px;
}

.studio-videos-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.studio-videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Individual video card */
.studio-video-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.studio-video-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.14);
}

/* Clickable thumbnail wrapper */
.studio-video-card-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--intro-bg);
  overflow: hidden;
  cursor: pointer;
}

.studio-video-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.studio-video-card:hover .studio-video-card-thumb img {
  transform: scale(1.05);
}

/* Subtle vignette overlay to make the play button pop */
.studio-video-card-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(0, 0, 0, 0.28) 0%,
    rgba(0, 0, 0, 0.10) 38%,
    transparent 70%
  );
  pointer-events: none;
  opacity: 0.6;
  transition: opacity 0.25s ease;
}

.studio-video-card:hover .studio-video-card-thumb::after {
  opacity: 0.85;
}

/* Card body: title + description */
.studio-video-card-body {
  padding: 18px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-grow: 1;
}

.studio-video-card-title {
  font-family: 'Quicksand', 'Nunito', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--blue-deep);
  letter-spacing: 0.005em;
  line-height: 1.3;
}

.studio-video-card-desc {
  font-family: 'Nunito', sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  color: #4a5564;
  line-height: 1.6;
}

/* ============================================================
   STUDIO — Content rows
   ============================================================ */
.studio-row {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.studio-row + .studio-row {
  margin-top: 72px;
}

.studio-row-text p {
  font-family: 'Quicksand', 'Nunito', sans-serif;
  font-size: clamp(1rem, 1.4vw, 1.1rem);
  font-weight: 600;
  color: var(--blue-deep);
  line-height: 1.7;
  letter-spacing: 0.005em;
}

.studio-row-img {
  width: 100%;
}

.studio-row-img img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16);
  display: block;
}

/* ============================================================
   ABOUT — Hero
   ============================================================ */
.about-hero {
  padding: 64px 32px 80px;
}

.about-hero-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.about-h1 {
  font-family: 'Quicksand', 'Nunito', sans-serif;
  font-size: clamp(2.1rem, 4.5vw, 3.4rem);
  font-weight: 700;
  color: var(--white);
  text-align: center;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 32px;
}

.about-hero-tagline {
  font-family: 'Quicksand', 'Nunito', sans-serif;
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  font-weight: 500;
  color: var(--white);
  line-height: 1.7;
  max-width: 720px;
  margin: 0 auto;
}

/* ============================================================
   ABOUT — Stats
   ============================================================ */
.about-stats-section {
  padding: 64px 32px;
}

.about-stats {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.about-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
}

.about-stat-value {
  font-family: 'Quicksand', 'Nunito', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--blue-deep);
  letter-spacing: -0.01em;
  line-height: 1;
}

.about-stat-label {
  font-family: 'Quicksand', 'Nunito', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blue-stat);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* ============================================================
   ABOUT — Leadership
   ============================================================ */
.about-team-section {
  padding: 80px 32px 100px;
}

.about-team-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.about-team-header {
  text-align: center;
  margin-bottom: 56px;
}

.about-h2 {
  font-family: 'Quicksand', 'Nunito', sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 700;
  color: var(--white);
  text-align: center;
  letter-spacing: -0.005em;
  margin-bottom: 14px;
}

.about-team-intro {
  font-family: 'Quicksand', 'Nunito', sans-serif;
  font-size: clamp(0.95rem, 1.4vw, 1.1rem);
  font-weight: 500;
  color: var(--white);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.95;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.team-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.10);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.14);
}

.team-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--intro-bg);
  margin-bottom: 18px;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.team-name {
  font-family: 'Quicksand', 'Nunito', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--blue-deep);
  letter-spacing: 0.005em;
  margin-bottom: 4px;
}

.team-role {
  font-family: 'Quicksand', 'Nunito', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--blue-stat);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.team-bio {
  font-family: 'Nunito', sans-serif;
  font-size: 0.82rem;
  font-weight: 400;
  color: #4a5564;
  line-height: 1.65;
  margin-bottom: 18px;
  flex-grow: 1;
}

.team-socials {
  display: flex;
  gap: 12px;
  margin-top: auto;
  border-top: 1px solid var(--footer-rule);
  width: 100%;
  padding-top: 14px;
}

.team-social {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--intro-bg);
  color: var(--blue-stat);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.team-social:hover {
  background: var(--blue-deep);
  color: var(--white);
  transform: translateY(-2px);
}

.team-social svg {
  width: 14px;
  height: 14px;
}

/* ============================================================
   ABOUT — Join the team CTA
   ============================================================ */
.about-cta {
  padding: 72px 32px 88px;
}

.about-cta-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.about-cta-title {
  font-family: 'Quicksand', 'Nunito', sans-serif;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 700;
  color: var(--blue-deep);
  letter-spacing: -0.005em;
  margin-bottom: 18px;
}

.about-cta-text {
  font-family: 'Quicksand', 'Nunito', sans-serif;
  font-size: clamp(0.95rem, 1.4vw, 1.1rem);
  font-weight: 500;
  color: var(--blue-deep);
  line-height: 1.65;
  margin-bottom: 32px;
  opacity: 0.85;
}

/* ============================================================
   CAREERS — Hero
   ============================================================ */
.careers-hero {
  padding: 60px 32px 80px;
}

.careers-hero-inner {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}

.careers-h1 {
  font-family: 'Quicksand', 'Nunito', sans-serif;
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  font-weight: 700;
  color: var(--white);
  text-align: center;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
}

.careers-hero-tagline {
  font-family: 'Quicksand', 'Nunito', sans-serif;
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  font-weight: 500;
  color: var(--white);
  line-height: 1.65;
  max-width: 760px;
  margin: 0 auto 36px;
}

.award-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}

.award-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: var(--white);
  font-family: 'Quicksand', 'Nunito', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 8px 14px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.award-badge svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 4px;
}

/* ============================================================
   CAREERS — Stats (also used by Catalog)
   ============================================================ */
.careers-stats-section {
  padding: 56px 32px;
}

.careers-stats {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 28px;
}

.careers-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}

.careers-stat-value {
  font-family: 'Quicksand', 'Nunito', sans-serif;
  font-size: clamp(2rem, 3.6vw, 2.8rem);
  font-weight: 700;
  color: var(--blue-deep);
  letter-spacing: -0.01em;
  line-height: 1;
}

.careers-stat-label {
  font-family: 'Quicksand', 'Nunito', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--blue-stat);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Inner wrap (shared) */
.careers-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

/* ============================================================
   CAREERS — Why Join Us
   ============================================================ */
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.reason-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.reason-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.reason-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(127, 200, 230, 0.18);
  color: var(--blue-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.reason-icon svg {
  width: 24px;
  height: 24px;
}

.reason-title {
  font-family: 'Quicksand', 'Nunito', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--blue-deep);
  margin-bottom: 10px;
  letter-spacing: 0.005em;
}

.reason-desc {
  font-family: 'Nunito', sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  color: #4a5564;
  line-height: 1.65;
}

/* ============================================================
   CAREERS — Benefits grid
   ============================================================ */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.benefit {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 22px 18px;
  text-align: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.benefit:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.10);
}

.benefit-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(127, 200, 230, 0.18);
  color: var(--blue-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.benefit-icon svg {
  width: 22px;
  height: 22px;
}

.benefit-title {
  font-family: 'Quicksand', 'Nunito', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--blue-deep);
  letter-spacing: 0.005em;
}

.benefit-text {
  font-family: 'Nunito', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--muted);
  line-height: 1.4;
}

/* ============================================================
   CAREERS + CATALOG — Filter pills (shared)
   ============================================================ */
.role-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
}

.filter-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: var(--white);
  font-family: 'Quicksand', 'Nunito', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 9px 16px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
}

.filter-pill:hover {
  background: rgba(255, 255, 255, 0.4);
  transform: translateY(-1px);
}

.filter-pill.is-active {
  background: var(--white);
  color: var(--blue-deep);
  border-color: var(--white);
}

.filter-pill svg {
  width: 14px;
  height: 14px;
}

/* Dark variant — for filter rows used on light backgrounds */
.role-filters--dark .filter-pill {
  background: var(--white);
  border-color: var(--footer-rule);
  color: var(--blue-stat);
}

.role-filters--dark .filter-pill:hover {
  background: var(--intro-bg);
  border-color: var(--blue-stat);
}

.role-filters--dark .filter-pill.is-active {
  background: var(--blue-deep);
  border-color: var(--blue-deep);
  color: var(--white);
}

/* ============================================================
   CAREERS — Roles list
   ============================================================ */
.roles-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 980px;
  margin: 0 auto;
}

.role-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px 28px 24px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.10);
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.25s ease;
}

.role-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.14);
}

.role-card.is-hidden {
  display: none;
}

.role-card-top {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.role-dept {
  font-family: 'Quicksand', 'Nunito', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--blue-stat);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.role-title {
  font-family: 'Quicksand', 'Nunito', sans-serif;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 700;
  color: var(--blue-deep);
  letter-spacing: -0.005em;
}

.role-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 8px;
}

.role-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Quicksand', 'Nunito', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--muted);
}

.role-meta-item svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.role-desc {
  font-family: 'Nunito', sans-serif;
  font-size: 0.88rem;
  font-weight: 400;
  color: #4a5564;
  line-height: 1.65;
  margin-bottom: 18px;
}

.role-skills {
  margin-bottom: 20px;
}

.role-skills-label {
  display: block;
  font-family: 'Quicksand', 'Nunito', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--blue-deep);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.skill-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.skill-chip {
  display: inline-block;
  background: rgba(127, 200, 230, 0.20);
  color: var(--blue-deep);
  font-family: 'Quicksand', 'Nunito', sans-serif;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 5px 11px;
  border-radius: 999px;
}

.role-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  border-top: 1px solid var(--footer-rule);
  padding-top: 18px;
}

.role-location {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Quicksand', 'Nunito', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--blue-stat);
  letter-spacing: 0.02em;
}

.role-location svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.role-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}

.role-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--teal-cta);
  color: var(--white);
  font-family: 'Quicksand', 'Nunito', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 9px 18px;
  border-radius: 999px;
  transition: background 0.2s ease, transform 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  border: 1.5px solid var(--teal-cta);
}

.role-btn:hover {
  background: #224657;
  border-color: #224657;
  transform: translateY(-1px);
}

.role-btn svg {
  width: 13px;
  height: 13px;
  transition: transform 0.2s ease;
}

.role-btn:hover svg {
  transform: translateX(2px);
}

.role-btn--ghost {
  background: transparent;
  color: var(--blue-stat);
  border-color: rgba(74, 122, 166, 0.4);
}

.role-btn--ghost:hover {
  background: var(--intro-bg);
  border-color: var(--blue-stat);
  color: var(--blue-deep);
}

.roles-empty {
  text-align: center;
  font-family: 'Quicksand', 'Nunito', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--white);
  padding: 32px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
}

/* ============================================================
   CAREERS — Open Application CTA
   ============================================================ */
.careers-cta-section {
  padding: 72px 32px 88px;
}

.careers-cta-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.careers-cta-title {
  font-family: 'Quicksand', 'Nunito', sans-serif;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 700;
  color: var(--blue-deep);
  letter-spacing: -0.005em;
  line-height: 1.3;
  margin-bottom: 16px;
}

.careers-cta-text {
  font-family: 'Quicksand', 'Nunito', sans-serif;
  font-size: clamp(0.95rem, 1.4vw, 1.05rem);
  font-weight: 500;
  color: var(--blue-deep);
  line-height: 1.65;
  margin-bottom: 24px;
  opacity: 0.85;
}

.careers-mail-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--teal-cta);
  margin-bottom: 32px;
  transition: opacity 0.2s ease;
}

.careers-mail-link:hover {
  opacity: 0.7;
  text-decoration: underline;
}

.careers-mail-link svg {
  width: 18px;
  height: 18px;
}

/* ============================================================
   CAREERS — Hiring Process
   ============================================================ */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.process-step {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.process-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.step-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: var(--teal-cta);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.step-icon svg {
  width: 24px;
  height: 24px;
}

.step-number {
  display: block;
  font-family: 'Quicksand', 'Nunito', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--blue-stat);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.step-title {
  font-family: 'Quicksand', 'Nunito', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--blue-deep);
  margin-bottom: 10px;
  letter-spacing: 0.005em;
}

.step-desc {
  font-family: 'Nunito', sans-serif;
  font-size: 0.82rem;
  font-weight: 400;
  color: #4a5564;
  line-height: 1.6;
}

/* ============================================================
   CATALOG — Hero
   ============================================================ */
.catalog-hero {
  padding: 56px 32px 72px;
}

.catalog-hero-inner {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}

.catalog-h1 {
  font-family: 'Quicksand', 'Nunito', sans-serif;
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  font-weight: 700;
  color: var(--white);
  text-align: center;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}

.catalog-hero-tagline {
  font-family: 'Quicksand', 'Nunito', sans-serif;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  font-weight: 500;
  color: var(--white);
  line-height: 1.65;
  max-width: 700px;
  margin: 0 auto;
}

.catalog-stats-section {
  padding: 56px 32px;
}

.catalog-stats {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 28px;
}

/* ============================================================
   CATALOG — Featured Release
   ============================================================ */
.featured-section {
  padding: 64px 32px 80px;
}

.featured-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.18);
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  align-items: stretch;
}

.featured-banner {
  position: relative;
  width: 100%;
  min-height: 320px;
  background: var(--intro-bg);
  overflow: hidden;
}

.featured-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.featured-card:hover .featured-banner img {
  transform: scale(1.03);
}

.featured-body {
  padding: 36px 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.featured-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

/* ---------- Featured section: store icons ----------
   Image-based platform icons (PC / PS5 / iOS) replacing the
   earlier text tags. Drop your PNG/SVG icons into
   assets/icons/store-pc.png, store-ps5.png, store-ios.png.
*/
.featured-store {
  height: 28px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
  opacity: 0.9;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.featured-store:hover {
  transform: translateY(-1px);
  opacity: 1;
}

.tag {
  display: inline-block;
  background: var(--intro-bg);
  color: var(--blue-stat);
  font-family: 'Quicksand', 'Nunito', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
}

.tag--accent {
  background: rgba(217, 122, 58, 0.15);
  color: var(--accent);
}

.featured-title {
  font-family: 'Quicksand', 'Nunito', sans-serif;
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 700;
  color: var(--blue-deep);
  letter-spacing: -0.01em;
  line-height: 1.1;
}

.featured-desc {
  font-family: 'Nunito', sans-serif;
  font-size: 0.92rem;
  font-weight: 400;
  color: #4a5564;
  line-height: 1.65;
}

.featured-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
}

.rating-stars {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  color: var(--star);
}

.rating-stars svg {
  width: 16px;
  height: 16px;
}

.rating-score {
  font-family: 'Quicksand', 'Nunito', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--blue-deep);
}

.rating-count {
  font-family: 'Nunito', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--muted);
}

.featured-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.featured-actions .cta-btn {
  padding: 11px 20px;
  font-size: 0.8rem;
  cursor: pointer;
}

/* ============================================================
   CATALOG — All Games grid
   ============================================================ */
.catalog-grid-section {
  padding: 80px 32px;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.catalog-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.25s ease;
}

.catalog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.14);
}

.catalog-card.is-hidden {
  display: none;
}

.catalog-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--intro-bg);
}

.catalog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.catalog-card:hover .catalog-thumb img {
  transform: scale(1.06);
}

.catalog-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 50%,
    rgba(0, 0, 0, 0.18) 100%
  );
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.catalog-card:hover .catalog-thumb::after {
  opacity: 1;
}

.catalog-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--blue-deep);
  font-family: 'Quicksand', 'Nunito', sans-serif;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  z-index: 2;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
}

.catalog-tag--accent {
  background: var(--accent);
  color: var(--white);
}

.catalog-tag--popular {
  background: var(--blue-deep);
  color: var(--white);
}

/* Catalog body */
.catalog-body {
  padding: 18px 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-grow: 1;
}

.catalog-title {
  font-family: 'Quicksand', 'Nunito', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--blue-deep);
  letter-spacing: 0.005em;
}

.catalog-desc {
  font-family: 'Nunito', sans-serif;
  font-size: 0.78rem;
  font-weight: 400;
  color: #4a5564;
  line-height: 1.55;
  flex-grow: 1;
}

.catalog-platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 2px;
}

.platform-chip {
  display: inline-block;
  background: rgba(127, 200, 230, 0.20);
  color: var(--blue-deep);
  font-family: 'Quicksand', 'Nunito', sans-serif;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 3px 8px;
  border-radius: 4px;
}

.catalog-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  padding-top: 12px;
  border-top: 1px solid var(--footer-rule);
}

.catalog-rating {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: 'Quicksand', 'Nunito', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--blue-deep);
}

.catalog-rating svg {
  width: 14px;
  height: 14px;
  color: var(--star);
}

.catalog-watch {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--teal-cta);
  color: var(--white);
  font-family: 'Quicksand', 'Nunito', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 6px 12px;
  border-radius: 999px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.catalog-watch:hover {
  background: #224657;
  transform: translateY(-1px);
}

.catalog-watch svg {
  width: 11px;
  height: 11px;
}

/* Empty state */
.catalog-empty {
  grid-column: 1 / -1;
  text-align: center;
  font-family: 'Quicksand', 'Nunito', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--blue-stat);
  padding: 32px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
}

/* Load more */
.load-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.load-more-btn {
  cursor: pointer;
}

.load-more-chevron {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

/* Flip the chevron when the button is in "Load Less" state */
.load-more-btn.is-expanded .load-more-chevron {
  transform: rotate(180deg);
}

/* ---------- Load-more card visibility & reveal animation ----------
   Cards in the load-more batch are fully removed from the layout
   (display: none) until the script adds .is-staged. They animate into
   place when .is-revealed is added, and animate back out when it's
   removed (after which .is-staged is also removed to free the grid space).
*/
.catalog-card.is-load-more {
  display: none;
}

.catalog-card.is-load-more.is-staged {
  /* Match the base .catalog-card display so the card lays out correctly */
  display: flex;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.45s ease, transform 0.45s ease, box-shadow 0.3s ease;
}

.catalog-card.is-load-more.is-staged.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   PRIVACY — Hero
   ============================================================ */
.privacy-hero {
  padding: 56px 32px 64px;
}

.privacy-hero-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.privacy-h1 {
  font-family: 'Quicksand', 'Nunito', sans-serif;
  font-size: clamp(2.2rem, 4.4vw, 3.4rem);
  font-weight: 700;
  color: var(--white);
  text-align: center;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 22px;
}

.privacy-hero-tagline {
  font-family: 'Quicksand', 'Nunito', sans-serif;
  font-size: clamp(0.98rem, 1.5vw, 1.1rem);
  font-weight: 500;
  color: var(--white);
  line-height: 1.65;
  max-width: 700px;
  margin: 0 auto 28px;
  opacity: 0.95;
}

/* Meta row (last updated + entity) */
.privacy-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 14px;
  margin-top: 8px;
}

.privacy-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.36);
  color: var(--white);
  font-family: 'Quicksand', 'Nunito', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 7px 14px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.privacy-meta-item svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* ============================================================
   PRIVACY — Body layout (sticky TOC + content)
   ============================================================ */
.privacy-body-section {
  padding: 72px 32px 96px;
}

.privacy-layout {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 56px;
  align-items: start;
}

/* ---------- Table of Contents ---------- */
.privacy-toc {
  position: sticky;
  top: 96px; /* below sticky header */
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 22px 22px 18px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
  max-height: calc(100vh - 120px);
  overflow-y: auto;
}

.privacy-toc-title {
  font-family: 'Quicksand', 'Nunito', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue-deep);
  margin-bottom: 14px;
}

.privacy-toc-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.privacy-toc-list a {
  display: block;
  font-family: 'Nunito', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--muted);
  padding: 7px 12px;
  border-left: 2px solid transparent;
  border-radius: 0 6px 6px 0;
  margin-left: -2px;
  line-height: 1.4;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.privacy-toc-list a:hover {
  color: var(--blue-deep);
  background: var(--intro-bg);
}

.privacy-toc-list a.is-active {
  color: var(--blue-deep);
  font-weight: 700;
  border-left-color: var(--blue-deep);
  background: var(--intro-bg);
}

/* ---------- Content column ---------- */
.privacy-content {
  min-width: 0; /* prevents overflow within grid */
}

/* Block: each policy section */
.policy-block {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 36px 32px;
  margin-bottom: 24px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
  scroll-margin-top: 96px;
}

.policy-block:last-child {
  margin-bottom: 0;
}

.policy-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(127, 200, 230, 0.20);
  color: var(--blue-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.policy-icon svg {
  width: 22px;
  height: 22px;
}

.policy-title {
  font-family: 'Quicksand', 'Nunito', sans-serif;
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  font-weight: 700;
  color: var(--blue-deep);
  letter-spacing: -0.005em;
  line-height: 1.25;
  margin-bottom: 18px;
}

.policy-block .eyebrow {
  margin-bottom: 8px;
}

.policy-block p {
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  color: #3f4b5c;
  line-height: 1.75;
  margin-bottom: 16px;
}

.policy-block p:last-child {
  margin-bottom: 0;
}

.policy-block strong {
  color: var(--blue-deep);
  font-weight: 700;
}

.policy-block a {
  color: var(--teal-cta);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: color 0.2s ease;
}

.policy-block a:hover {
  color: #1a3845;
}

/* Lists inside policy blocks */
.policy-list {
  list-style: none;
  margin: 4px 0 18px;
  padding: 0;
}

.policy-list li {
  position: relative;
  padding: 6px 0 6px 22px;
  font-family: 'Nunito', sans-serif;
  font-size: 0.92rem;
  font-weight: 400;
  color: #3f4b5c;
  line-height: 1.6;
}

.policy-list li::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 14px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sky);
}

/* Inline link cards (third-party services + email links) */
.policy-link-card {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--intro-bg);
  border: 1px solid var(--footer-rule);
  color: var(--blue-deep) !important;
  text-decoration: none !important;
  font-family: 'Quicksand', 'Nunito', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.005em;
  padding: 12px 18px;
  border-radius: 10px;
  margin: 0 0 20px;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.policy-link-card:hover {
  background: var(--white);
  border-color: var(--blue-stat);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.policy-link-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--white);
  color: var(--blue-deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid var(--footer-rule);
}

.policy-link-icon svg {
  width: 16px;
  height: 16px;
}

.policy-link-text {
  flex-grow: 1;
}

.policy-link-arrow {
  display: inline-flex;
  color: var(--blue-stat);
  flex-shrink: 0;
  transition: transform 0.2s ease, color 0.2s ease;
}

.policy-link-arrow svg {
  width: 16px;
  height: 16px;
}

.policy-link-card:hover .policy-link-arrow {
  color: var(--blue-deep);
  transform: translate(2px, -2px);
}

.policy-link-card--mail:hover .policy-link-arrow {
  transform: translateX(3px);
}

/* Contact block specifics */
.policy-block--contact {
  background: var(--white);
}

.policy-address {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--intro-bg);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  margin: 8px 0 24px;
  font-style: normal;
}

.policy-address-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--white);
  color: var(--blue-deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid var(--footer-rule);
}

.policy-address-icon svg {
  width: 18px;
  height: 18px;
}

.policy-address-text {
  font-family: 'Nunito', sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  color: #3f4b5c;
  line-height: 1.65;
}

.policy-address-text strong {
  color: var(--blue-deep);
  font-weight: 700;
}

/* Hero-actions left-align variant (used inside contact block) */
.hero-actions--start {
  justify-content: flex-start;
}

/* ============================================================
   CONTACT — Hero
   ============================================================ */
.contact-hero {
  padding: 60px 32px 76px;
}

.contact-hero-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.contact-h1 {
  font-family: 'Quicksand', 'Nunito', sans-serif;
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}

.contact-hero-tagline {
  font-family: 'Quicksand', 'Nunito', sans-serif;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  font-weight: 500;
  color: var(--white);
  line-height: 1.65;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.95;
}

/* ============================================================
   CONTACT — Reach Us (3-column grid: Address / Location / Form)
   ============================================================ */
.contact-cols-section {
  padding: 72px 32px 96px;
}

/* Section heading sits centered above the grid */
.contact-cols-section .section-heading {
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
}

/* 3-column grid wrapping the three cards */
.contact-cols-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

/* ---------- Shared card base ---------- */
.contact-col-card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-col-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
}

/* Card header — icon tile + title */
.contact-col-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 22px 24px 16px;
  border-bottom: 1px solid var(--footer-rule);
}

.contact-col-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(127, 200, 230, 0.20);
  color: var(--blue-deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.contact-col-icon svg {
  width: 20px;
  height: 20px;
}

.contact-col-title {
  font-family: 'Quicksand', 'Nunito', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--blue-deep);
  letter-spacing: 0.005em;
  line-height: 1.2;
}

/* Card body */
.contact-col-body {
  padding: 22px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  flex-grow: 1;
}

/* ============================================================
   Column 1: ADDRESS
   ============================================================ */
.contact-address {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-style: normal; /* override default italic on <address> */
  font-family: 'Nunito', sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
  color: #4a5564;
  line-height: 1.65;
}

.contact-address strong {
  font-family: 'Quicksand', 'Nunito', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--blue-deep);
  letter-spacing: 0.005em;
  margin-bottom: 4px;
}

/* Quick-contact list (email / phone / hours) */
.contact-quick-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0;
  padding: 16px 0 0;
  border-top: 1px solid var(--footer-rule);
  list-style: none;
}

.contact-quick-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Nunito', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  color: #4a5564;
  line-height: 1.4;
}

.contact-quick-list li svg {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  color: var(--blue-stat);
}

.contact-quick-list li a {
  color: var(--blue-deep);
  font-weight: 600;
  transition: color 0.2s ease;
  word-break: break-word;
}

.contact-quick-list li a:hover {
  color: var(--teal-cta);
}

/* ---------- Copy-to-clipboard button next to email ----------
   Sits inline after the email link. Shows a clipboard icon by default,
   swaps to a checkmark + "Copied!" pill after a successful copy.
*/
.contact-quick-item--with-copy {
  /* Allow the copy button to sit in the same row as the email link */
  flex-wrap: wrap;
}

.contact-copy-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 6px;
  border: 0;
  padding: 0;
  background: var(--intro-bg);
  color: var(--blue-stat);
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.contact-copy-btn:hover {
  background: var(--blue-deep);
  color: var(--white);
  transform: translateY(-1px);
}

.contact-copy-btn:focus-visible {
  outline: 2px solid var(--blue-deep);
  outline-offset: 2px;
}

.contact-copy-btn svg {
  width: 13px;
  height: 13px;
  pointer-events: none;
}

/* Default state: show clipboard icon, hide checkmark */
.contact-copy-icon-done {
  display: none;
}

/* Success state: hide clipboard, show checkmark + green tint */
.contact-copy-btn.is-copied {
  background: #2f9e63;
  color: var(--white);
  transform: translateY(-1px);
}

.contact-copy-btn.is-copied .contact-copy-icon-default {
  display: none;
}

.contact-copy-btn.is-copied .contact-copy-icon-done {
  display: block;
}

/* Floating "Copied!" pill that appears above the button on success */
.contact-copy-feedback {
  position: absolute;
  bottom: calc(100% + 6px);
  left: 50%;
  transform: translate(-50%, 4px);
  background: var(--blue-deep);
  color: var(--white);
  font-family: 'Quicksand', 'Nunito', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 4px 9px;
  border-radius: 999px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.contact-copy-feedback::after {
  /* Small downward-pointing tail under the pill */
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 4px solid transparent;
  border-top-color: var(--blue-deep);
}

.contact-copy-btn.is-copied .contact-copy-feedback {
  opacity: 1;
  transform: translate(-50%, 0);
}

/* "Get Directions" button — sits at the bottom of the address card */
.contact-directions-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
  margin-top: auto; /* pushes button to bottom of flex-column body */
  font-family: 'Quicksand', 'Nunito', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--teal-cta);
  padding: 10px 18px;
  border-radius: 999px;
  border: 1.5px solid var(--teal-cta);
  background: transparent;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.contact-directions-link:hover {
  background: var(--teal-cta);
  color: var(--white);
  transform: translateY(-1px);
}

.contact-directions-link svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.contact-directions-link:hover svg {
  transform: translate(2px, -2px);
}

/* ============================================================
   Column 2: LOCATION (map)
   ============================================================ */
.contact-col-body--map {
  padding: 0;
  gap: 0;
}

.contact-map-frame {
  position: relative;
  width: 100%;
  /* Tall map fills most of the column. Use a 4:5 ratio so it has presence
     even at the narrow 1/3-width column size. */
  aspect-ratio: 4 / 5;
  background: var(--intro-bg);
  overflow: hidden;
}

.contact-map-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.contact-map-caption {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 14px 20px;
  border-top: 1px solid var(--footer-rule);
  font-family: 'Quicksand', 'Nunito', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--blue-deep);
  letter-spacing: 0.02em;
}

.contact-map-caption svg {
  width: 14px;
  height: 14px;
  color: var(--accent);
  flex-shrink: 0;
}

/* ============================================================
   Column 3: GOOGLE FORM
   ============================================================ */
.contact-col-body--form {
  padding: 0;
  gap: 0;
}

.gform-wrap {
  width: 100%;
  background: var(--white);
  overflow: hidden;
}

.gform-iframe {
  display: block;
  width: 100%;
  min-height: 600px;
  border: 0;
  background: var(--white);
}

/* Fallback "Open in new tab" link below the iframe */
.contact-form-fallback {
  padding: 14px 20px;
  border-top: 1px solid var(--footer-rule);
  text-align: center;
  font-family: 'Nunito', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--muted);
}

.contact-form-fallback a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--teal-cta);
  font-weight: 700;
  margin-left: 3px;
  transition: color 0.2s ease;
}

.contact-form-fallback a:hover {
  color: var(--blue-deep);
}

.contact-form-fallback a svg {
  width: 12px;
  height: 12px;
  transition: transform 0.2s ease;
}

.contact-form-fallback a:hover svg {
  transform: translate(2px, -2px);
}

/* ============================================================
   CONTACT — FAQ Accordion
   ============================================================ */
.contact-faq-section {
  padding: 72px 32px 96px;
}

.contact-faq-inner {
  max-width: 820px;
  margin: 0 auto;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition: box-shadow 0.25s ease;
}

.faq-item[open] {
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.10);
}

.faq-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 24px;
  cursor: pointer;
  list-style: none;
  outline: none;
}

/* Strip default disclosure marker (Safari + Chrome) */
.faq-summary::-webkit-details-marker { display: none; }
.faq-summary::marker { display: none; }

.faq-question {
  font-family: 'Quicksand', 'Nunito', sans-serif;
  font-size: clamp(0.95rem, 1.4vw, 1.05rem);
  font-weight: 700;
  color: var(--blue-deep);
  line-height: 1.4;
  flex-grow: 1;
}

.faq-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--intro-bg);
  color: var(--blue-deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, color 0.2s ease, transform 0.3s ease;
}

.faq-icon-plus {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.faq-item[open] .faq-icon {
  background: var(--blue-deep);
  color: var(--white);
}

.faq-item[open] .faq-icon-plus {
  transform: rotate(45deg);
}

.faq-summary:hover .faq-icon {
  background: var(--sky);
  color: var(--white);
}

.faq-body {
  padding: 0 24px 22px;
}

.faq-body p {
  font-family: 'Nunito', sans-serif;
  font-size: 0.92rem;
  font-weight: 400;
  color: #4a5564;
  line-height: 1.7;
}

.faq-body a {
  color: var(--teal-cta);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.faq-body a:hover {
  color: var(--blue-deep);
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: var(--footer-bg);
  padding: 56px 32px 0;
  margin-top: 0;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1.3fr 1.2fr;
  gap: 48px;
  align-items: start;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-brand-name {
  font-family: 'Quicksand', 'Nunito', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--blue-deep);
  letter-spacing: 0.01em;
}

.footer-brand-tagline {
  font-family: 'Nunito', sans-serif;
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--muted);
  line-height: 1.7;
  max-width: 320px;
}

.footer-socials {
  display: flex;
  gap: 18px;
  margin-top: 4px;
}

.footer-social {
  width: 24px;
  height: 24px;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-social:hover {
  color: var(--blue-deep);
  transform: translateY(-1px);
}

.footer-social svg {
  width: 100%;
  height: 100%;
}

.footer-art {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.footer-art img {
  width: 100%;
  max-width: 360px;
  height: auto;
  object-fit: contain;
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  justify-self: end;
  width: 100%;
  max-width: 380px;
}

.footer-col-title {
  font-family: 'Quicksand', 'Nunito', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--blue-deep);
  margin-bottom: 14px;
}

.footer-col-links li {
  margin-bottom: 8px;
}

.footer-col-links a {
  font-family: 'Nunito', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s ease;
}

.footer-col-links a:hover {
  color: var(--blue-deep);
}

.footer-bottom {
  max-width: var(--max-width);
  margin: 32px auto 0;
  padding: 22px 0;
  border-top: 1px solid var(--footer-rule);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-copy,
.footer-credit {
  font-family: 'Nunito', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--muted);
}

/* ============================================================
   Video Player Modal
   ============================================================ */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  visibility: hidden;
  pointer-events: none;
}

.video-modal.is-open {
  visibility: visible;
  pointer-events: auto;
}

.video-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 18, 32, 0.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.video-modal.is-open .video-backdrop {
  opacity: 1;
}

.video-panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 900px;
  background: #000;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  transform: scale(0.92) translateY(16px);
  opacity: 0;
  transition: transform 0.32s cubic-bezier(0.34, 1.3, 0.64, 1),
              opacity 0.25s ease;
}

.video-modal.is-open .video-panel {
  transform: scale(1) translateY(0);
  opacity: 1;
}

.video-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  background: #0f1720;
  color: #fff;
  gap: 16px;
}

.video-header-title {
  font-family: 'Quicksand', 'Nunito', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: #fff;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.video-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 0;
  color: #fff;
  transition: background 0.2s ease, transform 0.2s ease;
}

.video-close:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: rotate(90deg);
}

.video-close svg {
  width: 18px;
  height: 18px;
  pointer-events: none;
}

.video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}

.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-art {
    grid-column: 1 / -1;
    order: 3;
    margin-top: 8px;
  }

  .footer-art img {
    max-width: 280px;
  }

  .footer-cols {
    justify-self: start;
    max-width: 100%;
  }

  .offer-row {
    gap: 40px;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .about-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px 24px;
  }

  .careers-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 36px 24px;
  }

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

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

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Catalog: 3-column grid on tablet */
  .catalog-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Catalog stats wrap to 3+2 */
  .catalog-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 36px 24px;
  }

  /* Featured stacks under 1024 */
  .featured-card {
    grid-template-columns: 1fr;
  }

  .featured-banner {
    aspect-ratio: 16 / 9;
    min-height: auto;
  }
}

@media (max-width: 960px) {
  .games-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 24px;
  }

  .stats-grid {
    gap: 48px 24px;
  }

  .offer-row {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 56px;
  }

  .studio-row {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .studio-row + .studio-row {
    margin-top: 56px;
  }

  .studio-row .studio-row-text {
    order: 2;
  }

  .studio-row .studio-row-img {
    order: 1;
  }

  /* Catalog: 2-column grid */
  .catalog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Privacy: tighten sidebar */
  .privacy-layout {
    grid-template-columns: 220px 1fr;
    gap: 36px;
  }
}

@media (max-width: 720px) {
  /* ============================================================
     Header: hamburger menu mode
     ============================================================ */
  .header-inner {
    padding: 14px 20px;
    gap: 16px;
    /* No more flex-wrap: nav is absolute-positioned, header stays one row */
    position: relative;
  }

  .logo-name {
    font-size: 1.1rem;
  }

  .logo-sub {
    font-size: 0.52rem;
    letter-spacing: 0.18em;
  }

  .logo-icon {
    width: 80px;
    height: auto;
  }

  /* ---------- Visible hamburger button ---------- */
  .nav-hamburger {
    display: inline-flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
    width: 32px;
    height: 24px;
    cursor: pointer;
    padding: 0;
    background: none;
    border: 0;
    z-index: 60;
    /* Hit area + spacing */
    margin-left: auto;
  }

  .nav-hamburger-bar {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--ink);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.2s ease;
    transform-origin: center;
  }

  /* When the hidden checkbox is checked, morph hamburger -> X */
  .nav-toggle:checked ~ .nav-hamburger .nav-hamburger-bar:nth-child(1) {
    transform: translateY(10.5px) rotate(45deg);
  }

  .nav-toggle:checked ~ .nav-hamburger .nav-hamburger-bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }

  .nav-toggle:checked ~ .nav-hamburger .nav-hamburger-bar:nth-child(3) {
    transform: translateY(-10.5px) rotate(-45deg);
  }

  /* Focus ring for keyboard users */
  .nav-toggle:focus-visible ~ .nav-hamburger {
    outline: 2px solid var(--blue-deep);
    outline-offset: 4px;
    border-radius: 4px;
  }

  /* ---------- Drop-down nav drawer ---------- */
  .site-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    background: var(--white);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.15);
    border-top: 1px solid var(--footer-rule);

    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 0;

    /* Hidden by default */
    visibility: hidden;
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0s linear 0.25s;

    z-index: 55;
  }

  .nav-toggle:checked ~ .site-nav {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0s;
  }

  .site-nav a {
    display: block;
    padding: 14px 24px;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    border-left: 3px solid transparent;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  }

  /* Replace the desktop underline with a left-border highlight */
  .site-nav a::after {
    display: none;
  }

  .site-nav a:hover {
    background: var(--intro-bg);
    border-left-color: var(--sky);
  }

  .site-nav a[aria-current="page"] {
    background: var(--intro-bg);
    border-left-color: var(--blue-deep);
    color: var(--blue-deep);
    font-weight: 700;
  }

  /* ---------- Backdrop covers the page below the header when menu is open ---------- */
  .nav-backdrop {
    display: block;
    position: fixed;
    top: 76px;       /* sits just below the header */
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 18, 32, 0.35);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.25s ease, visibility 0s linear 0.25s;
    z-index: 40;
    cursor: pointer;
  }

  .nav-toggle:checked ~ .nav-backdrop {
    visibility: visible;
    opacity: 1;
    transition: opacity 0.25s ease, visibility 0s;
  }

  /* ============================================================
     Page-section mobile rules (unchanged from before)
     ============================================================ */
  .blue-section {
    padding: 40px 20px 56px;
  }

  .lede {
    margin-bottom: 40px;
  }

  .stats-section {
    padding: 56px 20px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .stat-icon {
    width: 76px;
    height: 76px;
  }

  .hero-image {
    max-height: 280px;
  }

  /* Publish mobile */
  .publish-intro {
    padding: 56px 20px 64px;
  }

  .publish-lede {
    margin: 28px auto 36px;
  }

  .what-we-offer {
    padding: 56px 20px 72px;
  }

  .offer-heading {
    margin-bottom: 44px;
  }

  .offer-list--two-col {
    grid-template-columns: 1fr;
  }

  /* Studio mobile */
  .studio-section {
    padding: 56px 20px;
  }

  .studio-hero,
  .studio-team {
    padding: 56px 20px 64px;
  }

  .studio-h1,
  .studio-h2 {
    margin-bottom: 28px;
  }

  .studio-hero-tagline {
    margin-top: 32px;
  }

  /* What we help with — mobile */
  .help-section {
    padding-bottom: 56px;
  }

  .help-banner {
    padding: 40px 20px;
  }

  .help-grid-wrap {
    padding: 40px 20px 0;
  }

  .help-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  /* About mobile */
  .about-hero {
    padding: 48px 20px 60px;
  }

  .about-stats-section {
    padding: 56px 20px;
  }

  .about-stats {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-team-section {
    padding: 56px 20px 72px;
  }

  .about-team-header {
    margin-bottom: 40px;
  }

  .team-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin: 0 auto;
  }

  .about-cta {
    padding: 56px 20px 72px;
  }

  /* Careers mobile */
  .careers-hero {
    padding: 48px 20px 64px;
  }

  .careers-stats-section {
    padding: 48px 20px;
  }

  .careers-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 16px;
  }

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

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .role-card {
    padding: 22px 20px;
  }

  .role-meta {
    gap: 10px;
  }

  .role-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .role-actions {
    width: 100%;
    justify-content: stretch;
  }

  .role-btn {
    flex: 1;
    justify-content: center;
  }

  .careers-cta-section {
    padding: 56px 20px 72px;
  }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* Catalog mobile */
  .catalog-hero {
    padding: 48px 20px 56px;
  }

  .catalog-stats-section {
    padding: 48px 20px;
  }

  .catalog-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 16px;
  }

  .featured-section {
    padding: 56px 20px 72px;
  }

  .featured-body {
    padding: 24px 20px 22px;
  }

  /* Slightly smaller store icons on mobile */
  .featured-store {
    height: 24px;
  }

  .catalog-grid-section {
    padding: 56px 20px;
  }

  .catalog-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }

  /* Privacy mobile */
  .privacy-hero {
    padding: 48px 20px 56px;
  }

  .privacy-body-section {
    padding: 48px 20px 64px;
  }

  .privacy-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  /* TOC becomes a non-sticky pill bar at the top */
  .privacy-toc {
    position: static;
    max-height: none;
    padding: 18px 18px 14px;
  }

  .policy-block {
    padding: 26px 22px 24px;
  }

  /* Contact mobile */
  .contact-hero {
    padding: 48px 20px 56px;
  }

  .contact-cols-section {
    padding: 56px 20px 72px;
  }

  /* Stack the 3 columns vertically on narrow screens */
  .contact-cols-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact-col-head {
    padding: 18px 20px 14px;
  }

  .contact-col-body {
    padding: 18px 20px 22px;
  }

  /* Map takes its natural ratio on mobile (a bit shorter than desktop) */
  .contact-map-frame {
    aspect-ratio: 16 / 11;
  }

  .gform-iframe {
    /* Google's mobile-friendly form layout works best with a taller
       container to reduce internal scrolling. */
    min-height: 760px;
  }

  .contact-faq-section {
    padding: 56px 20px 72px;
  }

  .faq-summary {
    padding: 16px 20px;
  }

  .faq-body {
    padding: 0 20px 18px;
  }


  /* Footer mobile */
  .site-footer {
    padding: 40px 20px 0;
  }

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

  .footer-cols {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-art {
    order: 3;
  }

  .footer-bottom {
    margin-top: 24px;
    padding: 20px 0;
    justify-content: center;
    text-align: center;
  }

  .video-modal {
    padding: 12px;
  }

  .video-header {
    padding: 10px 14px;
  }
}

@media (max-width: 480px) {
  .games-grid {
    grid-template-columns: 1fr;
    max-width: 320px;
  }

  .footer-cols {
    grid-template-columns: 1fr 1fr;
    gap: 28px 24px;
  }

  .careers-stats,
  .catalog-stats {
    grid-template-columns: 1fr;
    gap: 26px;
  }
}
