/* =====================================================================
   ASH GAMES STUDIO — v2
   Pure black & white. Archivo Black display. Nomad-forward.
   Brand derived from the "WE'RE HIRING" poster: #000 / #fff only.
   ===================================================================== */

.root {
  font-family: 'Inter', sans-serif;
  background: #000;
  color: #fff;
  overflow-x: hidden;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  --bg: #000;
  --bg-2: #0a0a0a;
  --bg-3: #141414;
  --line: #1a1a1a;
  --line-2: #2a2a2a;
  --text: #fff;
  --muted: #888;
  --dim: #555;
  /* Responsive layout tokens — scaled at min-width breakpoints in the responsive layer at the end of this file. */
  --container-max: 1480px;
  --container-pad: 48px;
  --hero-img-h-max: 900px;
}

.display,
.displayBig,
.displayHero {
  font-family: 'Archivo Black', 'Inter', sans-serif;
  font-weight: 900;
  line-height: 0.88;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--text);
  margin: 0;
}

.body { font-family: 'Inter', sans-serif; }

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

.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.74rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--text);
}

.fadeIn {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.visible { opacity: 1; transform: translateY(0); }

/* ===== BUTTONS ===== */
.btnPrimary,
.btnGhost {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(0.78rem, 0.85vw, 0.85rem);
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: clamp(14px, 1.6vw, 20px) clamp(22px, 2.6vw, 32px);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: 2px solid var(--text);
  border-radius: 0;
  background: var(--text);
  color: #000;
  font-weight: 900;
}
.btnPrimary:hover {
  background: #000;
  color: var(--text);
  transform: translate(-3px, -3px);
  box-shadow: 6px 6px 0 0 var(--text);
}
.btnGhost {
  background: transparent;
  color: var(--text);
}
.btnGhost:hover {
  background: var(--text);
  color: #000;
}

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 24px 0;
  transition: all 0.3s ease;
  background: transparent;
  border-bottom: 1px solid transparent;
}
.navScrolled {
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.navInner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 48px;
}
.navLogo { text-decoration: none; display: flex; align-items: center; }
.navLogoImg {
  height: 38px;
  width: auto;
  object-fit: contain;
}
.navLinks {
  display: flex;
  gap: 40px;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.navLink {
  color: var(--muted);
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  text-decoration: none;
  transition: color 0.25s;
}
.navLink:hover { color: var(--text); }
.navCta {
  background: var(--text);
  color: #000 !important;
  padding: 11px 20px;
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: 0.72rem !important;
  letter-spacing: 1.8px !important;
}
.navCta:hover { background: #ccc; }
.mobileToggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 10px;
  width: 44px;
  height: 44px;
  box-sizing: border-box;
}
.mobileToggle span {
  width: 26px;
  height: 2px;
  background: var(--text);
  display: block;
}

/* =====================================================================
   HERO — NOMAD-FORWARD
   Zarqa portrait (right) rendered in full (object-fit: contain).
   Huge display type (left) — Archivo Black. Black bg.
   ===================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  padding: clamp(70px, 6.5vw, 85px) clamp(20px, 3vw, 48px) clamp(60px, 8vw, 80px);
  display: flex;
  align-items: flex-start;
  overflow: hidden;
  background: #000;
  border-bottom: 1px solid var(--line);
}
.heroGrid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}
.heroRadial {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 55% at 70% 55%, rgba(196, 30, 58, 0.18), transparent 60%);
  pointer-events: none;
}
.heroInner {
  position: relative;
  z-index: 2;
  max-width: var(--container-max);
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(24px, 3.5vw, 60px);
  align-items: center;
}
.heroLeft {
  max-width: 780px;
}
.heroStudioTag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--text);
  padding: clamp(7px, 0.9vw, 10px) clamp(12px, 1.3vw, 16px);
  margin-bottom: clamp(18px, 2.5vw, 32px);
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(0.6rem, 0.72vw, 0.68rem);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text);
  font-weight: 900;
}
.heroStudioTag::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--text);
  display: block;
}
.heroArabic {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--muted);
  letter-spacing: 2px;
  margin-bottom: 16px;
  display: block;
}
.heroTitle {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(2.6rem, 10.5vw, 13rem);
  line-height: 0.82;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  margin: 0 0 clamp(14px, 1.8vw, 24px);
  color: var(--text);
}
.heroTagline {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(0.88rem, 1.5vw, 1.55rem);
  letter-spacing: -0.01em;
  line-height: 1.2;
  max-width: 600px;
  color: var(--text);
  margin: 0 0 14px;
  text-transform: uppercase;
}
.heroDesc {
  color: var(--muted);
  font-size: clamp(0.92rem, 1.15vw, 1.08rem);
  max-width: 560px;
  margin: 0 0 clamp(24px, 3vw, 40px);
  line-height: 1.65;
}
.heroDesc strong { color: var(--text); font-weight: 600; }
.heroButtons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: clamp(24px, 3vw, 40px);
}
.heroMeta {
  display: flex;
  gap: clamp(24px, 3.5vw, 48px);
  flex-wrap: wrap;
  padding-top: clamp(22px, 2.5vw, 32px);
  border-top: 1px solid var(--line-2);
}
.heroMetaItem {}
.heroMetaNum {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(1.2rem, 1.8vw, 1.8rem);
  line-height: 0.9;
  color: var(--text);
  margin-bottom: 6px;
}
.heroMetaLabel {
  font-size: clamp(0.74rem, 0.78vw, 0.78rem);
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--muted);
}

/* Zarqa portrait — rendered in FULL, never cropped */
.heroFigure {
  position: relative;
  width: 100%;
  height: clamp(380px, 82vh, 900px);
  margin-top: clamp(40px, 6vh, 80px);
  align-self: end;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(clamp(20px, 4vh, 60px));
}
.heroFigureGlow {
  position: absolute;
  inset: 5% -5%;
  background: radial-gradient(ellipse 55% 50% at center, rgba(196, 30, 58, 0.5), transparent 70%);
  filter: blur(80px);
  pointer-events: none;
  animation: heroGlowPulse 6s ease-in-out infinite;
}
@keyframes heroGlowPulse {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50%      { opacity: 1;   transform: scale(1.06); }
}
.heroFigureImg {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  z-index: 3;
  opacity: 0;
  will-change: transform, filter, opacity;
}

/* ===== Hero Figure Reveal — Ghost Converge =====
   Triple-exposure aesthetic: two tinted ghost copies fly in from the sides and
   merge behind the main image. Triggered by the existing .fadeIn / .visible
   IntersectionObserver. */
.heroFigure.fadeIn { opacity: 1; }

.heroFigureGhost {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  will-change: transform, opacity;
}
.heroFigureGhost img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.heroFigureGhost.g1 { transform: translateX(-45%); }
.heroFigureGhost.g1 img {
  filter: brightness(0.9) saturate(0) sepia(1) hue-rotate(-50deg) saturate(4) opacity(0.55);
}
.heroFigureGhost.g2 { transform: translateX(45%); }
.heroFigureGhost.g2 img {
  filter: brightness(0.9) saturate(0) sepia(1) hue-rotate(165deg) saturate(3) opacity(0.45);
}

.heroFigureScanline {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  opacity: 0;
  background: repeating-linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0) 0px,
    rgba(255, 255, 255, 0) 2px,
    rgba(255, 255, 255, 0.025) 3px,
    rgba(255, 255, 255, 0) 4px
  );
  mix-blend-mode: overlay;
}

.heroFigure.visible .heroFigureGlow {
  animation: heroConvergeFade 1.4s ease-out 0.2s forwards;
}
.heroFigure.visible .heroFigureGhost.g1 {
  animation: heroConvergeLeft 1.6s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}
.heroFigure.visible .heroFigureGhost.g2 {
  animation: heroConvergeRight 1.6s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}
.heroFigure.visible .heroFigureImg {
  animation:
    heroConvergeMain 1.6s cubic-bezier(0.2, 0.7, 0.2, 1) 0.2s both,
    keyartFloat 7s ease-in-out 1.8s infinite;
}
.heroFigure.visible .heroFigureScanline {
  animation: heroConvergeFade 0.9s ease-out 1.4s forwards;
}

@keyframes heroConvergeLeft {
  from { opacity: 0; transform: translateX(-45%); }
  40%  { opacity: 0.9; }
  to   { opacity: 1; transform: translateX(-3.5%); }
}
@keyframes heroConvergeRight {
  from { opacity: 0; transform: translateX(45%); }
  40%  { opacity: 0.9; }
  to   { opacity: 1; transform: translateX(3.5%); }
}
@keyframes heroConvergeMain {
  from { opacity: 0; transform: scale(1.04); filter: blur(3px); }
  50%  { opacity: 0.4; }
  to   { opacity: 1; transform: scale(1); filter: none; }
}
@keyframes heroConvergeFade {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.heroFigureBadge {
  position: absolute;
  top: 20px;
  right: 0;
  font-family: 'Archivo Black', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #000;
  background: var(--text);
  padding: 9px 14px;
  z-index: 3;
}
.heroFigureCaption {
  position: absolute;
  bottom: 12px;
  left: 0;
  right: 0;
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  z-index: 3;
}

/* ===== TICKER ===== */
.ticker {
  position: relative;
  background: #fff;
  color: #000;
  padding: 22px 0;
  overflow: hidden;
  border-top: 2px solid #000;
  border-bottom: 2px solid #000;
}
.tickerTrack {
  display: flex;
  white-space: nowrap;
  animation: tickerScroll 45s linear infinite;
  width: max-content;
}
.tickerItem {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: 1.7rem;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  padding: 0 32px;
  display: inline-flex;
  align-items: center;
  gap: 32px;
}
.tickerItem::after {
  content: '■';
  font-size: 0.9rem;
  margin-left: 32px;
  color: #000;
}
@keyframes tickerScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== STUDIO INTRO ===== */
.studio {
  padding: 160px 48px;
  border-bottom: 1px solid var(--line);
}
.studioInner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 80px;
  align-items: start;
}
.studioLabel {
  position: sticky;
  top: 120px;
}
.studioLabel h3 {
  font-family: 'Archivo Black', sans-serif;
  font-size: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text);
  margin: 16px 0 12px;
}
.studioLabel p {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.8;
}
/* ===== MOMENTS STRIP ===== */
.moments {
  padding: 140px clamp(20px, 3vw, 48px) 140px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.momentsHeader {
  max-width: var(--container-max);
  margin: 0 auto 60px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  flex-wrap: wrap;
}
.momentsTitle {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(2rem, 4.5vw, 4rem);
  line-height: 0.9;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  margin: 16px 0 0;
  color: var(--text);
}
.momentsHeaderMeta {
  padding-bottom: 6px;
}
.momentsLink {
  font-family: 'Archivo Black', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
  padding: 14px 22px;
  border: 2px solid var(--text);
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.momentsLink:hover {
  background: var(--text);
  color: #000;
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 0 var(--text);
}
.momentsGrid {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.momentCard {}
.momentInner {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.momentInner:hover { transform: translateY(-4px); }
.momentInner:hover .momentFrame { border-color: var(--text); }
.momentInner:hover .momentImg { transform: scale(1.04); }
.momentFrame {
  width: 100%;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: var(--bg-2);
  border: 1px solid var(--line-2);
  transition: border-color 0.4s;
}
.momentImg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.momentCaption {
  padding: 28px 4px 0;
}
.momentTag {
  font-family: 'Archivo Black', sans-serif;
  font-size: 0.66rem;
  letter-spacing: 2px;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.momentTitle {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 10px;
}
.momentSub {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

/* ===== RECENT NEWS ===== */
.news {
  padding: 160px clamp(20px, 3vw, 48px) 160px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.newsHeader {
  max-width: var(--container-max);
  margin: 0 auto 72px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: end;
}
.newsTitle {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(2.4rem, 5.5vw, 5rem);
  line-height: 0.9;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  margin: 16px 0 20px;
  color: var(--text);
}
.newsSub {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 560px;
  line-height: 1.65;
  margin: 0;
}
.newsHeaderCta {
  padding-bottom: 10px;
}
.newsAllBtn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Archivo Black', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
  padding: 18px 30px;
  border: 2px solid var(--text);
  border-radius: 999px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.newsAllBtn:hover {
  background: var(--text);
  color: #000;
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 0 var(--text);
}

/* Featured post — full width, image + text side by side */
.newsFeatured {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  max-width: var(--container-max);
  margin: 0 auto 80px;
  text-decoration: none;
  color: inherit;
  background: var(--bg-2);
  border: 1px solid var(--line-2);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.newsFeatured:hover {
  border-color: var(--text);
  transform: translateY(-4px);
}
.newsFeatured:hover .newsFeaturedImg { transform: scale(1.04); }
.newsFeaturedFrame {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #0a0a0a;
}
.newsFeaturedImg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.newsFeaturedBadge {
  position: absolute;
  top: 22px;
  left: 22px;
  background: var(--text);
  color: #000;
  font-family: 'Archivo Black', sans-serif;
  font-size: 0.64rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 14px;
  z-index: 2;
}
.newsFeaturedBody {
  padding: 56px 56px 56px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.newsDate {
  font-family: 'Archivo Black', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 2px;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 18px;
}
.newsFeaturedTitle {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--text);
  margin: 0 0 20px;
}
.newsFeaturedExcerpt {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0 0 28px;
  max-width: 520px;
}
.newsReadMore {
  font-family: 'Archivo Black', sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text);
  padding-bottom: 4px;
  border-bottom: 2px solid var(--text);
  width: fit-content;
  transition: gap 0.3s;
}
.newsFeatured:hover .newsReadMore { gap: 16px; }

/* 3 secondary cards */
.newsGrid {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.newsCard {
  display: block;
  text-decoration: none;
  color: inherit;
  background: var(--bg-2);
  border: 1px solid var(--line-2);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.newsCard:hover {
  border-color: var(--text);
  transform: translateY(-4px);
}
.newsCard:hover .newsCardImg { transform: scale(1.05); }
.newsCardFrame {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #0a0a0a;
}
.newsCardImg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.newsCardBody {
  padding: 28px 28px 32px;
}
.newsCardMeta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}
.newsCardCat {
  font-family: 'Archivo Black', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--text);
  background: #000;
  border: 1px solid var(--text);
  padding: 5px 10px;
}
.newsCardDate {
  font-family: 'Inter', sans-serif;
  font-size: 0.74rem;
  color: var(--muted);
  letter-spacing: 0.5px;
  font-weight: 500;
}
.newsCardTitle {
  font-family: 'Archivo Black', sans-serif;
  font-size: 1.25rem;
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--text);
  margin: 0 0 14px;
}
.newsCardExcerpt {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.studioPhotos {
  margin-top: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.studioPhoto {
  display: block;
  position: relative;
  background: var(--bg-2);
  border: 1px solid var(--line-2);
  overflow: hidden;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  aspect-ratio: 3 / 2;
}
.studioPhoto:hover {
  border-color: var(--text);
  transform: translateY(-3px);
}
.studioPhoto:hover .studioPhotoImg { transform: scale(1.06); }
.studioPhotoImg {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.studioPhotoLabel {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 18px 14px 12px;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.92) 75%);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.studioPhotoLabel span:first-child {
  font-family: 'Archivo Black', sans-serif;
  font-size: 0.56rem;
  letter-spacing: 1.5px;
  color: var(--muted);
  text-transform: uppercase;
}
.studioPhotoLabel span:last-child {
  font-family: 'Inter', sans-serif;
  font-size: 0.76rem;
  color: var(--text);
  font-weight: 500;
  line-height: 1.3;
}
.studioPhotoMore {
  grid-column: 1 / -1;
  font-family: 'Archivo Black', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
  padding: 14px 2px 2px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s;
}
.studioPhotoMore:hover { color: var(--muted); }

@media (max-width: 820px) {
  .studioLabel { position: static; }
  .studioPhotos { grid-template-columns: 1fr 1fr; }
  .momentsGrid { grid-template-columns: 1fr; gap: 40px; }
  .moments { padding-top: 80px; padding-bottom: 80px; }
  .newsHeader { grid-template-columns: 1fr; gap: 24px; }
  .newsFeatured { grid-template-columns: 1fr; gap: 0; }
  .newsFeaturedBody { padding: 40px 32px; }
  .newsGrid { grid-template-columns: 1fr; gap: 28px; }
  .news { padding-top: 100px; padding-bottom: 100px; }
}
.studioQuote {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(2rem, 4.5vw, 4.2rem);
  line-height: 1;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  color: var(--text);
  margin: 0 0 36px;
}
.studioBody {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
  max-width: 640px;
  margin: 0 0 28px;
}
.studioOath {
  font-family: 'Archivo Black', sans-serif;
  color: var(--text);
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1.3;
  max-width: 640px;
  padding-left: 24px;
  border-left: 3px solid var(--text);
}

/* ===== STATS STRIP ===== */
.stats {
  background: #fff;
  color: #000;
  border-top: 2px solid #000;
  border-bottom: 2px solid #000;
}
.statsGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: var(--container-max);
  margin: 0 auto;
}
.statItem {
  padding: 100px 44px;
  border-right: 1px solid #000;
  transition: background 0.4s;
}
.statItem:last-child { border-right: none; }
.statItem:hover { background: #f0f0f0; }
.statNum {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(3.5rem, 6.5vw, 6rem);
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: #000;
  margin-bottom: 20px;
  font-weight: 900;
}
.statLabel {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #000;
  font-weight: 600;
  max-width: 240px;
  line-height: 1.5;
}
.statLabel em { font-style: italic; }

/* =====================================================================
   GAMES — each gets its own big breathing-room section
   ===================================================================== */
.gamesIntro {
  padding: clamp(100px, 12vw, 180px) clamp(20px, 3vw, 48px) clamp(40px, 5vw, 60px);
  text-align: center;
}
.gamesIntro .eyebrow { justify-content: center; }
.gamesIntroTitle {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(2.2rem, 5.5vw, 6rem);
  line-height: 0.9;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  color: var(--text);
  margin: 28px auto 24px;
  max-width: 1100px;
}
.gamesIntroSub {
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto;
  font-size: 1.1rem;
}

/* GAME BLOCK — fluid padding so it breathes at any width */
.gameBlock {
  padding: clamp(70px, 8vw, 120px) clamp(20px, 3vw, 48px);
  border-top: 1px solid var(--line);
}
.gameInner {
  max-width: var(--container-max);
  margin: 0 auto;
}
.gameNumber {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(0.72rem, 0.85vw, 0.82rem);
  letter-spacing: 4px;
  color: var(--muted);
  margin-bottom: clamp(14px, 1.6vw, 18px);
  font-weight: 900;
}
.gameNumber span { color: var(--text); }

.gameGrid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: stretch;
}
.gameGridReverse {
  grid-template-columns: 1fr 1.2fr;
}
/* Let fade-in wrappers inside the grid fill their cell so symmetry works */
.gameGrid > .fadeIn,
.gameGridReverse > .fadeIn { height: 100%; display: flex; flex-direction: column; justify-content: center; }
.gameGridReverse .gameFigure { order: -1; }

.gameFigure {
  position: relative;
  width: 100%;
  background: var(--bg-2);
  border: 1px solid var(--line-2);
  padding: 0;
  overflow: hidden;
}
/* Azooma column — two stacked frames that fill the column height symmetrically */
.azoomaColumn {
  display: flex !important;
  flex-direction: column;
  gap: 16px;
  height: 100%;
  justify-content: stretch !important;
}
.azoomaColumn > .azoomaFigure {
  flex: 1 1 0;
  min-height: 0;
  aspect-ratio: auto;
}
.azoomaFigure {
  aspect-ratio: 460 / 215;
  padding: 0;
  overflow: hidden;
}
.azoomaImg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
/* Nomad key art: show in full, no frame, breathes */
.nomadFigure {
  aspect-ratio: 944 / 1122;
  background: transparent;
  border: none;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: visible;
}
.nomadImg {
  animation: keyartFloat 7s ease-in-out infinite;
  filter: drop-shadow(0 30px 60px rgba(196, 30, 58, 0.25));
  will-change: transform, filter;
}
@keyframes keyartFloat {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
    filter: drop-shadow(0 30px 60px rgba(196, 30, 58, 0.22));
  }
  50% {
    transform: translateY(-14px) rotate(0.4deg);
    filter: drop-shadow(0 40px 80px rgba(196, 30, 58, 0.35));
  }
}
.nomadImg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}
.nomadFigureGlow {
  position: absolute;
  inset: 15% 10%;
  background: radial-gradient(ellipse 60% 55% at center, rgba(196, 30, 58, 0.35), transparent 70%);
  filter: blur(70px);
  pointer-events: none;
  z-index: 0;
}
.nomadFigure > img,
.nomadFigure > span > img {
  position: relative;
  z-index: 1;
}

.gameSlash {
  display: inline-block;
  align-self: flex-start;
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(0.6rem, 0.78vw, 0.68rem);
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #000;
  background: var(--text);
  padding: clamp(5px, 0.7vw, 7px) clamp(9px, 1.1vw, 12px);
  margin-bottom: clamp(14px, 1.8vw, 20px);
  font-weight: 900;
  width: auto;
}
.gameSlashDev {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--text);
}
.gameTitle {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(2.2rem, 5.2vw, 7rem);
  line-height: 0.88;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: var(--text);
  margin: 0 0 clamp(12px, 1.5vw, 16px);
}
.gameTagline {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(0.85rem, 1.25vw, 1.3rem);
  text-transform: uppercase;
  letter-spacing: -0.005em;
  line-height: 1.25;
  color: var(--text);
  margin: 0 0 clamp(16px, 2vw, 24px);
  max-width: 560px;
}
.gameDesc {
  color: var(--muted);
  font-size: clamp(0.88rem, 1.05vw, 1.05rem);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: clamp(22px, 2.8vw, 32px);
}
.gameAccolades {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: clamp(24px, 3vw, 36px);
  max-width: 620px;
}
.gameAccolade {
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.74rem, 0.82vw, 0.8rem);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--text);
  border: 1px solid var(--line-2);
  padding: clamp(6px, 0.85vw, 9px) clamp(10px, 1.25vw, 14px);
  font-weight: 500;
}
.gameAccolade.solid {
  background: var(--text);
  border-color: var(--text);
  color: #000;
}
.gameCtas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ======= NOMAD TRIPTYCH — flagship gallery layout ======= */
.nomadHead {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: clamp(24px, 4vw, 60px);
  flex-wrap: wrap;
  margin-bottom: clamp(30px, 3.5vw, 48px);
}
.nomadHeadLeft { display: flex; flex-direction: column; }
.nomadHeadLeft .gameTitle { margin: clamp(6px, 0.8vw, 10px) 0 0; }
.nomadMeta {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: clamp(20px, 2.5vw, 36px);
  padding: clamp(10px, 1.2vw, 14px) 0;
  border-top: 1px solid var(--line-2);
  border-bottom: 1px solid var(--line-2);
}
.nomadMeta .k {
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.58rem, 0.7vw, 0.66rem);
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
  font-weight: 600;
}
.nomadMeta .v {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(0.88rem, 1vw, 1rem);
  letter-spacing: -0.005em;
  color: var(--text);
}

.nomadTrip {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: clamp(10px, 1vw, 14px);
  margin-bottom: clamp(36px, 4vw, 56px);
}
.nomadPanel {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 65% 55% at 50% 55%, rgba(196, 30, 58, 0.14), transparent 70%),
    linear-gradient(180deg, #0d0d0d 0%, #050505 100%);
  border: 1px solid var(--line-2);
  aspect-ratio: 3 / 4;
  text-decoration: none;
  color: inherit;
  display: block;
  transition: border-color 0.4s ease;
}
.nomadPanel:hover { border-color: var(--line); }
.nomadPanel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  transition: transform 1.2s cubic-bezier(.16, 1, .3, 1);
  display: block;
}
.nomadPanel.nomadPanelLift img { object-position: center 45%; }
.nomadPanel:hover img { transform: scale(1.05); }
.nomadPanel::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 68%, rgba(0, 0, 0, 0.85) 100%);
  pointer-events: none;
}
.nomadPanelLabel {
  position: absolute;
  z-index: 2;
  bottom: clamp(14px, 1.6vw, 20px);
  left: clamp(14px, 1.6vw, 20px);
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(0.6rem, 0.78vw, 0.72rem);
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text);
}
.nomadPanelLabel::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 8px;
  background: var(--text);
  vertical-align: middle;
}

.nomadFoot {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: flex-start;
}
.nomadFootLeft .gameDesc { margin-bottom: 0; }
.nomadFootRight {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 2.5vw, 28px);
  align-items: stretch;
}
.nomadFootRight .gameAccolades {
  display: flex;
  flex-wrap: nowrap;
  gap: clamp(8px, 1vw, 12px);
  margin-bottom: 0;
  max-width: none;
}
.nomadFootRight .gameAccolades .gameAccolade {
  flex: 1 1 0;
  min-width: 0;
  text-align: center;
  white-space: nowrap;
}
.nomadFootRight .gameCtas {
  display: flex;
  gap: clamp(12px, 1.4vw, 16px);
}
.nomadFootRight .gameCtas > .btnPrimary,
.nomadFootRight .gameCtas > .btnGhost {
  flex: 1 1 0;
  min-width: 0;
  justify-content: center;
}

/* ======= NOMAD FULL-BLEED HERO — homepage flagship ======= */
.nomadBleed {
  position: relative;
  aspect-ratio: 21 / 9;
  overflow: hidden;
  border: 1px solid var(--line-2);
  background:
    radial-gradient(ellipse 55% 80% at 70% 50%, rgba(196, 30, 58, 0.18), transparent 70%),
    linear-gradient(180deg, #0d0d0d 0%, #050505 100%);
  margin-bottom: clamp(32px, 3.5vw, 48px);
}
.nomadBleed img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.nomadBleedOverlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.5) 45%, rgba(0,0,0,0.05) 75%, transparent 100%),
    linear-gradient(180deg, transparent 55%, rgba(0,0,0,0.9) 100%);
  pointer-events: none;
}
.nomadBleedContent {
  position: absolute;
  left: clamp(24px, 4vw, 64px);
  bottom: clamp(24px, 3vw, 40px);
  max-width: 580px;
  z-index: 2;
}
.nomadBleedContent .gameNumber { margin-bottom: 12px; }
.nomadBleedContent .gameTitle {
  font-size: clamp(2.4rem, 6vw, 6rem);
  margin: 0 0 12px;
}
.nomadBleedContent .gameTagline { margin-bottom: 16px; }
.nomadBleedContent .nomadMeta { display: inline-grid; }
.nomadBleedBottom {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(32px, 4vw, 64px);
  align-items: flex-start;
}
.nomadBleedBottom .gameDesc { max-width: none; margin-bottom: 0; }
.nomadBleedBottom .gameAccolades { max-width: none; }

/* ======= HUGE GAP BETWEEN GAMES ======= */
.gameSpacer {
  padding: clamp(80px, 10vw, 140px) clamp(20px, 3vw, 48px);
  text-align: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.gameSpacerText {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(2rem, 4.5vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  color: var(--text);
  margin: 24px auto 0;
  max-width: 1100px;
}

/* ===== BIG QUOTE BREAK ===== */
.bigQuote {
  padding: 200px 48px;
  text-align: center;
  border-bottom: 1px solid var(--line);
}
.bigQuoteText {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(1.4rem, 4vw, 4.4rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  max-width: 1400px;
  margin: 32px auto 0;
  color: var(--text);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15em;
}
.quoteLine {
  display: block;
  white-space: nowrap;
}
@media (max-width: 560px) {
  .bigQuoteText { font-size: clamp(1.1rem, 5.2vw, 2rem); }
  .quoteLine { white-space: normal; }
}
.bigQuoteCite {
  margin-top: 44px;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
}

/* ===== PILLARS ===== */
.pillars {
  padding: 160px 48px;
  border-bottom: 1px solid var(--line);
}
.pillarsHeader {
  max-width: var(--container-max);
  margin: 0 auto 80px;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
}
.pillarsTitle {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(2.4rem, 5.5vw, 5rem);
  line-height: 0.9;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  margin: 16px 0 0;
}
.pillarsSub {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 560px;
  align-self: end;
  line-height: 1.7;
}
.pillarsGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--line-2);
  max-width: var(--container-max);
  margin: 0 auto;
}
.pillarCard {
  padding: 64px 48px;
  border-right: 1px solid var(--line-2);
  transition: background 0.4s;
  background: var(--bg);
}
.pillarCard:last-child { border-right: none; }
.pillarCard:hover { background: var(--bg-2); }
.pillarNum {
  font-family: 'Archivo Black', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 2px;
  color: var(--muted);
  margin-bottom: 40px;
}
.pillarCard:hover .pillarNum { color: var(--text); }
.pillarAr {
  font-family: 'Noto Kufi Arabic', sans-serif;
  font-size: 1.5rem;
  color: var(--text);
  display: block;
  margin-bottom: 22px;
}
.pillarTitle {
  font-family: 'Archivo Black', sans-serif;
  font-size: 2.6rem;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  line-height: 0.9;
  color: var(--text);
  margin: 0 0 22px;
}
.pillarBody {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.7;
}

/* ===== TIMELINE ===== */
.timeline {
  padding: 160px 48px;
  border-bottom: 1px solid var(--line);
}
.timelineHeader {
  max-width: var(--container-max);
  margin: 0 auto 80px;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
}
.timelineTitle {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(2.4rem, 5.5vw, 5rem);
  line-height: 0.9;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  margin: 16px 0 0;
}
.timelineList {
  max-width: var(--container-max);
  margin: 0 auto;
  border-top: 1px solid var(--line-2);
}
.timelineRow {
  display: grid;
  grid-template-columns: 200px 1fr auto;
  gap: 40px;
  padding: 40px 0;
  border-bottom: 1px solid var(--line-2);
  align-items: center;
  transition: all 0.3s;
}
.timelineRow:hover {
  padding-left: 20px;
  background: var(--bg-2);
}
.timelineRowFuture { opacity: 0.5; }
.timelineDate {
  font-family: 'Archivo Black', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text);
}
.timelineRowFuture .timelineDate { color: var(--muted); }
.timelineEvent {
  font-family: 'Archivo Black', sans-serif;
  font-size: 1.6rem;
  color: var(--text);
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.timelineDesc {
  color: var(--muted);
  font-size: 0.92rem;
  margin-top: 6px;
  max-width: 640px;
}
.timelineTag {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 7px 12px;
  border: 1px solid var(--line-2);
  color: var(--muted);
  font-weight: 600;
}
.timelineTag.done {
  border-color: var(--text);
  color: var(--text);
}

/* ===== HIRING INVERTED BANNER ===== */
.hiring {
  background: #fff;
  color: #000;
  padding: 120px 48px;
  border-top: 2px solid #000;
  border-bottom: 2px solid #000;
}
.hiringInner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: center;
}
.hiringLabel {
  font-family: 'Archivo Black', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.hiringTitle {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(3rem, 7vw, 7rem);
  line-height: 0.85;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  margin: 0 0 28px;
  color: #000;
}
.hiringSub {
  color: #333;
  font-size: 1.1rem;
  max-width: 580px;
  line-height: 1.65;
}
.hiringCta { display: flex; justify-content: flex-end; }
.hiringBtn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 26px 40px;
  background: #000;
  color: #fff;
  font-family: 'Archivo Black', sans-serif;
  font-size: 0.88rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s;
  border: 2px solid #000;
}
.hiringBtn:hover {
  background: #fff;
  color: #000;
  transform: translate(-3px, -3px);
  box-shadow: 6px 6px 0 0 #000;
}

/* ===== CONTACT ===== */
.cta {
  padding: 220px 48px;
  text-align: center;
  border-bottom: 1px solid var(--line);
}
.ctaTitle {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(3rem, 9vw, 10rem);
  line-height: 0.85;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: var(--text);
  margin: 32px auto 32px;
  max-width: 1200px;
}
.ctaSub {
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 620px;
  margin: 0 auto 52px;
}
.ctaBtns {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 80px;
}
.ctaSocial {
  display: flex;
  gap: 36px;
  justify-content: center;
  flex-wrap: wrap;
  padding-top: 60px;
  border-top: 1px solid var(--line-2);
  max-width: 980px;
  margin: 0 auto;
}
.socialLink {
  font-family: 'Archivo Black', sans-serif;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color 0.3s;
}
.socialLink:hover { color: var(--text); }

/* ===== FOOTER ===== */
.footer {
  background: #000;
  padding: 100px 48px 48px;
  border-top: 1px solid var(--line);
}
.footerGrid {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 80px;
  padding-bottom: 80px;
  border-bottom: 1px solid var(--line-2);
}
.footerLogo {
  height: 52px;
  width: auto;
  margin-bottom: 24px;
}
.footerTag {
  color: var(--muted);
  font-size: 0.96rem;
  max-width: 360px;
  line-height: 1.7;
}
.footerSocials {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.footerSocialLink {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line-2);
  border-radius: 50%;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.3s, border-color 0.3s, background 0.3s, transform 0.3s;
}
.footerSocialLink:hover {
  color: var(--text);
  border-color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-2px);
}
.footerCols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.footerCol {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footerCol h4 {
  font-family: 'Archivo Black', sans-serif;
  font-size: 0.74rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text);
  margin: 0 0 14px;
}
.footerCol a,
.footerCol button {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.92rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  padding: 0;
  font-family: 'Inter', sans-serif;
  transition: color 0.3s;
}
.footerCol a:hover,
.footerCol button:hover { color: var(--text); }
.footerMuted { color: var(--dim); font-size: 0.84rem; }
.footerBottom {
  max-width: var(--container-max);
  margin: 40px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--dim);
  flex-wrap: wrap;
  gap: 20px;
}
.footerBadges { display: flex; gap: 12px; flex-wrap: wrap; }
.footerBadge {
  font-family: 'Archivo Black', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--line-2);
  padding: 7px 12px;
}

/* ===== MODAL ===== */
.modalBackdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  animation: fadeIn 0.3s ease-out;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.modalContent {
  position: relative;
  max-width: 1280px;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  overflow: hidden;
  border: 2px solid var(--text);
}
.modalClose {
  position: absolute;
  top: -52px;
  right: 0;
  color: var(--text);
  background: none;
  border: none;
  font-size: 2.4rem;
  cursor: pointer;
  line-height: 1;
  font-family: 'Archivo Black', sans-serif;
}
.modalVideo { width: 100%; height: 100%; object-fit: contain; }

/* ===== RESPONSIVE ===== */
/* Fluid tightening — keeps 2-col compositions, just narrows gaps/padding */
@media (max-width: 1280px) {
  .studio, .pillars, .timeline, .cta, .gamesIntro, .bigQuote, .gameBlock, .gameSpacer, .hiring {
    padding-left: clamp(20px, 3vw, 48px);
    padding-right: clamp(20px, 3vw, 48px);
  }
  .container, .navInner { padding: 0 clamp(20px, 3vw, 48px); }
  .gameGrid, .gameGridReverse { gap: clamp(32px, 5vw, 80px); }
  .studioInner { gap: clamp(40px, 6vw, 80px); }
  .pillarsHeader, .timelineHeader, .hiringInner { gap: clamp(30px, 5vw, 60px); }
}

/* Real stack point — below this width 2-col becomes impossible */
@media (max-width: 820px) {
  .heroInner,
  .studioInner,
  .pillarsHeader,
  .timelineHeader,
  .hiringInner,
  .gameGrid,
  .gameGridReverse {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .gameGridReverse .gameFigure { order: 0; }
  .nomadHead { align-items: flex-start; }
  .nomadTrip { grid-template-columns: 1fr; gap: 12px; }
  .nomadPanel { aspect-ratio: 16 / 10; }
  .nomadPanel img { object-position: center 22%; }
  .nomadPanel.nomadPanelLift img { object-position: center 50%; }
  .nomadFoot { grid-template-columns: 1fr; gap: 36px; }
  .nomadFootRight .gameAccolades { flex-wrap: wrap; }
  .nomadFootRight .gameAccolades .gameAccolade { flex: 1 1 140px; }
  .nomadBleed { aspect-ratio: 4 / 5; }
  .nomadBleedContent { max-width: none; right: clamp(20px, 4vw, 40px); }
  .nomadBleedContent .gameTitle { font-size: clamp(2.2rem, 10vw, 3.6rem); }
  .nomadBleedBottom { grid-template-columns: 1fr; gap: 28px; }
  .statsGrid { grid-template-columns: repeat(2, 1fr); }
  .statItem:nth-child(2) { border-right: none; }
  .pillarsGrid { grid-template-columns: 1fr; }
  .pillarCard { border-right: none; border-bottom: 1px solid var(--line-2); }
  .pillarCard:last-child { border-bottom: none; }
  .timelineRow { grid-template-columns: 1fr; gap: 10px; }
  .footerGrid { grid-template-columns: 1fr; gap: 60px; }
  .hiringCta { justify-content: flex-start; }
  .hero, .studio, .pillars, .timeline, .cta, .gamesIntro, .hiring, .bigQuote, .gameBlock, .gameSpacer { padding-left: 24px; padding-right: 24px; }
  .container, .navInner { padding: 0 24px; }
  .heroFigure { height: clamp(340px, 60vh, 560px); }
}

@media (max-width: 780px) {
  .navLinks {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 32px;
    gap: 24px;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s;
    border-bottom: 1px solid var(--line-2);
  }
  .navLinksOpen { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .mobileToggle { display: flex; }
  .statsGrid { grid-template-columns: 1fr; }
  .statItem { border-right: none; border-bottom: 1px solid #000; padding: 70px 30px; }
  .footerCols { grid-template-columns: repeat(2, 1fr); }
  .footerBottom { flex-direction: column; align-items: flex-start; }
  .tickerItem { font-size: 1.2rem; }
  .heroMeta { gap: 24px; }
  .hero { padding-top: 120px; padding-bottom: 80px; min-height: auto; }
}

/* ===== MOBILE POLISH: tap targets, font floors, overflow guards ===== */
@media (max-width: 560px) {
  .pillarsTitle { font-size: clamp(1.9rem, 9vw, 2.6rem); }
  .pillarsHeader { gap: 28px; }
  .statLabel { max-width: none; }
  .eyebrow { font-size: 0.78rem; letter-spacing: 2.4px; }
  .footerCol { gap: 4px; }
  .footerCol a,
  .footerCol button { padding: 12px 0; min-height: 44px; display: inline-flex; align-items: center; }
  .footerCol h4 { margin-bottom: 6px; }
  .navLink { padding: 14px 0; min-height: 44px; display: inline-flex; align-items: center; }
  .ctaSocial { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; padding-top: 40px; max-width: none; }
  .socialLink { padding: 14px 8px; min-height: 44px; display: flex; align-items: center; justify-content: center; font-size: 0.82rem; border: 1px solid var(--line-2); }
  .footerSocialLink { width: 44px; height: 44px; }
  .footerSocials { gap: 10px; }
  .timelineTag, .blogTabCount, .blogTabBadge { font-size: 11.5px; }
}

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

/* =====================================================================
   SUBPAGE STYLES — /careers + /press-kit
   ===================================================================== */
.subRoot {
  font-family: 'Inter', sans-serif;
  background: #000;
  color: #fff;
  min-height: 100vh;
  padding-top: 160px;
  padding-bottom: 140px;
  --bg: #000;
  --bg-2: #0a0a0a;
  --line-2: #2a2a2a;
  --text: #fff;
  --muted: #888;
  --dim: #555;
}
.subHero {
  max-width: var(--container-max);
  margin: 0 auto 100px;
  padding: 0 48px;
}
.subCrumb {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.subBack {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 0.74rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.35);
  text-underline-offset: 5px;
  transition: color 0.3s, text-decoration-color 0.3s;
  font-weight: 600;
}
.subBack:hover {
  color: var(--muted);
  text-decoration-color: var(--muted);
}
.subTitle {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(3.5rem, 10vw, 11rem);
  line-height: 0.85;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  margin: 28px 0 36px;
  color: var(--text);
  max-width: 1200px;
}
.subTitle em { font-style: italic; color: var(--muted); }
.subKicker {
  font-family: 'Inter', sans-serif;
  color: var(--muted);
  font-size: 1.15rem;
  max-width: 720px;
  line-height: 1.7;
}
.subKicker a { color: var(--text); text-decoration: underline; }

.subSection {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 48px;
}
.blockLabel {
  font-family: 'Archivo Black', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 2px;
  color: var(--text);
  text-transform: uppercase;
  margin-bottom: 0;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line-2);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
}
.blockLabel span:last-child {
  color: var(--muted);
  font-family: 'Inter', sans-serif;
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 1.5px;
}
.block { margin-bottom: 120px; }

/* ===== CAREERS ===== */
.roleGrid {
  display: flex;
  flex-direction: column;
}
.roleRow {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  padding: 44px 0;
  border-bottom: 1px solid var(--line-2);
  align-items: center;
  transition: all 0.3s;
}
.roleRow:hover {
  padding-left: 24px;
  background: var(--bg-2);
}
.roleRow:hover .roleTitle { color: var(--text); }
.roleTitle {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--text);
  margin: 0 0 14px;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  line-height: 0.95;
  transition: color 0.3s;
}
.roleMeta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
  font-weight: 500;
}
.roleMeta span {
  padding: 6px 12px;
  border: 1px solid var(--line-2);
  color: var(--text);
}
.roleDesc {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 760px;
  margin: 0;
}
.roleApply {
  font-family: 'Archivo Black', sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #000;
  padding: 20px 32px;
  background: var(--text);
  border: 2px solid var(--text);
  text-decoration: none;
  transition: all 0.3s;
  white-space: nowrap;
}
.roleApply:hover {
  background: #000;
  color: var(--text);
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 0 var(--text);
}
.roleClosed { opacity: 0.4; }
.roleClosed .roleApply {
  pointer-events: none;
  color: var(--dim);
  background: transparent;
  border-color: var(--line-2);
  box-shadow: none;
  transform: none;
}

/* Role title link (opens standalone job page) */
.roleTitleLink {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s;
}
.roleRow:hover .roleTitleLink { color: var(--text); }
.roleMore {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: border-color 0.2s, transform 0.2s;
}
.roleMore:hover { border-bottom-color: var(--text); transform: translateX(2px); }

/* Standalone job page */
.jobHeroCta {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.jobHeroHint {
  color: var(--muted);
  font-size: 0.9rem;
  font-family: 'Inter', sans-serif;
}
.jobLayout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 80px;
  margin-bottom: 40px;
}
.jobSidebar {
  position: sticky;
  top: 120px;
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.jobFact {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line-2);
}
.jobFact span {
  font-family: 'Archivo Black', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
}
.jobFact strong {
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.98rem;
}
.jobBody {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.8;
}
.jobBody p { margin: 0 0 22px; }
.jobBody strong { color: var(--text); font-weight: 600; }
.jobBodyLede {
  color: var(--text) !important;
  font-size: 1.2rem !important;
  line-height: 1.6 !important;
  margin-bottom: 32px !important;
}
.jobBodyH2 {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(1.4rem, 2.4vw, 1.8rem);
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--text);
  margin: 48px 0 18px;
}
.jobBodyH2:first-child { margin-top: 0; }
.jobBodyH3 {
  font-family: 'Archivo Black', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text);
  margin: 32px 0 14px;
}
.jobBodyList {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
}
.jobBodyList li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
}
.jobBodyList li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 10px;
  height: 1px;
  background: var(--text);
}
.jobBodyQuote {
  margin: 32px 0;
  padding: 24px 28px;
  border-left: 3px solid var(--text);
  background: var(--bg-2);
  color: var(--text);
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.6;
}
.jobApplyFoot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  padding: 60px;
  background: var(--bg-2);
  border: 1px solid var(--line-2);
  margin-top: 40px;
}
.jobApplyFoot h3 {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 0 0 10px;
  color: var(--text);
}
.jobApplyFoot p {
  color: var(--muted);
  margin: 0;
  font-size: 1rem;
}
@media (max-width: 900px) {
  .jobLayout { grid-template-columns: 1fr; gap: 48px; }
  .jobSidebar {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 24px 48px;
  }
  .jobFact { flex: 1 1 160px; padding-bottom: 12px; }
}
@media (max-width: 680px) {
  .jobApplyFoot { padding: 40px 24px; }
}

/* General-application CTA under role list */
.applyCta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  padding: 40px 0 60px;
  border-top: 1px solid var(--line-2);
  margin-top: -40px;
}
.applyCta p {
  color: var(--muted);
  font-size: 1rem;
  margin: 0;
}
.applyCtaBtn {
  font-family: 'Archivo Black', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text);
  background: transparent;
  border: 2px solid var(--text);
  padding: 16px 28px;
  cursor: pointer;
  transition: all 0.3s;
}
.applyCtaBtn:hover {
  background: var(--text);
  color: #000;
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 0 var(--text);
}

/* Apply modal */
.applyModal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px;
}
.applyModal[hidden] { display: none !important; }
.applyModalFrame {
  position: relative;
  width: 100%;
  max-width: 820px;
  max-height: calc(100vh - 96px);
  background: #0a0a0a;
  border: 1px solid var(--line-2);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.applyModalClose {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
  width: 40px;
  height: 40px;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  border-radius: 50%;
}
.applyModalClose:hover { background: #fff; color: #000; }
.applyModalHeader {
  padding: 28px 32px 20px;
  border-bottom: 1px solid var(--line-2);
}
.applyModalEyebrow {
  font-family: 'Archivo Black', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 2px;
  color: var(--muted);
  text-transform: uppercase;
}
.applyModalTitle {
  font-family: 'Archivo Black', sans-serif;
  font-size: 1.8rem;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--text);
  margin: 8px 0 0;
}
.applyModal iframe {
  width: 100%;
  flex: 1;
  min-height: 560px;
  border: 0;
  display: block;
  color-scheme: dark;
  background: #0a0a0a;
}
@media (max-width: 680px) {
  .applyModal { padding: 12px; }
  .applyModalHeader { padding: 20px 20px 16px; }
  .applyModalTitle { font-size: 1.4rem; }
  .applyModalClose { top: 10px; right: 10px; width: 36px; height: 36px; }
}

.careersEthos {
  margin-top: 100px;
  padding: 100px 60px;
  background: var(--bg-2);
  border: 1px solid var(--line-2);
}
.careersEthos h3 {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 0.9;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  margin: 0 0 28px;
  max-width: 780px;
  color: var(--text);
}
.careersEthos h3 em { font-style: italic; color: var(--muted); }
.careersEthos p {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 760px;
  margin: 0 0 16px;
  line-height: 1.75;
}
.careersEthos p a { color: var(--text); text-decoration: underline; }

/* ===== PRESS KIT ===== */
.factGrid {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 28px 72px;
  font-size: 1.02rem;
  border-top: 1px solid var(--line-2);
  padding-top: 48px;
}
.factGrid dt {
  font-family: 'Archivo Black', sans-serif;
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding-top: 6px;
}
.factGrid dd {
  color: var(--text);
  margin: 0;
  line-height: 1.7;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line-2);
}
.factGrid dd:last-child { border-bottom: none; }
.factGrid dd a { color: var(--text); text-decoration: underline; }
.factGrid dd em { font-style: italic; color: var(--muted); }

.assetGrid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.assetCard {
  background: var(--bg-2);
  border: 1px solid var(--line-2);
  overflow: hidden;
  transition: all 0.4s;
}
.assetCard:hover {
  border-color: var(--text);
  transform: translateY(-4px);
}
.assetImg {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}
.assetLabel {
  padding: 20px 22px;
  font-size: 0.9rem;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--line-2);
}
.assetLabel a {
  font-family: 'Archivo Black', sans-serif;
  color: var(--text);
  font-size: 0.72rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
}
.assetLabel a:hover { text-decoration: underline; }

.logoDownloadGrid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.logoDownloadCard {
  background: #fff;
  padding: 72px 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  transition: transform 0.3s;
  border: 2px solid #000;
}
.logoDownloadCard.dark {
  background: #000;
  border-color: var(--text);
}
.logoDownloadCard:hover { transform: translateY(-4px); }
.logoDownloadImg {
  width: 180px;
  height: auto;
  object-fit: contain;
}
.logoDownloadBtn {
  font-family: 'Archivo Black', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #000;
  text-decoration: none;
  border: 2px solid #000;
  padding: 12px 22px;
}
.logoDownloadCard.dark .logoDownloadBtn {
  color: var(--text);
  border-color: var(--text);
}
.logoDownloadBtn:hover { background: #000; color: #fff; }
.logoDownloadCard.dark .logoDownloadBtn:hover { background: var(--text); color: #000; }

.pressQuoteBlock {
  background: var(--bg-2);
  border-left: 4px solid var(--text);
  padding: 40px 44px;
  margin-bottom: 20px;
}
.pressQuoteBlock p {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(1.2rem, 1.9vw, 1.6rem);
  color: var(--text);
  margin: 0 0 18px;
  line-height: 1.35;
  letter-spacing: -0.015em;
  text-transform: uppercase;
}
.pressQuoteBlock cite {
  color: var(--muted);
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-style: normal;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 500;
}

.boilerplateCard {
  background: var(--bg-2);
  border: 1px solid var(--line-2);
  border-left: 4px solid var(--text);
  padding: 52px 56px;
  color: var(--muted);
  line-height: 1.85;
  font-size: 1.08rem;
}
.boilerplateCard em { color: var(--text); font-style: italic; }
.boilerplateCard p { margin: 0; }

/* ===== TEAM PAGE ===== */
.teamFeature {
  position: relative;
  border: 1px solid var(--line-2);
  background: var(--bg-2);
  overflow: hidden;
}
.teamFeatureImg {
  width: 100%;
  height: auto;
  max-height: 70vh;
  object-fit: cover;
  object-position: center;
  display: block;
}
.teamFeatureCaption {
  padding: 36px 44px;
  border-top: 1px solid var(--line-2);
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: start;
}
.teamFeatureTag {
  font-family: 'Archivo Black', sans-serif;
  font-size: 0.76rem;
  letter-spacing: 2px;
  color: var(--text);
  text-transform: uppercase;
}
.teamFeatureText {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.75;
  max-width: 820px;
}
.teamFeatureText strong { color: var(--text); font-weight: 600; }

.teamGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.teamCard {
  background: var(--bg-2);
  border: 1px solid var(--line-2);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.teamCard:hover {
  border-color: var(--text);
  transform: translateY(-4px);
}
.teamPhoto {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #111;
}
.teamPhotoImg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.teamCard:hover .teamPhotoImg { transform: scale(1.04); }
.teamCardBody {
  padding: 32px 36px 40px;
}
.teamRole {
  font-family: 'Archivo Black', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 2px;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.teamName {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(1.8rem, 2.6vw, 2.4rem);
  line-height: 0.95;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  color: var(--text);
  margin: 0 0 18px;
}
.teamBio {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.7;
  margin: 0;
}

.teamDiscGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--line-2);
}
.teamDiscCard {
  padding: 40px 36px;
  border-right: 1px solid var(--line-2);
  border-bottom: 1px solid var(--line-2);
  transition: background 0.3s;
}
.teamDiscCard:hover { background: var(--bg-2); }
.teamDiscCard:nth-child(3n) { border-right: none; }
.teamDiscCard:nth-last-child(-n+3) { border-bottom: none; }
.teamDiscCard h4 {
  font-family: 'Archivo Black', sans-serif;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--text);
  margin: 0 0 14px;
  line-height: 1;
}
.teamDiscCard p {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 820px) {
  .teamFeatureCaption { grid-template-columns: 1fr; gap: 18px; padding: 28px 24px; }
  .teamGrid { grid-template-columns: 1fr; }
  .teamDiscGrid { grid-template-columns: 1fr; }
  .teamDiscCard { border-right: none; border-bottom: 1px solid var(--line-2); }
  .teamDiscCard:last-child { border-bottom: none; }
}

/* ===== BLOG PAGE ===== */
.blogChips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 40px;
}
.blogChip {
  font-family: 'Archivo Black', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--line-2);
  padding: 10px 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: default;
}
.blogChipActive {
  background: var(--text);
  color: #000;
  border-color: var(--text);
}
.blogChipCount {
  font-family: 'Inter', sans-serif;
  font-size: 0.74rem;
  opacity: 0.7;
  font-weight: 600;
}
.blogChipActive .blogChipCount { opacity: 1; }

/* Featured blog post */
.blogFeatured {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 0;
  background: var(--bg-2);
  border: 1px solid var(--line-2);
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.blogFeatured:hover { border-color: var(--text); }
.blogFeatured:hover .blogFeaturedImg { transform: scale(1.04); }
.blogFeaturedFrame {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #0a0a0a;
}
.blogFeaturedImg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ===== POST DETAIL PAGE ===== */
.postMeta {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 24px;
}
.postCat {
  font-family: 'Archivo Black', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #000;
  background: var(--text);
  padding: 7px 12px;
}
.postDate {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  color: var(--muted);
  letter-spacing: 0.5px;
  font-weight: 500;
}
.postTitle {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(2.4rem, 6vw, 5.5rem);
  line-height: 0.9;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  color: var(--text);
  margin: 0;
  max-width: 1100px;
}
.postHero {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 60px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--bg-2);
  border: 1px solid var(--line-2);
}
.postHeroImg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  display: block;
}
.postBody {
  max-width: 760px;
  margin: 0 auto 80px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.85;
}
.postBody p { margin: 0 0 22px; }
.postBody a { color: var(--text); text-decoration: underline; }
.postBody em { color: var(--text); font-style: italic; }
.postLede {
  font-family: 'Archivo Black', sans-serif;
  color: var(--text);
  font-size: clamp(1.15rem, 1.6vw, 1.5rem);
  line-height: 1.45;
  letter-spacing: -0.015em;
  text-transform: none;
  margin-bottom: 32px !important;
}
.postTeamSign {
  font-family: 'Archivo Black', sans-serif;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 40px !important;
  font-size: 0.9rem;
}

.postNav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto 80px;
}
.postNavLink {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 30px 32px;
  background: var(--bg-2);
  border: 1px solid var(--line-2);
  text-decoration: none;
  color: inherit;
  transition: all 0.3s;
}
.postNavLink:hover {
  border-color: var(--text);
  transform: translateY(-3px);
}
.postNavLinkRight {
  text-align: right;
  align-items: flex-end;
}
.postNavDir {
  font-family: 'Archivo Black', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
}
.postNavTitle {
  font-family: 'Archivo Black', sans-serif;
  font-size: 1.1rem;
  line-height: 1.1;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  color: var(--text);
}

@media (max-width: 820px) {
  .postNav { grid-template-columns: 1fr; }
  .postNavLinkRight { text-align: left; align-items: flex-start; }
}
.blogFeaturedCat {
  position: absolute;
  top: 24px;
  left: 24px;
  font-family: 'Archivo Black', sans-serif;
  font-size: 0.64rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: var(--text);
  color: #000;
  padding: 9px 14px;
}
.blogFeaturedBody {
  padding: 60px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.blogFeaturedDate {
  font-family: 'Archivo Black', sans-serif;
  font-size: 0.74rem;
  letter-spacing: 2px;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.blogFeaturedTitle {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(2rem, 3.6vw, 3.2rem);
  line-height: 0.92;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--text);
  margin: 0 0 24px;
}
.blogFeaturedExcerpt {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
  margin: 0 0 32px;
}
.blogFeaturedRead {
  font-family: 'Archivo Black', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text);
  padding-bottom: 4px;
  border-bottom: 2px solid var(--text);
  width: fit-content;
}

/* Archive list — row style */
.blogList {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line-2);
}
.blogRow {
  display: grid;
  grid-template-columns: 280px 1fr auto;
  gap: 40px;
  padding: 32px 0;
  border-bottom: 1px solid var(--line-2);
  align-items: center;
  transition: all 0.3s;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}
.blogRow:hover {
  padding-left: 24px;
  background: linear-gradient(90deg, var(--bg-2), transparent);
}
.blogRow:hover .blogRowTitle { color: var(--text); }
.blogRow:hover .blogRowArrow { transform: translateX(8px); color: var(--text); }
.blogRow:hover .blogRowImg { transform: scale(1.06); }
.blogRowFrame {
  width: 100%;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: #0a0a0a;
  border: 1px solid var(--line-2);
}
.blogRowImg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.blogRowBody {}
.blogRowMeta {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 14px;
}
.blogRowCat {
  font-family: 'Archivo Black', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--text);
  border: 1px solid var(--text);
  padding: 5px 10px;
}
.blogRowDate {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 500;
}
.blogRowTitle {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  line-height: 1;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  color: var(--text);
  margin: 0 0 12px;
  transition: color 0.3s;
}
.blogRowExcerpt {
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.65;
  margin: 0;
  max-width: 720px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blogRowArrow {
  font-family: 'Archivo Black', sans-serif;
  font-size: 1.8rem;
  color: var(--muted);
  padding: 0 20px 0 10px;
  transition: all 0.3s;
}

@media (max-width: 820px) {
  .blogFeatured { grid-template-columns: 1fr; }
  .blogFeaturedBody { padding: 40px 28px; }
  .blogRow { grid-template-columns: 1fr; gap: 20px; padding: 28px 0; }
  .blogRowArrow { display: none; }
}

@media (max-width: 820px) {
  .subHero, .subSection { padding-left: 24px; padding-right: 24px; }
  .factGrid { grid-template-columns: 1fr; gap: 8px 0; }
  .factGrid dt { margin-top: 24px; }
  .roleRow { grid-template-columns: 1fr; }
  .roleApply { justify-self: start; }
  .careersEthos { padding: 60px 32px; }
}

/* =====================================================================
   AZOOMA ESCAPE — page-scoped palette & layout
   Warm burgundy + cream + logo-pink. All under .azooma { … }
   ===================================================================== */
.azooma {
  --az-bg: #1a0a10;
  --az-bg-2: #220d16;
  --az-bg-3: #2d121d;
  --az-line: #3a1a26;
  --az-line-2: #4a2130;
  --az-text: #fbeedb;
  --az-muted: #b59684;
  --az-dim: #7a5d52;
  --az-pink: #e63a5a;
  --az-pink-2: #f05574;
  --az-cream: #f5e6cc;
  --az-gold: #e8a14d;
  --az-purple: #3a1a4a;
  background: var(--az-bg);
  color: var(--az-text);
}

.azooma .navLinkActive {
  color: var(--az-text);
  border-bottom: 2px solid var(--az-pink);
  padding-bottom: 2px;
}
.azooma .navScrolled {
  background: rgba(26, 10, 16, 0.92);
  border-bottom-color: var(--az-line);
}
.azooma .navLink:hover { color: var(--az-pink-2); }
.azooma .navCta {
  border: 1.5px solid var(--az-text);
  color: var(--az-text);
  padding: 8px 18px;
}
.azooma .navCta:hover { background: var(--az-text); color: var(--az-bg); }

.azEyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.74rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--az-pink-2);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
}
.azEyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--az-pink);
}

.azSectionTitle {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(2.4rem, 5.2vw, 5rem);
  line-height: 0.92;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  color: var(--az-text);
  margin: 14px 0 0;
}
.azSectionTitle em {
  color: var(--az-pink);
  font-style: normal;
}

.azMutedBody {
  color: var(--az-muted);
  font-size: 1.04rem;
  line-height: 1.7;
  margin: 0;
  max-width: 560px;
}
.azMutedBody em { color: var(--az-cream); font-style: normal; font-weight: 600; }

/* ----- Azooma buttons ----- */
.azBtnPrimary,
.azBtnGhost {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(0.78rem, 0.85vw, 0.85rem);
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: clamp(14px, 1.5vw, 18px) clamp(22px, 2.4vw, 30px);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: 2px solid var(--az-pink);
  border-radius: 0;
  background: var(--az-pink);
  color: #fff;
  font-weight: 900;
}
.azBtnPrimary:hover {
  background: var(--az-bg);
  color: var(--az-pink);
  transform: translate(-3px, -3px);
  box-shadow: 6px 6px 0 0 var(--az-pink);
}
.azBtnGhost {
  background: transparent;
  color: var(--az-text);
  border-color: var(--az-text);
}
.azBtnGhost:hover {
  background: var(--az-text);
  color: var(--az-bg);
}
.azBtnPrimaryBig {
  font-size: clamp(0.92rem, 1.1vw, 1.05rem);
  padding: 26px 44px;
  letter-spacing: 2.5px;
}

/* ===== HERO ===== */
.azHero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  padding: clamp(108px, 13vh, 148px) 48px clamp(44px, 6.5vh, 72px);
  overflow: hidden;
  display: flex;
  align-items: center;
  isolation: isolate;
}
.azHeroBg {
  position: absolute;
  inset: 0;
  background-color: var(--az-bg);
  background-image:
    linear-gradient(180deg, rgba(26, 10, 16, 0.2) 0%, rgba(26, 10, 16, 0.55) 60%, var(--az-bg) 100%),
    url('img/azooma/hero-banner.webp');
  background-position: top center, top center;
  background-size: 100% 100%, 100% auto;
  background-repeat: no-repeat, no-repeat;
  z-index: -2;
  filter: saturate(1.05);
}
.azHeroGradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 18% 55%, rgba(26, 10, 16, 0.92) 0%, rgba(26, 10, 16, 0.55) 30%, transparent 65%),
    linear-gradient(90deg, var(--az-bg) 0%, rgba(26, 10, 16, 0.35) 40%, transparent 70%);
  z-index: -1;
}
.azHeroInner {
  max-width: var(--container-max);
  width: 100%;
  margin: 0 auto;
  position: relative;
}
.azHeroLogo {
  display: block;
  width: min(clamp(220px, 30vw, 440px), 46vh);
  height: auto;
  margin: 0 0 clamp(14px, 2vh, 24px) -8px;
  filter: drop-shadow(0 18px 36px rgba(0, 0, 0, 0.55));
}
.azHeroTag {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(1.1rem, min(1.75vw, 2.6vh), 1.75rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--az-cream);
  margin: 0 0 clamp(12px, 1.6vh, 18px);
  max-width: 620px;
}
.azHeroDesc {
  font-size: clamp(0.92rem, 0.95vw, 1.05rem);
  line-height: 1.65;
  color: var(--az-muted);
  max-width: 580px;
  margin: 0;
}
.azHeroDesc em { color: var(--az-cream); font-style: italic; }
.azHeroBody {
  display: flex;
  align-items: flex-end;
  gap: clamp(28px, 3.5vw, 48px);
  flex-wrap: wrap;
  margin-bottom: clamp(24px, 4vh, 48px);
}
.azHeroBodyText { flex: 1 1 520px; min-width: 0; }
.azHeroBodyText .azHeroTag { margin-bottom: clamp(12px, 1.4vh, 16px); }
.azHeroButtons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  flex-shrink: 0;
}
.azHeroMeta {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(32px, 3.2vw, 48px);
  margin-bottom: clamp(16px, 2.2vh, 26px);
  max-width: 640px;
}
.azHeroMetaItem {}
.azHeroMetaNum {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(1.3rem, min(1.85vw, 2.4vh), 1.7rem);
  color: var(--az-pink);
  line-height: 1;
  letter-spacing: -0.02em;
}
.azHeroMetaLabel {
  font-size: 0.7rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--az-muted);
  margin-top: 6px;
  max-width: 160px;
}

/* ===== TICKER ===== */
.azTicker {
  position: relative;
  background: var(--az-pink);
  color: var(--az-cream);
  padding: 22px 0;
  overflow: hidden;
  border-top: 2px solid var(--az-bg);
  border-bottom: 2px solid var(--az-bg);
}
.azTickerItem {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: 1.55rem;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  gap: 28px;
  color: var(--az-cream);
}
.azTickerItem::after {
  content: '\2726';
  font-size: 0.9rem;
  margin-left: 28px;
  color: var(--az-bg);
}
.azTickerArabic {
  font-family: 'Noto Kufi Arabic', sans-serif;
  font-weight: 700;
  font-size: 1.45rem;
  letter-spacing: 0;
  direction: rtl;
}

/* ===== SETUP ===== */
.azSetup {
  padding: 140px 48px;
  border-bottom: 1px solid var(--az-line);
}
.azSetupInner {
  max-width: 1380px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}
.azSetupLede {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(1.5rem, 2.4vw, 2.2rem);
  line-height: 1.05;
  color: var(--az-pink);
  margin: 28px 0 26px;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}
.azSetupBody {
  font-size: 1.08rem;
  line-height: 1.8;
  color: var(--az-muted);
  margin: 0 0 20px;
  max-width: 580px;
}
.azSetupBody em { color: var(--az-cream); font-style: italic; }
.azTagRow {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.azTag {
  font-family: 'Archivo Black', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  padding: 8px 14px;
  border: 1.5px solid var(--az-line-2);
  color: var(--az-muted);
  border-radius: 999px;
}
.azTagSolid {
  background: var(--az-pink);
  border-color: var(--az-pink);
  color: #fff;
}
.azSetupFigure {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 3px solid var(--az-pink);
  transform: rotate(-1.2deg);
  box-shadow: 14px 14px 0 0 var(--az-bg-3), 14px 14px 0 2px var(--az-pink);
}
.azSetupImg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ===== MISSION ===== */
.azMission {
  padding: 140px 48px;
  background: var(--az-bg-2);
  border-bottom: 1px solid var(--az-line);
}
.azMissionHeader {
  max-width: 1380px;
  margin: 0 auto 80px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: end;
}
.azMissionHeaderSub { padding-bottom: 8px; }
.azMissionGrid {
  max-width: 1380px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.azMissionCard {
  position: relative;
  padding: 48px 40px 44px;
  background: var(--az-bg);
  border: 1px solid var(--az-line-2);
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), border-color 0.3s;
  overflow: hidden;
}
.azMissionCard:hover {
  transform: translateY(-6px);
  border-color: var(--az-pink);
}
.azMissionNum {
  font-family: 'Archivo Black', sans-serif;
  font-size: 0.76rem;
  letter-spacing: 3px;
  color: var(--az-dim);
  margin-bottom: 28px;
}
.azMissionAr {
  font-family: 'Noto Kufi Arabic', sans-serif;
  font-weight: 700;
  font-size: 2.1rem;
  color: var(--az-pink);
  line-height: 1;
  margin-bottom: 20px;
  direction: rtl;
  text-align: right;
}
.azMissionTitle {
  font-family: 'Archivo Black', sans-serif;
  font-size: 1.75rem;
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--az-text);
  margin: 0 0 16px;
}
.azMissionBody {
  color: var(--az-muted);
  font-size: 0.98rem;
  line-height: 1.75;
  margin: 0;
}
.azMissionBody em { color: var(--az-cream); font-style: italic; }

/* ===== FAMILY ===== */
.azFamily {
  position: relative;
  padding: 140px 48px;
  overflow: hidden;
  isolation: isolate;
  border-bottom: 1px solid var(--az-line);
}
.azFamilyBg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 75% 50%, rgba(230, 58, 90, 0.12) 0%, transparent 55%),
    linear-gradient(180deg, var(--az-bg) 0%, var(--az-bg-2) 100%);
  z-index: -1;
}
.azFamilyInner {
  max-width: 1380px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 80px;
  align-items: center;
}
.azFamilyBody {
  color: var(--az-muted);
  font-size: 1.08rem;
  line-height: 1.8;
  margin: 24px 0 0;
  max-width: 540px;
}
.azFamilyBody em { color: var(--az-cream); font-style: italic; }
.azFamilyFigure {
  position: relative;
  display: flex;
  justify-content: center;
}
.azFamilyImg {
  width: 100%;
  max-width: 520px;
  height: auto;
  filter: drop-shadow(0 30px 50px rgba(0,0,0,0.45));
}

/* ===== PULL QUOTE ===== */
.azPullQuote {
  padding: 160px 48px;
  background: var(--az-pink);
  color: #fff;
  text-align: center;
  border-top: 2px solid var(--az-bg);
  border-bottom: 2px solid var(--az-bg);
}
.azQuoteMark {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(5rem, 10vw, 9rem);
  line-height: 0.5;
  color: var(--az-cream);
  margin-bottom: 20px;
  opacity: 0.85;
}
.azQuoteText {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(1.8rem, 3.6vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin: 0 auto 32px;
  max-width: 1100px;
  color: #fff;
}
.azQuoteCite {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--az-cream);
  opacity: 0.85;
}

/* ===== ACCOLADES ===== */
.azAccolades {
  padding: 140px 48px;
  border-bottom: 1px solid var(--az-line);
}
.azAccoladesHeader {
  max-width: 1380px;
  margin: 0 auto 80px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: end;
}
.azAccoladesGrid {
  max-width: 1380px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.azAccolade {
  padding: 40px 32px;
  border-top: 2px solid var(--az-pink);
  background: linear-gradient(180deg, rgba(230,58,90,0.06) 0%, transparent 60%);
}
.azAccoladeNum {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(2.6rem, 4.4vw, 4rem);
  color: var(--az-cream);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
}
.azAccoladeLabel {
  font-size: 0.9rem;
  color: var(--az-muted);
  line-height: 1.5;
}
.azAccoladeLabel em {
  color: var(--az-pink-2);
  font-style: normal;
  font-weight: 700;
}

/* ===== ORIGIN ===== */
.azOrigin {
  padding: 140px 48px;
  background: var(--az-bg-2);
  border-bottom: 1px solid var(--az-line);
}
.azOriginInner {
  max-width: 1380px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 80px;
  align-items: center;
}
.azOriginFigure {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border: 3px solid var(--az-cream);
  transform: rotate(1.2deg);
  box-shadow: -14px 14px 0 0 var(--az-pink);
}
.azOriginImg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.azOriginBody {
  color: var(--az-muted);
  font-size: 1.08rem;
  line-height: 1.8;
  margin: 24px 0 0;
  max-width: 560px;
}
.azOriginBody em { color: var(--az-cream); font-style: italic; }
.azOriginCtas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 40px;
}

/* ===== CTA ===== */
.azCta {
  position: relative;
  padding: 160px 48px;
  text-align: center;
  background:
    radial-gradient(ellipse at center, rgba(230,58,90,0.18) 0%, transparent 65%),
    var(--az-bg);
  overflow: hidden;
}
.azCtaSticker {
  display: inline-block;
  font-family: 'Archivo Black', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 3px;
  padding: 10px 18px;
  background: var(--az-gold);
  color: var(--az-bg);
  margin-bottom: 32px;
  transform: rotate(-2deg);
}
.azCtaTitle {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(3rem, 7vw, 6.5rem);
  line-height: 0.9;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: var(--az-text);
  margin: 0 0 28px;
}
.azCtaSub {
  font-size: clamp(1rem, 1.2vw, 1.25rem);
  color: var(--az-muted);
  margin: 0 0 44px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}
.azCtaButtons {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.azCtaFootnote {
  margin-top: 48px;
  font-size: 0.86rem;
  color: var(--az-dim);
  letter-spacing: 0.5px;
}
.azCtaFootnote a {
  color: var(--az-pink-2);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}
.azCtaFootnote a:hover { color: var(--az-cream); }

/* ===== FOOTER OVERRIDE FOR AZOOMA ===== */
.azooma .footer {
  background: var(--az-bg);
  border-top: 1px solid var(--az-line);
}
.azooma .footer a { color: var(--az-muted); }
.azooma .footer a:hover { color: var(--az-pink-2); }
.azooma .footer h4 { color: var(--az-text); }
.azooma .footerTag { color: var(--az-muted); }
.azooma .footerBottom { color: var(--az-dim); border-top-color: var(--az-line); }
.azooma .footerBadge {
  border-color: var(--az-line-2);
  color: var(--az-muted);
}
.azooma .footerMuted { color: var(--az-dim); }
.azooma .footerSocialLink {
  border-color: var(--az-line-2);
  color: var(--az-muted);
}
.azooma .footerSocialLink:hover {
  color: var(--az-pink-2);
  border-color: var(--az-pink-2);
  background: rgba(255, 255, 255, 0.04);
}

/* ===== TRAILER MODAL (Azooma variant uses the shared one if defined, fallback below) ===== */
.azooma .trailerModal,
.trailerModal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px;
}
.trailerModal[hidden] { display: none !important; }
.trailerFrame {
  position: relative;
  width: 100%;
  max-width: 1100px;
  aspect-ratio: 16 / 9;
  background: #000;
}
.trailerFrame iframe { width: 100%; height: 100%; border: 0; display: block; }
.trailerClose {
  position: absolute;
  top: 24px;
  right: 32px;
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
  width: 44px;
  height: 44px;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  border-radius: 50%;
}
.trailerClose:hover { background: #fff; color: #000; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1080px) {
  .azSetupInner,
  .azMissionHeader,
  .azFamilyInner,
  .azAccoladesHeader,
  .azOriginInner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .azMissionGrid { grid-template-columns: 1fr; }
  .azAccoladesGrid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 680px) {
  .azHero { padding: 140px 24px 60px; }
  .azSetup, .azMission, .azFamily, .azOrigin, .azAccolades, .azCta { padding-left: 24px; padding-right: 24px; }
  .azHeroLogo { width: 70%; }
  .azHeroMeta { gap: 32px; }
  .azTickerItem { font-size: 1.15rem; padding: 0 18px; }
  .azTickerItem::after { margin-left: 18px; }
  .azAccoladesGrid { grid-template-columns: 1fr; }
  .azSetupFigure { transform: rotate(-0.6deg); box-shadow: 8px 8px 0 0 var(--az-pink); }
  .azOriginFigure { transform: rotate(0.6deg); box-shadow: -8px 8px 0 0 var(--az-pink); }
  .trailerModal { padding: 20px; }
  .trailerClose { top: 12px; right: 16px; }
}

/* =====================================================================
   LARGE-DISPLAY RESPONSIVE LAYER
   Scales the design for 1600px laptops, 1920px FHD, 2560px QHD,
   and 3200px+ 4K / ultrawide. Strategy: scale design tokens
   (--container-max, --container-pad, --hero-img-h-max) and bump
   clamp() ceilings on display type, hero image, and section padding.
   Additive only — does not modify any rule above.
   ===================================================================== */

/* Sync .container and .navInner padding with the responsive token. */
.container,
.navInner,
.subHero { padding-left: var(--container-pad); padding-right: var(--container-pad); }

/* ----- 1600px+ : large laptops, small external displays ----- */
@media (min-width: 1600px) {
  .root, .subRoot {
    --container-max: 1680px;
    --container-pad: 64px;
    --hero-img-h-max: 1020px;
  }
  .heroFigure { height: clamp(380px, 82vh, var(--hero-img-h-max)); }
  .heroTitle { font-size: clamp(2.6rem, 10.5vw, 14.5rem); }
  .heroSubtitle { font-size: clamp(0.88rem, 1.5vw, 1.7rem); max-width: 820px; }
  .heroDesc { font-size: clamp(0.92rem, 1.15vw, 1.18rem); max-width: 620px; }
  .heroStatNum { font-size: clamp(1.2rem, 1.8vw, 2rem); }
  .heroLayout { gap: clamp(24px, 3.5vw, 72px); }
  .moments, .news { padding-top: 160px; padding-bottom: 160px; }
  .navLinks { gap: 48px; }
}

/* ----- 1920px+ : Full HD, the most common large desktop ----- */
@media (min-width: 1920px) {
  .root, .subRoot {
    --container-max: 1880px;
    --container-pad: 80px;
    --hero-img-h-max: 1180px;
  }
  .hero {
    padding: clamp(70px, 6.5vw, 110px)
             clamp(20px, 3vw, 80px)
             clamp(60px, 8vw, 120px);
  }
  .heroFigure { height: clamp(380px, 82vh, var(--hero-img-h-max)); }
  .heroTitle { font-size: clamp(2.6rem, 10.5vw, 17rem); }
  .heroSubtitle { font-size: clamp(0.88rem, 1.5vw, 1.95rem); max-width: 920px; }
  .heroDesc { font-size: clamp(0.92rem, 1.15vw, 1.32rem); max-width: 680px; }
  .heroStatNum { font-size: clamp(1.2rem, 1.8vw, 2.2rem); }
  .heroLayout { gap: clamp(24px, 3.5vw, 88px); }
  .moments, .news { padding-top: 180px; padding-bottom: 180px; }
  .momentsHeader, .newsHeader { margin-bottom: 80px; }
  .navLinks { gap: 56px; }
  .subRoot { padding-top: 200px; padding-bottom: 180px; }
}

/* ----- 2560px+ : QHD, 27" iMac and most premium monitors ----- */
@media (min-width: 2560px) {
  .root, .subRoot {
    --container-max: 2200px;
    --container-pad: 96px;
    --hero-img-h-max: 1380px;
  }
  .hero {
    padding: clamp(70px, 6.5vw, 140px)
             clamp(20px, 3vw, 96px)
             clamp(60px, 8vw, 150px);
  }
  .heroFigure { height: clamp(380px, 82vh, var(--hero-img-h-max)); }
  .heroTitle { font-size: clamp(2.6rem, 10.5vw, 20rem); }
  .heroSubtitle { font-size: clamp(0.88rem, 1.5vw, 2.3rem); max-width: 1080px; }
  .heroDesc { font-size: clamp(0.92rem, 1.15vw, 1.55rem); max-width: 800px; }
  .heroStatNum { font-size: clamp(1.2rem, 1.8vw, 2.6rem); }
  .heroLayout { gap: clamp(24px, 3.5vw, 110px); }
  .moments, .news { padding-top: 220px; padding-bottom: 220px; }
  .momentsHeader, .newsHeader { margin-bottom: 96px; }
  .navLinks { gap: 64px; }
  .navLogoImg { height: 46px; }
  .subRoot { padding-top: 240px; padding-bottom: 220px; }
}

/* ----- 3200px+ : 4K, ultrawide, 5K iMac. Full design generosity. ----- */
@media (min-width: 3200px) {
  .root, .subRoot {
    --container-max: 2400px;
    --container-pad: 120px;
    --hero-img-h-max: 1520px;
  }
  .heroTitle { font-size: clamp(2.6rem, 10.5vw, 22rem); }
  .heroSubtitle { font-size: clamp(0.88rem, 1.5vw, 2.6rem); max-width: 1200px; }
  .heroDesc { font-size: clamp(0.92rem, 1.15vw, 1.7rem); max-width: 880px; }
  .heroLayout { gap: clamp(24px, 3.5vw, 130px); }
  .moments, .news { padding-top: 260px; padding-bottom: 260px; }
}

/* =====================================================================
   PAGE-SPECIFIC LARGE-DISPLAY OVERRIDES
   Heroes on team.html and investors.html declare their own typography
   clamps inline. We bump those ceilings here so they scale alongside
   the rest of the system without touching every page file.
   ===================================================================== */
@media (min-width: 1600px) {
  .teamHeroTitle { font-size: clamp(72px, 11vw, 220px); }
  .teamHeroBody { font-size: clamp(17px, 1.4vw, 26px); max-width: 720px; }
  .briefHeroTitle { font-size: clamp(56px, 7.6vw, 152px); }
  .briefHeroWrap { max-width: 1180px; }
}
@media (min-width: 1920px) {
  .teamHeroTitle { font-size: clamp(72px, 11vw, 260px); }
  .teamHeroBody { font-size: clamp(17px, 1.4vw, 30px); max-width: 820px; }
  .briefHeroTitle { font-size: clamp(56px, 7.6vw, 180px); }
  .briefHeroWrap { max-width: 1340px; }
}
@media (min-width: 2560px) {
  .teamHeroTitle { font-size: clamp(72px, 11vw, 320px); }
  .teamHeroBody { font-size: clamp(17px, 1.4vw, 36px); max-width: 980px; }
  .briefHeroTitle { font-size: clamp(56px, 7.6vw, 220px); }
  .briefHeroWrap { max-width: 1620px; }
}
@media (min-width: 3200px) {
  .teamHeroTitle { font-size: clamp(72px, 11vw, 380px); }
  .briefHeroTitle { font-size: clamp(56px, 7.6vw, 260px); }
}

