:root {
  --color-bg: #f7f6f1;
  --color-surface: #ffffff;
  --color-ink: #202124;
  --color-muted: #6d706a;
  --color-subtle: #ddddd6;
  --color-accent: #6f8500;
  --color-accent-strong: #526400;
  --color-night: #0b0d0f;
  --font-display: Georgia, "Times New Roman", serif;
  --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --space-page: clamp(1.25rem, 4vw, 3rem);
  --shell-width: 80rem;
  --radius-soft: 1.75rem;
  --shadow-soft: 0 24px 70px rgba(32, 33, 36, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 10% 0%, rgba(207, 234, 82, 0.2), transparent 25rem),
    var(--color-bg);
  color: var(--color-ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
}

.library-page {
  background: var(--color-night);
}

body::selection {
  background: var(--color-accent);
  color: var(--color-surface);
}

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

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

.skip-link {
  background: var(--color-night);
  color: var(--color-surface);
  left: 1rem;
  padding: 0.75rem 1rem;
  position: absolute;
  top: 1rem;
  transform: translateY(-200%);
  z-index: 20;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  align-items: center;
  display: flex;
  justify-content: space-between;
  left: 50%;
  max-width: var(--shell-width);
  padding: 0.85rem clamp(1.45rem, 2.4vw, 2rem) 0.85rem 1rem;
  position: fixed;
  top: 1rem;
  transform: translateX(-50%);
  width: calc(100% - 2rem);
  z-index: 10;
}

.page-shell {
  margin-inline: auto;
  max-width: var(--shell-width);
  width: min(calc(100% - (var(--space-page) * 2)), var(--shell-width));
}

.site-header::before {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(221, 221, 214, 0.9);
  border-radius: 999px;
  box-shadow: 0 20px 60px rgba(32, 33, 36, 0.12);
  content: "";
  inset: 0;
  position: absolute;
  transition: background 180ms ease, box-shadow 180ms ease;
  z-index: -1;
}

.site-header[data-scrolled]::before {
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 50px rgba(32, 33, 36, 0.16);
}

.brand-mark,
.site-nav {
  align-items: center;
  display: flex;
}

.brand-mark {
  gap: 0.65rem;
  font-weight: 700;
}

.brand-mark img {
  height: 2rem;
  width: 2rem;
}

.site-nav {
  gap: clamp(0.75rem, 3vw, 2rem);
  color: var(--color-muted);
  font-size: 0.9rem;
}

.site-nav a,
.social-links a {
  transition: color 180ms ease;
}

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

.opening-scene {
  align-content: center;
  min-height: 100svh;
  padding: 9rem 0 4.5rem;
}

.opening-scene .page-shell {
  display: grid;
  gap: clamp(2.5rem, 5vw, 4.5rem);
}

.opening-copy {
  max-width: 76rem;
}

.eyebrow,
.section-kicker,
.play-status {
  color: var(--color-accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin: 0 0 2.1rem;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.94;
}

h1 {
  font-size: clamp(4.2rem, 8vw, 8.6rem);
  line-height: 0.98;
  margin-bottom: 1.6rem;
  max-width: 68rem;
  text-wrap: balance;
}

h2 {
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  margin-bottom: 1.3rem;
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.opening-lede,
.page-section p {
  color: var(--color-muted);
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  max-width: 42rem;
}

.opening-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2.2rem;
}

.button {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-weight: 800;
  min-height: 3.15rem;
  padding: 0 1.3rem;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--color-accent);
  color: var(--color-surface);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--color-accent-strong);
}

.button-secondary {
  border: 1px solid var(--color-subtle);
  color: var(--color-ink);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: var(--color-ink);
}

.identity-board {
  display: grid;
  gap: 0.8rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 76rem;
}

.identity-board article {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(221, 221, 214, 0.9);
  border-radius: 1.25rem;
  padding: 1.1rem;
}

.identity-board span {
  color: var(--color-accent);
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  margin-bottom: 0.8rem;
}

.identity-board strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.identity-board p {
  color: var(--color-muted);
  font-size: 0.92rem;
  margin: 0;
}

.page-section {
  padding: clamp(5rem, 10vw, 9rem) 0;
}

.split-section {
  border-top: 1px solid var(--color-subtle);
}

.split-section__inner {
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(10rem, 0.4fr) minmax(0, 1fr);
}

.about-section .split-section__inner {
  gap: 0;
  grid-template-columns: 1fr;
}

.about-section .section-kicker {
  justify-self: end;
  margin-bottom: 1.35rem;
}

.about-content {
  max-width: 100%;
}

.about-content h2 {
  margin-bottom: clamp(2rem, 3vw, 2.6rem);
  max-width: 64rem;
}

.about-story {
  display: grid;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 3rem;
  max-width: 64rem;
  padding-top: 0.4rem;
}

.about-column {
  display: grid;
  gap: 1rem;
}

.about-column + .about-column {
  border-left: 1px solid var(--color-subtle);
  padding-left: clamp(1.5rem, 4vw, 3.5rem);
}

.about-lede {
  color: var(--color-ink);
  font-size: clamp(1.12rem, 1.6vw, 1.32rem);
  line-height: 1.5;
  margin: 0;
}

.about-story p {
  font-size: clamp(1rem, 1.3vw, 1.12rem);
  margin: 0;
}

.about-anchors {
  border-top: 1px solid var(--color-subtle);
  display: grid;
  gap: 0;
  margin: 0;
  max-width: 64rem;
}

.about-anchors div {
  border-bottom: 1px solid var(--color-subtle);
  display: grid;
  gap: 1rem;
  grid-template-columns: minmax(7rem, 0.3fr) minmax(0, 1fr);
  padding: 1.05rem 0;
}

.about-anchors dt {
  color: var(--color-accent);
  font-size: 0.82rem;
  font-weight: 800;
}

.about-anchors dd {
  color: var(--color-muted);
  margin: 0;
}

.section-heading {
  max-width: 58rem;
}

.section-intro {
  margin-bottom: 0;
}

.capability-layout {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
  margin-top: 2.5rem;
}

.capability-grid {
  display: grid;
  gap: 1rem;
}

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

.capability-grid article {
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(221, 221, 214, 0.85);
  border-radius: 1.15rem;
  padding: clamp(1.2rem, 3vw, 2rem);
}

.capability-card {
  cursor: pointer;
  min-height: 18rem;
  outline: 0;
  position: relative;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.capability-card::before {
  background: var(--color-accent);
  border-radius: 999px;
  content: "";
  height: 0.22rem;
  left: clamp(1.2rem, 3vw, 2rem);
  opacity: 0;
  position: absolute;
  right: clamp(1.2rem, 3vw, 2rem);
  top: 1rem;
  transform: scaleX(0.4);
  transform-origin: left;
  transition: opacity 180ms ease, transform 180ms ease;
}

.capability-card:hover,
.capability-card:focus-visible,
.capability-card.is-active {
  background: var(--color-surface);
  border-color: rgba(111, 133, 0, 0.42);
  box-shadow: 0 22px 54px rgba(32, 33, 36, 0.1);
  transform: translateY(-0.25rem);
}

.capability-card.is-active::before {
  opacity: 1;
  transform: scaleX(1);
}

.capability-grid span {
  color: var(--color-accent);
  display: block;
  font-size: 0.82rem;
  font-weight: 800;
  margin-bottom: 1.2rem;
}

.capability-card p {
  margin-bottom: 1.3rem;
}

.capability-card strong {
  color: var(--color-ink);
  display: block;
  font-size: 0.86rem;
}

.capability-signal {
  background: var(--color-night);
  border: 1px solid #232a31;
  border-radius: 1.15rem;
  color: var(--color-surface);
  display: grid;
  gap: 1.25rem;
  grid-template-columns: minmax(11rem, 0.28fr) minmax(0, 1fr) auto;
  grid-template-rows: auto auto;
  min-height: 0;
  overflow: hidden;
  padding: clamp(1.2rem, 3vw, 2rem);
  position: relative;
}

.capability-signal::after {
  border: 1px solid rgba(207, 234, 82, 0.28);
  border-radius: 50%;
  content: "";
  height: 11rem;
  position: absolute;
  right: -4rem;
  top: -4rem;
  width: 11rem;
}

.capability-signal__label {
  color: #cfea52;
  font-size: 0.78rem;
  font-weight: 800;
  grid-column: 1;
  margin: 0;
  text-transform: uppercase;
}

.capability-signal strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 3rem);
  grid-column: 2;
  grid-row: 1 / span 2;
  line-height: 0.98;
}

.capability-signal p:not(.capability-signal__label) {
  color: #a8b3c1;
  font-size: 1rem;
  grid-column: 3;
  grid-row: 1 / span 2;
  margin: 0;
  max-width: 36rem;
}

.capability-signal span {
  color: #cfea52;
  font-size: 0.86rem;
  font-weight: 800;
  grid-column: 1;
  grid-row: 2;
}

.play-section {
  background: var(--color-night);
  color: var(--color-surface);
  overflow: hidden;
  position: relative;
}

.play-section::before {
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 4.5rem 4.5rem;
  content: "";
  inset: 0;
  mask-image: linear-gradient(to bottom, black, transparent 70%);
  pointer-events: none;
  position: absolute;
}

.play-section .page-shell {
  position: relative;
}

.play-section .section-kicker,
.play-section .play-status {
  color: #cfea52;
}

.play-section .section-heading h2 {
  line-height: 1.08;
}

.play-section p {
  color: #a8b3c1;
}

.library-section {
  min-height: 100svh;
  padding-top: 8rem;
}

.library-heading {
  display: grid;
  gap: 0.75rem;
  max-width: 42rem;
}

.library-heading h1 {
  color: #cfea52;
  font-family: var(--font-body);
  font-size: 1.22rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.2;
  margin: 0;
  text-transform: uppercase;
}

.library-heading .section-intro {
  margin: 0;
  max-width: 40rem;
}

.library-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(1.8rem, 4vw, 3rem);
}

.library-grid .play-card {
  align-content: stretch;
  grid-template-columns: 1fr;
  min-height: 0;
}

.library-grid .play-art {
  min-height: 16rem;
}

.library-grid .play-card h2 {
  color: var(--color-surface);
  font-family: var(--font-body);
  font-size: 1.35rem;
  line-height: 1.15;
  margin: 0 0 0.85rem;
}

.library-grid .play-card p:not(.play-status) {
  font-size: 0.98rem;
}

.play-card.is-muted {
  cursor: default;
}

.play-card.is-muted:hover {
  border-color: #232a31;
  box-shadow: none;
  transform: none;
}

.play-library {
  display: grid;
  gap: 1rem;
  grid-template-columns: minmax(0, 1fr) minmax(20rem, 0.42fr);
  margin-top: 2.5rem;
}

.play-gateway {
  margin-top: 2rem;
}

.play-shelf {
  display: grid;
  gap: 1rem;
}

.play-card {
  align-items: stretch;
  background: #101418;
  border: 1px solid #232a31;
  border-radius: 1.15rem;
  cursor: pointer;
  display: grid;
  gap: clamp(1rem, 3vw, 1.5rem);
  grid-template-columns: minmax(12rem, 0.36fr) minmax(0, 1fr);
  min-height: 17rem;
  outline: 0;
  overflow: hidden;
  padding: clamp(1rem, 2vw, 1.25rem);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.play-card:hover,
.play-card:focus-visible,
.play-card.is-selected {
  border-color: rgba(207, 234, 82, 0.52);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  transform: translateY(-0.2rem);
}

.play-card__body {
  align-content: center;
  display: grid;
  padding: clamp(0.35rem, 2vw, 0.75rem);
}

.play-card h3,
.play-detail h3 {
  color: var(--color-surface);
}

.play-card p:not(.play-status) {
  font-size: 1rem;
  margin-bottom: 1.2rem;
}

.play-art {
  background:
    radial-gradient(circle at 50% 34%, rgba(207, 234, 82, 0.14), transparent 7.4rem),
    radial-gradient(ellipse at 50% 100%, rgba(220, 228, 237, 0.13) 0 34%, transparent 35%),
    #0b0f13;
  border: 1px solid rgba(168, 179, 193, 0.16);
  border-radius: 0.85rem;
  min-height: 14.5rem;
  overflow: hidden;
  position: relative;
}

.play-art::after {
  background: rgba(220, 228, 237, 0.08);
  border: 1px solid rgba(168, 179, 193, 0.18);
  border-radius: 999px;
  bottom: 0.75rem;
  content: "";
  height: 2.35rem;
  left: -0.8rem;
  position: absolute;
  right: -0.8rem;
}

.snow-part,
.snow-arm,
.snow-hat,
.snow-eyes,
.snow-nose,
.snow-mouth,
.snow-scarf,
.snow-button,
.snow-card-star,
.snow-card-piece,
.garden-stem,
.garden-node,
.arcade-screen,
.arcade-button,
.arcade-track {
  position: absolute;
}

.snow-part {
  background: #f8faf7;
  border: 2px solid rgba(207, 234, 82, 0.28);
  border-radius: 999px;
  box-shadow:
    inset -0.62rem -0.7rem 0 rgba(168, 179, 193, 0.18),
    0 0 22px rgba(248, 250, 247, 0.12);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.snow-head {
  height: 3.35rem;
  top: 3.35rem;
  width: 3.35rem;
  z-index: 5;
}

.snow-body {
  height: 4.65rem;
  top: 6rem;
  width: 4.9rem;
  z-index: 4;
}

.snow-base {
  height: 5.8rem;
  top: 9.35rem;
  width: 6.65rem;
  z-index: 3;
}

.snow-arm {
  background: #b47a3a;
  border-radius: 999px;
  box-shadow: 0 0 0 1px rgba(255, 236, 181, 0.24);
  height: 0.2rem;
  top: 8.2rem;
  width: 4.05rem;
  z-index: 1;
}

.snow-arm-left {
  left: 16%;
  transform: rotate(154deg);
}

.snow-arm-right {
  right: 16%;
  transform: rotate(26deg);
}

.snow-arm::before,
.snow-arm::after {
  background: #b47a3a;
  border-radius: 999px;
  content: "";
  height: 0.16rem;
  position: absolute;
  right: 0.18rem;
  width: 1.12rem;
}

.snow-arm::before {
  top: -0.36rem;
  transform: rotate(-38deg);
}

.snow-arm::after {
  top: 0.34rem;
  transform: rotate(34deg);
}

.snow-hat {
  background: #11161b;
  border: 1px solid rgba(220, 228, 237, 0.5);
  border-radius: 0.22rem 0.22rem 0.14rem 0.14rem;
  box-shadow: inset 0 -0.42rem 0 #cfea52;
  height: 2.55rem;
  left: 50%;
  top: 1.2rem;
  transform: translateX(-50%) rotate(4deg);
  width: 3.3rem;
  z-index: 8;
}

.snow-hat::after {
  background: #11161b;
  border: 1px solid rgba(220, 228, 237, 0.48);
  border-radius: 999px;
  bottom: -0.36rem;
  content: "";
  height: 0.58rem;
  left: -0.65rem;
  position: absolute;
  right: -0.65rem;
}

.snow-eyes {
  height: 0.52rem;
  left: 50%;
  top: 4.5rem;
  transform: translateX(-50%);
  width: 1.7rem;
  z-index: 9;
}

.snow-eyes::before,
.snow-eyes::after {
  background: #11161b;
  border-radius: 999px;
  content: "";
  height: 0.5rem;
  position: absolute;
  top: 0;
  width: 0.5rem;
}

.snow-eyes::before {
  left: 0;
}

.snow-eyes::after {
  right: 0;
}

.snow-nose {
  border-bottom: 0.28rem solid transparent;
  border-left: 2.1rem solid #e26d26;
  border-top: 0.28rem solid transparent;
  height: 0;
  left: 50%;
  top: 4.9rem;
  transform: translateX(-0.25rem) rotate(2deg);
  width: 0;
  z-index: 10;
}

.snow-mouth {
  border-bottom: 0.18rem solid #11161b;
  border-radius: 0 0 999px 999px;
  filter: drop-shadow(0 0 1px rgba(248, 250, 247, 0.7));
  height: 0.95rem;
  left: 50%;
  top: 5.05rem;
  transform: translateX(-50%);
  width: 2.35rem;
  z-index: 9;
}

.snow-scarf {
  background: #cfea52;
  border-radius: 999px;
  box-shadow:
    0 0 0 1px rgba(16, 22, 27, 0.35),
    1.6rem 0.8rem 0 -0.32rem #9ab214;
  height: 0.72rem;
  left: 50%;
  top: 6.35rem;
  transform: translateX(-50%);
  width: 5.2rem;
  z-index: 9;
}

.snow-button {
  background: #11161b;
  border-radius: 999px;
  box-shadow: 0 0 0 1px rgba(248, 250, 247, 0.34);
  height: 0.62rem;
  left: 50%;
  transform: translateX(-50%);
  width: 0.62rem;
  z-index: 9;
}

.snow-button-one {
  top: 8.05rem;
}

.snow-button-two {
  top: 10rem;
}

.snow-card-star {
  background: rgba(220, 228, 237, 0.5);
  border-radius: 999px;
  height: 0.12rem;
  width: 0.12rem;
}

.snow-card-star-one {
  left: 16%;
  top: 22%;
}

.snow-card-star-two {
  right: 21%;
  top: 18%;
}

.snow-card-star-three {
  right: 15%;
  top: 46%;
}

.snow-card-piece {
  opacity: 0.78;
  z-index: 11;
}

.snow-card-piece-nose {
  border-bottom: 0.22rem solid transparent;
  border-left: 1.45rem solid #e26d26;
  border-top: 0.22rem solid transparent;
  bottom: 2.9rem;
  left: 18%;
  transform: rotate(-18deg);
}

.snow-card-piece-button {
  background: #cfea52;
  border-radius: 999px;
  bottom: 3.65rem;
  box-shadow: 0 0 0 1px rgba(248, 250, 247, 0.26);
  height: 0.46rem;
  right: 18%;
  width: 0.46rem;
}

.garden-stem {
  background: linear-gradient(to top, #6f8500, #cfea52);
  border-radius: 999px;
  bottom: 2rem;
  transform-origin: bottom;
  width: 0.18rem;
}

.garden-stem-one {
  height: 8.5rem;
  left: 34%;
  transform: rotate(-8deg);
}

.garden-stem-two {
  height: 10rem;
  left: 52%;
}

.garden-stem-three {
  height: 7rem;
  left: 68%;
  transform: rotate(10deg);
}

.garden-node {
  background: #101418;
  border: 2px solid #cfea52;
  border-radius: 0.55rem;
  box-shadow: 0 0 24px rgba(207, 234, 82, 0.18);
  height: 3rem;
  width: 4rem;
}

.garden-node-one {
  left: 22%;
  top: 4rem;
}

.garden-node-two {
  left: 44%;
  top: 2.3rem;
}

.garden-node-three {
  left: 61%;
  top: 5.4rem;
}

.garden-node::before {
  background: rgba(168, 179, 193, 0.44);
  border-radius: 999px;
  content: "";
  height: 0.25rem;
  left: 0.7rem;
  position: absolute;
  right: 0.7rem;
  top: 0.82rem;
}

.garden-node::after {
  background: rgba(207, 234, 82, 0.75);
  border-radius: 999px;
  content: "";
  height: 0.25rem;
  left: 0.7rem;
  position: absolute;
  right: 1.4rem;
  top: 1.6rem;
}

.arcade-screen {
  background:
    linear-gradient(135deg, rgba(47, 111, 237, 0.28), rgba(207, 234, 82, 0.22)),
    #121923;
  border: 1px solid rgba(207, 234, 82, 0.42);
  border-radius: 0.7rem;
  height: 7.2rem;
  left: 12%;
  right: 12%;
  top: 2rem;
}

.arcade-screen::before {
  background: #cfea52;
  border-radius: 999px;
  content: "";
  height: 0.75rem;
  left: 1.25rem;
  position: absolute;
  top: 1.15rem;
  width: 0.75rem;
}

.arcade-screen::after {
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  content: "";
  height: 2.1rem;
  position: absolute;
  right: 1.3rem;
  top: 2.7rem;
  width: 2.1rem;
}

.arcade-button {
  background: #cfea52;
  border-radius: 999px;
  bottom: 3.5rem;
  height: 1.15rem;
  width: 1.15rem;
}

.arcade-button-one {
  right: 27%;
}

.arcade-button-two {
  right: 17%;
}

.arcade-track {
  background: rgba(168, 179, 193, 0.25);
  border-radius: 999px;
  bottom: 3.85rem;
  height: 0.42rem;
  left: 16%;
  width: 34%;
}

.play-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1.25rem;
}

.play-meta span {
  border: 1px solid rgba(168, 179, 193, 0.28);
  border-radius: 999px;
  color: #dce4ed;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 0.3rem 0.55rem;
}

.play-detail {
  align-self: start;
  background: rgba(16, 20, 24, 0.82);
  border: 1px solid rgba(207, 234, 82, 0.26);
  border-radius: 1.15rem;
  min-height: 24rem;
  padding: clamp(1.2rem, 3vw, 2rem);
  position: sticky;
  top: 7rem;
}

.play-detail p:not(.play-status) {
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

.play-detail dl {
  border-top: 1px solid #232a31;
  margin: 0;
}

.play-detail div {
  border-bottom: 1px solid #232a31;
  display: grid;
  gap: 0.5rem;
  padding: 1rem 0;
}

.play-detail dt {
  color: #cfea52;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.play-detail dd {
  color: #dce4ed;
  margin: 0;
}

.text-button {
  background: transparent;
  border: 0;
  color: #cfea52;
  cursor: pointer;
  display: inline-block;
  font: inherit;
  font-weight: 800;
  margin-top: 1rem;
  padding: 0;
  text-align: left;
}

.text-button:hover,
.text-button:focus-visible {
  color: var(--color-surface);
}

.snowman-studio {
  border-top: 1px solid #232a31;
  margin-top: clamp(3rem, 7vw, 5.5rem);
  padding-top: clamp(2rem, 5vw, 3.5rem);
}

.snowman-studio__intro {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 1.6rem;
  max-width: 44rem;
}

.snowman-studio__intro .section-kicker,
.snowman-studio__intro p {
  margin-bottom: 0;
}

.snowman-studio__intro h2,
.snowman-studio__intro h3 {
  color: var(--color-surface);
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.2vw, 3.2rem);
  line-height: 1;
  margin: 0;
}

.snowman-controls {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  justify-content: center;
  margin: 0;
}

.snowman-play-button {
  background:
    radial-gradient(circle at 22% 28%, #ffffff 0 0.45rem, transparent 0.48rem),
    linear-gradient(135deg, #f8faf7 0%, #dce4ed 48%, #cfea52 100%);
  border-color: rgba(207, 234, 82, 0.82);
  box-shadow: 0 16px 42px rgba(207, 234, 82, 0.18);
  color: #101418;
  gap: 0.65rem;
  min-height: 3.2rem;
  padding: 0 1.2rem 0 0.75rem;
}

.snowman-play-button:hover,
.snowman-play-button:focus-visible {
  background:
    radial-gradient(circle at 22% 28%, #ffffff 0 0.45rem, transparent 0.48rem),
    linear-gradient(135deg, #ffffff 0%, #eaf0f6 42%, #dfff5f 100%);
  color: #101418;
}

.snowman-play-button[data-active-round] {
  background:
    radial-gradient(circle at 22% 28%, #fff7e8 0 0.45rem, transparent 0.48rem),
    linear-gradient(135deg, #ffb257 0%, #e26d26 58%, #cfea52 100%);
  border-color: rgba(255, 178, 87, 0.9);
  box-shadow: 0 18px 52px rgba(226, 109, 38, 0.28);
  color: #101418;
}

.snowman-play-button[data-active-round] .snow-button-mark {
  box-shadow:
    inset -0.18rem -0.2rem 0 rgba(168, 179, 193, 0.28),
    0 0 0 0.22rem rgba(255, 247, 232, 0.62),
    0 0 24px rgba(255, 178, 87, 0.62);
}

.snow-button-mark {
  background: #f8faf7;
  border: 1px solid rgba(16, 22, 27, 0.16);
  border-radius: 999px;
  box-shadow:
    inset -0.18rem -0.2rem 0 rgba(168, 179, 193, 0.28),
    0 0 0 0.22rem rgba(255, 255, 255, 0.44);
  flex: 0 0 auto;
  height: 1.45rem;
  width: 1.45rem;
}

.icon-button {
  align-items: center;
  background: #101418;
  border: 1px solid #2f3943;
  border-radius: 999px;
  color: #dce4ed;
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 800;
  height: 2.65rem;
  justify-content: center;
  min-width: 2.65rem;
  padding: 0 0.9rem;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.icon-button:hover,
.icon-button:focus-visible {
  background: #151b21;
  border-color: rgba(207, 234, 82, 0.58);
  color: #cfea52;
  transform: translateY(-1px);
}

.snowman-workbench {
  display: grid;
  gap: 1rem;
  grid-template-columns: minmax(0, 1fr) minmax(17rem, 0.3fr);
}

.snowman-play-area {
  display: grid;
  gap: 1rem;
}

.snowman-stage {
  aspect-ratio: 16 / 10;
  background:
    radial-gradient(circle at 25% 18%, rgba(207, 234, 82, 0.14), transparent 9rem),
    linear-gradient(180deg, #1b2329 0%, #10161b 100%);
  border: 1px solid rgba(207, 234, 82, 0.24);
  border-radius: 1.15rem;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03), 0 30px 90px rgba(0, 0, 0, 0.26);
  min-height: 32rem;
  overflow: hidden;
  position: relative;
  touch-action: none;
}

.snowman-stage::before {
  background: rgba(11, 15, 19, 0.72);
  border: 1px solid rgba(207, 234, 82, 0.28);
  border-radius: 999px;
  color: #dce4ed;
  content: attr(data-stage-label);
  font-size: 0.78rem;
  font-weight: 800;
  left: 1rem;
  letter-spacing: 0.04em;
  max-width: calc(100% - 2rem);
  padding: 0.48rem 0.75rem;
  position: absolute;
  text-transform: uppercase;
  top: 1rem;
  z-index: 20;
}

.snowfall {
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.62) 0 1px, transparent 1.5px),
    radial-gradient(circle, rgba(207, 234, 82, 0.5) 0 1px, transparent 1.5px);
  background-position: 0 0, 2rem 1.35rem;
  background-size: 4rem 4rem, 5.5rem 5.5rem;
  inset: 0;
  opacity: 0.34;
  pointer-events: none;
  position: absolute;
}

.studio-ground {
  background:
    radial-gradient(ellipse at 50% 10%, rgba(248, 250, 247, 0.18), transparent 56%),
    rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(220, 228, 237, 0.12);
  border-radius: 50%;
  bottom: 3.5%;
  height: 16%;
  left: 14%;
  pointer-events: none;
  position: absolute;
  right: 14%;
}

.snowman-piece {
  background: transparent;
  border: 0;
  cursor: grab;
  left: calc(var(--piece-x) * 1%);
  outline: 0;
  padding: 0;
  position: absolute;
  top: calc(var(--piece-y) * 1%);
  touch-action: none;
  transform: translate(-50%, -50%) rotate(var(--piece-rotation, 0deg));
  filter:
    drop-shadow(0 0 1px rgba(255, 255, 255, 0.72))
    drop-shadow(0 0.45rem 0.8rem rgba(0, 0, 0, 0.3));
  transition: box-shadow 150ms ease, filter 150ms ease;
  user-select: none;
  z-index: var(--piece-z, 2);
}

.snowman-piece[hidden] {
  display: none;
}

.snowman-piece:active {
  cursor: grabbing;
}

.snowman-piece:focus-visible,
.snowman-piece.is-dragging {
  filter:
    drop-shadow(0 0 1px rgba(255, 255, 255, 0.82))
    drop-shadow(0 0 18px rgba(207, 234, 82, 0.34));
}

.snowman-piece:focus-visible::after,
.snowman-piece.is-dragging::after {
  border: 2px solid rgba(207, 234, 82, 0.75);
  border-radius: inherit;
  content: "";
  inset: -0.45rem;
  pointer-events: none;
  position: absolute;
}

.snowball {
  background: #f8faf7;
  border: 2px solid rgba(207, 234, 82, 0.56);
  border-radius: 999px;
  box-shadow: inset -1rem -1.1rem 0 rgba(168, 179, 193, 0.22), inset 0.55rem 0.55rem 0 rgba(255, 255, 255, 0.78);
}

.snowball-base {
  height: 10.5rem;
  width: 12.4rem;
}

.snowball-body {
  height: 8.4rem;
  width: 9.4rem;
}

.snowball-head {
  height: 6.45rem;
  width: 6.45rem;
}

.snowman-stage[data-variant="tall"] .snowball-base {
  height: 11.4rem;
  width: 8.3rem;
}

.snowman-stage[data-variant="tall"] .snowball-body {
  height: 9.5rem;
  width: 6.5rem;
}

.snowman-stage[data-variant="tall"] .snowball-head {
  height: 5.6rem;
  width: 4.8rem;
}

.snowman-arm {
  background: #b47a3a;
  border-radius: 999px;
  box-shadow: 0 0 0 1px rgba(255, 236, 181, 0.28);
  height: 0.28rem;
  width: 7.4rem;
}

.snowman-stage[data-variant="tall"] .snowman-arm {
  width: 4.7rem;
}

.snowman-stage[data-variant="tall"] .snowman-arm::before {
  box-shadow: -0.55rem 0.42rem 0 -0.02rem #b47a3a;
}

.snowman-stage[data-variant="tall"] .snowman-arm::after {
  box-shadow: -0.45rem -0.48rem 0 -0.02rem #b47a3a;
}

.snowman-arm::before,
.snowman-arm::after {
  background: #b47a3a;
  border-radius: 999px;
  content: "";
  height: 0.22rem;
  position: absolute;
  right: 0.2rem;
  width: 2.2rem;
}

.snowman-arm::before {
  top: -0.65rem;
  transform: rotate(-36deg);
}

.snowman-arm::after {
  top: 0.58rem;
  transform: rotate(34deg);
}

.snowman-arm-left::before,
.snowman-arm-left::after {
  left: auto;
  right: 0.2rem;
}

.snowman-hat {
  background: #11161b;
  border: 1px solid rgba(220, 228, 237, 0.5);
  border-radius: 0.3rem 0.3rem 0.18rem 0.18rem;
  box-shadow: inset 0 -0.7rem 0 #cfea52, 0 0 0 1px rgba(207, 234, 82, 0.2);
  height: 4.4rem;
  width: 5.2rem;
}

.snowman-stage[data-variant="tall"] .snowman-hat {
  border-radius: 999px 999px 0.7rem 0.7rem;
  box-shadow: inset 0 -0.62rem 0 #cfea52, 0 0 0 1px rgba(207, 234, 82, 0.2);
  height: 3.65rem;
  width: 4.25rem;
}

.snowman-stage[data-variant="tall"] .snowman-hat:not([data-piece="decoy-hat"])::before {
  background: #11161b;
  border: 1px solid rgba(220, 228, 237, 0.5);
  border-radius: 999px;
  content: "";
  height: 1rem;
  left: 50%;
  position: absolute;
  top: -0.55rem;
  transform: translateX(-50%);
  width: 1rem;
}

.snowman-stage[data-variant="tall"] .snowman-hat::after {
  left: -0.8rem;
  right: -0.8rem;
}

.snowman-hat::after {
  background: #11161b;
  border: 1px solid rgba(220, 228, 237, 0.5);
  border-radius: 999px;
  bottom: -0.45rem;
  content: "";
  height: 0.9rem;
  left: -1rem;
  position: absolute;
  right: -1rem;
}

.snowman-hat[data-piece="decoy-hat"] {
  box-shadow: 0 0 0 1px rgba(207, 234, 82, 0.2);
}

.snowman-hat[data-piece="decoy-hat"]::before {
  background: #cfea52;
  border-radius: 999px;
  bottom: 0.7rem;
  content: "";
  height: 0.35rem;
  left: 0.45rem;
  position: absolute;
  right: 0.45rem;
  transform: rotate(-14deg);
}

.snowman-eyes {
  height: 0.95rem;
  width: 3.1rem;
}

.snowman-stage[data-variant="tall"] .snowman-eyes {
  width: 2.5rem;
}

.snowman-eyes::before,
.snowman-eyes::after {
  background: #11161b;
  box-shadow: 0 0 0 2px rgba(248, 250, 247, 0.38);
  border-radius: 999px;
  content: "";
  height: 0.85rem;
  position: absolute;
  top: 0;
  width: 0.85rem;
}

.snowman-eyes::before {
  left: 0;
}

.snowman-eyes::after {
  right: 0;
}

.snowman-nose {
  border-bottom: 0.55rem solid transparent;
  border-left: 3.8rem solid #e26d26;
  border-top: 0.55rem solid transparent;
  height: 0;
  width: 0;
}

.snowman-stage[data-variant="tall"] .snowman-nose {
  border-bottom-width: 0.42rem;
  border-left-width: 2.9rem;
  border-top-width: 0.42rem;
}

.snowman-nose[data-piece="decoy-nose"] {
  background: transparent;
  border-bottom: 0.48rem solid transparent;
  border-left: 2.15rem solid #e26d26;
  border-radius: 0.32rem;
  border-top: 0.32rem solid transparent;
  filter: drop-shadow(0 0 1px rgba(248, 250, 247, 0.62));
  height: 0;
  width: 0;
}

.snowman-mouth {
  border-bottom: 0.28rem solid #11161b;
  border-radius: 0 0 999px 999px;
  filter: drop-shadow(0 0 1px rgba(248, 250, 247, 0.78));
  height: 1.6rem;
  width: 3.8rem;
}

.snowman-stage[data-variant="tall"] .snowman-mouth {
  height: 1.2rem;
  width: 2.6rem;
}

.snowman-scarf {
  background: #cfea52;
  border-radius: 999px;
  box-shadow:
    0 0 0 1px rgba(16, 22, 27, 0.38),
    2.2rem 1.2rem 0 -0.45rem #9ab214;
  height: 1.05rem;
  width: 7.6rem;
}

.snowman-stage[data-variant="tall"] .snowman-scarf {
  height: 0.9rem;
  width: 5.6rem;
}

.snowman-stage[data-variant="tall"] .snowman-scarf::after {
  height: 3.4rem;
  width: 0.9rem;
}

.snowman-scarf::after {
  background: #cfea52;
  box-shadow: 0 0 0 1px rgba(16, 22, 27, 0.38);
  border-radius: 0.25rem;
  content: "";
  height: 3.8rem;
  position: absolute;
  right: 1rem;
  top: 0.55rem;
  transform: rotate(-8deg);
  width: 1.1rem;
}

.snowman-button {
  background: #11161b;
  border-radius: 999px;
  box-shadow: 0 0 0 2px rgba(248, 250, 247, 0.42);
  height: 1rem;
  width: 1rem;
}

.snowman-stage[data-variant="tall"] .snowman-button {
  height: 0.82rem;
  width: 0.82rem;
}

.snowman-button[data-piece="decoy-button"] {
  background: #cfea52;
  box-shadow: 0 0 0 2px rgba(16, 22, 27, 0.48), 0 0 18px rgba(207, 234, 82, 0.22);
}

.snowman-decoy {
  opacity: 0.82;
}

.snowman-palette {
  align-self: stretch;
  background: rgba(16, 20, 24, 0.82);
  border: 1px solid #232a31;
  border-radius: 1.15rem;
  padding: clamp(1rem, 2vw, 1.5rem);
}

.snowman-variants {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: -0.75rem 0 1rem;
}

.snowman-variant {
  background: #101418;
  border: 1px solid #2f3943;
  border-radius: 999px;
  color: #dce4ed;
  cursor: pointer;
  font: inherit;
  font-size: 0.76rem;
  font-weight: 800;
  padding: 0.42rem 0.62rem;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.snowman-variant:hover,
.snowman-variant:focus-visible,
.snowman-variant.is-active {
  background: rgba(207, 234, 82, 0.12);
  border-color: rgba(207, 234, 82, 0.7);
  color: #cfea52;
}

.snowman-palette h3,
.snowman-palette h4 {
  color: var(--color-surface);
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.35;
  margin: 0 0 1rem;
}

.snowman-palette p {
  font-size: 0.98rem;
  margin-bottom: 1.3rem;
}

.snowman-stats {
  border-top: 1px solid #232a31;
  display: grid;
  gap: 0;
  margin: 0 0 1rem;
}

.snowman-stats div {
  align-items: center;
  border-bottom: 1px solid #232a31;
  display: flex;
  justify-content: space-between;
  padding: 0.85rem 0;
}

.snowman-stats dt {
  color: #cfea52;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.snowman-stats dd {
  color: #dce4ed;
  font-size: clamp(1.35rem, 2.4vw, 1.9rem);
  font-weight: 800;
  line-height: 1;
  margin: 0;
}

.snowman-stats dd[data-snowman-timer][data-running] {
  animation: timerPulse 1400ms ease-in-out infinite;
}

.snowman-stats dd[data-snowman-timer][data-running][data-urgent] {
  animation-duration: 620ms;
  color: #ffb257;
  text-shadow: 0 0 18px rgba(226, 109, 38, 0.5);
}

@keyframes timerPulse {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.12);
  }
}

.snowman-palette ul {
  border-top: 1px solid #232a31;
  color: #dce4ed;
  display: grid;
  gap: 0.75rem;
  list-style: none;
  margin: 0;
  padding: 1rem 0 0;
}

.snowman-palette li {
  color: #dce4ed;
  font-size: 0.92rem;
}

.contact-section {
  min-height: 70svh;
}

.contact-link {
  color: var(--color-accent);
  display: inline-block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 5rem);
  line-height: 1;
  margin-top: 1rem;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  margin-top: 2rem;
}

.site-footer {
  border-top: 1px solid var(--color-subtle);
  color: var(--color-muted);
  font-size: 0.88rem;
  margin-top: clamp(3rem, 7vw, 6rem);
  padding-top: 1.25rem;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 920px) {
  .opening-scene,
  .split-section__inner,
  .capability-layout,
  .capability-grid,
  .capability-signal,
  .identity-board,
  .play-library,
  .play-card,
  .library-heading,
  .library-grid,
  .snowman-workbench {
    grid-template-columns: 1fr;
  }

  .opening-scene {
    padding-top: 8rem;
  }

  .play-detail {
    position: static;
  }

  .snowman-controls {
    justify-content: center;
  }

  h1 {
    font-size: clamp(3.4rem, 15vw, 5.8rem);
  }
}

@media (max-width: 640px) {
  .site-header {
    align-items: flex-start;
    border-radius: 1.5rem;
    flex-direction: column;
    gap: 0.75rem;
  }

  .site-header::before {
    border-radius: 1.5rem;
  }

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

  .brand-mark span {
    font-size: 0.95rem;
  }

  .opening-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    justify-content: center;
  }

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

  .about-column + .about-column {
    border-left: 0;
    border-top: 1px solid var(--color-subtle);
    padding-left: 0;
    padding-top: 1rem;
  }

  .about-anchors div {
    gap: 0.35rem;
    grid-template-columns: 1fr;
  }

  .snowman-stage {
    aspect-ratio: 4 / 5;
    min-height: 30rem;
  }

  .snowball-base {
    height: 8.2rem;
    width: 9.8rem;
  }

  .snowball-body {
    height: 6.9rem;
    width: 7.6rem;
  }

  .snowball-head {
    height: 5.25rem;
    width: 5.25rem;
  }

  .snowman-arm {
    width: 5.8rem;
  }

  .snowman-hat {
    height: 3.6rem;
    width: 4.3rem;
  }

  .snowman-scarf {
    width: 6.4rem;
  }

  .snowman-stage[data-variant="tall"] .snowball-base {
    height: 9rem;
    width: 6.6rem;
  }

  .snowman-stage[data-variant="tall"] .snowball-body {
    height: 7.6rem;
    width: 5.2rem;
  }

  .snowman-stage[data-variant="tall"] .snowball-head {
    height: 4.8rem;
    width: 4rem;
  }

  .snowman-stage[data-variant="tall"] .snowman-hat {
    height: 3.15rem;
    width: 3.65rem;
  }

  .snowman-stage[data-variant="tall"] .snowman-scarf {
    width: 4.8rem;
  }
}

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

  .snowman-stats dd[data-snowman-timer] {
    animation: none !important;
  }
}
