:root {
  color-scheme: dark;
  --bg: #030303;
  --fg: #f1f1ed;
  --muted: #8f8f89;
  --line: rgba(241, 241, 237, 0.16);
  --ink: #ffffff;
  --panel: rgba(7, 7, 7, 0.72);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: var(--bg);
  color: var(--fg);
  font-family: "Courier New", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

body {
  overflow: hidden;
}

.stage {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 56% at 50% 42%, rgba(255, 255, 255, 0.055), transparent 61%),
    linear-gradient(180deg, #010101, #050505 58%, #000);
}

.stage::before,
.stage::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9;
  pointer-events: none;
}

.stage::before {
  border: 0;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.07),
    inset 0 0 56px rgba(255, 255, 255, 0.035);
}

.stage::after {
  opacity: 0.42;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.1), transparent 4% 96%, rgba(255, 255, 255, 0.08)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 6% 94%, rgba(255, 255, 255, 0.07));
  mix-blend-mode: screen;
}

#background,
.money-layer,
.signal-tear,
.noise,
.scanlines,
.vignette {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

#background {
  z-index: 0;
  width: 100%;
  height: 100%;
}

.signal-tear {
  z-index: 5;
  opacity: 0;
  mix-blend-mode: screen;
  background:
    linear-gradient(90deg, transparent 0 18%, rgba(255, 255, 255, 0.25) 22%, transparent 28% 52%, rgba(255, 255, 255, 0.18) 56%, transparent 64%),
    repeating-linear-gradient(0deg, transparent 0 42px, rgba(255, 255, 255, 0.18) 42px 45px, transparent 45px 72px);
  transform: translateX(-7vw) skewX(-5deg);
}

.stage[data-glitch="hard"] .signal-tear {
  opacity: 0.62;
  animation: signal-tear 0.18s steps(2) infinite;
}

.stage[data-glitch="soft"] .signal-tear {
  opacity: 0.26;
  animation: signal-tear 0.34s steps(2) infinite;
}

.noise {
  z-index: 7;
  opacity: 0.28;
  background-image:
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.48) 0 1px, transparent 1px),
    radial-gradient(circle at 62% 44%, rgba(255, 255, 255, 0.32) 0 1px, transparent 1px),
    radial-gradient(circle at 82% 74%, rgba(255, 255, 255, 0.22) 0 1px, transparent 1px);
  background-size: 17px 19px, 23px 29px, 37px 31px;
  animation: noise-shift 0.38s steps(2) infinite;
}

.scanlines {
  z-index: 8;
  opacity: 0.22;
  mix-blend-mode: screen;
  background: repeating-linear-gradient(0deg, transparent 0 3px, rgba(255, 255, 255, 0.22) 3px 4px);
}

.vignette {
  z-index: 6;
  background:
    radial-gradient(ellipse 58% 60% at 50% 47%, transparent 0 42%, rgba(0, 0, 0, 0.58) 74%, rgba(0, 0, 0, 0.95) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.88), transparent 22% 78%, rgba(0, 0, 0, 0.88));
}

.money-layer {
  z-index: 16;
  overflow: hidden;
}

.money-pop {
  position: fixed;
  left: var(--money-x);
  top: var(--money-y);
  display: block;
  min-width: 22px;
  padding: 3px 5px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.055) 0 1px, transparent 1px 5px),
    rgba(0, 0, 0, 0.58);
  color: rgba(255, 255, 255, 0.88);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.06em;
  text-align: center;
  text-shadow: 1px 0 rgba(255, 255, 255, 0.16);
  transform: translate3d(-50%, -50%, 0);
  will-change: transform, opacity;
  animation: money-burst 0.52s linear forwards;
}

.topbar {
  position: relative;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr 44px;
  align-items: center;
  gap: 8px;
  padding: 22px clamp(18px, 4vw, 56px) 8px;
}

.founder-ticker {
  height: 38px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background:
    repeating-linear-gradient(90deg, rgba(0, 0, 0, 0.08) 0 1px, transparent 1px 10px),
    rgba(255, 255, 255, 0.93);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.88), inset 0 0 16px rgba(255, 255, 255, 0.06);
}

.ticker-track {
  display: flex;
  width: max-content;
  height: 100%;
  align-items: center;
  color: #030303;
  font-family: "Courier New", ui-monospace, monospace;
  font-size: clamp(9px, 0.86vw, 12px);
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
  animation: ticker-roll 18s linear infinite;
}

.ticker-track span {
  padding-right: 26px;
}

.sound-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.055);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.stage[data-audio="on"] .sound-button {
  border-color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.13);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.18), inset 0 0 18px rgba(255, 255, 255, 0.08);
}

.sound-off-icon {
  position: absolute;
  width: 28px;
  height: 28px;
  fill: none;
  stroke: rgba(255, 255, 255, 0.88);
  stroke-width: 2.3;
  stroke-linecap: square;
  stroke-linejoin: miter;
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.24));
}

.sound-off-icon path:first-child {
  fill: rgba(255, 255, 255, 0.15);
}

.stage[data-audio="on"] .sound-off-icon {
  display: none;
}

.audio-bar {
  opacity: 0;
  width: 3px;
  background: var(--fg);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.55);
  animation: none;
}

.stage[data-audio="on"] .audio-bar {
  opacity: 1;
  animation: bars 0.8s ease-in-out infinite;
}

.audio-bar:nth-of-type(1) { height: 14px; }
.audio-bar:nth-of-type(2) { height: 24px; animation-delay: 0.13s; }
.audio-bar:nth-of-type(3) { height: 18px; animation-delay: 0.26s; }

.hologram-scene {
  position: relative;
  z-index: 12;
  min-height: calc(100vh - 90px);
  display: grid;
  grid-template-rows: 1fr auto;
  justify-items: center;
  padding: 18px 18px 34px;
}

.hologram-scene::before {
  content: "AirPunk";
  position: absolute;
  left: clamp(8px, 1.1vw, 22px);
  top: clamp(24px, 4.8vh, 56px);
  z-index: 1;
  color: rgba(255, 255, 255, 0.038);
  font: 900 clamp(74px, 13vw, 210px)/0.85 "Courier New", ui-monospace, monospace;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  pointer-events: none;
  filter: blur(0.2px);
  text-shadow: 0 0 26px rgba(255, 255, 255, 0.02);
}

.signal-phrases {
  position: absolute;
  z-index: 18;
  width: min(24vw, 300px);
}

.founder-panel {
  display: none;
  width: auto;
}

.signal-phrases {
  inset: 0;
  width: auto;
  pointer-events: none;
}

.rank-headline {
  display: flex;
  align-items: center;
  gap: 10px;
}

.rank-value {
  display: block;
  font-size: clamp(34px, 3.4vw, 48px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 0.86);
}

.rank-trend {
  position: relative;
  display: inline-block;
  width: 30px;
  height: 42px;
  margin-left: 2px;
  filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.12));
}

.rank-trend::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 0;
  height: 0;
  border-left: 11px solid transparent;
  border-right: 11px solid transparent;
  border-bottom: 14px solid rgba(255, 255, 255, 0.96);
  transform: translateX(-50%);
}

.rank-trend::after {
  position: absolute;
  content: "";
  left: 50%;
  top: 13px;
  width: 6px;
  height: 26px;
  background:
    repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0 5px, rgba(255, 255, 255, 0.72) 5px 7px);
  transform: translateX(-50%);
}

.hero-claim {
  position: absolute;
  left: 50%;
  bottom: 240px;
  z-index: 17;
  margin: 0;
  padding: 0;
  max-width: min(96vw, 1320px);
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 1.15vw, 24px);
  font: 900 clamp(21px, 2.55vw, 46px)/0.96 "Courier New", ui-monospace, monospace;
  letter-spacing: 0.04em;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  transform: translateX(-50%);
  text-shadow:
    0 0 9px rgba(255, 255, 255, 0.16),
    0 0 34px rgba(255, 255, 255, 0.1);
  box-shadow: none;
  animation: claim-invert 6.8s steps(1) infinite;
}

.hero-claim::before,
.hero-claim::after {
  display: none;
}

.claim-step {
  position: relative;
  display: inline-block;
  animation: claim-step-flash 4.8s steps(1) infinite;
}

.claim-click {
  animation-delay: 0s;
}

.claim-company {
  animation-delay: 0.2s;
}

.claim-income {
  color: rgba(255, 255, 255, 0.96);
  text-shadow:
    0 0 10px rgba(255, 255, 255, 0.2),
    0 0 22px rgba(218, 255, 232, 0.1);
  animation-name: claim-income-flash;
  animation-delay: 0.4s;
}

.signal-phrases span {
  position: absolute;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 10px;
  row-gap: 4px;
  min-width: 188px;
  padding: 10px 12px 9px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.015) 46%, rgba(0, 0, 0, 0.4)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 8px),
    rgba(0, 0, 0, 0.5);
  color: rgba(255, 255, 255, 0.74);
  font-family: "Courier New", ui-monospace, monospace;
  text-transform: uppercase;
  box-shadow:
    0 0 24px rgba(255, 255, 255, 0.045),
    inset 0 0 0 1px rgba(0, 0, 0, 0.7);
  filter: blur(0.1px);
  animation: module-breathe 6.2s steps(2) infinite;
  transition:
    transform 260ms cubic-bezier(0.2, 0.8, 0.2, 1),
    border-color 180ms ease,
    box-shadow 180ms ease,
    filter 180ms ease;
}

.signal-phrases span::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 0 72%, rgba(255, 255, 255, 0.1) 72% 73%, transparent 73%),
    repeating-linear-gradient(180deg, transparent 0 5px, rgba(255, 255, 255, 0.035) 5px 6px);
  mix-blend-mode: screen;
  opacity: 0.48;
}

.signal-phrases span::after {
  display: none;
}

.signal-phrases b {
  grid-row: 1 / 3;
  align-self: center;
  display: grid;
  place-items: center;
  width: 21px;
  height: 21px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 0;
  background:
    repeating-linear-gradient(90deg, rgba(0, 0, 0, 0.24) 0 1px, transparent 1px 5px),
    rgba(0, 0, 0, 0.72);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.86);
}

.signal-phrases b::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 0;
  background: currentColor;
  box-shadow: 0 0 9px currentColor;
}

.signal-phrases b.is-live {
  color: rgba(106, 255, 148, 0.88);
  animation: terminal-live-blink 2.4s steps(2) infinite;
}

.signal-phrases b.is-standby {
  color: rgba(255, 78, 78, 0.74);
  animation: terminal-standby-blink 3.6s steps(2) infinite;
}

.signal-phrases b + i {
  position: relative;
}

.signal-phrases b + i::before {
  content: "";
  position: absolute;
  left: -10px;
  top: -7px;
  bottom: -16px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.signal-phrases i,
.signal-phrases em {
  display: block;
  font-style: normal;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.signal-phrases i {
  font-size: 11px;
  letter-spacing: 0.16em;
}

.signal-phrases em {
  color: rgba(255, 255, 255, 0.46);
  font-size: 9px;
  letter-spacing: 0.14em;
}

.signal-phrases span:nth-child(1) {
  left: clamp(52px, 5.4vw, 118px);
  top: clamp(116px, 15vh, 168px);
  transform: rotate(-7deg);
}

.signal-phrases span:nth-child(2) {
  left: clamp(74px, 8vw, 170px);
  bottom: clamp(118px, 13vh, 176px);
  transform: rotate(5deg);
}

.signal-phrases span:nth-child(3) {
  right: clamp(50px, 6vw, 134px);
  top: clamp(126px, 16vh, 178px);
  transform: rotate(6deg);
}

.signal-phrases span:nth-child(4) {
  right: clamp(118px, 13vw, 260px);
  top: clamp(266px, 34vh, 356px);
  transform: rotate(-4deg);
}

.signal-phrases span:nth-child(5) {
  left: clamp(220px, 19vw, 390px);
  top: clamp(266px, 34vh, 358px);
  transform: rotate(-5deg);
}

.signal-phrases span:nth-child(6) {
  right: clamp(48px, 5.4vw, 118px);
  bottom: clamp(106px, 12vh, 166px);
  transform: rotate(7deg);
}

.hologram-shell {
  position: relative;
  width: min(78vw, 680px);
  height: min(62vh, 690px);
  display: grid;
  place-items: center;
  transform: translateY(-1.4vh);
}

#robotHologram {
  position: relative;
  z-index: 3;
  width: 100%;
  height: 100%;
  display: block;
  filter:
    drop-shadow(0 0 18px rgba(255, 255, 255, 0.34))
    drop-shadow(0 0 52px rgba(255, 255, 255, 0.26))
    drop-shadow(0 0 112px rgba(255, 255, 255, 0.12));
  transform: translate3d(0, 0, 0);
  image-rendering: auto;
}

.stage[data-glitch="hard"] #robotHologram {
  filter:
    drop-shadow(8px 0 0 rgba(255, 255, 255, 0.2))
    drop-shadow(-7px 0 0 rgba(255, 255, 255, 0.16))
    drop-shadow(0 0 42px rgba(255, 255, 255, 0.32));
  animation: hard-cut 0.2s steps(2) infinite;
}

.stage[data-glitch="soft"] #robotHologram {
  animation: soft-drift 1.8s ease-in-out infinite;
}

.punk-card-module {
  position: absolute;
  left: 50%;
  bottom: 76px;
  z-index: 19;
  width: min(78vw, 720px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px 14px;
  align-items: end;
  transform: translateX(-50%);
}

.referral-signal {
  grid-column: 1 / -1;
  justify-self: start;
  display: inline-grid;
  grid-template-columns: auto auto;
  gap: 10px;
  align-items: center;
  max-width: 100%;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 7px),
    rgba(0, 0, 0, 0.66);
  color: rgba(255, 255, 255, 0.78);
  font: 900 10px/1.15 "Courier New", ui-monospace, monospace;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  box-shadow: 0 0 22px rgba(255, 255, 255, 0.08);
  animation: referral-flicker 3.2s steps(2) infinite;
}

.referral-signal[hidden] {
  display: none;
}

.referral-signal strong {
  color: rgba(255, 255, 255, 0.96);
}

.referral-signal span {
  color: rgba(255, 255, 255, 0.58);
}

.punk-card-module.is-registered {
  row-gap: 14px;
}

.punk-card-module.is-registered .founder-panel {
  display: flex;
  position: absolute;
  right: calc(100% + 14px);
  bottom: 0;
  align-self: end;
  height: 52px;
  align-items: center;
}

.waitlist-reward {
  display: none;
  position: absolute;
  top: calc(100% + 9px);
  left: 0;
  width: 100%;
  box-sizing: border-box;
  margin: 0;
  padding: 7px 11px;
  border-left: 1px solid rgba(255, 255, 255, 0.36);
  color: rgba(255, 255, 255, 0.66);
  font: 900 10px/1.35 "Courier New", ui-monospace, monospace;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.punk-card-module.is-registered .waitlist-reward {
  display: block;
}

.email-terminal {
  display: grid;
  grid-template-columns: 1fr;
  gap: 7px;
  min-width: 0;
}

.email-terminal span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
}

.email-terminal input {
  width: 100%;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 0;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 8px),
    rgba(0, 0, 0, 0.72);
  color: var(--fg);
  font: 900 15px/1 "Courier New", ui-monospace, monospace;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0 17px;
  outline: 0;
  box-shadow: 0 0 24px rgba(255, 255, 255, 0.09), inset 0 0 0 1px rgba(0, 0, 0, 0.88);
}

.email-terminal input::placeholder {
  color: rgba(255, 255, 255, 0.28);
}

.email-terminal input:focus {
  border-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 24px rgba(255, 255, 255, 0.16), inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.mint-button {
  min-height: 52px;
  width: min(290px, 26vw);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 0;
  background:
    repeating-linear-gradient(90deg, rgba(0, 0, 0, 0.16) 0 1px, transparent 1px 8px),
    rgba(255, 255, 255, 0.96);
  color: #030303;
  font-family: "Courier New", ui-monospace, monospace;
  font-size: 13.5px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 0 26px rgba(255, 255, 255, 0.12);
}

.mint-button:hover {
  filter: invert(1);
}

.mint-button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.waitlist-website-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

@keyframes noise-shift {
  0% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(-7px, 5px, 0); }
  100% { transform: translate3d(5px, -5px, 0); }
}

@keyframes signal-tear {
  0% { transform: translate3d(-9vw, -2vh, 0) skewX(-7deg); }
  50% { transform: translate3d(6vw, 1vh, 0) skewX(5deg); }
  100% { transform: translate3d(-2vw, 0, 0) skewX(-3deg); }
}

@keyframes hard-cut {
  0% { transform: translate3d(-9px, 0, 0) scaleY(0.985); opacity: 0.84; }
  50% { transform: translate3d(12px, -3px, 0) scaleY(1.012); opacity: 0.54; }
  100% { transform: translate3d(-3px, 2px, 0); opacity: 0.92; }
}

@keyframes soft-drift {
  0%, 100% { transform: translate3d(0, 0, 0) skewX(0deg); }
  50% { transform: translate3d(2px, -2px, 0) skewX(-0.8deg); }
}

@keyframes bars {
  0%, 100% { transform: scaleY(0.55); opacity: 0.7; }
  50% { transform: scaleY(1); opacity: 1; }
}

@keyframes ticker-roll {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-33.333%, 0, 0); }
}

@keyframes money-burst {
  0% {
    opacity: 0.96;
    transform: translate3d(-50%, -50%, 0) scale(1);
  }
  14% {
    opacity: 0.9;
    transform: translate3d(calc(-50% + var(--money-dx) * 0.24), calc(-50% - 4px), 0) scale(0.98);
  }
  56% {
    opacity: 0.52;
  }
  100% {
    opacity: 0;
    transform: translate3d(calc(-50% + var(--money-dx)), calc(-50% + var(--money-dy)), 0) scale(0.9);
  }
}

@keyframes reward-flicker {
  0%, 100% { opacity: 1; transform: translateX(0); }
  24% { opacity: 0.48; transform: translateX(-2px); }
  38% { opacity: 0.9; transform: translateX(3px); }
  54% { opacity: 0.58; transform: translateX(-1px); }
}

@keyframes referral-flicker {
  0%, 100% { opacity: 0.86; filter: brightness(1); }
  48% { opacity: 0.62; filter: brightness(0.78); }
  52% { opacity: 1; filter: brightness(1.18); }
}

@keyframes annotation-breathe {
  0%, 100% { opacity: 0.54; }
  50% { opacity: 0.34; }
}

@keyframes module-breathe {
  0%, 100% {
    opacity: 0.72;
    filter: blur(0.1px) brightness(0.92);
  }
  50% {
    opacity: 0.42;
    filter: blur(0.35px) brightness(0.72);
  }
  52% {
    opacity: 0.88;
    filter: blur(0) brightness(1.12);
  }
}

@keyframes terminal-live-blink {
  0%, 100% { opacity: 1; filter: brightness(1.15); }
  50% { opacity: 0.58; filter: brightness(0.72); }
}

@keyframes terminal-standby-blink {
  0%, 100% { opacity: 0.72; filter: brightness(0.72); }
  50% { opacity: 0.36; filter: brightness(0.46); }
}

@keyframes claim-step-flash {
  0%, 7%, 100% {
    color: rgba(255, 255, 255, 0.86);
    text-shadow: 0 0 14px rgba(255, 255, 255, 0.12);
  }
  3% {
    color: rgba(255, 255, 255, 1);
    text-shadow:
      0 0 8px rgba(255, 255, 255, 0.52),
      0 0 24px rgba(255, 255, 255, 0.26);
  }
}

@keyframes claim-income-flash {
  0%, 7%, 100% {
    color: rgba(255, 255, 255, 0.96);
    text-shadow:
      0 0 10px rgba(255, 255, 255, 0.2),
      0 0 22px rgba(218, 255, 232, 0.1);
  }
  3% {
    color: rgba(255, 255, 255, 1);
    text-shadow:
      0 0 8px rgba(255, 255, 255, 0.62),
      0 0 30px rgba(218, 255, 232, 0.2);
  }
}

@keyframes claim-invert {
  0%, 88%, 91%, 100% {
    filter: none;
    opacity: 1;
  }
  89% {
    filter: invert(1) contrast(1.08) drop-shadow(0 0 22px rgba(255, 255, 255, 0.18));
  }
  90% {
    filter: none;
    opacity: 0.58;
  }
}

@media (max-width: 720px) {
  .topbar {
    grid-template-columns: 1fr 44px;
    padding: 24px 20px 8px;
  }

  .founder-ticker {
    height: 34px;
  }

  .ticker-track {
    font-size: 10px;
  }

  .hologram-scene {
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 8px 20px 18px;
  }

  .founder-panel,
  .signal-phrases {
    position: static;
    width: min(92vw, 520px);
    margin-bottom: 10px;
  }

  .founder-panel {
    order: -2;
    transform: none;
  }

  .hero-claim {
    position: static;
    order: -2;
    box-sizing: border-box;
    width: min(90vw, 390px);
    max-width: min(90vw, 390px);
    margin-bottom: 10px;
    gap: 6px;
    font-size: 11px;
    line-height: 1.35;
    letter-spacing: 0.06em;
    white-space: normal;
    flex-wrap: wrap;
    transform: none;
  }

  .hero-claim::before,
  .hero-claim::after {
    display: none;
  }

  .signal-phrases {
    order: -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5px;
    margin-bottom: 8px;
  }

  .signal-phrases span {
    position: static;
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
    padding: 7px 8px;
    transform: none !important;
  }

  .signal-phrases span::after {
    display: none;
  }

  .signal-phrases b {
    width: 22px;
    font-size: 10px;
  }

  .signal-phrases i {
    font-size: 8px;
    letter-spacing: 0.1em;
  }

  .signal-phrases em {
    font-size: 7px;
    letter-spacing: 0.08em;
  }

  .hologram-shell {
    order: 1;
    width: min(92vw, 520px);
    height: min(38vh, 360px);
    transform: translateY(0);
  }

  .punk-card-module {
    position: static;
    order: 2;
    left: 50%;
    width: min(92vw, 520px);
    margin-top: 4px;
    grid-template-columns: 1fr;
    gap: 10px;
    transform: none;
  }

  .email-terminal {
    gap: 6px;
    padding: 0;
  }

  .email-terminal input {
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.58);
    padding: 0 12px;
    font-size: 13px;
  }

  .punk-card-module.is-registered {
    width: min(92vw, 520px);
  }

  .mint-button {
    min-height: 50px;
    width: 100%;
  }

}

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