/* ===== Impact Reality v2 — EasyA-inspired dark/glass design system ===== */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --bg-black: #07070c;
  --bg-dark: #0b0b13;
  --bg-card: rgba(255,255,255,0.045);
  --bg-card-hover: rgba(255,255,255,0.075);
  --border: rgba(255,255,255,0.09);
  --border-strong: rgba(255,255,255,0.16);

  --green: #fac213;
  --green-bright: #A6FFBE;
  --violet: #9B6BFF;
  --violet-bright: #B794FF;
  --magenta: #E96BFF;
  --teal: #4DE8D6;
  --cream: #F3F1EA;
  --cream-bright: #FFFFFF;

  --text: #f5f6f8;
  --text-muted: #a2a3b3;
  --text-dim: #6c6d7d;

  --font-display: 'Space Grotesk', 'Inter', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --nav-h: 84px;
  --max-w: 1320px;
  --radius: 22px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg-black);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}
/* Animated backdrop, injected by main.js as real elements (.bg-orbs) rather than a
   single ::before — each of the 4 brand-color orbs (cyan, magenta, gold, green — one
   per division, same palette as the "VR Game Lifecycle" / "Idea to Impact" text
   treatments) runs its own irregular path at its own speed via mix-blend-mode:screen,
   so they drift independently and blend into each other on overlap instead of ever
   locking into a fixed, synchronized formation. */
.bg-orbs {
  position: fixed;
  inset: 0;
  z-index: -3;
  overflow: hidden;
  pointer-events: none;
  background: var(--bg-black);
}
.bg-orbs::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, transparent 0%, transparent 45%, rgba(5,5,9,0.45) 75%, rgba(5,5,9,0.82) 100%);
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  mix-blend-mode: screen;
  will-change: transform;
}
.orb--cyan {
  width: 52vw; height: 52vw; left: 6%; top: 10%;
  background: radial-gradient(circle, rgba(50,205,249,0.5) 0%, transparent 72%);
  animation: orb-cyan 47s ease-in-out infinite;
}
.orb--magenta {
  width: 58vw; height: 58vw; left: 38%; top: 24%;
  background: radial-gradient(circle, rgba(208,101,236,0.55) 0%, transparent 72%);
  animation: orb-magenta 63s ease-in-out infinite;
}
.orb--gold {
  width: 42vw; height: 42vw; left: 54%; top: 6%;
  background: radial-gradient(circle, rgba(250,194,19,0.4) 0%, transparent 72%);
  animation: orb-gold 39s ease-in-out infinite;
}
.orb--green {
  width: 36vw; height: 36vw; left: 16%; top: 52%;
  background: radial-gradient(circle, rgba(0,251,149,0.3) 0%, transparent 72%);
  animation: orb-green 54s ease-in-out infinite;
}
@keyframes orb-cyan {
  0%   { transform: translate(0, 0) scale(1); }
  21%  { transform: translate(16vw, -10vw) scale(1.18); }
  47%  { transform: translate(-7vw, 14vw) scale(0.85); }
  68%  { transform: translate(13vw, 9vw) scale(1.1); }
  100% { transform: translate(0, 0) scale(1); }
}
@keyframes orb-magenta {
  0%   { transform: translate(0, 0) scale(1); }
  30%  { transform: translate(-19vw, 9vw) scale(1.16); }
  58%  { transform: translate(8vw, -16vw) scale(0.82); }
  82%  { transform: translate(-10vw, -5vw) scale(1.1); }
  100% { transform: translate(0, 0) scale(1); }
}
@keyframes orb-gold {
  0%   { transform: translate(0, 0) scale(1); }
  17%  { transform: translate(-13vw, 13vw) scale(1.14); }
  44%  { transform: translate(14vw, 4vw) scale(0.88); }
  73%  { transform: translate(-4vw, -14vw) scale(1.16); }
  100% { transform: translate(0, 0) scale(1); }
}
@keyframes orb-green {
  0%   { transform: translate(0, 0) scale(1); }
  26%  { transform: translate(11vw, 11vw) scale(1.12); }
  52%  { transform: translate(-14vw, -6vw) scale(0.8); }
  79%  { transform: translate(6vw, -14vw) scale(1.16); }
  100% { transform: translate(0, 0) scale(1); }
}
/* Film-grain atmosphere layer, per frontend-design skill guidance (avoid flat empty backgrounds) */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -2;
  opacity: 0.05;
  mix-blend-mode: overlay;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
button { font-family: inherit; cursor: pointer; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 48px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 14px;
  padding: 6px 14px 6px 6px;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  background: rgba(250,194,19,0.06);
}
.eyebrow.no-dot { padding-left: 16px; }
.eyebrow.no-dot::before { display: none; }
.eyebrow::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px 1px rgba(250,194,19,0.7);
  display: inline-block;
}

h1, h2, h3, .display {
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: none;
  letter-spacing: -0.03em;
  line-height: 1.02;
  margin: 0;
}

.section-title {
  font-size: clamp(2.2rem, 4.4vw, 3.6rem);
  color: var(--text);
  font-weight: 700;
}
#services .section-title { font-family: var(--font-body); font-weight: 700; line-height: 1.3; }
#services .section-title em { font-style: normal; color: #fff; }
#testimonials .section-title { font-family: var(--font-body); font-weight: 400; color: #fff; }
#testimonials .section-title em { font-weight: 700; font-style: normal; color: #fff; }
#results .section-title { font-family: var(--font-body); font-weight: 700; }
#results .section-title em { font-style: normal; color: #fff; }
#games .section-title { font-family: var(--font-body); font-weight: 700; }
#games .section-title em { font-style: normal; color: #fff; }
#startengine .section-title { font-family: var(--font-body); font-weight: 700; }
#startengine .section-title em { font-style: normal; color: #fff; }
.section-title em {
  font-style: normal;
  color: #fff;
}
.section-sub {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text-muted);
  font-size: 1.04rem;
  max-width: 640px;
  margin-top: 16px;
  line-height: 1.7;
}
.section-sub.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center { text-align: center; }
.section-head.center .eyebrow { justify-content: center; }

.section {
  /* max lowered from 116px to 107.5px so two untouched section paddings stacking at a
     boundary total 215px (was 232px) at desktop widths, per Todd's ask. */
  padding: clamp(60px, 8vw, 107.5px) 0;
  position: relative;
}
.section--tight { padding: clamp(44px, 6vw, 76px) 0; }
/* .section--alt used to add a faint rgba(255,255,255,0.015) tint for zebra-striping
   between sections — removed because its hard rectangular edge, sitting on top of the
   smooth page-wide nebula background, read as a visible seam wherever it was used
   (the #games, #timeline, and #global-presence sections all had this class). The class
   is still applied in markup in a few places; it's just a no-op now. */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 30px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  text-transform: none;
  border: 1px solid transparent;
  transition: transform 0.25s var(--ease), background 0.25s, border-color 0.25s, color 0.25s, box-shadow 0.25s;
  font-family: var(--font-display);
}
.btn-gold {
  background: linear-gradient(180deg, var(--cream-bright), var(--cream));
  color: #0a0a10;
  box-shadow: 0 1px 0 rgba(255,255,255,0.6) inset, 0 14px 30px -12px rgba(0,0,0,0.55);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 1px 0 rgba(255,255,255,0.6) inset, 0 18px 40px -12px rgba(0,0,0,0.65); }
.btn-outline {
  border-color: var(--border-strong);
  color: var(--text);
  background: rgba(255,255,255,0.03);
}
.btn-outline:hover { border-color: var(--green); color: var(--green); transform: translateY(-2px); }

/* ===== Nav ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(7,7,12,0);
  border-bottom: 1px solid transparent;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
}
.site-header.scrolled {
  background: rgba(7,7,12,0.78);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom-color: var(--border);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo img { height: 38px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links > li > a {
  font-weight: 500;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  text-transform: none;
  color: var(--text);
  opacity: 0.78;
  transition: opacity 0.2s, color 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
}
.nav-links > li > a:hover { opacity: 1; color: #fac213; }
.nav-links > li.current > a { color: var(--text); opacity: 1; }
/* .btn-gold sets its own text color for the nav CTA — the generic link rule above
   (higher specificity via the li>a chain) was overriding it with pale near-white
   text at 0.78 opacity, making the cream pill unreadable. */
.nav-links > li.nav-cta > a { color: #0a0a10; opacity: 1; background: #fac213; border-radius: 10px; text-transform: none; padding: 10px 18px; box-shadow: 0 0 6px 0px rgba(250,194,19,0.3); border: none; }
.nav-links > li.nav-cta > a:hover { color: #0a0a10; opacity: 1; background: #fac213; border-radius: 10px; box-shadow: 0 0 10px 1px rgba(250,194,19,0.45); transform: translateY(-2px); }

.nav-caret { width: 9px; height: 9px; transition: transform 0.25s var(--ease); }
.nav-item--dropdown.open .nav-caret { transform: rotate(180deg); }

.nav-item--dropdown { position: relative; }
.nav-dropdown {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  width: max-content;
  background: #14141c;
  border: 1px solid var(--border-strong);
  border-radius: 18px;
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s var(--ease), transform 0.22s var(--ease), visibility 0.22s;
  box-shadow: 0 24px 60px rgba(0,0,0,0.55);
}
.nav-item--dropdown.open .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  border-radius: 12px;
  transition: background 0.2s;
}
.nav-dropdown a:hover { background: rgba(250,194,19,0.07); }
.nav-dropdown .division-name { font-weight: 700; font-size: 0.9rem; font-family: var(--font-body); }
.nav-dropdown .division-tag { display: block; font-size: 0.72rem; color: var(--text-dim); font-weight: 500; text-transform: none; letter-spacing: 0; margin-top: 1px; }

.nav-cta { margin-left: 8px; }
.nav-toggle {
  display: none;
  background: none; border: none;
  width: 32px; height: 24px;
  position: relative;
}
.nav-toggle span {
  position: absolute; left: 0; right: 0; height: 2px;
  background: var(--text);
  transition: transform 0.25s var(--ease), opacity 0.25s;
}
.nav-toggle span:nth-child(1) { top: 0; }
.nav-toggle span:nth-child(2) { top: 11px; }
.nav-toggle span:nth-child(3) { top: 22px; }
.nav-toggle.open span:nth-child(1) { transform: translateY(11px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-11px) rotate(-45deg); }

/* ===== Hero ===== */
.hero {
  position: relative;
  padding-top: calc(var(--nav-h) + 96px);
  padding-bottom: 48px;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(60% 55% at 50% 15%, black, transparent);
  -webkit-mask-image: radial-gradient(60% 55% at 50% 15%, black, transparent);
  z-index: -1;
  pointer-events: none;
}
.hero-inner { text-align: center; max-width: 900px; margin: 0 auto; position: relative; z-index: 2; }
.hero h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  color: var(--text);
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 700;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(90deg, #32CDF9, #D065EC, #FAC213, #00FB95);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.hero-sub {
  margin: 24px auto 0;
  max-width: 620px;
  color: var(--text);
  font-size: 1.14rem;
  line-height: 1.7;
}
.hero-actions .btn { border-radius: 10px; font-family: var(--font-body); padding: 14px 26px; }
.hero-actions .btn-outline:hover { border-color: #fac213; color: #fac213; }
.hero-actions .btn-gold { transition: transform 0.25s var(--ease); }
.hero-actions .btn-gold:hover { background: #fac213; box-shadow: none; }
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 36px;
  flex-wrap: wrap;
}
.hero-platforms {
  margin-top: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  opacity: 0.7;
}
.hero-platforms i { font-size: 1.6rem; color: var(--text-muted); }
.hero-platforms span { font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-dim); }

@keyframes hfloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-22px) rotate(3deg); }
}

/* ===== Section head ===== */
.section-head { margin-bottom: 52px; }

/* ===== Games carousel ("Games We've Worked With") ===== */
.games-marquee-wrap {
  display: flex;
  flex-direction: column;
  gap: 22px;
  overflow: hidden;
  padding: 6px 0 28px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.games-marquee-row { overflow: hidden; width: 100%; }
.games-marquee-track {
  display: flex;
  gap: 22px;
  width: max-content;
  animation: games-marquee-scroll 70s linear infinite;
}
.games-marquee-track--row2 { animation-duration: 92s; }
.games-marquee-row:hover .games-marquee-track,
.games-marquee-row:hover .partners-marquee-track { animation-play-state: paused; }
@keyframes games-marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.game-card {
  position: relative;
  flex: 0 0 auto;
  width: 190px;
  aspect-ratio: 3/4;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
  box-shadow: 0 24px 50px -30px rgba(0,0,0,0.85);
  transition: transform 0.35s var(--ease), border-color 0.35s, box-shadow 0.35s;
}
.game-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}/* No title/studio overlay on these cards anymore — just the art — so the darkening
   gradient that used to protect that text's legibility is gone too. */
.game-card-content { display: none; }
.game-card-title { font-weight: 700; font-size: 1.0rem; line-height: 1.2; font-family: var(--font-display); }
.game-card-studio { display: block; font-size: 0.76rem; color: var(--text-muted); font-weight: 500; margin-top: 3px; }

.carousel-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 8px;
}
.carousel-arrow {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  color: var(--text);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, border-color 0.2s, transform 0.2s, color 0.2s;
}
.carousel-arrow:hover { background: var(--green); border-color: var(--green); color: #06120a; transform: scale(1.05); }
.carousel-dots { display: flex; gap: 7px; }
.carousel-dots span { width: 7px; height: 7px; border-radius: 50%; background: var(--border-strong); transition: background 0.2s, width 0.2s; }
.carousel-dots span.active { background: var(--green); width: 22px; border-radius: 5px; }

/* ===== Stats row ===== */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
}
.stat-cell {
  background: var(--bg-dark);
  padding: 34px 24px;
  text-align: center;
}
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.4vw, 2.8rem);
  color: var(--green);
}
.stat-label { margin-top: 8px; font-size: 0.82rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; }
.stat-highlight { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; color: var(--green); }
.stat-desc { margin-top: 8px; font-size: 0.86rem; color: var(--text-muted); line-height: 1.6; }

/* ===== Timeline (auto-scrolling marquee, pauses on hover) ===== */
.timeline-row {
  margin: 56px -48px 0;
  padding: 40px 0 28px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.timeline-track {
  position: relative;
  display: flex;
  align-items: flex-start;
  width: max-content;
  animation: timeline-marquee-scroll 55s linear infinite;
}
.timeline-row:hover .timeline-track { animation-play-state: paused; }
.timeline-track::before {
  content: '';
  position: absolute;
  top: 33px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--border-strong);
}
@keyframes timeline-marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.timeline-item { position: relative; flex: 0 0 280px; padding: 0 22px; }
.timeline-dot {
  position: absolute;
  top: 26px;
  left: 50%;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--bg-dark);
  border: 2px solid var(--green);
  box-shadow: 0 0 16px 2px rgba(250,194,19,0.55);
  transform: translateX(-50%);
}
.timeline-date {
  position: relative;
  margin-top: 56px;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--green);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
  text-align: center;
}
.timeline-date::before {
  content: '';
  position: absolute;
  top: -15px;
  left: 50%;
  width: 1px;
  height: 15px;
  background: var(--border-strong);
  transform: translateX(-50%);
}
.timeline-body {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px 22px;
  backdrop-filter: blur(10px);
  transition: transform 0.3s var(--ease), border-color 0.3s;
}
.timeline-item:hover .timeline-body { border-color: rgba(250,194,19,0.35); transform: translateY(-4px); }
.timeline-body h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.02rem; text-transform: none; letter-spacing: 0; line-height: 1.35; }
.timeline-body p { margin-top: 8px; color: var(--text-muted); font-size: 0.86rem; line-height: 1.6; }

/* ===== Services / bento grid ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.services-grid--4 { grid-template-columns: repeat(4, 1fr); }
.services-grid--4 .service-card:nth-child(9) { grid-column: 2; }
.services-grid--4 .service-card:nth-child(10) { grid-column: 3; }
@media (max-width: 1080px) {
  .services-grid--4 .service-card:nth-child(9),
  .services-grid--4 .service-card:nth-child(10) { grid-column: auto; }
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
  backdrop-filter: blur(10px);
  transition: transform 0.3s var(--ease), border-color 0.3s, background 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05), 0 24px 44px -30px rgba(0,0,0,0.7);
}
.service-card::before {
  content: '';
  position: absolute; top: -40%; right: -30%;
  width: 60%; height: 60%;
  background: radial-gradient(circle, rgba(250,194,19,0.12), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.service-card:hover { transform: translateY(-6px); border-color: rgba(250,194,19,0.35); background: var(--bg-card-hover); box-shadow: inset 0 1px 0 rgba(255,255,255,0.07), 0 30px 60px -26px rgba(0,0,0,0.75); }
.service-card:hover::before { opacity: 1; }
a.service-card { display: block; }

.divisions-grid { grid-template-columns: repeat(5, 1fr); }
@media (max-width: 1080px) { .divisions-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 767px) { .divisions-grid { grid-template-columns: 1fr; } }
.service-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: rgba(250,194,19,0.1);
  color: var(--green);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 20px;
  position: relative; z-index: 1;
}
.services-grid-gold .service-icon { background: rgba(250,194,19,0.12); color: #fac213; }
.services-grid-gold .service-card:hover { border-color: rgba(250,194,19,0.35); }
.services-grid-gold .service-card::before { background: radial-gradient(circle, rgba(250,194,19,0.12), transparent 70%); }
.service-card h3 { font-family: var(--font-display); text-transform: none; font-weight: 600; font-size: 1.1rem; letter-spacing: 0; position: relative; z-index: 1; }
.service-card p { color: var(--text-muted); font-size: 0.92rem; margin-top: 8px; line-height: 1.6; position: relative; z-index: 1; }

/* Bento variant: first + fourth items span 2 columns on wide services grid */
.services-grid.bento { grid-template-columns: repeat(6, 1fr); }
.services-grid.bento .service-card:nth-child(1) { grid-column: span 3; }
.services-grid.bento .service-card:nth-child(2) { grid-column: span 3; }
.services-grid.bento .service-card:nth-child(3) { grid-column: span 2; }
.services-grid.bento .service-card:nth-child(4) { grid-column: span 2; }
.services-grid.bento .service-card:nth-child(5) { grid-column: span 2; }
.services-grid.bento .service-card:nth-child(6) { grid-column: span 3; }
.services-grid.bento .service-card:nth-child(7) { grid-column: span 3; }
@media (max-width: 1080px) {
  .services-grid.bento { grid-template-columns: repeat(2, 1fr); }
  .services-grid.bento .service-card { grid-column: span 1 !important; }
}

/* ===== About / team-is-your-team ===== */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-lead {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.4vw, 2.1rem);
  text-transform: none;
  color: var(--text);
  line-height: 1.3;
  letter-spacing: 0;
  font-weight: 600;
}
.about-body { margin-top: 22px; color: var(--text-muted); line-height: 1.8; font-size: 1.02rem; }
.about-photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.about-photo-grid img { border-radius: 16px; aspect-ratio: 1; object-fit: cover; border: 1px solid var(--border); }

/* ===== Testimonials ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(10px);
  transition: border-color 0.3s, transform 0.3s var(--ease);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05), 0 30px 60px -34px rgba(0,0,0,0.75);
}
.testimonial-card:hover { border-color: rgba(250,194,19,0.5); }
.testimonial-quote-mark { color: #fac213; font-family: var(--font-display); font-size: 2.4rem; line-height: 1; margin-bottom: 6px; }
.testimonial-text { color: var(--text-muted); font-size: 0.95rem; line-height: 1.75; flex: 1; }
.testimonial-author { margin-top: 22px; display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: #fac213;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.05rem; color: #0a0a10; font-weight: 700;
}
.testimonial-author-name { font-weight: 700; font-size: 0.92rem; }
.testimonial-author-co { font-size: 0.8rem; color: #dbdbdb; }

/* ===== Partners grid (EasyA-style dark cards, replaces marquee look) ===== */
.partners-marquee-wrap { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent); mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent); }
.partners-marquee { display: flex; gap: 20px; width: max-content; animation: marquee 34s linear infinite; align-items: center; }
.partners-marquee img {
  height: 60px; width: 168px; object-fit: contain; padding: 14px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  filter: grayscale(1) brightness(1.6);
  opacity: 0.65;
  transition: opacity 0.25s, filter 0.25s, border-color 0.25s;
}
.partners-marquee img:hover { opacity: 1; filter: none; border-color: rgba(250,194,19,0.35); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ===== CTA band ===== */
.cta-band {
  background: linear-gradient(120deg, rgba(155,107,255,0.14), rgba(250,194,19,0.08));
  border: 1px solid var(--border-strong);
  border-radius: 28px;
  padding: 64px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute; top: -20%; left: -8%;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(155,107,255,0.28), transparent 70%);
}
.cta-band::after {
  content: '';
  position: absolute; bottom: -25%; right: -6%;
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(250,194,19,0.22), transparent 70%);
}

/* ===== Footer ===== */
.site-footer { background: var(--bg-dark); border-top: 1px solid var(--border); padding: 76px 0 32px; }
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 40px;
  padding-bottom: 52px;
  border-bottom: 1px solid var(--border);
}
.footer-brand img { height: 34px; }
.footer-tagline { margin-top: 16px; color: var(--text-muted); font-size: 0.92rem; max-width: 240px; }
.footer-social { display: flex; gap: 12px; margin-top: 22px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid var(--border-strong);
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.2s, color 0.2s;
}
.footer-social a:hover { border-color: var(--green); color: var(--green); }
.footer-col h4 { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-dim); margin: 0 0 18px; font-weight: 700; font-family: var(--font-body); }
.footer-col ul li { margin-bottom: 12px; }
.footer-col a { color: var(--text-muted); font-size: 0.92rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--green); }
.footer-newsletter p { color: var(--text-muted); font-size: 0.88rem; margin: 0 0 16px; }
.footer-newsletter-form { display: flex; gap: 8px; }
.footer-newsletter-form input {
  flex: 1; background: var(--bg-card); border: 1px solid var(--border-strong);
  border-radius: 10px; padding: 12px 14px; color: var(--text); font-size: 0.88rem;
}
.footer-newsletter-form input:focus { outline: none; border-color: var(--green); }
.footer-newsletter-form button {
  background: var(--green); color: #06120a; border: none; border-radius: 10px;
  padding: 0 18px; font-weight: 700; font-size: 0.86rem; font-family: var(--font-display);
}
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 26px; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { color: var(--text-dim); font-size: 0.82rem; margin: 0; }
.footer-bottom-links { display: flex; gap: 22px; }
.footer-bottom-links a { color: var(--text-dim); font-size: 0.82rem; }
.footer-bottom-links a:hover { color: var(--green); }

/* ===== Page header (Team / Contact) ===== */
.page-hero {
  padding-top: calc(var(--nav-h) + 64px);
  padding-bottom: 56px;
  text-align: center;
}
.page-hero .section-sub { margin-left: auto; margin-right: auto; text-align: center; }
.pr-hero-sub { color: #fff; }
.pr-hero-title { font-family: var(--font-body); font-weight: 400; }
.pr-hero-title em { font-weight: 700; font-style: normal; background: none; -webkit-background-clip: unset; background-clip: unset; color: #fac213; }

/* ===== Team page ===== */
.team-grid {
  display: grid;
  gap: 20px;
}
.team-grid--founders { grid-template-columns: repeat(4, 1fr); }
.team-grid--leadership { grid-template-columns: repeat(6, 1fr); }
.team-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  backdrop-filter: blur(10px);
  transition: transform 0.3s var(--ease), border-color 0.3s;
}
.team-card:hover { transform: translateY(-6px); border-color: rgba(250,194,19,0.3); }
.team-photo { aspect-ratio: 4/3.4; overflow: hidden; position: relative; }
.team-photo { background: rgba(217,217,217,0.2); }
.team-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 12%; }
.team-linkedin {
  position: absolute; top: 12px; right: 12px;
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(7,7,12,0.7); backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  color: var(--text); border: 1px solid var(--border-strong);
  transition: background 0.2s, color 0.2s;
}
.team-linkedin:hover { background: var(--green); color: #06120a; }
.team-info { padding: 20px 20px 24px; }
.team-name { font-weight: 700; font-size: 1.06rem; font-family: var(--font-display); }
.team-title { color: var(--green); font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; margin-top: 4px; }
.team-grid--leadership .team-info { padding: 16px 12px 20px; }
.team-grid--leadership .team-title { font-size: 0.62rem; letter-spacing: 0.02em; }
.team-bio { color: var(--text-muted); font-size: 0.88rem; margin-top: 12px; line-height: 1.65; }

/* ===== Contact page ===== */
.contact-rows { display: flex; flex-direction: column; gap: 14px; }
.contact-row {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  backdrop-filter: blur(10px);
  transition: border-color 0.3s, background 0.3s;
  width: 100%;
  font-family: inherit;
  color: inherit;
  text-align: left;
}
.contact-row-main { display: flex; align-items: center; gap: 24px; flex: 1; min-width: 0; }
/* fixed logo box (object-fit: contain, left-aligned) keeps every division's wordmark —
   whatever its native aspect ratio — starting at the same left edge and visual scale. */
.contact-row-logo { height: 44px; width: 150px; object-fit: contain; object-position: left center; flex: 0 0 auto; }
.contact-row-logo--text { display: flex; align-items: center; font-family: var(--font-display); font-weight: 700; font-size: 1.02rem; color: #fff; }
.contact-row--inked .contact-row-logo,
.contact-row--labs .contact-row-logo { height: 39.6px; }
.contact-row-text h3 { font-family: var(--font-display); text-transform: none; font-weight: 700; font-size: 1.05rem; letter-spacing: 0; display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; }
.contact-row-text .contact-role { color: var(--text-dim); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600; }
.contact-row-text p { color: var(--text-muted); font-size: 0.9rem; margin-top: 6px; line-height: 1.5; }
.contact-row-ctas { display: flex; align-items: center; gap: 12px; flex: 0 0 auto; }
.contact-row-ctas .btn { padding: 12px 22px; font-size: 0.84rem; white-space: nowrap; border-radius: 10px; }
/* Per-division accent, reused for the row's hover border and both of its CTAs */
.contact-row--pr { --accent: #FAC213; --accent-soft: rgba(250,194,19,0.14); }
.contact-row--flat2vr { --accent: #508CFF; --accent-soft: rgba(80,140,255,0.14); }
.contact-row--inked { --accent: #BE6EFF; --accent-soft: rgba(190,110,255,0.14); }
.contact-row--spark { --accent: #FF9A3D; --accent-soft: rgba(255,154,61,0.14); }
.contact-row--labs { --accent: #7CFF9E; --accent-soft: rgba(124,255,158,0.14); }
.contact-row--flat2vr:hover { border-color: rgba(80,140,255,0.4); }
.contact-row--inked:hover { border-color: rgba(190,110,255,0.4); }
.contact-row--spark:hover { border-color: rgba(255,154,61,0.4); }
.contact-row--labs:hover { border-color: rgba(124,255,158,0.4); }
.contact-row--pr:hover { border-color: rgba(250,194,19,0.4); }
.contact-row-ctas .btn-outline {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(255,255,255,0.03);
}
.contact-row-ctas .btn-outline:hover { background: var(--accent); color: #0a0a10; border-color: var(--accent); }
@media (max-width: 860px) {
  .contact-row { flex-direction: column; align-items: flex-start; }
  .contact-row-ctas { width: 100%; }
  .contact-row-ctas .btn { flex: 1; justify-content: center; }
}
@media (max-width: 560px) {
  .contact-row-main { flex-direction: column; align-items: flex-start; gap: 12px; }
  .contact-row-ctas { flex-direction: column; align-items: stretch; }
}

/* ---- Contact form modal (PR & Marketing) ---- */
.contact-modal { position: fixed; inset: 0; z-index: 2000; display: flex; align-items: center; justify-content: center; padding: 24px; }
.contact-modal[hidden] { display: none; }
.contact-modal-backdrop { position: absolute; inset: 0; background: rgba(5,5,9,0.72); backdrop-filter: blur(6px); }
.contact-modal-card {
  position: relative; z-index: 1;
  background: #14101f; border: 1px solid var(--border-strong); border-radius: var(--radius);
  padding: 40px 36px; max-width: 480px; width: 100%; max-height: calc(100vh - 48px); overflow-y: auto;
  box-shadow: 0 50px 100px -30px rgba(0,0,0,0.8);
}
.contact-modal-card h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.4rem; margin-bottom: 6px; }
.contact-modal-card .contact-modal-sub { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 24px; }
.contact-modal-close {
  position: absolute; top: 18px; right: 18px; width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid var(--border-strong); background: rgba(255,255,255,0.04); color: var(--text);
  font-size: 1.3rem; line-height: 1; display: flex; align-items: center; justify-content: center; cursor: pointer;
}
.contact-modal-close:hover { border-color: var(--green); color: var(--green); }
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.contact-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.contact-field label {
  display: block; font-family: var(--font-display); font-weight: 600; font-size: 0.72rem;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 8px;
}
.contact-field input, .contact-field textarea {
  width: 100%; padding: 13px 15px; border-radius: 10px; border: 1px solid var(--border-strong);
  background: rgba(0,0,0,0.25); color: var(--text); font-size: 0.92rem; font-family: inherit; outline: none;
  transition: border-color 0.2s;
}
.contact-field input::placeholder, .contact-field textarea::placeholder { color: var(--text-dim); }
.contact-field input:focus, .contact-field textarea:focus { border-color: var(--green); }
.contact-field textarea { min-height: 140px; resize: vertical; }
.contact-form-status { font-size: 0.85rem; min-height: 20px; margin: 0; }
.contact-form-status.is-error { color: #f87171; }
.contact-form-status.is-success { color: var(--green); }
@media (max-width: 560px) { .contact-form-row { grid-template-columns: 1fr; } }

/* --- Global Presence map --- */
.gp-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin: 30px 0 46px;
  flex-wrap: wrap;
}
.gp-tab {
  background: none; border: none;
  color: var(--text-dim);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 20px;
  transition: color 0.2s;
  font-family: var(--font-body);
}
.gp-tab.active { color: var(--green); }
.gp-tab:hover { color: var(--text); }
.gp-sep { color: var(--border-strong); font-size: 0.9rem; }

.gp-map-frame {
  position: relative;
  border: 1px solid var(--border-strong);
  border-radius: 26px;
  background: rgba(217,217,217,0.2);
  padding: 0;
  overflow: hidden;
  aspect-ratio: 1000/460;
}
.gp-map-frame svg { width: 100%; height: 100%; display: block; }
.gp-map-frame .gp-viewport {
  width: 100%; height: 100%;
  transition: transform 0.85s var(--ease);
  transform-origin: 0 0;
}
.gp-landmass { fill: #1e2f44; stroke: none; }

.gp-dot { cursor: pointer; }
.gp-dot circle.core { fill: var(--green); }
.gp-dot circle.ring {
  fill: none;
  stroke: var(--violet-bright);
  stroke-width: 1.6;
  opacity: 0.7;
  animation: gp-pulse 2.4s ease-out infinite;
  transform-origin: center;
}
@keyframes gp-pulse {
  0% { r: 4; opacity: 0.75; }
  100% { r: 16; opacity: 0; }
}
.gp-dot-label {
  fill: var(--text);
  font-family: var(--font-body);
  font-size: 5px;
  font-weight: 700;
  opacity: 0;
  transition: opacity 0.15s;
  pointer-events: none;
}
.gp-dot:hover .gp-dot-label { opacity: 1; fill: var(--green); }
.gp-dot:hover circle.core { r: 4.4; }

.gp-legend {
  margin-top: 20px;
  text-align: center;
  color: var(--text-dim);
  font-size: 0.86rem;
}

/* ===== Icon fan — cards start stacked behind the center one and play a  ===== */
/* ===== one-time fade+fan-out intro animation on page load               ===== */
.icon-fan {
  position: relative;
  width: 100%;
  max-width: 1360px;
  height: 238px;
  margin: 48px auto 0;
  z-index: 2;
}
.icon-fan-line {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 860px;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--violet-bright) 30%, var(--green) 50%, var(--violet-bright) 70%, transparent);
  box-shadow: 0 0 8px rgba(155,107,255,0.5);
  z-index: 0;
  animation-name: lineGrow;
  animation-duration: 2.5s;
  animation-delay: 0.9s;
  animation-timing-function: var(--ease);
  animation-fill-mode: both;
}
@keyframes lineGrow {
  from { transform: translate(-50%, -50%) scaleX(0); opacity: 0; }
  to { transform: translate(-50%, -50%) scaleX(1); opacity: 1; }
}
.fan-card {
  --tx: 0px;
  --ty: 0px;
  --rot: 0deg;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 126px;
  height: 126px;
  margin: -63px 0 0 -63px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  display: grid;
  place-items: center;
  padding: 21px;
  overflow: hidden;
  box-shadow: 0 30px 50px -18px rgba(0,0,0,0.65);
  animation-name: fanOut;
  animation-duration: 2.4s;
  animation-timing-function: var(--ease);
  animation-fill-mode: both;
  transition: box-shadow 0.3s;
}
.fan-card img { grid-area: 1 / 1; width: 100%; height: 100%; object-fit: contain; transition: opacity 0.15s ease-out; }
/* fan-card-icon is the tightly-cropped glyph shown by default; fan-card-full is the
   same mark on a tall, padded canvas (assets/images/logos/Divisions Logos-*.png) —
   generous margin around the glyph means it reads in full on hover instead of the
   old scale(1.1)-on-overflow:hidden zoom, which cropped the icon's edges off. */
.fc4 .fan-card-icon { width: 80%; height: 80%; }
.fan-card img.fan-card-full { width: 85%; height: 85%; opacity: 0; }
.fc3.fan-card img.fan-card-full { width: 120%; height: 120%; }
.fan-card:hover .fan-card-icon { opacity: 0; }
.fan-card:hover .fan-card-full { opacity: 1; }
.fan-card:hover { box-shadow: 0 40px 70px -16px rgba(0,0,0,0.75); z-index: 15 !important; }
.fc1 { --tx: -326px; --ty: 0px; --rot: 0deg; z-index: 1; animation-delay: 1.0s; }
.fc2 { --tx: -181px; --ty: 0px; --rot: 0deg; z-index: 2; animation-delay: 0.7s; }
.fc4 { --tx: 181px;  --ty: 0px; --rot: 0deg; z-index: 2; animation-delay: 0.7s; padding: 27px; }
.fc5 { --tx: 326px;  --ty: 0px; --rot: 0deg; z-index: 1; animation-delay: 1.0s; }
.fc3.fc-center {
  width: 196px; height: 196px; margin: -98px 0 0 -98px; padding: 34px;
  z-index: 5;
  animation-name: centerIn;
  animation-duration: 1s;
  animation-delay: 0.1s;
}
@keyframes fanOut {
  0% { transform: translate(0, 0) rotate(0deg); opacity: 0; }
  15% { opacity: 1; }
  100% { transform: translateX(var(--tx)) translateY(var(--ty)) rotate(var(--rot)); opacity: 1; }
}
@keyframes centerIn {
  from { transform: scale(0.86); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
@media (max-width: 900px) { .icon-fan { transform: scale(0.82); transform-origin: top center; margin-top: 44px; } }
@media (max-width: 560px) { .icon-fan { transform: scale(0.58); transform-origin: top center; margin-top: 24px; } }

/* ===== Proof bar (division trust strip, EasyA "join others" analog) ===== */
.proof-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin: 46px auto 0;
  padding: 14px 24px;
  max-width: fit-content;
  border-radius: 999px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
}
.proof-bar-logos { display: flex; align-items: center; }
.proof-bar-logos img {
  width: 34px; height: 34px; border-radius: 50%; object-fit: contain;
  background: #12121a; border: 2px solid var(--bg-black); padding: 6px;
  margin-left: -10px;
}
.proof-bar-logos img:first-child { margin-left: 0; }
.proof-bar-text { font-size: 0.88rem; color: var(--text-muted); }
.proof-bar-text strong { color: var(--text); font-family: var(--font-display); }

/* ===== Bento feature row (Fast / One Team / In-Depth) ===== */
.feature-bento {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 20px;
}
.feature-bento-row2 { grid-template-columns: 0.9fr 1.1fr; margin-top: 20px; }
.feature-panel {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px;
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  gap: 22px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05), 0 30px 60px -32px rgba(0,0,0,0.75);
}
.feature-panel h3 { font-size: 1.5rem; font-weight: 600; }
.feature-panel p { color: var(--text-muted); font-size: 0.96rem; line-height: 1.7; margin: 0; }

/* Credibility trust-bar (About Us intro) — pulls named backers/platforms/partners out of
   inline bold text in paragraphs into a scannable chip row, instead of burying them. */
.trust-chips { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 10px; max-width: 760px; margin-left: auto; margin-right: auto; }
.trust-chip {
  display: inline-block;
  font-family: var(--font-body); font-weight: 600; font-size: 0.84rem; color: var(--text);
  background: var(--bg-card); border: 1px solid var(--border-strong);
  padding: 9px 18px; border-radius: 999px; backdrop-filter: blur(10px);
  transition: transform 0.25s var(--ease), border-color 0.25s, background 0.25s;
}
.trust-chip:hover { transform: scale(1.08); border-color: var(--green); background: var(--bg-card-hover); }

/* Small status-style pill badge (used on division tiles) */
.mock-tag { font-size: 0.64rem; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; padding: 5px 10px; border-radius: 6px; }
.mock-tag.live { background: rgba(250,194,19,0.15); color: var(--green); }
.mock-tag.progress { background: rgba(155,107,255,0.15); color: var(--violet-bright); }
.mock-tag.queued { background: rgba(233,107,255,0.15); color: var(--magenta); }

/* Editorial numbered capability list (replaces generic dashboard mockup) */
.cap-list { display: flex; flex-direction: column; }
.cap-row { display: flex; align-items: baseline; gap: 18px; padding: 16px 0; border-bottom: 1px solid var(--border); }
.cap-row:first-child { padding-top: 0; }
.cap-row:last-child { border-bottom: none; padding-bottom: 0; }
.cap-num { font-family: var(--font-display); font-size: 0.78rem; font-weight: 700; color: var(--text-dim); letter-spacing: 0.04em; flex: 0 0 auto; width: 28px; }
.cap-name { font-family: var(--font-display); font-size: 1.02rem; font-weight: 600; color: var(--text); }
.cap-row i { margin-left: auto; color: var(--green); font-size: 0.9rem; opacity: 0.85; }

/* Brief field list (In-Depth panel) */
.brief-list { border: 1px solid var(--border); border-radius: 16px; background: rgba(0,0,0,0.22); padding: 8px 20px; }
.brief-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 13px 0; border-bottom: 1px solid var(--border); font-family: var(--font-display); font-size: 0.9rem; }
.brief-row:last-child { border-bottom: none; }
.brief-row .bf-key { color: var(--text-dim); }
.brief-row .bf-val { color: var(--text); font-weight: 600; }
.brief-row .bf-val i { color: var(--green); margin-right: 6px; font-size: 0.78rem; }

/* ===== Credibility — plain text beside a framed photo card ===== */
.credibility {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: start;
}
.credibility-content h2 { font-size: clamp(1.9rem, 3.4vw, 2.8rem); }
.credibility-content p { color: var(--text-muted); margin-top: 18px; line-height: 1.75; font-size: 1rem; max-width: 560px; }
.credibility-photo {
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--border-strong);
  box-shadow: 0 40px 70px -24px rgba(0,0,0,0.7);
  aspect-ratio: 4/5;
}
.credibility-photo img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s var(--ease); }
.credibility-photo:hover img { transform: scale(1.22); }
@media (max-width: 900px) {
  .credibility { grid-template-columns: 1fr; gap: 32px; }
  .credibility-photo { aspect-ratio: 16/10; order: -1; }
}

/* ===== Section toolbar (Divisions header + "Meet the team" link) ===== */
.section-toolbar { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; margin-bottom: 32px; }
.see-all { font-size: 0.86rem; font-weight: 600; color: var(--text-muted); display: inline-flex; align-items: center; gap: 6px; transition: color 0.2s; }
.see-all:hover { color: var(--green); }

/* ===== Our Games / results proof grid ===== */
/* No local glow here — the fixed .bg-orbs backdrop is the single background source for
   the whole page; a section-scoped radial-gradient clipped by overflow:hidden used to
   create a hard-edged "island" of purple that broke at this section's boundary. */
#results { position: relative; }
#results .container { position: relative; z-index: 1; }
.proof-games-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.proof-game-card {
  display: block;
  border-radius: 12px; overflow: hidden;
  background: var(--bg-card); border: 1px solid var(--border);
  box-shadow: 0 24px 50px -30px rgba(0,0,0,0.85);
  transition: transform 0.35s var(--ease), border-color 0.35s, box-shadow 0.35s;
  text-decoration: none; color: inherit;
}
.proof-game-card:hover { transform: translateY(-8px); border-color: rgba(250,194,19,0.45); box-shadow: 0 30px 60px -24px rgba(250,194,19,0.28); }
.proof-game-media { position: relative; aspect-ratio: 3/4; }
.proof-game-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.proof-game-footer { padding: 14px 14px 16px; background: rgba(255,255,255,0.06); }
.proof-game-title {
  color: var(--text-muted); font-family: var(--font-display); font-weight: 700; font-size: 0.88rem; line-height: 1.25; margin: 8px 0 0;
  min-height: 2.5rem;
  display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 2; overflow: hidden;
}
.proof-game-stat { display: flex; align-items: baseline; gap: 8px; }
.proof-game-stat-num {
  font-family: var(--font-display); font-weight: 700; font-size: 2.04rem; line-height: 1;
  color: #fff;
}
.proof-game-stat-unit { font-size: 0.72rem; font-weight: 600; color: #fff; display: inline-flex; align-items: center; gap: 4px; }
.proof-games-note { margin-top: 20px; text-align: center; font-size: 0.8rem; color: var(--text-dim); }
@media (max-width: 1080px) { .proof-games-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .proof-games-grid { grid-template-columns: repeat(2, 1fr); } }

/* Games marquee directly under the ratings proof section: smaller cards, pulled up closer to the note */
/* Bottom padding trimmed — this section's default bottom padding was stacking with the
   following Final CTA section's own top padding, leaving a very large empty gap between
   the games-marquee-note caption and the CTA card. */
#games { padding-top: 0; padding-bottom: 28px; }
#games .games-marquee-wrap { gap: 16px; padding: 0 0 20px; margin-top: -12px; }
#games .games-marquee-track { gap: 16px; }
#games .game-card { width: 148px; border-radius: 12px; }
#games .game-card-content { padding: 14px; }
#games .game-card-title { font-size: 0.86rem; }
#games .game-card-studio { font-size: 0.68rem; }
.games-marquee-note { margin-top: 24px; text-align: center; font-size: 0.8rem; color: var(--text-dim); }

/* Division cards, styled like event cards */
.division-cards { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.division-tile {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 44px 24px 28px; backdrop-filter: blur(10px); transition: transform 0.12s var(--ease), border-color 0.12s, box-shadow 0.12s, background 0.12s;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05), 0 30px 60px -34px rgba(0,0,0,0.75);
  text-align: center;
}
.division-cards .division-tile:hover { background: var(--bg-card-hover); }
.division-cards .division-tile:nth-child(1):hover { border-color: rgba(56,189,248,0.7); box-shadow: inset 0 1px 0 rgba(255,255,255,0.05), 0 30px 60px -34px rgba(0,0,0,0.75), 0 0 40px -6px rgba(56,189,248,0.45); }
.division-cards .division-tile:nth-child(2):hover { border-color: rgba(233,107,255,0.7); box-shadow: inset 0 1px 0 rgba(255,255,255,0.05), 0 30px 60px -34px rgba(0,0,0,0.75), 0 0 40px -6px rgba(233,107,255,0.45); }
.division-cards .division-tile:nth-child(3):hover { border-color: rgba(255,154,61,0.7); box-shadow: inset 0 1px 0 rgba(255,255,255,0.05), 0 30px 60px -34px rgba(0,0,0,0.75), 0 0 40px -6px rgba(255,154,61,0.45); }
.division-cards .division-tile:nth-child(4):hover { border-color: rgba(124,255,158,0.7); box-shadow: inset 0 1px 0 rgba(255,255,255,0.05), 0 30px 60px -34px rgba(0,0,0,0.75), 0 0 40px -6px rgba(124,255,158,0.45); }
.division-cards .division-tile:nth-child(5):hover { border-color: rgba(250,194,19,0.7); box-shadow: inset 0 1px 0 rgba(255,255,255,0.05), 0 30px 60px -34px rgba(0,0,0,0.75), 0 0 40px -6px rgba(250,194,19,0.45); }
.tile-logo { height: 64px; display: flex; align-items: flex-end; justify-content: center; margin-bottom: 20px; }
.tile-logo img { max-width: 71px; height: auto; display: block; }
.division-tile h4 { font-family: var(--font-display); font-weight: 600; font-size: 1.1rem; }
/* PR & Marketing has no brand-mark image like the other division tiles — this stacked
   bold/light two-line text stands in for one, filling the same tile-logo height. */
.tile-logo-text { display: flex; flex-direction: column; align-items: center; line-height: 1.1; }
.tile-logo-text .tlt-main { font-family: var(--font-display); font-weight: 700; font-size: 1.5rem; color: var(--text); }
.tile-logo-text .tlt-sub { font-family: var(--font-display); font-weight: 700; font-size: 1.5rem; color: var(--text); margin-top: 2px; }
.division-tile p { color: #a2a3b3; font-size: 0.88rem; margin-top: 8px; line-height: 1.6; }
.division-tile p strong { color: var(--text); }
.division-tile .mock-tag { margin-top: 16px; display: inline-block; }
@media (max-width: 1080px) { .division-cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .division-cards { grid-template-columns: 1fr; } }

/* ===== Big photo split ("frens" analog — real team collage) ===== */
/* ===== Scroll reveal ===== */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-stagger.is-visible > * { opacity: 1; transform: translateY(0); }
.reveal-stagger > *:nth-child(1) { transition-delay: 0ms; }
.reveal-stagger > *:nth-child(2) { transition-delay: 90ms; }
.reveal-stagger > *:nth-child(3) { transition-delay: 180ms; }
.reveal-stagger > *:nth-child(4) { transition-delay: 270ms; }
.reveal-stagger > *:nth-child(5) { transition-delay: 360ms; }
.reveal-stagger > *:nth-child(6) { transition-delay: 450ms; }
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-stagger > * { opacity: 1 !important; transform: none !important; transition: none !important; }
}

.startengine-split { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 48px; align-items: center; }
.startengine-text { text-align: left; }
.startengine-logo { display: flex; align-items: center; justify-content: center; }
.startengine-logo img { width: 100%; max-width: 320px; height: auto; object-fit: contain; animation: startengine-float 5s ease-in-out infinite; }
@keyframes startengine-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@media (max-width: 860px) {
  .startengine-split { grid-template-columns: 1fr; text-align: center; }
  .startengine-text { text-align: center; }
  .startengine-text .hero-actions { justify-content: center !important; }
  .startengine-logo img { max-width: 220px; }
}
.split-photo { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 0; align-items: stretch; border-radius: 32px; overflow: hidden; border: 1px solid var(--border); }
.split-photo-text { padding: 56px; display: flex; flex-direction: column; justify-content: center; background: var(--bg-card); }
.split-photo-text p.about-body { max-width: none; }
.split-photo-grid { display: grid; grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(2, 1fr); gap: 4px; min-height: 420px; }
.split-photo-grid img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 1080px) {
  .split-photo { grid-template-columns: 1fr; }
  .split-photo-grid { min-height: 320px; }
}

/* ===== Static partners grid (replaces marquee to match reference) ===== */
.partners-marquee-track {
  display: flex; gap: 14px; width: max-content;
  animation: games-marquee-scroll 97s linear infinite;
}
.partners-marquee-track--row2 { animation-duration: 124s; }
.partner-tile {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px;
  height: 84px; width: 260px; flex: 0 0 auto; display: flex; align-items: center; justify-content: center;
  padding: 16px; backdrop-filter: blur(10px); transition: border-color 0.25s, transform 0.25s var(--ease);
}
.partner-tile img { height: 40px; width: auto; max-width: 100%; object-fit: contain; }
.partner-tile img.logo-meta { height: 48px; }
.partner-tile img.logo-roto,
.partner-tile img.logo-virtuix,
.partner-tile img.logo-pico { height: 28px; }
.partner-tile img.logo-steamvr { height: 36px; }
.partner-tile img.logo-psvr { height: 34px; }

/* ===== Testimonial marquee ===== */
.partners-marquee-track .testimonial-card { flex: 0 0 auto; width: 380px; }
.section-toolbar.testimonial-toolbar { margin-top: -20px; }

/* ===== Final CTA — floating card + shapes (Download-App analog) ===== */
/* No opaque fill (var(--bg-dark)) here anymore — that painted a hard-edged solid card
   over the body-level nebula, breaking the single continuous background. Only a faint
   translucent highlight remains so the page background still shows through. */
.cta-hero { position: relative; border-radius: 36px; overflow: hidden; padding: 90px 48px; text-align: center; border: 1px solid var(--border-strong); background: radial-gradient(80% 100% at 50% 0%, rgba(155,107,255,0.16), transparent 60%); }
.cta-hero .section-title { font-family: var(--font-body); font-weight: 400; color: #fff; }
.cta-hero .section-title em { font-style: normal; font-weight: 700; background: none; -webkit-background-clip: unset; background-clip: unset; color: #fac213; }
.cta-hero .section-sub { color: #fff; }
.cta-hero-shapes { position: absolute; inset: 0; pointer-events: none; }
.cta-float-card {
  position: absolute; display: flex; flex-direction: column; gap: 6px;
  background: rgba(20,20,28,0.9); border: 1px solid var(--border-strong); border-radius: 18px;
  padding: 16px 20px; backdrop-filter: blur(14px); box-shadow: 0 24px 50px -16px rgba(0,0,0,0.6);
  animation: hfloat 7s var(--ease) infinite;
}
.cta-float-card .cf-label { font-size: 0.66rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-dim); font-weight: 700; }
.cta-float-card .cf-value { font-family: var(--font-display); font-size: 1.3rem; color: var(--green); font-weight: 600; }
.cta-float-card.cf1 { top: 8%; left: 6%; animation-delay: 0.2s; }
.cta-float-card.cf2 { bottom: 12%; right: 7%; animation-delay: 1.1s; }
@media (max-width: 900px) { .cta-float-card { display: none; } }

/* ===== Mobile ===== */
@media (max-width: 1080px) {
  .about-split { grid-template-columns: 1fr; gap: 40px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; row-gap: 36px; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .feature-bento, .feature-bento-row2 { grid-template-columns: 1fr; }
  .credibility-content { padding: 36px; }
}
@media (max-width: 767px) {
  .container { padding: 0 22px; }
  .nav-inner { padding: 0 22px; }
  .nav-links {
    position: fixed; top: var(--nav-h); left: 0; right: 0; bottom: 0;
    background: var(--bg-black);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px 22px;
    transform: translateX(100%);
    transition: transform 0.3s var(--ease);
    overflow-y: auto;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links > li { border-bottom: 1px solid var(--border); }
  .nav-links > li > a { padding: 18px 4px; justify-content: space-between; }
  .nav-item--dropdown .nav-dropdown {
    position: static; transform: none; width: auto; opacity: 1; visibility: visible;
    pointer-events: none; max-height: 0; overflow: hidden; border: none; padding: 0;
    transition: max-height 0.3s var(--ease);
  }
  .nav-item--dropdown.open .nav-dropdown { max-height: 300px; pointer-events: auto; padding-bottom: 10px; }
  .nav-toggle { display: block; }
  .nav-cta { display: none; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .services-grid { grid-template-columns: 1fr; }
  .team-grid--leadership { grid-template-columns: repeat(3, 1fr); }
  .team-grid--founders { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .gp-map-frame { aspect-ratio: 4/5; }
}
@media (max-width: 520px) {
  .team-grid { grid-template-columns: 1fr; }
}
