:root {
  --ink: #07111b;
  --ink-soft: #0d1b28;
  --paper: #f3f7f8;
  --white: #ffffff;
  --muted: #9eabb4;
  --line: rgba(255,255,255,.14);
  --cyan: #52d9ff;
  --blue: #1677ff;
  --acid: #c8ff4d;
  --radius: 28px;
  --max: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--white);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body::selection { background: var(--cyan); color: var(--ink); }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }

.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; }
.skip-link { position: fixed; z-index: 200; top: 10px; left: 10px; padding: 13px 18px; border-radius: 12px; background: var(--acid); color: var(--ink); font-size: 14px; font-weight: 800; transform: translateY(-150%); transition: transform .2s ease; }
.skip-link:focus { transform: translateY(0); outline: 3px solid white; outline-offset: 3px; }
#main-content:focus { outline: none; }

.scroll-progress { position: fixed; z-index: 100; inset: 0 0 auto; height: 2px; background: transparent; }
.scroll-progress span { display: block; width: 0; height: 100%; background: var(--cyan); box-shadow: 0 0 18px var(--cyan); }

.site-header {
  position: fixed;
  z-index: 50;
  top: 18px;
  left: 50%;
  width: min(calc(100% - 32px), var(--max));
  min-height: 66px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 10px 12px 10px 18px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 20px;
  background: rgba(7,17,27,.68);
  box-shadow: 0 18px 60px rgba(0,0,0,.16);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  transform: translateX(-50%);
  transition: background .3s ease, border-color .3s ease, top .3s ease;
}
.site-header.scrolled { top: 10px; background: rgba(7,17,27,.9); border-color: rgba(255,255,255,.2); }
.brand { display: inline-flex; width: fit-content; align-items: center; gap: 10px; font-size: 14px; font-weight: 750; letter-spacing: -.01em; }
.brand img { width: 40px; height: 40px; border-radius: 11px; object-fit: cover; }
.verified { display: inline-grid; place-items: center; width: 16px; height: 16px; border-radius: 999px; background: var(--blue); color: white; font-size: 10px; font-style: normal; vertical-align: middle; }
.site-header nav { display: flex; align-items: center; gap: 32px; }
.site-header nav a { color: #c7d0d6; font-size: 13px; transition: color .2s ease; }
.site-header nav a:hover { color: white; }
.header-actions { display: flex; justify-self: end; align-items: center; gap: 9px; }
.menu-toggle { width: 44px; height: 44px; display: none; place-items: center; padding: 0; border: 1px solid rgba(255,255,255,.15); border-radius: 13px; background: rgba(255,255,255,.06); color: white; cursor: pointer; }
.menu-toggle span { position: absolute; width: 17px; height: 1.5px; border-radius: 2px; background: currentColor; transition: transform .25s ease; }
.menu-toggle span:first-child { transform: translateY(-4px); }
.menu-toggle span:last-child { transform: translateY(4px); }
body.menu-open .menu-toggle span:first-child { transform: rotate(45deg); }
body.menu-open .menu-toggle span:last-child { transform: rotate(-45deg); }

.menu-scrim { position: fixed; z-index: 58; inset: 0; visibility: hidden; background: rgba(2,8,13,.64); opacity: 0; backdrop-filter: blur(7px); -webkit-backdrop-filter: blur(7px); transition: opacity .3s ease, visibility .3s ease; }
.mobile-menu { --drawer-drag: 0px; position: fixed; z-index: 65; inset: 0 0 0 auto; visibility: hidden; width: min(430px, 100%); display: flex; flex-direction: column; padding: 104px max(24px, env(safe-area-inset-right)) max(28px, env(safe-area-inset-bottom)) max(24px, env(safe-area-inset-left)); overflow-y: auto; background: #0a1824; box-shadow: -30px 0 80px rgba(0,0,0,.34); transform: translateX(105%); transition: transform .38s cubic-bezier(.2,.7,.2,1), visibility .38s ease; touch-action: pan-y; }
body.menu-open { overflow: hidden; }
body.menu-open .menu-scrim { visibility: visible; opacity: 1; }
body.menu-open .mobile-menu { visibility: visible; transform: translateX(var(--drawer-drag)); }
.mobile-menu.is-dragging { transition: none; }
.mobile-menu-top { display: flex; align-items: center; justify-content: space-between; padding-bottom: 24px; border-bottom: 1px solid var(--line); color: #78909f; font-size: 10px; font-weight: 760; letter-spacing: .14em; text-transform: uppercase; }
.mobile-menu-top button { width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 999px; background: transparent; color: white; cursor: pointer; font-size: 26px; font-weight: 300; line-height: 1; }
.mobile-menu nav { display: grid; margin-top: 18px; }
.mobile-menu nav a { min-height: 78px; display: flex; align-items: center; gap: 17px; border-bottom: 1px solid var(--line); font-size: clamp(30px, 8vw, 42px); font-weight: 780; letter-spacing: -.055em; }
.mobile-menu nav a span { color: #5d7685; font: 650 10px/1 ui-monospace, SFMono-Regular, Menlo, monospace; letter-spacing: .1em; }
.mobile-menu-footer { display: grid; gap: 20px; margin-top: auto; padding-top: 40px; }
.mobile-menu-footer p { margin: 0; color: #78909f; font-size: 13px; }
.mobile-menu-footer .button { width: 100%; }

.button { display: inline-flex; align-items: center; justify-content: center; gap: 11px; min-height: 54px; padding: 0 24px; border: 1px solid transparent; border-radius: 999px; font-size: 14px; font-weight: 760; letter-spacing: -.01em; transition: transform .22s ease, background .22s ease, color .22s ease, box-shadow .22s ease; }
.button:hover { transform: translateY(-2px); }
.button:focus-visible, .text-link:focus-visible, nav a:focus-visible, footer a:focus-visible, .gallery-controls button:focus-visible, .menu-toggle:focus-visible, .mobile-menu button:focus-visible, .gallery-track:focus-visible { outline: 3px solid var(--cyan); outline-offset: 4px; }
.button-small { min-height: 44px; padding: 0 18px; font-size: 13px; }
.button-light { background: white; color: var(--ink); }
.button-light:hover { background: var(--cyan); box-shadow: 0 10px 34px rgba(82,217,255,.2); }
.button-primary { position: relative; overflow: hidden; background: var(--acid); color: var(--ink); box-shadow: 0 14px 50px rgba(200,255,77,.18); }
.button-primary::after { content: ""; position: absolute; inset: -30% auto -30% -45%; width: 30%; background: linear-gradient(90deg, transparent, rgba(255,255,255,.75), transparent); transform: skewX(-20deg); transition: left .55s cubic-bezier(.2,.7,.2,1); pointer-events: none; }
.button-primary:hover::after { left: 115%; }
.button-primary:hover { background: white; box-shadow: 0 16px 60px rgba(255,255,255,.16); }
.play-mark { width: 0; height: 0; border-top: 5px solid transparent; border-bottom: 5px solid transparent; border-left: 8px solid currentColor; }
.text-link { min-height: 44px; display: inline-flex; align-items: center; gap: 10px; color: #d3dce2; font-size: 14px; font-weight: 650; }
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateY(3px); }

.hero { position: relative; padding: 198px max(24px, calc((100vw - var(--max)) / 2)) 78px; overflow: hidden; isolation: isolate; }
.hero::before { content: ""; position: absolute; inset: 0; z-index: -3; background: radial-gradient(circle at 75% 38%, #13385d 0, transparent 29%), linear-gradient(180deg, #081523 0%, var(--ink) 88%); }
.hero::after { content: ""; position: absolute; z-index: -2; inset: 0; opacity: .22; background-image: linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px); background-size: 84px 84px; mask-image: linear-gradient(to bottom, black, transparent 75%); }
.hero-backdrop { position: absolute; z-index: -2; inset: 0; background: linear-gradient(90deg, rgba(7,17,27,.98) 0%, rgba(7,17,27,.66) 46%, rgba(7,17,27,.25) 100%), linear-gradient(180deg, rgba(7,17,27,.08) 50%, var(--ink) 98%), url("assets/screens/player/03.webp") center 22% / cover no-repeat; opacity: .27; filter: saturate(.8); }
.hero-glow { position: absolute; z-index: -1; border-radius: 999px; filter: blur(4px); pointer-events: none; }
.hero-glow-one { top: 200px; right: 12%; width: 390px; height: 390px; background: rgba(40,153,255,.22); box-shadow: 0 0 130px rgba(40,153,255,.5); animation: glow-drift 11s ease-in-out infinite alternate; }
.hero-glow-two { top: 590px; left: 5%; width: 230px; height: 230px; background: rgba(82,217,255,.08); box-shadow: 0 0 110px rgba(82,217,255,.28); animation: glow-drift 9s ease-in-out -3s infinite alternate-reverse; }
.hero-copy { position: relative; z-index: 3; width: min(720px, 66vw); }
.eyebrow, .section-kicker { margin: 0 0 24px; color: #aebbc4; font-size: 11px; font-weight: 760; letter-spacing: .15em; line-height: 1.4; text-transform: uppercase; }
.eyebrow { display: flex; align-items: center; gap: 9px; }
.eyebrow > span:not(.live-dot) { color: #4e6372; }
.live-dot { display: inline-block; width: 7px; height: 7px; border-radius: 999px; background: var(--acid); box-shadow: 0 0 0 4px rgba(200,255,77,.12), 0 0 18px rgba(200,255,77,.9); animation: live-pulse 2.4s ease-out infinite; }
.hero h1 { margin: 0; max-width: 900px; font-size: clamp(68px, 9.1vw, 142px); line-height: .82; letter-spacing: -.078em; font-weight: 810; text-transform: uppercase; }
.hero h1 em { color: var(--cyan); font-family: Georgia, "Times New Roman", serif; font-weight: 400; letter-spacing: -.07em; text-transform: none; }
.hero-intro { width: min(540px, 90%); margin: 34px 0 0; color: #bdc8d0; font-size: clamp(17px, 1.5vw, 21px); line-height: 1.52; letter-spacing: -.025em; }
.hero-actions { display: flex; align-items: center; gap: 26px; margin-top: 36px; }

.hero-stage { position: relative; z-index: 2; width: min(78%, 980px); margin: 54px -38px 0 auto; scroll-margin-top: 110px; perspective: 1200px; }
.game-frame { position: relative; margin: 0; overflow: hidden; border: 1px solid rgba(255,255,255,.22); border-radius: var(--radius); background: #12283c; box-shadow: 0 70px 120px rgba(0,0,0,.5), 0 0 0 12px rgba(255,255,255,.025); cursor: pointer; transform: rotate(2.2deg); transition: transform .18s ease-out; touch-action: pan-y; will-change: transform; }
.game-frame.is-dragging { cursor: grabbing; }
.game-frame::before { content: ""; position: absolute; z-index: 2; inset: 0; border-radius: inherit; box-shadow: inset 0 1px 0 rgba(255,255,255,.3); pointer-events: none; }
.hero-slides { position: relative; overflow: hidden; width: 100%; aspect-ratio: 16 / 9; background: #0b1a26; }
.hero-slide { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transform: scale(1.015); transition: opacity .38s ease, transform .55s cubic-bezier(.2,.7,.2,1); pointer-events: none; }
.hero-slide.is-active { opacity: 1; transform: scale(1); pointer-events: auto; }
.hero-stage.is-autoplaying .hero-slide.is-active { animation: slide-breathe 6s ease-out both; }
.game-frame figcaption { display: flex; justify-content: space-between; align-items: center; padding: 15px 18px; background: rgba(7,17,27,.96); color: white; font-size: 11px; font-weight: 650; letter-spacing: .06em; text-transform: uppercase; }
.game-frame figcaption span:last-child { color: #6f8493; }
.hero-gallery-progress { width: 100%; height: 2px; margin-top: 18px; overflow: hidden; border-radius: 999px; background: rgba(255,255,255,.1); }
.hero-gallery-progress span { display: block; width: 0; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--cyan), var(--acid)); box-shadow: 0 0 14px rgba(82,217,255,.55); }
.hero-stage.is-autoplaying .hero-gallery-progress span { animation: hero-progress 6s linear forwards; }
.hero-gallery-controls { position: relative; z-index: 8; min-height: 52px; display: grid; grid-template-columns: 48px minmax(80px, auto) 48px 48px; align-items: center; justify-content: end; gap: 11px; margin-top: 12px; }
.hero-gallery-controls button { position: relative; z-index: 1; width: 48px; height: 48px; display: inline-grid; place-items: center; padding: 0; border: 1px solid rgba(255,255,255,.2); border-radius: 999px; background: rgba(7,17,27,.84); color: white; cursor: pointer; touch-action: manipulation; transition: background .2s ease, color .2s ease, transform .2s ease; }
.hero-gallery-controls button:hover { background: white; color: var(--ink); transform: translateY(-1px); }
.hero-gallery-controls [data-hero-autoplay][aria-pressed="true"] { border-color: var(--acid); background: var(--acid); color: var(--ink); }
.hero-gallery-controls button:focus-visible { outline: 3px solid var(--cyan); outline-offset: 3px; }
.hero-gallery-dots { min-width: 0; display: flex; justify-content: center; gap: 6px; padding: 0 5px; }
.hero-gallery-dots span { width: 6px; height: 6px; border-radius: 999px; background: #526571; transition: width .25s ease, background .25s ease; }
.hero-gallery-dots span.is-active { width: 20px; background: var(--cyan); }
.game-icon { position: absolute; z-index: 3; right: -34px; top: -43px; width: 112px; aspect-ratio: 1; border: 5px solid var(--ink); border-radius: 25px; box-shadow: 0 18px 50px rgba(0,0,0,.42); transform: rotate(7deg); }
.stage-label { position: absolute; z-index: 3; padding: 9px 13px; border: 1px solid rgba(255,255,255,.17); border-radius: 999px; background: rgba(7,17,27,.8); color: #dbe4ea; backdrop-filter: blur(10px); font: 650 10px/1 ui-monospace, SFMono-Regular, Menlo, monospace; letter-spacing: .08em; text-transform: uppercase; }
.stage-label-left { left: -92px; bottom: 22%; transform: rotate(-6deg); }
.stage-label-right { right: -70px; bottom: 35%; transform: rotate(5deg); }
.stage-orbit { position: absolute; z-index: -1; border: 1px solid rgba(82,217,255,.2); border-radius: 50%; }
.orbit-one { width: 115%; aspect-ratio: 1; left: -8%; top: -45%; transform: rotateX(66deg); }
.orbit-two { width: 78%; aspect-ratio: 1; right: -7%; top: -28%; border-color: rgba(200,255,77,.13); transform: rotateX(70deg); }

.proof-bar { position: relative; z-index: 4; width: min(100%, var(--max)); min-height: 112px; display: grid; grid-template-columns: repeat(4, 1fr) auto; align-items: center; margin: 72px auto 0; border-top: 1px solid rgba(255,255,255,.17); border-bottom: 1px solid rgba(255,255,255,.12); }
.proof-item { display: grid; grid-template-columns: auto; align-content: center; min-height: 70px; padding: 0 30px; border-left: 1px solid rgba(255,255,255,.12); }
.proof-item:first-child { border-left: 0; padding-left: 0; }
.proof-item strong { font-size: clamp(24px, 2.3vw, 38px); line-height: 1; letter-spacing: -.055em; }
.proof-item small { margin-top: 8px; color: #718593; font-size: 10px; font-weight: 650; letter-spacing: .12em; text-transform: uppercase; }
.proof-now { grid-template-columns: 15px auto; column-gap: 10px; }
.proof-now small { grid-column: 2; }
.proof-source { max-width: 94px; margin: 0; color: #536673; font-size: 9px; line-height: 1.5; letter-spacing: .08em; text-transform: uppercase; text-align: right; }
.proof-bar.is-stale .proof-now .live-dot { background: #f3bd58; box-shadow: 0 0 0 4px rgba(243,189,88,.1), 0 0 14px rgba(243,189,88,.5); animation: none; }
.proof-bar.is-stale .proof-source { color: #9c8257; }
.hero-copy.reveal, .hero-stage.reveal { opacity: 1; transform: none; transition: none; }
.proof-bar.reveal, .proof-bar.reveal.is-visible { opacity: 1; transform: none; transition: none; }

[id="studio"], [id="experience"] { scroll-margin-top: 104px; }

.manifesto { padding: 150px max(24px, calc((100vw - var(--max)) / 2)); background: var(--paper); color: var(--ink); }
.manifesto > .section-kicker { color: #758791; }
.manifesto-heading { display: grid; grid-template-columns: 1.5fr .75fr; align-items: end; gap: 70px; margin-bottom: 88px; }
.manifesto h2, .gallery h2 { margin: 0; font-size: clamp(58px, 8vw, 118px); line-height: .86; letter-spacing: -.075em; text-transform: uppercase; }
.manifesto h2 span { color: var(--blue); font-family: Georgia, "Times New Roman", serif; font-size: .92em; font-weight: 400; font-style: italic; text-transform: none; }
.manifesto-heading > p { margin: 0 0 8px; color: #4f626d; font-size: 18px; line-height: 1.62; letter-spacing: -.02em; }
.game-overview { padding-top: 118px; padding-bottom: 118px; background: radial-gradient(circle at 88% 12%, rgba(82,217,255,.2), transparent 26%), linear-gradient(180deg, #f4f8f9, #e9f3f5); }
.overview-heading { display: grid; grid-template-columns: 1.35fr .65fr; align-items: end; gap: 76px; margin-bottom: 58px; }
.overview-heading .section-kicker { color: #607783; }
.overview-intro > p { margin: 0; color: #4f626d; font-size: 18px; line-height: 1.62; letter-spacing: -.02em; }
.overview-intro .button { margin-top: 28px; }
.overview-details { padding: clamp(28px, 4vw, 54px); border-radius: 30px; background: radial-gradient(circle at 90% 0%, rgba(22,119,255,.22), transparent 34%), linear-gradient(145deg, #07111b, #0c2232); color: white; box-shadow: 0 28px 80px rgba(7,17,27,.13); }
.overview-features { display: grid; grid-template-columns: repeat(4, 1fr); border-bottom: 1px solid rgba(255,255,255,.13); }
.overview-features span { min-height: 76px; display: flex; align-items: center; padding: 0 22px; border-left: 1px solid rgba(255,255,255,.13); color: #d5e0e6; font-size: 13px; font-weight: 720; }
.overview-features span:first-child { padding-left: 0; border-left: 0; }
.overview-ships { margin-top: 34px; }
.overview-ships > p { margin: 0; color: #6f8491; font-size: 10px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.game-overview .ship-list { gap: 8px; margin: 18px 0 0; }
.game-overview .ship-list span { border-color: rgba(255,255,255,.16); color: #b9c8d0; }
.feature-grid { display: grid; grid-template-columns: 1.15fr .85fr; grid-template-rows: repeat(2, minmax(350px, 37vw)); gap: 18px; }
.feature-card { position: relative; overflow: hidden; min-height: 360px; border-radius: var(--radius); background: #132534; color: white; isolation: isolate; }
.feature-card-large { grid-row: 1 / span 2; }
.feature-card img { position: absolute; z-index: -2; width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.2,.7,.2,1); }
.feature-card:hover img { transform: scale(1.035); }
.feature-overlay { position: absolute; z-index: -1; inset: 0; background: linear-gradient(180deg, transparent 30%, rgba(3,9,15,.9) 100%); }
.feature-card-blue .feature-overlay { background: linear-gradient(180deg, rgba(3,9,15,.02), rgba(4,22,38,.92)); }
.feature-copy { position: absolute; inset: auto 34px 34px; }
.feature-copy > span { color: rgba(255,255,255,.68); font-size: 10px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.feature-copy h3 { margin: 13px 0 12px; max-width: 580px; font-size: clamp(34px, 4vw, 62px); line-height: .95; letter-spacing: -.06em; text-transform: uppercase; }
.feature-card:not(.feature-card-large) .feature-copy h3 { font-size: clamp(30px, 3.2vw, 48px); }
.feature-copy p { max-width: 460px; margin: 0; color: rgba(255,255,255,.74); font-size: 14px; line-height: 1.5; }

.gallery { padding: 150px 0 155px; overflow: hidden; background: #0b1925; }
.gallery-heading { width: min(calc(100% - 48px), var(--max)); display: flex; justify-content: space-between; align-items: end; margin: 0 auto 64px; }
.gallery h2 { font-size: clamp(58px, 7.5vw, 108px); }
.gallery-controls { display: flex; gap: 10px; padding-bottom: 8px; }
.gallery-controls button { width: 54px; height: 54px; border: 1px solid rgba(255,255,255,.18); border-radius: 999px; background: transparent; color: white; cursor: pointer; transition: background .2s ease, color .2s ease; }
.gallery-controls button:hover { background: white; color: var(--ink); }
.gallery-track { display: flex; gap: 18px; padding: 0 max(24px, calc((100vw - var(--max)) / 2)); overflow-x: auto; overscroll-behavior-x: contain; scroll-snap-type: x mandatory; scroll-padding-inline: max(24px, calc((100vw - var(--max)) / 2)); scrollbar-width: none; cursor: grab; }
.gallery-track.is-dragging { cursor: grabbing; scroll-snap-type: none; user-select: none; }
.gallery-track::-webkit-scrollbar { display: none; }
.gallery-track figure { flex: 0 0 min(70vw, 840px); margin: 0; overflow: hidden; border-radius: var(--radius); background: #102234; scroll-snap-align: start; }
.gallery-track img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.gallery-track figcaption { display: flex; justify-content: space-between; align-items: center; padding: 20px 22px; }
.gallery-track figcaption span { font-size: 15px; font-weight: 700; }
.gallery-track figcaption small { color: #708591; font-size: 11px; text-transform: uppercase; letter-spacing: .08em; }

.ship-list { display: flex; flex-wrap: wrap; gap: 10px; margin: 62px 0 30px; }
.ship-list span { padding: 12px 17px; border: 1px solid rgba(7,17,27,.19); border-radius: 999px; color: #294550; font-size: 12px; font-weight: 700; }
.text-link-dark { color: #173944; }


.studio { padding: 104px max(24px, calc((100vw - var(--max)) / 2)); background: radial-gradient(circle at 86% 18%, rgba(82,217,255,.2), transparent 27%), linear-gradient(180deg, #f5fafb, #eaf4f6); color: var(--ink); }
.studio-card { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; padding: clamp(32px, 5vw, 72px); overflow: hidden; border: 1px solid rgba(255,255,255,.09); border-radius: 34px; background: radial-gradient(circle at 88% 12%, rgba(22,119,255,.24), transparent 33%), linear-gradient(145deg, #07111b, #0b2131); color: white; box-shadow: 0 30px 90px rgba(7,17,27,.16); }
.studio-card::after { content: ""; position: absolute; inset: auto -12% -55% auto; width: 430px; aspect-ratio: 1; border: 1px solid rgba(82,217,255,.16); border-radius: 50%; box-shadow: 0 0 0 42px rgba(82,217,255,.025), 0 0 0 86px rgba(82,217,255,.018); pointer-events: none; }
.studio-card > * { position: relative; z-index: 1; }
.studio-identity { display: flex; align-items: center; gap: 26px; }
.studio-identity img { width: 104px; border-radius: 25px; }
.studio .section-kicker { margin-bottom: 13px; color: #6e8492; }
.studio h2 { margin: 0; font-size: clamp(38px, 4vw, 60px); letter-spacing: -.055em; }
.studio h2 .verified { width: 22px; height: 22px; font-size: 13px; }
.studio-copy > p { margin: 0; color: #aab8c1; font-size: 18px; line-height: 1.55; letter-spacing: -.02em; }
.studio-meta { display: flex; gap: 58px; margin: 34px 0; }
.studio-meta div { display: grid; }
.studio-meta strong { font-size: 34px; letter-spacing: -.05em; }
.studio-meta small { margin-top: 5px; color: #657986; font-size: 9px; letter-spacing: .11em; text-transform: uppercase; }


footer { width: min(calc(100% - 48px), var(--max)); min-height: 130px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 20px; margin: 0 auto; border-top: 1px solid rgba(255,255,255,.12); color: #768994; }
footer .brand { color: white; }
footer .brand img { width: 36px; height: 36px; }
footer p { margin: 0; font-size: 12px; }
footer > div { display: flex; justify-content: flex-end; gap: 25px; font-size: 11px; }
footer > div a { min-height: 44px; display: inline-flex; align-items: center; }
footer a:hover { color: white; }
.mobile-play { display: none; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@keyframes glow-drift {
  from { transform: translate3d(-2%, -2%, 0) scale(.94); opacity: .7; }
  to { transform: translate3d(6%, 5%, 0) scale(1.08); opacity: 1; }
}

@keyframes live-pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(200,255,77,.12), 0 0 18px rgba(200,255,77,.8); }
  50% { box-shadow: 0 0 0 8px rgba(200,255,77,0), 0 0 24px rgba(200,255,77,1); }
}

@keyframes slide-breathe {
  from { transform: scale(1.012); }
  to { transform: scale(1); }
}

@keyframes hero-progress {
  from { width: 0; }
  to { width: 100%; }
}

@media (max-width: 900px) {
  .site-header { grid-template-columns: 1fr auto; }
  .site-header nav { display: none; }
  .menu-toggle { display: grid; }
  .hero { padding-top: 170px; }
  .hero-copy { width: 100%; }
  .hero-stage { width: 94%; margin: 72px auto 0; }
  .game-icon { right: -16px; }
  .stage-label-left { left: -22px; }
  .stage-label-right { right: -20px; }
  .proof-bar { grid-template-columns: repeat(4, 1fr); }
  .proof-source { display: none; }
  .proof-item { padding: 0 18px; }
  .manifesto-heading { grid-template-columns: 1fr; gap: 38px; }
  .manifesto-heading > p { max-width: 570px; }
  .overview-heading { grid-template-columns: 1fr; gap: 34px; }
  .overview-intro { max-width: 620px; }
  .overview-features { grid-template-columns: repeat(2, 1fr); }
  .overview-features span:nth-child(3) { padding-left: 0; border-left: 0; }
  .studio-card { grid-template-columns: 1fr; gap: 50px; }
  footer { grid-template-columns: 1fr auto; }
  footer p { display: none; }
}

@media (max-width: 680px) {
  :root { --radius: 20px; }
  body { padding-bottom: calc(76px + env(safe-area-inset-bottom)); }
  .site-header { top: max(10px, env(safe-area-inset-top)); width: calc(100% - 20px); min-height: 58px; padding: 8px 9px 8px 12px; border-radius: 17px; }
  .site-header .brand img { width: 34px; height: 34px; border-radius: 9px; }
  .site-header .brand span:not(.verified) { font-size: 13px; }
  .header-actions > .button { display: none; }
  .hero { min-height: auto; padding: 138px 18px 78px; }
  .hero::after { background-size: 54px 54px; }
  .hero h1 { font-size: clamp(58px, 19vw, 92px); }
  .hero-intro { width: 100%; font-size: 17px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 20px; }
  .hero-actions .button { width: 100%; }
  .hero-stage { width: 104%; margin: 62px 0 0 -2%; }
  .game-frame { border-radius: 18px; transform: rotate(1deg); }
  .game-frame figcaption { padding: 11px 12px; font-size: 8px; }
  .game-icon { top: -24px; right: -6px; width: 72px; border-width: 3px; border-radius: 17px; }
  .stage-label { display: none; }
  .proof-bar { width: 100%; min-height: 148px; grid-template-columns: repeat(2, 1fr); margin-top: 58px; }
  .proof-item, .proof-item:first-child { min-height: 66px; padding: 0 13px; border-left: 0; }
  .proof-item:nth-child(even) { border-left: 1px solid rgba(255,255,255,.12); }
  .proof-item:nth-child(n+3) { border-top: 1px solid rgba(255,255,255,.12); }
  .proof-item strong { font-size: 24px; }
  .manifesto { padding: 105px 18px; }
  .manifesto-heading { margin-bottom: 54px; }
  .manifesto h2, .gallery h2 { font-size: 54px; }
  .manifesto-heading > p { font-size: 16px; }
  .game-overview { padding-top: 88px; padding-bottom: 88px; }
  .overview-heading { margin-bottom: 42px; }
  .overview-intro > p { font-size: 16px; }
  .overview-intro .button { width: 100%; }
  .overview-details { padding: 28px 22px; border-radius: 22px; }
  .overview-features { grid-template-columns: 1fr; }
  .overview-features span, .overview-features span:first-child, .overview-features span:nth-child(3) { min-height: 58px; padding: 0; border-left: 0; border-top: 1px solid rgba(255,255,255,.11); }
  .overview-features span:first-child { border-top: 0; }
  .overview-ships { margin-top: 28px; }
  .game-overview .ship-list span { padding: 10px 13px; font-size: 11px; }
  .hero-gallery-controls { justify-content: center; margin-top: 15px; }
  .hero-gallery-controls { grid-template-columns: 44px minmax(72px, auto) 44px 44px; gap: 8px; }
  .hero-gallery-controls button { width: 44px; height: 44px; }
  .feature-card, .feature-card-large { grid-row: auto; min-height: 520px; }
  .feature-card:not(.feature-card-large) { min-height: 370px; }
  .feature-copy { inset: auto 23px 24px; }
  .feature-copy h3 { font-size: 42px; }
  .gallery { padding: 105px 0; }
  .gallery-heading { width: calc(100% - 36px); margin-bottom: 42px; }
  .gallery-controls { display: none; }
  .gallery-track { padding: 0 18px; }
  .gallery-track figure { flex-basis: 87vw; }
  .gallery-track figcaption { align-items: flex-start; flex-direction: column; gap: 5px; padding: 16px; }
  .studio { padding: 88px 18px; }
  .studio-card { padding: 31px 24px; gap: 38px; }
  .studio-identity { align-items: flex-start; flex-direction: column; gap: 20px; }
  .studio-identity img { width: 82px; }
  .studio-copy > p { font-size: 16px; }
  .studio-meta { gap: 30px; }
  .studio-meta strong { font-size: 28px; }
  .studio .button { width: 100%; }
  footer { min-height: 150px; grid-template-columns: 1fr; align-content: center; gap: 24px; }
  footer > div { justify-content: flex-start; }
  .mobile-play { position: fixed; z-index: 57; left: max(10px, env(safe-area-inset-left)); right: max(10px, env(safe-area-inset-right)); bottom: max(10px, env(safe-area-inset-bottom)); min-height: 56px; display: flex; align-items: center; justify-content: center; gap: 11px; border: 1px solid rgba(0,0,0,.15); border-radius: 17px; background: var(--acid); color: var(--ink); box-shadow: 0 18px 55px rgba(0,0,0,.32); font-size: 14px; font-weight: 800; opacity: 0; pointer-events: none; transform: translateY(calc(100% + 22px)); transition: opacity .25s ease, transform .25s ease; }
  body.show-mobile-play .mobile-play { opacity: 1; pointer-events: auto; transform: translateY(0); }
}

@media (max-width: 420px) {
  .brand { min-height: 44px; }
  .hero { padding-left: 16px; padding-right: 16px; }
  .hero h1 { font-size: clamp(54px, 18vw, 76px); }
  .hero-intro { font-size: 16px; }
  .proof-item strong { font-size: 22px; }
  .gallery-track { scroll-padding-inline: 16px; padding-inline: 16px; }
  .studio-meta { flex-direction: column; gap: 18px; }
  .manifesto h2, .studio h2 { overflow-wrap: anywhere; }
}

@media (max-height: 600px) and (max-width: 900px) {
  .mobile-menu { padding-top: 82px; }
  .mobile-menu nav a { min-height: 58px; font-size: 28px; }
  .mobile-menu-footer { padding-top: 24px; }
}

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