:root {
  --color-bg: #090814;
  --color-bg-soft: #11102a;
  --color-panel: #171633;
  --color-panel-2: #201b4a;
  --color-text: #ffffff;
  --color-muted: rgba(255, 255, 255, 0.68);
  --color-faint: rgba(255, 255, 255, 0.12);
  --color-purple: #7e2ff0;
  --color-blue: #4f80ff;
  --color-cyan: #45b1f8;
  --gradient-primary: linear-gradient(91deg, #7e2ff0 30.58%, #4f80ff 97.82%);
  --gradient-radial: radial-gradient(86.31% 271.79% at 13.69% -18.18%, #45b1f8 0%, #812aef 41.87%, #4f80ff 100%);
  --font-sans: "Lato", "Noto Sans SC", system-ui, sans-serif;
  --font-nav: "Karla", "Noto Sans SC", system-ui, sans-serif;
  --container: 1180px;
  --radius: 28px;
  --radius-small: 18px;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.35);
  --header-height: 98px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 18% 4%, rgba(126, 47, 240, 0.36), transparent 24rem),
    radial-gradient(circle at 88% 18%, rgba(79, 128, 255, 0.24), transparent 27rem),
    var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.55;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.75), transparent 70%);
}

img, video { display: block; max-width: 100%; }
video { background: #080713; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
.container { width: min(100% - 32px, var(--container)); margin-inline: auto; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
  padding-inline: max(24px, calc((100vw - var(--container)) / 2));
  transition: min-height 220ms ease, background 220ms ease, box-shadow 220ms ease;
}
.site-header.is-scrolled {
  min-height: 72px;
  background: rgba(9, 8, 20, 0.84);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(20px);
}
.site-header.is-menu-open {
  background: rgba(9, 8, 20, 0.96);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(20px);
}
.site-header__brand {
  display: inline-flex;
  align-items: center;
  min-width: 135px;
  font-family: var(--font-nav);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0;
  color: #fff;
}
.site-header__brand img { width: 135px; height: auto; }
.site-header__nav, .site-header__actions { display: flex; align-items: center; gap: 26px; }
.site-header__nav { justify-content: center; font-family: var(--font-nav); font-size: 16px; }
.site-header__nav a, .site-header__link, .nav-dropdown__trigger { color: rgba(255,255,255,0.9); }
.site-header__nav a:hover, .site-header__link:hover, .nav-dropdown__trigger:hover { color: #fff; }
.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}
.nav-dropdown__trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 0;
  background: transparent;
  padding: 14px 0;
  font-family: var(--font-nav);
  font-size: 16px;
  cursor: pointer;
}
.nav-dropdown__trigger .nav-icon--caret {
  font-size: 18px;
  line-height: 1;
  transition: transform 160ms ease;
}
.nav-dropdown:hover .nav-dropdown__trigger span,
.nav-dropdown.is-open .nav-dropdown__trigger span {
  transform: rotate(180deg);
}
.nav-dropdown__panel {
  position: absolute;
  top: calc(100% + 0px);
  left: 50%;
  width: 580px;
  transform: translate(-50%, 8px);
  display: grid;
  gap: 0;
  padding: 20px 30px;
  border: 0;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}
.nav-dropdown:hover .nav-dropdown__panel,
.nav-dropdown:focus-within .nav-dropdown__panel,
.nav-dropdown.is-open .nav-dropdown__panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}
.site-header__nav .nav-dropdown__all,
.site-header__nav .nav-dropdown__grid a {
  color: #2d2a67;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
}
.site-header__nav .nav-dropdown__all {
  display: block;
  margin: 15px 0;
  padding: 0;
  background: transparent;
  color: #812aef;
  font-size: 15px;
}
.nav-dropdown__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 22px;
  row-gap: 8px;
}
.site-header__nav .nav-dropdown__grid a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  min-height: 29px;
  padding: 4px 8px;
  border-radius: 0;
  white-space: nowrap;
}
.site-header__nav .nav-dropdown__grid a:hover,
.site-header__nav .nav-dropdown__all:hover {
  background: transparent;
  color: #812aef;
}
.nav-icon {
  display: inline-block;
  flex: 0 0 auto;
  font-family: "Arial", "Segoe UI Symbol", "Noto Sans SC", sans-serif;
  line-height: 1;
}
.nav-icon--star {
  color: #ffb300;
  font-size: 22px;
  transform: translateY(-1px);
}
.nav-icon--arrow {
  color: #6d6a86;
  font-size: 13px;
  font-weight: 400;
  transform: translateY(1px);
}
.nav-dropdown__divider {
  height: 1px;
  margin: 12px 0;
  background: rgba(45,42,103,0.14);
}
.nav-dropdown p {
  margin: 15px 0;
  color: #812aef;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 700;
}
.mobile-menu { display: none; }
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--color-faint);
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
}
.menu-toggle span { display: block; width: 18px; height: 2px; margin: 5px auto; background: #fff; }

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 0 24px;
  color: #fff;
  font-family: var(--font-nav);
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, opacity 180ms ease;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 16px 42px rgba(79,128,255,0.28); }
.button--primary { background: var(--gradient-radial); }
.button--ghost { min-height: 48px; border: 1px solid rgba(255,255,255,0.35); background: rgba(255,255,255,0.08); }
.button--small { min-height: 44px; padding-inline: 20px; }

.hero {
  position: relative;
  min-height: 980px;
  padding: 168px 0 86px;
  overflow: hidden;
}
.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(34px);
  opacity: 0.72;
  pointer-events: none;
}
.hero__glow--one { width: 460px; height: 460px; left: -160px; top: 150px; background: rgba(126,47,240,0.36); }
.hero__glow--two { width: 560px; height: 560px; right: -180px; top: 120px; background: rgba(79,128,255,0.24); }
.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(480px, 1.1fr);
  gap: 58px;
  align-items: center;
}
.hero h1 {
  margin: 0;
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
}
.hero h1 span {
  display: inline-block;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero p {
  max-width: 610px;
  margin: 26px 0 34px;
  color: rgba(255,255,255,0.65);
  font-size: 20px;
}

.asset-stage {
  position: relative;
  min-height: 650px;
  border-radius: 42px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.1), rgba(255,255,255,0.02)),
    radial-gradient(circle at 50% 30%, rgba(79,128,255,0.25), transparent 22rem);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.asset-stage__card {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 22px;
  background: rgba(10, 9, 22, 0.76);
  box-shadow: 0 18px 54px rgba(0,0,0,0.34);
}
.asset-stage__card span {
  position: absolute;
  z-index: 2;
  left: 14px;
  top: 12px;
  border-radius: 999px;
  background: rgba(10,9,22,0.7);
  padding: 6px 10px;
  font-family: var(--font-nav);
  font-size: 12px;
  font-weight: 800;
}
.asset-stage__card img { width: 100%; height: 100%; object-fit: cover; }
.asset-stage__card--wide { left: 42px; top: 38px; width: 76%; height: 245px; }
.asset-stage__card--tile { right: 36px; top: 248px; width: 190px; height: 190px; }
.asset-stage__card--sprite { left: 54px; bottom: 118px; width: 310px; height: 190px; }
.asset-stage__card--attack { left: 280px; bottom: 44px; }
.asset-stage__ui {
  position: absolute;
  right: 55px;
  bottom: 74px;
  display: flex;
  gap: 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  padding: 12px;
  backdrop-filter: blur(12px);
}
.asset-stage__ui img { width: 54px; height: 54px; object-fit: contain; }

.section { position: relative; padding: 108px 0; overflow: hidden; }
.section--alt {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.01)),
    #0d0c22;
}
.section-heading { max-width: 780px; margin: 0 auto 42px; text-align: center; }
.section-heading h2, .split-heading h2, .discord-cta h2, .site-footer__cta h2 {
  margin: 0;
  font-size: clamp(38px, 4.8vw, 64px);
  font-weight: 900;
  line-height: 1.04;
}
.section-heading p, .split-heading p, .game-card p, .asset-grid p, .media-grid p, .video-grid p, .pipeline-grid p, .blog-grid p, .site-footer p {
  color: var(--color-muted);
}
.split-heading {
  display: grid;
  max-width: 860px;
  gap: 14px;
  margin-bottom: 34px;
}
.split-heading--center { margin-inline: auto; text-align: center; }
.eyebrow {
  margin: 0;
  color: #9caeff;
  font-family: var(--font-nav);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.game-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(270px, 360px);
  gap: 18px;
  overflow-x: auto;
  padding: 6px 0 24px;
  scrollbar-width: thin;
}
.game-card {
  position: relative;
  min-height: 470px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--color-panel);
  box-shadow: var(--shadow);
}
.game-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.game-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(10,9,22,0.65), rgba(10,9,22,0.2) 30%, rgba(10,9,22,0.35) 60%, rgba(10,9,22,0.92));
}
.game-card div { position: relative; z-index: 1; padding: 24px; }
.game-card span, .asset-grid strong, .media-grid span, .pipeline-grid span, .blog-grid span {
  color: #a8b6ff;
  font-family: var(--font-nav);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.game-card h3, .asset-grid h3, .media-grid h3, .video-grid h3, .pipeline-grid h3, .blog-grid h3, .audio-grid h3 {
  margin: 8px 0;
  font-size: 23px;
  line-height: 1.15;
}
.game-card a, .pipeline-grid a {
  display: inline-block;
  margin-top: 14px;
  border-radius: 999px;
  background: var(--gradient-primary);
  padding: 10px 14px;
  font-family: var(--font-nav);
  font-size: 13px;
  font-weight: 900;
}

.workflow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1.2fr;
  gap: 18px;
  align-items: center;
  margin: 34px 0;
}
.workflow article, .asset-grid article, .media-grid article, .video-grid article, .audio-grid article, .pipeline-grid article, .blog-grid article, .subscribe {
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-small);
  background: linear-gradient(180deg, rgba(255,255,255,0.075), rgba(255,255,255,0.025));
  box-shadow: 0 20px 60px rgba(0,0,0,0.22);
}
.workflow article { min-height: 260px; padding: 18px; }
.workflow strong { color: #899fff; font-size: 44px; }
.workflow span, .asset-grid span {
  display: block;
  color: #fff;
  font-family: var(--font-nav);
  font-weight: 900;
}
.workflow img { width: 100%; height: 150px; object-fit: cover; border-radius: 14px; margin-bottom: 12px; }

.asset-grid, .media-grid, .audio-grid, .pipeline-grid, .blog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.asset-grid article { padding: 16px; }
.asset-grid img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; border-radius: 14px; margin-bottom: 14px; }
.asset-grid--styles article p { min-height: 48px; }
.more-line {
  margin: 24px 0;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  padding: 14px 18px;
  color: var(--color-muted);
  text-align: center;
}

.media-grid { grid-template-columns: repeat(4, 1fr); margin-top: 24px; }
.media-grid article, .video-grid article { padding: 14px; }
.media-grid video { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; border-radius: 14px; }
.video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.video-grid video { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; border-radius: 14px; }

.editor-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 44px;
  align-items: center;
}
.editor-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.editor-steps article {
  border-radius: 24px;
  background: rgba(255,255,255,0.08);
  padding: 14px;
}
.editor-steps span { display: block; margin-bottom: 10px; color: #a8b6ff; font-family: var(--font-nav); font-weight: 900; text-transform: uppercase; }
.editor-steps img { border-radius: 18px; width: 100%; aspect-ratio: 3 / 4; object-fit: cover; }
.editor-steps p { color: var(--color-muted); font-size: 14px; }

.audio-grid { grid-template-columns: repeat(3, 1fr); }
.audio-grid article { position: relative; min-height: 230px; padding: 24px; }
.audio-grid button {
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: #fff;
  cursor: pointer;
}
.audio-grid span { display: block; margin-top: 12px; color: #fff; font-weight: 700; }

.pipeline-grid { grid-template-columns: repeat(3, 1fr); }
.pipeline-grid article { overflow: hidden; padding: 0 0 22px; }
.pipeline-grid img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.pipeline-grid span, .pipeline-grid h3, .pipeline-grid p, .pipeline-grid a { margin-left: 20px; margin-right: 20px; }
.pipeline-grid span { display: block; margin-top: 18px; }

.discord-cta { padding: 76px 0; background: #0d0c22; }
.discord-cta__bubble {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  border-radius: 34px;
  background: linear-gradient(135deg, #2a3372, #4a2f8a);
  padding: 34px;
  box-shadow: var(--shadow);
}
.discord-cta img { width: 72px; }
.discord-cta h2 { font-size: clamp(28px, 3.2vw, 44px); }

.blog-grid { grid-template-columns: repeat(4, 1fr); }
.blog-card-link {
  display: block;
  min-width: 0;
}
.blog-grid article { overflow: hidden; }
.blog-grid img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.blog-grid h3, .blog-grid p, .blog-grid span { display: block; margin-left: 18px; margin-right: 18px; }
.blog-grid h3 { font-size: 18px; margin-top: 16px; }
.blog-grid p { margin-bottom: 20px; }
.subscribe {
  max-width: 760px;
  margin: 42px auto 0;
  padding: 28px;
  text-align: center;
}
.subscribe h3 { margin: 0; font-size: 32px; }
.subscribe form { display: flex; gap: 12px; justify-content: center; margin-top: 18px; }
.subscribe label { flex: 1; max-width: 420px; text-align: left; }
.subscribe label span { display: block; margin-bottom: 6px; color: var(--color-muted); font-size: 13px; }
.subscribe input {
  width: 100%;
  min-height: 54px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: #fff;
  padding: 0 18px;
}

.site-footer {
  background: linear-gradient(132.03deg, #1d1c23 13%, #121649 82.33%);
  padding: 96px 0 30px;
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 1.35fr 0.7fr 0.8fr;
  gap: 40px;
  align-items: start;
}
.site-footer img { width: 135px; margin-bottom: 20px; }
.site-footer__logo {
  display: inline-flex;
  margin-bottom: 20px;
  font-family: var(--font-nav);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0;
  color: #fff;
}
.site-footer h3 { margin: 0 0 14px; font-family: var(--font-nav); font-size: 14px; text-transform: uppercase; }
.site-footer nav { display: grid; gap: 10px; }
.site-footer a { color: rgba(255,255,255,0.74); }
.site-footer__bottom {
  width: min(100% - 32px, var(--container));
  margin: 54px auto 0;
  color: rgba(255,255,255,0.52);
  font-size: 13px;
}

.subpage-hero {
  position: relative;
  min-height: 620px;
  padding: 164px 0 82px;
  overflow: hidden;
}
.subpage-hero__glow {
  position: absolute;
  width: 620px;
  height: 620px;
  left: -170px;
  top: 120px;
  border-radius: 50%;
  background: rgba(126,47,240,0.28);
  filter: blur(36px);
}
.subpage-hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.8fr);
  gap: 64px;
  align-items: center;
}
.subpage-hero h1 {
  margin: 0;
  max-width: 850px;
  font-size: clamp(46px, 6vw, 82px);
  font-weight: 900;
  line-height: 0.98;
}
.subpage-hero h1::first-line {
  color: #fff;
}
.subpage-hero p:last-child {
  max-width: 720px;
  color: rgba(255,255,255,0.68);
  font-size: 20px;
}
.subpage-hero__preview {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 32px;
  background: rgba(255,255,255,0.06);
  box-shadow: var(--shadow);
}
.subpage-hero__preview > img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.subpage-hero__preview div {
  position: absolute;
  right: 20px;
  top: 20px;
  display: flex;
  gap: 8px;
  border-radius: 999px;
  background: rgba(8,7,19,0.65);
  padding: 8px;
}
.subpage-hero__preview div img {
  width: 42px;
  height: 42px;
}
.subpage-section {
  padding: 82px 0;
  background: #0d0c22;
}
.subpage-section:nth-of-type(odd) {
  background: #090814;
}
.subpage-section--compact {
  padding-top: 24px;
}
.subpage-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.subpage-card-grid--small {
  grid-template-columns: repeat(4, 1fr);
}
.subpage-card {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.025));
  box-shadow: 0 20px 60px rgba(0,0,0,0.22);
}
.subpage-card img,
.subpage-card video {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.subpage-card div {
  padding: 22px;
}
.subpage-card span,
.timeline-list span,
.feature-detail__copy span,
.pricing-grid article > span {
  color: #a8b6ff;
  font-family: var(--font-nav);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.subpage-card h2,
.timeline-list h2,
.feature-detail h2 {
  margin: 10px 0;
  font-size: 26px;
  line-height: 1.08;
}
.subpage-card p,
.timeline-list p,
.feature-detail p,
.docs-panel p,
.contact-layout p,
.pricing-grid p {
  color: var(--color-muted);
}
.subpage-card a {
  display: inline-flex;
  margin-top: 10px;
  color: #9caeff;
  font-weight: 800;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.pricing-grid article {
  display: flex;
  min-height: 340px;
  flex-direction: column;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.025));
  padding: 26px;
}
.pricing-grid strong {
  display: block;
  margin: 22px 0;
  font-size: 46px;
}
.pricing-grid .button {
  margin-top: auto;
}
.timeline-list {
  display: grid;
  gap: 18px;
}
.timeline-list article {
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 24px;
  background: rgba(255,255,255,0.05);
  padding: 26px;
}
.docs-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 34px;
  align-items: start;
}
.docs-layout aside {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 10px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  background: rgba(255,255,255,0.05);
  padding: 18px;
}
.docs-layout aside a {
  color: rgba(255,255,255,0.74);
}
.docs-panel {
  display: grid;
  gap: 16px;
}
.docs-panel article,
.contact-layout article,
.contact-form {
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 24px;
  background: rgba(255,255,255,0.05);
  padding: 26px;
}
.feature-detail,
.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: center;
}
.feature-detail__media {
  overflow: hidden;
  border-radius: 26px;
  box-shadow: var(--shadow);
}
.feature-detail__media img,
.feature-detail__media video {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.contact-form {
  display: grid;
  gap: 14px;
}
.contact-form label span {
  display: block;
  margin-bottom: 6px;
  color: rgba(255,255,255,0.72);
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 16px;
  background: rgba(255,255,255,0.08);
  color: #fff;
  padding: 14px 16px;
}
.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}
.blog-article__hero {
  position: relative;
  padding: 152px 0 70px;
  background:
    radial-gradient(circle at 20% 22%, rgba(126,47,240,0.36), transparent 28rem),
    radial-gradient(circle at 84% 16%, rgba(79,128,255,0.22), transparent 26rem),
    #090814;
  overflow: hidden;
}
.blog-article__hero .container {
  position: relative;
  max-width: 980px;
}
.blog-article__back {
  display: inline-flex;
  margin-bottom: 24px;
  color: rgba(255,255,255,0.72);
  font-weight: 800;
}
.blog-article__hero h1 {
  margin: 0;
  font-size: clamp(42px, 5.4vw, 72px);
  font-weight: 900;
  line-height: 1;
}
.blog-article__hero p:not(.eyebrow) {
  max-width: 780px;
  color: rgba(255,255,255,0.7);
  font-size: 20px;
}
.blog-article__hero img {
  width: 100%;
  margin-top: 34px;
  aspect-ratio: 16 / 8;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 30px;
  box-shadow: var(--shadow);
}
.blog-article__layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 760px);
  gap: 58px;
  align-items: start;
  padding: 76px 0;
}
.blog-article__meta {
  position: sticky;
  top: 104px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 22px;
  background: rgba(255,255,255,0.05);
  padding: 22px;
}
.blog-article__meta span {
  color: #a8b6ff;
  font-family: var(--font-nav);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.blog-article__meta strong {
  display: block;
  margin-top: 10px;
  font-size: 20px;
}
.blog-article__meta p {
  color: var(--color-muted);
}
.blog-article__body {
  min-width: 0;
}
.blog-article__body h2 {
  margin: 44px 0 14px;
  font-size: 32px;
  line-height: 1.1;
}
.blog-article__body p {
  margin: 0 0 22px;
  color: rgba(255,255,255,0.76);
  font-size: 18px;
  line-height: 1.75;
}

@media (max-width: 1080px) {
  .site-header { grid-template-columns: auto auto; justify-content: space-between; }
  .site-header__nav, .site-header__link, .site-header__actions .button { display: none; }
  .menu-toggle { display: block; }
  .mobile-menu.is-open {
    display: grid;
    grid-column: 1 / -1;
    gap: 14px;
    max-height: calc(100vh - 92px);
    overflow-y: auto;
    padding: 0 0 22px;
    font-family: var(--font-nav);
  }
  .mobile-menu > a,
  .mobile-submenu summary {
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 10px 0;
  }
  .mobile-submenu {
    color: rgba(255,255,255,0.9);
  }
  .mobile-submenu summary {
    cursor: pointer;
    list-style: none;
  }
  .mobile-submenu summary::-webkit-details-marker { display: none; }
  .mobile-submenu summary::after {
    content: "⌄";
    float: right;
  }
  .mobile-submenu[open] summary::after { transform: rotate(180deg); }
  .mobile-submenu a,
  .mobile-submenu strong {
    display: block;
    margin-left: 14px;
    padding: 8px 0;
    color: rgba(255,255,255,0.72);
    font-size: 14px;
  }
  .mobile-submenu strong {
    margin-top: 8px;
    color: rgba(255,255,255,0.48);
    font-size: 12px;
    text-transform: uppercase;
  }
  .hero__grid, .editor-grid { grid-template-columns: 1fr; }
  .hero { min-height: 0; }
  .asset-stage { min-height: 590px; }
  .workflow { grid-template-columns: 1fr; }
  .workflow strong { text-align: center; }
  .asset-grid, .media-grid, .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .audio-grid, .pipeline-grid, .video-grid, .site-footer__grid { grid-template-columns: 1fr 1fr; }
  .subpage-hero__grid,
  .feature-detail,
  .contact-layout,
  .docs-layout,
  .blog-article__layout { grid-template-columns: 1fr; }
  .blog-article__meta { position: relative; top: auto; }
  .subpage-card-grid,
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .subpage-card-grid--small { grid-template-columns: repeat(2, 1fr); }
  .docs-layout aside { position: relative; top: auto; }
  .discord-cta__bubble { grid-template-columns: 1fr; text-align: center; justify-items: center; }
}

@media (max-width: 640px) {
  :root { --header-height: 76px; }
  .site-header { min-height: 76px; padding-inline: 16px; }
  .site-header__brand { min-width: 116px; font-size: 20px; }
  .site-header__brand img { width: 116px; }
  .hero { padding: 118px 0 58px; }
  .hero h1 { font-size: 46px; }
  .hero p { font-size: 18px; }
  .asset-stage { min-height: 520px; border-radius: 26px; }
  .asset-stage__card--wide { left: 16px; top: 18px; width: calc(100% - 32px); height: 190px; }
  .asset-stage__card--tile { right: 18px; top: 220px; width: 132px; height: 132px; }
  .asset-stage__card--sprite { left: 16px; bottom: 122px; width: 230px; height: 142px; }
  .asset-stage__card--attack { left: 72px; bottom: 30px; }
  .asset-stage__ui { right: 18px; bottom: 42px; gap: 7px; padding: 8px; }
  .asset-stage__ui img { width: 38px; height: 38px; }
  .section { padding: 72px 0; }
  .asset-grid, .media-grid, .audio-grid, .pipeline-grid, .video-grid, .blog-grid, .editor-steps, .site-footer__grid { grid-template-columns: 1fr; }
  .subpage-hero { padding: 112px 0 56px; }
  .subpage-hero h1 { font-size: 44px; }
  .subpage-hero p:last-child { font-size: 18px; }
  .subpage-card-grid,
  .subpage-card-grid--small,
  .pricing-grid { grid-template-columns: 1fr; }
  .subpage-section { padding: 58px 0; }
  .blog-article__hero { padding: 116px 0 48px; }
  .blog-article__hero h1 { font-size: 42px; }
  .blog-article__hero img { border-radius: 22px; aspect-ratio: 16 / 10; }
  .blog-article__layout { padding: 52px 0; gap: 28px; }
  .blog-article__body p { font-size: 16px; }
  .game-strip { grid-auto-columns: minmax(260px, 86vw); }
  .game-card { min-height: 420px; }
  .subscribe form { flex-direction: column; }
  .subscribe label { max-width: none; }
}
