:root {
  --bg: #050505;
  --panel: #0b0b0b;
  --panel-soft: #111;
  --line: rgba(255, 255, 255, 0.14);
  --line-strong: rgba(255, 255, 255, 0.28);
  --text: #efefef;
  --muted: #a3a3a3;
  --dim: #6f6f6f;
  --shadow: rgba(255, 255, 255, 0.12);
  --ease-lux: cubic-bezier(0.19, 1, 0.22, 1);
  --ease-soft: cubic-bezier(0.22, 0.61, 0.36, 1);
  --duration-lux: 1.15s;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 18px;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: "Arial Narrow", "DIN Condensed", Impact, sans-serif;
  letter-spacing: 0;
  text-transform: uppercase;
  overflow-x: hidden;
}

body.is-loading {
  overflow: hidden;
}

.boot-loader {
  --boot-progress: 0%;
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.11), transparent 34%),
    linear-gradient(90deg, #020202 0%, #090909 42%, #050505 100%);
  color: #fff;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.75s ease, visibility 0s linear 0s;
}

.boot-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.75s ease, visibility 0s linear 0.75s;
}

.boot-loader::before,
.boot-loader::after,
.boot-loader__noise {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.boot-loader::before {
  background:
    repeating-linear-gradient(180deg, transparent 0 8px, rgba(255, 255, 255, 0.06) 8px 9px),
    repeating-linear-gradient(90deg, transparent 0 42px, rgba(255, 255, 255, 0.025) 42px 43px);
  opacity: 0.42;
}

.boot-loader::after {
  background:
    linear-gradient(90deg, transparent 0 7%, rgba(255, 255, 255, 0.1) 8%, transparent 9%),
    linear-gradient(180deg, transparent 0 48%, rgba(255, 255, 255, 0.22) 49%, transparent 50%);
  mix-blend-mode: screen;
  animation: bootSweep 1.25s steps(2) infinite;
}

.boot-loader__noise {
  opacity: 0.24;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.22) 0 1px, transparent 1px),
    radial-gradient(circle at 70% 70%, rgba(255, 255, 255, 0.16) 0 1px, transparent 1px);
  background-size: 18px 18px, 13px 13px;
  animation: bootNoise 0.34s steps(2) infinite;
}

.boot-loader__panel {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100vw - 48px));
  padding: 34px 36px 32px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.075), transparent 42%),
    rgba(0, 0, 0, 0.62);
  box-shadow:
    0 0 80px rgba(255, 255, 255, 0.1),
    inset 0 0 42px rgba(255, 255, 255, 0.035);
  animation: bootPanel 1.15s steps(2) infinite;
}

.boot-loader__eyebrow,
.boot-loader__meta,
.boot-loader__log,
.boot-loader__sound {
  font-size: 13px;
  letter-spacing: 0.06em;
}

.boot-loader__eyebrow {
  margin: 0 0 12px;
  color: var(--muted);
}

.boot-loader__word {
  position: relative;
  width: fit-content;
  margin-bottom: 24px;
  font-size: clamp(86px, 18vw, 184px);
  font-weight: 900;
  line-height: 0.78;
  letter-spacing: -0.02em;
  color: #f5f5f5;
  text-shadow: 0 0 28px rgba(255, 255, 255, 0.18);
  animation: bootGlitch 0.82s steps(2) infinite;
}

.boot-loader__word--image {
  width: min(680px, 72vw);
  line-height: 1;
  overflow: hidden;
}

.boot-loader__word--image img {
  display: block;
  width: 100%;
  height: auto;
  filter: grayscale(1) contrast(1.35) brightness(1.42);
  mix-blend-mode: screen;
}

.boot-loader__word::before,
.boot-loader__word::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: 0.72;
  mix-blend-mode: screen;
}

.boot-loader__word::before {
  color: rgba(255, 255, 255, 0.76);
  clip-path: inset(0 0 54% 0);
  transform: translate(4px, -2px);
}

.boot-loader__word::after {
  color: rgba(180, 180, 180, 0.86);
  clip-path: inset(48% 0 0 0);
  transform: translate(-5px, 3px);
}

.boot-loader__word--image::before,
.boot-loader__word--image::after {
  content: none;
}

.boot-loader__bar {
  height: 12px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.16) 0 1px, transparent 1px 11px),
    rgba(255, 255, 255, 0.03);
  overflow: hidden;
}

.boot-loader__bar span {
  display: block;
  width: var(--boot-progress);
  height: 100%;
  background:
    repeating-linear-gradient(90deg, #fff 0 5px, transparent 5px 10px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.15), #fff);
  box-shadow: 0 0 24px rgba(255, 255, 255, 0.7);
  transition: width 0.16s ease;
}

.boot-loader__meta {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.82);
}

.boot-loader__log {
  display: grid;
  gap: 8px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.48);
}

.boot-loader__log span {
  animation: bootLine 1.8s ease infinite;
}

.boot-loader__log span:nth-child(2) {
  animation-delay: 0.22s;
}

.boot-loader__log span:nth-child(3) {
  animation-delay: 0.44s;
}

.boot-loader__log span:nth-child(4) {
  animation-delay: 0.66s;
}

.boot-loader__sound {
  display: none;
  margin-top: 26px;
  padding: 11px 14px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: #fff;
  color: #050505;
}

.boot-loader.needs-interaction .boot-loader__sound {
  display: inline-flex;
}

@media (pointer: fine) {
  body,
  body * {
    cursor: none !important;
  }
}

.void-cursor {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 78px;
  height: 78px;
  display: none;
  pointer-events: none;
  opacity: 0;
  transform: translate3d(-50%, -50%, 0) scale(0.75);
  transition: opacity 0.42s var(--ease-soft), transform 0.42s var(--ease-soft), filter 0.42s var(--ease-soft);
  mix-blend-mode: difference;
  filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.55));
}

.void-cursor.is-visible {
  opacity: 1;
}

.void-cursor.is-active {
  transform: translate3d(-50%, -50%, 0) scale(0.68) rotate(45deg);
  filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.9));
}

.cursor-core,
.cursor-ring,
.cursor-code {
  position: absolute;
  display: block;
}

.cursor-core {
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border: 1px solid #fff;
  background: #fff;
  transform: translate(-50%, -50%) rotate(45deg);
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.95);
}

.cursor-ring {
  inset: 11px;
  border: 1px solid rgba(255, 255, 255, 0.88);
  transform: rotate(45deg);
  animation: cursorSpin 4.8s linear infinite;
}

.cursor-ring::before,
.cursor-ring::after {
  content: "";
  position: absolute;
  background: #fff;
}

.cursor-ring::before {
  top: 50%;
  left: -16px;
  right: -16px;
  height: 1px;
}

.cursor-ring::after {
  top: -16px;
  bottom: -16px;
  left: 50%;
  width: 1px;
}

.cursor-code {
  right: -8px;
  bottom: 9px;
  width: 34px;
  height: 10px;
  background: repeating-linear-gradient(90deg, #fff 0 2px, transparent 2px 5px);
  opacity: 0.92;
  animation: cursorGlitch 0.8s steps(2) infinite;
}

@media (pointer: fine) {
  .void-cursor {
    display: block;
  }
}

button,
a {
  font: inherit;
}

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

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 10;
  opacity: 0.2;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.12) 0 1px, transparent 1px),
    radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px);
  background-size: 21px 21px, 17px 17px;
  mix-blend-mode: screen;
  animation: grainBreathe 8s var(--ease-soft) infinite;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 60;
  width: calc(var(--scroll, 0) * 100%);
  height: 2px;
  background: linear-gradient(90deg, transparent, #fff, transparent);
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.85);
  transition: width 0.18s linear;
}

.scanline {
  position: fixed;
  inset: 0;
  z-index: 9;
  pointer-events: none;
  opacity: 0.16;
  background:
    linear-gradient(transparent 0 48%, rgba(255, 255, 255, 0.34) 49% 50%, transparent 51%),
    repeating-linear-gradient(180deg, transparent 0 8px, rgba(255, 255, 255, 0.04) 8px 9px);
  animation: scan 7s linear infinite;
}

.sidebar {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 20;
  width: 164px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 42px;
  padding: 40px 30px;
  border-right: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(18px);
}

body:not(.is-loading) .sidebar {
  animation: chromeReveal 1.25s var(--ease-lux) both;
}

.brand {
  display: grid;
  gap: 10px;
  font-size: clamp(18px, 1.8vw, 24px);
  font-weight: 900;
  transition: opacity 0.65s var(--ease-soft), transform 0.75s var(--ease-lux);
}

.brand:hover {
  transform: translateX(3px);
}

.side-nav {
  display: grid;
  align-content: start;
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
}

.side-nav a {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 28px;
  width: 100%;
  padding: 4px 0;
  transition: color 0.45s var(--ease-soft), transform 0.45s var(--ease-lux);
  cursor: pointer;
}

.side-nav a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -16px;
  width: 7px;
  height: 7px;
  border: 1px solid currentColor;
  opacity: 0;
  transform: translateY(-50%) rotate(45deg) scale(0.4);
  transition: opacity 0.45s var(--ease-soft), transform 0.55s var(--ease-lux);
}

.side-nav a:hover,
.side-nav a.active {
  color: var(--text);
  transform: translateX(3px);
}

.side-nav a.active::before,
.side-nav a:hover::before {
  opacity: 1;
  transform: translateY(-50%) rotate(45deg) scale(1);
}

.sidebar-meta {
  display: grid;
  gap: 18px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
}

main {
  margin-left: 164px;
}

.topbar {
  position: fixed;
  top: 0;
  right: 0;
  left: 164px;
  z-index: 15;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 30px 42px;
  color: var(--text);
  font-size: 14px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.7), transparent);
}

body:not(.is-loading) .topbar > * {
  animation: softRise 1s var(--ease-lux) both;
}

body:not(.is-loading) .topbar > *:nth-child(2) {
  animation-delay: 0.08s;
}

body:not(.is-loading) .topbar > *:nth-child(3) {
  animation-delay: 0.16s;
}

body:not(.is-loading) .topbar > *:nth-child(4) {
  animation-delay: 0.24s;
}

.topbar span:first-child {
  margin-right: auto;
}

.menu-button {
  width: 28px;
  height: 24px;
  padding: 0;
  border: 0;
  display: grid;
  align-content: center;
  gap: 5px;
  color: var(--text);
  background: transparent;
  cursor: pointer;
  transition: transform 0.55s var(--ease-lux), border-color 0.55s var(--ease-soft);
}

.music-button {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--muted);
  background: rgba(0, 0, 0, 0.32);
  cursor: pointer;
  transition: color 0.55s var(--ease-soft), border-color 0.55s var(--ease-soft), box-shadow 0.7s var(--ease-lux), transform 0.55s var(--ease-lux);
}

.music-button:hover,
.music-button.is-playing {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.09);
}

.music-bars {
  width: 18px;
  height: 14px;
  display: inline-flex;
  align-items: end;
  gap: 3px;
}

.music-bars i {
  width: 3px;
  height: 5px;
  background: currentColor;
  opacity: 0.72;
}

.music-button.is-playing .music-bars i {
  animation: soundBars 0.72s ease-in-out infinite;
}

.music-button.is-playing .music-bars i:nth-child(2) {
  animation-delay: 0.12s;
}

.music-button.is-playing .music-bars i:nth-child(3) {
  animation-delay: 0.24s;
}

.music-label {
  font-size: 12px;
}

.menu-button span {
  height: 2px;
  background: currentColor;
  transition: transform 0.55s var(--ease-lux), opacity 0.35s var(--ease-soft);
}

.menu-button.is-active {
  transform: rotate(90deg);
}

.menu-button.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-button.is-active span:nth-child(2) {
  opacity: 0;
}

.menu-button.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.section-block,
.panel {
  background:
    radial-gradient(circle at 55% 50%, rgba(255, 255, 255, 0.11), transparent 34%),
    linear-gradient(135deg, #080808, #111 55%, #070707);
}

.section-block {
  position: relative;
}

.section-block + .section-block,
.section-block + .lower-grid,
.section-block + .bottom-grid,
.lower-grid + .bottom-grid {
  margin-top: -1px;
}

.section-block:not(.hero)::before,
.lower-grid::before,
.bottom-grid::before,
.footer::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -64px;
  height: 128px;
  z-index: 4;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent, rgba(5, 5, 5, 0.72) 42%, rgba(5, 5, 5, 0.92) 50%, rgba(5, 5, 5, 0.72) 58%, transparent),
    radial-gradient(ellipse at 50% 50%, rgba(255, 255, 255, 0.06), transparent 62%);
  opacity: 0.9;
}

.lower-grid,
.bottom-grid,
.footer {
  position: relative;
}

.hero {
  position: relative;
  min-height: 118vh;
  display: grid;
  grid-template-columns: minmax(320px, 620px);
  align-items: end;
  overflow: hidden;
  padding: 118px 42px 48px;
  isolation: isolate;
}

@media (min-width: 1600px) and (max-height: 950px) {
  .hero {
    min-height: 132vh;
  }
}

.hero::before {
  content: "";
  position: absolute;
  inset: -20% -10%;
  z-index: 0;
  background:
    radial-gradient(circle at calc(50% + var(--mx, 0px)) calc(40% + var(--my, 0px)), rgba(255, 255, 255, 0.15), transparent 23%),
    conic-gradient(from 90deg at 70% 40%, transparent, rgba(255,255,255,0.08), transparent 18%);
  opacity: 0.72;
  transition: background 0.12s linear;
}

.hero::after,
.image-card::after,
.detail-card::after,
.panel::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.035));
}

.hero-copy {
  position: relative;
  z-index: 4;
  align-self: center;
  max-width: 560px;
  padding-left: 4px;
  animation: riseIn 1.35s var(--ease-lux) both;
}

body:not(.is-loading) .hero-copy > * {
  animation: softRise 1.15s var(--ease-lux) both;
}

body:not(.is-loading) .hero-copy > *:nth-child(1) {
  animation-delay: 0.08s;
}

body:not(.is-loading) .hero-copy > *:nth-child(2) {
  animation-delay: 0.16s;
}

body:not(.is-loading) .hero-copy > *:nth-child(3) {
  animation-delay: 0.24s;
}

body:not(.is-loading) .hero-copy > *:nth-child(4) {
  animation-delay: 0.32s;
}

body:not(.is-loading) .hero-copy > *:nth-child(5) {
  animation-delay: 0.42s;
}

body:not(.is-loading) .hero-copy > *:nth-child(6) {
  animation-delay: 0.54s;
}

body:not(.is-loading) .hero-logo {
  animation: softRise 1.15s var(--ease-lux) 0.16s both, heroLogoGlitch 3.4s steps(1) 1.45s infinite;
}

body:not(.is-loading) .hero-code {
  animation: softRise 1.15s var(--ease-lux) 0.24s both, barcodeBlink 3.6s steps(1) 1.45s infinite;
}

body:not(.is-loading) .tagline {
  animation: softRise 1.15s var(--ease-lux) 0.54s both, breathe 3.8s ease-in-out 1.45s infinite;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 14px;
}

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

.hero h1 {
  margin: 0 0 22px;
  font-size: clamp(96px, 15vw, 250px);
  line-height: 0.72;
  font-weight: 950;
  letter-spacing: 0;
  transform: scaleX(1.16);
  transform-origin: left center;
  filter: drop-shadow(0 0 26px rgba(255, 255, 255, 0.12));
  animation: glitchPulse 4.8s steps(1) infinite;
}

.hero-logo {
  position: relative;
  width: min(440px, 42vw);
  transform: none;
  overflow: visible;
  isolation: isolate;
  animation: heroLogoGlitch 3.4s steps(1) infinite;
}

.hero-logo img {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: auto;
  filter: grayscale(1) contrast(1.35) brightness(1.48);
  mix-blend-mode: screen;
}

.hero-logo::before,
.hero-logo::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: url("assets/boot-logo.webp") center center / contain no-repeat;
  filter: grayscale(1) contrast(1.5) brightness(1.25);
  opacity: 0;
  mix-blend-mode: screen;
  pointer-events: none;
}

.hero-logo::before {
  clip-path: inset(8% 0 58% 0);
  transform: translate(8px, -3px);
  animation: heroLogoSliceA 2.2s steps(1) infinite;
}

.hero-logo::after {
  clip-path: inset(52% 0 10% 0);
  transform: translate(-9px, 4px);
  animation: heroLogoSliceB 2.7s steps(1) infinite;
}

.hero h1::after {
  content: "";
  display: block;
  width: 77%;
  height: 18px;
  margin-top: -34px;
  background: repeating-linear-gradient(90deg, transparent 0 14px, rgba(0, 0, 0, 0.92) 14px 20px);
  animation: glitchBar 2.6s steps(2) infinite;
}

.hero h2 {
  margin: 18px 0 34px;
  font-size: clamp(28px, 3vw, 48px);
}

.manifesto {
  max-width: 360px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.action-button,
.variant-button {
  position: relative;
  min-height: 42px;
  padding: 12px 18px;
  border: 1px solid var(--line-strong);
  color: var(--text);
  background: rgba(0, 0, 0, 0.5);
  cursor: pointer;
  overflow: hidden;
  transition:
    border-color 0.5s var(--ease-soft),
    box-shadow 0.75s var(--ease-lux),
    color 0.5s var(--ease-soft),
    transform 0.75s var(--ease-lux);
}

.action-button::before,
.variant-button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: translateX(-120%);
  transition: transform 0.85s var(--ease-lux);
}

.action-button:hover,
.action-button:focus-visible,
.variant-button:hover,
.variant-button:focus-visible,
.variant-button.active {
  border-color: rgba(255, 255, 255, 0.78);
  box-shadow: 0 0 24px rgba(255, 255, 255, 0.12), inset 0 0 20px rgba(255, 255, 255, 0.06);
  transform: translateY(-2px);
  outline: 0;
}

.action-button:hover::before,
.action-button:focus-visible::before,
.variant-button:hover::before,
.variant-button:focus-visible::before,
.variant-button.active::before {
  transform: translateX(120%);
}

.action-button.primary,
.variant-button.active {
  color: #050505;
  background: #efefef;
}

.tagline {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 150px;
  color: var(--text);
  font-size: 14px;
  letter-spacing: 6px;
  animation: breathe 3.8s ease-in-out infinite;
}

.tagline::before,
.tagline::after {
  content: "";
  width: 13px;
  height: 13px;
  border: 1px solid var(--text);
}

.tagline::before {
  border-right: 0;
}

.tagline::after {
  border-left: 0;
}

.hero-figure {
  position: absolute;
  inset: 0;
  min-height: 100%;
  z-index: 1;
  margin: 0;
  overflow: hidden;
  pointer-events: none;
  background: #050505;
}

.hero-image,
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0.94;
  filter: contrast(1.08) brightness(0.74) saturate(0.8);
  transform: translate3d(calc(var(--mx, 0px) * -0.01), calc(var(--my, 0px) * -0.008), 0);
  animation: imageReveal 1.65s var(--ease-lux) both, imageDrift 12s ease-in-out infinite;
}

.hero-image {
  z-index: 1;
}

.hero-video {
  z-index: 2;
  display: block;
}

.hero-figure::after {
  content: "";
  position: absolute;
  inset: -6%;
  z-index: 0;
  background: #050505;
  filter: none;
  opacity: 1;
  transform: scale(1.05);
}

.hero-figure::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  background:
    linear-gradient(90deg, #050505 0 7%, rgba(5, 5, 5, 0.92) 18%, rgba(5, 5, 5, 0.7) 31%, rgba(5, 5, 5, 0.24) 52%, rgba(5, 5, 5, 0.08) 78%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.45));
}

.image-slot::before,
.image-card::before,
.detail-card::before {
  content: attr(data-label);
  position: absolute;
  top: 14px;
  left: 14px;
  color: rgba(255, 255, 255, 0.34);
  font-size: 11px;
  opacity: 0;
}

.mascot-shape {
  position: absolute;
  right: 3%;
  bottom: -12px;
  width: min(88%, 760px);
  height: min(86vh, 790px);
  filter: drop-shadow(0 0 24px rgba(255, 255, 255, 0.2));
  animation: voidFloat 5.8s ease-in-out infinite;
  transform: translate3d(calc(var(--mx, 0px) * -0.015), calc(var(--my, 0px) * -0.012), 0);
  display: none;
}

.mascot-shape span {
  position: absolute;
  display: block;
}

.hood {
  left: 39%;
  top: 2%;
  width: 23%;
  height: 25%;
  border: 2px solid var(--line-strong);
  border-radius: 48% 48% 35% 35%;
  background: radial-gradient(circle at 50% 60%, #030303 0 31%, #171717 32% 100%);
  transform: rotate(-4deg);
  box-shadow: inset 0 0 24px rgba(255, 255, 255, 0.08);
}

.face {
  left: 43%;
  top: 12%;
  width: 15%;
  height: 9%;
  border-top: 3px dashed rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  box-shadow: 0 10px 0 rgba(255, 255, 255, 0.2);
  animation: faceFlicker 2.7s steps(1) infinite;
}

.torso {
  left: 32%;
  top: 22%;
  width: 38%;
  height: 38%;
  border-radius: 18% 18% 10% 10%;
  background: linear-gradient(100deg, #070707, #202020 42%, #050505);
  border: 1px solid var(--line-strong);
}

.arm {
  top: 29%;
  width: 38%;
  height: 16%;
  border-radius: 999px;
  background: linear-gradient(90deg, #050505, #222, #090909);
  border: 1px solid var(--line);
}

.arm.left {
  left: 0;
  transform: rotate(7deg);
}

.arm.right {
  right: 0;
  transform: rotate(-5deg);
}

.leg {
  top: 58%;
  width: 16%;
  height: 34%;
  border-radius: 24px 24px 36px 36px;
  background: linear-gradient(95deg, #070707, #1f1f1f, #050505);
  border: 1px solid var(--line);
}

.leg.left {
  left: 36%;
}

.leg.right {
  right: 31%;
}

.chest-mark {
  left: 43%;
  top: 35%;
  color: var(--text);
  font-size: clamp(22px, 4vw, 42px);
  font-weight: 950;
}

.scroll-cue {
  position: absolute;
  right: 42px;
  bottom: 34px;
  display: grid;
  justify-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
  transition: color 0.2s ease, transform 0.2s ease;
}

.scroll-cue:hover {
  color: var(--text);
  transform: translateY(4px);
}

.scroll-cue::after {
  content: "";
  width: 1px;
  height: 30px;
  background: var(--text);
}

.character {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 28px;
  padding: 20px 28px;
}

.character .feature-strip {
  grid-column: 1 / -1;
}

.section-intro {
  padding: 26px 0 0;
}

.section-intro h2 {
  margin-bottom: 24px;
  font-size: 56px;
}

.section-intro p:last-child {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.character-story {
  grid-column: 1 / -1;
  min-height: 640px;
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(320px, 0.5fr);
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 35% 50%, rgba(255, 255, 255, 0.08), transparent 36%),
    linear-gradient(135deg, #070707, #101010 52%, #050505);
  overflow: hidden;
}

.story-media {
  position: relative;
  min-height: 640px;
  background: #050505;
}

.story-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 58%, rgba(0, 0, 0, 0.72)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 42%, rgba(0, 0, 0, 0.34));
}

.story-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0;
  filter: grayscale(0.18) contrast(1.08) brightness(0.82);
  transform: scale(1.035);
  transition: opacity 0.65s ease, transform 1.2s ease, filter 0.65s ease;
}

.story-image.active {
  opacity: 1;
  transform: scale(1);
}

.story-panel {
  position: relative;
  min-height: 640px;
  padding: 48px 42px 38px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  border-left: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.68);
  backdrop-filter: blur(14px);
}

.story-count {
  display: flex;
  gap: 8px;
  align-items: baseline;
  color: var(--text);
  font-size: 18px;
}

.story-current {
  min-width: 24px;
}

.story-progress {
  position: absolute;
  top: 48px;
  right: 28px;
  width: 1px;
  height: calc(100% - 128px);
  background: rgba(255, 255, 255, 0.14);
}

.story-progress span {
  display: block;
  width: 1px;
  height: var(--story-progress, 25%);
  background: var(--text);
  box-shadow: 0 0 16px rgba(255, 255, 255, 0.65);
  transition: height 0.9s var(--ease-lux);
}

.story-copy {
  grid-row: 2;
  align-self: center;
  display: none;
  max-width: 410px;
  padding-right: 18px;
}

.story-copy.active {
  display: block;
}

.story-copy .eyebrow {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.6);
}

.story-copy h3 {
  margin-bottom: 34px;
  font-size: clamp(36px, 4.2vw, 64px);
  line-height: 0.86;
}

.story-copy p {
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.48;
}

.story-copy p span,
.story-copy h3,
.story-copy .eyebrow {
  display: block;
  opacity: 0;
  transform: translateY(12px);
}

.story-copy.active .eyebrow {
  animation: storyLine 0.72s var(--ease-lux) forwards;
}

.story-copy.active h3 {
  animation: storyLine 0.86s var(--ease-lux) 0.08s forwards;
}

.story-copy.active p:nth-of-type(2) span {
  animation: storyLine 0.78s var(--ease-lux) 0.18s forwards;
}

.story-copy.active p:nth-of-type(3) span:nth-child(1) {
  animation: storyLine 0.78s var(--ease-lux) 0.32s forwards;
}

.story-copy.active p:nth-of-type(3) span:nth-child(2) {
  animation: storyLine 0.78s var(--ease-lux) 0.44s forwards;
}

.story-copy.active p:nth-of-type(3) span:nth-child(3) {
  animation: storyLine 0.78s var(--ease-lux) 0.56s forwards;
}

.story-copy.active p:nth-of-type(4) span:nth-child(1) {
  animation: storyLine 0.78s var(--ease-lux) 0.7s forwards;
}

.story-copy.active p:nth-of-type(4) span:nth-child(2) {
  animation: storyLine 0.78s var(--ease-lux) 0.82s forwards;
}

.story-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.story-button {
  min-height: 36px;
  padding: 9px 12px;
  border: 1px solid var(--line-strong);
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  transition: color 0.45s var(--ease-soft), border-color 0.45s var(--ease-soft), transform 0.55s var(--ease-lux), box-shadow 0.55s var(--ease-lux);
}

.story-button:hover {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.62);
  transform: translateY(-2px);
}

.story-dots {
  display: flex;
  gap: 9px;
}

.story-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: transparent;
  transform: rotate(45deg);
  cursor: pointer;
}

.story-dots button.active {
  background: var(--text);
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.68);
}

.character {
  display: block;
  padding: 0;
}

.character-story {
  height: 260vh;
  min-height: 0;
  display: block;
  border: 0;
  overflow: visible;
  background: #050505;
}

.story-stage {
  position: sticky;
  top: 0;
  height: 100vh;
  min-height: 720px;
  overflow: hidden;
  border: 0;
  background: #050505;
}

.story-media {
  position: absolute;
  inset: 0;
  min-height: 0;
  background: #050505;
}

.story-media::before {
  content: "";
  position: absolute;
  inset: -10%;
  z-index: 0;
  background: var(--story-bg, url("assets/character-void-main.webp")) center center / cover no-repeat;
  filter: blur(30px) brightness(0.62) contrast(1.18);
  opacity: 0.72;
  transform: scale(1.12);
  transition: background-image 0.45s ease;
}

.story-media::after {
  z-index: 3;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.18) 24%, rgba(0, 0, 0, 0.2) 72%, rgba(0, 0, 0, 0.78)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.28), transparent 42%, rgba(0, 0, 0, 0.46));
}

.story-image {
  z-index: 1;
  object-fit: cover;
  object-position: center center;
  filter: grayscale(0.1) contrast(1.1) brightness(0.9);
  transform: scale(1.015);
  -webkit-mask-image:
    linear-gradient(90deg, transparent 0%, #000 4%, #000 96%, transparent 100%),
    linear-gradient(180deg, transparent 0%, #000 3%, #000 94%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(90deg, transparent 0%, #000 4%, #000 96%, transparent 100%),
    linear-gradient(180deg, transparent 0%, #000 3%, #000 94%, transparent 100%);
  mask-composite: intersect;
}

.story-image.active {
  transform: scale(1.035);
}

.story-intro {
  position: absolute;
  left: clamp(28px, 4vw, 70px);
  top: clamp(90px, 13vh, 150px);
  z-index: 5;
  width: min(310px, 28vw);
  color: var(--text);
}

.story-intro h2 {
  margin: 0 0 24px;
  font-size: clamp(54px, 6vw, 94px);
  line-height: 0.82;
  text-shadow: 0 0 22px rgba(0, 0, 0, 0.8);
}

.story-title {
  font-family: "Arial Black", Impact, "Arial Narrow", sans-serif;
  font-weight: 950;
  letter-spacing: 0;
  transform: scaleX(1.08);
  transform-origin: left center;
  filter: none;
}

.story-intro p:last-child {
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  line-height: 1.58;
}

.story-panel {
  position: absolute;
  right: clamp(28px, 4vw, 70px);
  top: 50%;
  z-index: 5;
  width: min(430px, 30vw);
  min-height: 0;
  padding: 34px 34px 30px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(0, 0, 0, 0.48);
  backdrop-filter: blur(18px);
  transform: translateY(-50%);
}

.story-copy {
  max-width: none;
  padding-right: 18px;
}

.story-copy h3 {
  font-size: clamp(38px, 3.6vw, 66px);
}

.story-progress {
  top: 34px;
  right: 22px;
  height: calc(100% - 92px);
}

.character .feature-strip {
  padding: 20px 28px;
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.image-card,
.detail-card,
.panel,
.pose-card,
.info-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--panel);
}

.image-card,
.detail-card {
  min-height: 270px;
  display: grid;
  grid-template-rows: 1fr auto;
  transform-style: preserve-3d;
  transition:
    transform 0.85s var(--ease-lux),
    border-color 0.65s var(--ease-soft),
    box-shadow 0.85s var(--ease-lux);
}

.image-card:hover,
.detail-card:hover,
.panel:hover,
.pose-card:hover {
  border-color: rgba(255, 255, 255, 0.42);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.42), inset 0 0 22px rgba(255, 255, 255, 0.045);
}

.image-card:hover > div,
.detail-card:hover > div {
  filter: contrast(1.16) brightness(1.08);
}

.image-card > div,
.detail-card > div {
  min-height: 210px;
}

.image-card h3,
.detail-card h3,
.pose-card h3,
.variants h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 10px 12px;
  min-height: 44px;
  display: grid;
  place-items: center;
  border-top: 1px solid var(--line);
  text-align: center;
  font-size: 16px;
  background: rgba(0, 0, 0, 0.72);
}

.slot-face {
  background:
    radial-gradient(ellipse at 50% 45%, #020202 0 28%, transparent 29%),
    radial-gradient(ellipse at 50% 70%, rgba(255, 255, 255, 0.25) 0 1%, transparent 20%),
    linear-gradient(145deg, #1e1e1e, #050505 58%);
}

.slot-face.small {
  min-height: 190px;
}

.slot-logo {
  display: grid;
  place-items: center;
  color: var(--text);
  font-size: clamp(44px, 5vw, 80px);
  font-weight: 950;
  background: linear-gradient(150deg, #101010, #252525 48%, #060606);
  text-shadow: 3px 0 rgba(255, 255, 255, 0.22), -3px 0 rgba(130, 130, 130, 0.25);
  animation: logoJitter 5.2s steps(1) infinite;
}

.slot-fabric {
  background:
    repeating-radial-gradient(ellipse at 30% 40%, rgba(255,255,255,0.13) 0 2px, transparent 3px 17px),
    linear-gradient(120deg, #090909, #252525, #070707);
}

.slot-shoes {
  background:
    radial-gradient(ellipse at 34% 73%, #050505 0 22%, #292929 23% 37%, transparent 38%),
    radial-gradient(ellipse at 66% 73%, #050505 0 22%, #292929 23% 37%, transparent 38%),
    linear-gradient(#101010, #050505);
}

.mascot-character {
  padding: clamp(42px, 5vw, 76px) clamp(28px, 3vw, 46px) 44px;
  min-height: 820px;
  display: grid;
  gap: clamp(34px, 4vw, 58px);
  background:
    radial-gradient(ellipse at 22% 28%, rgba(255, 255, 255, 0.1), transparent 27%),
    radial-gradient(ellipse at 76% 18%, rgba(255, 255, 255, 0.075), transparent 24%),
    linear-gradient(180deg, #070707, #020202 58%, #060606);
}

.mascot-character__copy {
  position: relative;
  display: grid;
  grid-template-columns: minmax(580px, 0.9fr) minmax(520px, 0.78fr) minmax(170px, 0.25fr);
  column-gap: clamp(34px, 5vw, 92px);
  row-gap: 18px;
  align-items: start;
}

.mascot-character__copy .eyebrow {
  grid-column: 1;
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
}

.mascot-character__copy h2 {
  grid-column: 1;
  grid-row: 2;
  margin: 0;
  font-size: clamp(82px, 8.7vw, 160px);
  line-height: 0.78;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
  transform: scaleX(1.05);
  transform-origin: left center;
}

.mascot-character__copy h2 span {
  display: inline-block;
  margin-right: 34px;
}

.mascot-character__copy h2 i {
  position: relative;
  display: inline-block;
  width: 52px;
  height: 52px;
  margin: 0 34px 0 0;
  vertical-align: 0.08em;
  border: 2px solid rgba(255, 255, 255, 0.84);
  border-radius: 50%;
}

.mascot-character__copy h2 i::before,
.mascot-character__copy h2 i::after {
  content: "";
  position: absolute;
  background: rgba(255, 255, 255, 0.84);
}

.mascot-character__copy h2 i::before {
  left: 50%;
  top: -18px;
  width: 2px;
  height: calc(100% + 36px);
}

.mascot-character__copy h2 i::after {
  left: -18px;
  top: 50%;
  width: calc(100% + 36px);
  height: 2px;
}

.mascot-character__text {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
  display: grid;
  gap: 24px;
  padding: 40px 0 0;
  border-left: 0;
}

.mascot-character__text p {
  max-width: 640px;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-family: "Arial Narrow", "Roboto Condensed", Arial, sans-serif;
  font-size: clamp(18px, 1.14vw, 23px);
  font-stretch: condensed;
  font-weight: 500;
  line-height: 1.18;
  text-transform: uppercase;
}

.mascot-character__text p:last-child {
  color: rgba(255, 255, 255, 0.48);
}

.mascot-character__target {
  position: absolute;
  top: 0;
  right: 0;
  width: 46px;
  height: 46px;
  color: rgba(255, 255, 255, 0.66);
}

.mascot-character__target::before,
.mascot-character__target::after {
  content: "";
  position: absolute;
  background: currentColor;
}

.mascot-character__target::before {
  left: 50%;
  top: -10px;
  width: 1px;
  height: calc(100% + 20px);
}

.mascot-character__target::after {
  left: -10px;
  top: 50%;
  width: calc(100% + 20px);
  height: 1px;
}

.mascot-character__target {
  border: 1px solid currentColor;
  border-radius: 50%;
  transform: scale(0.62);
}

.mascot-character__index {
  grid-column: 3;
  grid-row: 2;
  align-self: center;
  display: grid;
  gap: 12px;
  color: rgba(255, 255, 255, 0.72);
  font-family: "Arial Narrow", "Roboto Condensed", Arial, sans-serif;
  font-size: clamp(14px, 0.86vw, 17px);
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.trait-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  align-items: stretch;
}

.trait-card {
  --rx: 0deg;
  --ry: 0deg;
  --ix: 0px;
  --iy: 0px;
  --img-rx: 0deg;
  --img-ry: 0deg;
  --lift: 0px;
  --trait-scale: 0.96;
  --glow-x: 50%;
  --glow-y: 46%;
  position: relative;
  min-width: 0;
  min-height: clamp(520px, 32vw, 650px);
  display: grid;
  grid-template-rows: 1fr auto auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 8px;
  background:
    radial-gradient(circle at var(--glow-x) var(--glow-y), rgba(255, 255, 255, 0.12), transparent 24%),
    radial-gradient(ellipse at 50% 78%, rgba(255, 255, 255, 0.16), transparent 27%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 32%),
    #030303;
  transform: perspective(980px) rotateX(var(--rx)) rotateY(var(--ry)) translateY(var(--lift));
  transform-style: preserve-3d;
  transition: border-color 0.7s var(--ease-soft), transform 0.9s var(--ease-lux), box-shadow 0.9s var(--ease-lux), background 0.9s var(--ease-lux);
}

.trait-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.48), transparent 19%, transparent 81%, rgba(0, 0, 0, 0.48)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 40%, rgba(0, 0, 0, 0.9));
}

.trait-card::after {
  content: attr(data-code);
  position: absolute;
  left: 14px;
  top: 13px;
  z-index: 3;
  color: rgba(255, 255, 255, 0.34);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0;
}

.trait-card figure {
  position: relative;
  min-height: 0;
  margin: 0;
  display: grid;
  align-items: end;
  overflow: visible;
  padding: 46px 22px 0;
  transform-style: preserve-3d;
}

.trait-card figure::before {
  content: attr(data-num);
  position: absolute;
  right: 8%;
  top: 2%;
  z-index: 0;
  color: rgba(255, 255, 255, 0.025);
  font-size: clamp(210px, 16vw, 340px);
  font-weight: 950;
  line-height: 1;
}

.trait-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center bottom;
  filter: grayscale(0.08) contrast(1.12) brightness(0.86);
  transform:
    translate3d(var(--ix), var(--iy), 34px)
    rotateX(var(--img-rx))
    rotateY(var(--img-ry))
    scale(var(--trait-scale));
  transform-origin: 50% 62%;
  transition: transform 0.95s var(--ease-lux), filter 0.75s var(--ease-soft);
}

.trait-card picture {
  display: contents;
}

.variant picture,
.applications-visual picture,
.mood-tile picture,
.visual-sheet picture,
.story-media picture,
.hero-logo picture,
.boot-loader__word picture {
  display: contents;
}

.trait-card--control img {
  --trait-scale: 1.18;
}

.trait-card--ironic img {
  --trait-scale: 0.97;
}

.trait-card--curious img {
  --trait-scale: 1.14;
}

.trait-card--power img {
  --trait-scale: 0.96;
}

.trait-card:hover {
  border-color: rgba(255, 255, 255, 0.34);
  box-shadow: inset 0 0 46px rgba(255, 255, 255, 0.065), 0 30px 80px rgba(0, 0, 0, 0.54);
  --lift: -5px;
}

.trait-card:hover img {
  filter: grayscale(0) contrast(1.2) brightness(1);
}

.trait-card h3 {
  position: relative;
  z-index: 3;
  margin: 0;
  padding: 0 26px 6px;
  border-top: 0;
  color: var(--text);
  background: transparent;
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: clamp(20px, 1.45vw, 28px);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trait-card h3::after {
  content: none;
}

.trait-card p {
  position: relative;
  z-index: 3;
  min-height: 74px;
  margin: 0;
  padding: 8px 64px 25px 26px;
  color: rgba(255, 255, 255, 0.68);
  font-family: "Arial Narrow", "Roboto Condensed", Arial, sans-serif;
  font-size: clamp(15px, 0.92vw, 18px);
  line-height: 1.25;
  text-transform: uppercase;
  border-top: 1px solid rgba(255, 255, 255, 0.42);
}

.trait-card p::after {
  content: "";
  position: absolute;
  right: 24px;
  bottom: 28px;
  width: 54px;
  height: 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.68);
  border-bottom: 1px solid rgba(255, 255, 255, 0.68);
  opacity: 0.86;
}

.trait-card h3::before {
  content: none;
}

.visuals {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 228px;
  gap: 22px;
  padding: 30px 28px 26px;
  min-height: 430px;
  background:
    radial-gradient(circle at 52% 52%, rgba(255, 255, 255, 0.11), transparent 34%),
    linear-gradient(180deg, #111, #070707);
}

.visual-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.visual-sheet {
  position: relative;
  min-height: 0;
  aspect-ratio: 1983 / 793;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    radial-gradient(ellipse at 50% 82%, rgba(255, 255, 255, 0.12), transparent 32%),
    #050505;
}

.visual-sheet::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.58), transparent 14%, transparent 84%, rgba(0, 0, 0, 0.55)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 34%, rgba(0, 0, 0, 0.34));
}

.visual-sheet .eyebrow {
  position: absolute;
  top: 22px;
  left: 22px;
  z-index: 3;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
}

.visual-sheet img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  filter: contrast(1.12) brightness(0.92) saturate(0.82);
  transition: transform 1.2s var(--ease-lux), filter 1s var(--ease-soft);
}

.visual-sheet:hover img {
  transform: scale(1.018);
  filter: contrast(1.18) brightness(1) saturate(0.84);
}

.view-labels {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: end;
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  font-weight: 900;
  text-align: center;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.9);
}

.pose-card {
  min-height: 330px;
  display: grid;
  grid-template-rows: 1fr auto;
  border: 0;
  background: transparent;
}

.pose {
  align-self: end;
  justify-self: center;
  width: 58%;
  min-width: 96px;
  height: 270px;
  background:
    radial-gradient(circle at 50% 13%, #080808 0 18%, #222 19% 28%, transparent 29%),
    linear-gradient(90deg, transparent 0 12%, #151515 13% 39%, #252525 50%, #111 61% 87%, transparent 88%),
    radial-gradient(ellipse at 50% 100%, rgba(255,255,255,0.15), transparent 42%);
  border-bottom: 8px solid #0a0a0a;
  transition: filter 0.75s var(--ease-soft), transform 0.9s var(--ease-lux);
  animation: poseIdle 4s ease-in-out infinite;
}

.pose-card:hover .pose {
  filter: brightness(1.18) contrast(1.15);
}

.pose.side {
  width: 36%;
  transform: skewY(-3deg);
}

.pose.back {
  filter: brightness(0.8);
}

.pose.three-quarter {
  transform: skewX(-5deg);
}

.info-panel {
  padding: 28px 22px;
  align-self: center;
  min-height: 300px;
  display: grid;
  align-content: start;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent),
    rgba(4, 4, 4, 0.72);
  backdrop-filter: blur(6px);
}

.info-panel .eyebrow {
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
}

dl {
  display: grid;
  gap: 0;
  margin: 0 0 26px;
  font-size: 13px;
}

dl div {
  display: grid;
  grid-template-columns: minmax(72px, 1fr) minmax(88px, auto);
  align-items: center;
  gap: 16px;
  min-height: 31px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.055);
}

dt {
  color: var(--muted);
}

dd {
  margin: 0;
  text-align: right;
  color: var(--text);
  font-weight: 900;
  white-space: nowrap;
}

.info-panel .globe.large {
  width: 38px;
  height: 38px;
  margin: 3px auto 18px;
  opacity: 0.75;
}

.info-panel .logo-mark.large {
  width: 138px;
  height: 58px;
  margin-bottom: 16px;
  opacity: 0.95;
}

.info-barcode {
  display: block;
  width: 118px;
  height: 44px;
  margin: 0 auto;
  background:
    linear-gradient(#f5f5f5, #f5f5f5) 0 0 / 3px 100% no-repeat,
    linear-gradient(#f5f5f5, #f5f5f5) 10px 0 / 2px 100% no-repeat,
    linear-gradient(#f5f5f5, #f5f5f5) 18px 0 / 5px 100% no-repeat,
    linear-gradient(#f5f5f5, #f5f5f5) 30px 0 / 2px 100% no-repeat,
    linear-gradient(#f5f5f5, #f5f5f5) 38px 0 / 4px 100% no-repeat,
    linear-gradient(#f5f5f5, #f5f5f5) 49px 0 / 2px 100% no-repeat,
    linear-gradient(#f5f5f5, #f5f5f5) 57px 0 / 3px 100% no-repeat,
    linear-gradient(#f5f5f5, #f5f5f5) 68px 0 / 5px 100% no-repeat,
    linear-gradient(#f5f5f5, #f5f5f5) 80px 0 / 2px 100% no-repeat,
    linear-gradient(#f5f5f5, #f5f5f5) 88px 0 / 4px 100% no-repeat,
    linear-gradient(#f5f5f5, #f5f5f5) 100px 0 / 2px 100% no-repeat,
    linear-gradient(#f5f5f5, #f5f5f5) 108px 0 / 6px 100% no-repeat;
  opacity: 0.95;
  animation: none;
}

.stickers {
  position: relative;
  min-height: 100vh;
  padding: 62px 40px 38px;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 20% 22%, rgba(255, 255, 255, 0.1), transparent 27%),
    radial-gradient(ellipse at 78% 44%, rgba(255, 255, 255, 0.07), transparent 32%),
    radial-gradient(ellipse at 50% 100%, rgba(255, 255, 255, 0.045), transparent 44%),
    linear-gradient(180deg, #060606 0%, #0c0c0c 48%, #030303 100%);
}

.stickers::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px) 0 0 / 42px 42px,
    linear-gradient(180deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px) 0 0 / 42px 42px,
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), transparent 28%, rgba(0, 0, 0, 0.42));
  opacity: 0.48;
}

.stickers-head,
.stickers-layout,
.stickers-footer {
  position: relative;
  z-index: 1;
}

.stickers-head {
  display: grid;
  grid-template-columns: minmax(340px, 0.78fr) minmax(420px, 0.64fr) 92px;
  align-items: center;
  gap: clamp(32px, 5vw, 78px);
  min-height: 228px;
  margin-bottom: 38px;
}

.stickers-title {
  display: grid;
  gap: 28px;
}

.stickers-title .eyebrow {
  margin: 0;
}

.stickers-title h2 {
  margin: 0;
  color: #f2f2f2;
  font-size: clamp(84px, 8.8vw, 164px);
  line-height: 0.82;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow:
    0 2px 0 rgba(255, 255, 255, 0.2),
    0 18px 34px rgba(0, 0, 0, 0.78);
}

.sticker-arrows button {
  min-width: 118px;
  height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 999px;
  background: rgba(10, 10, 10, 0.34);
  color: rgba(255, 255, 255, 0.94);
  font-family: "Arial Narrow", "Roboto Condensed", Arial, sans-serif;
  font-size: 18px;
  line-height: 1;
  text-transform: uppercase;
  transition:
    border-color 0.55s var(--ease-soft),
    background 0.55s var(--ease-soft),
    transform 0.75s var(--ease-lux);
}

.sticker-arrows button:hover {
  border-color: rgba(255, 255, 255, 0.95);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.stickers-copy {
  align-self: center;
  display: grid;
  gap: 18px;
  color: rgba(255, 255, 255, 0.78);
  font-family: "Roboto Mono", "Arial Narrow", monospace;
  font-size: clamp(15px, 1vw, 18px);
  line-height: 1.55;
  letter-spacing: 0;
  text-transform: uppercase;
}

.stickers-copy p {
  margin: 0;
}

.stickers-copy p:first-child,
.stickers-copy p:last-child {
  color: rgba(255, 255, 255, 0.52);
}

.stickers-sidecode {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 12px;
  height: 168px;
  color: rgba(255, 255, 255, 0.72);
  font-family: "Roboto Mono", monospace;
  font-size: 12px;
  line-height: 1;
  writing-mode: vertical-rl;
  text-transform: uppercase;
}

.barcode.vertical {
  display: inline-block;
  width: 42px;
  height: 154px;
  background:
    linear-gradient(90deg, #f2f2f2 0 3px, transparent 3px 6px, #f2f2f2 6px 8px, transparent 8px 13px, #f2f2f2 13px 18px, transparent 18px 24px, #f2f2f2 24px 26px, transparent 26px 31px, #f2f2f2 31px 35px, transparent 35px 39px, #f2f2f2 39px 42px);
  opacity: 0.9;
}

.stickers-layout {
  display: grid;
  grid-template-columns: minmax(330px, 0.58fr) minmax(560px, 0.95fr);
  gap: 40px;
}

.sticker-feature,
.sticker-pack {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 640px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 12px;
  background:
    radial-gradient(ellipse at 36% 36%, rgba(255, 255, 255, 0.115), transparent 44%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), transparent 28%),
    rgba(7, 7, 7, 0.88);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.035), 0 30px 72px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  transition:
    border-color 0.75s var(--ease-soft),
    transform 1s var(--ease-lux),
    box-shadow 1s var(--ease-lux);
}

.sticker-feature {
  grid-template-rows: minmax(0, 1fr) auto;
}

.sticker-feature:hover,
.sticker-pack:hover {
  border-color: rgba(255, 255, 255, 0.62);
  transform: translateY(-4px);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.045), 0 38px 90px rgba(0, 0, 0, 0.58);
}

.sticker-panel__top,
.sticker-panel__bottom {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 66px;
  padding: 0 26px;
  color: rgba(255, 255, 255, 0.9);
  font-family: "Roboto Mono", "Arial Narrow", monospace;
  font-size: 16px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.sticker-panel__top {
  align-items: start;
  padding-top: 27px;
}

.sticker-panel__top > span:first-child {
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.66);
}

.sticker-feature .sticker-panel__top > span:first-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.sticker-feature .sticker-panel__top {
  display: none;
}

.sticker-page-count {
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
}

.barcode.mini {
  display: inline-block;
  width: 170px;
  height: 24px;
  background:
    linear-gradient(#f2f2f2, #f2f2f2) 0 0 / 2px 100% no-repeat,
    linear-gradient(#f2f2f2, #f2f2f2) 8px 0 / 4px 100% no-repeat,
    linear-gradient(#f2f2f2, #f2f2f2) 18px 0 / 1px 100% no-repeat,
    linear-gradient(#f2f2f2, #f2f2f2) 27px 0 / 5px 100% no-repeat,
    linear-gradient(#f2f2f2, #f2f2f2) 41px 0 / 2px 100% no-repeat,
    linear-gradient(#f2f2f2, #f2f2f2) 50px 0 / 4px 100% no-repeat,
    linear-gradient(#f2f2f2, #f2f2f2) 64px 0 / 2px 100% no-repeat,
    linear-gradient(#f2f2f2, #f2f2f2) 76px 0 / 6px 100% no-repeat,
    linear-gradient(#f2f2f2, #f2f2f2) 91px 0 / 2px 100% no-repeat,
    linear-gradient(#f2f2f2, #f2f2f2) 102px 0 / 4px 100% no-repeat,
    linear-gradient(#f2f2f2, #f2f2f2) 116px 0 / 1px 100% no-repeat,
    linear-gradient(#f2f2f2, #f2f2f2) 126px 0 / 5px 100% no-repeat,
    linear-gradient(#f2f2f2, #f2f2f2) 140px 0 / 2px 100% no-repeat,
    linear-gradient(#f2f2f2, #f2f2f2) 152px 0 / 4px 100% no-repeat;
  opacity: 0.82;
}

.sticker-preview {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 164px;
  margin: 0;
  overflow: hidden;
  contain: layout paint;
  perspective: 900px;
  background:
    radial-gradient(ellipse at var(--glow-x, 50%) var(--glow-y, 58%), rgba(255, 255, 255, 0.12), transparent 35%),
    radial-gradient(ellipse at 50% 50%, rgba(255, 255, 255, 0.038), transparent 48%);
  transition: background 0.7s var(--ease-soft), box-shadow 0.65s var(--ease-soft), opacity 0.45s var(--ease-soft);
}

.sticker-preview::before {
  content: "";
  position: absolute;
  width: 42%;
  max-width: 132px;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  opacity: 0.28;
  filter: blur(1px);
}

.sticker-preview::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 42%, rgba(0, 0, 0, 0.28));
}

.sticker-preview img {
  position: relative;
  z-index: 1;
  display: block;
  width: 86%;
  height: 86%;
  max-width: none;
  max-height: none;
  object-fit: contain;
  filter: drop-shadow(0 22px 30px rgba(0, 0, 0, 0.68)) contrast(1.06) brightness(0.96);
  transform:
    translate3d(
      calc(var(--sx, 0px) + var(--trim-x, 0%)),
      calc(var(--sy, 0px) + var(--trim-y, 0%)),
      0
    )
    rotateX(var(--srx, 0deg))
    rotateY(var(--sry, 0deg))
    rotateZ(var(--srz, 0deg))
    scale(var(--ss, 1));
  transform-origin: center;
  transition:
    transform 0.9s var(--ease-lux),
    filter 0.7s var(--ease-soft),
    opacity 0.45s var(--ease-soft);
  will-change: transform;
}

.sticker-card:hover img,
.sticker-thumb:hover img,
.sticker-thumb.is-active img {
  filter: drop-shadow(0 28px 34px rgba(0, 0, 0, 0.78)) contrast(1.12) brightness(1.08);
}

.sticker-preview--large {
  align-content: center;
  height: 100%;
  min-height: 572px;
  padding: 30px 36px 42px;
}

.sticker-preview--large img {
  width: 72%;
  height: 72%;
  max-width: none;
  max-height: none;
  object-fit: contain;
  --ss: 1.08;
  --trim-y: 0%;
}

.sticker-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  grid-template-rows: repeat(3, minmax(170px, 1fr));
  height: 100%;
  overflow: hidden;
}

.sticker-grid .sticker-preview {
  cursor: pointer;
  width: 100%;
  height: 100%;
  min-height: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.13);
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.sticker-grid .sticker-preview img {
  width: 88%;
  height: 88%;
  max-width: none;
  max-height: none;
}

.sticker-thumb {
  padding: 0;
  border-top: 0;
  border-left: 0;
  border-radius: 0;
  color: inherit;
  font: inherit;
  text-align: inherit;
  appearance: none;
  opacity: 1;
  transform: translateY(0);
}

.sticker-thumb.is-hidden {
  display: none;
}

.sticker-grid .sticker-preview.is-active {
  background:
    radial-gradient(ellipse at 50% 58%, rgba(255, 255, 255, 0.16), transparent 38%),
    radial-gradient(ellipse at 50% 50%, rgba(255, 255, 255, 0.06), transparent 48%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.32);
}

.sticker-grid .sticker-preview:nth-child(5n) {
  border-right: 0;
}

.sticker-grid .sticker-preview:nth-last-child(-n + 5) {
  border-bottom: 0;
}

.sticker-placeholder {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.22);
  font-family: "Roboto Mono", monospace;
  font-size: clamp(13px, 0.95vw, 18px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
  opacity: 0.58;
}

.sticker-feature .sticker-placeholder {
  font-size: clamp(30px, 3.6vw, 68px);
  opacity: 0.22;
}

.stickers-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 38px;
  min-height: 92px;
  color: rgba(255, 255, 255, 0.62);
  font-family: "Roboto Mono", monospace;
  font-size: 14px;
  text-transform: uppercase;
}

.stickers-footer > span:first-child {
  font-size: 28px;
  line-height: 1;
}

.sticker-arrows {
  display: flex;
  gap: 22px;
}

.sticker-arrows button {
  min-width: 92px;
  width: 92px;
  height: 50px;
  font-size: 34px;
}

.detail-card {
  border-width: 0 1px 0 0;
}

.slot-cap {
  background:
    radial-gradient(ellipse at 50% 55%, #161616 0 38%, transparent 39%),
    radial-gradient(ellipse at 50% 83%, #080808 0 42%, transparent 43%),
    linear-gradient(145deg, #090909, #232323);
}

.slot-label {
  background:
    linear-gradient(90deg, transparent 0 48%, rgba(255,255,255,0.18) 49% 52%, transparent 53%),
    linear-gradient(135deg, #0a0a0a, #222, #060606);
}

.lower-grid {
  display: grid;
  grid-template-columns: 1.12fr 1fr 0.9fr;
  align-items: stretch;
  gap: 12px;
  padding: 12px 18px;
}

.panel {
  padding: 28px;
  min-height: 250px;
  border-radius: 12px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.025), 0 22px 58px rgba(0, 0, 0, 0.26);
  transition: border-color 0.65s var(--ease-soft), box-shadow 0.9s var(--ease-lux), transform 0.9s var(--ease-lux);
}

.reveal {
  opacity: 0;
  transform: translateY(54px) scale(0.985);
  filter: blur(10px);
  transition:
    opacity var(--duration-lux) var(--ease-lux),
    transform var(--duration-lux) var(--ease-lux),
    filter var(--duration-lux) var(--ease-lux);
  will-change: opacity, transform, filter;
}

.lower-grid .panel {
  min-height: 430px;
  display: flex;
  flex-direction: column;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.reveal :is(.eyebrow, h2, h3, p, .story-panel, .visual-sheet, .info-panel, .panel, .trait-card figure, .detail-card, .variant-choice, .mood-tile, .sticker-feature, .sticker-pack, .sticker-preview) {
  opacity: 0;
  transform: translateY(28px);
  filter: blur(8px);
  transition:
    opacity 1s var(--ease-lux),
    transform 1s var(--ease-lux),
    filter 1s var(--ease-lux);
  transition-delay: calc(var(--reveal-index, 0) * 72ms);
  will-change: opacity, transform, filter;
}

.reveal.is-visible :is(.eyebrow, h2, h3, p, .story-panel, .visual-sheet, .info-panel, .panel, .trait-card figure, .detail-card, .variant-choice, .mood-tile, .sticker-feature, .sticker-pack, .sticker-preview) {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.reveal.is-visible :is(.detail-card, .variant-choice, .mood-tile, .sticker-feature, .sticker-pack):hover {
  transition-delay: 0ms;
}

.variant-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: -4px 0 20px;
}

.variant-button {
  min-height: 34px;
  padding: 9px 13px;
  font-size: 12px;
}

.variant-row {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 14px;
}

.product-row {
  display: flex;
  align-items: end;
  justify-content: space-around;
  gap: 18px;
}

.variant-row article {
  min-width: 0;
  display: grid;
  grid-template-rows: 1fr auto;
  text-align: center;
  opacity: 0.7;
  transition: opacity 0.65s var(--ease-soft), border-color 0.65s var(--ease-soft), box-shadow 0.85s var(--ease-lux), filter 0.65s var(--ease-soft);
  filter: grayscale(0.34) brightness(0.82);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 38%),
    rgba(0, 0, 0, 0.42);
  overflow: hidden;
}

.variant-row article.active,
.variant-row article:hover {
  opacity: 1;
  filter: grayscale(0) brightness(1);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: inset 0 0 28px rgba(255, 255, 255, 0.05);
}

.variant {
  position: relative;
  width: 100%;
  height: auto;
  min-height: 318px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 9px 9px 0 0;
  background:
    radial-gradient(ellipse at 50% 54%, rgba(255, 255, 255, 0.1), transparent 35%),
    #030303;
}

.variant::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 36%, rgba(0, 0, 0, 0.4)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.44), transparent 28%, transparent 72%, rgba(0, 0, 0, 0.44));
}

.variant img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center bottom;
  filter: contrast(1.08) brightness(0.92);
  transform: scale(1.04);
  transition: transform 1s var(--ease-lux), filter 0.85s var(--ease-soft);
}

.variant-row article.active .variant img,
.variant-row article:hover .variant img {
  transform: scale(1.045);
  filter: contrast(1.14) brightness(1);
}

.swatches {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  align-items: center;
  min-height: 0;
}

.swatches span {
  display: grid;
  gap: 14px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1;
  text-align: center;
}

.swatches span::before {
  content: "";
  aspect-ratio: 1.05 / 1;
  background: var(--swatch);
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  transition: transform 0.85s var(--ease-lux), box-shadow 0.85s var(--ease-lux), border-color 0.65s var(--ease-soft);
}

.swatches span:hover::before {
  transform: translateY(-8px);
  box-shadow: 0 0 24px rgba(255, 255, 255, 0.18);
}

.type-panel h2 {
  margin: 8px 0 24px;
  font-size: 42px;
  line-height: 0.95;
}

.type-panel p {
  margin: 18px 0 8px;
  color: var(--muted);
  font-size: 12px;
}

.type-panel strong {
  font-size: 16px;
}

.type-panel code {
  display: block;
  margin-top: auto;
  color: var(--muted);
  font-family: "Arial Narrow", Impact, sans-serif;
  font-size: 14px;
  line-height: 1.45;
}

.bottom-grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(560px, 1.35fr);
  gap: 12px;
  padding: 0 18px 12px;
}

.applications-visual {
  position: absolute;
  inset: 0;
  z-index: 0;
  min-height: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
  border-radius: 12px;
}

.applications-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
  filter: contrast(1.08) brightness(0.9);
}

.applications {
  padding: 0;
}

.applications > .eyebrow {
  position: relative;
  z-index: 2;
  margin: 28px;
}

.product-row {
  min-height: 172px;
}

.product {
  display: grid;
  place-items: center;
  color: var(--text);
  border: 1px solid var(--line);
  background: linear-gradient(145deg, #101010, #222, #080808);
  box-shadow: inset 0 0 22px rgba(255, 255, 255, 0.04);
  transition: transform 0.85s var(--ease-lux), border-color 0.65s var(--ease-soft), box-shadow 0.85s var(--ease-lux);
}

.product:hover {
  border-color: rgba(255, 255, 255, 0.58);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.45), inset 0 0 22px rgba(255, 255, 255, 0.08);
  transform: translateY(-10px) rotate(-2deg);
}

.tote {
  width: 110px;
  height: 120px;
}

.tag {
  width: 70px;
  height: 145px;
}

.box {
  width: 150px;
  height: 92px;
  transform: skewY(-10deg);
}

.box:hover {
  transform: translateY(-10px) skewY(-10deg) rotate(-2deg);
}

.cap {
  width: 118px;
  height: 64px;
  border-radius: 70% 70% 20% 20%;
}

.pouch {
  width: 105px;
  height: 132px;
}

.hoodie {
  width: 112px;
  height: 150px;
  border-radius: 28px 28px 8px 8px;
}

.mood-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.85fr 0.85fr;
  grid-auto-rows: 118px;
  gap: 10px;
}

.mood-tile {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #030303;
}

.mood-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.78)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.34), transparent 38%, rgba(0, 0, 0, 0.2));
}

.mood-tile img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: grayscale(0.2) contrast(1.12) brightness(0.82);
  transform: scale(1.02);
  transition: transform 1.1s var(--ease-lux), filter 0.9s var(--ease-soft);
}

.mood-tile:hover img {
  filter: grayscale(0) contrast(1.22) brightness(1);
  transform: scale(1.08);
}

.mood-tile figcaption {
  display: none;
}

.mood-wide {
  grid-column: span 2;
}

.mood-tall {
  grid-row: span 2;
}

.mood-wide:first-child {
  grid-row: span 2;
}

.footer {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 34px 42px 44px;
  color: var(--text);
  background: #030303;
}

.footer p {
  margin: 0;
  text-align: center;
  letter-spacing: 10px;
}

.footer div {
  display: grid;
  justify-items: end;
  gap: 8px;
  font-size: 14px;
}

.barcode {
  display: block;
  width: 190px;
  height: 56px;
  background: repeating-linear-gradient(
    90deg,
    #f2f2f2 0 2px,
    transparent 2px 5px,
    #f2f2f2 5px 7px,
    transparent 7px 13px
  );
  animation: barcodeBlink 3.6s steps(1) infinite;
  transition: opacity 0.65s var(--ease-soft), filter 0.65s var(--ease-soft), transform 0.65s var(--ease-lux);
}

.barcode.mini {
  width: 100px;
  height: 28px;
}

.hero-code {
  width: min(430px, 100%);
  height: 50px;
  opacity: 0.94;
  mask-image: linear-gradient(90deg, #000 0 92%, transparent);
}

.globe {
  width: 24px;
  height: 24px;
  border: 1px solid var(--text);
  border-radius: 50%;
  background:
    linear-gradient(90deg, transparent 47%, var(--text) 48% 52%, transparent 53%),
    linear-gradient(transparent 47%, var(--text) 48% 52%, transparent 53%);
  opacity: 0.9;
}

.globe.large {
  width: 48px;
  height: 48px;
  margin: 0 auto 20px;
}

.logo-mark {
  width: 76px;
  height: 34px;
  border: 0;
  border-radius: 0;
  background: url("assets/boot-logo.webp") center center / contain no-repeat;
  filter: grayscale(1) contrast(1.35) brightness(1.35);
  mix-blend-mode: screen;
  transition: transform 0.75s var(--ease-lux), filter 0.75s var(--ease-soft), opacity 0.75s var(--ease-soft);
}

.logo-mark:hover {
  transform: scale(1.08);
  filter: grayscale(1) contrast(1.45) brightness(1.55);
}

.logo-mark.large {
  width: 124px;
  height: 54px;
}

@keyframes scan {
  from {
    transform: translateY(-55%);
  }
  to {
    transform: translateY(55%);
  }
}

@keyframes grainBreathe {
  0%,
  100% {
    opacity: 0.16;
    transform: translate3d(0, 0, 0);
  }
  50% {
    opacity: 0.24;
    transform: translate3d(0.35%, -0.25%, 0);
  }
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(32px);
    filter: blur(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes softRise {
  from {
    opacity: 0;
    transform: translateY(18px);
    filter: blur(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes chromeReveal {
  from {
    opacity: 0;
    transform: translateX(-18px);
    filter: blur(10px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
    filter: blur(0);
  }
}

@keyframes voidFloat {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -10px;
  }
}

@keyframes glitchPulse {
  0%,
  91%,
  100% {
    text-shadow: none;
  }
  92% {
    text-shadow: 8px 0 #777, -6px 0 #fff;
  }
  94% {
    text-shadow: -5px 0 #aaa, 7px 0 #333;
  }
}

@keyframes glitchBar {
  0%,
  100% {
    transform: translateX(0);
  }
  45% {
    transform: translateX(18px);
  }
  46% {
    transform: translateX(-10px);
  }
}

@keyframes heroLogoGlitch {
  0%,
  88%,
  100% {
    transform: translate(0, 0);
    filter: none;
  }
  89% {
    transform: translate(3px, -1px);
    filter: drop-shadow(-6px 0 rgba(255, 255, 255, 0.28));
  }
  90% {
    transform: translate(-5px, 2px);
    filter: drop-shadow(8px 0 rgba(255, 255, 255, 0.2));
  }
  91% {
    transform: translate(0, 0);
    filter: none;
  }
}

@keyframes heroLogoSliceA {
  0%,
  78%,
  100% {
    opacity: 0;
    transform: translate(0, 0);
  }
  79% {
    opacity: 0.78;
    transform: translate(11px, -4px);
  }
  80% {
    opacity: 0;
    transform: translate(-7px, 2px);
  }
}

@keyframes heroLogoSliceB {
  0%,
  63%,
  100% {
    opacity: 0;
    transform: translate(0, 0);
  }
  64% {
    opacity: 0.7;
    transform: translate(-12px, 5px);
  }
  65% {
    opacity: 0.42;
    transform: translate(8px, -2px);
  }
  66% {
    opacity: 0;
    transform: translate(0, 0);
  }
}

@keyframes faceFlicker {
  0%,
  85%,
  100% {
    opacity: 1;
  }
  86%,
  88% {
    opacity: 0.25;
  }
}

@keyframes logoJitter {
  0%,
  88%,
  100% {
    transform: translateX(0);
  }
  89% {
    transform: translateX(3px);
  }
  90% {
    transform: translateX(-4px);
  }
}

@keyframes poseIdle {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -5px;
  }
}

@keyframes barcodeBlink {
  0%,
  96%,
  100% {
    opacity: 1;
  }
  97% {
    opacity: 0.55;
  }
}

@keyframes breathe {
  0%,
  100% {
    opacity: 0.82;
  }
  50% {
    opacity: 1;
    filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.4));
  }
}

@keyframes flameOrbit {
  0%,
  100% {
    transform: translateY(0) rotate(-2deg);
  }
  50% {
    transform: translateY(-4px) rotate(3deg);
  }
}

@keyframes flamePulse {
  0%,
  100% {
    opacity: 0.25;
    transform: scale(0.8);
  }
  50% {
    opacity: 0.75;
    transform: scale(1.08);
  }
}

@keyframes flameFlicker {
  0%,
  100% {
    opacity: 0.88;
    translate: 0 2px;
  }
  50% {
    opacity: 1;
    translate: 1px 0;
  }
}

@keyframes soundBars {
  0%,
  100% {
    height: 4px;
  }
  50% {
    height: 14px;
  }
}

@keyframes bootSweep {
  0%,
  100% {
    transform: translateY(-18%);
    opacity: 0.18;
  }
  42% {
    transform: translateY(32%);
    opacity: 0.34;
  }
  68% {
    transform: translate(2%, 58%);
    opacity: 0.12;
  }
}

@keyframes bootNoise {
  0%,
  100% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(-1%, 1%);
  }
  50% {
    transform: translate(1%, -1%);
  }
  75% {
    transform: translate(1%, 1%);
  }
}

@keyframes bootPanel {
  0%,
  90%,
  100% {
    transform: translateX(0);
  }
  92% {
    transform: translateX(-3px);
  }
  94% {
    transform: translateX(4px);
  }
}

@keyframes bootGlitch {
  0%,
  88%,
  100% {
    transform: skewX(0deg);
    filter: none;
  }
  90% {
    transform: skewX(4deg);
    filter: blur(0.5px);
  }
  94% {
    transform: skewX(-5deg) translateX(6px);
  }
}

@keyframes bootLine {
  0%,
  100% {
    opacity: 0.28;
    transform: translateY(0);
  }
  45% {
    opacity: 0.86;
    transform: translateY(-1px);
  }
}

@keyframes storyLine {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes cursorSpin {
  to {
    transform: rotate(405deg);
  }
}

@keyframes cursorGlitch {
  0%,
  100% {
    transform: translate(0, 0);
    opacity: 0.92;
  }
  50% {
    transform: translate(-7px, -3px);
    opacity: 0.56;
  }
}

@keyframes imageReveal {
  from {
    opacity: 0;
    transform: scale(1.02) translateX(20px);
  }
  to {
    opacity: 0.94;
    transform: scale(1) translateX(0);
  }
}

@keyframes imageDrift {
  0%,
  100% {
    filter: contrast(1.08) brightness(0.74) saturate(0.8);
  }
  50% {
    filter: contrast(1.14) brightness(0.82) saturate(0.78);
  }
}

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

@media (max-width: 1180px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 110px;
  }

  .hero-figure {
    min-height: 100%;
  }

  .mascot-shape {
    right: 50%;
    transform: translateX(50%);
    height: 560px;
  }

  .tagline {
    margin-top: 64px;
  }

  .character,
  .mascot-character__copy,
  .visuals,
  .stickers-layout,
  .lower-grid,
  .bottom-grid {
    grid-template-columns: 1fr;
  }

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

  .story-media,
  .story-panel {
    min-height: 520px;
  }

  .story-panel {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .feature-strip,
  .trait-grid,
  .visual-grid,
  .sticker-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stickers-head {
    grid-template-columns: 1fr minmax(72px, auto);
  }

  .stickers-copy {
    grid-column: 1;
  }

  .stickers-sidecode {
    grid-column: 2;
    grid-row: 1 / 3;
  }

  .sticker-grid .sticker-preview:nth-child(5n) {
    border-right: 1px solid rgba(255, 255, 255, 0.13);
  }

  .sticker-grid .sticker-preview:nth-last-child(-n + 5) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  }

  .sticker-grid .sticker-preview:nth-child(4n) {
    border-right: 1px solid rgba(255, 255, 255, 0.13);
  }

  .sticker-grid .sticker-preview:nth-child(2n) {
    border-right: 0;
  }

  .sticker-grid .sticker-preview:nth-last-child(-n + 4) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  }

  .sticker-grid .sticker-preview:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .mascot-character__copy .eyebrow {
    grid-row: auto;
  }

  .mascot-character__copy h2,
  .mascot-character__text {
    grid-column: 1;
    grid-row: auto;
  }

  .mascot-character__text {
    padding-left: 0;
    border-left: 0;
  }

  .trait-card {
    min-height: 520px;
  }
}

@media (max-width: 760px) {
  .boot-loader__panel {
    width: calc(100vw - 28px);
    padding: 26px 20px 24px;
  }

  .boot-loader__word {
    font-size: clamp(70px, 24vw, 104px);
  }

  .boot-loader__word--image {
    width: min(100%, 520px);
  }

  .boot-loader__log {
    gap: 6px;
    margin-top: 22px;
  }

  .sidebar {
    position: static;
    width: auto;
    min-height: auto;
    padding: 18px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .side-nav,
  .sidebar-meta {
    display: none;
  }

  .side-nav.is-open {
    display: grid;
    margin-top: 8px;
  }

  main,
  .topbar {
    margin-left: 0;
    left: 0;
  }

  .topbar {
    position: sticky;
    padding: 18px;
    background: rgba(0, 0, 0, 0.86);
  }

  .hero {
    min-height: auto;
    padding: 52px 18px 34px;
  }

  .hero h1 {
    font-size: clamp(72px, 24vw, 126px);
  }

  .hero-figure {
    min-height: 100%;
  }

  .hero-image,
  .hero-video {
    object-position: 58% center;
  }

  .mascot-shape {
    width: 110%;
    height: 430px;
  }

  .scroll-cue {
    display: none;
  }

  .character,
  .mascot-character,
  .visuals,
  .stickers,
  .lower-grid,
  .bottom-grid {
    padding: 12px;
  }

  .character-story {
    min-height: auto;
  }

  .story-media {
    min-height: 330px;
  }

  .story-panel {
    min-height: 460px;
    padding: 30px 22px 24px;
  }

  .story-progress {
    top: 30px;
    right: 18px;
    height: calc(100% - 92px);
  }

  .story-copy h3 {
    font-size: 36px;
  }

  .story-copy p {
    font-size: 15px;
  }

  .feature-strip,
  .trait-grid,
  .visual-grid {
    grid-template-columns: 1fr;
  }

  .stickers {
    min-height: 0;
  }

  .stickers-head {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 18px;
    min-height: 0;
  }

  .stickers-title {
    gap: 18px;
  }

  .stickers-title h2 {
    font-size: clamp(58px, 18vw, 86px);
  }

  .stickers-copy {
    font-size: 13px;
  }

  .stickers-sidecode {
    justify-self: start;
    flex-direction: row;
    height: auto;
    writing-mode: horizontal-tb;
  }

  .barcode.vertical {
    width: 94px;
    height: 22px;
    background:
      linear-gradient(#f2f2f2, #f2f2f2) 0 0 / 2px 100% no-repeat,
      linear-gradient(#f2f2f2, #f2f2f2) 8px 0 / 4px 100% no-repeat,
      linear-gradient(#f2f2f2, #f2f2f2) 18px 0 / 1px 100% no-repeat,
      linear-gradient(#f2f2f2, #f2f2f2) 27px 0 / 5px 100% no-repeat,
      linear-gradient(#f2f2f2, #f2f2f2) 41px 0 / 2px 100% no-repeat,
      linear-gradient(#f2f2f2, #f2f2f2) 50px 0 / 4px 100% no-repeat,
      linear-gradient(#f2f2f2, #f2f2f2) 64px 0 / 2px 100% no-repeat,
      linear-gradient(#f2f2f2, #f2f2f2) 76px 0 / 6px 100% no-repeat,
      linear-gradient(#f2f2f2, #f2f2f2) 91px 0 / 2px 100% no-repeat;
  }

  .stickers-meta {
    justify-self: start;
  }

  .stickers-layout,
  .sticker-grid {
    grid-template-columns: 1fr;
  }

  .sticker-feature,
  .sticker-pack {
    min-height: 0;
  }

  .sticker-preview--large {
    height: 100%;
    min-height: 414px;
  }

  .sticker-grid {
    grid-template-rows: none;
    grid-auto-rows: 164px;
  }

  .sticker-grid .sticker-preview,
  .sticker-grid .sticker-preview:nth-child(2n),
  .sticker-grid .sticker-preview:nth-child(4n),
  .sticker-grid .sticker-preview:nth-last-child(-n + 2),
  .sticker-grid .sticker-preview:nth-last-child(-n + 4) {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  }

  .sticker-grid .sticker-preview:last-child {
    border-bottom: 0;
  }

  .sticker-panel__top,
  .sticker-panel__bottom {
    min-height: 54px;
    padding: 0 18px;
    font-size: 13px;
  }

  .stickers-footer {
    grid-template-columns: auto 1fr;
    gap: 18px;
    font-size: 12px;
  }

  .sticker-arrows {
    grid-column: 1 / -1;
    justify-self: end;
  }

  .mascot-character {
    gap: 22px;
  }

  .mascot-character__copy {
    grid-template-columns: 1fr;
  }

  .mascot-character__copy .eyebrow {
    grid-row: auto;
  }

  .mascot-character__copy h2,
  .mascot-character__text {
    grid-column: 1;
    grid-row: auto;
  }

  .mascot-character__text {
    padding-left: 0;
    border-left: 0;
  }

  .trait-card {
    min-height: 500px;
  }

  .image-card,
  .detail-card {
    min-height: 230px;
  }

  .visual-grid {
    gap: 8px;
  }

  .visual-sheet {
    min-height: 0;
  }

  .visual-sheet .eyebrow {
    top: 16px;
    left: 16px;
  }

  .view-labels {
    left: 4%;
    right: 4%;
    bottom: 14px;
    font-size: 11px;
  }

  .pose-card {
    min-height: 250px;
  }

  .pose {
    height: 205px;
  }

  .panel {
    padding: 20px;
  }

  .variant-row,
  .product-row {
    flex-wrap: wrap;
  }

  .variant-row {
    grid-template-columns: 1fr;
  }

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

  .mood-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 132px;
  }

  .mood-wide,
  .mood-tall,
  .mood-wide:first-child {
    grid-column: span 2;
    grid-row: span 1;
  }

  .footer {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 28px 18px;
  }

  .footer p {
    letter-spacing: 5px;
  }
}

@media (max-width: 1180px) {
  .story-stage {
    min-height: 720px;
  }

  .story-panel {
    position: absolute;
    top: 50%;
    right: 28px;
    width: min(390px, 42vw);
    min-height: 0;
    border: 1px solid rgba(255, 255, 255, 0.13);
    transform: translateY(-50%);
  }

  .story-media {
    min-height: 0;
  }
}

@media (max-width: 760px) {
  .character-story {
    height: 280svh;
  }

  .story-stage {
    height: 100svh;
    min-height: 620px;
  }

  .story-intro {
    top: 72px;
    left: 18px;
    width: calc(100% - 36px);
  }

  .story-intro h2 {
    font-size: 48px;
    margin-bottom: 10px;
  }

  .story-title {
    font-size: 54px;
  }

  .story-intro p:last-child {
    display: none;
  }

  .story-panel {
    left: 18px;
    right: 18px;
    bottom: 22px;
    top: auto;
    width: auto;
    padding: 22px 20px 20px;
    transform: none;
  }

  .story-copy h3 {
    margin-bottom: 18px;
    font-size: 32px;
  }

  .story-copy p {
    margin-bottom: 12px;
    font-size: 13px;
  }

  .story-progress {
    top: 22px;
    right: 16px;
    height: calc(100% - 66px);
  }
}

@media (max-width: 900px) {
  html,
  body {
    overflow-x: hidden;
  }

  body {
    min-width: 0;
  }

  .boot-loader__panel {
    max-height: calc(100svh - 28px);
    overflow: hidden;
  }

  .sidebar {
    position: sticky;
    top: 0;
    z-index: 30;
  }

  .topbar {
    top: 0;
    z-index: 29;
  }

  .hero,
  .character,
  .mascot-character,
  .visuals,
  .stickers,
  .lower-grid,
  .bottom-grid,
  .footer {
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
  }

  .hero {
    min-height: 100svh;
    padding: 78px 18px 34px;
  }

  .hero-copy {
    max-width: min(440px, 100%);
  }

  .hero-logo {
    width: min(92vw, 420px);
  }

  .hero h1::after {
    width: min(78vw, 330px);
    height: 12px;
    margin-top: -18px;
  }

  .hero h2 {
    margin: 14px 0 24px;
    font-size: clamp(28px, 10vw, 42px);
  }

  .manifesto {
    max-width: 290px;
    font-size: 13px;
    line-height: 1.45;
  }

  .hero-actions {
    gap: 8px;
  }

  .action-button,
  .variant-button {
    min-height: 38px;
    padding: 10px 13px;
    font-size: 12px;
  }

  .tagline {
    max-width: 100%;
    margin-top: 58px;
    gap: 10px;
    font-size: 11px;
    letter-spacing: 4px;
    white-space: normal;
  }

  .story-stage {
    min-height: 640px;
  }

  .story-intro {
    max-width: calc(100vw - 36px);
  }

  .story-panel {
    max-width: calc(100vw - 36px);
    border-radius: 12px;
  }

  .story-controls {
    gap: 10px;
  }

  .story-button {
    min-width: 58px;
    padding: 9px 10px;
  }

  .mascot-character {
    padding: 38px 14px 24px;
  }

  .mascot-character__copy {
    gap: 20px;
  }

  .mascot-character__copy h2 {
    font-size: clamp(48px, 15vw, 82px);
    line-height: 0.86;
  }

  .mascot-character__copy h2 i {
    width: 34px;
    height: 34px;
    margin: 0 8px;
  }

  .mascot-character__text {
    max-width: 100%;
  }

  .mascot-character__text p {
    font-size: 14px;
    line-height: 1.35;
  }

  .mascot-character__target,
  .mascot-character__index {
    display: none;
  }

  .trait-grid {
    gap: 12px;
  }

  .trait-card {
    min-height: 470px;
    border-radius: 12px;
  }

  .trait-card figure {
    padding: 24px 12px 0;
  }

  .trait-card img {
    max-width: 88%;
    max-height: 330px;
    object-fit: contain;
  }

  .trait-card h3 {
    padding: 0 18px 6px;
    font-size: 28px;
  }

  .trait-card p {
    min-height: 58px;
    padding: 8px 52px 20px 18px;
    font-size: 13px;
  }

  .visuals {
    grid-template-columns: 1fr;
    gap: 12px;
    min-height: 0;
  }

  .visual-sheet {
    aspect-ratio: 1.08 / 1;
    border-radius: 12px;
  }

  .visual-sheet img {
    object-fit: contain;
  }

  .view-labels {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 4px;
    bottom: 10px;
  }

  .info-panel {
    min-height: 0;
    padding: 22px 18px;
    border-radius: 12px;
  }

  .stickers {
    padding: 34px 12px 18px;
  }

  .stickers-head {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 18px;
  }

  .stickers-title h2 {
    font-size: clamp(56px, 18vw, 92px);
    line-height: 0.88;
  }

  .stickers-copy {
    gap: 10px;
    font-size: 12px;
    line-height: 1.45;
  }

  .stickers-copy br {
    display: none;
  }

  .stickers-sidecode {
    display: none;
  }

  .stickers-layout {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .sticker-feature,
  .sticker-pack {
    min-height: 0;
    border-radius: 12px;
  }

  .sticker-preview--large {
    min-height: min(78svh, 500px);
    padding: 24px 18px 28px;
  }

  .sticker-preview--large img {
    width: 78%;
    height: 78%;
  }

  .sticker-panel__top,
  .sticker-panel__bottom {
    min-height: 50px;
    padding: 0 16px;
    font-size: 12px;
  }

  .sticker-panel__bottom .barcode {
    width: 98px;
    height: 20px;
  }

  .sticker-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(8, 132px);
    height: auto;
    min-height: 0;
  }

  .sticker-grid .sticker-preview,
  .sticker-grid .sticker-preview:nth-child(2n),
  .sticker-grid .sticker-preview:nth-child(5n),
  .sticker-grid .sticker-preview:nth-last-child(-n + 2),
  .sticker-grid .sticker-preview:nth-last-child(-n + 5) {
    border-right: 1px solid rgba(255, 255, 255, 0.13);
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  }

  .sticker-grid .sticker-preview:nth-child(2n) {
    border-right: 0;
  }

  .sticker-grid .sticker-preview:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .sticker-grid .sticker-preview img {
    width: 82%;
    height: 82%;
  }

  .stickers-footer {
    grid-template-columns: 1fr auto;
    gap: 12px;
    min-height: 72px;
    font-size: 11px;
  }

  .stickers-footer > span:first-child {
    display: none;
  }

  .sticker-arrows {
    grid-column: auto;
    justify-self: end;
    gap: 10px;
  }

  .sticker-arrows button {
    width: 62px;
    min-width: 62px;
    height: 42px;
    font-size: 24px;
  }

  .lower-grid,
  .bottom-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 12px;
  }

  .lower-grid .panel,
  .bottom-grid .panel {
    min-height: 0;
    padding: 22px 18px;
    border-radius: 12px;
  }

  .variant-controls {
    margin-bottom: 14px;
  }

  .variant-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .variant-row article {
    min-height: 350px;
    border-radius: 12px;
  }

  .variant {
    min-height: 300px;
  }

  .variant img {
    transform: scale(1);
  }

  .swatches {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .swatches span::before {
    aspect-ratio: 1.9 / 1;
  }

  .type-panel h2 {
    font-size: clamp(34px, 11vw, 48px);
    word-break: break-word;
  }

  .applications {
    min-height: 320px;
  }

  .applications > .eyebrow {
    margin: 20px;
  }

  .applications-visual img {
    object-fit: contain;
    object-position: center center;
  }

  .mood-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 150px;
    gap: 10px;
  }

  .mood-wide,
  .mood-tall,
  .mood-wide:first-child {
    grid-column: auto;
    grid-row: auto;
  }

  .mood-tile {
    border-radius: 12px;
  }

  .footer {
    padding: 26px 18px 32px;
  }
}

@media (max-width: 420px) {
  .topbar {
    padding: 14px 12px;
  }

  .brand-mark span:last-child,
  .music-label {
    display: none;
  }

  .hero {
    padding-left: 14px;
    padding-right: 14px;
  }

  .manifesto {
    font-size: 12px;
  }

  .mascot-character__copy h2 {
    font-size: clamp(42px, 17vw, 64px);
  }

  .trait-card {
    min-height: 420px;
  }

  .trait-card img {
    max-height: 292px;
  }

  .stickers-title h2 {
    font-size: clamp(48px, 19vw, 76px);
  }

  .sticker-preview--large {
    min-height: 430px;
  }

  .sticker-grid {
    grid-template-rows: repeat(8, 118px);
  }

  .sticker-panel__bottom {
    gap: 10px;
  }

  .sticker-panel__bottom span:last-child {
    font-size: 11px;
  }

  .stickers-footer {
    grid-template-columns: 1fr;
  }

  .sticker-arrows {
    justify-self: stretch;
  }

  .sticker-arrows button {
    flex: 1;
  }

  .visual-sheet {
    aspect-ratio: 0.92 / 1;
  }

  .applications {
    min-height: 270px;
  }
}

@media (max-width: 900px) {
  .section-block:not(.hero)::before,
  .lower-grid::before,
  .bottom-grid::before,
  .footer::before {
    top: -32px;
    height: 64px;
    opacity: 0.55;
  }

  .character-story {
    height: auto;
    min-height: 100svh;
    overflow: hidden;
  }

  .story-stage {
    position: relative;
    top: auto;
    height: 100svh;
    min-height: 620px;
  }

  .story-media {
    position: absolute;
    inset: 0;
  }

  .story-intro {
    top: 64px;
  }

  .story-panel {
    left: 14px;
    right: 14px;
    bottom: 18px;
    max-width: none;
  }

  .mascot-character {
    overflow: hidden;
    width: 100%;
    max-width: 100vw;
  }

  .mascot-character__copy {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    grid-template-columns: minmax(0, 1fr);
    overflow: hidden;
  }

  .mascot-character__copy .eyebrow,
  .mascot-character__copy h2,
  .mascot-character__text {
    grid-column: 1;
    grid-row: auto;
  }

  .mascot-character__copy h2 {
    max-width: 100%;
    overflow-wrap: normal;
    word-break: keep-all;
    transform: none;
    font-size: clamp(39px, 11.4vw, 52px);
    line-height: 0.9;
  }

  .mascot-character__copy h2 span {
    margin-right: 8px;
  }

  .mascot-character__copy h2 i {
    display: inline-block;
    width: 28px;
    height: 28px;
    margin: 0 8px 0 0;
    vertical-align: 0.05em;
    border-width: 1px;
  }

  .mascot-character__copy h2 i::before {
    top: -10px;
    height: calc(100% + 20px);
    width: 1px;
  }

  .mascot-character__copy h2 i::after {
    left: -10px;
    width: calc(100% + 20px);
    height: 1px;
  }

  .mascot-character__text {
    width: 100%;
    max-width: 100%;
    padding-top: 8px;
    overflow: hidden;
  }

  .mascot-character__text p {
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .trait-grid {
    width: 100%;
    max-width: 100%;
    grid-template-columns: minmax(0, 1fr);
  }

  .trait-card {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    min-height: 520px;
    grid-template-rows: 390px auto auto;
    box-sizing: border-box;
    overflow: hidden;
  }

  .trait-card figure {
    min-width: 0;
    height: 390px;
    min-height: 390px;
    overflow: visible;
    padding: 20px 8px 0;
    align-items: end;
  }

  .trait-card img {
    width: 100%;
    height: 82%;
    max-width: 100%;
    max-height: none;
    object-fit: contain;
    object-position: center bottom;
    transform-origin: 50% 82%;
  }

  .trait-card--control img {
    height: 82%;
    --trait-scale: 1.02;
    --iy: 0px;
  }

  .trait-card--ironic img {
    height: 82%;
    --trait-scale: 1.02;
  }

  .trait-card--curious img {
    height: 82%;
    --trait-scale: 1.04;
  }

  .trait-card--power img {
    height: 82%;
    --trait-scale: 1.02;
  }

  .trait-card p::after {
    display: none;
  }

  .sticker-grid {
    grid-auto-flow: row;
  }

  .sticker-grid .sticker-thumb.is-hidden {
    display: none;
  }

  .type-panel {
    overflow: hidden;
  }

  .type-panel code {
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .applications {
    min-height: 260px;
    height: 260px;
    padding: 0;
    overflow: hidden;
  }

  .applications-visual {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .applications-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }

  .mood {
    overflow: hidden;
  }

  .mood-grid {
    max-height: none;
    overflow: visible;
  }

  .footer {
    min-height: 0;
    padding: 24px 18px 28px;
    overflow: hidden;
  }
}

@media (max-width: 420px) {
  .story-stage {
    min-height: 600px;
  }

  .story-panel {
    left: 12px;
    right: 12px;
    bottom: 16px;
    padding: 20px 18px 18px;
  }

  .story-copy h3 {
    font-size: 30px;
  }

  .mascot-character {
    padding-left: 12px;
    padding-right: 12px;
  }

  .mascot-character__copy h2 {
    font-size: clamp(36px, 11vw, 48px);
  }

  .mascot-character__text p {
    font-size: 13px;
    line-height: 1.42;
  }

  .trait-card {
    min-height: 500px;
    grid-template-rows: 370px auto auto;
  }

  .trait-card figure {
    height: 370px;
    min-height: 370px;
    padding-top: 14px;
  }

  .trait-card img {
    max-height: none;
  }

  .trait-card p {
    padding-right: 46px;
  }

  .applications {
    height: 220px;
    min-height: 220px;
  }
}
