:root {
  color-scheme: dark;
  --bg: #050506;
  --bg-soft: #0b0d10;
  --paper: #f6f2e9;
  --paper-muted: rgba(246, 242, 233, 0.7);
  --ink: #050506;
  --muted: rgba(246, 242, 233, 0.66);
  --faint: rgba(246, 242, 233, 0.42);
  --line: rgba(246, 242, 233, 0.15);
  --line-strong: rgba(246, 242, 233, 0.28);
  --game: #ff4b2f;
  --ai: #54d6ff;
  --wasabi: #b7ff2a;
  --gold: #ffcc66;
  --max: 1180px;
  --nav-h: 74px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html {
  min-width: 320px;
  background: var(--bg);
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 20px);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 12% 4%, rgba(255, 75, 47, 0.16), transparent 30rem),
    radial-gradient(circle at 88% 8%, rgba(84, 214, 255, 0.12), transparent 34rem),
    linear-gradient(180deg, #050506 0%, #0b0d10 42%, #050506 100%);
  color: var(--paper);
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 90;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    radial-gradient(ellipse at center, transparent 58%, rgba(0, 0, 0, 0.44));
  background-size: 100% 5px, 100% 100%;
  opacity: 0.18;
  mix-blend-mode: screen;
}

img,
video {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

p,
h1,
h2,
h3,
h4 {
  margin-top: 0;
}

p {
  color: var(--muted);
  line-height: 1.68;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.wrap {
  width: calc(100% - 44px);
  max-width: var(--max);
  min-width: 0;
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 70;
  height: var(--nav-h);
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(5, 5, 6, 0.86), rgba(5, 5, 6, 0));
  transition: background 180ms ease, box-shadow 180ms ease, backdrop-filter 180ms ease;
}

.site-header.is-scrolled::before,
.site-header:focus-within::before,
body.nav-open .site-header::before {
  background: rgba(5, 5, 6, 0.84);
  backdrop-filter: blur(18px);
  box-shadow: inset 0 -1px 0 var(--line);
}

.nav {
  display: flex;
  width: min(var(--max), calc(100% - 44px));
  min-height: var(--nav-h);
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
}

.brand-logo {
  width: auto;
  height: 42px;
  object-fit: contain;
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.38));
}

.brand-subtitle {
  color: var(--faint);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 23px;
  color: rgba(246, 242, 233, 0.76);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.nav-links a {
  position: relative;
  padding: 10px 0;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--paper);
}

.nav-links a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--game), var(--ai), var(--wasabi));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-links .nav-cta,
.nav-links .button-secondary {
  min-height: 40px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 0 16px;
  background: rgba(246, 242, 233, 0.08);
  color: var(--paper);
}

.nav-links .nav-cta::after,
.nav-links .button-secondary::after {
  display: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: rgba(246, 242, 233, 0.06);
  color: var(--paper);
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  content: "";
}

.nav-toggle span::before {
  transform: translateY(-6px);
}

.nav-toggle span::after {
  transform: translateY(4px);
}

.home-hero,
.page-hero,
.image-band {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.home-hero {
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: calc(var(--nav-h) + 56px) 0 64px;
}

.hero-noise {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 75% 30%, rgba(84, 214, 255, 0.14), transparent 28rem),
    radial-gradient(circle at 20% 75%, rgba(255, 75, 47, 0.18), transparent 24rem),
    linear-gradient(130deg, #050506 0%, #08090c 52%, #111216 100%);
}

.hero-noise::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.8), transparent);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(380px, 0.78fr);
  gap: clamp(36px, 7vw, 96px);
  align-items: center;
}

.hero-copy {
  max-width: 770px;
}

.micro,
.section-kicker,
.label,
.reel-kicker {
  margin: 0 0 18px;
  color: var(--wasabi);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  color: var(--paper);
  letter-spacing: 0;
}

h1 {
  margin-bottom: 24px;
  font-size: 7.4rem;
  font-weight: 950;
  line-height: 0.86;
}

h2 {
  margin-bottom: 18px;
  font-size: 4.8rem;
  font-weight: 950;
  line-height: 0.9;
}

h3 {
  margin-bottom: 12px;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}

.lead {
  max-width: 760px;
  color: rgba(246, 242, 233, 0.78);
  font-size: 1.18rem;
  line-height: 1.58;
}

.lead strong {
  color: var(--paper);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 28px;
}

.subtle-link {
  color: rgba(246, 242, 233, 0.72);
  font-size: 0.82rem;
  font-weight: 950;
  text-transform: uppercase;
}

.subtle-link:hover {
  color: var(--paper);
}

.button,
.button-secondary,
.button-ghost,
.button-quiet,
.text-link {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
  transition: transform 180ms var(--ease), border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.button,
.button-secondary,
.button-ghost,
.button-quiet {
  padding: 0 20px;
}

.button.primary,
.button.coral,
.button {
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: linear-gradient(135deg, var(--game), #ff8a3c);
  color: #fff;
  box-shadow: 0 24px 60px rgba(255, 75, 47, 0.25);
}

.button.cyan {
  background: linear-gradient(135deg, var(--ai), #7d7cff);
  box-shadow: 0 24px 60px rgba(84, 214, 255, 0.2);
}

.button.quiet,
.button-secondary,
.button-ghost,
.button-quiet {
  border: 1px solid var(--line-strong);
  background: rgba(246, 242, 233, 0.06);
  color: var(--paper);
  box-shadow: none;
}

.button:hover,
.button-secondary:hover,
.button-ghost:hover,
.button-quiet:hover,
.text-link:hover {
  transform: translateY(-2px);
  border-color: rgba(246, 242, 233, 0.44);
}

.text-link {
  color: var(--paper);
  gap: 12px;
}

.text-link::after {
  content: "";
  width: 44px;
  height: 1px;
  background: linear-gradient(90deg, var(--game), var(--ai));
}

.hero-media-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 14px;
  min-height: 640px;
  transform-style: preserve-3d;
}

.hero-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #111;
  box-shadow: 0 44px 110px rgba(0, 0, 0, 0.44);
}

.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.05);
  transition: transform 700ms var(--ease);
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 30%, rgba(0, 0, 0, 0.78) 100%);
}

.hero-card:hover img {
  transform: scale(1.04);
}

.hero-card span,
.hero-card strong {
  position: absolute;
  left: 22px;
  z-index: 2;
}

.hero-card span {
  bottom: 66px;
  color: var(--faint);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-card strong {
  bottom: 24px;
  color: var(--paper);
  font-size: 1.35rem;
  font-weight: 950;
}

.hero-card-game {
  grid-row: span 2;
}

.hero-card-ai {
  align-self: end;
  height: 54%;
}

.marquee-strip {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: #0a0b0d;
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 34px;
  padding: 17px 0;
  animation: marquee 34s linear infinite;
}

.marquee-track span {
  color: var(--faint);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.section,
.section-soft,
.band-dark {
  position: relative;
  padding: clamp(82px, 10vw, 150px) 0;
}

.section {
  background: var(--bg);
}

.flagship-section {
  background:
    linear-gradient(90deg, rgba(5, 5, 6, 0.97) 0%, rgba(5, 5, 6, 0.92) 45%, rgba(5, 5, 6, 0.74) 100%),
    url("/assets/cybersushi-level-02-neo-city-rooftop.jpg") center / cover;
}

.flagship-section::before,
.current-focus::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 78% 18%, rgba(183, 255, 42, 0.12), transparent 22rem);
  background-size: 100% 6px, 100% 100%;
  opacity: 0.35;
}

.flagship-section > .wrap,
.current-focus > .wrap {
  position: relative;
  z-index: 1;
}

.section-soft {
  background: #0b0d10;
}

.band-dark {
  border-block: 1px solid var(--line);
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 75, 47, 0.11), transparent 28rem),
    radial-gradient(circle at 90% 20%, rgba(84, 214, 255, 0.1), transparent 28rem),
    #090a0d;
}

.statement-grid,
.split,
.product-focus-grid,
.page-hero .wrap {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 0.9fr);
  gap: clamp(34px, 7vw, 90px);
  align-items: center;
}

.statement-grid h2 {
  margin: 0;
}

.statement-grid p {
  margin: 0;
  max-width: 720px;
  color: rgba(246, 242, 233, 0.74);
  font-size: 1.22rem;
}

.section-head {
  max-width: 960px;
  margin-bottom: clamp(34px, 5vw, 58px);
}

.section-head.compact {
  max-width: 800px;
}

.section-head p:last-child {
  max-width: 700px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.cinema-card {
  position: relative;
  display: block;
  min-height: min(78svh, 760px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #111;
  box-shadow: 0 44px 120px rgba(0, 0, 0, 0.48);
}

.cinema-card > img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.05);
  transform: scale(1.015);
  transition: transform 800ms var(--ease);
}

.cinema-card:hover > img {
  transform: scale(1.05);
}

.cinema-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 5, 6, 0.84) 0%, rgba(5, 5, 6, 0.34) 52%, rgba(5, 5, 6, 0.14) 100%),
    linear-gradient(180deg, transparent 40%, rgba(5, 5, 6, 0.88) 100%);
}

.cinema-copy {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  max-width: 620px;
  padding: clamp(28px, 5vw, 60px);
}

.game-logo {
  width: min(520px, 78vw);
  margin-bottom: 24px;
  filter: drop-shadow(0 18px 40px rgba(0, 0, 0, 0.45));
}

.cinema-copy p {
  max-width: 560px;
  color: rgba(246, 242, 233, 0.82);
  font-size: 1.14rem;
}

.cinema-copy span {
  display: inline-flex;
  margin-top: 14px;
  color: var(--wasabi);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.lane-grid,
.product-row,
.feature-grid,
.product-grid,
.grid-2,
.grid-3,
.grid-4,
.studio-tiles {
  display: grid;
  gap: 18px;
}

.lane-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.lane-panel,
.product-panel,
.text-card,
.contact-card,
.step,
.feature-card,
.product-card,
.image-frame,
.product-shot,
.code-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.02)),
    rgba(246, 242, 233, 0.035);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
}

.lane-panel {
  display: grid;
  min-height: 520px;
  align-content: space-between;
  gap: 36px;
  padding: clamp(28px, 4vw, 48px);
}

.lane-game {
  background:
    linear-gradient(180deg, rgba(255, 75, 47, 0.18), transparent 58%),
    rgba(246, 242, 233, 0.035);
}

.lane-ai {
  background:
    linear-gradient(180deg, rgba(84, 214, 255, 0.16), transparent 58%),
    rgba(246, 242, 233, 0.035);
}

.lane-panel h3 {
  font-size: 3.8rem;
  line-height: 0.9;
}

.lane-panel ul {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.lane-panel li {
  color: rgba(246, 242, 233, 0.74);
  font-weight: 760;
}

.lane-panel li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--wasabi);
  vertical-align: 1px;
}

.product-row {
  grid-template-columns: 1.25fr 0.875fr 0.875fr;
  align-items: stretch;
}

.product-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  min-height: 440px;
  align-content: end;
  gap: 22px;
  padding: 24px;
}

.product-panel img {
  width: 100%;
  min-height: 260px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.product-panel span,
.feature-content span,
.product-card .content span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--ai);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.product-panel h3 {
  margin-bottom: 10px;
}

.product-panel p {
  margin-bottom: 0;
}

.signal-card,
.phone-mini,
.terminal-preview,
.mock-screen {
  display: grid;
  gap: 12px;
  min-height: 260px;
  align-content: center;
  border: 1px solid rgba(84, 214, 255, 0.24);
  border-radius: 8px;
  background:
    radial-gradient(circle at 70% 10%, rgba(84, 214, 255, 0.16), transparent 16rem),
    rgba(5, 5, 6, 0.7);
  padding: 24px;
  color: rgba(246, 242, 233, 0.78);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

.signal-card span::before,
.terminal-preview span::before,
.terminal-lines span::before {
  content: "> ";
  color: var(--wasabi);
}

.terminal-lines {
  display: grid;
  min-height: 300px;
  align-content: center;
  gap: 18px;
  border-color: rgba(84, 214, 255, 0.3);
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 92% 12%, rgba(84, 214, 255, 0.16), transparent 18rem),
    linear-gradient(145deg, rgba(5, 5, 6, 0.88), rgba(10, 18, 22, 0.76));
  background-size: 100% 6px, 100% 100%, 100% 100%;
  padding: clamp(28px, 4vw, 48px);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

.terminal-lines span {
  color: var(--paper);
  font-size: 1.02rem;
  font-weight: 850;
}

.phone-mini {
  min-height: 260px;
}

.phone-mini strong {
  margin-bottom: 12px;
  color: var(--paper);
  font-size: 1.5rem;
}

.phone-mini span {
  display: grid;
  min-height: 42px;
  place-items: center;
  border: 1px solid rgba(246, 242, 233, 0.18);
  border-radius: 999px;
  color: var(--paper);
  font-family: Inter, sans-serif;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 0;
}

.pill-list span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  border: 1px solid rgba(246, 242, 233, 0.16);
  border-radius: 999px;
  background: rgba(246, 242, 233, 0.055);
  color: rgba(246, 242, 233, 0.82);
  padding: 0 14px;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.proof-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.65fr) minmax(380px, 1fr);
  gap: clamp(34px, 7vw, 90px);
  align-items: start;
}

.proof-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.proof-list article,
.news-list a,
.news-item {
  display: grid;
  gap: 18px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
}

.proof-list article {
  grid-template-columns: 64px 1fr;
}

.proof-list strong,
.step > strong,
.news-item time,
.news-item span {
  color: var(--wasabi);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.proof-list span {
  color: rgba(246, 242, 233, 0.82);
  font-size: 1.25rem;
  line-height: 1.35;
}

.page-hero {
  min-height: 78svh;
  display: grid;
  align-items: center;
  padding: calc(var(--nav-h) + 80px) 0 86px;
  background:
    radial-gradient(circle at 84% 12%, rgba(84, 214, 255, 0.14), transparent 28rem),
    radial-gradient(circle at 18% 76%, rgba(255, 75, 47, 0.13), transparent 30rem),
    #07080a;
}

.page-hero.simple {
  min-height: 66svh;
}

.page-hero.simple .wrap {
  grid-template-columns: minmax(0, 900px);
}

.page-hero h1,
.image-band h1 {
  font-size: 6.6rem;
}

.page-hero.product-hero h1 {
  font-size: 5.6rem;
}

.image-band,
.poster-section {
  min-height: 82svh;
  display: grid;
  align-items: end;
  padding: calc(var(--nav-h) + 78px) 0 74px;
}

.image-band .bg,
.poster-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.image-band .bg img,
.poster-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.08);
}

.image-band::before,
.poster-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(5, 5, 6, 0.9) 0%, rgba(5, 5, 6, 0.52) 54%, rgba(5, 5, 6, 0.18) 100%),
    linear-gradient(180deg, transparent 36%, #050506 100%);
}

.feature-grid,
.product-grid {
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.feature-card,
.product-card {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  isolation: isolate;
}

.feature-card {
  grid-column: span 6;
}

.feature-card-large,
.product-card.large {
  grid-column: span 8;
  min-height: 620px;
}

.feature-card:not(.feature-card-large),
.product-card.medium {
  grid-column: span 4;
}

.feature-card img,
.product-card .media img,
.studio-tile img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 620ms var(--ease);
}

.feature-card::before,
.product-card::before,
.studio-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(5, 5, 6, 0) 18%, rgba(5, 5, 6, 0.88) 100%);
}

.feature-card:hover img,
.product-card:hover .media img,
.studio-tile:hover img {
  transform: scale(1.04);
}

.feature-content,
.product-card .content,
.tile-copy {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: clamp(24px, 4vw, 42px);
}

.feature-content h3,
.product-card .content h3 {
  font-size: 3.8rem;
  line-height: 0.9;
}

.feature-content p,
.product-card .content p {
  max-width: 650px;
  margin-bottom: 0;
  color: rgba(246, 242, 233, 0.78);
}

.image-frame,
.product-shot {
  position: relative;
  overflow: hidden;
  min-height: 360px;
}

.image-frame img,
.product-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-frame.contain img,
.product-shot img {
  object-fit: contain;
  background: #0d0e12;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.text-card,
.contact-card {
  padding: 24px;
}

.text-card p,
.contact-card p {
  margin-bottom: 0;
}

.contact-card {
  display: grid;
  min-height: 240px;
  align-content: space-between;
  gap: 18px;
}

.contact-card .button-secondary {
  justify-self: start;
}

.step-list {
  display: grid;
  gap: 14px;
}

.step {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  padding: 22px;
}

.step h3 {
  margin-bottom: 6px;
  font-size: 1.22rem;
}

.step p {
  margin-bottom: 0;
}

.news-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.news-list a {
  grid-template-columns: 180px minmax(0, 1fr) 90px;
  gap: 24px;
}

.news-list span,
.news-list em {
  color: var(--faint);
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
}

.news-list strong {
  color: var(--paper);
  font-size: 1.55rem;
  line-height: 1.05;
}

.news-row {
  display: grid;
  gap: 14px;
}

.news-item {
  grid-template-columns: 110px minmax(0, 1fr) auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(246, 242, 233, 0.035);
  padding: 22px;
}

.news-item h3 {
  margin-bottom: 5px;
  font-size: 1.45rem;
}

.news-item p {
  margin-bottom: 0;
}

.studio-tiles {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.studio-tile {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #111;
}

.studio-tile::after {
  z-index: 0;
}

.tile-copy {
  z-index: 2;
}

.phone-demo {
  position: relative;
  width: min(430px, 100%);
  min-height: 640px;
  justify-self: end;
  border: 1px solid rgba(246, 242, 233, 0.22);
  border-radius: 36px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), transparent 32%),
    radial-gradient(circle at 50% 0%, rgba(84, 214, 255, 0.22), transparent 18rem),
    #090a0d;
  padding: 14px;
  box-shadow: 0 40px 110px rgba(0, 0, 0, 0.45);
}

.phone-speaker {
  position: absolute;
  top: 18px;
  left: 50%;
  width: 92px;
  height: 6px;
  border-radius: 999px;
  background: rgba(246, 242, 233, 0.22);
  transform: translateX(-50%);
}

.phone-screen {
  display: grid;
  gap: 16px;
  min-height: 610px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 88% 8%, rgba(255, 75, 47, 0.16), transparent 14rem),
    linear-gradient(180deg, #11141a, #07080a);
  padding: 44px 20px 20px;
}

.phone-top,
.phone-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.phone-top span {
  color: var(--paper);
  font-size: 1.08rem;
  font-weight: 950;
}

.phone-top strong {
  border: 1px solid rgba(183, 255, 42, 0.32);
  border-radius: 999px;
  color: var(--wasabi);
  padding: 7px 10px;
  font-size: 0.72rem;
  text-transform: uppercase;
}

.phone-card {
  display: grid;
  gap: 7px;
  border: 1px solid rgba(246, 242, 233, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  padding: 18px;
}

.phone-card.primary {
  background:
    linear-gradient(135deg, rgba(84, 214, 255, 0.18), rgba(255, 75, 47, 0.14)),
    rgba(255, 255, 255, 0.07);
}

.phone-card small,
.phone-card span,
.phone-actions span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.phone-card strong {
  color: var(--paper);
  font-size: 1.3rem;
  line-height: 1.08;
}

.phone-actions {
  align-self: end;
}

.phone-actions span {
  display: grid;
  min-width: 88px;
  min-height: 42px;
  place-items: center;
  border: 1px solid rgba(84, 214, 255, 0.28);
  border-radius: 999px;
  color: var(--paper);
  background: rgba(84, 214, 255, 0.08);
}

.legal {
  max-width: 860px;
}

.legal h1 {
  font-size: 5.6rem;
  line-height: 0.9;
}

.legal h2 {
  margin-top: 34px;
  font-size: 2rem;
}

.not-found {
  min-height: 100svh;
  display: grid;
  align-items: center;
}

.footer {
  border-top: 1px solid var(--line);
  background: #050506;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  width: min(var(--max), calc(100% - 44px));
  min-height: 120px;
  margin: 0 auto;
  gap: 28px;
  align-items: center;
  color: var(--faint);
  font-size: 0.88rem;
}

.footer-inner div {
  display: grid;
  gap: 8px;
}

.footer-inner strong {
  color: var(--paper);
}

.footer-logo {
  width: 154px;
  height: auto;
}

.footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--paper-muted);
}

.footer a {
  color: var(--paper);
}

.js [data-animate] {
  opacity: 1;
  transform: translateY(22px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}

.js [data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.flagship-hero {
  min-height: 100svh;
  background: #050506;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  z-index: -3;
}

.hero-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.08);
  transform: scale(1.02);
}

.flagship-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(5, 5, 6, 0.96) 0%, rgba(5, 5, 6, 0.62) 46%, rgba(5, 5, 6, 0.2) 100%),
    linear-gradient(180deg, rgba(5, 5, 6, 0.18) 0%, rgba(5, 5, 6, 0.2) 54%, #050506 100%);
}

.flagship-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    radial-gradient(circle at 72% 48%, rgba(183, 255, 42, 0.12), transparent 20rem),
    radial-gradient(circle at 34% 76%, rgba(255, 75, 47, 0.16), transparent 24rem);
  background-size: 100% 6px, 100% 100%, 100% 100%;
  opacity: 0.55;
}

.hero-stage {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.7fr);
  gap: clamp(30px, 6vw, 88px);
  align-items: center;
}

.hero-stage > * {
  min-width: 0;
}

.flagship-hero h1 {
  max-width: 860px;
  font-size: 6.4rem;
  line-height: 0.9;
  text-wrap: balance;
}

.flagship-hero .lead {
  max-width: 680px;
}

.hero-poster {
  position: relative;
  min-height: min(72svh, 720px);
  overflow: hidden;
  border: 1px solid rgba(246, 242, 233, 0.18);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 16%, rgba(183, 255, 42, 0.16), transparent 16rem),
    rgba(5, 5, 6, 0.62);
  box-shadow: 0 46px 130px rgba(0, 0, 0, 0.54);
}

.hero-poster::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(5, 5, 6, 0.18) 0%, rgba(5, 5, 6, 0.06) 50%, rgba(5, 5, 6, 0.82) 100%),
    linear-gradient(90deg, rgba(255, 75, 47, 0.16), transparent 48%, rgba(84, 214, 255, 0.16));
}

.hero-poster:hover .hero-mochi {
  transform: scale(1.045);
}

.hero-game-logo {
  position: absolute;
  top: clamp(18px, 3vw, 34px);
  left: clamp(18px, 3vw, 34px);
  z-index: 3;
  width: min(68%, 380px);
  filter: drop-shadow(0 18px 36px rgba(0, 0, 0, 0.55));
}

.hero-mochi {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 900ms var(--ease);
}

.poster-caption {
  position: absolute;
  right: clamp(18px, 3vw, 34px);
  bottom: clamp(18px, 3vw, 34px);
  left: clamp(18px, 3vw, 34px);
  z-index: 3;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}

.poster-caption span,
.studio-card span,
.tool-list span {
  color: var(--wasabi);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.poster-caption strong {
  color: var(--paper);
  font-size: 1.22rem;
}

.studio-strip {
  overflow: hidden;
  border-block: 1px solid rgba(246, 242, 233, 0.16);
  background: linear-gradient(90deg, rgba(255, 75, 47, 0.16), rgba(84, 214, 255, 0.12), rgba(183, 255, 42, 0.1));
}

.flagship-grid,
.tools-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(400px, 0.9fr);
  gap: clamp(34px, 7vw, 90px);
  align-items: center;
}

.feature-stack {
  display: grid;
  gap: 16px;
}

.feature-stack article {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #111;
}

.feature-stack article:first-child {
  min-height: 430px;
}

.feature-stack img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.04);
  transition: transform 720ms var(--ease);
}

.feature-stack article:hover img {
  transform: scale(1.04);
}

.feature-stack article::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(5, 5, 6, 0.86) 100%);
}

.feature-stack span {
  position: absolute;
  bottom: 20px;
  left: 22px;
  z-index: 2;
  color: var(--paper);
  font-weight: 950;
  text-transform: uppercase;
}

.studio-section {
  background:
    linear-gradient(90deg, rgba(8, 9, 11, 0.96) 0%, rgba(8, 9, 11, 0.88) 55%, rgba(8, 9, 11, 0.7) 100%),
    radial-gradient(circle at 15% 0%, rgba(255, 75, 47, 0.14), transparent 28rem),
    radial-gradient(circle at 82% 18%, rgba(84, 214, 255, 0.12), transparent 28rem),
    url("/assets/cybersushi-mochi-hero-card.jpg") right center / cover;
}

.current-focus {
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(5, 5, 6, 0.97) 0%, rgba(5, 5, 6, 0.88) 52%, rgba(5, 5, 6, 0.6) 100%),
    url("/assets/cybersushi-key-art.png") center / cover;
}

.studio-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.studio-card {
  min-height: 330px;
  border: 1px solid rgba(246, 242, 233, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(246, 242, 233, 0.075), rgba(246, 242, 233, 0.025)),
    rgba(5, 5, 6, 0.64);
  padding: clamp(24px, 3vw, 34px);
}

.studio-card h3 {
  margin-top: 34px;
  font-size: 2.9rem;
}

.tools-section {
  background:
    linear-gradient(180deg, #050506, #0a0d10),
    radial-gradient(circle at 84% 30%, rgba(84, 214, 255, 0.16), transparent 28rem);
}

.tool-list {
  display: grid;
  gap: 12px;
}

.tool-list a {
  display: grid;
  gap: 10px;
  border: 1px solid rgba(246, 242, 233, 0.16);
  border-radius: 8px;
  background: rgba(246, 242, 233, 0.045);
  padding: 22px;
  transition: transform 180ms var(--ease), border-color 180ms ease, background 180ms ease;
}

.tool-list a:hover {
  transform: translateY(-2px);
  border-color: rgba(84, 214, 255, 0.36);
  background: rgba(84, 214, 255, 0.075);
}

.tool-list strong {
  color: var(--paper);
  font-size: 1.22rem;
  line-height: 1.24;
}

.final-cta {
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(5, 5, 6, 0.92), rgba(5, 5, 6, 0.7)),
    url("/assets/cybersushi-mech-graveyard.jpg") center / cover;
  text-align: center;
}

.final-cta .wrap {
  display: grid;
  justify-items: center;
}

.final-cta img {
  width: min(260px, 62vw);
  margin-bottom: 28px;
}

.final-cta h2 {
  font-size: 5.2rem;
}

.final-cta p {
  max-width: 620px;
  margin-bottom: 4px;
  font-size: 1.15rem;
}

.current-title {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 0.9fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
}

.current-title img {
  width: 100%;
  min-height: 460px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.36);
}

.labs-page .page-hero {
  min-height: 62svh;
}

.labs-page .labs-hero {
  min-height: 58svh;
  background:
    linear-gradient(90deg, rgba(5, 5, 6, 0.98) 0%, rgba(5, 5, 6, 0.9) 62%, rgba(5, 5, 6, 0.78) 100%),
    radial-gradient(circle at 86% 24%, rgba(84, 214, 255, 0.2), transparent 28rem),
    radial-gradient(circle at 20% 90%, rgba(183, 255, 42, 0.08), transparent 24rem),
    #050506;
}

.labs-page .labs-hero .wrap {
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.52fr);
  align-items: end;
}

.labs-hero-copy {
  max-width: 760px;
}

.labs-hero-list {
  display: grid;
  gap: 12px;
}

.labs-hero-list a {
  display: grid;
  gap: 8px;
  border: 1px solid rgba(246, 242, 233, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(84, 214, 255, 0.09), rgba(246, 242, 233, 0.025)),
    rgba(5, 5, 6, 0.56);
  padding: 18px;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.labs-hero-list a:hover {
  transform: translateY(-2px);
  border-color: rgba(183, 255, 42, 0.42);
  background:
    linear-gradient(135deg, rgba(84, 214, 255, 0.12), rgba(183, 255, 42, 0.05)),
    rgba(5, 5, 6, 0.68);
}

.labs-hero-list span {
  color: var(--ai);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.labs-hero-list strong {
  color: var(--paper);
  font-size: 1.05rem;
  line-height: 1.2;
}

.labs-page .product-hero {
  min-height: 82svh;
  background:
    linear-gradient(90deg, rgba(5, 5, 6, 0.98) 0%, rgba(5, 5, 6, 0.88) 56%, rgba(5, 5, 6, 0.72) 100%),
    radial-gradient(circle at 88% 22%, rgba(84, 214, 255, 0.18), transparent 28rem),
    radial-gradient(circle at 20% 80%, rgba(255, 75, 47, 0.12), transparent 24rem),
    #050506;
}

.labs-page .product-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 100% 6px;
  opacity: 0.5;
}

.saberai-page .product-hero {
  background:
    linear-gradient(90deg, rgba(5, 5, 6, 0.99) 0%, rgba(5, 5, 6, 0.9) 48%, rgba(5, 5, 6, 0.58) 100%),
    radial-gradient(circle at 82% 18%, rgba(35, 136, 255, 0.28), transparent 30rem),
    radial-gradient(circle at 18% 82%, rgba(125, 124, 255, 0.16), transparent 24rem),
    url("/assets/saberai-grid-horizon.png") center / cover;
}

.saberai-page .product-hero .wrap {
  grid-template-columns: minmax(0, 0.84fr) minmax(460px, 1fr);
  max-width: 1280px;
}

.saberai-page .product-hero h1 {
  max-width: 780px;
  font-size: clamp(4.1rem, 6.7vw, 7.4rem);
  line-height: 0.91;
}

.saber-highlight {
  color: #9c86ff;
}

.saber-hero-copy {
  max-width: 700px;
}

.saber-proof-pills {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  max-width: 560px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.saber-proof-pills li {
  border: 1px solid rgba(246, 242, 233, 0.12);
  border-radius: 8px;
  background: rgba(246, 242, 233, 0.045);
  color: rgba(246, 242, 233, 0.84);
  padding: 14px 16px;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.saber-hero-visual {
  position: relative;
  overflow: hidden;
  min-height: min(62svh, 620px);
  margin: 0;
  border: 1px solid rgba(246, 242, 233, 0.18);
  border-radius: 8px;
  background:
    radial-gradient(circle at 62% 8%, rgba(35, 136, 255, 0.18), transparent 18rem),
    #050506;
  box-shadow: 0 44px 130px rgba(0, 0, 0, 0.58);
}

.saber-hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(5, 5, 6, 0.02) 0%, rgba(5, 5, 6, 0.32) 100%),
    linear-gradient(rgba(255, 255, 255, 0.032) 1px, transparent 1px);
  background-size: 100% 100%, 100% 6px;
}

.saber-hero-visual img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.02) contrast(1.04);
  transform: scale(1.015);
}

.saber-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(480px, 1fr);
  gap: clamp(30px, 6vw, 82px);
  align-items: center;
}

.section-heading {
  max-width: 980px;
  margin-bottom: clamp(32px, 5vw, 56px);
}

.section-heading.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading.centered .lead {
  margin-right: auto;
  margin-left: auto;
}

.saber-positioning .wrap {
  max-width: 880px;
  text-align: center;
}

.saber-positioning .lead {
  margin-right: auto;
  margin-left: auto;
}

.saber-wide-frame {
  min-height: 520px;
  background: #050506;
}

.saber-wide-frame img {
  filter: saturate(1.04) contrast(1.04);
}

.saber-capability-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.saber-capability-grid.compact {
  align-items: stretch;
}

.saber-capability-card {
  overflow: hidden;
  display: grid;
  grid-template-rows: minmax(240px, 0.86fr) auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(246, 242, 233, 0.065), rgba(246, 242, 233, 0.018)),
    rgba(5, 5, 6, 0.72);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
}

.saber-capability-card img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
  filter: saturate(1.04) contrast(1.03);
}

.saber-capability-card div {
  display: grid;
  gap: 10px;
  padding: 24px;
}

.saber-capability-card span {
  color: var(--ai);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.saber-capability-card h3 {
  font-size: 1.8rem;
  line-height: 1.02;
}

.saber-capability-card p {
  margin-bottom: 0;
}

.saber-workflow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.saber-workflow article {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 220px;
  border: 1px solid rgba(246, 242, 233, 0.15);
  border-radius: 8px;
  background: rgba(246, 242, 233, 0.04);
  padding: 20px;
}

.saber-workflow strong {
  color: var(--wasabi);
  font-size: 0.78rem;
  font-weight: 950;
}

.saber-workflow h3 {
  font-size: 1.32rem;
}

.saber-workflow p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.saber-safety-grid,
.saber-usecase-grid,
.saber-price-grid {
  display: grid;
  gap: 14px;
}

.saber-safety-grid,
.saber-usecase-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.saber-safety-grid article,
.saber-usecase-grid article,
.saber-price-grid article {
  border: 1px solid rgba(246, 242, 233, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(246, 242, 233, 0.055), rgba(246, 242, 233, 0.016)),
    rgba(5, 5, 6, 0.66);
  padding: 24px;
}

.saber-safety-grid h3,
.saber-usecase-grid h3 {
  font-size: 1.35rem;
}

.saber-safety-grid p,
.saber-usecase-grid p,
.saber-price-grid p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.saber-pricing {
  display: grid;
  grid-template-columns: minmax(0, 0.5fr) minmax(620px, 1.2fr);
  gap: clamp(30px, 6vw, 72px);
  align-items: start;
}

.saber-price-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.saber-price-grid article {
  min-height: 230px;
  min-width: 0;
}

.saber-price-grid span {
  color: var(--ai);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.saber-price-grid strong {
  display: block;
  margin: 18px 0 12px;
  color: var(--paper);
  font-size: clamp(1.65rem, 2.15vw, 2.35rem);
  line-height: 0.92;
  white-space: nowrap;
}

.saber-price-grid a {
  display: inline-flex;
  margin-top: 20px;
  color: var(--paper);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.saber-price-grid a:hover {
  color: var(--ai);
}

.saber-enterprise {
  border-block: 1px solid rgba(246, 242, 233, 0.12);
  background:
    radial-gradient(circle at 20% 22%, rgba(125, 124, 255, 0.18), transparent 24rem),
    #07080a;
}

.saber-signup-hero {
  min-height: 86svh;
}

.saber-final-panel {
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(5, 5, 6, 0.95), rgba(5, 5, 6, 0.74)),
    url("/assets/saberai-grid-horizon.png") center / cover;
}

.saber-final-panel .wrap {
  max-width: 880px;
}

.quiet-labs .product-panel {
  min-height: 360px;
  box-shadow: none;
}

.quiet-labs .product-panel h3 {
  font-size: 1.55rem;
  line-height: 1.08;
}

@media (max-width: 980px) {
  .hero-grid,
  .statement-grid,
  .split,
  .product-focus-grid,
  .saberai-page .product-hero .wrap,
  .labs-page .labs-hero .wrap,
  .page-hero .wrap,
  .proof-grid,
  .hero-stage,
  .flagship-grid,
  .tools-grid,
  .current-title,
  .saber-showcase {
    grid-template-columns: 1fr;
  }

  .hero-media-grid {
    min-height: 560px;
  }

  .lane-grid,
  .product-row,
  .studio-card-grid,
  .saber-capability-grid,
  .saber-workflow,
  .saber-safety-grid,
  .saber-usecase-grid,
  .saber-pricing,
  .saber-price-grid {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .feature-card-large,
  .feature-card:not(.feature-card-large),
  .product-card.large,
  .product-card.medium {
    grid-column: 1 / -1;
    min-height: 480px;
  }

  .grid-3,
  .grid-4,
  .studio-tiles {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .saber-hero-visual,
  .saber-wide-frame {
    min-height: 460px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    align-content: center;
    padding: 26px 0;
  }
}

@media (max-width: 760px) {
  :root {
    --nav-h: 70px;
  }

  body::before {
    opacity: 0.12;
  }

  .wrap,
  .nav,
  .footer-inner {
    width: calc(100% - 28px);
    max-width: var(--max);
  }

  .brand-subtitle {
    display: none;
  }

  .brand-logo {
    height: 38px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: fixed;
    inset: var(--nav-h) 12px auto;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(5, 5, 6, 0.96);
    padding: 12px;
    backdrop-filter: blur(18px);
  }

  body.nav-open .nav-links {
    display: grid;
  }

  .nav-links a,
  .nav-links .nav-cta,
  .nav-links .button-secondary {
    min-height: 52px;
    border: 0;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    background: transparent;
    padding: 17px 8px;
  }

  .nav-links a:last-child {
    border-bottom: 0;
  }

  .nav-links a::after {
    display: none;
  }

  .home-hero {
    padding-top: calc(var(--nav-h) + 54px);
  }

  h1,
  .page-hero h1,
  .image-band h1,
  .flagship-hero h1,
  .legal h1 {
    font-size: 3rem;
    line-height: 0.92;
  }

  h2,
  .final-cta h2 {
    font-size: 2.8rem;
    line-height: 0.94;
  }

  .hero-media-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-poster {
    min-height: 540px;
  }

  .hero-card,
  .hero-card-ai {
    min-height: 360px;
    height: auto;
  }

  .cinema-card {
    min-height: 620px;
  }

  .section,
  .section-soft,
  .band-dark {
    padding: clamp(62px, 16vw, 96px) 0;
  }

  .feature-card,
  .feature-card-large,
  .feature-card:not(.feature-card-large),
  .product-card.large,
  .product-card.medium,
  .studio-tile {
    min-height: 430px;
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .studio-tiles {
    grid-template-columns: 1fr;
  }

  .news-list a,
  .news-item,
  .proof-list article {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .phone-demo {
    justify-self: start;
    width: min(100%, 390px);
    min-height: 560px;
    border-radius: 30px;
  }

  .phone-screen {
    min-height: 528px;
  }

  .saberai-page .product-hero {
    min-height: auto;
  }

  .saber-hero-visual,
  .saber-wide-frame {
    min-height: 320px;
  }

  .saber-proof-pills {
    grid-template-columns: 1fr;
  }

  .saber-capability-card {
    grid-template-rows: minmax(210px, auto) auto;
  }

  .saber-capability-card img {
    min-height: 210px;
  }

  .phone-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
}

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

  .marquee-track {
    animation: none;
  }
}
