#nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 0 40px;
  height: 60px;
  display: flex;
  align-items: center;
  gap: 48px;
  background: rgba(0, 0, 0, 0.95);
  border-bottom: 1px solid rgba(245, 245, 245, 0.06);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-left: 8px;
}

.nav-links a {
  font-family: var(--font-headline);
  font-size: 1rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245, 245, 245, 0.8);
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--color-white);
}

.nav-mobile-steam {
  display: none;
}

.nav-toggle {
  display: none;
}

#hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #000;
}

.video-bg-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background-color: #000;
}

.hero-bg-video,
.final-cta-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-bg {
  pointer-events: auto;
}

.video-bg.is-playing {
  pointer-events: none;
}

.video-bg::-webkit-media-controls,
.video-bg::-webkit-media-controls-start-playback-button,
.video-bg::-webkit-media-controls-overlay-play-button {
  display: none !important;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.55) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto;
  padding: 0 var(--container-pad);
  text-align: center;
}

.hero-logo {
  max-width: 640px;
  width: 100%;
  height: auto;
  margin: 0 auto 48px;
  display: block;
}

.hero-cta {
  margin-top: 32px;
  display: inline-block;
}

#intro {
  margin-top: var(--section-gap);
}

.intro-inner {
  max-width: 820px;
  margin: 0 auto;
}

.intro-headline {
  font-family: var(--font-headline);
  font-size: clamp(2rem, 5vw, 3.6rem);
  letter-spacing: 0.04em;
  line-height: 1.05;
  margin-bottom: 20px;
  color: var(--color-white);
}

.intro-text {
  max-width: 680px;
  margin: 0 auto 32px;
}

.intro-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

#gameplay-video {
  margin-top: var(--section-gap);
}

.split-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.copy-block h2 {
  font-family: var(--font-headline);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  letter-spacing: 0.04em;
  line-height: 1.05;
  margin-bottom: 20px;
}

#combat {
  margin-top: var(--section-gap);
}

.combat-copy h2 {
  font-family: var(--font-headline);
  font-size: clamp(2rem, 4vw, 3.5rem);
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 20px;
}

.fighting-styles {
  display: flex;
  gap: 20px;
  margin-top: 24px;
}

.style-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.style-chip img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  border-radius: 6px;
  border: 2px solid transparent;
  transition: all 0.2s;
  filter: brightness(0.2);
  transform: scale(1);
}

.style-chip.is-active img {
  filter: brightness(1);
  transform: scale(1.25);
  border-color: var(--color-accent);
}

.style-description {
  margin-top: 20px;
  min-height: 3.2em;
}

.style-label {
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-muted);
}

#story {
  margin-top: var(--section-gap);
}

.story-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 52px;
}

.story-header h2 {
  font-family: var(--font-headline);
  font-size: clamp(2.4rem, 5vw, 4rem);
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 20px;
}

.story-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.story-img-ph {
  aspect-ratio: 4/3;
  border-radius: 2px;
  overflow: hidden;
}

#love {
  margin-top: var(--section-gap);
}

.love-headline {
  font-family: var(--font-headline);
  font-size: clamp(2rem, 4vw, 3.5rem);
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 20px;
}

.love-stat {
  margin-top: 24px;
  font-size: 0.82rem;
  color: var(--color-muted);
  letter-spacing: 0.06em;
}

.love-stat strong {
  color: var(--color-white);
  font-weight: 500;
}

#world {
  margin-top: var(--section-gap);
}

.world-panels {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
  margin-bottom: 32px;
}

.world-panel-video {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: 2px;
  cursor: pointer;
}

.world-panel-video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.world-panel-play {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.world-panel-pan {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: 2px;
}

.world-panel-pan-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 30% center;
}

@media (hover: hover) {
  .world-panel-pan-img {
    transition: object-position 8s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .world-panel-pan:hover .world-panel-pan-img {
    object-position: 70% center;
  }
}

.world-caption {
  text-align: center;
  font-family: var(--font-headline);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  letter-spacing: 0.1em;
  color: rgba(245, 245, 245, 0.45);
  margin-top: 24px;
}

.world-header {
  max-width: 760px;
  margin: 0 auto 40px;
}

.world-header h2 {
  font-family: var(--font-headline);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  letter-spacing: 0.06em;
  line-height: 1.15;
  margin-bottom: 20px;
}

.world-intro {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.world-cta {
  margin-top: 48px;
}

.text-center {
  text-align: center;
}

#toy {
  margin-top: var(--section-gap);
}

.toy-copy h2 {
  font-family: var(--font-headline);
  font-size: clamp(2rem, 4vw, 3.5rem);
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 20px;
}

.toy-product-ph {
  aspect-ratio: 4/5;
  border-radius: 4px;
  overflow: hidden;
  min-height: 0;
}

.product-gallery {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}

.product-gallery-main {
  aspect-ratio: 4 / 5;
  border-radius: 4px;
  overflow: hidden;
  background: var(--color-surface);
}

.product-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(72px, 1fr));
  gap: 8px;
}

.product-gallery-thumb {
  aspect-ratio: 1 / 1;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  background: var(--color-surface);
  opacity: 0.55;
  transition: opacity 0.2s ease, border-color 0.2s ease;
}

.product-gallery-thumb:hover {
  opacity: 0.85;
}

.product-gallery-thumb.is-active {
  border-color: var(--color-teal);
  opacity: 1;
}

.product-gallery-thumb:focus-visible {
  outline: 2px solid var(--color-teal);
  outline-offset: 2px;
}

.toy-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.toy-badge {
  min-height: 44px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--color-surface);
  border: 1px solid rgba(245, 245, 245, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.toy-badge span {
  font-size: 0.62rem;
  letter-spacing: 0.06em;
  text-align: center;
  color: rgba(245, 245, 245, 0.55);
  text-transform: uppercase;
  line-height: 1.3;
}

#patreon {
  margin-top: var(--section-gap);
  padding: 100px var(--container-pad);
}

.patreon-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.patreon-inner h2 {
  font-family: var(--font-headline);
  font-size: clamp(2.4rem, 5vw, 4rem);
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 24px;
}

.patreon-inner p {
  color: rgba(245, 245, 245, 0.65);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 16px;
}

.patreon-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 32px;
}

#toy-hero.toy-banner {
  position: relative;
  width: 100%;
  margin-top: 0;
}

.toy-banner-media {
  position: relative;
  width: 100%;
  aspect-ratio: 1997 / 1440;
  overflow: hidden;
}

.toy-banner-img {
  margin-top: calc(-10% * 1440 / 1997);
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
}

.toy-banner-content {
  position: relative;
  z-index: 2;
  margin-top: calc(-35% * 1440 / 1997);
  padding-bottom: clamp(24px, 4vw, 48px);
}

.toy-banner-content .toy-hero-text {
  font-size: 0.95rem;
  line-height: 1.65;
}

.toy-banner-content .toy-hero-text + .toy-hero-text {
  margin-top: 12px;
}

.toy-banner-legal {
  color: rgba(245, 245, 245, 0.55);
}

.toy-hero-inner {
  max-width: 760px;
  margin: 0 auto;
}

.toy-hero-headline {
  font-family: var(--font-headline);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  letter-spacing: 0.04em;
  line-height: 1.05;
  margin-bottom: 24px;
}

.toy-hero-text {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.toy-hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.product-copy h2 {
  font-family: var(--font-headline);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  letter-spacing: 0.04em;
  line-height: 1.1;
  margin-bottom: 20px;
}

.feature-list {
  margin: 24px 0;
  padding-left: 20px;
  color: rgba(245, 245, 245, 0.65);
}

.feature-list li {
  margin-bottom: 8px;
  line-height: 1.6;
}

.legal-note {
  margin-top: 16px;
  font-size: 0.78rem;
  color: var(--color-muted);
  line-height: 1.6;
}

.split-two-reverse {
  direction: rtl;
}

.split-two-reverse > * {
  direction: ltr;
}

#maya-stroker {
  margin-top: var(--section-gap);
}

#final-cta {
  margin-top: var(--section-gap);
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.final-cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #000;
}

.final-cta-bg video,
.final-cta-bg .video-bg-wrap,
.final-cta-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.final-cta-bg .video-bg-wrap {
  position: absolute;
  inset: 0;
}

.final-cta-video {
  object-fit: cover;
  display: block;
}

.final-cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1;
}

.final-cta-content {
  position: relative;
  z-index: 2;
  padding: 80px var(--container-pad);
}

.section-with-grid {
  position: relative;
}

.section-with-grid > *,
.section-with-grid .container {
  position: relative;
  z-index: 1;
}

footer.site-footer {
  background: #000;
  border-top: none;
  padding: 0;
}

.footer-links-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.footer-links-bar a {
  font-size: 0.78rem;
  color: var(--color-muted);
  letter-spacing: 0.05em;
  padding: 16px 20px;
  transition: color 0.2s;
  white-space: nowrap;
}

.footer-links-bar a:hover {
  color: var(--color-white);
}

.footer-middle {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 32px var(--container-pad);
}

.footer-social-icons {
  display: flex;
  gap: 20px;
  align-items: center;
}

.footer-social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(245, 245, 245, 0.15);
  color: rgba(245, 245, 245, 0.55);
  transition: color 0.2s, border-color 0.2s;
}

.footer-social-icons a:hover {
  color: var(--color-white);
  border-color: rgba(245, 245, 245, 0.4);
}

.footer-social-icons svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.footer-logos {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-logo-sep {
  width: 1px;
  height: 24px;
  background: rgba(245, 245, 245, 0.12);
}

.footer-ratings {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  padding: 24px var(--container-pad) 32px;
  flex-wrap: wrap;
}

.rating-badge {
  width: 72px;
  height: 72px;
  border-radius: 8px;
  background: var(--color-surface);
  overflow: hidden;
  cursor: pointer;
}

.text-center {
  text-align: center;
}

.mb-12 {
  margin-bottom: 12px;
}

.mb-32 {
  margin-bottom: 32px;
}

.mt-28 {
  margin-top: 28px;
}

@media (max-width: 768px) {
  :root {
    --section-gap: var(--section-gap-mob);
  }

  #nav {
    padding: 0 16px;
    gap: 12px;
  }

  .nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 10px;
    margin-left: auto;
    flex-shrink: 0;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-white);
  }

  .nav-toggle-bar {
    display: block;
    width: 22px;
    height: 2px;
    background: currentColor;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  #nav.is-open .nav-toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  #nav.is-open .nav-toggle-bar:nth-child(2) {
    opacity: 0;
  }

  #nav.is-open .nav-toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav-steam-cta {
    display: none;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin-left: 0;
    padding: 8px 24px 24px;
    background: rgba(0, 0, 0, 0.98);
    border-bottom: 1px solid rgba(245, 245, 245, 0.06);
  }

  #nav.is-open .nav-links {
    display: flex;
  }

  .nav-links a {
    padding: 16px 0;
    border-bottom: 1px solid rgba(245, 245, 245, 0.06);
    font-size: 1rem;
  }

  .nav-links a:last-of-type {
    border-bottom: none;
  }

  .nav-mobile-steam {
    display: inline-block;
    margin-top: 16px;
    text-align: center;
    width: 100%;
  }

  body.nav-open {
    overflow: hidden;
  }

  .split-two {
    grid-template-columns: 1fr;
  }

  .story-images {
    grid-template-columns: 1fr;
  }

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

  .footer-links-bar {
    justify-content: flex-start;
  }

  .footer-links-bar a {
    padding: 12px 14px;
    font-size: 0.72rem;
  }

  .toy-hero-headline {
    margin-bottom: 16px;
  }

  .toy-hero-actions {
    margin-top: 20px;
  }
}

@media (max-width: 480px) {
  .world-panels {
    grid-template-columns: 1fr;
  }

  .footer-links-bar {
    flex-direction: column;
  }
}
