:root {
  color-scheme: dark;
  --ink: #10111f;
  --panel: rgba(2, 3, 12, 0.9);
  --panel-strong: #050611;
  --text: #f8fbff;
  --muted: #aeb7d4;
  --cyan: #19d8ff;
  --pink: #ff4fb8;
  --yellow: #ffd43b;
  --violet: #7c5cff;
  --green: #3df2a4;
  --line: rgba(255, 255, 255, 0.13);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.52);
  --radius: 18px;
  --max: 1180px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: #111222;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--text);
  line-height: 1.5;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.toy-home {
  background:
    radial-gradient(circle at 50% 100%, rgba(61, 242, 164, 0.16), transparent 28%),
    linear-gradient(135deg, rgba(25, 216, 255, 0.18), transparent 30%),
    linear-gradient(225deg, rgba(255, 79, 184, 0.2), transparent 34%),
    radial-gradient(circle at 18% 18%, rgba(255, 212, 59, 0.12), transparent 24%),
    radial-gradient(circle at 80% 22%, rgba(124, 92, 255, 0.2), transparent 28%),
    linear-gradient(180deg, #02030c 0%, #070817 52%, #02030c 100%);
  overflow-x: hidden;
}

.toy-home::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  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: 36px 36px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent 84%);
  content: "";
}

.toy-home::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 12% 72%, rgba(255, 79, 184, 0.2), transparent 8%),
    radial-gradient(circle at 87% 66%, rgba(25, 216, 255, 0.2), transparent 9%),
    radial-gradient(circle at 62% 12%, rgba(255, 212, 59, 0.14), transparent 7%);
  filter: blur(10px);
  content: "";
  animation: neon-breathe 7s ease-in-out infinite;
}

.toy-shell {
  width: min(var(--max), calc(100% - 32px));
  min-height: 100vh;
  margin: 0 auto;
  padding: 22px 0 42px;
}

.toy-lang {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-bottom: 14px;
}

.toy-lang a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid rgba(17, 18, 34, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  color: #f8fbff;
  font-size: 0.82rem;
  font-weight: 900;
  text-decoration: none;
  backdrop-filter: blur(14px);
}

.toy-lang a[aria-current="page"] {
  background: #f8fbff;
  color: #050611;
}

.toy-stage {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  grid-template-areas:
    "logo copy"
    "logo game"
    "app youtube";
  gap: 16px;
  align-items: stretch;
}

.toy-logo-wrap,
.toy-window {
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.toy-logo-wrap {
  position: relative;
  grid-area: logo;
  display: grid;
  min-height: 620px;
  place-items: center;
  padding: 30px;
  background:
    linear-gradient(135deg, rgba(255, 79, 184, 0.88), rgba(25, 216, 255, 0.9)),
    radial-gradient(circle at 24% 22%, rgba(255, 255, 255, 0.34), transparent 28%),
    #050611;
  overflow: hidden;
}

.toy-logo-wrap::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(5, 6, 17, 0.16) 1px, transparent 1px),
    linear-gradient(180deg, rgba(5, 6, 17, 0.18), transparent 36%, rgba(5, 6, 17, 0.3));
  background-size: 100% 8px, 18px 100%, auto;
  content: "";
  opacity: 0.72;
  animation: mini-screen 2.4s steps(4, end) infinite;
}

.toy-logo {
  position: relative;
  z-index: 2;
  width: min(440px, 86%);
  border-radius: 28px;
  filter: drop-shadow(0 26px 32px rgba(13, 13, 30, 0.22));
}

.toy-orbit {
  position: absolute;
  z-index: 1;
  border: 3px solid rgba(25, 216, 255, 0.6);
  border-radius: 999px;
  filter: drop-shadow(0 0 18px rgba(25, 216, 255, 0.55));
  pointer-events: none;
}

.toy-orbit.one {
  width: 76%;
  height: 36%;
  transform: rotate(-18deg);
  animation: orbit-one 9s ease-in-out infinite;
}

.toy-orbit.two {
  width: 62%;
  height: 30%;
  border-color: rgba(255, 79, 184, 0.56);
  filter: drop-shadow(0 0 18px rgba(255, 79, 184, 0.5));
  transform: rotate(22deg);
  animation: orbit-two 7s ease-in-out infinite;
}

.official-badge {
  position: absolute;
  right: 20px;
  bottom: 20px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(5, 6, 17, 0.78);
  color: #f8fbff;
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
  box-shadow: 0 12px 24px rgba(17, 18, 34, 0.14);
  backdrop-filter: blur(14px);
}

.toy-copy {
  grid-area: copy;
  min-width: 0;
  align-self: end;
  padding: 12px 8px 2px;
}

.toy-kicker {
  margin: 0 0 6px;
  color: #d7defa;
  font-size: 0.84rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.toy-copy h1 {
  max-width: none;
  margin: 0;
  color: var(--text);
  font-size: clamp(2.8rem, 7vw, 6.4rem);
  line-height: 0.9;
  letter-spacing: 0;
  text-shadow: 4px 4px 0 rgba(25, 216, 255, 0.42), -4px -3px 0 rgba(255, 79, 184, 0.32);
}

.toy-social-link {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  margin-top: 18px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255, 79, 184, 0.24), rgba(25, 216, 255, 0.24)),
    rgba(5, 6, 17, 0.82);
  color: #f8fbff;
  font-size: 0.84rem;
  font-weight: 950;
  text-decoration: none;
  box-shadow: 0 0 24px rgba(25, 216, 255, 0.18), inset 0 0 18px rgba(255, 79, 184, 0.08);
  backdrop-filter: blur(12px);
}

.toy-social-link:hover {
  border-color: rgba(255, 255, 255, 0.38);
  box-shadow: 0 0 28px rgba(255, 79, 184, 0.24), 0 0 24px rgba(25, 216, 255, 0.18);
}

.studio-intro {
  max-width: 620px;
  margin: 14px 0 0;
  color: #d7defa;
  font-size: clamp(1rem, 2vw, 1.22rem);
  font-weight: 800;
}

.toy-window {
  position: relative;
  padding: 18px;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), transparent 38%),
    #050611;
}

.toy-window::before {
  position: absolute;
  inset: -1px;
  z-index: -1;
  background: #050611;
  content: "";
}

.toy-window:hover {
  transform: translateY(-3px);
  box-shadow: 0 30px 76px rgba(44, 20, 94, 0.3);
}

.game-window {
  grid-area: game;
}

.app-window {
  grid-area: app;
}

.youtube-window {
  grid-area: youtube;
}

.window-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.window-head span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  background: #f8fbff;
  color: #050611;
  font-size: 0.78rem;
  font-weight: 950;
}

.window-head a {
  max-width: 100%;
  color: #d7defa;
  font-size: 0.86rem;
  font-weight: 850;
  overflow-wrap: anywhere;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.steam-slot,
.app-slot {
  display: grid;
  min-width: 0;
  min-height: 170px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}

.steam-slot {
  position: relative;
  padding: 22px;
  background:
    linear-gradient(135deg, rgba(255, 79, 184, 0.86), rgba(25, 216, 255, 0.88)),
    radial-gradient(circle at 26% 22%, rgba(255, 255, 255, 0.28), transparent 26%),
    #171829;
  color: #fff;
  overflow: hidden;
}

.steam-slot::before,
.app-slot::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(5, 6, 17, 0.16) 1px, transparent 1px),
    linear-gradient(180deg, rgba(5, 6, 17, 0.18), transparent 36%, rgba(5, 6, 17, 0.28));
  background-size: 100% 8px, 18px 100%, auto;
  content: "";
  opacity: 0.72;
  animation: mini-screen 2.4s steps(4, end) infinite;
}

.steam-slot > div,
.app-slot > div {
  position: relative;
  z-index: 2;
  border-radius: 12px;
  background: rgba(5, 6, 17, 0.56);
  backdrop-filter: blur(10px);
}

.steam-slot + .steam-slot {
  margin-top: 12px;
}

.secondary-steam {
  background:
    linear-gradient(135deg, rgba(124, 92, 255, 0.9), rgba(255, 212, 59, 0.76), rgba(255, 79, 184, 0.72)),
    #171829;
}

.steam-widget-slot {
  align-content: start;
  gap: 10px;
  min-height: 230px;
  padding: 12px;
}

.steam-widget-frame {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 100%;
  height: 190px;
  border: 0;
  border-radius: 10px;
  background: #050611;
  box-shadow: 0 16px 28px rgba(5, 6, 17, 0.28);
}

.steam-fallback-link {
  position: relative;
  z-index: 2;
  justify-self: start;
  max-width: 100%;
  min-height: 32px;
  padding: 6px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(5, 6, 17, 0.76);
  color: #f8fbff;
  font-size: 0.8rem;
  font-weight: 900;
  overflow-wrap: anywhere;
  text-decoration: none;
  backdrop-filter: blur(12px);
}

.steam-slot strong,
.app-slot strong {
  display: block;
  font-size: clamp(1.6rem, 4vw, 3rem);
  line-height: 0.96;
}

.steam-slot p,
.app-slot p,
.toy-note {
  margin: 10px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.steam-slot p {
  color: rgba(255, 255, 255, 0.72);
}

.app-slot {
  position: relative;
  grid-template-columns: 150px 1fr;
  background:
    linear-gradient(135deg, rgba(255, 79, 184, 0.8), rgba(25, 216, 255, 0.86)),
    #050611;
  overflow: hidden;
}

.app-slot img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: 170px;
  object-fit: cover;
  filter: saturate(1.7) contrast(1.14);
  mix-blend-mode: screen;
  opacity: 0.78;
}

.app-slot div {
  padding: 18px;
  margin: 14px;
}

.store-link {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  min-height: 34px;
  margin-top: 14px;
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(5, 6, 17, 0.76);
  color: #f8fbff;
  font-size: 0.82rem;
  font-weight: 900;
  overflow-wrap: anywhere;
  text-decoration: none;
  backdrop-filter: blur(12px);
}

.store-link:hover {
  border-color: rgba(255, 255, 255, 0.38);
  box-shadow: 0 0 24px rgba(25, 216, 255, 0.18);
}

.youtube-window h2 {
  margin: 0 0 12px;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  line-height: 1;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  min-width: 0;
  gap: 8px;
}

.video-slot {
  position: relative;
  display: grid;
  min-width: 0;
  aspect-ratio: 16 / 9;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(255, 79, 184, 0.82), rgba(25, 216, 255, 0.84)),
    #fff;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(124, 92, 255, 0.18);
  overflow: hidden;
}

.video-slot::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(rgba(255, 255, 255, 0.14) 1px, transparent 1px),
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.32), transparent 28%);
  background-size: 100% 7px, auto;
  content: "";
  opacity: 0.7;
  animation: mini-screen 1.8s steps(4, end) infinite;
  pointer-events: none;
}

.video-embed::before {
  opacity: 0.2;
}

.video-embed iframe {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: #050611;
}

.video-slot span {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 2;
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 999px;
  background: rgba(5, 6, 17, 0.82);
  font-size: 0.82rem;
  font-weight: 950;
  pointer-events: none;
}

.app-page .toy-stage {
  grid-template-columns: 1fr;
  grid-template-areas:
    "copy"
    "app"
    "youtube";
}

.app-page .app-mandala {
  min-height: 420px;
}

.hero-media {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: #131111;
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.quiet-web-link {
  display: flex;
  justify-content: flex-end;
  margin-top: 18px;
  padding-right: 8px;
}

.quiet-web-card {
  display: inline-grid;
  grid-template-columns: 62px minmax(0, 1fr);
  align-items: center;
  width: min(100%, 280px);
  min-height: 82px;
  gap: 12px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(255, 79, 184, 0.12), rgba(25, 216, 255, 0.12)),
    rgba(5, 6, 17, 0.58);
  color: #f8fbff;
  text-decoration: none;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.18);
  opacity: 0.78;
  backdrop-filter: blur(14px);
  transition: opacity 160ms ease, transform 160ms ease, border-color 160ms ease;
}

.quiet-web-card:hover {
  border-color: rgba(255, 255, 255, 0.26);
  opacity: 1;
  transform: translateY(-2px);
}

.quiet-web-card img {
  width: 62px;
  height: 62px;
  border-radius: 12px;
  object-fit: cover;
}

.quiet-web-card span {
  min-width: 0;
}

.quiet-web-card strong,
.quiet-web-card small {
  display: block;
  overflow-wrap: anywhere;
}

.quiet-web-card strong {
  font-size: 0.86rem;
  line-height: 1.1;
}

.quiet-web-card small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
}

.web-sample-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1.1fr);
  gap: 24px;
  align-items: center;
}

.web-sample-copy {
  min-width: 0;
}

.web-sample-copy h1 {
  max-width: 760px;
  margin: 14px 0 0;
  font-size: clamp(2.6rem, 7vw, 6.6rem);
  line-height: 0.9;
  letter-spacing: 0;
  text-shadow: 4px 4px 0 rgba(25, 216, 255, 0.36), -4px -3px 0 rgba(255, 79, 184, 0.3);
}

.web-sample-tagline {
  display: grid;
  max-width: 680px;
  gap: 5px;
  margin: 14px 0 0;
  padding: 10px 0 12px;
  border-top: 1px solid rgba(25, 216, 255, 0.42);
  border-bottom: 1px solid rgba(255, 79, 184, 0.36);
}

.web-sample-tagline strong {
  color: #f8fbff;
  font-size: clamp(1.55rem, 3.8vw, 2.85rem);
  line-height: 0.98;
  overflow-wrap: anywhere;
  text-shadow: 3px 3px 0 rgba(255, 79, 184, 0.36), -2px -2px 0 rgba(25, 216, 255, 0.32);
}

.web-sample-tagline span {
  color: #fee9ff;
  font-size: clamp(0.98rem, 1.8vw, 1.14rem);
  font-weight: 900;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.web-sample-copy p:not(.toy-kicker) {
  max-width: 680px;
  margin: 18px 0 0;
  color: #d7defa;
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 780;
}

.web-sample-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.web-sample-actions .toy-social-link {
  margin-top: 0;
}

.web-sample-art {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: #050611 url("/assets/sushi-web-sample-glitch.png?v=crt1") center / cover no-repeat;
  box-shadow: var(--shadow);
}

.web-sample-art::before,
.web-sample-art::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
}

.web-sample-art::before {
  z-index: 2;
  background:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.38) 0 1px, rgba(0, 0, 0, 0.28) 1px 2px, transparent 2px 3px),
    repeating-linear-gradient(0deg, transparent 0 4px, rgba(255, 255, 255, 0.24) 5px, transparent 6px 8px),
    repeating-linear-gradient(0deg, rgba(0, 0, 0, 0.22) 0 1px, transparent 1px 6px);
  background-size: 100% 3px, 100% 8px, 100% 6px;
  mix-blend-mode: screen;
  opacity: 0.72;
  animation: crt-line-jitter 0.18s steps(3, end) infinite, crt-scan-roll 4.2s ease-in-out infinite;
}

.web-sample-art::after {
  z-index: 3;
  height: 34%;
  background:
    repeating-linear-gradient(0deg, transparent 0 2px, rgba(255, 255, 255, 0.4) 3px, transparent 4px 7px),
    repeating-linear-gradient(0deg, rgba(0, 0, 0, 0.26) 0 1px, transparent 1px 5px);
  background-size: 100% 7px, 100% 5px;
  mix-blend-mode: screen;
  opacity: 0;
  animation: crt-noise-band 2.2s steps(1, end) infinite;
}

.web-sample-art img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 1;
  filter: saturate(0.9);
  object-fit: cover;
  animation: sign-power-waver 5.2s steps(1, end) infinite;
}

.glitch-layer {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: url("/assets/sushi-web-sample-glitch.png?v=crt1") center / cover no-repeat;
  opacity: 0;
  pointer-events: none;
}

.glitch-layer-a {
  filter: hue-rotate(8deg) saturate(1.08);
  mix-blend-mode: screen;
  animation: sign-glitch-a 4.6s steps(1, end) infinite;
}

.glitch-layer-b {
  filter: hue-rotate(-12deg) saturate(1.05);
  mix-blend-mode: multiply;
  animation: sign-glitch-b 6.2s steps(1, end) infinite;
}

.sync-wave-noise {
  position: absolute;
  left: -8%;
  right: -8%;
  bottom: -34%;
  z-index: 4;
  height: 30%;
  background:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.32) 0 2px, transparent 2px 7px),
    linear-gradient(90deg, transparent 0 8%, rgba(25, 216, 255, 0.14) 18%, rgba(255, 79, 184, 0.12) 54%, transparent 88%),
    linear-gradient(180deg, transparent 0, rgba(255, 255, 255, 0.18) 42%, rgba(0, 0, 0, 0.22) 62%, transparent 100%);
  border-radius: 48% 52% 44% 56% / 32% 36% 64% 68%;
  filter: blur(0.4px);
  mix-blend-mode: screen;
  opacity: 0;
  pointer-events: none;
  transform: translateY(0) skewY(-2deg);
  animation: sync-wave-rise 6.8s cubic-bezier(0.28, 0.02, 0.23, 1) infinite;
}

.sample-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.sample-choice-card,
.sample-contact {
  position: relative;
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), transparent 44%),
    linear-gradient(135deg, rgba(255, 79, 184, 0.16), rgba(25, 216, 255, 0.13)),
    rgba(5, 6, 17, 0.9);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.sample-choice-card {
  --screen-accent: rgba(255, 79, 184, 0.26);
  --screen-accent-soft: rgba(25, 216, 255, 0.14);
  isolation: isolate;
  padding: 28px;
  border: 7px solid rgba(3, 4, 12, 0.9);
  border-radius: 22px;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(255, 255, 255, 0.13), transparent 36%),
    radial-gradient(ellipse at 50% 108%, rgba(0, 0, 0, 0.52), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 44%),
    linear-gradient(135deg, var(--screen-accent), var(--screen-accent-soft)),
    rgba(5, 6, 17, 0.92);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.1),
    inset 0 0 46px rgba(0, 0, 0, 0.44),
    0 0 0 1px rgba(255, 255, 255, 0.06),
    var(--shadow);
}

.sample-choice-card::before {
  position: absolute;
  inset: 12px;
  z-index: 0;
  border-radius: 15px;
  background:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.13) 0 1px, transparent 1px 5px),
    linear-gradient(90deg, rgba(255, 79, 184, 0.08), transparent 42%, rgba(25, 216, 255, 0.08));
  content: "";
  opacity: 0.28;
  pointer-events: none;
  animation: card-crt-crawl 0.72s steps(2, end) infinite;
}

.sample-choice-card::after {
  position: absolute;
  inset: 10px;
  z-index: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background:
    radial-gradient(ellipse at 30% 0%, rgba(255, 255, 255, 0.17), transparent 38%),
    radial-gradient(ellipse at 50% 50%, transparent 56%, rgba(0, 0, 0, 0.42) 100%),
    linear-gradient(125deg, transparent 0 24%, rgba(255, 255, 255, 0.05) 25% 31%, transparent 32%);
  box-shadow:
    inset 0 0 28px rgba(0, 0, 0, 0.48),
    inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  content: "";
  pointer-events: none;
}

.sample-contact::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 100% 8px, 18px 100%;
  content: "";
  opacity: 0.38;
  pointer-events: none;
}

.sample-choice-card > *,
.sample-contact > * {
  position: relative;
  z-index: 1;
}

.sample-choice-card img {
  width: 86px;
  height: 86px;
  margin-bottom: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.32);
}

.sample-choice-card h2,
.sample-contact h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.sample-choice-card p:not(.toy-kicker),
.sample-contact p:not(.toy-kicker) {
  max-width: 680px;
  margin: 14px 0 0;
  color: #d7defa;
  font-weight: 760;
}

.sample-choice-card ul {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding-left: 1.1em;
  color: var(--muted);
  font-weight: 740;
}

.sample-preview {
  display: grid;
  grid-template-columns: minmax(132px, 190px);
  justify-content: center;
  margin-top: 20px;
}

.sample-preview span {
  position: relative;
  display: grid;
  min-height: 108px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(255, 79, 184, 0.22), rgba(25, 216, 255, 0.2)),
    rgba(5, 6, 17, 0.54);
  color: #f8fbff;
  font-size: 0.82rem;
  font-weight: 950;
  isolation: isolate;
  overflow: hidden;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.04),
    0 0 22px rgba(255, 79, 184, 0.14),
    0 16px 32px rgba(0, 0, 0, 0.18);
  transform: translateZ(0);
}

.preview-pane {
  --preview-image: url("/assets/sushi-web-sample-icon.png?v=crt1");
  --preview-tint-a: rgba(255, 79, 184, 0.28);
  --preview-tint-b: rgba(25, 216, 255, 0.25);
  --preview-hot-spot: rgba(255, 79, 184, 0.34);
  --preview-cool-spot: rgba(25, 216, 255, 0.3);
  --preview-saturation: 1.12;
  --preview-brightness: 0.9;
}

.preview-pane::before,
.preview-pane::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
}

.preview-pane::before {
  z-index: -2;
  background:
    linear-gradient(135deg, var(--preview-tint-a), var(--preview-tint-b)),
    var(--preview-image) center / cover no-repeat;
  filter: saturate(var(--preview-saturation)) contrast(1.08) brightness(var(--preview-brightness));
  opacity: 0.92;
  transform: scale(1.08);
  animation: preview-vapor-drift 7.4s ease-in-out infinite;
}

.preview-pane::after {
  z-index: -1;
  background:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.16) 0 1px, transparent 1px 5px),
    radial-gradient(circle at 18% 10%, var(--preview-hot-spot), transparent 42%),
    radial-gradient(circle at 82% 84%, var(--preview-cool-spot), transparent 46%),
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.26));
  mix-blend-mode: screen;
  opacity: 0.84;
  animation: preview-line-crawl 0.62s steps(2, end) infinite;
}

.preview-ramen {
  --preview-image: url("/assets/ramen-web-sample-preview.png?v=ramen2");
  --preview-tint-a: rgba(255, 208, 74, 0.4);
  --preview-tint-b: rgba(255, 118, 54, 0.28);
  --preview-hot-spot: rgba(255, 220, 92, 0.44);
  --preview-cool-spot: rgba(255, 88, 62, 0.22);
  --preview-saturation: 1.18;
  --preview-brightness: 0.98;
  border-color: rgba(255, 214, 92, 0.28);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.05),
    0 0 24px rgba(255, 191, 64, 0.18),
    0 16px 32px rgba(0, 0, 0, 0.18);
}

.preview-barber {
  --preview-image: url("/assets/cyberpunk-barber-icon.png?v=crt1");
  --preview-tint-a: rgba(63, 255, 151, 0.32);
  --preview-tint-b: rgba(25, 216, 255, 0.24);
  --preview-hot-spot: rgba(79, 255, 147, 0.42);
  --preview-cool-spot: rgba(25, 216, 255, 0.26);
  --preview-saturation: 1.14;
  --preview-brightness: 0.9;
  border-color: rgba(83, 255, 154, 0.28);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.05),
    0 0 24px rgba(63, 255, 151, 0.16),
    0 16px 32px rgba(0, 0, 0, 0.18);
}

.preview-vapor-sign {
  --preview-image: url("/assets/sushi-web-sample-glitch.png?v=crt1");
}

.preview-sushi-icon {
  --preview-image: url("/assets/sushi-web-sample-icon.png?v=crt1");
}

.ramen-sample {
  --screen-accent: rgba(255, 212, 59, 0.18);
  --screen-accent-soft: rgba(255, 79, 184, 0.14);
  background:
    radial-gradient(ellipse at 50% 0%, rgba(255, 255, 255, 0.13), transparent 36%),
    radial-gradient(ellipse at 50% 108%, rgba(0, 0, 0, 0.52), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 44%),
    linear-gradient(135deg, rgba(255, 212, 59, 0.16), rgba(255, 79, 184, 0.14), rgba(25, 216, 255, 0.09)),
    rgba(5, 6, 17, 0.92);
}

.barber-sample {
  --screen-accent: rgba(63, 255, 151, 0.17);
  --screen-accent-soft: rgba(25, 216, 255, 0.14);
  background:
    radial-gradient(ellipse at 50% 0%, rgba(255, 255, 255, 0.13), transparent 36%),
    radial-gradient(ellipse at 50% 108%, rgba(0, 0, 0, 0.52), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 44%),
    linear-gradient(135deg, rgba(63, 255, 151, 0.14), rgba(25, 216, 255, 0.14), rgba(255, 79, 184, 0.1)),
    rgba(5, 6, 17, 0.92);
}

.sample-contact {
  margin-top: 16px;
  padding: 24px;
}

.sample-contact .toy-social-link {
  margin-top: 18px;
}

.signal-dirt,
.signal-dirt::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
}

.signal-dirt {
  background:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.12) 0 1px, transparent 1px 4px),
    linear-gradient(90deg, rgba(255, 79, 184, 0.16), transparent, rgba(25, 216, 255, 0.16));
  mix-blend-mode: screen;
  opacity: 0.62;
  animation: app-static 0.32s steps(1, end) infinite;
}

.signal-dirt::after {
  background: linear-gradient(0deg, transparent 0 42%, rgba(255, 255, 255, 0.2) 43%, transparent 45%);
  animation: app-tear 2.7s steps(1, end) infinite;
}

@keyframes app-static {
  0% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(4px, -3px);
  }

  100% {
    transform: translate(-3px, 2px);
  }
}

@keyframes app-tear {
  0%,
  88%,
  100% {
    clip-path: inset(0 0 0 0);
    transform: translateX(0);
  }

  90% {
    clip-path: inset(28% 0 54% 0);
    transform: translateX(18px);
  }

  93% {
    clip-path: inset(62% 0 20% 0);
    transform: translateX(-16px);
  }
}

@keyframes card-crt-crawl {
  0% {
    background-position: 0 0, 0 0;
    opacity: 0.22;
  }

  50% {
    background-position: 0 2px, 3px 0;
    opacity: 0.34;
  }

  100% {
    background-position: 0 4px, -2px 0;
    opacity: 0.26;
  }
}

@keyframes crt-line-jitter {
  0% {
    background-position: 0 0, 0 0, 0 0;
    opacity: 0.46;
  }

  33% {
    background-position: 0 1px, 0 -2px, 0 3px;
    opacity: 0.76;
  }

  66% {
    background-position: 0 -1px, 0 3px, 0 -2px;
    opacity: 0.62;
  }

  100% {
    background-position: 0 2px, 0 -1px, 0 1px;
    opacity: 0.7;
  }
}

@keyframes crt-scan-roll {
  0% {
    transform: translate(-1px, -5px);
  }

  50% {
    transform: translate(2px, 4px);
  }

  100% {
    transform: translate(-1px, -5px);
  }
}

@keyframes crt-noise-band {
  0%,
  72%,
  100% {
    opacity: 0;
    transform: translateY(-30%);
  }

  76% {
    opacity: 0.78;
    transform: translateY(110%);
  }

  79% {
    opacity: 0.44;
    transform: translateY(230%);
  }
}

@keyframes sign-power-waver {
  0%,
  64%,
  70%,
  100% {
    filter: saturate(0.9) brightness(1);
    transform: translateX(0);
  }

  65% {
    filter: saturate(0.78) brightness(0.72);
    transform: translateX(-1px);
  }

  66% {
    filter: saturate(0.9) brightness(1.08);
    transform: translateX(1px);
  }

  68% {
    filter: saturate(0.82) brightness(0.86);
    transform: translateX(0);
  }
}

@keyframes sign-glitch-a {
  0%,
  58%,
  62%,
  100% {
    opacity: 0;
    clip-path: inset(0 0 0 0);
    transform: translateX(0);
  }

  59% {
    opacity: 0.38;
    clip-path: inset(8% 0 76% 0);
    transform: translateX(14px);
  }

  60% {
    opacity: 0.24;
    clip-path: inset(52% 0 30% 0);
    transform: translateX(-12px);
  }

  61% {
    opacity: 0.32;
    clip-path: inset(78% 0 9% 0);
    transform: translateX(9px);
  }
}

@keyframes sign-glitch-b {
  0%,
  73%,
  77%,
  100% {
    opacity: 0;
    clip-path: inset(0 0 0 0);
    transform: translateX(0);
  }

  74% {
    opacity: 0.26;
    clip-path: inset(24% 0 61% 0);
    transform: translateX(-18px);
  }

  75% {
    opacity: 0.2;
    clip-path: inset(64% 0 18% 0);
    transform: translateX(16px);
  }

  76% {
    opacity: 0.22;
    clip-path: inset(39% 0 43% 0);
    transform: translateX(-8px);
  }
}

@keyframes sync-wave-rise {
  0%,
  58%,
  100% {
    opacity: 0;
    transform: translateY(0) skewY(-2deg) scaleX(1.02);
  }

  62% {
    opacity: 0.5;
    transform: translateY(-92%) skewY(2deg) scaleX(1.05);
  }

  66% {
    opacity: 0.34;
    transform: translateY(-170%) skewY(-3deg) scaleX(1);
  }

  70% {
    opacity: 0.22;
    transform: translateY(-250%) skewY(2deg) scaleX(1.06);
  }

  74% {
    opacity: 0;
    transform: translateY(-345%) skewY(-1deg) scaleX(1.02);
  }
}

@keyframes neon-breathe {
  0%,
  100% {
    opacity: 0.66;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.03);
  }
}

@keyframes orbit-one {
  0%,
  100% {
    transform: rotate(-18deg) scale(1);
  }

  50% {
    transform: rotate(-10deg) scale(1.05);
  }
}

@keyframes orbit-two {
  0%,
  100% {
    transform: rotate(22deg) scale(1);
  }

  50% {
    transform: rotate(15deg) scale(1.08);
  }
}

@keyframes mini-screen {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(5px);
  }

  100% {
    transform: translateY(-3px);
  }
}

@media (max-width: 980px) {
  .toy-stage {
    grid-template-columns: 1fr;
    grid-template-areas:
      "logo"
      "copy"
      "game"
      "app"
      "youtube";
  }

  .toy-logo-wrap {
    min-height: auto;
    padding: 24px;
  }

  .toy-logo {
    width: min(340px, 82%);
  }

  .official-badge {
    right: 14px;
    bottom: 14px;
  }

  .toy-copy {
    text-align: center;
  }

  .video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .web-sample-hero,
  .sample-choice-grid {
    grid-template-columns: 1fr;
  }

  .web-sample-copy {
    text-align: center;
  }

  .web-sample-tagline {
    margin-right: auto;
    margin-left: auto;
  }

  .web-sample-actions {
    justify-content: center;
  }
}

@media (max-width: 560px) {
  .toy-shell {
    width: min(var(--max), calc(100% - 22px));
    padding-top: 18px;
  }

  .toy-stage {
    gap: 12px;
  }

  .toy-window {
    padding: 14px;
  }

  .window-head {
    align-items: flex-start;
    justify-content: flex-start;
  }

  .toy-logo-wrap {
    padding: 18px;
  }

  .toy-logo {
    width: min(280px, 100%);
    border-radius: 20px;
  }

  .toy-copy h1 {
    font-size: clamp(2.25rem, 13vw, 3.35rem);
    overflow-wrap: anywhere;
  }

  .app-slot {
    grid-template-columns: 1fr;
  }

  .app-slot img {
    min-height: 150px;
  }

  .video-grid {
    grid-template-columns: 1fr;
  }

  .quiet-web-link {
    justify-content: center;
    padding-right: 0;
  }

  .quiet-web-card {
    grid-template-columns: 54px minmax(0, 1fr);
    width: min(100%, 250px);
    min-height: 74px;
    padding: 9px 10px;
  }

  .quiet-web-card img {
    width: 54px;
    height: 54px;
    border-radius: 10px;
  }

  .web-sample-copy h1 {
    max-width: 100%;
    font-size: clamp(1.9rem, 8.4vw, 2.9rem);
    line-height: 0.96;
    overflow-wrap: anywhere;
    word-break: break-word;
    text-shadow: 2px 2px 0 rgba(25, 216, 255, 0.36), -2px -2px 0 rgba(255, 79, 184, 0.3);
  }

  .web-sample-art {
    border-radius: 14px;
  }

  .sample-choice-card,
  .sample-contact {
    padding: 18px;
  }

  .sample-choice-card img {
    width: 72px;
    height: 72px;
    border-radius: 14px;
  }

  .sample-preview {
    grid-template-columns: minmax(132px, 180px);
    justify-content: center;
  }

  .studio-intro {
    margin-right: auto;
    margin-left: auto;
  }
}
