:root {
  --ink: #030912;
  --ink-soft: #071321;
  --panel: rgba(10, 24, 39, 0.72);
  --panel-strong: #0a1726;
  --paper: #f4f0e5;
  --muted: #98a9b9;
  --gold: #d8a847;
  --gold-light: #f0cf82;
  --cyan: #06a9c4;
  --line: rgba(220, 178, 88, 0.2);
  --white-line: rgba(255,255,255,.09);
  --max: 1240px;
  --radius: 24px;
  color-scheme: dark;
}

* { box-sizing: border-box; }
.sr-only { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0,0,0,0) !important; white-space: nowrap !important; border: 0 !important; }
html { scroll-behavior: smooth; background: var(--ink); }
body {
  margin: 0;
  min-width: 320px;
  color: #edf4f7;
  background:
    radial-gradient(circle at 15% 12%, rgba(6,169,196,.08), transparent 30rem),
    radial-gradient(circle at 88% 72%, rgba(216,168,71,.06), transparent 32rem),
    var(--ink);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
}

[dir="rtl"] body { font-family: Tahoma, "Segoe UI", Arial, sans-serif; }
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button, select { color: inherit; }
img { display: block; max-width: 100%; }
::selection { background: var(--gold); color: #07101b; }

.skip-link {
  position: fixed; top: -4rem; left: 1rem; z-index: 200;
  padding: .75rem 1rem; border-radius: 10px; background: var(--gold); color: #04101c;
}
.skip-link:focus { top: 1rem; }

.page-noise {
  position: fixed; inset: 0; z-index: 90; pointer-events: none; opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

.site-header {
  position: fixed; top: 0; inset-inline: 0; z-index: 100;
  transition: background .3s ease, border-color .3s ease, transform .3s ease;
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(3,9,18,.86); border-color: var(--white-line); backdrop-filter: blur(20px);
}
.scroll-progress {
  position: absolute; inset-inline-start: 0; bottom: -1px; width: 100%; height: 1px; transform: scaleX(0); transform-origin: left;
  background: linear-gradient(90deg,var(--cyan),var(--gold-light),var(--gold)); box-shadow: 0 0 12px rgba(216,168,71,.55);
}
[dir="rtl"] .scroll-progress { transform-origin: right; }
.nav-shell {
  width: min(calc(100% - 40px), var(--max)); min-height: 82px; margin: auto;
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
}
.brand { display: flex; align-items: center; flex: 0 0 auto; }
.brand img { width: 190px; height: auto; filter: drop-shadow(0 8px 28px rgba(0,0,0,.28)); }
.nav-links { display: flex; align-items: center; gap: clamp(1rem, 2.4vw, 2rem); }
.nav-links > a {
  position: relative; color: #c8d2da; font-size: .82rem; font-weight: 700;
  letter-spacing: .09em; text-transform: uppercase; transition: color .2s ease;
}
.nav-links > a::after {
  content: ""; position: absolute; inset-inline: 0; bottom: -.55rem; height: 1px;
  background: linear-gradient(90deg, var(--gold), var(--cyan)); transform: scaleX(0); transition: transform .25s ease;
}
.nav-links > a:hover, .nav-links > a[aria-current="page"] { color: #fff; }
.nav-links > a:hover::after, .nav-links > a[aria-current="page"]::after { transform: scaleX(1); }
.nav-tools { display: flex; align-items: center; gap: .65rem; }
.language-picker { position: relative; }
.language-trigger {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem; min-width: 68px; height: 44px;
  border: 1px solid rgba(255,255,255,.2); border-radius: 999px; background: rgba(3,9,18,.62);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.025); cursor: pointer;
  font-size: .71rem; font-weight: 900; letter-spacing: .08em; transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.language-trigger:hover, .language-picker.is-open .language-trigger {
  border-color: rgba(216,168,71,.65); background: rgba(10,23,38,.96); box-shadow: 0 0 0 4px rgba(216,168,71,.06);
}
.language-chevron { color: var(--gold); line-height: 1; transition: transform .2s ease; }
.language-picker.is-open .language-chevron { transform: rotate(180deg); }
.language-menu {
  position: absolute; top: calc(100% + 12px); inset-inline-end: 0; width: 210px; padding: .5rem; overflow: hidden;
  border: 1px solid rgba(216,168,71,.22); border-radius: 16px;
  background: linear-gradient(145deg,rgba(10,24,39,.985),rgba(3,9,18,.985)); box-shadow: 0 24px 60px rgba(0,0,0,.5);
  backdrop-filter: blur(20px); opacity: 0; visibility: hidden; pointer-events: none; transform: translateY(-8px) scale(.98);
  transform-origin: top right; transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
}
[dir="rtl"] .language-menu { transform-origin: top left; }
.language-picker.is-open .language-menu { opacity: 1; visibility: visible; pointer-events: auto; transform: none; }
.language-option {
  display: flex; width: 100%; align-items: center; justify-content: space-between; padding: .68rem .75rem;
  border: 0; border-radius: 10px; color: #aebdc9; background: transparent; cursor: pointer; text-align: start;
  font-size: .82rem; transition: color .16s ease, background .16s ease, transform .16s ease;
}
.language-option small { color: #617687; font-size: .61rem; font-weight: 900; letter-spacing: .12em; }
.language-option:hover, .language-option:focus-visible { color: #fff; background: rgba(255,255,255,.055); outline: none; transform: translateX(2px); }
[dir="rtl"] .language-option:hover, [dir="rtl"] .language-option:focus-visible { transform: translateX(-2px); }
.language-option.is-active { color: var(--gold-light); background: linear-gradient(90deg,rgba(216,168,71,.12),rgba(6,169,196,.06)); }
.language-option.is-active::before { content: ""; width: 5px; height: 5px; flex: 0 0 auto; margin-inline-end: .55rem; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 10px var(--cyan); }
.language-option.is-active span { margin-inline-end: auto; }
.menu-toggle {
  display: none; width: 44px; height: 44px; border: 1px solid var(--white-line); border-radius: 50%;
  background: rgba(255,255,255,.04); cursor: pointer; place-items: center;
}
.menu-toggle span, .menu-toggle span::before, .menu-toggle span::after {
  display: block; width: 17px; height: 1px; background: #fff; transition: .25s ease; content: "";
}
.menu-toggle span::before { transform: translateY(-5px); }
.menu-toggle span::after { transform: translateY(4px); }
.menu-open .menu-toggle span { background: transparent; }
.menu-open .menu-toggle span::before { transform: rotate(45deg); }
.menu-open .menu-toggle span::after { transform: rotate(-45deg); }

.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.section { position: relative; padding: clamp(5.5rem, 9vw, 9rem) 0; }
.section-tight { padding: clamp(3.5rem, 6vw, 6rem) 0; }
.eyebrow {
  display: inline-flex; align-items: center; gap: .75rem; margin: 0 0 1.1rem;
  color: var(--gold-light); font-size: .73rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 34px; height: 1px; background: var(--gold); }
.display-title, .section-title, .page-title {
  margin: 0; font-family: Georgia, "Times New Roman", serif; font-weight: 500; letter-spacing: -.035em; line-height: .98;
}
.display-title { max-width: 820px; font-size: clamp(3.7rem, 8.5vw, 8.3rem); }
.display-title .accent { color: var(--gold-light); }
.section-title { max-width: 820px; font-size: clamp(2.6rem, 5vw, 5rem); }
.page-title { max-width: 900px; font-size: clamp(3.4rem, 7vw, 7rem); }
.lead { max-width: 680px; margin: 1.5rem 0 0; color: #c1ccd5; font-size: clamp(1rem, 1.35vw, 1.22rem); }
.muted { color: var(--muted); }

.button-row { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2.2rem; }
.button {
  display: inline-flex; align-items: center; justify-content: center; gap: .75rem; min-height: 54px;
  padding: .85rem 1.35rem; border: 1px solid transparent; border-radius: 999px;
  font-size: .78rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase;
  transition: transform .25s ease, background .25s ease, border-color .25s ease, box-shadow .25s ease; cursor: pointer;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: #06101b; background: linear-gradient(135deg, var(--gold-light), var(--gold)); box-shadow: 0 10px 35px rgba(216,168,71,.18); }
.button-primary:hover { box-shadow: 0 14px 40px rgba(216,168,71,.3); }
.button-ghost { border-color: rgba(255,255,255,.16); background: rgba(255,255,255,.04); }
.button-ghost:hover { border-color: var(--gold); background: rgba(216,168,71,.07); }
.button-arrow { font-size: 1rem; transition: transform .25s ease; }
[dir="rtl"] .button-arrow { transform: scaleX(-1); }
.button:hover .button-arrow { transform: translateX(4px); }
[dir="rtl"] .button:hover .button-arrow { transform: translateX(-4px) scaleX(-1); }

.home-hero {
  min-height: max(760px, 100svh); display: grid; align-items: end; position: relative; overflow: hidden;
  background: #02070d;
}
.hero-media { position: absolute; inset: 0; }
.hero-media::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(90deg, rgba(2,7,13,.94) 0%, rgba(2,7,13,.75) 35%, rgba(2,7,13,.16) 74%),
              linear-gradient(0deg, #030912 0%, transparent 30%, rgba(2,7,13,.28) 100%);
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 60% center; transform: scale(1.035); animation: hero-breathe 16s ease-in-out infinite alternate; }
.hero-grid {
  position: absolute; inset: 0; z-index: 2; opacity: .18;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 100px 100px; mask-image: linear-gradient(90deg,#000,transparent 70%);
}
.strategy-hud { position: absolute; inset: 0; z-index: 2; pointer-events: none; overflow: hidden; --hud: rgba(6,169,196,.55); }
.strategy-route {
  position: absolute; height: 1px; width: clamp(130px,15vw,260px); opacity: .52;
  background: linear-gradient(90deg,transparent,var(--hud) 22%,rgba(216,168,71,.75) 50%,var(--hud) 78%,transparent);
  background-size: 220% 100%; animation: route-flow 4.5s linear infinite;
}
.route-a { right: 15%; top: 34%; transform: rotate(-22deg); }
.route-b { right: 9%; top: 52%; width: clamp(180px,21vw,360px); transform: rotate(18deg); animation-delay: -1.6s; }
.route-c { right: 27%; top: 64%; width: clamp(120px,12vw,220px); transform: rotate(-48deg); animation-delay: -2.8s; }
.strategy-node {
  position: absolute; width: 13px; height: 13px; border: 1px solid rgba(240,207,130,.72); border-radius: 50%;
  box-shadow: 0 0 18px rgba(6,169,196,.25); animation: node-drift 5s ease-in-out infinite;
}
.strategy-node::before, .strategy-node::after {
  content: ""; position: absolute; inset: 50% auto auto 50%; translate: -50% -50%; border: 1px solid rgba(6,169,196,.38); border-radius: 50%;
  width: 28px; height: 28px; animation: radar-pulse 2.8s ease-out infinite;
}
.strategy-node::after { width: 46px; height: 46px; animation-delay: .7s; }
.strategy-node i { position: absolute; inset: 3px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 12px var(--cyan); }
.node-a { right: 13%; top: 30%; }
.node-b { right: 30%; top: 47%; animation-delay: -.8s; }
.node-c { right: 9%; top: 61%; animation-delay: -2s; }
.node-d { right: 34%; top: 69%; animation-delay: -3s; }
.strategy-radar {
  position: absolute; left: var(--radar-x,76%); top: var(--radar-y,43%); width: 160px; aspect-ratio: 1; translate: -50% -50%;
  border: 1px solid rgba(6,169,196,.18); border-radius: 50%; opacity: .55; transition: left .18s ease-out, top .18s ease-out;
  background: radial-gradient(circle,rgba(6,169,196,.06),transparent 62%);
  box-shadow: 0 0 0 28px rgba(6,169,196,.025),0 0 0 56px rgba(216,168,71,.018);
}
.strategy-radar::before, .strategy-radar::after { content: ""; position: absolute; background: rgba(6,169,196,.22); }
.strategy-radar::before { width: 1px; height: 125%; left: 50%; top: -12.5%; }
.strategy-radar::after { height: 1px; width: 125%; top: 50%; left: -12.5%; }
.strategy-scan {
  position: absolute; top: 14%; bottom: 11%; width: 1px; right: 5%; opacity: .42;
  background: linear-gradient(transparent,var(--cyan),var(--gold-light),transparent); box-shadow: 0 0 24px rgba(6,169,196,.45);
  animation: sector-scan 8s ease-in-out infinite alternate;
}
.strategy-readout {
  position: absolute; right: 4%; bottom: 9%; padding: .55rem .8rem; border-inline-start: 1px solid var(--cyan);
  color: rgba(220,233,238,.64); font-size: .58rem; font-weight: 900; letter-spacing: .18em;
}
.strategy-readout b { margin-inline-start: .5rem; color: var(--gold-light); font-weight: 900; }
[dir="rtl"] .strategy-hud { transform: scaleX(-1); }
[dir="rtl"] .strategy-readout { transform: scaleX(-1); }
.command-ping {
  position: absolute; z-index: 5; width: 18px; height: 18px; translate: -50% -50%; pointer-events: none;
  border: 1px solid var(--gold-light); border-radius: 50%; box-shadow: 0 0 20px rgba(216,168,71,.4);
  animation: command-ping 1.1s cubic-bezier(.1,.7,.2,1) forwards;
}
.hero-content { position: relative; z-index: 3; padding: 11rem 0 8rem; }
.hero-content .lead { max-width: 590px; }
.hero-mark {
  position: absolute; z-index: 2; right: -8vw; top: 12%; width: min(35vw, 520px); opacity: .045;
  filter: grayscale(1) brightness(3); animation: float-mark 8s ease-in-out infinite;
}
[dir="rtl"] .hero-mark { right: auto; left: -8vw; }
.hero-status { display: inline-flex; align-items: center; gap: .6rem; margin-bottom: 1.35rem; color: #dce5eb; font-size: .72rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.status-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 0 6px rgba(6,169,196,.1), 0 0 20px var(--cyan); animation: pulse 2.5s infinite; }
.hero-scroll { position: absolute; z-index: 4; bottom: 2.25rem; right: max(20px, calc((100vw - var(--max))/2)); display: flex; align-items: center; gap: .8rem; color: #9bacb8; font-size: .65rem; font-weight: 800; letter-spacing: .17em; text-transform: uppercase; writing-mode: vertical-rl; }
[dir="rtl"] .hero-scroll { right: auto; left: max(20px, calc((100vw - var(--max))/2)); }
.hero-scroll::after { content: ""; width: 1px; height: 50px; background: linear-gradient(var(--gold),transparent); }

.stats-band { border-top: 1px solid var(--white-line); border-bottom: 1px solid var(--white-line); background: rgba(255,255,255,.018); }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.stat { padding: 2rem clamp(1rem,3vw,3rem); border-inline-end: 1px solid var(--white-line); }
.stat:last-child { border: 0; }
.stat strong { display: block; color: var(--paper); font-family: Georgia, serif; font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 500; }
.stat span { color: var(--muted); font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }

.current-project-band { border-bottom: 1px solid var(--white-line); background: linear-gradient(90deg,rgba(6,169,196,.045),rgba(216,168,71,.045)); }
.current-project-inner { min-height: 82px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: clamp(1rem,4vw,4rem); }
.current-project-label { color: var(--muted); font-size: .68rem; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; }
.current-project-inner strong { font-family: Georgia,serif; font-size: clamp(1.2rem,2.4vw,1.8rem); font-weight: 500; }
.current-project-inner strong i { padding: 0 .55rem; color: var(--gold); font-style: normal; }
.current-project-inner a { display: inline-flex; align-items: center; gap: .7rem; color: var(--gold-light); font-size: .68rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }

.split { display: grid; grid-template-columns: minmax(0,.86fr) minmax(0,1.14fr); gap: clamp(3rem,8vw,8rem); align-items: center; }
.split.reverse { grid-template-columns: minmax(0,1.12fr) minmax(0,.88fr); }
.body-copy p { color: #aebcc7; font-size: 1.04rem; }
.body-copy p:first-child { margin-top: 0; color: #e0e7eb; font-size: 1.25rem; }
.quote-line { margin-top: 2rem; padding-inline-start: 1.4rem; border-inline-start: 2px solid var(--gold); color: var(--gold-light); font-family: Georgia, serif; font-size: 1.3rem; }

.feature-visual {
  position: relative; min-height: 500px; border: 1px solid var(--white-line); border-radius: var(--radius); overflow: hidden;
  background: #07111c; box-shadow: 0 40px 100px rgba(0,0,0,.25);
}
.feature-visual img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.feature-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg,rgba(3,9,18,.86),transparent 60%); }
.feature-caption { position: absolute; z-index: 2; bottom: 0; inset-inline: 0; padding: 2rem; display: flex; justify-content: space-between; align-items: end; gap: 1rem; }
.feature-caption strong { display: block; font-family: Georgia, serif; font-size: 2rem; font-weight: 500; }
.feature-caption span { color: #b8c2ca; font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; }
.seal { display: grid; place-items: center; width: 84px; aspect-ratio: 1; border: 1px solid rgba(216,168,71,.45); border-radius: 50%; color: var(--gold-light); font-family: Georgia, serif; font-size: .8rem; text-align: center; transform: rotate(-8deg); }

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 3rem; }
.card {
  position: relative; min-height: 280px; padding: 2rem; border: 1px solid var(--white-line); border-radius: 20px;
  background: linear-gradient(145deg,rgba(255,255,255,.045),rgba(255,255,255,.012)); overflow: hidden;
  transition: border-color .3s ease, transform .3s ease, background .3s ease;
}
.card::before { content: ""; position: absolute; width: 180px; height: 180px; right: -100px; top: -100px; border: 1px solid var(--line); border-radius: 50%; transition: .4s ease; }
.card:hover { transform: translateY(-6px); border-color: rgba(216,168,71,.4); background: linear-gradient(145deg,rgba(216,168,71,.08),rgba(255,255,255,.015)); }
.card:hover::before { transform: scale(1.3); }
.card-number { display: block; margin-bottom: 5rem; color: var(--gold); font-size: .72rem; font-weight: 800; letter-spacing: .15em; }
.card h3 { margin: 0 0 .65rem; font-family: Georgia, serif; font-size: 1.65rem; font-weight: 500; }
.card p { margin: 0; color: var(--muted); }
.values-grid { grid-template-columns: repeat(4,1fr); }
.value-card { min-height: 310px; }
.value-icon { display: grid; place-items: center; width: 56px; height: 56px; margin-bottom: 4rem; border: 1px solid rgba(216,168,71,.34); border-radius: 50%; color: var(--gold-light); background: rgba(216,168,71,.055); font-size: 1.4rem; }
.team-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1rem; }
.team-card { min-height: 230px; padding: 2rem; border: 1px solid var(--white-line); border-radius: 20px; background: linear-gradient(145deg,rgba(255,255,255,.045),rgba(255,255,255,.012)); }
.team-card > span { color: var(--cyan); font-size: .7rem; font-weight: 900; letter-spacing: .16em; }
.team-card p { margin: 4.5rem 0 .3rem; color: var(--gold-light); font-size: .68rem; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.team-card h3 { margin: 0; font-family: Georgia,serif; font-size: 1.45rem; font-weight: 500; line-height: 1.15; }

.game-feature { position: relative; margin-top: 3rem; border: 1px solid var(--white-line); border-radius: 30px; overflow: hidden; min-height: 620px; display: flex; align-items: end; }
.game-feature-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.game-feature::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg,rgba(3,9,18,.96),rgba(3,9,18,.16) 70%), linear-gradient(90deg,rgba(3,9,18,.45),transparent); }
.game-info { position: relative; z-index: 2; width: 100%; padding: clamp(2rem,5vw,4.5rem); display: flex; justify-content: space-between; gap: 2rem; align-items: end; }
.game-info h2 { margin: .3rem 0; font-family: Georgia,serif; font-size: clamp(2.8rem,6vw,6.5rem); font-weight: 500; line-height: 1; }
.game-info p { max-width: 580px; color: #c1ccd5; }
.platforms { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.25rem; }
.chip { padding: .48rem .75rem; border: 1px solid var(--white-line); border-radius: 999px; color: #c3ced6; font-size: .68rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.coming-emblem { flex: 0 0 auto; display: grid; place-items: center; width: 150px; aspect-ratio: 1; border: 1px solid rgba(216,168,71,.5); border-radius: 50%; color: var(--gold-light); text-align: center; font-size: .72rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; background: rgba(3,9,18,.55); backdrop-filter: blur(12px); }

.game-showcase-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-top: 3rem; }
.studio-game-card {
  --game-accent: var(--cyan); position: relative; min-height: 540px; overflow: hidden; isolation: isolate;
  border: 1px solid var(--white-line); border-radius: 28px; background: #07111c; box-shadow: 0 35px 90px rgba(0,0,0,.28);
  transition: transform .4s cubic-bezier(.2,.7,.2,1), border-color .3s ease, box-shadow .3s ease;
}
.studio-game-card.iron { --game-accent: var(--gold); }
.studio-game-card:hover { transform: translateY(-8px); border-color: color-mix(in srgb,var(--game-accent) 55%,transparent); box-shadow: 0 45px 100px rgba(0,0,0,.4); }
.studio-game-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s cubic-bezier(.2,.7,.2,1), filter .5s ease; }
.studio-game-card.navora .studio-game-bg { object-position: center; }
.studio-game-card.iron .studio-game-bg { object-position: center; }
.studio-game-card:hover .studio-game-bg { transform: scale(1.045); filter: saturate(1.08); }
.studio-game-card::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(0deg,rgba(3,9,18,.98) 0%,rgba(3,9,18,.78) 39%,rgba(3,9,18,.12) 76%),linear-gradient(115deg,rgba(3,9,18,.4),transparent 65%);
}
.studio-game-card::after {
  content: ""; position: absolute; z-index: 2; left: -35%; top: -10%; width: 22%; height: 120%; rotate: 13deg;
  background: linear-gradient(90deg,transparent,rgba(255,255,255,.13),transparent); opacity: 0; transition: left .8s ease, opacity .25s ease;
}
.studio-game-card:hover::after { left: 120%; opacity: .6; }
.game-logo {
  position: absolute; z-index: 3; top: 2rem; left: 2rem; width: 112px; height: 112px; padding: .55rem; object-fit: contain;
  border: 1px solid rgba(255,255,255,.11); border-radius: 24px; background: rgba(3,9,18,.56); backdrop-filter: blur(14px);
  filter: drop-shadow(0 16px 34px rgba(0,0,0,.5)); transition: transform .45s ease;
}
[dir="rtl"] .game-logo { left: auto; right: 2rem; }
.studio-game-card:hover .game-logo { transform: translateY(-4px) scale(1.035); }
.game-store-status {
  position: absolute; z-index: 3; top: 2rem; right: 2rem; max-width: 210px; padding: .58rem .78rem;
  border: 1px solid color-mix(in srgb,var(--game-accent) 42%,transparent); border-radius: 999px;
  background: rgba(3,9,18,.68); backdrop-filter: blur(12px); color: #e6eef2; font-size: .62rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; text-align: center;
}
[dir="rtl"] .game-store-status { right: auto; left: 2rem; }
.game-store-status::before { content: ""; display: inline-block; width: 6px; height: 6px; margin-inline-end: .45rem; border-radius: 50%; background: var(--game-accent); box-shadow: 0 0 12px var(--game-accent); animation: pulse 2.2s infinite; }
.studio-game-content { position: absolute; inset-inline: 0; bottom: 0; z-index: 3; padding: clamp(1.6rem,4vw,2.5rem); }
.studio-game-content .eyebrow { color: color-mix(in srgb,var(--game-accent) 65%,white); }
.studio-game-content h2 { margin: .15rem 0 .8rem; font-family: Georgia,serif; font-size: clamp(2.5rem,4.5vw,4.7rem); font-weight: 500; line-height: .95; }
.studio-game-content p { margin: 0; max-width: 600px; color: #b7c4cd; }
.game-features { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.2rem; }
.game-feature-pill { padding: .42rem .66rem; border: 1px solid rgba(255,255,255,.13); border-radius: 999px; background: rgba(3,9,18,.38); color: #d5dee4; font-size: .64rem; font-weight: 800; letter-spacing: .06em; }
.game-showcase-grid.compact { grid-template-columns: repeat(2,minmax(0,1fr)); }
.game-showcase-grid.compact .studio-game-card { min-height: 430px; }
.game-showcase-grid.compact .game-logo { width: 92px; height: 92px; border-radius: 20px; }
.game-showcase-grid.compact .studio-game-content h2 { font-size: clamp(2.3rem,4vw,3.8rem); }

.page-hero { position: relative; min-height: 560px; padding: 11rem 0 6rem; display: flex; align-items: end; overflow: hidden; border-bottom: 1px solid var(--white-line); }
.page-hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 75% 30%,rgba(6,169,196,.1),transparent 28rem), linear-gradient(135deg,#071423,#030912 65%); }
.page-hero::after { content: ""; position: absolute; inset: 0; opacity: .24; background-image: linear-gradient(30deg,transparent 49.8%,var(--line) 50%,transparent 50.2%); background-size: 80px 80px; mask-image: linear-gradient(90deg,transparent,#000); }
.page-hero .container { position: relative; z-index: 2; }
.page-hero .hero-mark { right: 2vw; top: 18%; opacity: .08; width: min(30vw,420px); }
[dir="rtl"] .page-hero .hero-mark { right: auto; left: 2vw; }

.info-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1rem; margin-top: 2.5rem; }
.info-box { padding: 1.7rem; border: 1px solid var(--white-line); border-radius: 18px; background: rgba(255,255,255,.025); }
.info-box small { display: block; color: var(--gold); font-size: .67rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.info-box strong { display: block; margin-top: .4rem; font-family: Georgia,serif; font-size: 1.35rem; font-weight: 500; }

.timeline { margin-top: 3rem; border-top: 1px solid var(--white-line); }
.timeline-item { display: grid; grid-template-columns: 120px 1fr; gap: 2rem; padding: 2rem 0; border-bottom: 1px solid var(--white-line); }
.timeline-item strong { color: var(--gold-light); font-family: Georgia,serif; font-size: 1.6rem; font-weight: 500; }
.timeline-item h3 { margin: 0 0 .3rem; font-size: 1rem; }
.timeline-item p { margin: 0; color: var(--muted); }

.support-layout, .legal-layout, .contact-layout { display: grid; grid-template-columns: minmax(0,.7fr) minmax(0,1.3fr); gap: clamp(3rem,8vw,8rem); align-items: start; }
.sticky-side { position: sticky; top: 120px; }
.contact-card { padding: 1.5rem; border: 1px solid var(--white-line); border-radius: 18px; background: rgba(255,255,255,.025); margin-top: 1.5rem; }
.contact-card a { color: var(--gold-light); word-break: break-word; }
.contact-card p { margin: .4rem 0 0; color: var(--muted); }

.faq { border-top: 1px solid var(--white-line); }
.faq details { border-bottom: 1px solid var(--white-line); }
.faq summary { list-style: none; cursor: pointer; padding: 1.35rem 3rem 1.35rem 0; position: relative; font-weight: 700; }
[dir="rtl"] .faq summary { padding: 1.35rem 0 1.35rem 3rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: .2rem; top: 1.1rem; color: var(--gold); font-size: 1.4rem; font-weight: 300; transition: transform .2s ease; }
[dir="rtl"] .faq summary::after { right: auto; left: .2rem; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { margin: 0; padding: 0 2.5rem 1.5rem 0; color: var(--muted); }
[dir="rtl"] .faq details p { padding: 0 0 1.5rem 2.5rem; }

.form { display: grid; gap: 1rem; }
.field-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1rem; }
.field label { display: block; margin-bottom: .45rem; color: #c6d0d7; font-size: .72rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.field input, .field textarea, .field select {
  width: 100%; border: 1px solid var(--white-line); border-radius: 12px; padding: .9rem 1rem;
  color: #edf4f7; background: rgba(255,255,255,.035); outline: none; transition: border-color .2s ease, box-shadow .2s ease;
}
.field textarea { min-height: 150px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(216,168,71,.08); }
.field option { background: #0a1726; }
.field small { display: block; margin-top: .45rem; color: var(--muted); font-size: .72rem; }
.field input[type="file"] { padding: .68rem; color: var(--muted); }
.field input[type="file"]::file-selector-button { margin-inline-end: .8rem; padding: .55rem .75rem; border: 0; border-radius: 8px; color: #06101b; background: var(--gold-light); font-weight: 800; cursor: pointer; }
.form-note { color: var(--muted); font-size: .8rem; }
.form-status { min-height: 1.3rem; color: var(--gold-light); font-size: .84rem; }

.legal-nav { display: grid; gap: .45rem; margin-top: 1.5rem; }
.legal-nav a { color: var(--muted); font-size: .85rem; }
.legal-nav a:hover { color: var(--gold-light); }
.legal-content { max-width: 800px; }
.legal-section { scroll-margin-top: 120px; padding: 0 0 2.5rem; margin-bottom: 2.5rem; border-bottom: 1px solid var(--white-line); }
.legal-section:last-child { border: 0; }
.legal-section h2 { margin: 0 0 1rem; font-family: Georgia,serif; font-size: 1.8rem; font-weight: 500; }
.legal-section p, .legal-section li { color: #aebcc7; }
.legal-section ul { padding-inline-start: 1.25rem; }
.legal-date { display: inline-block; margin-top: 1.2rem; color: var(--gold-light); font-size: .76rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.notice { padding: 1.2rem 1.35rem; border: 1px solid rgba(6,169,196,.22); border-radius: 14px; background: rgba(6,169,196,.055); color: #bedce2; }

.cta-panel {
  position: relative; padding: clamp(3rem,7vw,6rem); border: 1px solid var(--line); border-radius: 30px; overflow: hidden;
  background: radial-gradient(circle at 85% 10%,rgba(6,169,196,.12),transparent 22rem), linear-gradient(135deg,rgba(216,168,71,.08),rgba(255,255,255,.015));
}
.cta-panel::after { content: ""; position: absolute; width: 320px; aspect-ratio: 1; right: -120px; bottom: -180px; border: 1px solid rgba(216,168,71,.18); border-radius: 50%; box-shadow: 0 0 0 45px rgba(216,168,71,.025),0 0 0 90px rgba(216,168,71,.018); }
.cta-panel > * { position: relative; z-index: 2; }

.career-status { display: grid; grid-template-columns: minmax(0,.75fr) minmax(0,1.25fr); gap: clamp(2rem,7vw,7rem); align-items: center; padding: clamp(2.5rem,6vw,5rem); border: 1px solid var(--line); border-radius: 28px; background: radial-gradient(circle at 10% 20%,rgba(6,169,196,.1),transparent 24rem),rgba(255,255,255,.018); }
.status-seal { display: grid; place-items: center; width: min(230px,70vw); aspect-ratio: 1; margin: auto; border: 1px solid rgba(216,168,71,.4); border-radius: 50%; color: var(--gold-light); text-align: center; text-transform: uppercase; letter-spacing: .16em; box-shadow: 0 0 0 30px rgba(216,168,71,.025),0 0 0 60px rgba(6,169,196,.015); }
.status-seal span { max-width: 130px; font-size: .78rem; font-weight: 900; }
.press-facts { display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; margin-top: 2.5rem; }
.press-asset-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 1.2rem; margin-top: 2.5rem; }
.press-asset { display: grid; grid-template-columns: 180px 1fr; min-height: 220px; overflow: hidden; border: 1px solid var(--white-line); border-radius: 22px; background: rgba(255,255,255,.022); }
.press-asset-preview { display: grid; place-items: center; min-height: 220px; padding: 1.5rem; background: linear-gradient(145deg,#0d1e2f,#050b12); }
.press-asset-preview img { width: 100%; max-height: 160px; object-fit: contain; }
.press-asset-preview.keyart { padding: 0; }
.press-asset-preview.keyart img { width: 100%; height: 100%; max-height: none; object-fit: cover; }
.press-asset-copy { align-self: center; padding: 1.5rem; }
.press-asset-copy h3 { margin: 0 0 .45rem; font-family: Georgia,serif; font-size: 1.5rem; font-weight: 500; }
.press-asset-copy p { margin: 0 0 1.2rem; color: var(--muted); font-size: .86rem; }
.download-link { display: inline-flex; align-items: center; gap: .5rem; color: var(--gold-light); font-size: .68rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }

.site-footer { border-top: 1px solid var(--white-line); background: #02070d; }
.footer-main { display: grid; grid-template-columns: 1.4fr .6fr .6fr; gap: 3rem; padding: 4.5rem 0 3rem; }
.footer-lockup { display: inline-flex; align-items: center; gap: .9rem; width: fit-content; margin-bottom: 1.2rem; }
.footer-lockup img { width: 64px; height: 64px; object-fit: contain; filter: drop-shadow(0 12px 28px rgba(0,0,0,.35)); }
.footer-lockup span { display: inline-flex; align-items: baseline; line-height: 1; letter-spacing: -.035em; text-transform: uppercase; }
.footer-lockup strong, .footer-lockup em { font-family: "Segoe UI",Arial,sans-serif; font-size: 1.55rem; font-style: normal; font-weight: 800; }
.footer-lockup strong { color: #dce7ee; }
.footer-lockup em { color: var(--gold-light); }
.footer-brand p { max-width: 420px; color: var(--muted); }
.footer-col h3 { margin: 0 0 1rem; color: #fff; font-size: .7rem; letter-spacing: .15em; text-transform: uppercase; }
.footer-col a, .footer-col span { display: block; width: fit-content; margin: .55rem 0; color: var(--muted); font-size: .88rem; }
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; padding: 1.25rem 0; border-top: 1px solid var(--white-line); color: #718391; font-size: .74rem; }
.footer-origin { display: block; margin-top: .25rem; color: #a6b5c0; }
.social-row { display: flex; gap: 1rem; }
.social-row span { color: #718391; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .75s ease, transform .75s cubic-bezier(.2,.7,.2,1); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }

@keyframes hero-breathe { to { transform: scale(1.08) translateX(-.6%); } }
@keyframes float-mark { 50% { transform: translateY(18px) rotate(2deg); } }
@keyframes pulse { 50% { opacity: .55; box-shadow: 0 0 0 10px rgba(6,169,196,0),0 0 25px var(--cyan); } }
@keyframes route-flow { to { background-position: -220% 0; } }
@keyframes radar-pulse { 0% { scale: .55; opacity: .9; } 80%,100% { scale: 1.4; opacity: 0; } }
@keyframes node-drift { 50% { translate: 0 -5px; } }
@keyframes sector-scan { from { right: 5%; } to { right: 45%; } }
@keyframes command-ping { 0% { scale: .35; opacity: 1; } 65% { opacity: .8; } 100% { scale: 7; opacity: 0; } }

@media (max-width: 980px) {
  .nav-links {
    position: fixed; inset: 0; z-index: -1; padding: 8rem 2rem 3rem; background: rgba(3,9,18,.97); backdrop-filter: blur(20px);
    flex-direction: column; align-items: flex-start; justify-content: center; transform: translateY(-100%); transition: transform .35s cubic-bezier(.2,.7,.2,1);
  }
  .menu-open .nav-links { transform: translateY(0); }
  .nav-links > a { font-family: Georgia,serif; font-size: clamp(2rem,8vw,4rem); font-weight: 500; letter-spacing: -.02em; text-transform: none; }
  .menu-toggle { display: grid; }
  .split, .split.reverse, .support-layout, .legal-layout, .contact-layout { grid-template-columns: 1fr; }
  .sticky-side { position: static; }
  .cards, .values-grid { grid-template-columns: 1fr; }
  .card { min-height: 230px; }
  .card-number { margin-bottom: 3rem; }
  .footer-main { grid-template-columns: 1.2fr .8fr .8fr; }
  .game-showcase-grid, .game-showcase-grid.compact { grid-template-columns: 1fr; }
  .career-status, .press-asset { grid-template-columns: 1fr; }
  .press-facts { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 700px) {
  .container, .nav-shell { width: min(calc(100% - 28px), var(--max)); }
  .nav-shell { min-height: 70px; }
  .brand img { width: 145px; }
  .home-hero { min-height: 740px; }
  .hero-content { padding: 9rem 0 7rem; }
  .hero-media::before { background: linear-gradient(90deg,rgba(2,7,13,.87),rgba(2,7,13,.24)),linear-gradient(0deg,#030912,transparent 56%); }
  .hero-media img { object-position: 63% center; }
  .display-title { font-size: clamp(3.25rem,17vw,5.5rem); }
  .hero-scroll { display: none; }
  .strategy-readout, .route-c, .node-d { display: none; }
  .strategy-radar { width: 110px; opacity: .35; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat { border-inline-end: 0; border-bottom: 1px solid var(--white-line); }
  .feature-visual { min-height: 430px; }
  .feature-caption { align-items: start; flex-direction: column; }
  .game-feature { min-height: 650px; }
  .game-info { flex-direction: column; align-items: start; }
  .coming-emblem { width: 110px; }
  .studio-game-card, .game-showcase-grid.compact .studio-game-card { min-height: 560px; }
  .game-logo, .game-showcase-grid.compact .game-logo { top: 1.25rem; left: 1.25rem; width: 96px; height: 96px; }
  [dir="rtl"] .game-logo { left: auto; right: 1.25rem; }
  .game-store-status { top: 1.25rem; right: 1.25rem; max-width: 165px; font-size: .54rem; }
  [dir="rtl"] .game-store-status { right: auto; left: 1.25rem; }
  .info-grid, .field-grid { grid-template-columns: 1fr; }
  .current-project-inner { grid-template-columns: 1fr; gap: .35rem; padding-block: 1.25rem; }
  .team-grid, .press-asset-grid, .press-facts { grid-template-columns: 1fr; }
  .timeline-item { grid-template-columns: 1fr; gap: .5rem; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1/-1; }
  .footer-bottom { flex-direction: column; }
  .page-hero { min-height: 500px; padding-top: 9rem; }
}

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