:root {
  --bg: #090a0d;
  --bg-soft: #101217;
  --surface: #151820;
  --surface-2: #1a1d25;
  --text: #f2f1ed;
  --muted: #979aa4;
  --line: rgba(255,255,255,.11);
  --accent: #b9ff3d;
  --accent-2: #8b7cff;
  --container: 1240px;
  --ease: cubic-bezier(.2,.7,.2,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
::selection { background: var(--accent); color: #090a0d; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  border-bottom: 1px solid transparent;
  transition: background .45s var(--ease), border-color .45s var(--ease), backdrop-filter .45s var(--ease);
}
.site-header.scrolled {
  background: rgba(8,9,12,.86);
  border-color: var(--line);
  backdrop-filter: blur(18px);
}
.navbar { min-height: 78px; padding: 0; }
.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  line-height: .85;
  letter-spacing: .09em;
  font-weight: 700;
}
.brand-mark > span:last-child { display: flex; flex-direction: column; }
.brand-mark > span:last-child span { font-weight: 500; opacity: .58; }
.brand-symbol { width: 27px; height: 23px; position: relative; display: inline-block; }
.brand-symbol i {
  position: absolute;
  width: 8px; height: 21px;
  border: 2px solid currentColor;
  border-radius: 2px;
  transform: skewY(-25deg);
}
.brand-symbol i:nth-child(1) { left: 0; top: 2px; }
.brand-symbol i:nth-child(2) { left: 9px; top: 0; }
.brand-symbol i:nth-child(3) { left: 18px; top: 2px; }
.navbar-nav .nav-link {
  color: rgba(255,255,255,.72);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: color .25s ease;
}
.navbar-nav .nav-link:hover { color: #fff; }
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid var(--line);
  padding: 10px 15px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 700;
  transition: .3s var(--ease);
}
.nav-cta:hover { background: var(--accent); color: #090a0d; border-color: var(--accent); }
.navbar-toggler-icon { width: 1.2em; height: 1.2em; }

.hero {
  min-height: 100svh;
  position: relative;
  display: flex;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
  background: #08090c;
}
.hero-backdrop {
  position: absolute; inset: 0; z-index: -3;
  background:
    radial-gradient(circle at 70% 46%, rgba(139,124,255,.32), transparent 24%),
    radial-gradient(circle at 77% 32%, rgba(57,231,211,.15), transparent 17%),
    linear-gradient(90deg, #07080b 0%, rgba(7,8,11,.9) 31%, rgba(7,8,11,.25) 63%, rgba(7,8,11,.12) 100%),
    linear-gradient(135deg, #11152b 0%, #08090d 52%, #171123 100%);
}
.hero-backdrop::after {
  content: "";
  position: absolute;
  width: 44vw; height: 78vh;
  right: 4vw; top: 10%;
  border-radius: 50% 45% 50% 40%;
  background:
    radial-gradient(circle at 47% 28%, rgba(255,255,255,.34), transparent 1.5%),
    radial-gradient(circle at 55% 37%, rgba(63,243,213,.55), transparent 19%),
    radial-gradient(circle at 55% 58%, rgba(139,124,255,.5), transparent 27%),
    linear-gradient(145deg, rgba(28,40,84,.5), rgba(9,10,15,.05));
  filter: blur(.2px);
  box-shadow: 0 0 100px rgba(100,80,255,.12);
  transform: rotate(-8deg);
}
.hero-grid {
  position: absolute; inset: 0; z-index: -2; opacity: .24;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(90deg, #000 0%, transparent 80%);
}
.hero-content { padding-top: 70px; }
.eyebrow {
  display: flex; align-items: center; gap: 10px;
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.eyebrow span:first-child {
  width: 23px; height: 1px; background: var(--accent); display: inline-block;
}
.hero h1, h2, .feature-info h3 {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -.025em;
}
.hero h1 {
  margin: 0;
  font-size: clamp(58px, 7.1vw, 112px);
  line-height: .83;
  max-width: 850px;
}
em { color: var(--accent); font-style: normal; }
.hero-copy {
  max-width: 480px;
  color: #b8bbc4;
  line-height: 1.75;
  font-size: 14px;
  margin: 27px 0 31px;
}
.hero-actions { display: flex; align-items: center; gap: 27px; }
.btn-primary-custom {
  display: inline-flex;
  align-items: center;
  gap: 25px;
  background: var(--accent);
  color: #0a0b0d;
  padding: 14px 17px 14px 19px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  border: 1px solid var(--accent);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.btn-primary-custom:hover { color: #0a0b0d; transform: translateY(-3px); box-shadow: 0 10px 30px rgba(185,255,61,.18); }
.btn-primary-custom span { font-size: 15px; }
.text-link {
  display: inline-flex; gap: 10px; align-items: center;
  color: #fff; font-size: 10px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
}
.text-link span { color: var(--accent); transition: transform .25s ease; }
.text-link:hover span { transform: translateX(5px); }
.hero-meta {
  position: absolute; left: 32px; bottom: 26px; right: 32px;
  display: flex; justify-content: space-between;
  color: rgba(255,255,255,.35); font-size: 8px; letter-spacing: .18em; text-transform: uppercase;
}
.scroll-cue {
  position: absolute; right: 32px; bottom: 25px;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: rgba(255,255,255,.55);
  font-size: 8px; text-transform: uppercase; letter-spacing: .17em;
}
.scroll-cue i { display:block; width: 1px; height: 42px; background: linear-gradient(var(--accent), transparent); }

.ticker {
  background: var(--accent);
  color: #090a0d;
  overflow: hidden;
  white-space: nowrap;
  border-top: 1px solid #090a0d;
  border-bottom: 1px solid #090a0d;
}
.ticker-track {
  width: max-content;
  display: flex; align-items: center;
  padding: 12px 0;
  animation: ticker 28s linear infinite;
}
.ticker-group { display:flex; align-items:center; gap:28px; flex:none; padding-right:28px; }
.ticker-track span { font-family: "Barlow Condensed"; font-size: 22px; font-weight: 700; letter-spacing: .04em; }
.ticker-track b { font-size: 13px; font-weight: 400; }
@keyframes ticker { to { transform: translateX(-50%); } }

.section-dark { background: var(--bg-soft); }
.section-black { background: var(--bg); }
.studio-section { padding: 120px 0 135px; position: relative; overflow: hidden; }
.section-noise {
  position: absolute; inset: 0; opacity: .09;
  background-image: radial-gradient(rgba(255,255,255,.55) .6px, transparent .7px);
  background-size: 9px 9px;
  mask-image: linear-gradient(180deg, transparent, #000 35%, transparent);
}
h2 {
  font-size: clamp(52px, 6vw, 88px);
  line-height: .84;
  margin: 0 0 27px;
}
.section-copy { color: #a9acb6; line-height: 1.8; max-width: 540px; font-size: 13px; }
.section-copy.muted { color: #70737c; margin-top: -7px; }
.btn-outline-custom {
  display: inline-flex; align-items: center; gap: 24px;
  border: 1px solid var(--line);
  padding: 13px 16px;
  margin-top: 20px;
  text-transform: uppercase; font-size: 9px; font-weight: 700; letter-spacing: .13em;
  transition: .3s var(--ease);
}
.btn-outline-custom:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }

.world-art {
  aspect-ratio: 1.13;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 37%, rgba(191,255,55,.28), transparent 16%),
    radial-gradient(circle at 50% 50%, rgba(90,67,211,.42), transparent 38%),
    linear-gradient(135deg, #161a28, #08090d 72%);
  border: 1px solid var(--line);
}
.world-art::before, .world-art::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 44%, rgba(255,255,255,.05) 45%, transparent 46%);
}
.orb { position:absolute; border-radius:50%; filter:blur(1px); }
.orb-a { width: 37%; aspect-ratio:1; left: 31%; top: 26%; border: 1px solid rgba(185,255,61,.55); box-shadow: 0 0 50px rgba(185,255,61,.18), inset 0 0 35px rgba(185,255,61,.08); }
.orb-b { width: 15%; aspect-ratio:1; left: 13%; top: 58%; background: rgba(139,124,255,.3); filter: blur(20px); }
.art-ridge { position:absolute; width: 120%; height: 50%; left:-10%; bottom:-11%; background: linear-gradient(160deg,#151a26,#050609); clip-path: polygon(0 65%,16% 49%,30% 65%,47% 26%,63% 58%,76% 39%,100% 67%,100% 100%,0 100%); border-top: 1px solid rgba(185,255,61,.25); }
.art-ring { position:absolute; width: 64%; height: 64%; left:18%; top:18%; border: 1px solid rgba(255,255,255,.1); border-radius:50%; }
.art-label { position:absolute; left:18px; bottom:17px; font-size:8px; letter-spacing:.17em; color:rgba(255,255,255,.42); }

.platform-strip { background: #0d0e12; border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
.platform-grid { display:grid; grid-template-columns:repeat(6,1fr); max-width:1500px; margin:auto; }
.platform-grid div {
  padding: 25px 10px; text-align:center; color:rgba(255,255,255,.45);
  font-size:11px; font-weight:800; letter-spacing:.1em;
  border-right:1px solid var(--line);
}
.platform-grid div:last-child { border-right:0; }
.platform-grid-icons { grid-template-columns:repeat(4,1fr); max-width:1240px; }
.platform-grid-icons a {
  min-height:142px; display:grid; place-items:center;
  color:rgba(255,255,255,.56); border-right:1px solid var(--line);
  transition:background .3s ease, color .3s ease;
}
.platform-grid-icons a:last-child { border-right:0; }
.platform-grid-icons :is(i, .platform-svg) { width:48px; height:48px; font-size:48px; line-height:1; transition:transform .3s var(--ease); }
.platform-grid-icons a:hover { background:#171a20; color:var(--accent); }
.platform-grid-icons a:hover :is(i, .platform-svg) { transform:scale(1.12); }

.feature-game { padding: 120px 0; }
.section-heading-row { display:flex; align-items:flex-end; justify-content:space-between; gap:30px; margin-bottom:45px; }
.section-heading-row .eyebrow { margin-bottom:16px; }
.section-index { color:#5d6068; font-size:9px; letter-spacing:.18em; padding-bottom:7px; }
.feature-card {
  display:grid; grid-template-columns: 1.45fr .75fr;
  min-height: 560px; border:1px solid var(--line); overflow:hidden;
}
.feature-visual {
  position:relative; min-height:460px; overflow:hidden;
  background:linear-gradient(180deg,#15223c 0%,#10151f 50%,#07090d 100%);
}
.feature-sky { position:absolute; inset:0; background:radial-gradient(circle at 69% 28%,rgba(185,255,61,.24),transparent 10%), linear-gradient(180deg,transparent 40%,rgba(0,0,0,.55)); }
.feature-moon { position:absolute; width:100px; height:100px; right:15%; top:14%; border-radius:50%; background:rgba(232,244,221,.88); box-shadow:0 0 70px rgba(200,255,190,.16); }
.feature-mountain { position:absolute; bottom:-1px; width:115%; left:-7%; clip-path:polygon(0 78%,13% 61%,25% 72%,39% 35%,52% 66%,67% 46%,82% 68%,100% 51%,100% 100%,0 100%); }
.feature-mountain-back { height:54%; background:#182129; }
.feature-mountain-front { height:40%; background:#090c10; filter:drop-shadow(0 -8px 12px rgba(0,0,0,.4)); }
.feature-station {
  position:absolute; left:28%; bottom:26%; width:34%; height:17%;
  border:1px solid rgba(185,255,61,.4); background:rgba(10,13,15,.72);
  transform:skewX(-10deg); box-shadow:0 0 50px rgba(185,255,61,.07);
}
.feature-station::before { content:""; position:absolute; width:75%; height:1px; background:rgba(185,255,61,.5); top:35%; left:10%; box-shadow:0 17px 0 rgba(185,255,61,.2); }
.feature-station span { position:absolute; width:4px; height:4px; border-radius:50%; background:var(--accent); top:10px; }
.feature-station span:nth-child(1){left:15%}.feature-station span:nth-child(2){left:50%}.feature-station span:nth-child(3){left:83%}
.feature-caption { position:absolute; left:20px; bottom:17px; font-size:8px; letter-spacing:.17em; color:rgba(255,255,255,.45); }
.feature-info { padding: 55px 46px; display:flex; flex-direction:column; justify-content:center; background:#12141a; }
.game-kicker { color:var(--accent); font-size:9px; font-weight:700; letter-spacing:.16em; text-transform:uppercase; }
.feature-info h3 { font-size:clamp(62px,7vw,100px); line-height:.78; margin:13px 0 26px; }
.feature-info > p:not(.game-kicker) { color:#9498a2; line-height:1.75; font-size:12px; }
.feature-tags { display:flex; flex-wrap:wrap; gap:7px; margin:18px 0 30px; }
.feature-tags span { border:1px solid var(--line); padding:7px 9px; color:#8e919a; font-size:8px; text-transform:uppercase; letter-spacing:.1em; }
.feature-info .btn-primary-custom { align-self:flex-start; }

.news { padding:120px 0 135px; }
.news-card { display:block; height:100%; border:1px solid var(--line); background:#12141a; transition:transform .35s var(--ease), border-color .35s var(--ease); }
.news-card:hover { transform:translateY(-7px); border-color:rgba(185,255,61,.35); }
.news-image { height:220px; position:relative; overflow:hidden; }
.news-image::after { content:""; position:absolute; inset:0; background:linear-gradient(135deg,rgba(139,124,255,.35),transparent 55%,rgba(0,0,0,.5)); transition:transform .6s var(--ease); }
.news-card:hover .news-image::after { transform:scale(1.08); }
.news-image span { position:absolute; left:15px; bottom:14px; z-index:2; font-size:8px; letter-spacing:.16em; color:#fff; }
.news-image-1 { background:radial-gradient(circle at 67% 28%,#b8e8db 0 3%,transparent 3.5%), linear-gradient(135deg,#243442,#111620 60%,#29331e); }
.news-image-2 { background:radial-gradient(circle at 37% 42%,#c9a27e 0 5%,transparent 5.5%), linear-gradient(135deg,#493629,#141820 62%,#3d315d); }
.news-image-3 { background:radial-gradient(circle at 65% 35%,#d8d0a1 0 4%,transparent 4.5%), linear-gradient(135deg,#1d3b4d,#11121a 62%,#39252e); }
.news-body { position:relative; padding:22px 20px 25px; }
.news-meta { font-size:8px; letter-spacing:.15em; color:var(--accent); text-transform:uppercase; }
.news-body h3 { margin:10px 0 9px; font-family:"Barlow Condensed"; font-size:27px; line-height:1; text-transform:uppercase; }
.news-body p { color:#777b85; font-size:11px; line-height:1.65; margin:0; max-width:88%; }
.card-arrow { position:absolute; right:20px; bottom:21px; color:var(--accent); font-size:16px; }

.portfolio { padding:120px 0 140px; }
.portfolio-grid { display:grid; grid-template-columns:1.4fr 1fr 1fr; gap:12px; }
.portfolio-card { min-width:0; display:block; }
.portfolio-art { height:410px; position:relative; overflow:hidden; border:1px solid var(--line); transition:transform .45s var(--ease); }
.portfolio-card:hover .portfolio-art { transform:translateY(-5px); }
.portfolio-art-1 { background:linear-gradient(160deg,#352d4d,#151721 48%,#40301e); }
.portfolio-art-2 { background:linear-gradient(145deg,#10192a,#28224a 52%,#0d1018); }
.portfolio-art-3 { background:linear-gradient(160deg,#18231e,#0d1110 52%,#293a29); }
.sun { position:absolute; width:28%; aspect-ratio:1; right:18%; top:18%; border-radius:50%; background:#d6cf9d; box-shadow:0 0 80px rgba(230,220,160,.18); }
.planet { position:absolute; width:115%; height:62%; left:-15%; bottom:-28%; border-radius:50%; background:radial-gradient(circle at 40% 20%,#7a5940,#241d1b 55%,#080a0d); border-top:1px solid rgba(255,255,255,.1); }
.figure { position:absolute; left:45%; bottom:19%; width:5%; height:29%; background:#11151a; box-shadow:0 0 30px rgba(185,255,61,.1); }
.portal { position:absolute; width:54%; height:68%; left:23%; top:15%; border:8px solid rgba(139,124,255,.18); border-radius:50%; box-shadow:0 0 70px rgba(139,124,255,.22), inset 0 0 70px rgba(139,124,255,.1); }
.wanderer { position:absolute; width:8%; height:34%; left:47%; bottom:16%; background:#090a0d; border:1px solid rgba(185,255,61,.3); }
.grid-floor { position:absolute; inset:auto -20% -10% -20%; height:55%; transform:perspective(220px) rotateX(58deg); background-image:linear-gradient(rgba(185,255,61,.15) 1px,transparent 1px),linear-gradient(90deg,rgba(185,255,61,.15) 1px,transparent 1px); background-size:35px 35px; }
.cube { position:absolute; width:27%; aspect-ratio:1; left:37%; top:27%; border:1px solid rgba(185,255,61,.55); transform:rotate(30deg) skew(-8deg); box-shadow:0 0 50px rgba(185,255,61,.08); }
.portfolio-label { display:grid; grid-template-columns:30px 1fr auto; gap:10px; align-items:center; padding:14px 3px; border-bottom:1px solid var(--line); }
.portfolio-label span, .portfolio-label small { color:#666a73; font-size:8px; letter-spacing:.13em; text-transform:uppercase; }
.portfolio-label strong { font-family:"Barlow Condensed"; font-size:23px; text-transform:uppercase; }
.portfolio-label small { text-align:right; }

.newsletter {
  position:relative; overflow:hidden; padding:115px 0 125px;
  background:#111519; border-top:1px solid var(--line); border-bottom:1px solid var(--line);
}
.newsletter::before {
  content:""; position:absolute; inset:0;
  background-image:linear-gradient(rgba(255,255,255,.04) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.04) 1px,transparent 1px);
  background-size:80px 80px; mask-image:linear-gradient(90deg,transparent,#000 35%,#000 65%,transparent);
}
.newsletter-glow { position:absolute; width:500px; height:250px; left:50%; top:50%; transform:translate(-50%,-50%); background:rgba(185,255,61,.07); filter:blur(100px); }
.newsletter h2 { margin-bottom:18px; }
.newsletter-copy { color:#92969f; font-size:13px; margin:0 auto 28px; max-width:510px; line-height:1.7; }
.newsletter-form { max-width:570px; margin:auto; }
.newsletter-form-fields { display:flex; border:1px solid var(--line); background:rgba(8,9,12,.55); }
.newsletter-form-fields input { min-width:0; flex:1; border:0; outline:0; background:transparent; color:#fff; padding:16px 17px; font-size:11px; }
.newsletter-form-fields input::placeholder { color:#62666e; }
.newsletter-form-fields button { border:0; background:var(--accent); color:#08090b; padding:0 18px; font-size:9px; font-weight:800; text-transform:uppercase; letter-spacing:.13em; }
.newsletter-form-fields button span { margin-left:15px; font-size:14px; }
.newsletter-consent { display:flex; align-items:flex-start; gap:9px; margin-top:13px; color:#858993; font-size:9px; line-height:1.55; text-align:left; cursor:pointer; }
.newsletter-consent input { width:13px; height:13px; flex:0 0 auto; margin:1px 0 0; accent-color:var(--accent); }
.newsletter-privacy, .newsletter-unsubscribe { max-width:570px; margin:9px auto 0; color:#5f636c; font-size:8px; line-height:1.55; text-align:left; }
.newsletter-privacy a { color:#858993; text-decoration:underline; }
.form-message { min-height:15px; margin:8px 0 0; color:var(--accent); font-size:10px; }

.contact-hero {
  min-height:440px; position:relative; display:flex; align-items:flex-end; overflow:hidden;
  padding:145px 0 74px; background:#08090c;
}
.contact-hero::before {
  content:""; position:absolute; inset:0; pointer-events:none;
  background:radial-gradient(circle at 77% 38%,rgba(185,255,61,.2),transparent 13%), radial-gradient(circle at 71% 58%,rgba(139,124,255,.3),transparent 27%), linear-gradient(115deg,#090a0d 22%,rgba(9,10,13,.72) 58%,#111625);
}
.contact-hero::after {
  content:""; position:absolute; width:48vw; height:48vw; max-width:610px; max-height:610px; right:-8vw; bottom:-34vw; border:1px solid rgba(185,255,61,.24); border-radius:50%; box-shadow:0 0 0 50px rgba(185,255,61,.025), 0 0 0 115px rgba(185,255,61,.018);
}
.contact-hero .container { position:relative; z-index:1; }
.contact-hero h1 { margin:0; font-family:"Barlow Condensed",sans-serif; font-size:clamp(64px,9vw,128px); font-weight:700; line-height:.8; letter-spacing:-.025em; text-transform:uppercase; }
.contact-hero-copy { max-width:450px; margin:23px 0 0; color:#b8bbc4; font-size:13px; line-height:1.75; }
.contact-section { padding:120px 0 135px; background:var(--bg-soft); }
.contact-details { display:grid; gap:10px; }
.contact-detail { display:grid; grid-template-columns:80px 1fr auto; align-items:center; gap:16px; min-height:78px; padding:16px 18px; border:1px solid var(--line); background:rgba(8,9,12,.26); transition:border-color .25s ease, background .25s ease; }
.contact-detail:hover { border-color:rgba(185,255,61,.42); background:rgba(185,255,61,.035); }
.contact-detail-label { color:#71757e; font-size:8px; font-weight:700; letter-spacing:.15em; text-transform:uppercase; }
.contact-detail-value { color:#e6e6e1; font-size:12px; font-weight:600; }
.contact-detail-arrow { color:var(--accent); font-size:16px; }
.contact-note { margin:22px 0 0; color:#777b85; font-size:11px; line-height:1.7; }
.contact-form { padding:34px; border:1px solid var(--line); background:#12141a; }
.contact-form-heading { margin:0 0 26px; font-family:"Barlow Condensed",sans-serif; font-size:38px; font-weight:700; line-height:.9; letter-spacing:-.02em; text-transform:uppercase; }
.contact-form-grid { display:grid; grid-template-columns:1fr 1fr; gap:17px; }
.contact-field { display:grid; gap:8px; }
.contact-field-wide { grid-column:1 / -1; }
.contact-field label { color:#8a8e97; font-size:8px; font-weight:700; letter-spacing:.14em; text-transform:uppercase; }
.contact-field input, .contact-field select, .contact-field textarea { width:100%; border:1px solid var(--line); border-radius:0; outline:0; background:#090a0d; color:#f2f1ed; font:400 11px "Inter",sans-serif; padding:14px 15px; transition:border-color .25s ease; }
.contact-field textarea { min-height:132px; resize:vertical; }
.contact-field input:focus, .contact-field select:focus, .contact-field textarea:focus { border-color:var(--accent); }
.contact-field select { appearance:auto; color-scheme:dark; }
.contact-form .btn-primary-custom { margin-top:22px; }
.contact-form-message { min-height:16px; margin:12px 0 0; color:var(--accent); font-size:10px; }

.social-section { padding:110px 0; background:#0d0f13; }
.social-grid { display:grid; grid-template-columns:repeat(5,1fr); border-top:1px solid var(--line); border-left:1px solid var(--line); }
.social-grid a { min-height:115px; position:relative; display:flex; flex-direction:column; justify-content:space-between; padding:14px; border-right:1px solid var(--line); border-bottom:1px solid var(--line); transition:background .3s ease; }
.social-grid a:hover { background:#171a20; }
.social-grid strong { font-size:15px; font-weight:700; }
.social-grid span { font-size:8px; color:#858993; text-transform:uppercase; letter-spacing:.12em; }
.social-grid a > .fa-brands { position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); color:var(--accent); font-size:42px; transition:transform .3s var(--ease); }
.social-grid a:hover > .fa-brands { transform:translate(-50%,-50%) scale(1.12); }
.social-grid a > i:last-child { position:absolute; right:14px; bottom:14px; color:var(--accent); font-style:normal; font-size:13px; }

.site-footer { padding:62px 0 25px; background:#08090b; border-top:1px solid var(--line); }
.footer-top { display:grid; grid-template-columns:1fr 1fr 1fr; align-items:start; gap:30px; padding-bottom:55px; }
.footer-top > p { color:#666a73; font-size:10px; line-height:1.6; margin:0; }
.footer-top nav { display:grid; grid-template-columns:1fr 1fr; gap:11px 20px; }
.footer-top nav a { color:#858891; font-size:9px; text-transform:uppercase; letter-spacing:.12em; }
.footer-top nav a:hover { color:var(--accent); }
.footer-bottom { display:flex; justify-content:space-between; gap:20px; padding-top:20px; border-top:1px solid var(--line); color:#4e5159; font-size:8px; text-transform:uppercase; letter-spacing:.08em; }
.footer-bottom div { display:flex; gap:20px; }
.footer-bottom a:hover { color:#fff; }
.back-to-top {
  position:fixed; right:20px; bottom:20px; z-index:900;
  width:42px; height:42px; border:1px solid var(--line); background:rgba(10,11,14,.8); color:#fff;
  opacity:0; pointer-events:none; transform:translateY(10px); transition:.3s var(--ease);
}
.back-to-top.visible { opacity:1; pointer-events:auto; transform:none; }
.back-to-top:hover { background:var(--accent); color:#090a0d; border-color:var(--accent); }

@media (max-width: 991.98px) {
  .site-header { background:rgba(8,9,12,.55); backdrop-filter:blur(14px); }
  .navbar { min-height:68px; }
  .navbar-collapse { background:rgba(8,9,12,.96); margin:0 -12px; padding:18px 20px 24px; border-top:1px solid var(--line); }
  .navbar-nav { gap:3px !important; }
  .nav-cta { display:inline-flex; margin-top:8px; }
  .hero-backdrop::after { width:62vw; height:65vh; right:-5vw; top:17%; opacity:.65; }
  .feature-card { grid-template-columns:1fr; }
  .feature-visual { min-height:470px; }
  .feature-info { padding:45px; }
  .portfolio-grid { grid-template-columns:1fr 1fr; }
  .portfolio-large { grid-column:1 / -1; }
  .portfolio-large .portfolio-art { height:450px; }
  .social-grid { grid-template-columns:repeat(3,1fr); }
  .contact-section { padding:90px 0; }
}
@media (max-width: 767.98px) {
  .hero { min-height:720px; align-items:flex-end; padding-bottom:90px; }
  .hero-content { padding-top:80px; }
  .hero-backdrop::after { width:100vw; height:57vh; right:-30vw; top:7%; opacity:.52; }
  .hero h1 { font-size:clamp(54px,15vw,82px); }
  .hero-copy { font-size:12px; max-width:380px; margin:22px 0 25px; }
  .hero-actions { flex-wrap:wrap; gap:17px; }
  .hero-meta { left:18px; right:18px; bottom:16px; }
  .hero-meta span:last-child { display:none; }
  .scroll-cue { display:none; }
  .studio-section, .feature-game, .news, .portfolio, .social-section { padding:82px 0; }
  .section-heading-row { align-items:flex-start; margin-bottom:32px; }
  h2 { font-size:clamp(48px,14vw,70px); }
  .world-art { margin-bottom:5px; }
  .platform-grid { grid-template-columns:repeat(3,1fr); }
  .platform-grid div { padding:18px 5px; font-size:8px; }
  .platform-grid-icons { grid-template-columns:repeat(2,1fr); }
  .platform-grid-icons a:nth-child(2) { border-right:0; }
  .platform-grid-icons a:nth-child(-n+2) { border-bottom:1px solid var(--line); }
  .feature-visual { min-height:350px; }
  .feature-info { padding:32px 24px; }
  .feature-info h3 { font-size:72px; }
  .news-image { height:195px; }
  .portfolio-grid { grid-template-columns:1fr; }
  .portfolio-large { grid-column:auto; }
  .portfolio-large .portfolio-art, .portfolio-art { height:350px; }
  .newsletter { padding:82px 0; }
  .newsletter-form-fields { display:block; border:0; background:transparent; }
  .newsletter-form-fields input, .newsletter-form-fields button { display:block; width:100%; min-height:50px; border:1px solid var(--line); }
  .newsletter-form-fields input { background:rgba(8,9,12,.55); margin-bottom:8px; }
  .newsletter-form-fields button { border-color:var(--accent); }
  .contact-hero { min-height:390px; padding:125px 0 56px; }
  .contact-section { padding:76px 0 82px; }
  .contact-form { padding:27px 22px; }
  .social-grid { grid-template-columns:1fr 1fr; }
  .social-grid a:last-child { grid-column:1 / -1; }
  .footer-top { grid-template-columns:1fr 1fr; }
  .footer-top > p { display:none; }
  .footer-top nav { grid-column:1 / -1; }
  .footer-bottom { flex-direction:column; gap:12px; }
  .contact-detail { grid-template-columns:72px 1fr auto; padding:15px; }
}
@media (max-width: 420px) {
  .brand-mark { font-size:12px; }
  .brand-symbol { transform:scale(.85); transform-origin:left center; margin-right:-3px; }
  .hero h1 { font-size:52px; }
  .btn-primary-custom { width:100%; justify-content:space-between; }
  .hero-actions { display:grid; width:100%; }
  .text-link { justify-content:center; padding:5px; }
  .platform-grid div { font-size:7px; }
  .contact-form-grid { grid-template-columns:1fr; }
  .contact-field-wide { grid-column:auto; }
}

.reveal-item { opacity:0; transform:translateY(18px); transition:opacity .7s var(--ease), transform .7s var(--ease); }
.reveal-item.is-visible { opacity:1; transform:none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior:auto; }
  *, *::before, *::after { animation-duration:.01ms !important; transition-duration:.01ms !important; }
  .reveal-item { opacity:1; transform:none; }
}
