/* NachtBlau Interactive — Game Studio */

:root,
[data-theme="dark"] {
  color-scheme: dark;
  --bg: #060a14;
  --bg-elevated: #0b101c;
  --bg-surface: #0f1524;
  --bg-surface-2: #121a2c;
  --header-bg: rgba(6, 10, 20, 0.92);
  --header-border: rgba(36, 54, 82, 0.5);
  --border: #1e2d45;
  --border-subtle: #162033;
  --text: #e8eef8;
  --text-muted: #8b9db8;
  --text-faint: #5a6d88;
  --accent: #52d4ee;
  --accent-hover: #7ee4f8;
  --accent-soft: rgba(82, 212, 238, 0.08);
  --accent-border: rgba(82, 212, 238, 0.28);
  --accent-glow: rgba(82, 212, 238, 0.14);
  --radius: 8px;
  --radius-sm: 5px;
  --font: 'Inter', system-ui, sans-serif;
  --font-display: 'Plus Jakarta Sans', var(--font);
  --font-ui: 'Barlow Condensed', var(--font);
  --max: 880px;
  --glow: 0 0 32px var(--accent-glow);
  --bg-deep: var(--bg);
  --bg-main: var(--bg-elevated);
  --bg-card: var(--bg-surface);
  --border-bright: var(--accent-border);
}

[data-theme="light"] {
  color-scheme: light;
  --bg: #eef2f8;
  --bg-elevated: #ffffff;
  --bg-surface: #ffffff;
  --bg-surface-2: #f4f7fb;
  --header-bg: rgba(255, 255, 255, 0.92);
  --header-border: #d8e2ef;
  --border: #c5d3e3;
  --border-subtle: #e2e9f2;
  --text: #0c1524;
  --text-muted: #4a5f78;
  --text-faint: #7a8fa8;
  --accent: #007e9a;
  --accent-hover: #006580;
  --accent-soft: rgba(0, 126, 154, 0.08);
  --accent-border: rgba(0, 126, 154, 0.28);
  --accent-glow: rgba(0, 126, 154, 0.12);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--font);
  font-size: 0.9375rem;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  min-height: 100vh;
  letter-spacing: -0.01em;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: 1.25rem;
}

.site-top,
#main-content,
.footer {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
}

.bg-atmosphere,
.bg-grid,
.bg-stars {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.bg-atmosphere {
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(82, 212, 238, 0.05), transparent 60%),
    var(--bg);
}

.bg-stars {
  background-image: radial-gradient(circle, rgba(255,255,255,0.35) 0.5px, transparent 0.5px);
  background-size: 64px 64px;
  opacity: 0.05;
  mask-image: linear-gradient(180deg, black 0%, transparent 65%);
}

.bg-grid {
  background-image:
    linear-gradient(var(--border-subtle) 1px, transparent 1px),
    linear-gradient(90deg, var(--border-subtle) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: 0.15;
  mask-image: radial-gradient(ellipse 70% 40% at 50% 0%, black, transparent);
}

.bg-vignette {
  background: radial-gradient(ellipse 85% 75% at 50% 50%, transparent 40%, rgba(5, 8, 24, 0.65) 100%);
}

.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.visible { opacity: 1; transform: none; }
.hidden { display: none !important; }
.text-muted { color: var(--text-muted); }

/* ─── Release bar ─── */
.site-top { position: sticky; top: 0; z-index: 110; }

.release-bar {
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border-subtle);
}

.release-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 2.375rem;
  padding-block: 0.35rem;
}

.release-bar-start {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 0;
}

.release-bar-meta,
.release-bar-info {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 0;
}

.release-bar-kicker,
.release-bar-badge {
  flex-shrink: 0;
  font-family: var(--font-ui);
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--accent);
  padding: 0.2rem 0.45rem;
  border-radius: 2px;
}

.release-bar-title {
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.release-bar-date {
  font-size: 0.6875rem;
  color: var(--text-faint);
  white-space: nowrap;
}

.release-bar-date::before {
  content: '·';
  margin-right: 0.5rem;
  color: var(--border);
}

.countdown {
  display: flex;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  flex-shrink: 0;
  background: var(--bg-elevated);
}

.countdown-seg {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 2.85rem;
  padding: 0.25rem 0.5rem;
  border-right: 1px solid var(--border-subtle);
}

.countdown-seg:last-child { border-right: none; }

.countdown-val {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: var(--accent);
  line-height: 1.1;
}

.countdown-lbl {
  font-size: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.countdown-sep { display: none; }

.release-bar-released {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
}

.release-bar-link,
.release-bar-cta {
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--accent);
  white-space: nowrap;
}

.release-bar-link:hover { color: var(--accent-hover); }

/* ─── Header ─── */
.header {
  background: var(--header-bg);
  border-bottom: 1px solid var(--header-border);
  backdrop-filter: blur(14px);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
  min-height: auto;
  padding-block: 0.75rem;
}

.nav-end { display: contents; }

.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.logo-mark {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.logo-lockup {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
  line-height: 1.05;
}

.logo-brand {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: -0.035em;
}

.logo-nacht { color: var(--text); }

.logo-blau {
  background: linear-gradient(118deg, #b8f4ff 0%, #5eeaff 42%, #3d8fb8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

[data-theme="light"] .logo-blau {
  background: linear-gradient(118deg, #0891b2 0%, #007e9a 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.logo-role {
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.logo-publisher {
  letter-spacing: 0.1em;
  color: var(--text-muted);
  font-weight: 500;
}

.logo-publisher::before {
  content: '·';
  margin: 0 0.3rem;
  color: var(--border);
  font-weight: 400;
}

.logo-lockup-footer .logo-brand { font-size: 0.9375rem; }
.logo-lockup-footer .logo-role { font-size: 0.5rem; }

.logo-wordmark,
.logo-wordmark-name,
.logo-wordmark-sub { display: none; }

.nav-links {
  display: flex;
  flex: 1 1 100%;
  flex-wrap: wrap;
  list-style: none;
  gap: 0.125rem;
  align-items: center;
  padding-top: 0.5rem;
  border-top: 1px solid var(--border-subtle);
}

.nav-links a {
  padding: 0.4rem 0.7rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--text-muted);
  border-radius: var(--radius-sm);
  transition: color 0.15s, background 0.15s;
}

.nav-links a:hover { color: var(--text); background: var(--accent-soft); }

.nav-links a.active {
  color: var(--accent);
  background: var(--accent-soft);
}

.nav-cta,
.btn-nav-cta { margin-left: 0.35rem !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span { width: 18px; height: 2px; background: var(--text); }

.theme-toggle {
  border: none;
  border-left: 1px solid var(--border-subtle);
  padding-left: 0.65rem;
  margin-left: auto;
  background: none;
  cursor: pointer;
}

.theme-toggle-track {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 2.75rem;
  height: 1.4rem;
  padding: 2px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.theme-toggle-thumb {
  position: absolute;
  top: 2px; left: 2px;
  width: calc(50% - 2px);
  height: calc(100% - 4px);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 3px;
  transition: transform 0.2s;
}

[data-theme="light"] .theme-toggle-thumb { transform: translateX(100%); }

.theme-icon {
  position: relative;
  z-index: 1;
  justify-self: center;
  color: var(--text-faint);
}

.theme-toggle[data-mode="dark"] .theme-icon-moon,
.theme-toggle[data-mode="light"] .theme-icon-sun { color: var(--accent); }

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.6rem 1.15rem;
  font-family: var(--font);
  font-size: 0.8125rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s, box-shadow 0.15s;
  white-space: nowrap;
}

.btn-sm { padding: 0.4rem 0.85rem; font-size: 0.75rem; }
.btn-lg { padding: 0.8rem 1.4rem; font-size: 0.875rem; }

.btn-play,
.btn-primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #041018;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0;
  box-shadow: none;
}

.btn-play:hover,
.btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  box-shadow: 0 4px 14px var(--accent-glow);
}

.nav-cta.btn-play {
  font-size: 0.75rem;
  padding: 0.4rem 0.9rem;
}

.btn-play-icon svg { flex-shrink: 0; }

.btn-secondary,
.btn-outline {
  background: rgba(15, 23, 41, 0.55);
  border-color: var(--border);
  color: var(--text);
  backdrop-filter: blur(6px);
}

[data-theme="light"] .btn-secondary {
  background: var(--bg-surface);
  color: var(--text-muted);
}

.btn-secondary:hover,
.btn-outline:hover {
  border-color: var(--accent-border);
  color: var(--text);
}

.btn-ghost {
  background: transparent;
  color: var(--text-muted);
  border-color: transparent;
}

.btn-ghost:hover { color: var(--accent); }

/* ─── Cinematic hero ─── */
.hero-cinema {
  position: relative;
  z-index: 1;
  min-height: clamp(24rem, 65vh, 32rem);
  display: flex;
  align-items: center;
  padding: 0;
  overflow: hidden;
  border-bottom: 1px solid var(--border-subtle);
}

.hero-cinema-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: 0;
}

.hero-cinema-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

.hero-cinema-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5,8,24,0.5) 0%, rgba(5,8,24,0.25) 40%, rgba(5,8,24,0.88) 100%),
    linear-gradient(90deg, rgba(5,8,24,0.75) 0%, rgba(5,8,24,0.35) 50%, rgba(5,8,24,0.55) 100%);
}

.hero-cinema-wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 3.5rem 0;
}

.hero-cinema-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.hero-cinema-content {
  max-width: none;
}

.hero-game-box {
  max-width: 100%;
  padding: 0.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(5, 8, 24, 0.65);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.game-box-frame {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border);
}

.game-box-frame img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.game-box-live {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  z-index: 1;
  font-family: var(--font-ui);
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2rem 0.45rem;
  background: rgba(6, 10, 20, 0.82);
  color: var(--accent);
  border: 1px solid var(--accent-border);
  border-radius: var(--radius-sm);
}

.game-box-stats {
  margin-top: 0.85rem;
  padding-top: 0.85rem;
  gap: 0.75rem 1rem;
}

.game-box-stats li {
  flex: 1;
  min-width: 4.5rem;
}

.game-box-platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.85rem;
}

.btn-play-hero {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.platform-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-ui);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.35rem 0.65rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  background: var(--bg-surface-2);
}

.platform-badge-lg {
  padding: 0.45rem 0.85rem;
  font-size: 0.75rem;
}

.platform-badge-icon {
  color: var(--accent);
  font-size: 0.9em;
  line-height: 1;
}

.title-plate {
  margin-bottom: 0.5rem;
}

.hero-publisher {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.35rem;
  padding: 0.65rem 0.85rem;
  width: fit-content;
  max-width: 100%;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  background: rgba(5, 8, 24, 0.55);
  backdrop-filter: blur(8px);
}

.hero-publisher-mark {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  filter: drop-shadow(0 0 12px rgba(94, 234, 255, 0.2));
}

.hero-publisher-brand {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 0.1rem;
}

.hero-publisher-role {
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.publisher-credit {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 0.5rem;
}

.publisher-credit .logo-nacht,
.publisher-credit .logo-blau {
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
}

.publisher-credit .logo-blau {
  background: none;
  -webkit-text-fill-color: var(--accent);
  color: var(--accent);
}

.hero-game-kicker {
  font-family: var(--font-ui);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.hero-game-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 3.75rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.95;
  margin-bottom: 0;
}

.hero-game-sub {
  display: block;
  font-size: 0.42em;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.15em;
}

.hero-game-tagline {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 0.65rem;
}

.hero-game-desc,
.hero-desc,
.hero-lead,
.hero-text {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 34rem;
  margin-bottom: 1.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.25rem;
}

.hero-facts,
.metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 1.75rem;
  list-style: none;
  padding-top: 1rem;
  border-top: 1px solid var(--border-subtle);
}

.hero-facts li { display: flex; flex-direction: column; gap: 0.1rem; }

/* ─── Titles strip (publisher portfolio) ─── */
.titles-strip {
  position: relative;
  z-index: 1;
  padding: 1.5rem 0 2rem;
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--border-subtle);
}

.titles-strip-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem 2rem;
}

.titles-strip-head {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 8rem;
}

.titles-strip-label {
  font-family: var(--font-display);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}

.titles-strip-count {
  font-size: 0.6875rem;
  color: var(--text-faint);
}

.title-card {
  display: flex;
  align-items: stretch;
  flex: 1;
  min-width: min(100%, 28rem);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-surface);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.title-card:hover {
  border-color: var(--accent-border);
  background: var(--bg-surface-2);
}

.title-card-art {
  position: relative;
  width: 9.5rem;
  flex-shrink: 0;
}

.title-card-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.title-card-play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(5, 8, 24, 0.35);
  color: var(--accent);
  opacity: 0;
  transition: opacity 0.2s;
}

.title-card:hover .title-card-play { opacity: 1; }

.title-card-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.2rem;
  padding: 0.85rem 1.1rem;
}

.title-card-tag {
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--accent);
  padding: 0.15rem 0.4rem;
  border-radius: 2px;
  width: fit-content;
}

.title-card-body strong {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.title-card-meta {
  font-size: 0.75rem;
  color: var(--text-faint);
}

.titles-strip-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  flex: 1;
}

.title-card-tag-live {
  color: var(--accent);
  background: var(--accent-soft);
  border: 1px solid var(--accent-border);
}

.title-card-soon {
  opacity: 0.55;
  pointer-events: none;
  border-style: dashed;
}

.title-card-art-empty {
  display: grid;
  place-items: center;
  background: var(--bg-surface-2);
  min-height: 5.5rem;
}

.title-card-soon-label {
  font-family: var(--font-ui);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--text-faint);
}

.hero-fact-val,
.metric dd {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--accent);
}

.hero-fact-lbl,
.metric dt {
  font-size: 0.6875rem;
  font-weight: 500;
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* legacy hero */
.hero { position: relative; z-index: 1; padding: 4rem 0; }
.hero-layout, .hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.hero-h1 { font-family: var(--font-display); font-size: 2.5rem; font-weight: 700; }

.project-card, .hero-project {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-surface);
}

/* ─── Sections ─── */
.section {
  position: relative;
  z-index: 1;
  padding: 4.5rem 0;
}

.section-game { background: var(--bg-elevated); border-top: 1px solid var(--border-subtle); }
.section-studio { border-top: 1px solid var(--border-subtle); }

.section-alt,
.play-section {
  background: var(--bg-surface-2);
  border-top: 1px solid var(--border-subtle);
}

.section-head,
.section-top {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border-subtle);
}

.section-kicker,
.section-eyebrow,
.section-label {
  font-family: var(--font-ui);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.45rem;
}

.section-h2,
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 0.45rem;
}

.section-intro,
.section-desc {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 36rem;
}

.section-intro strong { color: var(--text); font-weight: 600; }

.section-head-actions,
.section-actions { display: flex; flex-wrap: wrap; gap: 0.5rem; }

/* ─── Play stage ─── */
.play-stage {
  position: relative;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 2rem;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.28);
}

.lumina-poster { position: relative; }

.lumina-poster img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.play-stage-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(5, 8, 24, 0.45);
}

.lumina-video-inner {
  position: relative;
  width: 100%;
  height: min(56vh, 520px);
  background: var(--bg);
}

.lumina-video-embed {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.play-stage.is-expanded .lumina-video-inner { height: min(72vh, 640px); }

.play-stage-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 1rem;
  background: var(--bg-surface-2);
  border-top: 1px solid var(--border-subtle);
  font-size: 0.75rem;
  color: var(--text-faint);
}

.play-status {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--accent);
  padding: 0.2rem 0.45rem;
  border-radius: 2px;
}

.play-stage-bar .btn { margin-left: auto; }
.play-hint { color: var(--text-faint); }

/* ─── Game features ─── */
.game-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.game-feature {
  padding: 1.25rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-surface);
}

.game-feature-icon { display: none; }

.game-feature-num {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 0.5rem;
}

.game-feature strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.game-feature p {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.game-details {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.game-panel h3 {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 1rem;
}

.game-panel-text {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.planet-grid { display: flex; flex-direction: column; gap: 0.75rem; }

.planet-card {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-subtle);
}

.planet-card:last-child { border-bottom: none; }

.planet-card-dot {
  width: 6px;
  height: 6px;
  margin-top: 0.4rem;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.planet-card strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.15rem;
}

.planet-card span {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.45;
}

/* legacy panels */
.info-grid, .details-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.info-panel, .detail-card, .about-panel, .studio-block { padding: 1.25rem; border: 1px solid var(--border); border-radius: var(--radius); background: var(--bg-surface); }
.info-panel h3, .detail-title { font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-faint); margin-bottom: 1rem; }

.tag-group, .detail-meta, .tag-row { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 0.85rem; }

.tag, .badge {
  font-size: 0.6875rem;
  font-weight: 600;
  padding: 0.25rem 0.55rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  color: var(--text-muted);
}

.tag-accent, .badge-accent {
  color: var(--accent);
  border-color: var(--accent-border);
  background: var(--accent-soft);
}

.tag-group span, .platform-tag {
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: var(--text-muted);
}

.info-list, .feature-list, .planet-list, .studio-list { display: flex; flex-direction: column; gap: 1rem; }

.feature-row strong, .planet-row strong, .studio-item strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.feature-row p, .planet-row span, .studio-item p {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.planet-row { padding-bottom: 0.75rem; border-bottom: 1px solid var(--border-subtle); }
.planet-row:last-child { border-bottom: none; }

.info-sub, .detail-block { margin-top: 0.75rem; }

.info-label, .detail-label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 0.45rem;
}

/* ─── Studio ─── */
.studio-grid, .about-grid, .studio-columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.studio-card {
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-surface);
}

.studio-card h3, .studio-block-title, .about-panel h3 {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 1.25rem;
}

.studio-item {
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-subtle);
}

.studio-item:last-child { border-bottom: none; padding-bottom: 0; }
.studio-item.is-active strong,
.pipeline-item.is-active strong { color: var(--accent); }

.studio-item-meta {
  font-size: 0.6875rem;
  color: var(--accent);
  margin-bottom: 0.2rem;
  font-weight: 600;
}

.studio-manifest {
  margin-bottom: 2rem;
  padding: 1.25rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-surface);
}

.studio-manifest p {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.55;
  color: var(--text-muted);
}

.pipeline-item {
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-subtle);
}

.pipeline-item:last-child { border-bottom: none; }

.pipeline-item-head {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.35rem;
}

.pipeline-status {
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.15rem 0.4rem;
  border: 1px solid var(--border);
  border-radius: 2px;
  color: var(--text-faint);
}

.pipeline-status.is-live {
  color: var(--bg);
  background: var(--accent);
  border-color: var(--accent);
}

.pipeline-tag {
  font-size: 0.625rem;
  color: var(--text-faint);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pipeline-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.pipeline-item p {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.cta-band, .studio-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding: 1.5rem 1.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-surface);
}

.cta-band-title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.cta-band p { font-size: 0.875rem; color: var(--text-muted); max-width: 32rem; }

/* ─── Careers ─── */
.page, .page-main { position: relative; z-index: 1; padding: 3.5rem 0 5rem; }

.page-intro, .page-header {
  max-width: 40rem;
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-subtle);
}

.page-h1, .page-title {
  font-family: var(--font-display);
  font-size: clamp(1.875rem, 4vw, 2.375rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
}

.page-sub, .page-lead { font-size: 1rem; color: var(--text-muted); margin-bottom: 1rem; }

.notice-box, .page-notice {
  font-size: 0.8125rem;
  color: var(--text-faint);
  line-height: 1.6;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border-subtle);
}

.process-steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.process-steps li span {
  display: block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.45rem;
}

.process-steps strong { display: block; font-size: 0.875rem; font-weight: 600; margin-bottom: 0.25rem; }
.process-steps p { font-size: 0.8125rem; color: var(--text-muted); }

.careers-page, .careers-layout {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 3rem;
}

.roles-panel, .positions-panel, .form-panel, .apply-panel { padding: 0; }

.panel-h2, .panel-title {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.panel-lead, .panel-desc { font-size: 0.8125rem; color: var(--text-muted); margin-bottom: 1.25rem; }

.roles-grid, .positions-list { display: grid; gap: 0; }

.role-card, .position-item {
  width: 100%;
  text-align: left;
  padding: 0.9rem 0;
  border: none;
  border-bottom: 1px solid var(--border-subtle);
  background: transparent;
  cursor: pointer;
  font: inherit;
  color: inherit;
  transition: color 0.15s;
}

.role-card:hover { color: var(--accent); }
.role-card.is-selected { color: var(--accent); border-bottom-color: var(--accent); }

.role-card strong, .position-item strong { display: block; font-size: 0.875rem; font-weight: 600; margin-bottom: 0.2rem; }
.role-card p, .position-item p { font-size: 0.8125rem; color: var(--text-muted); }

.apply-form { display: flex; flex-direction: column; gap: 1.1rem; }
.form-row-2, .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.field, .form-field { display: flex; flex-direction: column; gap: 0.4rem; }
.field-label, .form-field > span { font-size: 0.75rem; font-weight: 500; color: var(--text-muted); }

.field input, .field select, .field textarea,
.form-field input, .form-field select, .form-field textarea {
  width: 100%;
  padding: 0.6rem 0.75rem;
  font-family: var(--font);
  font-size: 0.875rem;
  color: var(--text);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.field input:focus, .field select:focus, .field textarea:focus,
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--accent-border);
}

.field textarea, .form-field textarea { resize: vertical; min-height: 8rem; }

.field-check, .form-check {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.field-check input, .form-check input { margin-top: 0.2rem; accent-color: var(--accent); }
.field-check a, .form-check a { color: var(--accent); text-decoration: underline; }

.hp-field, .form-honeypot { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }

.form-feedback, .form-status { font-size: 0.8125rem; min-height: 1.25rem; }
.form-feedback.is-success, .form-status.is-success { color: var(--accent); }
.form-feedback.is-error, .form-status.is-error { color: #f87171; }

/* ─── Media gallery ─── */
.media-block { margin-top: 2.5rem; }

.media-block-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.media-block-title {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.media-block-hint {
  font-size: 0.6875rem;
  color: var(--text-faint);
}

.media-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem;
}

.media-shot { margin: 0; }

.media-shot-frame {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-color 0.2s, transform 0.2s;
}

.media-shot:hover .media-shot-frame {
  border-color: var(--accent-border);
}

.media-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-shot figcaption {
  font-size: 0.6875rem;
  color: var(--text-faint);
  margin-top: 0.35rem;
  line-height: 1.4;
}

.platforms-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
  margin-top: 2.5rem;
  padding: 1.25rem 1.5rem;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  background: var(--bg-surface);
}

.platforms-bar-label {
  font-family: var(--font-ui);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.platforms-bar-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

/* ─── Devlog / patch notes ─── */
.timeline, .changelog, .patch-notes { border-top: 1px solid var(--border-subtle); padding-top: 0.5rem; }

.patch-notes {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.patch-note {
  padding: 1.15rem 1.25rem;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  background: var(--bg-surface);
}

.patch-note-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.45rem;
}

.patch-tag {
  font-family: var(--font-ui);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 0.15rem 0.45rem;
  background: var(--accent-soft);
  color: var(--accent);
  border: 1px solid var(--accent-border);
  border-radius: 2px;
}

.patch-note-head time {
  font-size: 0.6875rem;
  color: var(--text-faint);
  margin-left: auto;
}

.patch-note-title {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.patch-note-body {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.changelog-row {
  display: grid;
  grid-template-columns: 7rem 1fr;
  gap: 2rem;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--border-subtle);
}

.changelog-row:last-child { border-bottom: none; }

.changelog-row time {
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--accent);
  padding-top: 0.15rem;
}

.changelog-row strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.changelog-row p { font-size: 0.8125rem; color: var(--text-muted); line-height: 1.6; }

/* ─── Contact ─── */
.contact-panel, .contact-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  padding: 1.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-surface);
}

.contact-aside, .contact-links { display: flex; flex-direction: column; gap: 0.5rem; min-width: 9rem; }

.contact-note, .contact-legal { margin-top: 1rem; font-size: 0.75rem; color: var(--text-faint); }
.contact-note a { color: var(--text-muted); text-decoration: underline; }

.contact-mail {
  display: inline-block;
  margin-top: 0.85rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--accent);
}

.contact-mail:hover { color: var(--accent-hover); }

.social-link {
  padding: 0.5rem 0.85rem;
  font-size: 0.8125rem;
  font-weight: 500;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  text-align: center;
  transition: border-color 0.15s, color 0.15s;
}

.social-link:hover { color: var(--accent); border-color: var(--accent-border); }

/* ─── Footer ─── */
.footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border-subtle);
  padding: 2.5rem 0 2rem;
  background: var(--bg-elevated);
}

.footer-row, .footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.footer-brand-lockup .logo-lockup { gap: 0.08rem; }

.footer-tag { display: none; }

.footer-nav { display: flex; flex-wrap: wrap; gap: 0.5rem 1.25rem; }
.footer-nav a, .footer-link { font-size: 0.75rem; color: var(--text-faint); }
.footer-nav a:hover { color: var(--accent); }

.footer-meta, .footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-subtle);
  font-size: 0.6875rem;
  color: var(--text-faint);
}

.footer-meta p, .footer-copy { max-width: 36rem; line-height: 1.55; }
.footer-meta a, .footer-legal a { color: var(--text-muted); }

/* ─── Legal ─── */
.legal-page { background: var(--bg); }
.legal-main { position: relative; z-index: 1; padding: 3rem 0 4rem; }

.legal-doc {
  max-width: 40rem;
  margin: 0 auto;
  padding: 1.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-surface);
}

.legal-doc-header {
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-subtle);
}

.legal-doc-header h1 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
}

.legal-back { white-space: nowrap; }
.legal-lead { color: var(--text-muted); font-size: 0.875rem; }
.legal-block { margin-bottom: 1.25rem; }
.legal-block h2 { font-size: 0.875rem; font-weight: 600; margin-bottom: 0.45rem; }
.legal-block p, .legal-block li { font-size: 0.8125rem; color: var(--text-muted); line-height: 1.65; }
.legal-block a { color: var(--accent); }
.legal-list { margin: 0.5rem 0 0 1.25rem; }
.legal-updated { margin-top: 1.5rem; padding-top: 1rem; border-top: 1px solid var(--border-subtle); font-size: 0.75rem; color: var(--text-faint); }

.maintenance {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.maintenance-box { text-align: center; }
.maintenance-box p { color: var(--text-muted); }

/* ─── Game ratings ─── */
.game-rating {
  margin-top: 1rem;
  padding: 1rem 1.1rem;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  background: var(--bg-surface);
}

.game-rating-summary {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
  margin-bottom: 0.85rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--border-subtle);
}

.game-rating-avg {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.game-rating-stars-display,
.game-rating-stars-input {
  display: inline-flex;
  align-items: center;
  gap: 0.15rem;
  color: var(--accent);
}

.game-rating-star,
.game-rating-star-btn {
  display: inline-flex;
  color: var(--text-faint);
}

.game-rating-star.is-filled,
.game-rating-star-btn.is-active,
.game-rating-star-btn:hover {
  color: var(--accent);
}

.game-rating-star-btn {
  padding: 0.15rem;
  border: none;
  background: none;
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: color 0.15s, transform 0.15s;
}

.game-rating-star-btn:hover {
  transform: scale(1.08);
}

.game-rating-star-btn:disabled {
  opacity: 0.5;
  cursor: wait;
}

.game-rating-count {
  font-size: 0.75rem;
  color: var(--text-faint);
}

.game-rating-input {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.game-rating-label {
  font-family: var(--font-ui);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.game-rating-msg {
  font-size: 0.75rem;
  color: var(--text-muted);
  min-height: 1.1rem;
}

.game-rating-msg.is-success { color: var(--accent); }
.game-rating-msg.is-error { color: #f87171; }

.game-rating-mini {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.35rem;
}

.game-rating-mini .game-rating-avg {
  font-size: 0.8125rem;
}

.game-rating-mini .game-rating-stars-display svg {
  width: 12px;
  height: 12px;
}

.game-rating-mini .game-rating-count {
  font-size: 0.6875rem;
}

.game-rating-mini .game-rating-count::before {
  content: '(';
}

.game-rating-mini .game-rating-count::after {
  content: ')';
}

/* ─── Responsive ─── */
@media (min-width: 700px) {
  .nav {
    flex-wrap: nowrap;
    gap: 1rem;
    min-height: 3.75rem;
    padding-block: 0;
  }

  .nav-links {
    flex: 1 1 auto;
    justify-content: flex-end;
    border-top: none;
    padding-top: 0;
    margin-right: 0.25rem;
  }

  .hero-cinema-grid {
    grid-template-columns: 1fr min(15rem, 34%);
    gap: 1.75rem;
    align-items: center;
  }

  .game-features { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
  .game-details { grid-template-columns: 1.2fr 0.8fr; gap: 2rem; }
  .media-gallery { grid-template-columns: repeat(4, 1fr); }
  .studio-grid, .about-grid, .studio-columns { grid-template-columns: 1fr 1fr; }
  .contact-panel, .contact-row { grid-template-columns: 1fr auto; gap: 2.5rem; }
}

@media (max-width: 960px) {
  .hero-layout, .hero-grid, .info-grid, .process-steps { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .titles-strip-inner { flex-direction: column; align-items: stretch; }
  .title-card { min-width: 0; }
  .title-card-art { width: 7.5rem; }
  .hero-cinema { min-height: auto; }
  .hero-cinema-wrap { padding: 2.5rem 0; }
  .hero-game-box { max-width: 100%; }
  .section { padding: 3.5rem 0; }
  .release-bar-inner { flex-wrap: wrap; }
  .release-bar-start { flex: 1 1 100%; }
  .release-bar-meta { flex-wrap: wrap; }
  .release-bar-link { display: none; }
  .contact-panel, .contact-row { grid-template-columns: 1fr; }
  .footer-row { flex-direction: column; align-items: flex-start; }
  .changelog-row { grid-template-columns: 1fr; gap: 0.35rem; }
}

@media (max-width: 640px) {
  .release-bar-date { display: none; }
  .hero-studio-type { border: none; padding-left: 0; width: 100%; }
  .nav-toggle { display: flex; }
  .nav { position: relative; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    padding: 0.35rem;
    margin-top: 0.25rem;
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
  }
  .nav-links.open { display: flex; }
  .lumina-video-inner { height: 240px; }
  .btn-nav-cta { display: none; }
}
