:root {
  color-scheme: dark;
  --bg: #080b1b;
  --panel: #0d1a41;
  --panel-strong: #353342;
  --ink: #d7bb8c;
  --muted: #998571;
  --line: rgba(215, 187, 140, 0.16);
  --accent: #d7bb8c;
  --accent-two: #998571;
  --accent-three: #555165;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 18% 12%, rgba(13, 26, 65, 0.72), transparent 28rem),
    radial-gradient(circle at 82% 4%, rgba(153, 133, 113, 0.16), transparent 24rem),
    var(--bg);
  color: var(--ink);
  font-family:
    "SFMono-Regular", "Cascadia Code", "Fira Code", "JetBrains Mono", Consolas,
    "Liberation Mono", Menlo, monospace;
  line-height: 1.6;
}

body::selection {
  background: var(--accent);
  color: #080b1b;
}

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

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 46%, rgba(53, 51, 66, 0.18), transparent 24rem),
    radial-gradient(circle at 72% 64%, rgba(13, 26, 65, 0.34), transparent 28rem),
    linear-gradient(135deg, #030511 0%, #080b1b 54%, #02030a 100%);
  color: var(--accent);
  transition:
    opacity 720ms ease,
    visibility 720ms ease,
    clip-path 900ms cubic-bezier(0.76, 0, 0.24, 1);
  clip-path: inset(0 0 0 0);
}

.site-loader.is-leaving {
  opacity: 0;
  visibility: hidden;
  clip-path: inset(0 0 100% 0);
}

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

.site-loader::before {
  background:
    linear-gradient(90deg, transparent, rgba(215, 187, 140, 0.07), transparent),
    repeating-linear-gradient(0deg, rgba(215, 187, 140, 0.035) 0 1px, transparent 1px 8px);
  opacity: 0.2;
  animation: loader-scan 1350ms linear infinite;
}

.site-loader::after {
  background:
    radial-gradient(circle at 24% 32%, rgba(215, 187, 140, 0.055), transparent 14rem),
    radial-gradient(circle at 72% 58%, rgba(153, 133, 113, 0.07), transparent 18rem);
  animation: loader-breathe 1500ms ease-in-out infinite;
}

.loader-grid {
  background:
    linear-gradient(90deg, rgba(215, 187, 140, 0.022) 1px, transparent 1px) 0 0 / 34px 34px,
    linear-gradient(180deg, rgba(215, 187, 140, 0.018) 1px, transparent 1px) 0 0 / 34px 34px;
  mask-image: radial-gradient(circle at center, black, transparent 72%);
}

.loader-status {
  position: absolute;
  top: clamp(24px, 5vw, 56px);
  left: clamp(18px, 5vw, 64px);
  margin: 0;
  color: rgba(215, 187, 140, 0.38);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.loader-word {
  position: relative;
  z-index: 1;
  display: flex;
  gap: clamp(6px, 1.45vw, 20px);
  color: rgba(215, 187, 140, 0.78);
  font-size: clamp(3.3rem, 11vw, 9rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.08em;
  text-shadow:
    0 0 14px rgba(215, 187, 140, 0.08),
    0 0 48px rgba(8, 11, 27, 0.8);
  animation: loader-flicker 260ms steps(2, end) infinite;
}

.loader-word span {
  display: inline-block;
  min-width: 0.62em;
  transform: translateY(var(--loader-y, 0));
  opacity: var(--loader-opacity, 1);
  transition:
    transform 120ms ease,
    opacity 120ms ease,
    color 120ms ease;
}

.site-loader.is-locked .loader-word {
  animation: none;
}

.loader-line {
  position: absolute;
  z-index: 1;
  width: min(460px, 72vw);
  height: 1px;
  top: calc(50% + clamp(48px, 8vw, 96px));
  background: linear-gradient(90deg, transparent, rgba(215, 187, 140, 0.58), transparent);
  transform: scaleX(0);
  animation: loader-line 1150ms ease forwards;
}

body.is-intro-active {
  overflow: hidden;
}

#signal-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.72;
  z-index: 0;
}

@keyframes loader-scan {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(50%);
  }
}

@keyframes loader-breathe {
  0%,
  100% {
    opacity: 0.56;
    transform: scale(1);
  }

  50% {
    opacity: 0.86;
    transform: scale(1.04);
  }
}

@keyframes loader-flicker {
  0%,
  100% {
    opacity: 1;
  }

  48% {
    opacity: 0.68;
  }

  52% {
    opacity: 0.95;
  }
}

@keyframes loader-line {
  0% {
    opacity: 0;
    transform: scaleX(0);
  }

  38% {
    opacity: 1;
  }

  100% {
    opacity: 0.74;
    transform: scaleX(1);
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0;
  backdrop-filter: blur(18px);
}

.wordmark,
.nav-links {
  display: flex;
  align-items: center;
  gap: 14px;
}

.wordmark {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0;
}

.prompt {
  color: var(--accent);
}

.nav-links a {
  color: var(--muted);
  font-size: 0.82rem;
  transition: color 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--ink);
}

main {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.site-footer {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 34px;
  border-top: 1px solid var(--line);
  text-align: center;
}

.site-footer p {
  margin: 0;
  color: var(--accent-three);
  font-family: "Cascadia Code", "JetBrains Mono", "SFMono-Regular", Consolas, monospace;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.hero {
  min-height: 62vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.46fr);
  align-items: center;
  gap: clamp(28px, 6vw, 84px);
  padding: 44px 0 56px;
}

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

.hero-visual {
  position: relative;
  width: min(430px, 100%);
  aspect-ratio: 4 / 3;
  justify-self: end;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(215, 187, 140, 0.2);
  border-radius: 8px;
  background: var(--panel-strong);
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.42),
    0 0 0 1px rgba(8, 11, 27, 0.5) inset;
}

.hero-visual::before,
.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.hero-visual::before {
  background:
    linear-gradient(90deg, rgba(8, 11, 27, 0.62), transparent 42%),
    linear-gradient(180deg, transparent 58%, rgba(8, 11, 27, 0.58));
  mix-blend-mode: multiply;
}

.hero-visual::after {
  border: 1px solid rgba(215, 187, 140, 0.18);
  inset: 14px;
  background:
    repeating-linear-gradient(90deg, rgba(215, 187, 140, 0.08) 0 1px, transparent 1px 38px),
    repeating-linear-gradient(0deg, rgba(215, 187, 140, 0.055) 0 1px, transparent 1px 38px);
  opacity: 0.5;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.08) brightness(0.76);
}

.eyebrow,
.section-kicker,
.tag {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

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

h1 {
  max-width: 11ch;
  margin-bottom: 24px;
  font-size: clamp(3.65rem, 8vw, 8rem);
  line-height: 0.91;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(1.8rem, 4vw, 3.6rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.08rem;
  line-height: 1.2;
}

.hero-text {
  max-width: 650px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.84rem;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(215, 187, 140, 0.38);
}

.button.primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #080b1b;
}

.button.ghost {
  color: var(--ink);
}

.instagram-button {
  gap: 10px;
  background: var(--accent);
  border-color: var(--accent);
  color: #080b1b;
}

.section {
  padding: 88px 0;
  border-top: 1px solid var(--line);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.section-marker {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.coverflow {
  position: relative;
  --progress-duration: 30s;
  min-height: 610px;
  padding: 32px 0 0;
  overflow: hidden;
}

.cover-stage {
  position: relative;
  height: clamp(320px, 42vw, 430px);
  margin-bottom: 36px;
  cursor: pointer;
  perspective: 1200px;
  transform-style: preserve-3d;
}

.cover-stage::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -5px;
  width: min(820px, 92vw);
  height: 95px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(215, 187, 140, 0.14), transparent 74%);
  filter: blur(10px);
  opacity: 0.58;
  pointer-events: none;
}

.flow-hit-zones {
  position: absolute;
  inset: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.flow-hit-zone {
  border: 0;
  background: transparent;
  cursor: pointer;
}

.flow-hit-zone:disabled {
  cursor: default;
  pointer-events: none;
}

.flow-cover {
  --x: 0px;
  --z: 0px;
  --rotate: 0deg;
  --scale: 1;
  --fade: 1;
  position: absolute;
  top: 6px;
  left: 50%;
  width: clamp(176px, 24vw, 278px);
  aspect-ratio: 1;
  padding: 0;
  border: 0;
  border-radius: 6px;
  background: transparent;
  cursor: pointer;
  pointer-events: auto;
  opacity: var(--fade);
  transform:
    translateX(calc(-50% + var(--x)))
    translateZ(var(--z))
    rotateY(var(--rotate))
    scale(var(--scale));
  transform-style: preserve-3d;
  transition:
    transform 420ms cubic-bezier(0.2, 0.8, 0.2, 1),
    opacity 240ms ease,
    filter 240ms ease;
  filter: saturate(0.86) brightness(0.82);
}

.flow-cover.is-active {
  cursor: default;
  filter: saturate(1.12) brightness(1.06);
  z-index: 8;
}

.flow-cover:not(.is-active):not([aria-hidden="true"]):hover,
.flow-cover:not(.is-active):not([aria-hidden="true"]):focus-visible,
.flow-cover.is-hover-target {
  filter: saturate(1.06) brightness(0.96);
}

.flow-cover:not(.is-active):not([aria-hidden="true"]):hover .cover-art,
.flow-cover:not(.is-active):not([aria-hidden="true"]):focus-visible .cover-art,
.flow-cover.is-hover-target .cover-art {
  border-color: rgba(215, 187, 140, 0.52);
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.42),
    0 0 0 1px rgba(215, 187, 140, 0.26);
}

.flow-cover[aria-hidden="true"] {
  pointer-events: none;
}

.flow-cover:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 8px;
}

.flow-cover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 8px);
  height: 48%;
  border-radius: 6px;
  background:
    var(--cover-image),
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent 28%),
    radial-gradient(circle at 72% 18%, var(--c3), transparent 18%),
    linear-gradient(135deg, var(--c1), var(--c2) 62%);
  background-position: center;
  background-size: cover;
  transform: scaleY(-1);
  opacity: 0.22;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.72), transparent 72%);
  pointer-events: none;
}

.cover-art {
  position: relative;
  display: grid;
  width: 100%;
  height: 100%;
  align-content: space-between;
  padding: 18px;
  overflow: hidden;
  border: 1px solid rgba(215, 187, 140, 0.22);
  border-radius: 6px;
  background:
    var(--cover-image),
    linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent 28%),
    radial-gradient(circle at 72% 18%, var(--c3), transparent 18%),
    linear-gradient(135deg, var(--c1), var(--c2) 62%);
  background-position: center;
  background-size: cover;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.42);
  pointer-events: none;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.cover-art::before {
  content: "";
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(8, 11, 27, 0.34);
  background:
    repeating-linear-gradient(90deg, rgba(8, 11, 27, 0.22) 0 1px, transparent 1px 18px),
    repeating-linear-gradient(0deg, rgba(215, 187, 140, 0.16) 0 1px, transparent 1px 22px);
  mix-blend-mode: multiply;
  opacity: 0;
}

.cover-code,
.cover-title {
  position: relative;
  z-index: 1;
  text-align: left;
  opacity: 0;
}

.cover-code {
  color: rgba(8, 11, 27, 0.72);
  font-size: 0.68rem;
  font-weight: 700;
}

.cover-title {
  color: #080b1b;
  font-size: clamp(1.28rem, 3vw, 2.2rem);
  font-weight: 800;
  line-height: 0.95;
}

#flow-type {
  color: var(--muted);
  letter-spacing: 0;
  text-transform: none;
}

.producer-highlight {
  color: var(--accent);
  font-weight: 900;
}

.now-playing {
  width: min(720px, 100%);
  margin: 0 auto;
  padding: 24px;
  border-top: 1px solid var(--line);
  text-align: center;
}

.now-playing h3 {
  margin-bottom: 8px;
  font-size: clamp(1.5rem, 3.4vw, 2.8rem);
}

.song-link,
.section-link {
  position: relative;
  display: inline-block;
  color: var(--ink);
  text-decoration: none;
  transition:
    color 180ms ease,
    text-shadow 180ms ease,
    transform 180ms ease;
}

.song-link::after,
.section-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.03em;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.song-link:hover,
.song-link:focus-visible,
.section-link:hover,
.section-link:focus-visible {
  color: var(--accent);
  text-shadow: 0 0 18px rgba(215, 187, 140, 0.22);
  transform: translateY(-1px);
}

.song-link:hover::after,
.song-link:focus-visible::after,
.section-link:hover::after,
.section-link:focus-visible::after {
  transform: scaleX(1);
}

.flow-artists {
  margin-bottom: 12px;
  color: rgba(215, 187, 140, 0.86);
  font-size: clamp(0.95rem, 1.55vw, 1.12rem);
  font-weight: 700;
}

.album-line {
  min-height: 1.6em;
  font-style: italic;
}

.album-line.is-empty {
  visibility: hidden;
}

.now-playing p:not(.tag) {
  max-width: 660px;
  margin: 0 auto 22px;
  color: var(--muted);
}

.player-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.flow-progress {
  position: relative;
  width: min(360px, 82vw);
  height: 34px;
  overflow: hidden;
  border-bottom: 1px solid rgba(215, 187, 140, 0.18);
}

.visualizer-bars {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(48, 1fr);
  align-items: end;
  gap: 1px;
}

.visualizer-bars span {
  display: block;
  min-height: 3px;
  height: var(--bar-height, 4px);
  background:
    linear-gradient(
      90deg,
      var(--accent) 0 var(--bar-fill, 0%),
      rgba(153, 133, 113, 0.34) var(--bar-fill, 0%) 100%
    );
  border-radius: 1px 1px 0 0;
  transition: height 90ms linear;
}

.story-section {
  min-height: 420px;
}

.story-console {
  position: relative;
  max-width: 820px;
  padding: clamp(20px, 4vw, 38px) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.story-console::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--accent), transparent);
  opacity: 0.42;
}

.story-line {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.story-line-muted {
  color: rgba(215, 187, 140, 0.44);
}

.story-copy {
  max-width: 760px;
  margin: 0 0 18px;
  padding-left: clamp(16px, 3vw, 28px);
  color: var(--ink);
  font-size: clamp(1.15rem, 2.1vw, 1.8rem);
  line-height: 1.45;
}

.model-section {
  min-height: 520px;
}

.model-scroll {
  max-height: min(430px, 58vh);
  overflow-y: auto;
  overscroll-behavior: contain;
  scroll-snap-type: y proximity;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  scrollbar-color: rgba(215, 187, 140, 0.42) transparent;
}

.model-scroll:focus-visible {
  outline: 2px solid rgba(215, 187, 140, 0.5);
  outline-offset: 8px;
}

.model-job {
  min-height: 168px;
  display: grid;
  grid-template-columns: minmax(160px, 240px) minmax(0, 1fr);
  gap: clamp(14px, 2.4vw, 32px);
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  scroll-snap-align: start;
}

.model-job:last-child {
  border-bottom: 0;
}

.model-job-media {
  position: relative;
  min-height: 140px;
  aspect-ratio: 16 / 10;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(215, 187, 140, 0.18);
  border-radius: 8px;
  background: var(--panel-strong);
}

.model-job-media::after {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(215, 187, 140, 0.14);
  pointer-events: none;
}

.model-job-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(0.78) contrast(1.08) brightness(0.74);
}

.model-job-media img.model-image-focus-top {
  object-position: center 18%;
}

.model-job-media img.model-image-focus-fendi {
  object-position: center 8%;
}

.model-job-media img.model-image-focus-gucci {
  object-position: center 7%;
}

.model-job-media img.model-image-focus-dazed {
  object-position: center 20%;
}

.model-job-media img.model-image-focus-chen-peng {
  object-position: center 26%;
}

.model-job-placeholder {
  background:
    linear-gradient(135deg, rgba(8, 11, 27, 0.28), transparent 38%),
    radial-gradient(circle at 64% 22%, rgba(215, 187, 140, 0.24), transparent 18%),
    linear-gradient(135deg, #0d1a41, #080b1b);
}

.model-job-fendi {
  background:
    linear-gradient(90deg, rgba(8, 11, 27, 0.42), transparent 48%),
    repeating-linear-gradient(90deg, rgba(215, 187, 140, 0.12) 0 1px, transparent 1px 42px),
    linear-gradient(135deg, #353342, #080b1b);
}

.model-job-issey {
  background:
    radial-gradient(circle at 32% 68%, rgba(153, 133, 113, 0.28), transparent 20%),
    repeating-linear-gradient(0deg, rgba(215, 187, 140, 0.08) 0 1px, transparent 1px 30px),
    linear-gradient(135deg, #080b1b, #0d1a41);
}

.model-job-info {
  max-width: 680px;
}

.model-job-info h3 {
  margin-bottom: 6px;
  font-size: clamp(1.35rem, 2.4vw, 2.35rem);
  line-height: 1;
}

.model-job-info p:not(.tag) {
  max-width: 620px;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.45;
}

.model-job-info dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 10px 0 0;
}

.model-job-info dt,
.model-job-info dd {
  margin: 0;
}

.model-job-info dt {
  color: rgba(215, 187, 140, 0.48);
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.model-job-info dd {
  color: var(--ink);
  font-size: 0.72rem;
}

.shop-hero {
  min-height: 0;
  display: flex;
  align-items: center;
  padding: 46px 0 26px;
  border-bottom: 1px solid var(--line);
}

.shop-section {
  padding-top: 26px;
  border-top: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.shop-grid,
.store-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 18px;
}

.store-grid {
  width: 100%;
  grid-template-columns: minmax(0, 720px);
  justify-content: center;
  justify-items: center;
}

.shop-panel {
  min-height: 360px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(13, 26, 65, 0.7);
}

.shop-panel h2 {
  font-size: clamp(1.4rem, 2.4vw, 2.4rem);
}

.shop-panel p:not(.tag) {
  color: var(--muted);
}

.store-kit-card {
  position: relative;
  width: min(100%, 720px);
  min-height: 0;
  border-color: rgba(215, 187, 140, 0.66);
  background:
    linear-gradient(135deg, rgba(215, 187, 140, 0.12), transparent 28%),
    radial-gradient(circle at 82% 14%, rgba(215, 187, 140, 0.18), transparent 14rem),
    radial-gradient(circle at 14% 86%, rgba(85, 81, 101, 0.34), transparent 16rem),
    rgba(13, 26, 65, 0.78);
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.36),
    0 0 0 1px rgba(215, 187, 140, 0.2) inset,
    0 0 34px rgba(215, 187, 140, 0.16);
  animation: kit-card-glow 3.6s ease-in-out infinite;
}

.store-kit-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(120deg, transparent 0 18%, #d7bb8c 34%, #555165 58%, #998571 78%, transparent 100%);
  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.9;
  animation: kit-card-border 4.8s linear infinite;
}

.store-kit-card::after {
  content: "";
  position: absolute;
  inset: -18px;
  z-index: -1;
  border-radius: 18px;
  background: radial-gradient(circle at var(--glow-x, 70%) var(--glow-y, 20%), rgba(215, 187, 140, 0.24), transparent 34%);
  filter: blur(16px);
  opacity: 0.42;
  animation: kit-card-aura 5.2s ease-in-out infinite;
  pointer-events: none;
}

.store-kit-card h2 span {
  display: inline-block;
  background: linear-gradient(90deg, #d7bb8c, #998571 42%, #555165 72%, #d7bb8c);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-family: "Cascadia Code", "JetBrains Mono", "SFMono-Regular", Consolas, monospace;
  letter-spacing: 0.03em;
}

@keyframes kit-card-glow {
  0%,
  100% {
    border-color: rgba(215, 187, 140, 0.52);
    box-shadow:
      0 24px 80px rgba(0, 0, 0, 0.36),
      0 0 0 1px rgba(215, 187, 140, 0.18) inset,
      0 0 28px rgba(215, 187, 140, 0.12);
  }

  50% {
    border-color: rgba(215, 187, 140, 0.86);
    box-shadow:
      0 26px 90px rgba(0, 0, 0, 0.42),
      0 0 0 1px rgba(215, 187, 140, 0.34) inset,
      0 0 48px rgba(215, 187, 140, 0.28);
  }
}

@keyframes kit-card-border {
  from {
    background-position: 0% 50%;
  }

  to {
    background-position: 200% 50%;
  }
}

@keyframes kit-card-aura {
  0%,
  100% {
    --glow-x: 72%;
    --glow-y: 18%;
    opacity: 0.3;
  }

  50% {
    --glow-x: 24%;
    --glow-y: 74%;
    opacity: 0.52;
  }
}

.store-kit-note {
  margin-bottom: 22px;
}

.kit-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0 0 24px;
}

.kit-stats div {
  padding: 12px;
  border: 1px solid rgba(215, 187, 140, 0.14);
  background: rgba(8, 11, 27, 0.26);
}

.kit-stats dt,
.kit-stats dd {
  margin: 0;
}

.kit-stats dt {
  color: rgba(215, 187, 140, 0.48);
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.kit-stats dd {
  color: var(--ink);
  font-size: clamp(1.2rem, 2.4vw, 2rem);
  font-weight: 800;
  line-height: 1;
}

.kit-purchase {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 18px;
  border-top: 1px solid rgba(215, 187, 140, 0.14);
}

.kit-price {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.5rem, 3vw, 2.45rem);
  font-weight: 800;
  letter-spacing: 0.02em;
}

@media (max-width: 860px) {
  .site-header {
    position: static;
  }

  .shop-grid,
  .store-grid {
    grid-template-columns: 1fr;
  }

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

  .kit-purchase {
    align-items: stretch;
    flex-direction: column;
  }

  .model-section {
    min-height: auto;
  }

  .model-scroll {
    max-height: none;
    overflow: visible;
    scroll-snap-type: none;
  }

  .model-job {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .model-job-media {
    width: min(420px, 100%);
    min-height: 320px;
  }

  .model-job-info dl {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 44px 0 52px;
  }

  .hero-visual {
    width: min(420px, 100%);
    justify-self: start;
  }

  h1 {
    max-width: 9ch;
    font-size: clamp(3.3rem, 16vw, 5.6rem);
  }

  .coverflow {
    min-height: 560px;
  }

  .cover-stage {
    height: 340px;
  }
}

@media (max-width: 560px) {
  .site-header {
    align-items: flex-start;
    gap: 16px;
    flex-direction: column;
  }

  .nav-links {
    width: 100%;
    justify-content: space-between;
  }

  .button {
    width: 100%;
  }

  .hero-actions {
    align-items: stretch;
  }

  .section {
    padding: 64px 0;
  }

}
