:root {
  --acid: #f6ff00;
  --pink: #ff2a91;
  --orange: #ff7a00;
  --cyan: #13d9ef;
  --mint: #5ee9bf;
  --ink: #080a0d;
  --paper: #fffdf2;
  --line: clamp(2px, 0.22vw, 4px);
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--acid);
}

* { box-sizing: border-box; }

html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
}

button,
a { font: inherit; }

button { color: inherit; }

body {
  background:
    radial-gradient(circle at 17% 30%, rgba(255, 255, 255, 0.72) 0 2px, transparent 3px) 0 0 / 25px 25px,
    var(--acid);
}

.page-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.12;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E");
  z-index: 20;
}

.app-shell {
  position: relative;
  width: 100%;
  height: 100svh;
  padding: 10px;
  display: grid;
  grid-template-rows: 72px minmax(0, 1fr);
  gap: 10px;
}

.topbar {
  min-width: 0;
  border: var(--line) solid var(--ink);
  border-radius: 17px;
  background: rgba(246, 255, 0, 0.92);
  box-shadow: 5px 5px 0 var(--ink);
  padding: 8px 14px;
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 34px);
  z-index: 5;
}

.brand {
  color: var(--ink);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(30px, 3.2vw, 50px);
  line-height: 0.8;
  letter-spacing: -1px;
}

.brand-face {
  width: 42px;
  aspect-ratio: 1;
  border: 3px solid var(--ink);
  border-radius: 50% 44% 47% 43%;
  background: var(--pink);
  display: grid;
  grid-template-columns: 1fr 1fr;
  place-items: center;
  padding: 0 8px;
  transform: rotate(-8deg);
}

.brand-face i {
  width: 5px;
  height: 10px;
  background: var(--ink);
  border-radius: 50%;
}

.socials {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: clamp(7px, 1.4vw, 22px);
}

.social {
  color: var(--ink);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: clamp(11px, 1vw, 15px);
  font-weight: 950;
  white-space: nowrap;
  transition: transform 150ms ease;
}

.social:hover,
.social:focus-visible { transform: rotate(-3deg) scale(1.06); }

.social svg,
.pump-mark {
  width: 36px;
  height: 36px;
  border: 3px solid var(--ink);
  border-radius: 50%;
  display: grid;
  place-items: center;
  padding: 7px;
  background: white;
  fill: currentColor;
}

.social--telegram svg { background: var(--cyan); }
.social--x svg { color: white; background: var(--ink); }
.pump-mark {
  padding: 0;
  background: var(--paper);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 21px;
  line-height: 1;
}

.hero {
  position: relative;
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(285px, 0.78fr) minmax(380px, 1.02fr) minmax(460px, 1.2fr);
  gap: clamp(8px, 1.4vw, 22px);
  align-items: stretch;
}

.pitch {
  position: relative;
  min-width: 0;
  padding: clamp(12px, 2.5vh, 28px) 6px 8px clamp(6px, 1.5vw, 20px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 2;
}

.token-ribbon {
  position: relative;
  align-self: flex-start;
  isolation: isolate;
  overflow: hidden;
  margin: 0 0 clamp(9px, 1.4vh, 15px);
  padding: 5px 13px 9px;
  border: 3px solid var(--ink);
  border-radius: 8px 13px 7px 11px;
  background: var(--paper);
  box-shadow: 4px 4px 0 var(--ink), 8px 8px 0 var(--cyan);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(23px, 2.5vw, 39px);
  line-height: 0.88;
  letter-spacing: -0.055em;
  white-space: nowrap;
  transform: rotate(-2deg);
}

.token-ribbon::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -40%;
  bottom: 0;
  left: -40%;
  height: 5px;
  background: linear-gradient(90deg, var(--pink), var(--orange), var(--acid), var(--mint), var(--cyan), #7868ff, var(--pink));
  background-size: 45% 100%;
  animation: token-rainbow 2.2s linear infinite;
}

.token-ribbon span {
  position: relative;
  z-index: 1;
  display: inline-block;
  -webkit-text-stroke: 1px var(--ink);
  text-shadow: 2px 2px 0 var(--ink);
  animation: token-hop 1.25s cubic-bezier(.45, 0, .3, 1.4) infinite;
}

.token-ribbon span:nth-child(1) { color: var(--pink); animation-delay: -1.20s; }
.token-ribbon span:nth-child(2) { color: var(--orange); animation-delay: -1.05s; }
.token-ribbon span:nth-child(3) { color: var(--acid); animation-delay: -.90s; }
.token-ribbon span:nth-child(4) { color: var(--mint); animation-delay: -.75s; }
.token-ribbon span:nth-child(5) { color: var(--cyan); animation-delay: -.60s; }
.token-ribbon span:nth-child(6) { color: #7868ff; animation-delay: -.45s; }
.token-ribbon span:nth-child(7) { color: var(--pink); animation-delay: -.30s; }
.token-ribbon span:nth-child(8) { color: var(--orange); animation-delay: -.15s; }
.token-ribbon span:nth-child(9) { color: var(--acid); animation-delay: 0s; }

.token-ribbon:hover span {
  animation-duration: .58s;
}

.pitch h1 {
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(62px, 5.8vw, 98px);
  line-height: 0.8;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

.pitch h1 em {
  color: var(--pink);
  font-style: normal;
  -webkit-text-stroke: 2px var(--ink);
  text-shadow: 4px 4px 0 var(--ink);
}

.lede {
  max-width: 31ch;
  margin: clamp(14px, 2.3vh, 24px) 0 12px;
  padding-top: 10px;
  border-top: 5px solid var(--pink);
  font-size: clamp(13px, 1.2vw, 18px);
  line-height: 1.14;
  font-weight: 800;
}

.pitch-actions { margin-top: clamp(8px, 1.4vh, 14px); padding-bottom: 4px; }

.chaos-button {
  width: min(100%, 360px);
  border: var(--line) solid var(--ink);
  border-radius: 9px;
  background: var(--pink);
  box-shadow: 6px 6px 0 var(--ink);
  padding: clamp(10px, 1.4vh, 16px);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(19px, 2vw, 31px);
  letter-spacing: 0.02em;
  cursor: pointer;
  transform: rotate(-1deg);
  transition: transform 150ms ease, box-shadow 150ms ease;
}

.chaos-button:hover,
.chaos-button:focus-visible {
  transform: translate(4px, 4px) rotate(1deg);
  box-shadow: 2px 2px 0 var(--ink);
}

.robot-stage {
  position: relative;
  min-width: 0;
  margin: 0 -12px 0 -20px;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.robot-stage::before {
  content: "";
  position: absolute;
  z-index: 0;
  width: min(94%, 610px);
  aspect-ratio: 1;
  border-radius: 50%;
  opacity: .28;
  background: repeating-conic-gradient(from -8deg, var(--cyan) 0 5deg, transparent 5deg 11deg);
  animation: burst-breathe 8s ease-in-out infinite;
}

.robot-button {
  position: relative;
  z-index: 2;
  width: min(118%, 660px);
  height: min(76vh, 108%);
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  transform-origin: 50% 68%;
  will-change: transform;
}

.robot-button[data-motion="idle"] { animation: bot-idle 6s ease-in-out infinite; }
.robot-button[data-motion="bob"] { animation: bot-bob 4.2s ease-in-out infinite; }
.robot-button[data-motion="sway"] { animation: bot-sway 5.8s ease-in-out infinite; }
.robot-button[data-motion="dance"] { animation: bot-dance 4.6s ease-in-out infinite; }
.robot-button[data-motion="moonwalk"] { animation: bot-moonwalk 6.8s ease-in-out infinite; }
.robot-button[data-motion="scan"] { animation: bot-scan 5.6s ease-in-out infinite; }
.robot-button[data-motion="think"] { animation: bot-think 6.4s ease-in-out infinite; }
.robot-button[data-motion="type"] { animation: bot-type 4.8s ease-in-out infinite; }
.robot-button[data-motion="check"] { animation: bot-check 5.8s ease-in-out infinite; }
.robot-button[data-motion="wait"] { animation: bot-wait 7.2s ease-in-out infinite; }
.robot-button[data-motion="point"] { animation: bot-point 5.6s ease-in-out infinite; }
.robot-button[data-motion="spin"] { animation: bot-spin 8s ease-in-out infinite; }

.robot-button img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.robot-button:focus-visible { outline: 5px solid var(--pink); outline-offset: 5px; border-radius: 30%; }

.thought {
  position: absolute;
  z-index: 5;
  top: 2%;
  right: 1%;
  width: clamp(170px, 17vw, 260px);
  min-height: 74px;
  border: var(--line) solid var(--ink);
  border-radius: 22px;
  background: var(--paper);
  box-shadow: 5px 5px 0 var(--ink);
  padding: 12px 15px;
  font-size: clamp(12px, 1.1vw, 17px);
  line-height: 1.05;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
  transform: rotate(-2deg);
  animation: bubble-drift 7.4s ease-in-out infinite;
}

.thought::after {
  content: "";
  position: absolute;
  left: 22%;
  bottom: -19px;
  width: 25px;
  height: 25px;
  background: var(--paper);
  border-right: var(--line) solid var(--ink);
  border-bottom: var(--line) solid var(--ink);
  transform: rotate(43deg);
}

.thought.pop { animation: thought-pop 260ms ease, bubble-drift 7.4s 260ms ease-in-out infinite; }

.action-word {
  position: absolute;
  z-index: 3;
  font-family: Impact, sans-serif;
  font-size: clamp(22px, 3vw, 47px);
  -webkit-text-stroke: 1px var(--ink);
  text-shadow: 3px 3px 0 var(--ink);
}

.action-word--one { color: var(--cyan); left: 2%; top: 24%; transform: rotate(-13deg); }
.action-word--two { color: var(--pink); right: 1%; bottom: 15%; transform: rotate(7deg); }

.comic-mark {
  position: absolute;
  z-index: 1;
  width: clamp(22px, 2.4vw, 38px);
  height: clamp(22px, 2.4vw, 38px);
  border-top: 7px solid currentColor;
  border-right: 7px solid currentColor;
}

.comic-mark--one { left: 12%; bottom: 11%; color: var(--pink); transform: rotate(-34deg); }
.comic-mark--two { right: 12%; top: 17%; color: var(--cyan); transform: rotate(47deg); }

.ground-dots {
  position: absolute;
  z-index: 0;
  bottom: 4%;
  width: 72%;
  height: 8%;
  border-radius: 50%;
  opacity: 0.45;
  background-image: radial-gradient(var(--ink) 1.8px, transparent 1.8px);
  background-size: 8px 8px;
  transform: perspective(80px) rotateX(55deg);
}

.live-card {
  min-height: 0;
  align-self: center;
  height: calc(100% - 8px);
  border: var(--line) solid var(--ink);
  border-radius: 18px;
  background: var(--paper);
  box-shadow: 7px 7px 0 var(--ink);
  padding: clamp(10px, 1.2vw, 16px);
  display: grid;
  grid-template-rows: auto minmax(300px, 1fr) auto;
  gap: 9px;
  transform: rotate(0.5deg);
  z-index: 3;
}

.live-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.live-heading p {
  margin: 0 0 2px;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.08em;
}

.live-dot {
  display: inline-block;
  width: 10px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 0 4px rgba(255, 42, 145, 0.2);
  animation: blink 1s steps(2) infinite;
}

.live-heading h2 {
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(29px, 3.2vw, 52px);
  line-height: 0.84;
  letter-spacing: -0.015em;
}

.live-heading h2 em { color: var(--pink); font-style: normal; }

.live-sticker {
  flex: 0 0 auto;
  width: clamp(68px, 5.5vw, 88px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  background: var(--pink);
  border: 3px solid var(--ink);
  font-family: Impact, sans-serif;
  font-size: clamp(13px, 1.25vw, 18px);
  letter-spacing: -0.02em;
  white-space: nowrap;
  clip-path: polygon(50% 0,60% 17%,75% 5%,81% 23%,100% 22%,88% 40%,100% 50%,83% 61%,95% 78%,76% 77%,73% 96%,58% 84%,50% 100%,39% 83%,23% 96%,20% 77%,1% 78%,14% 60%,0 50%,15% 39%,1% 22%,20% 23%,25% 5%,41% 17%);
  animation: wobble 2.4s ease-in-out infinite reverse;
}

.stream-frame {
  position: relative;
  min-width: 0;
  min-height: 300px;
  overflow: hidden;
  border: var(--line) solid var(--ink);
  border-radius: 8px;
  background: var(--ink);
}

.stream-frame iframe { width: 100%; height: 100%; border: 0; display: block; }

.stream-placeholder {
  width: 100%;
  height: 100%;
  padding: 18px;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background:
    linear-gradient(90deg, transparent 49%, rgba(255,255,255,.05) 50%, transparent 51%) 0 0 / 22px 22px,
    var(--ink);
}

.stream-placeholder strong {
  margin-top: 15px;
  font-family: Impact, sans-serif;
  font-size: clamp(24px, 2.6vw, 41px);
  line-height: 1;
}

.stream-placeholder p { margin: 7px 0 14px; font-size: 12px; font-weight: 800; color: #cdd1d8; }

.stream-placeholder button {
  border: 2px solid white;
  border-radius: 99px;
  background: #9146ff;
  color: white;
  padding: 8px 17px;
  font-weight: 950;
  cursor: pointer;
}

.test-pattern { width: min(82%, 280px); height: 48px; display: flex; border: 3px solid white; }
.test-pattern i { flex: 1; }
.test-pattern i:nth-child(1) { background: var(--cyan); }
.test-pattern i:nth-child(2) { background: var(--pink); }
.test-pattern i:nth-child(3) { background: var(--acid); }
.test-pattern i:nth-child(4) { background: var(--mint); }
.test-pattern i:nth-child(5) { background: white; }

.stream-footer {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: clamp(8px, 0.7vw, 10px);
  font-weight: 950;
}

.stream-footer span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.stream-footer a { color: var(--ink); white-space: nowrap; }

.toast {
  position: fixed;
  z-index: 50;
  left: 50%;
  bottom: 22px;
  max-width: calc(100% - 30px);
  padding: 12px 19px;
  border: 3px solid var(--ink);
  border-radius: 99px;
  background: var(--paper);
  box-shadow: 4px 4px 0 var(--ink);
  font-size: 12px;
  font-weight: 950;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 20px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.show { opacity: 1; transform: translate(-50%, 0); }

@keyframes bot-idle {
  0%, 100% { transform: translateY(3px) rotate(-0.4deg); }
  50% { transform: translateY(-4px) rotate(0.4deg); }
}
@keyframes bot-bob {
  0%, 100% { transform: translateY(4px) scale(1); }
  45% { transform: translateY(-14px) scale(1.015); }
  58% { transform: translateY(-9px) scale(.995); }
}
@keyframes bot-sway {
  0%, 100% { transform: translateX(-5px) rotate(-3deg); }
  50% { transform: translateX(7px) rotate(3deg); }
}
@keyframes bot-dance {
  0%, 100% { transform: translate(0, 3px) rotate(-2deg); }
  25% { transform: translate(-9px, -8px) rotate(-5deg); }
  50% { transform: translate(0, 1px) rotate(2deg); }
  75% { transform: translate(9px, -8px) rotate(5deg); }
}
@keyframes bot-moonwalk {
  0%, 14%, 86%, 100% { transform: translateX(0) rotate(0); }
  36% { transform: translateX(-28px) rotate(-2deg); }
  64% { transform: translateX(28px) rotate(2deg); }
}
@keyframes bot-scan {
  0%, 100% { transform: translateX(-4px) rotate(-2deg); }
  42% { transform: translateX(6px) rotate(2.5deg) scale(1.015); }
  60% { transform: translateX(8px) rotate(3deg) scale(1.02); }
}
@keyframes bot-think {
  0%, 24%, 100% { transform: translateY(2px) rotate(-1deg); }
  48%, 72% { transform: translateY(-3px) rotate(4deg); }
}
@keyframes bot-type {
  0%, 100% { transform: translate(0, 2px) rotate(0); }
  20% { transform: translate(-3px, -3px) rotate(-1deg); }
  40% { transform: translate(3px, 1px) rotate(1deg); }
  60% { transform: translate(-2px, -2px) rotate(-1deg); }
  80% { transform: translate(2px, 1px) rotate(1deg); }
}
@keyframes bot-check {
  0%, 20%, 100% { transform: translateY(2px) rotate(0); }
  42% { transform: translateY(5px) rotate(2deg) scaleY(.985); }
  58% { transform: translateY(-4px) rotate(-1deg) scaleY(1.01); }
}
@keyframes bot-wait {
  0%, 100% { transform: translateY(3px) rotate(-1deg); }
  40%, 64% { transform: translateY(7px) rotate(2deg) scale(.99); }
}
@keyframes bot-point {
  0%, 22%, 100% { transform: translateX(0) rotate(0); }
  46%, 70% { transform: translateX(12px) rotate(4deg) scale(1.015); }
}
@keyframes bot-spin {
  0%, 18% { transform: translateY(2px) rotate(0); }
  70%, 100% { transform: translateY(2px) rotate(360deg); }
}
@keyframes burst-breathe {
  0%, 100% { transform: rotate(-3deg) scale(.96); opacity: .22; }
  50% { transform: rotate(3deg) scale(1.03); opacity: .34; }
}
@keyframes bubble-drift {
  0%, 100% { transform: translate(0, 0) rotate(-2deg); }
  50% { transform: translate(-5px, 4px) rotate(1deg); }
}
@keyframes wobble { 0%, 100% { transform: rotate(-6deg) scale(1); } 50% { transform: rotate(6deg) scale(1.05); } }
@keyframes blink { 50% { opacity: 0.2; } }
@keyframes thought-pop { 50% { transform: rotate(2deg) scale(1.05); } }
@keyframes token-hop {
  0%, 58%, 100% { transform: translateY(0) rotate(0); }
  72% { transform: translateY(-5px) rotate(-4deg); }
  86% { transform: translateY(1px) rotate(3deg); }
}
@keyframes token-rainbow { to { background-position: 100% 0; } }

@media (max-width: 1120px) {
  .app-shell { grid-template-rows: 64px minmax(0, 1fr); }
  .hero { grid-template-columns: minmax(210px, 0.68fr) minmax(270px, 0.85fr) minmax(400px, 1.15fr); }
  .pitch h1 { font-size: clamp(58px, 6.6vw, 78px); }
  .lede { font-size: 13px; }
  .thought { top: 2%; right: -4%; }
  .action-word { display: none; }
  .robot-stage { margin: 0; }
  .robot-button { width: min(106%, 590px); height: min(72vh, 104%); }
}

@media (max-width: 900px) and (orientation: landscape) {
  .app-shell { padding: 7px; gap: 7px; grid-template-rows: 54px minmax(0, 1fr); }
  .topbar { padding: 5px 9px; box-shadow: 3px 3px 0 var(--ink); }
  .brand { font-size: 29px; }
  .brand-face { width: 34px; }
  .social span:not(.pump-mark) { display: none; }
  .socials { gap: 6px; }
  .social svg, .pump-mark { width: 31px; height: 31px; }
  .hero { grid-template-columns: minmax(175px, .65fr) minmax(210px, .72fr) minmax(400px, 1.4fr); gap: 6px; }
  .pitch { padding-top: 5px; }
  .pitch h1 { font-size: clamp(53px, 8vw, 72px); }
  .token-ribbon { margin-bottom: 7px; padding: 4px 9px 7px; font-size: 20px; box-shadow: 3px 3px 0 var(--ink), 6px 6px 0 var(--cyan); }
  .lede { margin: 9px 0 7px; padding-top: 7px; font-size: 11px; }
  .chaos-button { font-size: 18px; padding: 7px; box-shadow: 3px 3px 0 var(--ink); }
  .thought { width: 150px; min-height: 54px; padding: 8px 10px; font-size: 11px; }
  .live-card { padding: 8px; grid-template-rows: auto minmax(300px, 1fr) auto; }
  .live-heading h2 { font-size: 27px; }
  .live-sticker { width: 64px; font-size: 13px; }
}

@media (max-width: 699px) {
  .app-shell { padding: 6px; gap: 6px; grid-template-rows: 54px minmax(0, 1fr); }
  .topbar { border-radius: 12px; padding: 5px 8px; box-shadow: 3px 3px 0 var(--ink); }
  .brand { font-size: 28px; gap: 6px; }
  .brand-face { width: 33px; border-width: 2px; }
  .socials { gap: 5px; }
  .social span:not(.pump-mark) { display: none; }
  .social svg, .pump-mark { width: 30px; height: 30px; border-width: 2px; }
  .hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto minmax(170px, 1fr) 150px;
    gap: 3px;
  }
  .pitch { grid-row: 1; padding: 3px 4px; justify-content: flex-start; }
  .token-ribbon { margin: 2px 0 7px; padding: 4px 9px 7px; font-size: 20px; box-shadow: 3px 3px 0 var(--ink), 6px 6px 0 var(--cyan); }
  .pitch h1 { font-size: clamp(49px, 15vw, 62px); line-height: .78; }
  .lede { margin: 6px 0 0; padding-top: 5px; max-width: none; font-size: 10px; border-top-width: 3px; }
  .pitch-actions { position: static; margin-top: 7px; padding: 0 3px 3px 0; }
  .chaos-button { width: 100%; padding: 7px 9px; font-size: 16px; border-width: 2px; box-shadow: 3px 3px 0 var(--ink); }
  .robot-stage { grid-row: 2; }
  .robot-stage::before { width: min(78%, 300px); opacity: .22; }
  .robot-button { width: min(80%, 280px); height: 100%; }
  .thought { top: 0; right: 4%; width: min(47%, 180px); min-height: 52px; padding: 8px 10px; border-width: 2px; border-radius: 14px; box-shadow: 3px 3px 0 var(--ink); font-size: 10px; }
  .thought::after { width: 17px; height: 17px; bottom: -13px; border-width: 2px; }
  .action-word { display: block; font-size: 22px; }
  .action-word--one { left: 4%; top: 22%; }
  .action-word--two { right: 2%; bottom: 7%; }
  .comic-mark { width: 23px; height: 23px; border-width: 5px; }
  .live-card {
    grid-row: 3;
    height: 100%;
    padding: 6px;
    border-radius: 12px;
    box-shadow: 3px 3px 0 var(--ink);
    grid-template-columns: 42% 58%;
    grid-template-rows: 1fr auto;
    gap: 5px;
  }
  .live-heading { grid-row: 1 / 3; }
  .live-heading h2 { font-size: clamp(24px, 7.2vw, 31px); }
  .live-heading p { font-size: 8px; }
  .live-sticker { display: none; }
  .stream-frame { min-height: 0; height: 100%; border-width: 2px; }
  .stream-frame iframe { display: none; }
  .stream-placeholder { padding: 5px; }
  .stream-placeholder strong { margin-top: 4px; font-size: 15px; }
  .stream-placeholder p, .test-pattern { display: none; }
  .stream-placeholder button { padding: 5px 9px; font-size: 9px; }
  .stream-footer { font-size: 7px; }
  .stream-footer span { display: none; }
}

@media (max-height: 650px) {
  .app-shell { grid-template-rows: 56px minmax(0, 1fr); }
  .pitch h1 { font-size: clamp(58px, 8.4vw, 100px); }
  .lede { margin-top: 10px; }
  .robot-button { height: min(62vh, 100%); }
  .thought { min-height: 54px; padding-top: 8px; padding-bottom: 8px; }
  .live-card { grid-template-rows: auto minmax(300px, 1fr) auto; }
}

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