:root {
  --ink: #121212;
  --paper: #f8f8f8;
  --lime: #f1f1f1;
  --blue: #3ea6ff;
  --cyan: #d8d8d8;
  --red: #cc0000;
  --pink: #8f1d1d;
  --yellow: #ffffff;
  --dark: #0f0f0f;
  --muted: #606060;
  font-family: "Arial Black", "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
}

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

html {
  scroll-behavior: smooth;
}

html.audio-gate-active {
  height: 100%;
  overflow: hidden;
  overscroll-behavior: none;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
}

body::after {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  content: "";
  opacity: 0.12;
  background-image: repeating-linear-gradient(0deg, rgba(0, 0, 0, 0.18) 0 1px, transparent 1px 4px);
  mix-blend-mode: multiply;
}

body.audio-gate-active {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  overscroll-behavior: none;
  touch-action: none;
}

.audio-landing {
  position: fixed;
  inset: 0;
  z-index: 2147483647;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 680px);
  align-items: center;
  gap: clamp(18px, 4vw, 64px);
  padding: clamp(22px, 5vw, 72px);
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(135deg, #090909 0 48%, #cc0000 48% 52%, #161616 52% 100%);
  background-size: 52px 52px, 52px 52px, auto;
  transition:
    opacity 360ms ease,
    visibility 360ms ease;
  isolation: isolate;
  overscroll-behavior: contain;
  touch-action: none;
}

.audio-landing.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.audio-landing__noise {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.26;
  background:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.22) 0 1px, transparent 1px 5px),
    repeating-linear-gradient(90deg, transparent 0 70px, rgba(186, 255, 22, 0.2) 70px 74px, transparent 74px 140px);
  mix-blend-mode: screen;
}

.audio-landing__figure {
  justify-self: center;
  width: min(36vw, 360px);
  max-height: 76svh;
  object-fit: contain;
  filter:
    drop-shadow(18px 18px 0 rgba(186, 255, 22, 0.86))
    drop-shadow(-14px 14px 0 rgba(62, 166, 255, 0.78))
    drop-shadow(0 24px 24px rgba(0, 0, 0, 0.32));
  transform: rotate(-5deg);
}

.audio-landing__panel {
  position: relative;
  display: grid;
  gap: 18px;
  padding: clamp(22px, 4vw, 42px);
  color: #fff;
  background: rgba(10, 10, 10, 0.88);
  border: 5px solid #fff;
  border-radius: 8px;
  box-shadow:
    14px 14px 0 rgba(186, 255, 22, 0.9),
    -10px -10px 0 rgba(204, 0, 0, 0.72);
}

.audio-landing__kicker,
.audio-landing__copy {
  margin: 0;
}

.audio-landing__kicker {
  width: max-content;
  padding: 7px 11px;
  color: #111;
  font-size: 12px;
  font-weight: 950;
  background: #baff16;
  border: 3px solid #fff;
  transform: rotate(-2deg);
}

.audio-landing h1 {
  margin: 0;
  font-size: clamp(40px, 7vw, 92px);
  font-weight: 950;
  line-height: 0.98;
  text-shadow:
    5px 5px 0 #cc0000,
    -4px 4px 0 #3ea6ff;
}

.audio-landing__copy {
  color: #f8f8f8;
  font-size: clamp(15px, 1.7vw, 20px);
  font-weight: 950;
  line-height: 1.7;
}

.audio-landing__actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 8px;
}

.audio-landing__button {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  min-height: 72px;
  padding: 10px 14px;
  color: #111;
  text-align: left;
  cursor: pointer;
  background: #fff;
  border: 4px solid #111;
  border-radius: 8px;
  box-shadow: 7px 7px 0 rgba(255, 255, 255, 0.22);
  transition:
    transform 160ms ease,
    box-shadow 160ms ease;
}

.audio-landing__button.is-on {
  background: #baff16;
  box-shadow: 7px 7px 0 rgba(62, 166, 255, 0.82);
}

.audio-landing__button span {
  display: grid;
  place-items: center;
  width: 52px;
  aspect-ratio: 1;
  color: #fff;
  font-size: 18px;
  font-weight: 950;
  background: #111;
  border-radius: 6px;
}

.audio-landing__button strong {
  min-width: 0;
  font-size: clamp(14px, 1.7vw, 18px);
  line-height: 1.2;
}

.audio-landing__button:hover,
.audio-landing__button:focus-visible {
  outline: none;
  transform: translateY(-3px) rotate(-1deg);
  box-shadow: 10px 10px 0 rgba(204, 0, 0, 0.68);
}

@media (max-width: 760px) {
  .audio-landing {
    grid-template-columns: 1fr;
    align-content: center;
    padding: 20px;
  }

  .audio-landing__figure {
    width: min(44vw, 178px);
    max-height: 27svh;
  }

  .audio-landing__panel {
    padding: 20px;
    box-shadow:
      8px 8px 0 rgba(186, 255, 22, 0.9),
      -6px -6px 0 rgba(204, 0, 0, 0.72);
  }

  .audio-landing__actions {
    grid-template-columns: 1fr;
  }

  .audio-landing__button {
    min-height: 64px;
  }
}

@media (max-width: 430px) and (max-height: 740px) {
  .audio-landing {
    gap: 10px;
    padding: 14px;
  }

  .audio-landing__figure {
    width: min(34vw, 120px);
    max-height: 18svh;
  }

  .audio-landing__panel {
    gap: 12px;
    padding: 16px;
  }

  .audio-landing h1 {
    font-size: clamp(34px, 11vw, 46px);
  }

  .audio-landing__button {
    min-height: 58px;
  }
}

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

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

button {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 22px;
  left: 34px;
  right: 34px;
  z-index: 40;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 22px;
  pointer-events: none;
}

.brand-mark,
.header-links,
.menu-button {
  pointer-events: auto;
}

.brand-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 162px;
  height: 108px;
  color: #fff;
  transform: rotate(-9deg);
}

.brand-mark::before {
  position: absolute;
  inset: 0;
  content: "";
  background: var(--red);
  clip-path: polygon(
    49% 0%,
    58% 19%,
    73% 5%,
    72% 29%,
    98% 22%,
    80% 42%,
    100% 52%,
    77% 60%,
    89% 82%,
    65% 73%,
    56% 100%,
    46% 78%,
    27% 95%,
    31% 70%,
    5% 79%,
    22% 58%,
    0 48%,
    25% 38%,
    12% 17%,
    36% 25%
  );
  filter: drop-shadow(7px 9px 0 var(--cyan));
}

.brand-main,
.brand-sub {
  position: relative;
  z-index: 1;
  color: #fff;
  font-weight: 950;
  line-height: 1;
  text-shadow: 4px 4px 0 var(--blue);
}

.brand-main {
  margin-top: 8px;
  font-size: 31px;
}

.brand-sub {
  margin-top: -22px;
  font-size: 12px;
}

.header-links {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid var(--ink);
  border-radius: 999px;
  box-shadow: 7px 7px 0 rgba(32, 32, 32, 0.14);
  backdrop-filter: blur(12px);
}

.header-links a {
  display: inline-grid;
  place-items: center;
  min-width: 76px;
  min-height: 34px;
  padding: 0 12px;
  font-size: 12px;
  font-weight: 950;
  border-radius: 999px;
}

.header-links a:hover {
  background: var(--lime);
}

.menu-button {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  background: var(--ink);
  border: 0;
  border-radius: 50%;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: #fff;
  border-radius: 999px;
}

.corner-badge {
  position: fixed;
  top: 30px;
  right: 42px;
  z-index: 39;
  display: none;
  gap: 0;
  transform: rotate(9deg);
}

.corner-badge span {
  width: 34px;
  height: 44px;
  background: var(--pink);
  border: 5px solid #101828;
  border-radius: 50% 50% 44% 44%;
  box-shadow: inset 0 -9px 0 #fff;
}

.corner-badge span + span {
  margin-left: -9px;
  background: #6755ff;
}

.hero-section {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: #fff;
  isolation: isolate;
}

.hero-raster {
  position: absolute;
  inset: -8% -6%;
  z-index: -2;
  background: url("./assets/generated/gemini-hero-bg.jpg") center / cover no-repeat;
  opacity: 0.44;
  transform: rotate(-2deg) scale(1.08);
}

.hero-section::before {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(circle at 50% 42%, transparent 0 55%, rgba(255, 255, 255, 0.36) 78%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.09) 0 1px, transparent 1px 6px);
  mix-blend-mode: screen;
}

.tv-wall {
  position: absolute;
  inset: -18% -12%;
  z-index: 1;
  min-height: 136%;
  pointer-events: none;
}

.tv-card {
  position: absolute;
  width: clamp(300px, 28vw, 520px);
  aspect-ratio: 1.72;
  padding: clamp(10px, 1vw, 16px);
  background:
    radial-gradient(circle at 88% 14%, rgba(255, 255, 255, 0.7) 0 7px, transparent 8px),
    linear-gradient(135deg, #cc0000 0 54%, #111 54% 100%);
  border: 5px solid #151515;
  border-radius: 32px;
  box-shadow:
    0 0 0 7px rgba(255, 255, 255, 0.88),
    0 0 0 13px var(--tv-glow, var(--lime)),
    13px 14px 0 var(--tv-shadow, var(--pink)),
    22px 24px 0 rgba(32, 32, 32, 0.1);
  transform: translate(-50%, -50%) rotate(var(--rot));
  will-change: transform;
}

.tv-card.is-vibrating {
  filter: saturate(1.05);
}

.tv-card::before,
.tv-card::after {
  position: absolute;
  z-index: 4;
  content: "";
}

.tv-card::before {
  left: 18px;
  top: 18px;
  width: 72px;
  height: 24px;
  background:
    radial-gradient(circle at 13px 50%, #fff 0 4px, transparent 5px),
    linear-gradient(90deg, #cc0000, #8f1d1d);
  border: 3px solid #151515;
  border-radius: 999px;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.26);
}

.tv-card::after {
  right: 18px;
  top: 18px;
  width: 46px;
  height: 24px;
  background: #fff;
  border: 3px solid #151515;
  border-radius: 999px;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.24);
}

.tv-grille {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: -18px;
  width: auto;
  height: 20px;
  opacity: 1;
  background:
    linear-gradient(90deg, #cc0000 0 64%, #111 64% 100%);
  border: 4px solid #151515;
  border-radius: 999px;
  box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.2);
}

.tv-foot {
  position: absolute;
  top: calc(100% + 10px);
  width: 76px;
  height: 24px;
  background: #fff;
  border: 4px solid #151515;
  border-radius: 999px;
  box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.22);
}

.tv-foot.is-left {
  left: 34px;
}

.tv-foot.is-right {
  right: 34px;
  background: var(--yellow);
}

.tv-screen {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #0b1118;
  border: 5px solid #151515;
  border-radius: 22px;
}

.tv-screen::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.14) 0 1px, transparent 1px 4px),
    radial-gradient(circle at 32% 20%, rgba(255, 255, 255, 0.22), transparent 36%);
  mix-blend-mode: screen;
}

.tv-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.16) contrast(1.04);
  transform: scale(1.02);
}

.tv-caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 42px;
  z-index: 2;
  display: inline-block;
  padding: 8px 12px;
  color: #fff;
  font-size: clamp(14px, 1.2vw, 20px);
  font-weight: 950;
  line-height: 1.1;
  background: rgba(17, 17, 17, 0.76);
  border: 3px solid #fff;
  border-radius: 12px;
  box-shadow: 5px 5px 0 rgba(255, 43, 43, 0.7);
  text-shadow:
    3px 3px 0 #151515,
    -2px 2px 0 #cc0000;
}

.tube-play-badge {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  width: clamp(62px, 6.2vw, 104px);
  aspect-ratio: 1.44;
  background: #cc0000;
  border: 5px solid #fff;
  border-radius: 22px;
  box-shadow:
    6px 6px 0 rgba(17, 17, 17, 0.6),
    0 0 28px rgba(255, 43, 43, 0.62);
  transform: translate(-50%, -50%) rotate(-3deg);
}

.tube-play-badge::after {
  position: absolute;
  left: 52%;
  top: 50%;
  width: 30%;
  height: 42%;
  content: "";
  background: #fff;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  transform: translate(-42%, -50%);
}

.tube-channel {
  position: absolute;
  left: 16px;
  top: 16px;
  z-index: 3;
  padding: 6px 9px;
  color: #151515;
  font-size: 11px;
  font-weight: 950;
  background: #fff;
  border: 3px solid #151515;
  border-radius: 999px;
  box-shadow: 4px 4px 0 rgba(255, 43, 43, 0.5);
}

.tube-progress {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  z-index: 3;
  height: 10px;
  background: rgba(255, 255, 255, 0.76);
  border: 3px solid #151515;
  border-radius: 999px;
}

.tube-progress::before {
  display: block;
  width: var(--watch, 58%);
  height: 100%;
  content: "";
  background: #cc0000;
  border-radius: inherit;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 40px;
  z-index: 4;
  margin: 0;
  color: #fff;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-shadow: 2px 2px 0 var(--ink);
  transform: translateX(-50%);
}

.ticker {
  position: relative;
  z-index: 3;
  overflow: hidden;
  min-height: 66px;
  margin-top: -2px;
  color: #fff;
  background: var(--ink);
  border-block: 4px solid var(--lime);
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 28s linear infinite;
}

.ticker span {
  padding: 14px 18px;
  color: var(--lime);
  font-size: clamp(22px, 3vw, 42px);
  font-weight: 950;
  white-space: nowrap;
}

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

.signal-section {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 100svh;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.16), transparent 38%),
    linear-gradient(
      90deg,
      #ebece8 0 8%,
      #d9d332 8% 22%,
      #18b8d9 22% 37%,
      #d1d52a 37% 52%,
      #9c38b2 52% 69%,
      #c94231 69% 84%,
      #253da4 84% 100%
    );
  isolation: isolate;
}

.signal-section::before,
.signal-section::after {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  content: "";
}

.signal-section::before {
  background:
    repeating-linear-gradient(0deg, rgba(0, 0, 0, 0.28) 0 1px, transparent 1px 4px),
    linear-gradient(180deg, transparent 0 61%, rgba(13, 19, 28, 0.86) 61% 75%, transparent 75% 100%);
  opacity: 0.78;
}

.signal-section::after {
  background:
    linear-gradient(90deg, transparent 0 14%, rgba(255, 255, 255, 0.2) 14% 16%, transparent 16% 100%),
    repeating-linear-gradient(90deg, transparent 0 212px, rgba(255, 255, 255, 0.08) 212px 218px, transparent 218px 100%);
  animation: glitchShift 3.8s steps(3) infinite;
}

@keyframes glitchShift {
  50% {
    transform: translateX(-22px);
  }
}

.signal-gallery {
  position: absolute;
  inset: -8% -3%;
  z-index: 1;
  pointer-events: none;
}

.signal-gallery::before,
.signal-gallery::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.signal-gallery::before {
  inset: 12% 7%;
  border: 3px solid rgba(255, 255, 255, 0.52);
  box-shadow:
    inset 0 0 0 8px rgba(5, 5, 5, 0.2),
    12px 12px 0 rgba(5, 5, 5, 0.24);
  transform: rotate(-1deg);
}

.signal-gallery::after {
  left: 7%;
  right: 7%;
  top: 50%;
  height: 4px;
  background: rgba(255, 255, 255, 0.64);
  box-shadow:
    0 -86px 0 rgba(255, 255, 255, 0.18),
    0 88px 0 rgba(5, 5, 5, 0.28);
}

.signal-strip {
  position: absolute;
  width: clamp(132px, 13vw, 230px);
  height: clamp(390px, 64vh, 690px);
  margin: 0;
  overflow: hidden;
  background: #050505;
  border: 5px solid rgba(255, 255, 255, 0.72);
  box-shadow:
    8px 9px 0 rgba(5, 5, 5, 0.34),
    0 0 0 2px rgba(5, 5, 5, 0.72);
  clip-path: polygon(0 3%, 100% 0, 100% 97%, 0 100%);
  filter: saturate(1.08) contrast(1.04);
  transform: translate3d(0, 0, 0) rotate(var(--strip-rot, 0deg));
}

.signal-strip::before,
.signal-strip::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  content: "";
}

.signal-strip::before {
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.08), rgba(5, 5, 5, 0.58)),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.12) 0 1px, transparent 1px 5px);
  mix-blend-mode: multiply;
}

.signal-strip::after {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.28), transparent 22% 78%, rgba(255, 255, 255, 0.12)),
    repeating-linear-gradient(90deg, transparent 0 42px, rgba(255, 255, 255, 0.14) 42px 46px, transparent 46px 90px);
}

.signal-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
}

.signal-strip.is-a {
  left: 5%;
  top: 8%;
  --strip-rot: -6deg;
}

.signal-strip.is-b {
  left: 21%;
  bottom: 5%;
  --strip-rot: 3deg;
}

.signal-strip.is-c {
  left: 38%;
  top: 2%;
  width: clamp(150px, 14vw, 260px);
  --strip-rot: -1deg;
}

.signal-strip.is-d {
  right: 27%;
  bottom: 2%;
  --strip-rot: 5deg;
}

.signal-strip.is-e {
  right: 11%;
  top: 10%;
  --strip-rot: -4deg;
}

.signal-strip.is-f {
  right: -2%;
  bottom: 9%;
  --strip-rot: 6deg;
}

.signal-person {
  position: absolute;
  z-index: 5;
  width: min(33vw, 390px);
  max-height: 72vh;
  object-fit: contain;
  opacity: 0.24;
  mix-blend-mode: lighten;
  filter: saturate(0.72) contrast(1.25);
}

.signal-copy {
  position: relative;
  z-index: 6;
  max-width: 1040px;
  padding: 0 28px;
  color: #fff;
  text-align: center;
  text-shadow:
    5px 5px 0 rgba(0, 0, 0, 0.42),
    -3px 3px 0 rgba(0, 121, 255, 0.46);
}

.signal-copy p {
  margin: 10px 0;
  font-size: clamp(34px, 5.4vw, 88px);
  font-weight: 950;
  line-height: 1.12;
}

.signal-copy span {
  display: inline-block;
  padding: 4px 18px 8px;
  border: 4px solid #fff;
  background: rgba(5, 5, 5, 0.42);
  box-shadow:
    6px 6px 0 rgba(186, 255, 22, 0.58),
    -5px -4px 0 rgba(255, 75, 43, 0.52);
}

.takoyaki-section {
  --takoyaki-left-x: -3px;
  --takoyaki-left-y: 0px;
  --takoyaki-left-rot: -2deg;
  --takoyaki-right-x: 3px;
  --takoyaki-right-y: 0px;
  --takoyaki-right-rot: 2deg;
  --takoyaki-person-y: 86px;
  --takoyaki-person-scale: 0.58;
  --takoyaki-person-rot: -8deg;
  --takoyaki-person-opacity: 0;
  --takoyaki-seed-opacity: 0;
  --takoyaki-sauce-opacity: 0.94;
  position: relative;
  display: grid;
  place-items: center;
  min-height: 118svh;
  padding: 120px 24px 150px;
  overflow: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 16% 22%, rgba(255, 79, 166, 0.24), transparent 16rem),
    radial-gradient(circle at 84% 72%, rgba(0, 121, 255, 0.22), transparent 18rem),
    #fff9df;
  isolation: isolate;
}

.takoyaki-section::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  opacity: 0.46;
  background-image:
    linear-gradient(90deg, transparent 0 94%, rgba(32, 32, 32, 0.18) 94% 100%),
    linear-gradient(0deg, transparent 0 94%, rgba(32, 32, 32, 0.18) 94% 100%);
  background-size: 58px 58px;
  transform: rotate(-2deg) scale(1.08);
}

.takoyaki-section::after {
  position: absolute;
  inset: auto -12vw -18vw auto;
  width: min(52vw, 650px);
  aspect-ratio: 1;
  z-index: -1;
  content: "";
  background: var(--lime);
  border: 8px solid var(--ink);
  border-radius: 50%;
  box-shadow: -22px -20px 0 var(--blue);
}

.takoyaki-copy {
  position: absolute;
  top: clamp(72px, 10vw, 128px);
  left: clamp(18px, 5vw, 84px);
  z-index: 5;
  display: grid;
  gap: 6px;
  transform: rotate(-7deg);
}

.takoyaki-copy span,
.takoyaki-copy strong {
  display: block;
  width: max-content;
  color: #fff;
  font-weight: 950;
  line-height: 0.92;
  text-shadow:
    4px 4px 0 var(--blue),
    -3px 3px 0 var(--red);
}

.takoyaki-copy span {
  padding: 7px 13px;
  font-size: clamp(14px, 1.7vw, 24px);
  background: var(--ink);
}

.takoyaki-copy strong {
  font-size: clamp(48px, 8vw, 132px);
}

.takoyaki-stage {
  position: relative;
  width: min(86vw, 880px);
  aspect-ratio: 1.16;
  display: grid;
  place-items: center;
  perspective: 1200px;
}

.takoyaki-plate {
  position: absolute;
  left: 50%;
  bottom: 3%;
  width: min(74vw, 680px);
  height: min(18vw, 120px);
  background: #f0f2f5;
  border: 7px solid var(--ink);
  border-radius: 50%;
  box-shadow:
    0 20px 0 rgba(32, 32, 32, 0.12),
    inset 0 -14px 0 rgba(0, 121, 255, 0.16);
  transform: translateX(-50%) rotate(-2deg);
}

.takoyaki-plate span {
  position: absolute;
  bottom: 48%;
  width: 34px;
  height: 20px;
  background: var(--pink);
  border: 4px solid var(--ink);
  border-radius: 50%;
}

.takoyaki-plate span:nth-child(1) {
  left: 20%;
  transform: rotate(22deg);
}

.takoyaki-plate span:nth-child(2) {
  left: 48%;
  background: var(--lime);
  transform: rotate(-8deg);
}

.takoyaki-plate span:nth-child(3) {
  right: 20%;
  background: var(--yellow);
  transform: rotate(-22deg);
}

.takoyaki-orb {
  position: relative;
  width: min(68vw, 560px);
  aspect-ratio: 1;
  padding: 0;
  color: inherit;
  cursor: pointer;
  background: transparent;
  border: 0;
  transform: translateY(-3%) rotateX(4deg);
  transform-style: preserve-3d;
  transition:
    filter 180ms ease,
    transform 180ms ease;
}

.takoyaki-orb:hover,
.takoyaki-orb:focus-visible {
  filter: saturate(1.12) contrast(1.04);
  transform: translateY(-4%) rotateX(4deg) scale(1.015);
}

.takoyaki-orb:focus-visible {
  outline: 5px solid var(--blue);
  outline-offset: 8px;
  border-radius: 50%;
}

.takoyaki-half,
.takoyaki-sauce {
  position: absolute;
  inset: 0;
  border: 7px solid var(--ink);
  border-radius: 46% 54% 49% 51%;
}

.takoyaki-half {
  z-index: 5;
  overflow: hidden;
  background:
    radial-gradient(circle at 66% 28%, rgba(255, 255, 255, 0.42), transparent 16%),
    radial-gradient(circle at 28% 72%, #ffbe5b 0 10%, transparent 11%),
    radial-gradient(circle at 74% 64%, #a44922 0 8%, transparent 9%),
    radial-gradient(circle at 34% 26%, #6d2a18 0 7%, transparent 8%),
    radial-gradient(circle at 42% 46%, #f5a83b 0 58%, #8d351a 72%, #5c2416 100%);
  box-shadow:
    inset 16px -22px 0 rgba(92, 36, 22, 0.24),
    24px 30px 0 rgba(32, 32, 32, 0.16);
  transition:
    box-shadow 420ms cubic-bezier(0.2, 0.9, 0.18, 1),
    filter 420ms cubic-bezier(0.2, 0.9, 0.18, 1),
    transform 560ms cubic-bezier(0.17, 1.22, 0.31, 1);
  will-change: transform;
}

.takoyaki-half::before,
.takoyaki-half::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.takoyaki-half::before {
  inset: 10% 12%;
  background:
    radial-gradient(circle at 18% 36%, #e22935 0 3.5%, transparent 4%),
    radial-gradient(circle at 36% 24%, #e22935 0 3%, transparent 3.5%),
    radial-gradient(circle at 58% 48%, #e22935 0 4%, transparent 4.5%),
    radial-gradient(circle at 28% 70%, #e22935 0 3.5%, transparent 4%),
    radial-gradient(circle at 74% 72%, #e22935 0 3.5%, transparent 4%);
  opacity: 0.74;
}

.takoyaki-half::after {
  inset: 16% 18% 18%;
  border: 5px solid rgba(93, 20, 18, 0.76);
  border-radius: 50%;
  opacity: 0.48;
}

.takoyaki-half.is-left {
  clip-path: polygon(0 0, 58% 0, 50% 11%, 62% 22%, 48% 34%, 60% 47%, 49% 60%, 58% 73%, 47% 100%, 0 100%);
  transform: translate3d(var(--takoyaki-left-x), var(--takoyaki-left-y), 0) rotate(var(--takoyaki-left-rot));
  transform-origin: 66% 55%;
}

.takoyaki-half.is-right {
  clip-path: polygon(42% 0, 100% 0, 100% 100%, 53% 100%, 42% 76%, 52% 63%, 41% 50%, 53% 36%, 40% 22%, 50% 10%);
  transform: translate3d(var(--takoyaki-right-x), var(--takoyaki-right-y), 0) rotate(var(--takoyaki-right-rot));
  transform-origin: 34% 55%;
}

.takoyaki-sauce {
  z-index: 7;
  inset: 6.5%;
  overflow: hidden;
  pointer-events: none;
  opacity: var(--takoyaki-sauce-opacity);
  background:
    radial-gradient(ellipse 60% 16% at 30% 36%, rgba(76, 27, 13, 0.92) 0 50%, rgba(76, 27, 13, 0.28) 54%, transparent 68%),
    radial-gradient(ellipse 58% 15% at 68% 54%, rgba(76, 27, 13, 0.9) 0 49%, rgba(76, 27, 13, 0.26) 54%, transparent 68%),
    radial-gradient(ellipse 52% 13% at 48% 69%, rgba(76, 27, 13, 0.84) 0 48%, rgba(76, 27, 13, 0.22) 54%, transparent 68%);
  border-color: transparent;
  transform: rotate(-13deg) scale(1.02);
  mix-blend-mode: multiply;
  transition:
    opacity 420ms ease,
    transform 520ms cubic-bezier(0.2, 0.9, 0.18, 1);
}

.takoyaki-sauce::before,
.takoyaki-sauce::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.takoyaki-sauce::before {
  inset: 5% 8%;
  background:
    linear-gradient(100deg, transparent 0 18%, rgba(255, 244, 194, 0.92) 18% 20%, transparent 20% 34%, rgba(255, 244, 194, 0.92) 34% 36%, transparent 36% 52%, rgba(255, 244, 194, 0.88) 52% 54%, transparent 54% 100%),
    linear-gradient(78deg, transparent 0 27%, rgba(255, 244, 194, 0.86) 27% 29%, transparent 29% 61%, rgba(255, 244, 194, 0.86) 61% 63%, transparent 63% 100%);
  border-radius: 50%;
  filter: blur(0.2px);
  opacity: 0.82;
}

.takoyaki-sauce::after {
  inset: 15% 17%;
  background:
    radial-gradient(circle at 21% 28%, rgba(36, 132, 44, 0.92) 0 2.5%, transparent 3%),
    radial-gradient(circle at 40% 43%, rgba(36, 132, 44, 0.88) 0 2.2%, transparent 2.8%),
    radial-gradient(circle at 64% 34%, rgba(36, 132, 44, 0.88) 0 2.4%, transparent 3%),
    radial-gradient(circle at 75% 62%, rgba(36, 132, 44, 0.9) 0 2.2%, transparent 2.8%),
    radial-gradient(circle at 34% 70%, rgba(36, 132, 44, 0.8) 0 2%, transparent 2.6%);
  opacity: 0.78;
}

.takoyaki-section.is-popped .takoyaki-half {
  box-shadow:
    inset 12px -20px 0 rgba(92, 36, 22, 0.2),
    18px 22px 0 rgba(32, 32, 32, 0.13);
}

.takoyaki-section.is-popped .takoyaki-sauce {
  transform: rotate(-18deg) scale(0.96);
}

.takoyaki-person {
  position: absolute;
  left: 50%;
  bottom: 11%;
  z-index: 4;
  width: min(58%, 340px);
  padding: 10px;
  overflow: hidden;
  background: #fff;
  border: 7px solid var(--ink);
  border-radius: 42% 42% 38% 38%;
  box-shadow:
    12px 12px 0 var(--lime),
    23px 23px 0 var(--blue);
  opacity: var(--takoyaki-person-opacity);
  transform: translate3d(-50%, var(--takoyaki-person-y), 0) scale(var(--takoyaki-person-scale))
    rotate(var(--takoyaki-person-rot));
  transform-origin: 50% 100%;
  transition:
    opacity 300ms ease,
    transform 560ms cubic-bezier(0.17, 1.22, 0.31, 1);
  will-change: transform, opacity;
}

.takoyaki-person img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center;
  border-radius: 36% 36% 34% 34%;
  filter: saturate(1.18) contrast(1.05);
}

.takoyaki-seed {
  position: absolute;
  z-index: 6;
  width: clamp(18px, 2.7vw, 34px);
  aspect-ratio: 1;
  background:
    radial-gradient(circle at 35% 28%, rgba(255, 255, 255, 0.72), transparent 20%),
    #d91d37;
  border: 4px solid var(--ink);
  border-radius: 62% 45% 64% 42%;
  opacity: var(--takoyaki-seed-opacity);
  transform: translate3d(var(--seed-x, 0px), var(--seed-y, 0px), 0) rotate(var(--seed-rot, 0deg));
  transition:
    opacity 240ms ease,
    transform 520ms cubic-bezier(0.17, 1.22, 0.31, 1);
  will-change: transform, opacity;
}

.seed-1 {
  left: 42%;
  top: 32%;
}

.seed-2 {
  left: 54%;
  top: 41%;
}

.seed-3 {
  left: 36%;
  top: 54%;
}

.seed-4 {
  left: 61%;
  top: 58%;
}

.seed-5 {
  left: 49%;
  top: 68%;
}

.policy-section {
  position: relative;
  min-height: 100svh;
  padding: 230px clamp(20px, 12vw, 170px) 110px;
  overflow: hidden;
  background: var(--lime);
}

.policy-section::before {
  position: absolute;
  inset: 0 0 auto;
  height: 38vh;
  content: "";
  background: url("./assets/generated/gemini-policy-collage.jpg") center top / cover no-repeat;
}

.policy-section::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0.2;
  background-image: radial-gradient(circle, #1a2633 1px, transparent 1.3px);
  background-size: 12px 12px;
}

.policy-stickers {
  position: absolute;
  right: -40px;
  bottom: 4%;
  z-index: 1;
  width: 220px;
  height: 220px;
  background: var(--ink);
  clip-path: polygon(50% 0, 62% 31%, 96% 20%, 73% 48%, 100% 69%, 64% 65%, 51% 100%, 39% 65%, 0 70%, 27% 47%, 5% 19%, 38% 31%);
}

.section-label {
  position: relative;
  z-index: 2;
  display: inline-block;
  padding: 8px 28px 12px;
  color: #fff;
  font-size: clamp(48px, 8vw, 136px);
  font-weight: 950;
  line-height: 0.92;
  background: #050505;
  box-shadow:
    4px 4px 0 var(--cyan),
    8px 8px 0 var(--red);
  text-shadow:
    4px 0 0 var(--cyan),
    -4px 0 0 var(--red);
}

.policy-text {
  position: relative;
  z-index: 2;
  max-width: 1020px;
  margin: 66px 0 0;
  color: rgba(32, 32, 32, 0.34);
  font-size: clamp(25px, 3.6vw, 58px);
  font-weight: 950;
  line-height: 1.66;
}

.policy-text .char {
  color: rgba(32, 32, 32, 0.34);
  transition: color 120ms linear;
}

.policy-text .char.is-active {
  color: var(--ink);
}

.works-section {
  position: relative;
  min-height: 100svh;
  padding: 230px 40px 120px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(ellipse at 50% 0, var(--lime) 0 16%, transparent 16.5%),
    var(--dark);
}

.works-section::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.2;
  background-image: radial-gradient(circle, #0b121b 2px, transparent 2.5px);
  background-size: 12px 12px;
}

.hanging-sign {
  position: absolute;
  top: 72px;
  left: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: min(480px, calc(100vw - 40px));
  padding: 22px 26px 18px;
  color: var(--lime);
  background: #050505;
  border: 8px solid #8b8f92;
  border-radius: 18px;
  box-shadow: 0 0 0 3px #050505;
  transform: translateX(-50%);
}

.hanging-sign::before,
.hanging-sign::after {
  position: absolute;
  top: -82px;
  width: 7px;
  height: 82px;
  content: "";
  background: #8b8f92;
  border-inline: 2px solid #050505;
}

.hanging-sign::before {
  left: 24%;
}

.hanging-sign::after {
  right: 24%;
}

.hanging-sign span {
  font-family: "Courier New", monospace;
  font-size: clamp(44px, 6vw, 84px);
  font-weight: 950;
  line-height: 0.9;
  text-shadow: 0 0 12px rgba(186, 255, 22, 0.8);
  animation: onAirBlink 1.45s steps(2, end) infinite;
}

.hanging-sign small {
  color: var(--yellow);
  font-size: 17px;
  font-weight: 950;
  text-shadow: 2px 2px 0 #050505;
}

.hanging-sign small::after {
  content: "  REC";
  color: var(--red);
  text-shadow: 0 0 9px rgba(255, 75, 43, 0.9);
  animation: recBlink 0.72s steps(2, end) infinite;
}

@keyframes onAirBlink {
  0%,
  100% {
    opacity: 1;
    filter: brightness(1.25);
  }
  12%,
  18%,
  48% {
    opacity: 0.34;
    filter: brightness(0.62);
    text-shadow: none;
  }
  52%,
  74% {
    opacity: 1;
    filter: brightness(1.45);
  }
}

@keyframes recBlink {
  50% {
    opacity: 0.18;
  }
}

.works-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 80px;
  width: min(100%, 1360px);
  margin: 0 auto;
}

.work-card {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --card-rot: 0deg;
  position: relative;
  display: grid;
  gap: 20px;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  transform: perspective(900px) rotateX(var(--tilt-y)) rotateY(var(--tilt-x)) rotate(var(--card-rot));
  transform-style: preserve-3d;
  transition:
    filter 180ms ease,
    transform 180ms ease,
    z-index 180ms ease;
  will-change: transform;
}

.work-card:nth-child(even) {
  --card-rot: 1.1deg;
}

.work-card:nth-child(odd) {
  --card-rot: -0.8deg;
}

.work-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #111;
  filter: saturate(1.1) contrast(1.05);
  transition:
    filter 180ms ease,
    transform 180ms ease;
}

.work-card h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(28px, 3.3vw, 54px);
  font-weight: 950;
  line-height: 1;
}

.work-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 17px;
  font-weight: 850;
  line-height: 1.75;
}

.work-meta {
  display: grid;
  gap: 4px;
  padding-left: 18px;
  color: #fff;
  font-size: 14px;
  font-weight: 950;
  border-left: 3px solid var(--lime);
}

.work-card a {
  position: absolute;
  right: 0;
  bottom: -24px;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  color: var(--ink);
  font-weight: 950;
  background: var(--lime);
  border-radius: 50%;
}

.work-card:hover,
.work-card:focus-within {
  z-index: 4;
  filter: saturate(1.18) contrast(1.04);
}

.work-card:hover img,
.work-card:focus-within img {
  filter: saturate(1.28) contrast(1.08);
  transform: translateZ(28px) scale(1.045) rotate(-1.6deg);
}

.section-heading {
  width: min(100%, 1180px);
  margin: 0 auto 46px;
}

.section-heading p,
.mini-label {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 950;
}

.section-heading h2,
.contact-section h2,
.biography-section h2 {
  margin: 0;
  font-size: clamp(46px, 7vw, 120px);
  font-weight: 950;
  line-height: 0.95;
}

.books-section {
  position: relative;
  padding: 120px 32px 110px;
  background: #fffef5;
}

.materials-marquee {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  width: min(100%, 1180px);
  margin: 0 auto;
}

.materials-marquee a {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --card-rot: 0deg;
  position: relative;
  min-height: 380px;
  overflow: hidden;
  color: #fff;
  background: #111;
  border: 5px solid var(--ink);
  border-radius: 4px;
  transform: perspective(900px) rotateX(var(--tilt-y)) rotateY(var(--tilt-x)) rotate(var(--card-rot));
  transform-style: preserve-3d;
  transition:
    box-shadow 180ms ease,
    filter 180ms ease,
    transform 180ms ease;
  will-change: transform;
}

.materials-marquee a:nth-child(1) {
  --card-rot: -1.2deg;
}

.materials-marquee a:nth-child(2) {
  --card-rot: 1.6deg;
}

.materials-marquee a:nth-child(3) {
  --card-rot: -0.5deg;
}

.materials-marquee img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.82;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.materials-marquee span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 7px 12px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 950;
  background: var(--lime);
}

.materials-marquee a:hover,
.materials-marquee a:focus-visible {
  z-index: 4;
  box-shadow:
    10px 10px 0 var(--pink),
    19px 19px 0 rgba(0, 121, 255, 0.5);
  filter: saturate(1.2);
}

.materials-marquee a:hover img,
.materials-marquee a:focus-visible img {
  opacity: 0.94;
  transform: scale(1.08) rotate(-2deg);
}

.archive-section {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  color: #f1f1f1;
  background:
    radial-gradient(ellipse at 50% -10%, rgba(204, 0, 0, 0.28) 0 18%, transparent 18.5%),
    radial-gradient(circle at 85% 22%, rgba(255, 255, 255, 0.08), transparent 18rem),
    #0f0f0f;
}

.archive-section::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 34px 34px;
}

.archive-stage {
  --archive-zap-color: var(--yellow);
  --archive-wave-start-x: 520px;
  --archive-wave-start-y: -260px;
  --archive-wave-end-x: 0px;
  --archive-wave-end-y: 0px;
  --archive-wave-rot: 44deg;
  --archive-bolt-start-x: 360px;
  --archive-bolt-start-y: -180px;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(340px, 0.76fr);
  gap: 42px;
  align-items: center;
  width: min(100%, 1280px);
  min-height: 100svh;
  padding: 90px 34px 80px;
  margin: 0 auto;
}

.archive-stage::after {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 5;
  width: clamp(120px, 14vw, 210px);
  height: clamp(46px, 6vw, 86px);
  pointer-events: none;
  content: "";
  opacity: 0;
  background: var(--archive-zap-color);
  clip-path: polygon(0 39%, 44% 39%, 32% 0, 100% 55%, 55% 55%, 70% 100%);
  filter:
    drop-shadow(5px 5px 0 var(--ink))
    drop-shadow(0 0 16px rgba(255, 243, 74, 0.72));
  transform:
    translate3d(
      calc(-50% + var(--archive-bolt-start-x)),
      calc(-50% + var(--archive-bolt-start-y)),
      0
    )
    rotate(var(--archive-wave-rot))
    scale(0.58);
}

.archive-stage.is-zapping::after {
  animation: archiveSignalBolt 520ms cubic-bezier(0.12, 0.8, 0.22, 1) both;
}

.archive-title-kana {
  position: absolute;
  top: 88px;
  left: 34px;
  margin: 0;
  color: #f1f1f1;
  font-size: clamp(42px, 8vw, 126px);
  font-weight: 950;
  line-height: 1;
  text-shadow:
    5px 5px 0 #cc0000,
    10px 10px 0 rgba(255, 255, 255, 0.1);
}

.archive-tv {
  position: relative;
  grid-row: 1 / span 3;
  align-self: center;
  display: block;
  padding: 18px 18px 88px;
  margin-top: 150px;
  background:
    linear-gradient(180deg, #212121, #0f0f0f);
  border: 3px solid rgba(255, 255, 255, 0.18);
  border-radius: 28px;
  box-shadow:
    0 0 0 8px rgba(204, 0, 0, 0.22),
    20px 22px 0 rgba(0, 0, 0, 0.28);
  transform: rotate(-1.2deg);
  transform-origin: 50% 58%;
  transition:
    filter 180ms ease,
    box-shadow 180ms ease;
}

.archive-stage.is-zapping .archive-tv {
  animation: archiveTvShake 520ms steps(2, end) both;
  filter: saturate(1.08) contrast(1.04);
  box-shadow:
    0 0 0 8px rgba(204, 0, 0, 0.48),
    0 0 34px rgba(204, 0, 0, 0.48),
    20px 22px 0 rgba(0, 0, 0, 0.28);
}

.archive-waves {
  position: absolute;
  inset: -190px -220px;
  z-index: 4;
  pointer-events: none;
  overflow: hidden;
}

.archive-waves span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 130px;
  aspect-ratio: 1;
  border: 8px solid var(--archive-zap-color);
  border-left-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;
  opacity: 0;
  filter: drop-shadow(4px 4px 0 var(--ink));
  transform:
    translate(
      calc(-50% + var(--archive-wave-start-x)),
      calc(-50% + var(--archive-wave-start-y))
    )
    scale(0.35)
    rotate(var(--archive-wave-rot));
}

.archive-waves span:nth-child(2) {
  width: 190px;
  animation-delay: 80ms;
}

.archive-waves span:nth-child(3) {
  width: 250px;
  animation-delay: 150ms;
}

.archive-stage.is-zapping .archive-waves span {
  animation: archiveWaveIn 640ms cubic-bezier(0.12, 0.8, 0.22, 1) both;
}

.archive-tv::before,
.archive-tv::after {
  position: absolute;
  z-index: 5;
  content: "";
}

.archive-tv::before {
  left: 18px;
  top: 18px;
  width: 138px;
  height: 32px;
  background:
    radial-gradient(circle at 18px 50%, #cc0000 0 8px, transparent 9px),
    linear-gradient(90deg, #fff 0 100%);
  border: 3px solid #0f0f0f;
  border-radius: 999px;
  box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.24);
}

.archive-tv::after {
  right: 18px;
  top: 18px;
  width: 112px;
  height: 32px;
  background:
    linear-gradient(90deg, #cc0000, #ff3b30);
  border: 3px solid #0f0f0f;
  border-radius: 999px;
  box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.24);
}

.archive-screen {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #050505;
  border: 4px solid #0f0f0f;
  border-radius: 22px;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.14),
    0 0 0 1px rgba(255, 255, 255, 0.1);
}

.archive-screen::before {
  position: absolute;
  inset: -10%;
  z-index: 2;
  pointer-events: none;
  content: "";
  opacity: 0;
  background:
    linear-gradient(104deg, transparent 0 36%, rgba(204, 0, 0, 0.72) 36% 40%, rgba(255, 255, 255, 0.72) 40% 46%, transparent 46% 100%),
    radial-gradient(circle at 70% 35%, rgba(255, 255, 255, 0.26), transparent 26%);
  transform: translateX(-118%);
  mix-blend-mode: screen;
}

.archive-screen::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(180deg, transparent 0 66%, rgba(0, 0, 0, 0.58) 100%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 5px);
}

.archive-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    filter 180ms ease,
    transform 180ms ease;
}

.archive-player-chip {
  position: absolute;
  left: 18px;
  top: 18px;
  z-index: 3;
  padding: 7px 10px;
  color: #0f0f0f;
  font-size: 12px;
  font-weight: 950;
  background: #f1f1f1;
  border: 3px solid #0f0f0f;
  border-radius: 999px;
  box-shadow: 5px 5px 0 rgba(204, 0, 0, 0.42);
}

.archive-play-badge {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  width: clamp(76px, 8vw, 132px);
  aspect-ratio: 1.46;
  background: #cc0000;
  border: 6px solid #f1f1f1;
  border-radius: 26px;
  box-shadow:
    8px 8px 0 rgba(0, 0, 0, 0.52),
    0 0 34px rgba(204, 0, 0, 0.44);
  transform: translate(-50%, -50%) rotate(-2deg);
}

.archive-play-badge::after {
  position: absolute;
  left: 52%;
  top: 50%;
  width: 30%;
  height: 42%;
  content: "";
  background: #fff;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  transform: translate(-42%, -50%);
}

.archive-stage.is-zapping .archive-screen::before {
  animation: archiveScreenFlash 520ms ease-out both;
}

.archive-stage.is-zapping .archive-screen img {
  animation: archiveImageJolt 520ms steps(2, end) both;
  filter: saturate(1.28) contrast(1.08);
}

.archive-controls {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 10px 12px;
  background: rgba(15, 15, 15, 0.82);
  border: 2px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  backdrop-filter: blur(12px);
}

.archive-controls span {
  color: #f1f1f1;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.04em;
  writing-mode: horizontal-tb;
  text-shadow: none;
}

.archive-controls::before {
  position: relative;
  display: block;
  width: min(100%, 260px);
  height: 8px;
  content: "";
  background:
    linear-gradient(90deg, #cc0000 0 58%, rgba(255, 255, 255, 0.28) 58% 100%);
  border-radius: 999px;
}

.archive-btn {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  color: #0f0f0f;
  background: #f1f1f1;
  border: 3px solid #0f0f0f;
  border-radius: 50%;
  box-shadow:
    0 4px 0 rgba(0, 0, 0, 0.38);
  cursor: pointer;
  transition:
    background 120ms ease,
    box-shadow 120ms ease,
    color 120ms ease,
    transform 120ms ease;
}

.archive-btn:hover,
.archive-btn:focus-visible,
.archive-btn.is-pressed,
.archive-stage[data-zap-dir="1"].is-zapping .archive-btn[data-dir="1"],
.archive-stage[data-zap-dir="-1"].is-zapping .archive-btn[data-dir="-1"] {
  color: #fff;
  background: #cc0000;
  box-shadow:
    0 1px 0 #580000,
    0 0 18px rgba(204, 0, 0, 0.45);
  transform: translateY(5px) scale(0.94);
}

.archive-btn svg,
.floating-link svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.archive-detail {
  align-self: end;
  display: grid;
  grid-template-rows: 282px 136px;
  align-content: start;
  height: 418px;
  margin-top: 220px;
}

.archive-detail h2 {
  display: flex;
  align-items: center;
  height: 282px;
  margin: 0;
  overflow: visible;
  color: #fff;
  font-size: clamp(42px, 5.4vw, 78px);
  font-weight: 950;
  line-height: 1.08;
  text-wrap: balance;
}

.archive-detail p {
  max-width: 540px;
  height: 118px;
  margin: 18px 0 0;
  overflow: visible;
  color: rgba(255, 255, 255, 0.86);
  font-size: 16px;
  font-weight: 850;
  line-height: 1.65;
}

.archive-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(160px, 1fr));
  grid-column: 1 / -1;
  gap: 12px;
  align-self: end;
}

.archive-strip button {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --card-rot: 0deg;
  min-height: 64px;
  padding: 8px 12px;
  color: #fff;
  font-size: 13px;
  font-weight: 950;
  text-align: left;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(255, 255, 255, 0.22);
  transform: perspective(760px) rotateX(var(--tilt-y)) rotateY(var(--tilt-x)) rotate(var(--card-rot));
  transform-style: preserve-3d;
  transition:
    background 160ms ease,
    border-color 160ms ease,
    transform 160ms ease;
  will-change: transform;
}

.archive-strip button.is-active {
  color: var(--ink);
  background: var(--lime);
  border-color: var(--lime);
  box-shadow:
    inset 0 -7px 0 rgba(32, 32, 32, 0.18),
    0 0 18px rgba(186, 255, 22, 0.36);
}

.archive-strip button:hover,
.archive-strip button:focus-visible {
  color: var(--ink);
  background: var(--yellow);
  border-color: var(--yellow);
}

.archive-stage.is-zapping .archive-strip button.is-active {
  animation: archiveStripPress 420ms ease-out both;
}

@keyframes archiveTvShake {
  0%,
  100% {
    transform: rotate(-2deg) translate3d(0, 0, 0);
  }
  16% {
    transform: rotate(-3.3deg) translate3d(-8px, 3px, 0);
  }
  32% {
    transform: rotate(-0.5deg) translate3d(8px, -4px, 0);
  }
  48% {
    transform: rotate(-3deg) translate3d(-5px, -2px, 0);
  }
  64% {
    transform: rotate(-1deg) translate3d(5px, 3px, 0);
  }
}

.fast-takoyaki-layer {
  position: fixed;
  inset: 0;
  z-index: 37;
  pointer-events: none;
  overflow: hidden;
}

.fast-takoyaki {
  --size: 40px;
  --start-x: -80px;
  --start-y: 50vh;
  --end-x: calc(100vw + 80px);
  --end-y: 50vh;
  --spin: 720deg;
  position: absolute;
  left: 0;
  top: 0;
  width: var(--size);
  aspect-ratio: 1;
  padding: 0;
  pointer-events: auto;
  cursor: pointer;
  background: transparent;
  border: 0;
  filter:
    drop-shadow(3px 4px 0 rgba(32, 32, 32, 0.78))
    drop-shadow(0 0 9px rgba(255, 243, 74, 0.55));
  transform: translate3d(var(--start-x), var(--start-y), 0) rotate(0deg);
  animation: fastTakoyakiFly var(--duration, 1.8s) linear forwards;
  will-change: transform, opacity;
}

.fast-takoyaki::before {
  position: absolute;
  inset: 4%;
  content: "";
  background:
    radial-gradient(circle at 30% 22%, rgba(255, 255, 255, 0.58), transparent 18%),
    radial-gradient(circle at 72% 68%, rgba(105, 40, 18, 0.62) 0 17%, transparent 18%),
    radial-gradient(circle at 36% 62%, rgba(255, 188, 74, 0.92) 0 11%, transparent 12%),
    radial-gradient(circle at 46% 45%, #f6a737 0 56%, #a9441e 78%, #5d2315 100%);
  border: max(3px, calc(var(--size) * 0.08)) solid var(--ink);
  border-radius: 50%;
  box-shadow: inset -5px -6px 0 rgba(92, 36, 22, 0.26);
}

.fast-takoyaki::after {
  position: absolute;
  inset: 19% 14%;
  content: "";
  background:
    radial-gradient(ellipse 50% 14% at 35% 34%, rgba(72, 26, 12, 0.92) 0 52%, transparent 60%),
    radial-gradient(ellipse 48% 13% at 67% 58%, rgba(72, 26, 12, 0.88) 0 52%, transparent 60%),
    linear-gradient(100deg, transparent 0 30%, rgba(255, 244, 194, 0.9) 30% 34%, transparent 34% 54%, rgba(255, 244, 194, 0.88) 54% 58%, transparent 58%);
  border-radius: 50%;
  transform: rotate(-18deg);
  mix-blend-mode: multiply;
}

.fast-takoyaki span {
  position: absolute;
  inset: 18%;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 28%, #2e9a32 0 3%, transparent 4%),
    radial-gradient(circle at 42% 58%, #2e9a32 0 3%, transparent 4%),
    radial-gradient(circle at 68% 36%, #2e9a32 0 3%, transparent 4%),
    radial-gradient(circle at 78% 70%, #2e9a32 0 3%, transparent 4%);
}

.fast-takoyaki:hover,
.fast-takoyaki:focus-visible {
  animation-play-state: paused;
  filter:
    drop-shadow(4px 5px 0 var(--ink))
    drop-shadow(0 0 16px rgba(186, 255, 22, 0.9));
}

.fast-takoyaki:focus-visible {
  outline: 4px solid var(--blue);
  outline-offset: 5px;
  border-radius: 50%;
}

.fast-takoyaki.is-caught {
  pointer-events: none;
  animation: fastTakoyakiCaught 280ms ease-out forwards;
}

@keyframes fastTakoyakiFly {
  0% {
    opacity: 0;
    transform: translate3d(var(--start-x), var(--start-y), 0) rotate(0deg) scale(0.7);
  }
  8%,
  88% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate3d(var(--end-x), var(--end-y), 0) rotate(var(--spin)) scale(1.08);
  }
}

@keyframes fastTakoyakiCaught {
  to {
    opacity: 0;
    transform: translate3d(var(--catch-x, 50vw), var(--catch-y, 50vh), 0) rotate(90deg) scale(2.4);
  }
}

@keyframes archiveWaveIn {
  0% {
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform:
      translate(
        calc(-50% + var(--archive-wave-end-x)),
        calc(-50% + var(--archive-wave-end-y))
      )
      scale(1)
      rotate(var(--archive-wave-rot));
  }
}

@keyframes archiveScreenFlash {
  0% {
    opacity: 0;
    transform: translateX(-118%);
  }
  38% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateX(118%);
  }
}

@keyframes archiveImageJolt {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  28% {
    transform: translate3d(8px, -4px, 0) scale(1.035);
  }
  54% {
    transform: translate3d(-6px, 5px, 0) scale(1.02);
  }
}

@keyframes archiveStripPress {
  0%,
  100% {
    transform: perspective(760px) rotateX(var(--tilt-y)) rotateY(var(--tilt-x)) rotate(var(--card-rot));
  }
  45% {
    transform: perspective(760px) rotateX(var(--tilt-y)) rotateY(var(--tilt-x)) rotate(var(--card-rot))
      translateY(7px) scale(0.98);
  }
}

@keyframes archiveSignalBolt {
  0% {
    opacity: 0;
  }
  18% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform:
      translate3d(
        calc(-50% + var(--archive-wave-end-x)),
        calc(-50% + var(--archive-wave-end-y) - 8px),
        0
      )
      rotate(var(--archive-wave-rot))
      scale(1);
  }
}

.biography-section {
  display: grid;
  grid-template-columns: minmax(280px, 420px) minmax(0, 1fr);
  gap: 54px;
  align-items: center;
  width: min(100%, 1180px);
  min-height: 100svh;
  padding: 110px 32px;
  margin: 0 auto;
}

.bio-coin {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --card-rot: -1deg;
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 1;
  padding: 0;
  color: inherit;
  cursor: pointer;
  background: transparent;
  border: 0;
  border-radius: 50%;
  transform: perspective(900px) rotateX(var(--tilt-y)) rotateY(var(--tilt-x)) rotate(var(--card-rot));
  transform-style: preserve-3d;
  transition:
    filter 180ms ease,
    transform 180ms ease;
  will-change: transform;
}

.bio-coin:hover,
.bio-coin:focus-visible {
  filter: saturate(1.22) contrast(1.08);
}

.bio-coin:focus-visible {
  outline: 5px solid var(--blue);
  outline-offset: 10px;
}

.bio-coin-inner {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 780ms cubic-bezier(0.17, 0.84, 0.24, 1.08);
}

.bio-coin.is-flipped .bio-coin-inner {
  transform: rotateY(180deg);
}

.bio-coin-face {
  position: absolute;
  inset: 0;
  display: block;
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.88), transparent 22%),
    var(--lime);
  border: 7px solid var(--ink);
  border-radius: 50%;
  box-shadow:
    inset 0 0 0 10px rgba(255, 255, 255, 0.72),
    inset -18px -20px 0 rgba(32, 32, 32, 0.16),
    12px 12px 0 var(--lime),
    24px 24px 0 var(--blue);
  backface-visibility: hidden;
}

.bio-coin-face::before,
.bio-coin-face::after {
  position: absolute;
  z-index: 2;
  pointer-events: none;
  content: "";
  border-radius: 50%;
}

.bio-coin-face::before {
  inset: 12px;
  border: 4px dashed rgba(32, 32, 32, 0.52);
  mix-blend-mode: multiply;
}

.bio-coin-face::after {
  inset: 0;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.54) 0 12%, transparent 26% 100%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.11) 0 1px, transparent 1px 5px);
  mix-blend-mode: screen;
}

.bio-coin-face.is-back {
  background:
    radial-gradient(circle at 70% 24%, rgba(255, 255, 255, 0.8), transparent 22%),
    var(--yellow);
  box-shadow:
    inset 0 0 0 10px rgba(255, 255, 255, 0.7),
    inset -18px -20px 0 rgba(32, 32, 32, 0.16),
    12px 12px 0 var(--pink),
    24px 24px 0 var(--cyan);
  transform: rotateY(180deg);
}

.bio-coin-face img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.1) contrast(1.04);
}

.bio-coin-face.is-back img {
  object-position: center;
  filter: saturate(1.18) contrast(1.06);
}

.bio-coin:hover .bio-coin-inner {
  transform: rotateY(12deg);
}

.bio-coin.is-flipped:hover .bio-coin-inner {
  transform: rotateY(168deg);
}

.biography-copy {
  min-width: 0;
}

.biography-section .bio-lead {
  margin: 0 0 26px;
}

.biography-section p:not(.mini-label) {
  color: var(--muted);
  font-size: clamp(18px, 2vw, 28px);
  font-weight: 850;
  line-height: 1.8;
}

.bio-timeline {
  position: relative;
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 30px 0 0;
  list-style: none;
}

.bio-timeline::before {
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: clamp(102px, 12vw, 148px);
  width: 4px;
  content: "";
  background: repeating-linear-gradient(0deg, #cc0000 0 16px, transparent 16px 28px);
  opacity: 0.55;
}

.bio-timeline li {
  position: relative;
  display: grid;
  grid-template-columns: clamp(96px, 12vw, 138px) minmax(0, 1fr);
  gap: clamp(20px, 2.8vw, 36px);
  align-items: start;
  padding: 14px 16px;
  background:
    linear-gradient(90deg, rgba(204, 0, 0, 0.08), transparent 56%),
    rgba(255, 255, 255, 0.86);
  border: 3px solid rgba(18, 18, 18, 0.86);
  box-shadow: 7px 7px 0 rgba(18, 18, 18, 0.08);
}

.bio-timeline li:nth-child(even) {
  transform: rotate(0.45deg);
}

.bio-timeline li:nth-child(odd) {
  transform: rotate(-0.35deg);
}

.bio-timeline time {
  position: relative;
  z-index: 1;
  color: #cc0000;
  font-family: Impact, "Arial Black", sans-serif;
  font-size: clamp(18px, 2.4vw, 32px);
  font-weight: 950;
  line-height: 1;
}

.bio-timeline time::after {
  position: absolute;
  top: 50%;
  right: -25px;
  width: 14px;
  height: 14px;
  content: "";
  background: #cc0000;
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 3px #121212;
  transform: translateY(-50%);
}

.bio-timeline span {
  color: #202020;
  font-size: clamp(14px, 1.25vw, 17px);
  font-weight: 850;
  line-height: 1.75;
}

.youtube-section {
  position: relative;
  padding: 126px 32px 145px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 79, 166, 0.18) 0 18%, transparent 18% 100%),
    radial-gradient(circle at 86% 14%, rgba(0, 121, 255, 0.28), transparent 19rem),
    var(--lime);
}

.youtube-section::before,
.youtube-section::after {
  position: absolute;
  pointer-events: none;
  content: "";
}

.youtube-section::before {
  inset: 0;
  opacity: 0.32;
  background-image:
    repeating-linear-gradient(90deg, transparent 0 30px, rgba(32, 32, 32, 0.16) 30px 34px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.26) 0 1px, transparent 1px 6px);
  mix-blend-mode: multiply;
}

.youtube-section::after {
  right: -70px;
  bottom: 42px;
  width: 240px;
  aspect-ratio: 1;
  background: var(--red);
  border: 7px solid var(--ink);
  clip-path: polygon(50% 0, 60% 30%, 92% 16%, 74% 45%, 100% 62%, 66% 65%, 77% 100%, 51% 76%, 22% 100%, 33% 65%, 0 62%, 26% 44%, 8% 16%, 40% 30%);
  transform: rotate(14deg);
}

.youtube-section .section-heading {
  position: relative;
  z-index: 2;
}

.youtube-chaos-head {
  position: absolute;
  top: 88px;
  right: clamp(18px, 5vw, 86px);
  z-index: 3;
  display: grid;
  gap: 8px;
  transform: rotate(8deg);
}

.youtube-chaos-head span {
  display: block;
  width: max-content;
  padding: 6px 12px;
  color: #fff;
  font-size: clamp(13px, 1.5vw, 20px);
  font-weight: 950;
  background: var(--ink);
  border: 3px solid #fff;
  box-shadow: 5px 5px 0 var(--blue);
}

.youtube-chaos-head span:nth-child(2) {
  margin-left: 34px;
  color: var(--ink);
  background: var(--yellow);
  box-shadow: 5px 5px 0 var(--pink);
}

.youtube-chaos-head span:nth-child(3) {
  margin-left: 10px;
  background: var(--red);
  box-shadow: 5px 5px 0 var(--cyan);
}

.youtube-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  width: min(100%, 1240px);
  margin: 0 auto;
}

.youtube-card {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --card-rot: 0deg;
  position: relative;
  min-height: 302px;
  overflow: hidden;
  color: #fff;
  background: #111;
  border: 5px solid var(--ink);
  border-radius: 4px;
  box-shadow:
    8px 8px 0 rgba(32, 32, 32, 0.16),
    inset 0 0 0 2px rgba(255, 255, 255, 0.08);
  transform: perspective(900px) rotateX(var(--tilt-y)) rotateY(var(--tilt-x)) rotate(var(--card-rot));
  transform-style: preserve-3d;
  transition:
    box-shadow 180ms ease,
    filter 180ms ease,
    transform 180ms ease;
  will-change: transform;
}

.youtube-card:nth-child(1) {
  --card-rot: -1.3deg;
  grid-column: span 2;
  grid-row: span 2;
  min-height: 622px;
}

.youtube-card:nth-child(2) {
  --card-rot: 1.4deg;
}

.youtube-card:nth-child(3) {
  --card-rot: -1deg;
}

.youtube-card:nth-child(4) {
  --card-rot: 1.8deg;
}

.youtube-card:nth-child(5) {
  --card-rot: -1.8deg;
}

.youtube-card:nth-child(6) {
  --card-rot: 0.9deg;
}

.youtube-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.88;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.youtube-card::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.04) 0 34%, rgba(0, 0, 0, 0.74) 78% 100%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.16) 0 1px, transparent 1px 4px);
}

.youtube-card::after {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 46px;
  height: 46px;
  content: "";
  background: var(--red);
  clip-path: polygon(28% 18%, 78% 50%, 28% 82%);
  filter: drop-shadow(3px 3px 0 var(--ink));
}

.youtube-card small,
.youtube-card strong,
.youtube-card span {
  position: absolute;
  z-index: 2;
}

.youtube-card small {
  top: 14px;
  left: 14px;
  padding: 6px 9px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 950;
  background: var(--yellow);
  border: 3px solid var(--ink);
  transform: rotate(-4deg);
}

.youtube-card strong {
  left: 16px;
  right: 16px;
  bottom: 58px;
  display: -webkit-box;
  overflow: hidden;
  color: #fff;
  font-size: clamp(19px, 2vw, 34px);
  font-weight: 950;
  line-height: 1.1;
  text-shadow:
    3px 3px 0 var(--blue),
    -2px 2px 0 var(--red);
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.youtube-card span {
  left: 18px;
  bottom: 18px;
  padding: 8px 14px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 950;
  background: var(--lime);
  border: 3px solid var(--ink);
}

.youtube-card:hover,
.youtube-card:focus-visible {
  z-index: 6;
  box-shadow:
    10px 10px 0 var(--pink),
    20px 20px 0 rgba(0, 121, 255, 0.5);
  filter: saturate(1.15) contrast(1.04);
}

.youtube-card:hover img,
.youtube-card:focus-visible img {
  opacity: 0.96;
  transform: scale(1.08) rotate(-1.8deg);
}

.news-section {
  width: min(100%, 980px);
  padding: 110px 32px;
  margin: 0 auto;
}

.news-row {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 20px;
  padding: 26px 0;
  border-bottom: 2px solid var(--ink);
}

.news-row time,
.news-row a {
  font-size: 17px;
  font-weight: 950;
}

.contact-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 520px);
  gap: 48px;
  align-items: center;
  min-height: 100svh;
  padding: 130px 48px 190px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 18% 18%, rgba(186, 255, 22, 0.18), transparent 18rem),
    radial-gradient(circle at 86% 78%, rgba(0, 121, 255, 0.24), transparent 18rem),
    #121212;
}

.contact-section::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.18;
  background-image: radial-gradient(circle, #fff 1px, transparent 1.3px);
  background-size: 13px 13px;
}

.contact-section::after {
  position: absolute;
  right: -6vw;
  bottom: -8vw;
  width: min(42vw, 540px);
  aspect-ratio: 1;
  content: "";
  background: var(--lime);
  border-radius: 50%;
  filter: blur(1px);
  opacity: 0.9;
}

.contact-copy,
.request-form {
  position: relative;
  z-index: 3;
}

.contact-section .mini-label {
  color: var(--lime);
}

.contact-section p:not(.mini-label) {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.75;
}

.request-form {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --card-rot: 1deg;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 20px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  border: 5px solid var(--ink);
  border-radius: 8px;
  box-shadow:
    10px 10px 0 var(--lime),
    20px 20px 0 rgba(0, 121, 255, 0.45);
  transform: perspective(1000px) rotateX(var(--tilt-y)) rotateY(var(--tilt-x)) rotate(var(--card-rot));
  transform-style: preserve-3d;
  transition:
    box-shadow 180ms ease,
    transform 180ms ease;
  will-change: transform;
}

.request-form:hover,
.request-form:focus-within {
  box-shadow:
    12px 12px 0 var(--yellow),
    24px 24px 0 rgba(255, 79, 166, 0.52);
}

.request-form label {
  display: grid;
  gap: 7px;
}

.request-form label.is-wide,
.request-form .button-primary,
.request-form .button-secondary {
  grid-column: 1 / -1;
}

.request-form span {
  font-size: 12px;
  font-weight: 950;
}

.request-form input,
.request-form select,
.request-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: var(--ink);
  font: inherit;
  font-size: 15px;
  font-weight: 850;
  background: #fffef9;
  border: 3px solid var(--ink);
  border-radius: 0;
}

.request-form textarea {
  min-height: 112px;
  resize: vertical;
}

.contact-form-status {
  grid-column: 1 / -1;
  min-height: 34px;
  margin: -2px 0 0;
  padding: 8px 12px;
  color: #121212;
  font-size: 13px;
  font-weight: 950;
  line-height: 1.45;
  background: rgba(204, 0, 0, 0.1);
  border: 2px dashed rgba(18, 18, 18, 0.35);
}

.request-form.is-sent {
  box-shadow:
    12px 12px 0 #cc0000,
    24px 24px 0 rgba(255, 255, 255, 0.5);
}

.request-form .button-secondary {
  color: var(--ink);
  background: #fff;
  border-color: var(--ink);
}

.contact-people-stage {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.contact-person {
  --contact-shift: 0px;
  --contact-rot: 0deg;
  position: absolute;
  width: clamp(130px, 16vw, 230px);
  margin: 0;
  transform: translate3d(0, var(--contact-shift), 0) rotate(var(--contact-rot));
  transition: transform 180ms linear;
}

.contact-person img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: #fff;
  border: 5px solid #fff;
  box-shadow:
    8px 8px 0 var(--blue),
    14px 14px 0 var(--pink);
  animation: contactBob 3.8s ease-in-out infinite;
}

.contact-person figcaption {
  position: absolute;
  left: 50%;
  bottom: -12px;
  padding: 6px 12px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 950;
  white-space: nowrap;
  background: var(--lime);
  border: 3px solid var(--ink);
  transform: translateX(-50%) rotate(-3deg);
}

.contact-person.is-main {
  right: 36%;
  bottom: 8%;
  width: clamp(150px, 18vw, 260px);
  opacity: 0.92;
}

.contact-person.is-side {
  right: 4%;
  top: 18%;
  width: clamp(120px, 14vw, 200px);
  opacity: 0.8;
}

.contact-person.is-side img {
  animation-delay: -1.4s;
  box-shadow:
    8px 8px 0 var(--lime),
    14px 14px 0 var(--red);
}

.contact-person.is-bubble {
  left: 40%;
  top: 10%;
  width: clamp(100px, 12vw, 180px);
  opacity: 0.72;
}

.contact-person.is-bubble img {
  aspect-ratio: 1;
  border-radius: 50%;
  animation-delay: -2.1s;
  box-shadow:
    7px 7px 0 var(--cyan),
    13px 13px 0 var(--lime);
}

.contact-prop {
  --contact-shift: 0px;
  --contact-rot: 0deg;
  position: absolute;
  display: grid;
  place-items: center;
  color: var(--ink);
  font-size: 22px;
  font-weight: 950;
  transform: translate3d(0, var(--contact-shift), 0) rotate(var(--contact-rot));
  transition: transform 180ms linear;
  animation: contactFloat 4.6s ease-in-out infinite;
}

.contact-prop.is-mic {
  left: 7%;
  bottom: 13%;
  width: 58px;
  height: 160px;
  background: var(--red);
  border: 5px solid var(--ink);
  border-radius: 999px 999px 18px 18px;
  transform-origin: bottom center;
}

.contact-prop.is-mic::before {
  width: 84px;
  height: 84px;
  content: "";
  background: #050505;
  border: 5px solid var(--ink);
  border-radius: 50%;
  box-shadow: inset 0 0 0 16px var(--lime);
}

.contact-prop.is-mail {
  right: 46%;
  top: 23%;
  width: 98px;
  height: 68px;
  background: var(--yellow);
  border: 5px solid var(--ink);
  box-shadow: 9px 9px 0 var(--blue);
  animation-delay: -1.8s;
}

.contact-prop.is-mail::before,
.contact-prop.is-mail::after {
  position: absolute;
  inset: 12px;
  content: "";
  border-top: 5px solid var(--ink);
  transform: skewY(-28deg);
}

.contact-prop.is-mail::after {
  transform: skewY(28deg);
}

.contact-prop.is-burst {
  left: 26%;
  top: 20%;
  width: 132px;
  height: 112px;
  background: var(--red);
  clip-path: polygon(50% 0, 61% 28%, 93% 13%, 77% 43%, 100% 59%, 70% 64%, 82% 96%, 53% 75%, 27% 100%, 32% 66%, 0 60%, 24% 43%, 7% 12%, 39% 28%);
  animation-delay: -0.8s;
}

@keyframes contactBob {
  0%,
  100% {
    transform: translateY(0) rotate(-1deg);
  }
  50% {
    transform: translateY(-16px) rotate(2deg);
  }
}

@keyframes contactFloat {
  0%,
  100% {
    margin-top: 0;
  }
  50% {
    margin-top: -18px;
  }
}

.button-primary,
.button-secondary {
  display: inline-grid;
  place-items: center;
  min-height: 54px;
  padding: 0 24px;
  font-size: 15px;
  font-weight: 950;
  border: 3px solid #fff;
  border-radius: 999px;
}

.button-primary {
  color: var(--ink);
  background: var(--lime);
}

.button-secondary {
  color: #fff;
  background: transparent;
}

.floating-link {
  position: fixed;
  right: 34px;
  bottom: 26px;
  z-index: 41;
}

.floating-link a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 390px;
  min-height: 70px;
  padding: 10px 16px;
  color: var(--lime);
  overflow: hidden;
  background: #151515;
  border: 4px solid #fff;
  border-radius: 14px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
}

.floating-link a::before {
  position: absolute;
  top: -30px;
  right: -14px;
  padding: 8px 22px;
  color: var(--ink);
  font-size: 20px;
  font-weight: 950;
  content: "YouTube";
  background: var(--lime);
  border-radius: 999px;
  transform: rotate(10deg);
}

.chain-icon,
.arrow-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.chain-icon {
  width: 52px;
  height: 52px;
  color: var(--blue);
  background: #fff;
  border-radius: 12px;
}

.link-copy {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  font-family: "Courier New", monospace;
  font-size: 19px;
  font-weight: 950;
  white-space: nowrap;
}

.arrow-icon {
  width: 42px;
  height: 42px;
  color: var(--ink);
  background: var(--lime);
  border-radius: 50%;
}

.layout-jump {
  position: fixed;
  left: 26px;
  bottom: 26px;
  z-index: 42;
  display: grid;
  gap: 8px;
}

.layout-jump a {
  display: grid;
  gap: 2px;
  min-width: 138px;
  padding: 12px 14px 11px;
  color: #f8fff2;
  background:
    linear-gradient(135deg, rgba(4, 36, 41, 0.94), rgba(32, 32, 32, 0.96)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.12) 0 1px, transparent 1px 5px);
  border: 3px solid #f8fff2;
  border-radius: 8px;
  box-shadow:
    7px 7px 0 rgba(32, 32, 32, 0.34),
    inset 0 -4px 0 rgba(90, 212, 190, 0.22);
  transform: rotate(-3deg);
  transition:
    box-shadow 160ms ease,
    transform 160ms ease;
}

.layout-jump a:nth-child(even) {
  transform: rotate(2deg);
}

.layout-jump a:hover,
.layout-jump a:focus-visible {
  box-shadow:
    4px 4px 0 rgba(32, 32, 32, 0.28),
    0 0 18px rgba(90, 212, 190, 0.64);
  transform: translateY(3px) rotate(-1deg);
}

.layout-jump a:nth-child(even):hover,
.layout-jump a:nth-child(even):focus-visible {
  transform: translateY(3px) rotate(1deg);
}

.layout-jump span {
  color: #5ad4be;
  font-size: 11px;
  font-weight: 950;
}

.layout-jump strong {
  font-size: 16px;
  font-weight: 950;
  line-height: 1;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 28px 24px 86px;
  color: #fff;
  font-size: 13px;
  font-weight: 850;
  background: #121212;
}

@media (max-width: 980px) {
  .site-header {
    top: 14px;
    left: 16px;
    right: 16px;
  }

  .brand-mark {
    width: 126px;
    height: 84px;
  }

  .brand-main {
    font-size: 24px;
  }

  .brand-sub {
    margin-top: -18px;
  }

  .header-links {
    position: fixed;
    top: 94px;
    right: 14px;
    display: none;
    grid-template-columns: 1fr;
    width: min(230px, calc(100vw - 28px));
    border-radius: 18px;
  }

  .header-links.is-open {
    display: grid;
  }

  .header-links a {
    justify-content: flex-start;
    width: 100%;
  }

  .menu-button {
    display: block;
  }

  .corner-badge {
    display: flex;
  }

  .hero-raster {
    inset: -5% -80%;
  }

  .tv-wall {
    inset: -12% -82%;
  }

  .tv-card {
    width: clamp(250px, 70vw, 380px);
  }

  .signal-person {
    width: 70vw;
    opacity: 0.2;
  }

  .signal-gallery {
    inset: -4% -24%;
  }

  .signal-strip {
    width: clamp(112px, 34vw, 180px);
    height: clamp(330px, 58vh, 540px);
    border-width: 4px;
  }

  .signal-strip.is-a {
    left: 4%;
    top: 16%;
  }

  .signal-strip.is-b {
    left: 35%;
    bottom: 8%;
  }

  .signal-strip.is-c {
    left: auto;
    right: 12%;
    top: 8%;
  }

  .signal-strip.is-d,
  .signal-strip.is-f {
    display: none;
  }

  .signal-strip.is-e {
    right: -4%;
    bottom: 7%;
    top: auto;
  }

  .signal-copy p {
    text-align: left;
  }

  .signal-copy span {
    display: table;
    margin-bottom: 10px;
  }

  .takoyaki-section {
    min-height: 106svh;
    padding: 116px 18px 110px;
  }

  .takoyaki-copy {
    top: 58px;
    left: 16px;
  }

  .takoyaki-stage {
    width: min(100%, 620px);
    aspect-ratio: 0.92;
  }

  .takoyaki-orb {
    width: min(84vw, 430px);
  }

  .takoyaki-person {
    width: 66%;
  }

  .policy-section {
    padding: 210px 20px 90px;
  }

  .policy-section::before {
    height: 32vh;
  }

  .works-section {
    padding: 220px 20px 90px;
  }

  .works-grid,
  .materials-marquee,
  .youtube-grid,
  .biography-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .contact-section {
    padding: 110px 20px 180px;
  }

  .request-form {
    width: min(100%, 520px);
  }

  .contact-person.is-main {
    right: -6%;
    bottom: 2%;
    opacity: 0.45;
  }

  .contact-person.is-side {
    top: 9%;
    right: 12%;
    opacity: 0.55;
  }

  .contact-person.is-bubble {
    top: 7%;
    left: 5%;
    opacity: 0.48;
  }

  .contact-prop.is-burst {
    left: auto;
    right: 12%;
    top: 30%;
  }

  .contact-prop.is-mail {
    top: 36%;
    right: 4%;
    opacity: 0.56;
  }

  .works-grid {
    gap: 56px;
  }

  .archive-stage {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 84px 20px 86px;
  }

  .archive-title-kana {
    position: relative;
    top: auto;
    left: auto;
  }

  .archive-tv {
    grid-row: auto;
    margin-top: 20px;
    padding: 14px 14px 82px;
    border-width: 3px;
    border-radius: 22px;
  }

  .archive-controls {
    left: 14px;
    right: 14px;
    bottom: 14px;
    grid-template-columns: auto 1fr auto auto;
    min-height: 48px;
    padding: 8px 10px;
  }

  .archive-controls span {
    font-size: 10px;
  }

  .archive-btn {
    width: 38px;
    height: 38px;
  }

  .archive-detail {
    grid-template-rows: 164px 128px;
    height: 292px;
    margin-top: 34px;
  }

  .archive-detail h2 {
    height: 164px;
    font-size: clamp(34px, 11vw, 44px);
    line-height: 1.08;
  }

  .archive-detail p {
    height: 110px;
    font-size: 15px;
    line-height: 1.62;
  }

  .archive-strip {
    grid-template-columns: 1fr;
  }

  .youtube-section {
    padding: 110px 20px 110px;
  }

  .youtube-chaos-head {
    top: 64px;
    right: 18px;
    transform: rotate(5deg) scale(0.86);
    transform-origin: top right;
  }

  .youtube-card,
  .youtube-card:nth-child(1) {
    grid-column: auto;
    grid-row: auto;
    min-height: 328px;
  }

  .floating-link {
    right: 14px;
    bottom: 14px;
    left: 14px;
  }

  .floating-link a {
    min-width: 0;
    min-height: 62px;
  }

  .floating-link a::before {
    top: -18px;
    right: 10px;
    font-size: 14px;
  }

  .layout-jump {
    left: 14px;
    bottom: 88px;
  }

  .layout-jump a {
    min-width: 118px;
    padding: 10px 12px;
  }

  .layout-jump strong {
    font-size: 14px;
  }

  .chain-icon {
    width: 44px;
    height: 44px;
  }

  .news-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

@media (max-width: 520px) {
  .section-label {
    font-size: 44px;
  }

  .policy-text {
    font-size: 24px;
  }

  .materials-marquee a,
  .youtube-grid a {
    min-height: 280px;
  }

  .takoyaki-stage {
    aspect-ratio: 0.82;
  }

  .takoyaki-copy strong {
    font-size: 42px;
  }

  .youtube-card strong {
    bottom: 56px;
    font-size: 19px;
  }

  .request-form {
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .button-primary,
  .button-secondary {
    width: 100%;
  }
}

/* Device creative refresh for the base page. */
.hero-section {
  color: #121212;
  background:
    linear-gradient(115deg, rgba(204, 0, 0, 0.08), transparent 42%),
    #f8f8f8;
}

.hero-raster {
  inset: 0;
  background:
    radial-gradient(circle at 14% 20%, rgba(204, 0, 0, 0.18), transparent 23%),
    radial-gradient(circle at 84% 68%, rgba(18, 18, 18, 0.14), transparent 28%),
    linear-gradient(90deg, rgba(18, 18, 18, 0.05) 1px, transparent 1px),
    linear-gradient(0deg, rgba(18, 18, 18, 0.05) 1px, transparent 1px),
    #f8f8f8;
  background-size: auto, auto, 72px 72px, 72px 72px, auto;
  opacity: 1;
  transform: none;
}

.hero-section::before {
  z-index: 2;
  background:
    radial-gradient(circle at 50% 42%, transparent 0 48%, rgba(248, 248, 248, 0.42) 78%),
    repeating-linear-gradient(0deg, rgba(18, 18, 18, 0.035) 0 1px, transparent 1px 5px);
  mix-blend-mode: normal;
}

.hero-device-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-device-bg::before,
.hero-device-bg::after {
  position: absolute;
  content: "";
  border: 2px solid rgba(18, 18, 18, 0.13);
  box-shadow:
    inset 0 0 0 12px rgba(255, 255, 255, 0.56),
    0 36px 90px rgba(18, 18, 18, 0.12);
}

.hero-device-bg::before {
  left: 7%;
  top: 11%;
  width: min(48vw, 680px);
  aspect-ratio: 1.42;
  border-radius: 46px;
  transform: rotate(-9deg);
}

.hero-device-bg::after {
  right: 9%;
  bottom: 8%;
  width: min(23vw, 310px);
  aspect-ratio: 9 / 19;
  border-radius: 52px;
  transform: rotate(12deg);
}

.hero-device-chip,
.hero-device-line {
  position: absolute;
  z-index: 1;
  display: block;
}

.hero-device-chip {
  padding: 9px 14px;
  color: #f8f8f8;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  background: #cc0000;
  border: 2px solid #121212;
  border-radius: 999px;
  box-shadow: 7px 7px 0 rgba(18, 18, 18, 0.12);
}

.hero-device-chip.is-live {
  left: 15%;
  top: 17%;
  transform: rotate(-8deg);
}

.hero-device-chip.is-short {
  right: 14%;
  top: 24%;
  color: #121212;
  background: #fff;
  transform: rotate(7deg);
}

.hero-device-chip.is-studio {
  left: 47%;
  bottom: 12%;
  color: #f8f8f8;
  background: #121212;
  transform: rotate(-3deg);
}

.hero-device-line {
  height: 4px;
  background: repeating-linear-gradient(90deg, #cc0000 0 16px, transparent 16px 28px);
  opacity: 0.68;
}

.hero-device-line.is-a {
  left: 12%;
  right: 31%;
  top: 31%;
  transform: rotate(-7deg);
}

.hero-device-line.is-b {
  left: 44%;
  right: 11%;
  bottom: 29%;
  background: repeating-linear-gradient(90deg, #121212 0 10px, transparent 10px 21px);
  transform: rotate(12deg);
}

.hero-persona-stage {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(320px, 520px);
  gap: clamp(28px, 5vw, 82px);
  align-items: center;
  width: min(100%, 1220px);
  min-height: 100svh;
  padding: 136px 32px 112px;
  margin: 0 auto;
  pointer-events: none;
}

.hero-persona-copy,
.hero-persona-card {
  pointer-events: auto;
}

.hero-kicker {
  display: inline-grid;
  place-items: center;
  min-height: 38px;
  padding: 0 16px;
  margin: 0 0 18px;
  color: #fff;
  font-size: 12px;
  font-weight: 950;
  background: #cc0000;
  border: 3px solid #121212;
  border-radius: 999px;
  box-shadow: 7px 7px 0 rgba(18, 18, 18, 0.14);
  transform: rotate(-2deg);
}

.hero-persona-copy h1 {
  max-width: 11.5em;
  margin: 0;
  color: #121212;
  font-size: clamp(44px, 5.9vw, 82px);
  font-weight: 950;
  line-height: 0.96;
  text-wrap: balance;
  text-shadow:
    3px 3px 0 #fff,
    8px 8px 0 rgba(204, 0, 0, 0.24);
}

.hero-persona-copy > p:not(.hero-kicker) {
  max-width: 42em;
  margin: 22px 0 0;
  color: #303030;
  font-size: clamp(15px, 1.45vw, 20px);
  font-weight: 850;
  line-height: 1.75;
}

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

.hero-persona-actions a {
  display: inline-grid;
  place-items: center;
  min-height: 50px;
  padding: 0 20px;
  color: #fff;
  font-size: 14px;
  font-weight: 950;
  background: #121212;
  border: 3px solid #121212;
  border-radius: 999px;
  box-shadow: 6px 6px 0 rgba(204, 0, 0, 0.42);
  transition:
    transform 160ms ease,
    box-shadow 160ms ease;
}

.hero-persona-actions a + a {
  color: #121212;
  background: #fff;
}

.hero-persona-actions a:hover,
.hero-persona-actions a:focus-visible {
  transform: translateY(-3px) rotate(-1deg);
  box-shadow: 8px 9px 0 rgba(204, 0, 0, 0.5);
  outline: none;
}

.hero-persona-card {
  position: relative;
  width: min(100%, 520px);
  justify-self: end;
  margin: 0;
  padding: clamp(14px, 2vw, 22px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.48)),
    #fff;
  border: 5px solid #121212;
  border-radius: 28px;
  box-shadow:
    0 0 0 8px rgba(255, 255, 255, 0.86),
    18px 20px 0 rgba(204, 0, 0, 0.7),
    34px 36px 0 rgba(18, 18, 18, 0.18);
  transform: rotate(2.4deg);
  isolation: isolate;
}

.hero-persona-card::before,
.hero-persona-card::after {
  position: absolute;
  pointer-events: none;
  content: "";
}

.hero-persona-card::before {
  inset: 14px;
  z-index: 2;
  border: 2px solid rgba(204, 0, 0, 0.48);
  border-radius: 18px;
  background:
    linear-gradient(90deg, transparent 0 43%, rgba(204, 0, 0, 0.18) 43% 45%, transparent 45% 100%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.13) 0 1px, transparent 1px 5px);
  mix-blend-mode: screen;
}

.hero-persona-card::after {
  inset: -18px;
  z-index: -1;
  border: 3px dashed rgba(204, 0, 0, 0.45);
  border-radius: 36px;
  animation: heroSignalOrbit 12s linear infinite;
}

.hero-persona-card img {
  width: 100%;
  aspect-ratio: 4 / 5.05;
  object-fit: cover;
  object-position: center top;
  border: 3px solid #121212;
  border-radius: 16px;
  filter: saturate(1.08) contrast(1.04);
}

.hero-persona-card figcaption {
  position: absolute;
  left: 24px;
  bottom: 18px;
  z-index: 3;
  display: inline-grid;
  place-items: center;
  min-height: 48px;
  padding: 0 18px;
  color: #fff;
  font-size: clamp(24px, 4vw, 44px);
  font-weight: 950;
  line-height: 1;
  background: #cc0000;
  border: 3px solid #121212;
  box-shadow: 7px 7px 0 #fff;
  transform: rotate(-4deg);
}

.hero-persona-tag {
  position: absolute;
  z-index: 4;
  display: inline-grid;
  place-items: center;
  min-height: 36px;
  padding: 0 12px;
  color: #121212;
  font-size: 11px;
  font-weight: 950;
  background: #fff;
  border: 3px solid #121212;
  border-radius: 999px;
  box-shadow: 5px 5px 0 rgba(18, 18, 18, 0.18);
}

.hero-persona-tag.is-a {
  top: 34px;
  left: -24px;
  color: #fff;
  background: #121212;
  transform: rotate(-9deg);
}

.hero-persona-tag.is-b {
  top: 18%;
  right: -26px;
  color: #fff;
  background: #cc0000;
  transform: rotate(8deg);
}

.hero-persona-ring {
  position: absolute;
  inset: 8% 4% auto auto;
  z-index: -1;
  width: 46%;
  aspect-ratio: 1;
  border: 18px solid rgba(62, 166, 255, 0.3);
  border-left-color: rgba(204, 0, 0, 0.52);
  border-radius: 50%;
  filter: blur(0.2px);
  animation: heroSignalOrbit 9s linear infinite reverse;
}

@keyframes heroSignalOrbit {
  to {
    transform: rotate(360deg);
  }
}

.tv-card {
  width: clamp(300px, 28vw, 520px);
  aspect-ratio: 1.5;
  padding: clamp(12px, 1.1vw, 18px);
  background:
    linear-gradient(145deg, #2a2a2a, #070707 58%),
    #121212;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 36px;
  box-shadow:
    0 0 0 5px rgba(255, 255, 255, 0.9),
    0 18px 54px rgba(18, 18, 18, 0.22),
    12px 14px 0 rgba(204, 0, 0, 0.16);
}

.tv-card.is-tablet-device {
  width: clamp(330px, 30vw, 560px);
  aspect-ratio: 1.5;
  border-radius: 38px;
}

.tv-card.is-phone-device {
  width: clamp(178px, 15.5vw, 270px);
  aspect-ratio: 9 / 19.2;
  border-radius: 42px;
  padding: clamp(10px, 0.85vw, 14px);
}

.tv-card::before,
.tv-card::after {
  background: none;
  border: 0;
  box-shadow: none;
}

.tv-card::before {
  left: 50%;
  top: 11px;
  width: 10px;
  height: 10px;
  background: #050505;
  border: 2px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  transform: translateX(-50%);
}

.tv-card.is-phone-device::before {
  top: 13px;
  width: 58px;
  height: 15px;
  background: #050505;
  border-radius: 999px;
}

.tv-card::after {
  inset: 9px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: inherit;
}

.tv-screen {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 26px;
  background: #0f0f0f;
}

.tv-card.is-phone-device .tv-screen {
  border-radius: 31px;
}

.tv-screen::after {
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.2), transparent 24%),
    linear-gradient(0deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 5px);
  mix-blend-mode: screen;
}

.tv-screen img {
  filter: saturate(0.98) contrast(1.04) brightness(0.92);
  transform: scale(1.03);
}

.tv-card.is-phone-device .tv-screen img {
  object-position: center;
}

.tube-play-badge {
  width: clamp(54px, 5vw, 90px);
  background: #cc0000;
  border: 3px solid rgba(255, 255, 255, 0.92);
  border-radius: 18px;
  box-shadow:
    0 10px 25px rgba(0, 0, 0, 0.38),
    0 0 0 7px rgba(204, 0, 0, 0.15);
}

.tv-card.is-phone-device .tube-play-badge {
  width: 58px;
  border-radius: 15px;
}

.tube-channel {
  left: 18px;
  top: 18px;
  color: #f8f8f8;
  background: rgba(18, 18, 18, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.58);
  box-shadow: none;
}

.tv-card.is-phone-device .tube-channel {
  left: 14px;
  top: 42px;
  max-width: calc(100% - 28px);
  font-size: 9px;
}

.tv-caption {
  left: 18px;
  right: 18px;
  bottom: 42px;
  padding: 8px 11px;
  font-size: clamp(13px, 1vw, 18px);
  background: rgba(15, 15, 15, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 12px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.3);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}

.tv-card.is-phone-device .tv-caption {
  left: 12px;
  right: 12px;
  bottom: 50px;
  font-size: 12px;
  line-height: 1.18;
}

.tube-progress {
  left: 18px;
  right: 18px;
  bottom: 17px;
  height: 6px;
  background: rgba(255, 255, 255, 0.28);
  border: 0;
}

.tv-card.is-phone-device .tube-progress {
  left: 20px;
  right: 20px;
  bottom: 27px;
  height: 5px;
}

.tv-grille {
  left: 50%;
  right: auto;
  bottom: 10px;
  width: 84px;
  height: 5px;
  background: rgba(255, 255, 255, 0.58);
  border: 0;
  box-shadow: none;
  transform: translateX(-50%);
}

.tv-card.is-tablet-device .tv-grille {
  bottom: 8px;
  width: 56px;
  height: 5px;
}

.tv-foot {
  top: 35%;
  width: 5px;
  height: 48px;
  background: #262626;
  border: 0;
  border-radius: 999px;
  box-shadow: none;
}

.tv-foot.is-left {
  left: -6px;
}

.tv-foot.is-right {
  top: 52%;
  right: -6px;
  height: 34px;
  background: #cc0000;
}

.scroll-cue {
  color: #121212;
  text-shadow: 0 1px 0 #fff;
}

.policy-section {
  min-height: 108svh;
  padding: 190px clamp(20px, 10vw, 150px) 120px;
  color: #f1f1f1;
  background:
    radial-gradient(circle at 78% 18%, rgba(204, 0, 0, 0.24), transparent 24%),
    radial-gradient(circle at 16% 74%, rgba(255, 255, 255, 0.1), transparent 28%),
    #0f0f0f;
}

.policy-section::before {
  inset: 0;
  height: auto;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(145deg, rgba(204, 0, 0, 0.16), transparent 44%);
  background-size: 74px 74px, 74px 74px, auto;
}

.policy-section::after {
  opacity: 0.16;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.52) 1px, transparent 1.3px);
}

.policy-device-collage {
  position: absolute;
  top: 70px;
  right: clamp(18px, 5vw, 86px);
  z-index: 1;
  width: min(49vw, 700px);
  height: min(48vh, 460px);
  pointer-events: none;
}

.policy-device {
  position: absolute;
  display: block;
  margin: 0;
  overflow: hidden;
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.35),
    9px 10px 0 rgba(204, 0, 0, 0.28);
}

.policy-device::before {
  position: absolute;
  left: 50%;
  top: 12px;
  z-index: 2;
  width: 46px;
  height: 10px;
  content: "";
  background: #050505;
  border-radius: 999px;
  transform: translateX(-50%);
}

.policy-device::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.22), transparent 24%),
    linear-gradient(0deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 6px);
}

.policy-device img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.06) brightness(0.9);
}

.policy-device.is-tablet {
  right: 0;
  top: 22px;
  width: 76%;
  aspect-ratio: 1.55;
  border-radius: 34px;
  transform: rotate(4deg);
}

.policy-device.is-phone {
  left: 0;
  bottom: 0;
  width: 28%;
  aspect-ratio: 9 / 18.5;
  border-radius: 34px;
  transform: rotate(-9deg);
}

.policy-device.is-studio {
  right: 12%;
  bottom: 0;
  width: 42%;
  aspect-ratio: 1.28;
  border-radius: 24px;
  transform: rotate(-4deg);
}

.policy-device.is-studio::before {
  width: 10px;
  height: 10px;
}

.policy-flow {
  position: absolute;
  left: 18%;
  bottom: 16%;
  z-index: 2;
  padding: 10px 14px;
  color: #f8f8f8;
  font-size: clamp(12px, 1.25vw, 17px);
  font-weight: 950;
  letter-spacing: 0.04em;
  background: #cc0000;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 999px;
  box-shadow: 8px 9px 0 rgba(0, 0, 0, 0.28);
  transform: rotate(-6deg);
}

.policy-stickers {
  right: clamp(24px, 8vw, 120px);
  bottom: 8%;
  z-index: 2;
  width: 168px;
  height: 168px;
  background: #cc0000;
  border: 4px solid #f8f8f8;
  border-radius: 34px;
  clip-path: none;
  box-shadow: 12px 12px 0 rgba(0, 0, 0, 0.32);
  transform: rotate(8deg);
}

.policy-stickers::before {
  position: absolute;
  left: 55%;
  top: 50%;
  width: 42%;
  height: 46%;
  content: "";
  background: #fff;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  transform: translate(-50%, -50%);
}

.policy-stickers::after {
  position: absolute;
  left: 50%;
  bottom: 14px;
  content: "POLICY";
  color: #fff;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.08em;
  transform: translateX(-50%);
}

.policy-section .section-label {
  z-index: 3;
  color: #f8f8f8;
  background: #cc0000;
  border: 2px solid #f8f8f8;
  box-shadow:
    8px 8px 0 #121212,
    12px 12px 0 rgba(255, 255, 255, 0.18);
  text-shadow: 0 3px 0 #121212;
}

.policy-section .policy-text {
  z-index: 3;
  max-width: 980px;
  color: rgba(241, 241, 241, 0.28);
}

.policy-section .policy-text .char {
  color: rgba(241, 241, 241, 0.28);
}

.policy-section .policy-text .char.is-active {
  color: #f8f8f8;
  text-shadow: 0 0 18px rgba(204, 0, 0, 0.45);
}

@media (max-width: 900px) {
  .hero-device-bg::before {
    left: -24%;
    top: 14%;
    width: 88vw;
  }

  .hero-device-bg::after {
    right: -12%;
    bottom: 10%;
    width: 42vw;
  }

  .hero-device-chip.is-live {
    left: 8%;
    top: 16%;
  }

  .hero-device-chip.is-short {
    right: 8%;
    top: 21%;
  }

  .hero-device-chip.is-studio {
    left: 34%;
    bottom: 10%;
  }

  .tv-card.is-tablet-device {
    width: clamp(250px, 72vw, 400px);
  }

  .tv-card.is-phone-device {
    width: clamp(144px, 43vw, 220px);
  }

  .policy-section {
    min-height: auto;
    padding: 104px 20px 92px;
  }

  .policy-device-collage {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    height: 370px;
    margin: 0 0 42px;
  }

  .policy-section .section-label {
    font-size: clamp(48px, 14vw, 82px);
  }

  .policy-section .policy-text {
    margin-top: 42px;
    font-size: clamp(24px, 7vw, 38px);
  }

  .policy-stickers {
    right: 18px;
    bottom: 20px;
    width: 112px;
    height: 112px;
    border-radius: 24px;
  }
}

@media (max-width: 520px) {
  .hero-device-chip {
    padding: 7px 10px;
    font-size: 10px;
  }

  .tv-card.is-tablet-device {
    width: clamp(230px, 76vw, 350px);
  }

  .tv-card.is-phone-device {
    width: clamp(134px, 46vw, 190px);
  }

  .tv-caption {
    bottom: 38px;
    font-size: 12px;
  }

  .tv-card.is-phone-device .tv-caption {
    bottom: 46px;
    font-size: 11px;
  }

  .policy-device-collage {
    height: 318px;
  }

  .policy-device.is-tablet {
    width: 82%;
  }

  .policy-device.is-phone {
    width: 32%;
  }

  .policy-flow {
    left: 10%;
    max-width: 82%;
    white-space: normal;
  }
}

/* Live video devices and the ending throw interaction. */
.tv-wall.is-ending {
  pointer-events: auto;
}

.tv-card {
  cursor: pointer;
  pointer-events: auto;
}

.tv-card.is-tablet-device {
  padding: clamp(13px, 1.1vw, 19px) clamp(18px, 1.45vw, 26px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.13), transparent 18%),
    linear-gradient(145deg, #303030, #050505 62%),
    #121212;
  border-radius: 34px;
}

.tv-card.is-phone-device {
  width: clamp(164px, 13.8vw, 242px);
  aspect-ratio: 9 / 19.8;
  padding: clamp(12px, 0.9vw, 16px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.16), transparent 17%),
    linear-gradient(145deg, #242424, #010101 64%),
    #050505;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: clamp(42px, 3.4vw, 58px);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.18),
    0 0 0 4px rgba(255, 255, 255, 0.92),
    0 20px 52px rgba(0, 0, 0, 0.28),
    10px 12px 0 rgba(204, 0, 0, 0.18);
}

.tv-card.is-phone-device::before {
  top: clamp(13px, 1vw, 17px);
  z-index: 6;
  width: clamp(55px, 4.8vw, 78px);
  height: clamp(16px, 1.25vw, 21px);
  background:
    radial-gradient(circle at 82% 50%, rgba(65, 65, 65, 0.95) 0 3px, transparent 4px),
    #050505;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
}

.tv-card.is-phone-device::after {
  inset: 7px;
  border-color: rgba(255, 255, 255, 0.17);
  border-radius: clamp(35px, 2.9vw, 50px);
}

.tv-card.is-phone-device .tv-screen {
  border-radius: clamp(33px, 2.7vw, 46px);
  box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.86);
}

.tv-card.is-phone-device .tv-screen::before {
  position: absolute;
  left: 50%;
  top: 8px;
  z-index: 4;
  width: 42px;
  height: 4px;
  content: "";
  background: rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  transform: translateX(-50%);
}

.tv-card.is-phone-device .tv-foot.is-left {
  left: -5px;
  top: 24%;
  width: 4px;
  height: 58px;
  background: #1c1c1c;
}

.tv-card.is-phone-device .tv-foot.is-right {
  right: -5px;
  top: 40%;
  width: 4px;
  height: 86px;
  background: #252525;
}

.tv-card.is-tablet-device .tv-foot.is-left,
.tv-card.is-tablet-device .tv-foot.is-right {
  top: 34%;
  height: 44px;
  background: #242424;
}

.tv-screen img,
.tv-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.tv-screen img {
  z-index: 0;
  opacity: 1;
  transition: opacity 0.32s ease;
}

.tv-video {
  display: block;
  z-index: 1;
  border: 0;
  pointer-events: none;
  opacity: 0;
  background: transparent;
  object-fit: cover;
  transition: opacity 0.36s ease;
}

.tv-video.is-video-ready {
  opacity: 1;
}

.tv-card.is-video-ready:not(.is-ending-poster) .tv-screen img {
  opacity: 0;
}

.tv-video ~ .tube-play-badge {
  opacity: 0.84;
  mix-blend-mode: normal;
}

.tv-card.is-ending-poster .tv-screen img {
  z-index: 2;
  opacity: 1;
}

.tv-card.is-ending-poster .tv-video {
  opacity: 0;
}

.tv-card.is-ending {
  z-index: 12;
  cursor: pointer;
  filter: saturate(1.16) contrast(1.05);
}

.tv-card.is-ending::after {
  border-color: rgba(204, 0, 0, 0.38);
  box-shadow: inset 0 0 32px rgba(204, 0, 0, 0.24);
}

.tv-card.is-ending .tube-play-badge {
  animation: endingBlink 0.7s steps(2, end) infinite;
}

.tv-card.is-ending .tv-caption {
  color: #fff;
  background: rgba(204, 0, 0, 0.88);
  border-color: rgba(255, 255, 255, 0.95);
  box-shadow:
    0 0 24px rgba(204, 0, 0, 0.54),
    0 12px 28px rgba(0, 0, 0, 0.34);
}

.tv-card.is-flying {
  z-index: 60;
  opacity: 0;
  pointer-events: none;
  filter: blur(1px) saturate(1.4);
  transition:
    transform 0.92s cubic-bezier(0.16, 0.96, 0.25, 1),
    opacity 0.92s ease,
    filter 0.92s ease;
}

@keyframes endingBlink {
  0% {
    transform: translate(-50%, -50%) rotate(-5deg) scale(1);
  }

  100% {
    transform: translate(-50%, -50%) rotate(5deg) scale(1.08);
  }
}

@media (max-width: 900px) {
  .tv-card.is-tablet-device {
    width: clamp(258px, 72vw, 410px);
  }

  .tv-card.is-phone-device {
    width: clamp(140px, 39vw, 206px);
  }
}

@media (max-width: 520px) {
  .tv-card.is-tablet-device {
    width: clamp(230px, 78vw, 350px);
  }

  .tv-card.is-phone-device {
    width: clamp(126px, 42vw, 178px);
  }
}

.hero-kattu-pop {
  --pop-scale: 0.58;
  --pop-rot: -4deg;
  --pop-hue: 0deg;
  position: absolute;
  left: 55.5%;
  top: 49%;
  z-index: 6;
  width: clamp(92px, 9.5vw, 148px);
  aspect-ratio: 0.6;
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
  transform: translate(-50%, -50%) rotate(var(--pop-rot)) scale(var(--pop-scale));
  transform-origin: 50% 74%;
  transition:
    transform 360ms cubic-bezier(0.17, 1.25, 0.35, 1),
    filter 220ms ease;
  filter:
    drop-shadow(0 16px 18px rgba(0, 0, 0, 0.24))
    drop-shadow(8px 8px 0 rgba(204, 0, 0, 0.42));
  pointer-events: auto;
}

.hero-kattu-pop:focus-visible {
  outline: 4px solid #3ea6ff;
  outline-offset: 10px;
}

.hero-kattu-pop img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: contain;
  user-select: none;
  pointer-events: none;
  filter: saturate(1.08) contrast(1.04);
}

.hero-kattu-pop::before,
.hero-kattu-pop::after,
.hero-kattu-pop-ring {
  position: absolute;
  pointer-events: none;
  content: "";
}

.hero-kattu-pop::before {
  left: 50%;
  top: 54%;
  z-index: 0;
  width: 118%;
  aspect-ratio: 1;
  background:
    radial-gradient(circle, rgba(186, 255, 22, 0.62), transparent 62%),
    conic-gradient(from 45deg, rgba(204, 0, 0, 0.64), rgba(62, 166, 255, 0.5), rgba(186, 255, 22, 0.55), rgba(204, 0, 0, 0.64));
  border-radius: 50%;
  opacity: 0.8;
  transform: translate(-50%, -50%) rotate(12deg);
  filter: blur(1px) hue-rotate(var(--pop-hue));
}

.hero-kattu-pop::after {
  left: 50%;
  bottom: 1%;
  z-index: 1;
  width: 92%;
  height: 16%;
  background: rgba(18, 18, 18, 0.22);
  border-radius: 50%;
  filter: blur(12px);
  transform: translateX(-50%);
}

.hero-kattu-pop-ring {
  left: 50%;
  top: 48%;
  z-index: 1;
  width: 132%;
  aspect-ratio: 1;
  border: 4px dashed rgba(204, 0, 0, 0.58);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  filter: hue-rotate(var(--pop-hue));
  animation: heroKattuRing 5.5s linear infinite;
}

.hero-kattu-tap-cue {
  position: absolute;
  top: -12%;
  right: -56%;
  z-index: 5;
  display: grid;
  place-items: center;
  width: clamp(72px, 88%, 112px);
  aspect-ratio: 1;
  pointer-events: none;
  opacity: 0;
  transform: rotate(8deg) translateY(4px) scale(0.94);
  transform-origin: 35% 78%;
  transition: opacity 180ms ease;
}

body:not(.audio-gate-active) .hero-kattu-pop:not([data-pop-count]) .hero-kattu-tap-cue {
  opacity: 0.95;
  animation: heroKattuTapCue 2.15s ease-in-out infinite;
}

.hero-kattu-pop[data-pop-count] .hero-kattu-tap-cue {
  opacity: 0;
  animation: none;
}

.hero-kattu-tap-cue::before,
.hero-kattu-tap-cue::after {
  position: absolute;
  inset: 14%;
  content: "";
  border-radius: 50%;
  pointer-events: none;
}

.hero-kattu-tap-cue::before {
  background: rgba(255, 255, 255, 0.94);
  border: 3px solid #111;
  box-shadow:
    5px 5px 0 #baff16,
    -4px 4px 0 rgba(62, 166, 255, 0.82);
}

.hero-kattu-tap-cue::after {
  border: 3px solid rgba(204, 0, 0, 0.82);
  animation: heroKattuTapRipple 1.35s ease-out infinite;
}

.hero-kattu-tap-cue__label {
  position: relative;
  z-index: 2;
  align-self: start;
  margin-top: 14%;
  color: #111;
  font-size: clamp(12px, 18%, 16px);
  font-weight: 950;
  line-height: 1;
}

.hero-kattu-tap-cue__finger {
  position: relative;
  z-index: 2;
  display: block;
  width: 20%;
  min-width: 13px;
  aspect-ratio: 0.48;
  margin-top: 14%;
  background: #111;
  border: 2px solid #111;
  border-radius: 999px 999px 8px 8px;
  box-shadow:
    9px 8px 0 -3px #111,
    13px 10px 0 -4px #111;
  transform: rotate(-18deg);
  animation: heroKattuTapFinger 1.35s ease-in-out infinite;
}

.hero-kattu-pop[data-pop-count]::before {
  opacity: 0.96;
}

.hero-kattu-pop.is-popping {
  filter:
    drop-shadow(0 18px 20px rgba(0, 0, 0, 0.26))
    drop-shadow(10px 10px 0 rgba(204, 0, 0, 0.46))
    hue-rotate(var(--pop-hue));
}

.hero-kattu-pop.is-popping img {
  animation: heroKattuPop 520ms cubic-bezier(0.17, 1.45, 0.35, 1);
}

.hero-kattu-pop[data-effect="glitch"].is-popping img {
  animation: heroKattuGlitch 520ms steps(3, end);
}

.hero-kattu-pop[data-effect="spin"].is-popping .hero-kattu-pop-ring {
  animation: heroKattuRing 420ms linear 2;
}

.hero-kattu-pop[data-effect="flash"].is-popping::before {
  animation: heroKattuFlash 520ms ease-out;
}

.hero-kattu-pop[data-effect="stamp"].is-popping {
  transition-duration: 140ms;
}

.hero-pop-particle {
  position: absolute;
  left: 50%;
  top: 48%;
  z-index: 8;
  display: inline-grid;
  place-items: center;
  min-width: 42px;
  min-height: 24px;
  padding: 0 8px;
  color: #fff;
  font-size: 10px;
  font-weight: 950;
  line-height: 1;
  white-space: nowrap;
  background: #cc0000;
  border: 2px solid #111;
  border-radius: 999px;
  box-shadow: 4px 4px 0 #baff16;
  transform: translate(-50%, -50%);
  animation: heroKattuParticle 820ms ease-out var(--pd, 0s) forwards;
  pointer-events: none;
}

@keyframes heroKattuRing {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes heroKattuPop {
  0% {
    transform: translateY(0) scale(1);
  }

  45% {
    transform: translateY(-10px) scale(1.18) rotate(-4deg);
  }

  100% {
    transform: translateY(0) scale(1);
  }
}

@keyframes heroKattuGlitch {
  0%,
  100% {
    transform: translate(0, 0);
    filter: saturate(1.1) contrast(1.04);
  }

  33% {
    transform: translate(-6px, 3px) skewX(-4deg);
    filter: saturate(1.6) hue-rotate(90deg);
  }

  66% {
    transform: translate(6px, -2px) skewX(5deg);
    filter: saturate(1.4) hue-rotate(-60deg);
  }
}

@keyframes heroKattuFlash {
  0% {
    opacity: 0.2;
    transform: translate(-50%, -50%) scale(0.65);
  }

  45% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.18);
  }

  100% {
    opacity: 0.82;
    transform: translate(-50%, -50%) scale(1);
  }
}

@keyframes heroKattuParticle {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.6) rotate(0);
  }

  18% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translate(calc(-50% + var(--px)), calc(-50% + var(--py))) scale(1.08) rotate(var(--pr));
  }
}

@keyframes heroKattuTapCue {
  0%,
  100% {
    opacity: 0.52;
    transform: rotate(8deg) translateY(4px) scale(0.94);
  }

  44% {
    opacity: 0.98;
    transform: rotate(8deg) translateY(0) scale(1);
  }
}

@keyframes heroKattuTapRipple {
  0% {
    opacity: 0.7;
    transform: scale(0.72);
  }

  100% {
    opacity: 0;
    transform: scale(1.3);
  }
}

@keyframes heroKattuTapFinger {
  0%,
  100% {
    transform: rotate(-18deg) translateY(-1px);
  }

  48% {
    transform: rotate(-18deg) translateY(5px);
  }
}

@media (max-width: 900px) {
  .hero-kattu-pop {
    left: 72%;
    top: 43%;
    width: clamp(76px, 20vw, 124px);
    --pop-scale: 0.5;
  }

  .hero-kattu-tap-cue {
    top: -14%;
    right: -56%;
    width: clamp(68px, 92%, 104px);
  }
}

@media (max-width: 520px) {
  .hero-kattu-pop {
    left: 75%;
    top: 38%;
    width: clamp(70px, 23vw, 110px);
  }

  .hero-kattu-tap-cue {
    top: -26%;
    right: -48%;
    width: clamp(76px, 96%, 98px);
  }
}

/* YouTube-tone refresh for message, takoyaki, and biography coin. */
html,
body {
  overflow-x: clip;
}

.signal-section {
  place-items: center start;
  padding: 120px clamp(20px, 8vw, 124px);
  background:
    radial-gradient(circle at 76% 26%, rgba(204, 0, 0, 0.32), transparent 24rem),
    radial-gradient(circle at 18% 76%, rgba(255, 255, 255, 0.1), transparent 20rem),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    #0f0f0f;
  background-size: auto, auto, 86px 86px, 86px 86px, auto;
}

.signal-section::before {
  z-index: 3;
  background:
    linear-gradient(180deg, rgba(15, 15, 15, 0.06), rgba(15, 15, 15, 0.68)),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 5px);
  opacity: 1;
}

.signal-section::after {
  inset: 12% 4% 12% auto;
  z-index: 2;
  width: min(38vw, 520px);
  background:
    radial-gradient(circle at 50% 50%, rgba(204, 0, 0, 0.9) 0 7%, transparent 7.3%),
    conic-gradient(from -20deg, transparent 0 34%, rgba(204, 0, 0, 0.38) 34% 40%, transparent 40% 100%);
  border-radius: 50%;
  opacity: 0.56;
  animation: none;
}

.signal-gallery {
  inset: 0;
  z-index: 1;
}

.signal-gallery::before {
  inset: 11% 5%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 34px;
  box-shadow:
    inset 0 0 0 14px rgba(255, 255, 255, 0.025),
    0 28px 90px rgba(0, 0, 0, 0.26);
  transform: rotate(-1.5deg);
}

.signal-gallery::after {
  left: 7%;
  right: 9%;
  top: 53%;
  height: 5px;
  background: linear-gradient(90deg, transparent, #cc0000 16% 78%, transparent);
  box-shadow:
    0 -126px 0 rgba(255, 255, 255, 0.08),
    0 134px 0 rgba(255, 255, 255, 0.055);
  transform: rotate(-4deg);
}

.signal-strip {
  width: clamp(230px, 24vw, 410px);
  height: auto;
  aspect-ratio: 16 / 9;
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 20px;
  clip-path: none;
  filter: saturate(0.96) contrast(1.04);
  box-shadow:
    0 0 0 8px rgba(15, 15, 15, 0.78),
    12px 14px 0 rgba(204, 0, 0, 0.34),
    0 22px 54px rgba(0, 0, 0, 0.34);
}

.signal-strip::before {
  inset: auto 14px 12px;
  height: 34px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, #f8f8f8 0 18%, transparent 18% 100%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.62) 0 64%, rgba(255, 255, 255, 0.2) 64% 100%);
  background-position: left 8px top 8px, left 54px top 10px;
  background-size: 28px 18px, calc(100% - 64px) 14px;
  background-repeat: no-repeat;
  mix-blend-mode: normal;
  opacity: 0.92;
}

.signal-strip::after {
  left: 50%;
  top: 50%;
  right: auto;
  bottom: auto;
  width: clamp(54px, 5vw, 82px);
  aspect-ratio: 1.42;
  background: #cc0000;
  border: 3px solid #fff;
  border-radius: 18px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.4);
  transform: translate(-50%, -50%);
}

.signal-strip img {
  transform: scale(1.02);
  filter: brightness(0.82) saturate(0.96);
}

.signal-strip.is-a {
  left: 5%;
  top: 12%;
  --strip-rot: -7deg;
}

.signal-strip.is-b {
  left: 18%;
  bottom: 12%;
  --strip-rot: 4deg;
}

.signal-strip.is-c {
  left: 42%;
  top: 10%;
  width: clamp(210px, 23vw, 380px);
  --strip-rot: -2deg;
}

.signal-strip.is-d {
  right: 19%;
  bottom: 9%;
  --strip-rot: 5deg;
}

.signal-strip.is-e {
  right: 5%;
  top: 18%;
  --strip-rot: -5deg;
}

.signal-strip.is-f {
  right: -4%;
  bottom: 27%;
  --strip-rot: 7deg;
}

.signal-person {
  right: 6%;
  bottom: -3%;
  z-index: 2;
  width: min(29vw, 360px);
  opacity: 0.18;
  mix-blend-mode: normal;
  filter: grayscale(0.2) saturate(0.85) contrast(1.12);
}

.signal-copy {
  z-index: 6;
  max-width: 980px;
  padding: 0;
  color: #f8f8f8;
  text-align: left;
  text-shadow:
    0 5px 0 rgba(0, 0, 0, 0.36),
    0 0 28px rgba(204, 0, 0, 0.25);
}

.signal-copy p {
  font-size: clamp(38px, 5.6vw, 92px);
  line-height: 1.05;
}

.signal-copy span {
  color: #fff;
  background: #cc0000;
  border: 2px solid rgba(255, 255, 255, 0.88);
  border-radius: 14px;
  box-shadow:
    8px 8px 0 #0f0f0f,
    13px 13px 0 rgba(255, 255, 255, 0.14);
}

.takoyaki-section {
  color: #f8f8f8;
  background:
    radial-gradient(circle at 16% 22%, rgba(204, 0, 0, 0.28), transparent 18rem),
    radial-gradient(circle at 86% 72%, rgba(255, 255, 255, 0.1), transparent 22rem),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    #0f0f0f;
  background-size: auto, auto, 74px 74px, 74px 74px, auto;
}

.takoyaki-section::before {
  opacity: 0.24;
  background-image:
    linear-gradient(90deg, transparent 0 94%, rgba(255, 255, 255, 0.22) 94% 100%),
    linear-gradient(0deg, transparent 0 94%, rgba(255, 255, 255, 0.2) 94% 100%);
}

.takoyaki-section::after {
  inset: auto -11vw -18vw auto;
  background:
    radial-gradient(circle at 54% 50%, #fff 0 16%, transparent 17%),
    #cc0000;
  border-color: #f8f8f8;
  box-shadow:
    -22px -20px 0 rgba(255, 255, 255, 0.11),
    0 0 70px rgba(204, 0, 0, 0.28);
}

.takoyaki-copy span {
  color: #fff;
  background: #cc0000;
  border: 2px solid #fff;
  border-radius: 10px;
}

.takoyaki-copy strong {
  color: #f8f8f8;
  text-shadow:
    5px 5px 0 #cc0000,
    10px 10px 0 rgba(0, 0, 0, 0.56);
}

.takoyaki-plate {
  background: #f8f8f8;
  border-color: #111;
  box-shadow:
    0 20px 0 rgba(0, 0, 0, 0.24),
    inset 0 -14px 0 rgba(204, 0, 0, 0.1);
}

.takoyaki-person {
  box-shadow:
    12px 12px 0 #cc0000,
    23px 23px 0 rgba(255, 255, 255, 0.22);
}

.bio-coin {
  --coin-scroll-rot: 0deg;
}

.bio-coin::before,
.bio-coin::after {
  position: absolute;
  content: "";
  pointer-events: none;
  border-radius: 50%;
}

.bio-coin::before {
  inset: -22px;
  z-index: 0;
  background:
    conic-gradient(from 0deg, transparent 0 24%, rgba(204, 0, 0, 0.95) 24% 31%, transparent 31% 58%, rgba(255, 255, 255, 0.72) 58% 64%, transparent 64% 100%);
  mask: radial-gradient(farthest-side, transparent calc(100% - 18px), #000 calc(100% - 17px));
  animation: coinOrbitCue 3.6s linear infinite;
}

.bio-coin::after {
  inset: -12px;
  z-index: 0;
  border: 3px dashed rgba(204, 0, 0, 0.7);
  box-shadow: 0 0 28px rgba(204, 0, 0, 0.18);
  animation: coinDashCue 5.8s linear infinite reverse;
}

.bio-coin-inner {
  z-index: 1;
  transform: rotateY(var(--coin-scroll-rot));
}

.bio-coin.is-scroll-spinning .bio-coin-inner {
  transition-duration: 220ms;
}

.bio-coin.is-flipped .bio-coin-inner {
  transform: rotateY(calc(var(--coin-scroll-rot) + 180deg));
}

.bio-coin:hover .bio-coin-inner {
  transform: rotateY(calc(var(--coin-scroll-rot) + 12deg));
}

.bio-coin.is-flipped:hover .bio-coin-inner {
  transform: rotateY(calc(var(--coin-scroll-rot) + 168deg));
}

.bio-coin-face {
  border-color: #cc0000;
  box-shadow:
    inset 0 0 0 10px rgba(255, 255, 255, 0.72),
    inset 0 0 0 20px rgba(15, 15, 15, 0.18),
    inset -18px -20px 0 rgba(32, 32, 32, 0.16),
    0 0 0 7px #f8f8f8,
    15px 16px 0 rgba(204, 0, 0, 0.5),
    27px 28px 0 rgba(15, 15, 15, 0.22);
}

.bio-coin-face.is-back {
  box-shadow:
    inset 0 0 0 10px rgba(255, 255, 255, 0.7),
    inset 0 0 0 20px rgba(15, 15, 15, 0.16),
    inset -18px -20px 0 rgba(32, 32, 32, 0.16),
    0 0 0 7px #f8f8f8,
    15px 16px 0 rgba(204, 0, 0, 0.46),
    27px 28px 0 rgba(15, 15, 15, 0.24);
}

@keyframes coinOrbitCue {
  to {
    transform: rotate(360deg);
  }
}

@keyframes coinDashCue {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 900px) {
  .signal-section {
    min-height: 106svh;
    padding: 118px 20px 96px;
    place-items: end start;
  }

  .signal-gallery {
    inset: 0 -34%;
  }

  .signal-strip {
    width: clamp(220px, 58vw, 310px);
  }

  .signal-strip.is-a {
    left: 18%;
    top: 12%;
  }

  .signal-strip.is-b {
    left: 38%;
    bottom: 15%;
  }

  .signal-strip.is-c {
    left: 54%;
    top: 28%;
  }

  .signal-strip.is-d,
  .signal-strip.is-f {
    display: block;
    opacity: 0.62;
  }

  .signal-strip.is-d {
    right: 20%;
    bottom: 42%;
  }

  .signal-strip.is-e {
    right: 5%;
    top: 8%;
  }

  .signal-strip.is-f {
    right: 1%;
    bottom: 6%;
  }

  .signal-person {
    right: -8%;
    bottom: 5%;
    width: 62vw;
    opacity: 0.13;
  }

  .signal-copy {
    max-width: 92vw;
  }

  .signal-copy p {
    font-size: clamp(38px, 12vw, 64px);
  }

  .takoyaki-section {
    padding: 116px 18px 110px;
  }

  .bio-coin::before {
    inset: -16px;
  }

  .bio-coin::after {
    inset: -8px;
  }
}

@media (max-width: 520px) {
  .signal-gallery {
    inset: 0 -72%;
  }

  .signal-copy span {
    padding: 3px 12px 7px;
  }

  .takoyaki-copy strong {
    font-size: 42px;
  }
}

/* Neon rim for ON AIR video thumbnails. */
.archive-screen {
  border-color: rgba(255, 255, 255, 0.9);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.28),
    0 0 0 4px rgba(15, 15, 15, 0.96),
    0 0 0 7px rgba(255, 255, 255, 0.2),
    0 0 28px rgba(204, 0, 0, 0.66),
    0 0 72px rgba(204, 0, 0, 0.34),
    14px 16px 0 rgba(0, 0, 0, 0.34);
  filter: drop-shadow(0 0 18px rgba(204, 0, 0, 0.42));
}

.archive-tv:hover .archive-screen,
.archive-stage.is-zapping .archive-screen {
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.32),
    0 0 0 4px rgba(15, 15, 15, 0.98),
    0 0 0 8px rgba(255, 255, 255, 0.28),
    0 0 38px rgba(204, 0, 0, 0.86),
    0 0 92px rgba(204, 0, 0, 0.44),
    14px 16px 0 rgba(0, 0, 0, 0.34);
}

.youtube-card {
  border-color: rgba(255, 255, 255, 0.88);
  box-shadow:
    0 0 0 4px rgba(15, 15, 15, 0.94),
    0 0 0 7px rgba(255, 255, 255, 0.18),
    0 0 26px rgba(204, 0, 0, 0.52),
    0 0 68px rgba(204, 0, 0, 0.24),
    12px 12px 0 rgba(0, 0, 0, 0.28),
    inset 0 0 0 2px rgba(255, 255, 255, 0.12);
}

.youtube-card:hover,
.youtube-card:focus-visible {
  box-shadow:
    0 0 0 4px rgba(15, 15, 15, 0.96),
    0 0 0 8px rgba(255, 255, 255, 0.28),
    0 0 42px rgba(204, 0, 0, 0.86),
    0 0 96px rgba(204, 0, 0, 0.44),
    14px 14px 0 rgba(204, 0, 0, 0.4),
    24px 24px 0 rgba(0, 0, 0, 0.38);
}

@media (max-width: 900px) {
  .hero-persona-stage {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 118px 20px 112px;
  }

  .hero-persona-copy {
    order: 2;
  }

  .hero-persona-card {
    order: 1;
    justify-self: center;
    width: min(88vw, 440px);
    transform: rotate(1.2deg);
  }

  .hero-persona-copy h1 {
    max-width: 11em;
    font-size: clamp(42px, 12vw, 72px);
  }

  .hero-persona-copy > p:not(.hero-kicker) {
    max-width: 100%;
  }

  .biography-section {
    grid-template-columns: 1fr;
    gap: 38px;
    padding: 92px 20px;
  }

  .bio-coin {
    width: min(74vw, 360px);
    margin: 0 auto;
  }

  .bio-timeline::before {
    left: 28px;
  }

  .bio-timeline li {
    grid-template-columns: 1fr;
    gap: 9px;
    padding-left: 58px;
  }

  .bio-timeline time::after {
    left: -38px;
    right: auto;
  }
}

@media (max-width: 520px) {
  .hero-persona-stage {
    padding-top: 102px;
  }

  .hero-persona-card {
    width: min(92vw, 350px);
    border-width: 4px;
    border-radius: 22px;
  }

  .hero-persona-tag.is-a {
    left: 4px;
    top: 14px;
  }

  .hero-persona-tag.is-b {
    right: 2px;
    top: auto;
    bottom: 76px;
  }

  .hero-persona-card figcaption {
    left: 18px;
    bottom: 14px;
    font-size: 28px;
  }

  .hero-persona-actions a {
    width: 100%;
  }

  .bio-timeline li {
    transform: none !important;
  }

  .request-form {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-persona-card::after,
  .hero-persona-ring {
    animation: none;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

/* Restore the first view to the early YouTube-thumbnail TV wall direction. */
.hero-section {
  min-height: 100svh;
  background: #fffdf4;
}

.hero-raster {
  inset: -8% -6%;
  z-index: -2;
  background: url("./assets/generated/gemini-hero-bg.jpg") center / cover no-repeat;
  opacity: 0.54;
  transform: rotate(-2deg) scale(1.08);
}

.hero-section::before {
  z-index: 2;
  background:
    radial-gradient(circle at 34% 50%, rgba(255, 255, 255, 0.92) 0 21%, rgba(255, 255, 255, 0.62) 35%, transparent 64%),
    repeating-linear-gradient(0deg, rgba(18, 18, 18, 0.035) 0 1px, transparent 1px 5px);
  mix-blend-mode: normal;
}

.hero-device-bg,
.hero-persona-stage {
  display: none !important;
}

.hero-copy {
  position: relative;
  z-index: 4;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(790px, 74vw);
  min-height: 100svh;
  padding: 128px 0 108px clamp(28px, 11.2vw, 190px);
  pointer-events: none;
}

.hero-copy .hero-kicker {
  align-self: flex-start;
  min-height: auto;
  padding: 0;
  margin: 0 0 18px;
  color: #237ce8;
  font-size: 13px;
  font-weight: 950;
  line-height: 1;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  text-shadow: none;
  transform: none;
}

.hero-copy h1 {
  max-width: none;
  margin: 0;
  color: #161616;
  font-size: clamp(56px, 7.2vw, 104px);
  font-weight: 950;
  line-height: 0.92;
  text-shadow:
    3px 3px 0 #fff,
    8px 8px 0 #baff16;
}

.hero-copy h1 span {
  display: block;
  white-space: nowrap;
}

.hero-copy > p:not(.hero-kicker) {
  max-width: 58em;
  margin: 28px 0 0;
  color: #18202b;
  font-size: clamp(15px, 1.24vw, 18px);
  font-weight: 950;
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
  pointer-events: auto;
}

.hero-actions a {
  display: inline-grid;
  place-items: center;
  min-height: 54px;
  padding: 0 24px;
  color: #111;
  font-size: 15px;
  font-weight: 950;
  background: #baff16;
  border: 4px solid #111;
  border-radius: 999px;
  box-shadow: 7px 7px 0 rgba(17, 17, 17, 0.18);
  transition:
    transform 160ms ease,
    box-shadow 160ms ease;
}

.hero-actions a + a {
  color: #fff;
  background: #161616;
}

.hero-actions a:hover,
.hero-actions a:focus-visible {
  outline: none;
  transform: translateY(-3px) rotate(-1deg);
  box-shadow: 9px 10px 0 rgba(255, 75, 43, 0.4);
}

.tv-wall {
  inset: -18% -12%;
  z-index: 1;
  min-height: 136%;
  pointer-events: none;
}

.tv-wall.is-ending {
  pointer-events: none;
}

.tv-card,
.tv-card.is-tablet-device,
.tv-card.is-phone-device {
  width: clamp(300px, 28vw, 520px);
  aspect-ratio: 1.72;
  padding: clamp(10px, 1vw, 16px);
  cursor: default;
  pointer-events: none;
  background:
    radial-gradient(circle at 88% 14%, rgba(255, 255, 255, 0.72) 0 7px, transparent 8px),
    linear-gradient(135deg, var(--tv-color, #ff4b2b) 0 54%, #111 54% 100%);
  border: 5px solid #151515;
  border-radius: 32px;
  box-shadow:
    0 0 0 7px rgba(255, 255, 255, 0.88),
    0 0 0 13px var(--tv-glow, #baff16),
    13px 14px 0 var(--tv-shadow, #ff4fa6),
    22px 24px 0 rgba(32, 32, 32, 0.1);
}

.tv-card::before,
.tv-card::after {
  position: absolute;
  z-index: 4;
  content: "";
  border: 3px solid #151515;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.24);
  transform: none;
}

.tv-card::before {
  left: 18px;
  top: 18px;
  width: 72px;
  height: 24px;
  background:
    radial-gradient(circle at 13px 50%, #fff 0 4px, transparent 5px),
    linear-gradient(90deg, var(--tv-color, #ff4b2b), #151515);
  border-radius: 999px;
}

.tv-card::after {
  right: 18px;
  top: 18px;
  left: auto;
  bottom: auto;
  inset: auto 18px auto auto;
  width: 46px;
  height: 24px;
  background: #fff;
  border-radius: 999px;
}

.tv-screen {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #0b1118;
  border: 5px solid #151515;
  border-radius: 22px;
  box-shadow: none;
}

.tv-screen::before {
  display: none;
}

.tv-screen::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.14) 0 1px, transparent 1px 4px),
    radial-gradient(circle at 32% 20%, rgba(255, 255, 255, 0.22), transparent 36%);
  mix-blend-mode: screen;
}

.tv-screen img,
.tv-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.tv-screen img {
  z-index: 0;
  object-fit: cover;
  opacity: 1;
  filter: saturate(1.18) contrast(1.06);
  transform: scale(1.02);
}

.tv-video {
  display: none;
}

.tv-caption {
  left: 18px;
  right: 18px;
  bottom: 42px;
  z-index: 3;
  display: inline-block;
  padding: 8px 12px;
  color: #fff;
  font-size: clamp(14px, 1.2vw, 20px);
  font-weight: 950;
  line-height: 1.1;
  background: rgba(17, 17, 17, 0.76);
  border: 3px solid #fff;
  border-radius: 12px;
  box-shadow: 5px 5px 0 rgba(255, 43, 43, 0.7);
  text-shadow:
    3px 3px 0 #151515,
    -2px 2px 0 #cc0000;
}

.tv-grille {
  left: 22px;
  right: 22px;
  bottom: -18px;
  width: auto;
  height: 20px;
  background: linear-gradient(90deg, var(--tv-color, #ff4b2b) 0 64%, #111 64% 100%);
  border: 4px solid #151515;
  border-radius: 999px;
  box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.2);
  transform: none;
}

.tv-foot {
  top: calc(100% + 10px);
  width: 76px;
  height: 24px;
  background: #fff;
  border: 4px solid #151515;
  border-radius: 999px;
  box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.22);
}

.tv-foot.is-left {
  left: 34px;
}

.tv-foot.is-right {
  right: 34px;
  background: #fff34a;
}

.scroll-cue {
  z-index: 5;
  color: #161616;
  text-shadow:
    2px 2px 0 #fff,
    4px 4px 0 #baff16;
}

@media (max-width: 900px) {
  .hero-copy {
    width: min(92vw, 620px);
    padding: 118px 20px 112px;
  }

  .hero-copy h1 {
    max-width: 6.8em;
    font-size: clamp(46px, 13vw, 78px);
  }

  .hero-copy > p:not(.hero-kicker) {
    max-width: 100%;
  }

  .tv-card,
  .tv-card.is-tablet-device,
  .tv-card.is-phone-device {
    width: clamp(240px, 70vw, 410px);
  }
}

@media (max-width: 760px) {
  .floating-link {
    display: none;
  }

  .site-header {
    top: 14px;
    left: 16px;
    right: 16px;
    gap: 10px;
  }

  .brand-mark {
    width: 124px;
    height: 82px;
  }

  .brand-main {
    font-size: 25px;
  }

  .brand-sub {
    margin-top: -18px;
    font-size: 10px;
  }

  .corner-badge {
    top: 24px;
    right: 74px;
    transform: scale(0.72) rotate(9deg);
    transform-origin: top right;
  }

  .menu-button {
    width: 44px;
    height: 44px;
  }

  .hero-section {
    min-height: 100svh;
    max-height: none;
  }

  .hero-copy {
    width: 100%;
    min-height: 100svh;
    padding: 188px 20px 96px;
    justify-content: center;
  }

  .hero-copy h1 {
    max-width: 7.1em;
    font-size: clamp(44px, 13.3vw, 62px);
    line-height: 0.93;
  }

  .hero-copy h1 span {
    white-space: normal;
  }

  .hero-copy > p:not(.hero-kicker) {
    max-width: 21em;
    margin-top: 20px;
    font-size: 14px;
    line-height: 1.7;
  }

  .hero-actions {
    margin-top: 24px;
  }

  .hero-actions a {
    min-height: 48px;
    padding: 0 18px;
    font-size: 13px;
  }

  .tv-wall {
    inset: 0;
    min-height: 100%;
    opacity: 0.36;
    transform: scale(0.82);
    transform-origin: center top;
  }

  .tv-card,
  .tv-card.is-tablet-device,
  .tv-card.is-phone-device {
    box-shadow:
      0 0 0 4px rgba(255, 255, 255, 0.72),
      8px 10px 0 rgba(18, 18, 18, 0.12);
  }

  .hero-kattu-pop {
    left: auto;
    right: 18px;
    top: 62%;
    width: clamp(72px, 22vw, 98px);
  }

  .scroll-cue {
    display: none;
  }

  .takoyaki-section,
  .policy-section,
  .works-section,
  .archive-section,
  .biography-section,
  .youtube-section,
  .news-section,
  .contact-section {
    overflow-x: clip;
  }

  .contact-section {
    padding-bottom: 96px;
  }

  .contact-people-stage {
    display: none;
  }
}

@media (max-width: 520px) {
  .hero-section::before {
    background:
      radial-gradient(circle at 38% 57%, rgba(255, 255, 255, 0.78) 0 20%, transparent 58%),
      repeating-linear-gradient(0deg, rgba(18, 18, 18, 0.035) 0 1px, transparent 1px 5px);
  }

  .hero-copy {
    justify-content: end;
    padding-top: 112px;
    padding-bottom: 102px;
  }

  .hero-copy h1 {
    font-size: clamp(40px, 12.5vw, 58px);
  }

  .hero-actions a {
    min-height: 48px;
    padding: 0 18px;
    font-size: 13px;
  }
}

/* Device thumbnail layout: phones receive vertical crops, tablets receive horizontal crops. */
.hero-section {
  background:
    radial-gradient(circle at 72% 28%, rgba(204, 0, 0, 0.16), transparent 22rem),
    radial-gradient(circle at 22% 72%, rgba(62, 166, 255, 0.16), transparent 24rem),
    linear-gradient(90deg, rgba(18, 18, 18, 0.045) 1px, transparent 1px),
    linear-gradient(0deg, rgba(18, 18, 18, 0.045) 1px, transparent 1px),
    #f8f8f8;
  background-size: auto, auto, 64px 64px, 64px 64px, auto;
}

.hero-raster {
  inset: 0;
  background:
    radial-gradient(circle at 18% 22%, rgba(204, 0, 0, 0.1), transparent 18rem),
    radial-gradient(circle at 84% 72%, rgba(18, 18, 18, 0.08), transparent 19rem),
    repeating-linear-gradient(118deg, transparent 0 32px, rgba(204, 0, 0, 0.12) 32px 35px, transparent 35px 66px);
  opacity: 1;
  transform: none;
}

.hero-section::before {
  background:
    radial-gradient(circle at 34% 52%, rgba(248, 248, 248, 0.93) 0 23%, rgba(248, 248, 248, 0.66) 39%, transparent 68%),
    repeating-linear-gradient(0deg, rgba(18, 18, 18, 0.035) 0 1px, transparent 1px 5px);
}

.tv-card,
.tv-card.is-tablet-device,
.tv-card.is-phone-device {
  cursor: default;
  pointer-events: none;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.18), transparent 18%),
    linear-gradient(145deg, #2c2c2c, #050505 62%),
    #101010;
  border: 1px solid rgba(255, 255, 255, 0.32);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.14),
    0 0 0 5px rgba(255, 255, 255, 0.92),
    0 20px 54px rgba(18, 18, 18, 0.2),
    12px 14px 0 var(--tv-shadow, rgba(204, 0, 0, 0.18));
}

.tv-card.is-tablet-device {
  width: clamp(330px, 30vw, 560px);
  aspect-ratio: 1.52;
  padding: clamp(13px, 1.1vw, 19px) clamp(18px, 1.45vw, 26px);
  border-radius: 36px;
}

.tv-card.is-phone-device {
  width: clamp(166px, 14.2vw, 250px);
  aspect-ratio: 9 / 19.6;
  padding: clamp(12px, 0.9vw, 16px);
  border-radius: clamp(42px, 3.4vw, 58px);
}

.tv-card::before,
.tv-card::after,
.tv-card.is-phone-device::before,
.tv-card.is-phone-device::after {
  position: absolute;
  z-index: 6;
  content: "";
  background: none;
  border: 0;
  box-shadow: none;
}

.tv-card.is-tablet-device::before {
  left: 50%;
  top: 11px;
  width: 10px;
  height: 10px;
  background: #050505;
  border: 2px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  transform: translateX(-50%);
}

.tv-card.is-tablet-device::after {
  inset: 9px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: inherit;
}

.tv-card.is-phone-device::before {
  left: 50%;
  top: clamp(13px, 1vw, 17px);
  width: clamp(55px, 4.8vw, 78px);
  height: clamp(16px, 1.25vw, 21px);
  background:
    radial-gradient(circle at 82% 50%, rgba(65, 65, 65, 0.95) 0 3px, transparent 4px),
    #050505;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  transform: translateX(-50%);
}

.tv-card.is-phone-device::after {
  inset: 7px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: clamp(35px, 2.9vw, 50px);
}

.tv-screen {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #0f0f0f;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 26px;
  box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.86);
}

.tv-card.is-phone-device .tv-screen {
  border-radius: clamp(33px, 2.7vw, 46px);
}

.tv-card.is-phone-device .tv-screen::before {
  position: absolute;
  left: 50%;
  top: 8px;
  z-index: 4;
  display: block;
  width: 42px;
  height: 4px;
  content: "";
  background: rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  transform: translateX(-50%);
}

.tv-screen::after {
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.2), transparent 24%),
    linear-gradient(0deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 5px);
  mix-blend-mode: screen;
}

.tv-screen img {
  z-index: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  object-fit: cover;
  filter: saturate(1.02) contrast(1.05) brightness(0.94);
  transform: scale(1.02);
}

.tv-card[data-fit="landscape"] .tv-screen img {
  object-fit: cover;
}

.tv-card[data-fit="portrait"] .tv-screen img {
  object-fit: cover;
  transform: scale(1.04);
}

.tube-play-badge {
  z-index: 3;
  width: clamp(52px, 5vw, 88px);
  background: #cc0000;
  border: 3px solid rgba(255, 255, 255, 0.92);
  border-radius: 18px;
  box-shadow:
    0 10px 25px rgba(0, 0, 0, 0.38),
    0 0 0 7px rgba(204, 0, 0, 0.15);
}

.tv-card.is-phone-device .tube-play-badge {
  width: 58px;
  border-radius: 15px;
}

.tube-channel {
  left: 18px;
  top: 18px;
  z-index: 3;
  color: #f8f8f8;
  font-size: 10px;
  background: rgba(18, 18, 18, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.58);
  box-shadow: none;
}

.tv-card.is-phone-device .tube-channel {
  left: 14px;
  top: 42px;
  max-width: calc(100% - 28px);
  font-size: 9px;
}

.tv-caption {
  left: 18px;
  right: 18px;
  bottom: 42px;
  z-index: 3;
  padding: 8px 11px;
  font-size: clamp(13px, 1vw, 18px);
  background: rgba(15, 15, 15, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 12px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.3);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}

.tv-card.is-phone-device .tv-caption {
  left: 12px;
  right: 12px;
  bottom: 50px;
  font-size: 12px;
  line-height: 1.18;
}

.tube-progress {
  left: 18px;
  right: 18px;
  bottom: 17px;
  z-index: 3;
  height: 6px;
  background: rgba(255, 255, 255, 0.28);
  border: 0;
}

.tv-card.is-phone-device .tube-progress {
  left: 20px;
  right: 20px;
  bottom: 27px;
  height: 5px;
}

.tv-grille {
  left: 50%;
  right: auto;
  bottom: 10px;
  width: 84px;
  height: 5px;
  background: rgba(255, 255, 255, 0.58);
  border: 0;
  box-shadow: none;
  transform: translateX(-50%);
}

.tv-card.is-tablet-device .tv-grille {
  bottom: 8px;
  width: 56px;
  height: 5px;
}

.tv-foot {
  background: #242424;
  border: 0;
  box-shadow: none;
}

.tv-card.is-tablet-device .tv-foot.is-left,
.tv-card.is-tablet-device .tv-foot.is-right {
  top: 34%;
  width: 4px;
  height: 44px;
}

.tv-card.is-tablet-device .tv-foot.is-left {
  left: -5px;
}

.tv-card.is-tablet-device .tv-foot.is-right {
  right: -5px;
}

.tv-card.is-phone-device .tv-foot.is-left {
  left: -5px;
  top: 24%;
  width: 4px;
  height: 58px;
}

.tv-card.is-phone-device .tv-foot.is-right {
  right: -5px;
  top: 40%;
  width: 4px;
  height: 86px;
}

@media (max-width: 900px) {
  .tv-card.is-tablet-device {
    width: clamp(258px, 72vw, 410px);
  }

  .tv-card.is-phone-device {
    width: clamp(140px, 39vw, 206px);
  }
}

@media (max-width: 520px) {
  .hero-section::before {
    background:
      linear-gradient(180deg, rgba(248, 248, 248, 0.42), rgba(248, 248, 248, 0.82) 47%, rgba(248, 248, 248, 0.44)),
      repeating-linear-gradient(0deg, rgba(18, 18, 18, 0.035) 0 1px, transparent 1px 5px);
  }

  .tv-card.is-tablet-device {
    width: clamp(230px, 78vw, 350px);
  }

  .tv-card.is-phone-device {
    width: clamp(126px, 42vw, 178px);
  }
}

@media (max-width: 760px) {
  main > section[id],
  .news-section,
  .contact-section {
    scroll-margin-top: 94px;
  }

  .floating-link {
    display: none !important;
  }

  .site-header {
    top: 14px;
    left: 16px;
    right: 16px;
  }

  .brand-mark {
    width: 124px;
    height: 82px;
  }

  .brand-main {
    font-size: 25px;
  }

  .brand-sub {
    margin-top: -18px;
    font-size: 10px;
  }

  .corner-badge {
    top: 24px;
    right: 74px;
    transform: scale(0.72) rotate(9deg);
    transform-origin: top right;
  }

  .menu-button {
    width: 44px;
    height: 44px;
  }

  .hero-section {
    min-height: 100svh;
  }

  .hero-copy {
    width: 100%;
    min-height: 100svh;
    padding: 168px 20px 86px;
    justify-content: center;
  }

  .hero-copy h1 {
    max-width: 7.2em;
    font-size: clamp(42px, 12.8vw, 58px);
    line-height: 0.94;
  }

  .hero-copy h1 span {
    white-space: normal;
  }

  .hero-copy > p:not(.hero-kicker) {
    max-width: 21em;
    margin-top: 20px;
    font-size: 14px;
    line-height: 1.7;
  }

  .tv-wall {
    inset: 0;
    min-height: 100%;
    opacity: 0.34;
    transform: scale(0.8);
    transform-origin: center top;
  }

  .hero-kattu-pop {
    left: auto;
    right: 18px;
    top: 62%;
    width: clamp(72px, 22vw, 98px);
  }

  .scroll-cue {
    display: none;
  }

  .takoyaki-section,
  .policy-section,
  .works-section,
  .archive-section,
  .biography-section,
  .youtube-section,
  .news-section,
  .contact-section {
    overflow-x: clip;
  }

  .contact-section {
    padding-bottom: 96px;
  }
}
