/* Pixel Play test concept. Semantic tokens inspired by shadcn/ui. */
:root {
  --background: 240 7% 96%;
  --foreground: 240 7% 7%;
  --card: 0 0% 100%;
  --card-foreground: 240 7% 7%;
  --popover: 0 0% 100%;
  --popover-foreground: 240 7% 7%;
  --primary: 266 69% 56%;
  --primary-foreground: 0 0% 100%;
  --secondary: 266 74% 61%;
  --secondary-foreground: 0 0% 100%;
  --muted: 240 5% 90%;
  --muted-foreground: 240 4% 38%;
  --accent: 266 74% 61%;
  --accent-foreground: 0 0% 100%;
  --destructive: 0 78% 56%;
  --destructive-foreground: 0 0% 100%;
  --border: 240 6% 78%;
  --input: 240 6% 78%;
  --ring: 266 69% 56%;
  --chart-1: 266 69% 56%;
  --chart-2: 279 76% 68%;
  --chart-3: 34 100% 57%;
  --chart-4: 188 100% 42%;
  --chart-5: 338 100% 64%;

  --surface-ink: 240 7% 7%;
  --surface-ink-soft: 240 6% 11%;
  --surface-paper: 48 24% 96%;
  --surface-signal: 266 69% 56%;
  --line-on-ink: 0 0% 100% / 0.16;
  --shadow-color: 240 20% 4%;
  --radius-sm: 0.5rem;
  --radius-md: 0.875rem;
  --radius-lg: 1.25rem;
  --radius-xl: 1.75rem;
  --content: 90rem;
  --gutter: clamp(1rem, 3vw, 3rem);
  --header-height: 4.5rem;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --font-sans: "Manrope", system-ui, sans-serif;
}

[data-theme="dark"] {
  --background: 240 7% 5%;
  --foreground: 48 24% 96%;
  --card: 240 6% 9%;
  --card-foreground: 48 24% 96%;
  --popover: 240 6% 9%;
  --popover-foreground: 48 24% 96%;
  --primary: 266 70% 60%;
  --primary-foreground: 0 0% 100%;
  --secondary: 273 77% 68%;
  --secondary-foreground: 0 0% 100%;
  --muted: 240 5% 15%;
  --muted-foreground: 240 6% 66%;
  --accent: 273 77% 68%;
  --accent-foreground: 0 0% 100%;
  --border: 0 0% 100% / 0.13;
  --input: 0 0% 100% / 0.14;
  --ring: 266 70% 60%;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 1.5rem);
}

body {
  min-width: 20rem;
  margin: 0;
  color: hsl(var(--foreground));
  background: hsl(var(--background));
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  transition: color 300ms ease, background-color 300ms ease;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid hsl(var(--ring));
  outline-offset: 4px;
}

::selection {
  color: hsl(var(--primary-foreground));
  background: hsl(var(--primary));
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 1000;
  padding: 0.8rem 1rem;
  color: hsl(var(--primary-foreground));
  background: hsl(var(--primary));
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 800;
  transform: translateY(-150%);
}

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

.site-header {
  position: fixed;
  top: 0.75rem;
  left: 50%;
  z-index: 100;
  width: min(calc(100% - 1.5rem), var(--content));
  height: var(--header-height);
  padding: 0.625rem 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  background: transparent;
  border: 0;
  border-radius: 0;
  transform: translateX(-50%);
  transition: background-color 240ms ease, box-shadow 240ms ease, top 240ms ease, transform 520ms var(--ease-out);
}

.site-header.is-scrolled {
  top: 0.5rem;
  background: hsl(var(--background) / 0.92);
  box-shadow: 0 0.9rem 2.5rem hsl(var(--shadow-color) / 0.1);
}

.site-header.is-hidden {
  transform: translate(-50%, calc(-100% - 2rem));
}

.brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  width: fit-content;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand img {
  width: 2.7rem;
  height: 2.7rem;
  object-fit: contain;
  transform-origin: center;
}

.brand.is-popping img {
  animation: logo-pop 520ms var(--ease-out);
}

.brand__wordmark {
  white-space: nowrap;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0;
  color: hsl(var(--muted-foreground));
  background: transparent;
  border-radius: 0;
}

.desktop-nav a {
  padding: 0.6rem 0.9rem;
  border-radius: 0;
  font-size: 0.75rem;
  font-weight: 700;
  white-space: nowrap;
  transition: color 180ms ease, background-color 180ms ease;
}

.desktop-nav a:hover {
  color: hsl(var(--primary));
  background: transparent;
}

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.icon {
  width: 1.1rem;
  height: 1.1rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.icon-button {
  width: 2.65rem;
  height: 2.65rem;
  display: grid;
  place-items: center;
  color: hsl(var(--foreground));
  background: transparent;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 180ms ease, transform 180ms ease;
}

.icon-button:hover {
  background: hsl(var(--muted));
  transform: translateY(-1px);
}

[data-theme="dark"] .icon--moon,
[data-theme="light"] .icon--sun {
  display: none;
}

.button {
  min-height: 3.4rem;
  width: fit-content;
  padding: 0 1.15rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms var(--ease-out), box-shadow 180ms ease;
}

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

.button--compact {
  min-height: 2.7rem;
  padding-inline: 1rem;
  font-size: 0.75rem;
}

.button--primary {
  color: hsl(var(--primary-foreground));
  background: hsl(var(--primary));
  box-shadow: 0 0.55rem 1.4rem hsl(var(--primary) / 0.14);
}

.button--primary:hover {
  background: hsl(270 76% 64%);
  box-shadow: 0 0.75rem 1.8rem hsl(var(--primary) / 0.18);
}

.button--quiet {
  color: hsl(var(--foreground));
  background: hsl(var(--card));
  border-color: hsl(var(--border));
}

.button__key {
  min-width: 1.7rem;
  height: 1.7rem;
  display: grid;
  place-items: center;
  background: hsl(var(--muted));
  border: 1px solid hsl(var(--border));
  border-radius: 0.38rem;
  font-family: var(--font-sans);
  font-size: 0.72rem;
}

.menu-toggle,
.mobile-menu {
  display: none;
}

.hero {
  width: min(100%, calc(var(--content) + (var(--gutter) * 2)));
  min-height: 100svh;
  margin: 0 auto;
  padding: clamp(8rem, 12vh, 10rem) var(--gutter) var(--gutter);
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(24rem, 0.72fr);
  align-items: stretch;
  gap: clamp(1.5rem, 3vw, 3.5rem);
}

.hero__content {
  min-width: 0;
  padding-top: clamp(1rem, 4vh, 4rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero__title {
  margin: 0 0 clamp(1.75rem, 3vw, 2.75rem);
  max-width: 100%;
  font-size: clamp(4.2rem, 6.2vw, 7rem);
  font-weight: 600;
  letter-spacing: -0.085em;
  line-height: 0.79;
}

.hero__line {
  display: block;
  max-width: 100%;
  white-space: normal;
  animation: hero-line-in 1.05s var(--ease-out) 120ms both;
}

.hero__line--accent {
  color: hsl(var(--secondary));
  font-family: var(--font-sans);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.09em;
  transform: none;
  animation-delay: 240ms;
}

.hero__lower {
  padding-top: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
  border-top: 0;
}

.hero__intro {
  max-width: 30rem;
  margin: 0;
  color: hsl(var(--muted-foreground));
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  line-height: 1.65;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 0.65rem;
}

.hero__media {
  position: relative;
  min-height: 42rem;
  overflow: hidden;
  color: white;
  background: #18141f;
  border-radius: var(--radius-xl);
  box-shadow: 0 2rem 6rem hsl(var(--shadow-color) / 0.2);
  isolation: isolate;
}

.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 52%;
  transform: scale(1.025);
  animation: hero-breathe 14s ease-in-out infinite alternate;
}

.hero__media-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, hsl(240 30% 5% / 0.35), transparent 35%, hsl(240 30% 5% / 0.65));
  pointer-events: none;
}

.hero__media-bottom {
  position: absolute;
  z-index: 2;
  left: 1.25rem;
  right: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-family: var(--font-sans);
  font-size: 0.62rem;
  letter-spacing: 0.05em;
}

.hero__media-bottom {
  bottom: 1.25rem;
  align-items: end;
}

.hero__media-bottom p {
  margin: 0 auto 0 0;
  font-family: var(--font-sans);
  font-size: clamp(1rem, 1.5vw, 1.35rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.2;
}

.scroll-cue {
  width: 2.7rem;
  height: 2.7rem;
  display: grid;
  place-items: center;
  border: 1px solid hsl(0 0% 100% / 0.4);
  border-radius: 50%;
}

.section {
  width: min(100%, calc(var(--content) + (var(--gutter) * 2)));
  margin: 0 auto;
  padding: clamp(6rem, 11vw, 10rem) var(--gutter);
}

.section-heading {
  margin-bottom: clamp(3rem, 6vw, 6rem);
}

.kicker {
  margin: 0 0 clamp(2rem, 5vw, 5rem);
  display: flex;
  align-items: center;
  gap: 0;
  color: hsl(var(--muted-foreground));
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.section-heading__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(18rem, 0.6fr);
  align-items: end;
  gap: clamp(2rem, 8vw, 9rem);
}

.display-title {
  margin: 0;
  font-size: clamp(3.7rem, 7.4vw, 7.75rem);
  font-weight: 600;
  letter-spacing: -0.075em;
  line-height: 0.86;
}

.display-title em {
  color: hsl(var(--secondary));
  font-family: var(--font-sans);
  font-weight: 500;
}

.section-copy {
  max-width: 36rem;
  margin: 0;
  color: hsl(var(--muted-foreground));
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  line-height: 1.7;
}

.bento-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  grid-template-rows: auto auto;
  gap: 1rem;
}

.bento-card {
  position: relative;
  min-height: 25rem;
  padding: clamp(1.25rem, 2vw, 2rem);
  overflow: hidden;
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius-xl);
  transition: transform 500ms var(--ease-out), border-color 300ms ease, box-shadow 500ms var(--ease-out);
}

.bento-card:hover {
  transform: translateY(-0.45rem);
  border-color: hsl(var(--primary) / 0.45);
  box-shadow: 0 2rem 4rem hsl(var(--shadow-color) / 0.12);
}

.bento-card--feature {
  grid-row: span 2;
  min-height: 51rem;
  display: flex;
  flex-direction: column;
  background: linear-gradient(145deg, hsl(var(--card)), hsl(var(--muted) / 0.4));
}

.bento-card--purple {
  color: hsl(var(--primary-foreground));
  background: linear-gradient(145deg, hsl(266 69% 53%), hsl(275 76% 64%));
  border-color: hsl(var(--primary));
}

.bento-card--quote {
  grid-column: 1 / -1;
  min-height: 20rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: hsl(var(--secondary));
  border-color: transparent;
  color: hsl(var(--secondary-foreground));
}

.bento-card__topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
}

.step-count {
  color: hsl(var(--muted-foreground));
}

.flow-visual {
  flex: 1;
  margin: 3rem 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 0.5rem;
}

.flow-step {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  color: hsl(var(--muted-foreground));
}

.flow-step > span {
  align-self: flex-start;
  font-family: var(--font-sans);
  font-size: 0.58rem;
}

.flow-step__icon {
  width: clamp(4rem, 7vw, 6rem);
  color: hsl(var(--foreground));
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1;
}

.flow-step strong {
  color: hsl(var(--foreground));
  font-size: 0.9rem;
}

.flow-step--active .flow-step__icon {
  padding: 0.7rem;
  color: hsl(var(--primary-foreground));
  background: hsl(var(--primary));
  border-radius: 1rem;
}

.flow-arrow {
  width: clamp(2rem, 4vw, 5rem);
  fill: none;
  stroke: hsl(var(--border));
  stroke-width: 1.2;
}

.bento-card__footer {
  margin-top: auto;
  padding-top: 2rem;
  border-top: 1px solid currentColor;
  border-color: hsl(var(--border));
}

.bento-card__footer h3 {
  max-width: 29rem;
  margin: 0 0 0.8rem;
  font-size: clamp(1.6rem, 3vw, 2.8rem);
  letter-spacing: -0.06em;
  line-height: 1.05;
}

.bento-card__footer p,
.bento-card--purple > p {
  max-width: 34rem;
  margin: 0;
  color: hsl(var(--muted-foreground));
  font-size: 0.95rem;
  line-height: 1.65;
}

.bento-card--purple > p {
  color: hsl(var(--primary-foreground) / 0.68);
}

.metric {
  margin: auto 0;
  display: flex;
  align-items: flex-end;
  gap: 1rem;
}

.metric strong {
  font-size: clamp(7rem, 13vw, 12rem);
  font-weight: 600;
  letter-spacing: -0.11em;
  line-height: 0.72;
}

.metric span {
  padding-bottom: 0.3rem;
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1.25;
  text-transform: uppercase;
}

.bento-card--hardware {
  position: relative;
  min-height: 31rem;
  padding: 0;
  color: white;
  background: #110d16;
  border-color: hsl(0 0% 100% / 0.12);
}

.hardware-gallery,
.hardware-shot,
.hardware-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hardware-shot {
  object-fit: cover;
  object-position: 52% 52%;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 900ms var(--ease-out), transform 6s var(--ease-out);
}

.hardware-shot.is-active {
  opacity: 1;
  transform: scale(1);
}

.bento-card--hardware:hover .hardware-shot.is-active {
  transform: scale(1.045);
}

.hardware-shade {
  background: linear-gradient(180deg, hsl(260 40% 4% / 0.24), transparent 38%, hsl(260 40% 4% / 0.92));
}

.hardware-meta,
.hardware-copy {
  position: relative;
  z-index: 2;
}

.hardware-meta {
  padding: 1.25rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: hsl(0 0% 100% / 0.72);
  font-family: var(--font-sans);
  font-size: 0.58rem;
  letter-spacing: 0.06em;
}

.hardware-copy {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: clamp(1.4rem, 2.5vw, 2.25rem);
}

.hardware-copy h3 {
  max-width: 28rem;
  margin: 0 0 0.8rem;
  font-size: clamp(2.35rem, 4vw, 4.15rem);
  font-weight: 600;
  letter-spacing: -0.075em;
  line-height: 0.88;
}

.hardware-copy p {
  max-width: 29rem;
  margin: 0;
  color: hsl(0 0% 100% / 0.68);
  font-size: 0.82rem;
  line-height: 1.55;
}

.quote-mark {
  font-family: var(--font-sans);
  font-size: 5rem;
  line-height: 0.7;
}

.bento-card blockquote {
  max-width: 30rem;
  margin: auto 0;
  font-size: clamp(1.7rem, 3.1vw, 3.2rem);
  font-weight: 600;
  letter-spacing: -0.06em;
  line-height: 1.05;
}

.text-link {
  width: fit-content;
  padding-bottom: 0.3rem;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  border-bottom: 1px solid currentColor;
  font-size: 0.76rem;
  font-weight: 800;
}

.text-link span {
  transition: transform 180ms var(--ease-out);
}

.text-link:hover span {
  transform: translate(0.15rem, -0.15rem);
}

.hardware-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(26rem, 0.8fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 9rem);
}

.hardware-feature__copy {
  min-width: 0;
}

.hardware-feature__copy .display-title {
  margin-bottom: 2rem;
}

.hardware-feature__copy > .section-copy {
  max-width: 39rem;
}

.hardware-details {
  margin-top: clamp(3rem, 6vw, 5.5rem);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid hsl(var(--border));
}

.hardware-details > div {
  min-width: 0;
  padding: 1.4rem 1.4rem 0 0;
}

.hardware-details > div + div {
  padding-left: 1.4rem;
  border-left: 1px solid hsl(var(--border));
}

.hardware-details strong {
  display: block;
  margin-bottom: 0.6rem;
  font-size: 0.95rem;
}

.hardware-details p {
  margin: 0;
  color: hsl(var(--muted-foreground));
  font-size: 0.76rem;
  line-height: 1.55;
}

.hardware-feature__media {
  width: min(100%, 42rem);
  justify-self: end;
}

.hardware-capsule {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #100c15;
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius-md);
  box-shadow: 0 2.5rem 6rem hsl(var(--shadow-color) / 0.2);
}

.hardware-capsule__shot {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.025);
  transition: opacity 900ms var(--ease-out), transform 5.5s var(--ease-out);
}

.hardware-capsule__shot.is-active {
  opacity: 1;
  transform: scale(1);
}

.hardware-capsule::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, hsl(260 40% 4% / 0.2), transparent 28%, transparent 76%, hsl(260 40% 4% / 0.18));
  pointer-events: none;
}

.hardware-capsule__caption {
  min-height: 4rem;
  padding-top: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid hsl(var(--border));
  font-family: var(--font-sans);
  font-size: 0.62rem;
}

.hardware-capsule__caption > span {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 1rem;
}

#hardwareName {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.arcade-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2.5vw, 2.5rem);
}

.arcade-portrait {
  min-width: 0;
  margin: 0;
}

.arcade-portrait__image {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: hsl(var(--muted));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius-sm);
}

.arcade-portrait__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 68%, hsl(260 40% 4% / 0.2));
  pointer-events: none;
}

.arcade-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.025);
  transition: transform 1.2s var(--ease-out), filter 500ms ease;
}

.arcade-portrait:hover img {
  filter: saturate(1.06) contrast(1.02);
  transform: scale(1);
}

.arcade-portrait figcaption {
  padding: 1rem 0 0;
  display: grid;
  grid-template-columns: minmax(10rem, 0.45fr) minmax(0, 0.55fr);
  gap: 1.5rem;
  border-top: 1px solid transparent;
}

.arcade-portrait figcaption span {
  color: hsl(var(--foreground));
  font-family: var(--font-sans);
  font-size: 0.62rem;
  letter-spacing: 0.04em;
}

.arcade-portrait figcaption p {
  margin: 0;
  color: hsl(var(--muted-foreground));
  font-size: 0.82rem;
  line-height: 1.55;
}

.operation-grid {
  margin-top: clamp(5rem, 9vw, 9rem);
  display: grid;
  grid-template-columns: minmax(18rem, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(3rem, 8vw, 9rem);
  border-top: 1px solid hsl(var(--border));
}

.operation-intro {
  padding-top: clamp(2rem, 4vw, 3rem);
}

.operation-intro > p:first-child {
  margin: 0 0 2.5rem;
  color: hsl(var(--muted-foreground));
}

.operation-intro h3 {
  margin: 0 0 1.5rem;
  font-size: clamp(2.8rem, 4.5vw, 4.75rem);
  font-weight: 600;
  letter-spacing: -0.075em;
  line-height: 0.9;
}

.operation-intro > p:last-child {
  max-width: 29rem;
  margin: 0;
  color: hsl(var(--muted-foreground));
  font-size: 0.95rem;
  line-height: 1.7;
}

.operation-steps {
  margin: 0;
  padding: 0;
  list-style: none;
  border-left: 1px solid hsl(var(--border));
}

.operation-step {
  min-height: 12rem;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-content: center;
  border-bottom: 1px solid hsl(var(--border));
  transition: color 300ms ease, background-color 300ms ease;
}

.operation-step:hover {
  background: hsl(var(--primary) / 0.06);
}

.operation-step h4 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  letter-spacing: -0.045em;
}

.operation-step p {
  max-width: 38rem;
  margin: 0;
  color: hsl(var(--muted-foreground));
  font-size: 0.88rem;
  line-height: 1.65;
}

.venue-note {
  padding: clamp(1.75rem, 3vw, 2.75rem) 0;
  display: grid;
  grid-template-columns: minmax(9rem, 0.3fr) minmax(18rem, 1fr) auto;
  align-items: center;
  gap: clamp(1.5rem, 5vw, 5rem);
  border-bottom: 1px solid hsl(var(--border));
}

.venue-note > span {
  color: hsl(var(--primary));
}

.venue-note > p {
  max-width: 48rem;
  margin: 0;
  color: hsl(var(--muted-foreground));
  font-size: 0.9rem;
  line-height: 1.7;
}

.os-section {
  width: 100%;
  max-width: none;
  color: hsl(48 24% 96%);
  background: hsl(var(--surface-ink));
}

.os-section > * {
  width: min(100%, var(--content));
  margin-inline: auto;
}

.section-heading--light .section-copy,
.section-heading--light .kicker {
  color: hsl(0 0% 100% / 0.56);
}

.os-section .section-heading {
  margin-bottom: clamp(0.5rem, 1vw, 1rem);
}

.os-section .section-heading__grid {
  grid-template-columns: 1fr;
  align-items: end;
}

.product-stage {
  position: relative;
  overflow: visible;
}

.product-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 3vw, 3rem);
}

.product-tab {
  position: relative;
  min-height: 4.5rem;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  color: hsl(0 0% 100% / 0.44);
  background: transparent;
  border: 0;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: color 180ms ease, background-color 180ms ease;
}

.product-tab:hover {
  color: white;
}

.product-tab.is-active {
  color: hsl(var(--primary));
  background: transparent;
}

.product-tab::after {
  display: none;
}

.product-tab.is-active::after {
  display: none;
}

.product-panel {
  min-height: 37rem;
  margin-top: 2rem;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(26rem, 1.08fr);
  gap: clamp(2rem, 6vw, 7rem);
  overflow: visible;
  background: transparent;
  border: 0;
  border-radius: 0;
  animation: product-enter 700ms var(--ease-out) both;
}

.product-panel[hidden] {
  display: none;
}

.product-panel__copy {
  padding: clamp(1.5rem, 3vw, 3rem) 0;
  display: grid;
  grid-template-columns: 1fr;
  border: 0;
}

.product-panel__copy > div {
  align-self: end;
}

.product-panel__copy h3 {
  margin: 0 0 2rem;
  font-size: clamp(2.8rem, 4.2vw, 4.5rem);
  font-weight: 600;
  letter-spacing: -0.08em;
  line-height: 0.88;
}

.product-panel__copy p {
  max-width: 34rem;
  margin: 0 0 2.5rem;
  color: hsl(0 0% 100% / 0.56);
  font-size: 1rem;
  line-height: 1.7;
}

.feature-list {
  margin: 0 0 2rem;
  padding: 0;
  list-style: none;
  border: 0;
}

.feature-list li {
  padding: 0.55rem 0;
  display: flex;
  align-items: center;
  gap: 0;
  border: 0;
  font-size: 0.8rem;
  font-weight: 600;
}

.button--outline-light {
  color: white;
  background: transparent;
  border-color: hsl(var(--line-on-ink));
}

.button--outline-light:hover {
  color: hsl(var(--primary-foreground));
  background: hsl(var(--primary));
  border-color: hsl(var(--primary));
}

.product-panel__visual {
  position: relative;
  min-width: 0;
  margin: 0;
  padding: clamp(1.5rem, 3vw, 3rem);
  display: grid;
  place-items: center;
  overflow: visible;
  background: transparent;
  border-radius: 0;
}

.product-panel__visual > * {
  z-index: 1;
}

.screen-shell {
  position: relative;
  width: min(100%, 38rem);
  padding: 0;
  overflow: visible;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  transform: perspective(80rem) rotateY(-4deg) rotateX(1deg);
  animation: screen-hover 7s ease-in-out infinite;
}

.screen-shell video {
  width: 100%;
  aspect-ratio: 1.595;
  object-fit: cover;
  border-radius: 0;
}

.product-panel__visual--phone {
  background: transparent;
}

.pixgo-composition {
  position: relative;
  width: min(100%, 34rem);
  height: clamp(27rem, 38vw, 31rem);
}

.pixgo-capture {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 42%;
  width: min(50%, 15rem);
  filter: drop-shadow(0 2.5rem 3rem hsl(260 80% 3% / 0.56));
  animation: media-float 6s ease-in-out infinite;
}

.pixgo-capture img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.pixgo-ticket {
  position: absolute;
  z-index: 3;
  left: -3%;
  bottom: 8%;
  width: min(66%, 21rem);
  height: auto;
  margin: 0;
  object-fit: contain;
  filter: drop-shadow(0 1.5rem 2rem hsl(260 80% 3% / 0.42));
  transform: rotate(-3deg);
  animation: ticket-float 7s ease-in-out 500ms infinite;
}

.product-panel__visual--dashboard {
  background: transparent;
}

.pixcon-capture {
  position: relative;
  width: min(84%, 28rem);
  padding: clamp(0.8rem, 1.8vw, 1.2rem);
  color: #1f1932;
  background: #f4f1f8;
  border: 1px solid hsl(0 0% 100% / 0.36);
  border-radius: 1.75rem;
  box-shadow: 0 2.5rem 5rem hsl(260 80% 3% / 0.52);
  transform: perspective(80rem) rotateY(3deg);
  animation: pixcon-float 7s ease-in-out infinite;
}

.pixcon-capture__header {
  padding: 0 0.25rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pixcon-capture__header strong {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.05em;
}

.pixcon-avatar {
  width: 2.35rem;
  height: 2.35rem;
  display: grid;
  place-items: center;
  color: white;
  background: #7f3fde;
  border-radius: 0.75rem;
  font-family: var(--font-sans);
  font-size: 0.58rem;
}

.pixcon-now {
  position: relative;
  height: clamp(10rem, 19vw, 15rem);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  color: white;
  border-radius: 1.15rem;
}

.pixcon-now img,
.pixcon-now__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.pixcon-now img {
  object-fit: cover;
}

.pixcon-now__shade {
  background: linear-gradient(180deg, transparent, hsl(260 60% 5% / 0.85));
}

.pixcon-now > span,
.pixcon-now > strong {
  position: relative;
  z-index: 1;
}

.pixcon-now > span {
  margin-bottom: 0.35rem;
  color: #d8bcff;
  font-family: var(--font-sans);
  font-size: 0.52rem;
  letter-spacing: 0.08em;
}

.pixcon-now > strong {
  font-size: clamp(1.5rem, 2.7vw, 2.5rem);
  letter-spacing: -0.06em;
  line-height: 0.95;
}

.pixcon-grid {
  margin-top: 0.75rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.pixcon-tile {
  min-height: 8.3rem;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid #e0d7ec;
  border-radius: 1rem;
  box-shadow: 0 0.7rem 1.5rem hsl(260 35% 25% / 0.08);
}

.pixcon-tile svg {
  width: 2.4rem;
  color: #7f3fde;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.pixcon-tile > span {
  color: #392f4d;
  font-family: var(--font-sans);
  font-size: 0.58rem;
  letter-spacing: 0.03em;
}

.pixcon-tile--coins {
  background: #fff;
}

.pixcon-tile--switch {
  background: #eee5fa;
}

.pixcon-tile--wide {
  grid-column: 1 / -1;
  min-height: auto;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  color: white;
  background: linear-gradient(100deg, #6f32ca, #974de9);
  border-color: transparent;
}

.pixcon-tile--wide small,
.pixcon-tile--wide strong {
  display: block;
}

.pixcon-tile--wide small {
  margin-bottom: 0.25rem;
  color: hsl(0 0% 100% / 0.65);
  font-family: var(--font-sans);
  font-size: 0.5rem;
}

.pixcon-tile--wide strong {
  font-size: 0.85rem;
}

.pixcon-tile--wide > span {
  color: white;
}

.story {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: clamp(3rem, 8vw, 9rem);
}

.story__visual {
  position: relative;
  min-width: 0;
}

.story__frame {
  position: relative;
  aspect-ratio: 1;
}

.story__frame picture,
.story__frame img {
  width: 100%;
  height: 100%;
}

.story__frame img {
  object-fit: contain;
  filter: drop-shadow(0 2rem 2.5rem hsl(var(--shadow-color) / 0.22));
  transition: transform 900ms var(--ease-out), filter 500ms ease;
}

.story__visual:hover .story__frame img {
  transform: translateY(-0.5rem) scale(1.015);
  filter: drop-shadow(0 2.8rem 3.5rem hsl(var(--secondary) / 0.2));
}

.story__copy .kicker {
  margin-bottom: 2rem;
}

.story__copy .display-title {
  margin-bottom: 2rem;
}

.story__copy .section-copy {
  margin-bottom: 2.5rem;
}

.award-line {
  margin: 0 0 2.5rem;
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  border-block: 1px solid hsl(var(--border));
}

.award-line strong {
  color: hsl(var(--secondary));
  font-size: 3rem;
  letter-spacing: -0.08em;
}

.award-line span {
  color: hsl(var(--muted-foreground));
  font-family: var(--font-sans);
  font-size: 0.62rem;
  line-height: 1.5;
  text-transform: uppercase;
}

.partner-section {
  width: min(calc(100% - (var(--gutter) * 2)), var(--content));
  margin: 0 auto;
  padding: 2rem 0 clamp(5rem, 10vw, 9rem);
  border-top: 1px solid hsl(var(--border));
}

.mono-label {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.055em;
}

.partner-section > p {
  margin: 0 0 2.5rem;
  color: hsl(var(--muted-foreground));
}

.partner-marquee {
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}

.partner-track {
  width: max-content;
  display: flex;
  animation: partner-loop 24s linear infinite;
  will-change: transform;
}

.partner-marquee:hover .partner-track {
  animation-play-state: paused;
}

.partner-group {
  padding-right: clamp(4rem, 8vw, 9rem);
  display: flex;
  align-items: center;
  gap: clamp(4rem, 8vw, 9rem);
}

.partner-group img {
  width: clamp(9rem, 14vw, 13rem);
  height: 5.5rem;
  flex: 0 0 auto;
  padding: 0.7rem 0;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.55;
  transition: filter 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.partner-group img:hover {
  filter: grayscale(0);
  opacity: 1;
  transform: translateY(-0.2rem);
}

.final-cta {
  position: relative;
  width: min(calc(100% - (var(--gutter) * 2)), var(--content));
  margin-bottom: var(--gutter);
  padding: clamp(2rem, 5vw, 5rem);
  overflow: hidden;
  color: hsl(var(--primary-foreground));
  background: linear-gradient(135deg, #6d2fc5 0%, #8241dd 52%, #a35cf0 100%);
  border-radius: var(--radius-xl);
}

.final-cta__top,
.final-cta__bottom {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
}

.final-cta .kicker {
  margin: 0;
  color: hsl(var(--primary-foreground) / 0.7);
}

.final-cta__title {
  position: relative;
  z-index: 2;
  margin: clamp(4rem, 9vw, 9rem) 0;
  font-size: clamp(5.4rem, 13vw, 13rem);
  font-weight: 600;
  letter-spacing: -0.09em;
  line-height: 0.69;
}

.final-cta__title em {
  font-family: var(--font-sans);
  font-weight: 500;
}

.final-cta__bottom {
  align-items: end;
}

.final-cta__bottom p {
  max-width: 29rem;
  margin: 0;
  color: hsl(var(--primary-foreground) / 0.67);
  font-size: 1rem;
  line-height: 1.65;
}

.final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.65rem;
}

.button--ink {
  color: hsl(48 24% 96%);
  background: hsl(var(--surface-ink));
}

.button--outline-ink {
  color: hsl(var(--primary-foreground));
  background: transparent;
  border-color: hsl(var(--primary-foreground) / 0.35);
}

.button--outline-ink:hover {
  background: hsl(var(--primary-foreground) / 0.08);
}

.site-footer {
  width: min(calc(100% - (var(--gutter) * 2)), var(--content));
  margin: 0 auto;
  padding: 3rem 0;
  display: grid;
  grid-template-columns: 1fr 1fr auto auto;
  align-items: center;
  gap: 2rem;
  color: hsl(var(--muted-foreground));
  font-size: 0.72rem;
}

.brand--footer {
  color: hsl(var(--foreground));
}

.site-footer p {
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 1.3rem;
}

.footer-links a:hover {
  color: hsl(var(--foreground));
}

.footer-copy {
  font-family: var(--font-sans);
  font-size: 0.6rem;
}

.reveal {
  opacity: 0;
  transform: translateY(1.5rem);
  transition: opacity 800ms var(--ease-out) var(--delay, 0ms), transform 800ms var(--ease-out) var(--delay, 0ms);
}

.display-title.reveal,
.hero__line.reveal {
  clip-path: inset(0 0 100% 0);
  transition: opacity 850ms var(--ease-out) var(--delay, 0ms), transform 850ms var(--ease-out) var(--delay, 0ms), clip-path 950ms var(--ease-out) var(--delay, 0ms);
}

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

.display-title.reveal.is-visible,
.hero__line.reveal.is-visible {
  clip-path: inset(0);
}

@keyframes partner-loop {
  to { transform: translateX(-50%); }
}

@keyframes product-enter {
  from { opacity: 0; transform: translateY(1.25rem) scale(0.992); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes logo-pop {
  0% { transform: scale(1); }
  30% { transform: scale(0.72) rotate(-7deg); }
  62% { transform: scale(1.22) rotate(5deg); }
  82% { transform: scale(0.94) rotate(-2deg); }
  100% { transform: scale(1) rotate(0); }
}

@keyframes hero-line-in {
  from {
    opacity: 0;
    clip-path: inset(0 0 100% 0);
    transform: translateY(1.1em);
  }
  to {
    opacity: 1;
    clip-path: inset(0);
    transform: translateY(0);
  }
}

@keyframes hero-breathe {
  to { transform: scale(1.075); }
}

@keyframes screen-hover {
  0%, 100% { transform: perspective(80rem) rotateY(-4deg) rotateX(1deg) translateY(0); }
  50% { transform: perspective(80rem) rotateY(-2deg) rotateX(0deg) translateY(-0.55rem); }
}

@keyframes media-float {
  0%, 100% { transform: translateY(0) rotate(0.4deg); }
  50% { transform: translateY(-0.7rem) rotate(-0.4deg); }
}

@keyframes ticket-float {
  0%, 100% { transform: translateY(0) rotate(-3deg); }
  50% { transform: translateY(-0.55rem) rotate(-1deg); }
}

@keyframes pixcon-float {
  0%, 100% { transform: perspective(80rem) rotateY(3deg) translateY(0); }
  50% { transform: perspective(80rem) rotateY(1deg) translateY(-0.7rem); }
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr 0.72fr;
  }

  .hardware-feature {
    grid-template-columns: minmax(0, 1fr) minmax(23rem, 0.8fr);
    gap: 3rem;
  }

  .hero__actions {
    justify-content: flex-start;
  }

  .product-panel {
    grid-template-columns: 0.9fr 1.1fr;
  }

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

  .site-footer > p {
    display: none;
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: 4rem;
  }

  .site-header {
    top: 0.5rem;
    width: calc(100% - 1rem);
    padding: 0.45rem 0.5rem 0.45rem 0.7rem;
    border-radius: 0;
  }

  .brand img {
    width: 2.45rem;
    height: 2.45rem;
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    width: 2.75rem;
    height: 2.75rem;
    padding: 0;
    display: grid;
    place-content: center;
    gap: 0.35rem;
    color: hsl(var(--foreground));
    background: hsl(var(--muted));
    border: 0;
    border-radius: var(--radius-md);
    cursor: pointer;
  }

  .menu-toggle span {
    width: 1.15rem;
    height: 1px;
    background: currentColor;
    transition: transform 220ms ease;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(0.2rem) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-0.2rem) rotate(-45deg);
  }

  .mobile-menu {
    position: fixed;
    top: calc(var(--header-height) + 1rem);
    left: 0;
    right: 0;
    z-index: -1;
    padding: 1rem 0.75rem 0.75rem;
    display: grid;
    background: hsl(var(--background) / 0.98);
    border: 0;
    border-radius: 0;
    box-shadow: 0 2rem 4rem hsl(var(--shadow-color) / 0.22);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-1rem);
    transition: opacity 220ms ease, transform 220ms var(--ease-out), visibility 0s 220ms;
  }

  .mobile-menu.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition-delay: 0s;
  }

  .mobile-menu a {
    padding: 1rem 0.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid hsl(var(--border));
    font-size: 1.05rem;
    font-weight: 700;
  }

  .mobile-menu a:last-child {
    border-bottom: 0;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 7rem;
  }

  .hero__content {
    min-height: 35rem;
    padding-top: 0;
  }

  .hero__title {
    margin: 0 0 2rem;
    font-size: clamp(4.2rem, 16vw, 7.4rem);
  }

  .hero__line {
    white-space: normal;
  }

  .hero__line--accent {
    transform: none;
  }

  .hero__media {
    min-height: 70svh;
  }

  .section-heading__grid,
  .story {
    grid-template-columns: 1fr;
  }

  .section-heading__grid {
    gap: 2rem;
  }

  .bento-grid {
    grid-template-columns: 1fr;
  }

  .hardware-feature {
    grid-template-columns: 1fr;
  }

  .hardware-feature__media {
    width: min(100%, 38rem);
    justify-self: center;
    order: -1;
  }

  .operation-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .operation-steps {
    border-top: 1px solid hsl(var(--border));
    border-left: 0;
  }

  .venue-note {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .bento-card--feature {
    min-height: 44rem;
  }

  .product-panel {
    grid-template-columns: 1fr;
  }

  .product-panel__copy {
    min-height: 32rem;
    border: 0;
  }

  .product-panel__visual {
    min-height: 30rem;
    order: -1;
  }

  .story__visual {
    width: min(100%, 36rem);
  }

  .story__copy {
    padding-top: 2rem;
  }

  .final-cta__bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .final-cta__actions {
    justify-content: flex-start;
  }
}

@media (max-width: 600px) {
  :root {
    --gutter: 1rem;
    --radius-xl: 1.25rem;
  }

  .brand__wordmark {
    display: none;
  }

  .hero__content {
    min-height: 31rem;
  }

  .hero__title {
    margin: 0 0 1.5rem;
    font-size: clamp(3.9rem, 20vw, 6.5rem);
    line-height: 0.82;
  }

  .hero__intro {
    font-size: 0.95rem;
  }

  .hero__actions,
  .hero__actions .button {
    width: 100%;
  }

  .hero__media {
    min-height: 34rem;
  }

  .hero__media-bottom {
    left: 1rem;
    right: 1rem;
  }

  .section {
    padding-block: 5rem;
  }

  .display-title {
    font-size: clamp(3.35rem, 16vw, 5.1rem);
  }

  .kicker {
    margin-bottom: 2.5rem;
  }

  .arcade-gallery {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .hardware-details {
    grid-template-columns: 1fr;
  }

  .hardware-details > div {
    padding: 1.25rem 0;
  }

  .hardware-details > div + div {
    padding-left: 0;
    border-top: 1px solid hsl(var(--border));
    border-left: 0;
  }

  .arcade-portrait figcaption {
    grid-template-columns: 1fr;
    gap: 0.7rem;
  }

  .operation-grid {
    margin-top: 5rem;
  }

  .operation-step {
    min-height: 10.5rem;
    grid-template-columns: 1fr;
  }

  .flow-visual {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .flow-step {
    min-height: 6rem;
    padding: 0.8rem;
    flex-direction: row;
    justify-content: space-between;
    border: 1px solid hsl(var(--border));
    border-radius: var(--radius-md);
  }

  .flow-step > span {
    align-self: center;
  }

  .flow-step__icon {
    width: 3.3rem;
    order: 2;
  }

  .flow-step strong {
    margin-right: auto;
  }

  .flow-arrow {
    width: 2rem;
    justify-self: center;
    transform: rotate(90deg);
  }

  .bento-card--feature {
    min-height: auto;
  }

  .bento-card__footer {
    margin-top: 1rem;
  }

  .metric strong {
    font-size: 8rem;
  }

  .product-tabs {
    overflow-x: auto;
  }

  .product-tab {
    min-width: 7.5rem;
    min-height: 4.5rem;
    padding-inline: 0.75rem;
  }

  .product-panel__copy {
    min-height: 29rem;
    padding: 1.5rem;
    grid-template-columns: 1fr;
  }

  .product-panel__copy h3 {
    font-size: clamp(2.85rem, 13vw, 4.5rem);
  }

  .product-panel__visual {
    min-height: 25rem;
    padding: 1.25rem;
  }

  .screen-shell {
    transform: none;
    animation-name: media-float;
  }

  .pixgo-capture {
    left: 43%;
    width: min(54%, 13rem);
  }

  .pixgo-ticket {
    left: 0;
    bottom: 8%;
    width: min(68%, 18rem);
  }

  .pixcon-capture {
    width: min(88%, 30rem);
    transform: none;
    animation-name: media-float;
  }

  .story__visual {
    width: 100%;
  }

  .final-cta {
    padding: 1.5rem;
  }

  .final-cta__top {
    flex-direction: column;
  }

  .final-cta__title {
    margin-block: 5rem;
    font-size: clamp(5rem, 24vw, 8rem);
  }

  .final-cta__actions,
  .final-cta__actions .button {
    width: 100%;
  }

  .site-footer {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .brand--footer .brand__wordmark {
    display: inline;
  }

  .footer-links {
    flex-wrap: wrap;
  }
}

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

  .hero__video {
    display: none;
  }

  .hero__media {
    background: #18141f url("../hero-poster.jpg") center / cover no-repeat;
  }
}
