:root {
  --fg: #ffffff;
  --bg: #030303;
  --dark: #0a0a0a;
  --panel: rgba(255, 255, 255, 0.035);
  --panel-strong: rgba(20, 20, 20, 0.72);
  --border: rgba(255, 255, 255, 0.15);
  --muted: rgba(255, 255, 255, 0.56);
  --black: #000000;
  --white: #ffffff;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --screen-height: 100vh;
  --hero-top-pad: 96px;
  --hero-ticker-height: 44px;
  --hero-ticker-gap: clamp(22px, 3vh, 34px);
}

@supports (height: 100dvh) {
  :root {
    --screen-height: 100dvh;
  }
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  background: var(--bg);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--fg);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.lang-zh,
body.lang-ja {
  font-family: "Helvetica Neue", Helvetica, Arial, "Microsoft YaHei", "Yu Gothic", "Hiragino Sans", sans-serif;
}

body.lang-zh .heading-huge,
body.lang-ja .heading-huge,
body.lang-zh .brand-word,
body.lang-ja .brand-word {
  font-family: "Arial Black", Impact, "Microsoft YaHei", "Yu Gothic", sans-serif;
}

body.menu-open {
  overflow: hidden;
}

body.is-loading {
  overflow: hidden;
}

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

button {
  color: inherit;
  font: inherit;
  cursor: pointer;
}

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

::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

.noise-overlay,
.scanlines,
.liquid-glass-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.noise-overlay {
  z-index: 9999;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

.scanlines {
  z-index: 9998;
  opacity: 0.3;
  background: linear-gradient(to bottom, transparent, transparent 50%, rgba(0,0,0,0.1) 50%, rgba(0,0,0,0.1));
  background-size: 100% 4px;
}

.liquid-glass-overlay {
  z-index: 9997;
  background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.02) 0%, transparent 70%);
}

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 10050;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 38%, rgba(255,255,255,0.10), transparent 34%),
    linear-gradient(180deg, #030303 0%, #000 100%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.75s var(--ease), visibility 0.75s var(--ease);
}

body.is-loading .site-loader {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.loader-core {
  position: relative;
  width: min(420px, calc(100vw - 40px));
  min-height: 320px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.22);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.08), transparent 38%),
    rgba(5,5,5,0.82);
  padding: 48px 34px 38px;
  text-align: center;
  clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 24px, 100% 100%, 24px 100%, 0 calc(100% - 24px));
  box-shadow:
    0 30px 80px rgba(0,0,0,0.72),
    inset 0 1px 0 rgba(255,255,255,0.16),
    0 0 55px rgba(255,255,255,0.08);
}

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

.loader-core::before {
  inset: 18px;
  border: 1px solid rgba(255,255,255,0.12);
  background:
    linear-gradient(90deg, transparent 49.6%, rgba(255,255,255,0.15) 50%, transparent 50.4%),
    linear-gradient(0deg, transparent 49.6%, rgba(255,255,255,0.12) 50%, transparent 50.4%);
}

.loader-core::after {
  left: -35%;
  top: 0;
  width: 35%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.20), transparent);
  transform: skewX(-18deg);
  animation: loader-sweep 1.65s linear infinite;
}

.loader-kicker {
  position: relative;
  z-index: 2;
  align-self: start;
  color: rgba(255,255,255,0.62);
  font: 10px "SFMono-Regular", Consolas, monospace;
  text-transform: uppercase;
}

.loader-core strong {
  position: relative;
  z-index: 2;
  margin-top: 16px;
  font-family: "Arial Black", Impact, sans-serif;
  font-size: clamp(48px, 12vw, 84px);
  line-height: 0.85;
  text-transform: uppercase;
  text-shadow: 0 0 34px rgba(255,255,255,0.18);
}

.loader-ring {
  position: absolute;
  inset: 42px;
  border: 1px dashed rgba(255,255,255,0.3);
  border-radius: 50%;
  animation: loader-spin 5s linear infinite;
}

.loader-ring::before,
.loader-ring::after {
  content: "";
  position: absolute;
  border-radius: inherit;
}

.loader-ring::before {
  inset: 34px;
  border: 1px solid rgba(255,255,255,0.18);
}

.loader-ring::after {
  inset: 74px;
  background: rgba(255,255,255,0.88);
  box-shadow: 0 0 38px rgba(255,255,255,0.45);
}

.loader-bar {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 6px;
  margin-top: 42px;
  border: 1px solid rgba(255,255,255,0.24);
  background: rgba(255,255,255,0.06);
  overflow: hidden;
}

.loader-bar i {
  display: block;
  width: var(--loader-progress, 0%);
  height: 100%;
  background: #fff;
  box-shadow: 0 0 24px rgba(255,255,255,0.65);
  transition: width 0.28s ease;
}

.loader-core small {
  position: relative;
  z-index: 2;
  margin-top: 14px;
  color: rgba(255,255,255,0.58);
  font: 10px "SFMono-Regular", Consolas, monospace;
  text-transform: uppercase;
}

.section-transition {
  position: fixed;
  inset: 0;
  z-index: 10040;
  display: grid;
  place-items: center;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  transition: opacity 0.18s ease, visibility 0.18s ease;
}

.section-transition::before,
.section-transition::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-110%);
}

.section-transition::before {
  background:
    linear-gradient(100deg, #fff 0 8%, #050505 8% 78%, #fff 78% 82%, transparent 82%),
    #030303;
  clip-path: polygon(0 0, 100% 0, calc(100% - 12vw) 100%, 0 100%);
}

.section-transition::after {
  background:
    repeating-linear-gradient(0deg, rgba(255,255,255,0.15) 0 1px, transparent 1px 8px),
    radial-gradient(circle at 60% 50%, rgba(255,255,255,0.14), transparent 35%);
  mix-blend-mode: screen;
}

.section-transition span {
  position: relative;
  z-index: 2;
  color: #fff;
  font: 800 clamp(34px, 8vw, 92px) "Arial Black", Impact, sans-serif;
  line-height: 0.9;
  text-transform: uppercase;
  opacity: 0;
  text-shadow: 2px 0 rgba(255,255,255,0.55), -2px 0 rgba(255,255,255,0.18);
}

.section-transition.is-active {
  opacity: 1;
  visibility: visible;
}

.section-transition.is-active::before {
  animation: section-wipe 0.92s var(--ease) both;
}

.section-transition.is-active::after {
  animation: section-wipe 0.92s var(--ease) 0.06s both;
}

.section-transition.is-active span {
  animation: section-label 0.72s steps(2, jump-none) both;
}

body.page-transition main {
  filter: contrast(1.16) brightness(0.72);
  transition: filter 0.35s ease;
}

.hero.section-arrived::after,
.section-block.section-arrived::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 8;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent, rgba(255,255,255,0.22), transparent),
    repeating-linear-gradient(0deg, rgba(255,255,255,0.14) 0 1px, transparent 1px 6px);
  mix-blend-mode: screen;
  animation: arrival-flash 0.75s ease both;
}

.cut-corner {
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%);
}

.cut-corner-reverse {
  clip-path: polygon(16px 0, 100% 0, 100% 100%, 0 100%, 0 16px);
}

.heading-huge {
  margin: 0;
  font-family: "Arial Black", Impact, sans-serif;
  line-height: 0.85;
  text-transform: uppercase;
}

.liquid-glass,
.glass-card,
.liquid-glass-strong {
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.liquid-glass {
  background: rgba(255, 255, 255, 0.03);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.liquid-glass-strong {
  background: var(--panel-strong);
  box-shadow:
    0 25px 50px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  width: 100%;
  border-bottom: 1px solid rgba(255,255,255,0.10);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.site-header.is-solid {
  background: rgba(3,3,3,0.96);
  box-shadow: 0 18px 50px rgba(0,0,0,0.45);
}

.header-inner {
  width: min(1600px, 100%);
  height: 80px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  position: relative;
  z-index: 60;
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  color: #fff;
  overflow: visible;
  transition: transform 0.35s ease, filter 0.35s ease;
}

.brand-mark .logo-shell {
  fill: #050505;
  stroke: currentColor;
  stroke-width: 18;
  stroke-linejoin: round;
}

.brand-mark .logo-panel,
.brand-mark .logo-eye,
.brand-mark .logo-phone,
.brand-mark .logo-mask,
.brand-mark .logo-pixel {
  fill: currentColor;
}

.brand-mark .logo-band,
.brand-mark .logo-mouth,
.brand-mark .logo-mask-line,
.brand-mark .logo-circuit {
  fill: none;
  stroke: currentColor;
  stroke-linecap: square;
  stroke-linejoin: miter;
}

.brand-mark .logo-panel {
  fill: #050505;
  stroke: currentColor;
  stroke-width: 12;
  stroke-linejoin: round;
}

.brand-mark .logo-band,
.brand-mark .logo-circuit {
  stroke-width: 10;
}

.brand-mark .logo-mouth,
.brand-mark .logo-mask-line {
  stroke-width: 12;
}

.brand:hover .brand-mark {
  filter: drop-shadow(0 0 12px rgba(255,255,255,0.34));
  transform: translateY(-1px) scale(1.04);
}

.brand-word {
  margin-top: 4px;
  font-family: "Arial Black", Impact, sans-serif;
  font-size: 24px;
  text-transform: uppercase;
}

.brand-plus {
  margin-bottom: 18px;
  color: rgba(255,255,255,0.5);
  font: 12px "SFMono-Regular", Consolas, monospace;
}

.desktop-nav,
.header-actions {
  display: flex;
  align-items: center;
}

.desktop-nav {
  gap: 32px;
  font: 12px "SFMono-Regular", Consolas, monospace;
  text-transform: uppercase;
}

.nav-link {
  position: relative;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 1px;
  background: #fff;
  transition: width 0.25s ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: #fff;
}

.nav-link:hover::after,
.nav-link.is-active::after {
  width: 100%;
}

.header-actions {
  gap: 16px;
}

.language-switcher {
  position: relative;
}

.language-chip,
.sound-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 999px;
  background: rgba(255,255,255,0.02);
}

.language-chip {
  height: 32px;
  gap: 8px;
  padding: 0 12px;
  font: 10px "SFMono-Regular", Consolas, monospace;
  line-height: 1;
  text-transform: uppercase;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.language-chip:hover,
.language-switcher.is-open .language-chip {
  border-color: rgba(255,255,255,0.55);
  background: rgba(255,255,255,0.10);
  box-shadow: 0 0 20px rgba(255,255,255,0.08);
}

.language-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 80;
  min-width: 150px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(3,3,3,0.94);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 6px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px) scale(0.97);
  transform-origin: top right;
  transition: opacity 0.22s ease, transform 0.22s var(--ease);
  box-shadow: 0 20px 48px rgba(0,0,0,0.55);
}

.language-switcher.is-open .language-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.language-menu button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 0;
  background: transparent;
  color: rgba(255,255,255,0.72);
  padding: 9px 10px;
  text-align: left;
  font: 800 11px "SFMono-Regular", Consolas, monospace;
  text-transform: uppercase;
  transition: background 0.18s ease, color 0.18s ease;
}

.language-menu button:hover,
.language-menu button.is-active {
  background: #fff;
  color: #000;
}

.language-menu small {
  font-size: 10px;
  font-weight: 400;
  text-transform: none;
  opacity: 0.7;
}

.sound-button {
  width: 32px;
  height: 32px;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.sound-button:hover,
.sound-button.is-on {
  background: #fff;
  color: #000;
}

.sound-button.is-on {
  border-color: #fff;
  box-shadow: 0 0 28px rgba(255,255,255,0.18);
}

.mobile-menu-controls {
  display: flex;
  align-items: center;
  gap: 14px;
}

.mobile-menu-controls .language-menu {
  left: 50%;
  right: auto;
  transform: translate(-50%, -8px) scale(0.97);
  transform-origin: top center;
}

.mobile-menu-controls .language-switcher.is-open .language-menu {
  transform: translate(-50%, 0) scale(1);
}

.menu-button {
  position: relative;
  z-index: 60;
  display: none;
  flex-direction: column;
  gap: 6px;
  width: 44px;
  border: 0;
  background: transparent;
  padding: 8px;
}

.menu-button span {
  display: block;
  height: 2px;
  background: #fff;
  transition: transform 0.25s ease, opacity 0.25s ease, width 0.25s ease;
}

.menu-button span:nth-child(3) {
  width: 18px;
  margin-left: auto;
}

.menu-button.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-button.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-button.is-open span:nth-child(3) {
  width: 100%;
  transform: translateY(-8px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 45;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  background: #030303;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-menu.is-open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  font-family: "Arial Black", Impact, sans-serif;
  font-size: clamp(42px, 12vw, 72px);
  text-transform: uppercase;
}

.btn-primary,
.btn-outline {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  padding: 12px 24px;
  font-weight: 800;
  text-transform: uppercase;
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.btn-primary {
  background: #fff;
  color: #030303;
}

.btn-primary:hover {
  background: #d1d5db;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border-color: var(--border);
  color: #fff;
}

.btn-outline:hover {
  background: rgba(255,255,255,0.10);
  border-color: #fff;
}

.hero {
  position: relative;
  height: var(--screen-height);
  min-height: var(--screen-height);
  padding: var(--hero-top-pad) 0 calc(var(--hero-ticker-height) + var(--hero-ticker-gap));
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.dot-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.1;
  background-image: radial-gradient(circle at 2px 2px, white 1px, transparent 0);
  background-size: 40px 40px;
}

.floating-shapes {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.shape {
  position: absolute;
  color: rgba(255,255,255,0.72);
  opacity: 0;
  filter: drop-shadow(0 0 12px rgba(255,255,255,0.18));
  animation: shape-pop 7s ease-in-out infinite;
  will-change: opacity, transform;
}

.shape-face {
  width: 58px;
  height: 38px;
}

.shape-face i {
  position: absolute;
  top: 5px;
  width: 13px;
  height: 13px;
  border-top: 2px solid currentColor;
  border-left: 2px solid currentColor;
  transform: rotate(45deg);
}

.shape-face i:first-child {
  left: 7px;
}

.shape-face i:nth-child(2) {
  right: 7px;
}

.shape-face b {
  position: absolute;
  left: 50%;
  bottom: 6px;
  width: 14px;
  height: 2px;
  background: currentColor;
  transform: translateX(-50%);
}

.shape-diamond {
  --shape-rotate: 45deg;
  width: 34px;
  height: 34px;
  border: 2px solid currentColor;
}

.shape-cross {
  width: 38px;
  height: 38px;
}

.shape-cross::before,
.shape-cross::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 2px;
  height: 100%;
  background: currentColor;
  transform-origin: center;
}

.shape-cross::before {
  transform: translateX(-50%) rotate(45deg);
}

.shape-cross::after {
  transform: translateX(-50%) rotate(-45deg);
}

.shape-bracket {
  --shape-rotate: -10deg;
  width: 42px;
  height: 42px;
  border: 2px solid currentColor;
  border-right: 0;
}

.shape-bars {
  display: grid;
  gap: 7px;
  width: 46px;
}

.shape-bars i {
  display: block;
  height: 2px;
  background: currentColor;
}

.shape-bars i:nth-child(2) {
  width: 72%;
}

.shape-bars i:nth-child(3) {
  width: 44%;
}

.shape-a { left: 8%; top: 18%; animation-delay: 0.1s; }
.shape-b { right: 12%; top: 64%; animation-delay: 3.3s; }
.shape-c { left: 47%; top: 14%; animation-delay: 1.2s; }
.shape-d { right: 24%; bottom: 18%; animation-delay: 4.5s; }
.shape-e { left: 18%; bottom: 20%; animation-delay: 2.1s; }
.shape-f { right: 7%; top: 28%; animation-delay: 5.2s; }
.shape-g { left: 38%; bottom: 10%; animation-delay: 3.9s; }
.shape-h { --shape-rotate: 180deg; right: 36%; top: 40%; animation-delay: 0.8s; }
.shape-i { left: 4%; top: 54%; animation-delay: 5.9s; }
.shape-j { right: 18%; top: 11%; animation-delay: 2.8s; }

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(1600px, 100%);
  height: calc(var(--screen-height) - var(--hero-top-pad) - var(--hero-ticker-height) - var(--hero-ticker-gap));
  min-height: 0;
  margin: 0 auto;
  padding: 0 24px;
  flex: 0 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(460px, 1fr);
  grid-auto-rows: minmax(0, 1fr);
  align-items: center;
  gap: 32px;
}

.hero-copy {
  position: relative;
  top: clamp(-28px, -2.2vh, -16px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.status-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: clamp(24px, 3vh, 30px);
}

.status-chip,
.status-hot {
  padding: 6px 12px;
  font: 10px "SFMono-Regular", Consolas, monospace;
  text-transform: uppercase;
}

.status-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(0,0,0,0.5);
}

.status-hot {
  background: #fff;
  color: #000;
  font-weight: 800;
}

.status-line {
  width: 48px;
  height: 1px;
  background: rgba(255,255,255,0.3);
}

.pulse-dot {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
}

.pulse-dot::after {
  content: "";
  position: absolute;
  inset: -2px;
  border: 1px solid #fff;
  border-radius: 50%;
  animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

.title-stack h1 {
  max-width: 100%;
  font-size: clamp(72px, 10vw, 150px);
}

.title-stack,
.title-stack * {
  cursor: default;
  user-select: none;
}

.ticker-row {
  display: flex;
  align-items: baseline;
  gap: 24px;
}

.ticker-row h2 {
  margin: 8px 0 0;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1;
}

.slash-bars {
  display: flex;
  gap: 8px;
}

.slash-bars i {
  width: 8px;
  height: 32px;
  transform: skewX(14deg);
  background: #fff;
}

.slash-bars i:nth-child(2) {
  opacity: 0.5;
}

.slash-bars i:nth-child(3) {
  opacity: 0.2;
}

.face {
  margin-left: auto;
  color: rgba(255,255,255,0.5);
  font: 20px "SFMono-Regular", Consolas, monospace;
}

.hero-text {
  max-width: 440px;
  margin: clamp(24px, 3vh, 30px) 0 clamp(30px, 4vh, 36px);
  border-left: 2px solid #fff;
  padding-left: 24px;
  color: rgba(255,255,255,0.80);
  font: 15px/1.65 "SFMono-Regular", Consolas, monospace;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.button-row.center {
  justify-content: center;
}

.ca-card {
  position: relative;
  width: 100%;
  margin-top: clamp(28px, 3.5vh, 34px);
  border: 1px solid rgba(255,255,255,0.2);
  background: #0a0a0a;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
}

.ca-card small {
  display: block;
  margin-bottom: 6px;
  color: rgba(255,255,255,0.5);
  font: 10px "SFMono-Regular", Consolas, monospace;
  text-transform: uppercase;
}

.ca-card strong {
  font: 14px "SFMono-Regular", Consolas, monospace;
}

.copy-icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  background: rgba(255,255,255,0.1);
  transition: background 0.2s ease, color 0.2s ease;
}

.ca-card:hover .copy-icon {
  background: #fff;
  color: #000;
}

.barcode {
  position: absolute;
  right: 56px;
  bottom: 12px;
  display: flex;
  gap: 2px;
  opacity: 0.5;
}

.barcode i {
  width: 4px;
  height: 14px;
  background: #fff;
}

.hero-visual {
  position: relative;
  min-height: 0;
  height: 100%;
  align-self: stretch;
  display: flex;
  align-items: end;
  justify-content: center;
}

.hero-visual::after {
  content: "";
  position: absolute;
  left: 0;
  right: -10%;
  bottom: calc(-1 * var(--hero-ticker-gap));
  z-index: 3;
  height: clamp(120px, 18vh, 190px);
  pointer-events: none;
  background: linear-gradient(180deg, rgba(3,3,3,0) 0%, rgba(3,3,3,0.72) 58%, #000 100%);
}

.orbit {
  position: absolute;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  pointer-events: none;
}

.orbit.one {
  width: 112%;
  aspect-ratio: 1;
  border-style: dashed;
  animation: spin-slow 20s linear infinite;
}

.orbit.two {
  width: 76%;
  aspect-ratio: 1;
}

.visual-notes,
.protocol-card {
  position: absolute;
  z-index: 1;
  color: rgba(255,255,255,0.65);
  font: 10px "SFMono-Regular", Consolas, monospace;
}

.visual-notes {
  top: 12%;
  right: 8%;
}

.protocol-card {
  top: 0;
  right: 0;
  border: 1px solid rgba(255,255,255,0.2);
  padding: 8px;
}

.protocol-card i {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 6px;
  border-radius: 50%;
  background: #fff;
}

.pixel-stack {
  position: absolute;
  left: 0;
  top: 24%;
  display: grid;
  gap: 8px;
}

.pixel-stack i {
  width: 16px;
  height: 16px;
  border: 1px solid #fff;
}

.pixel-stack i:first-child {
  background: #fff;
}

.pixel-stack i:last-child {
  background: rgba(255,255,255,0.5);
}

.character-container {
  position: absolute;
  inset: 0;
  z-index: 2;
  margin: 0;
  width: auto;
  height: auto;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  filter: drop-shadow(0 0 60px rgba(255,255,255,0.15)) drop-shadow(0 20px 40px rgba(0,0,0,0.6));
}

.character-container::before {
  content: "";
  display: none;
}

.character-image {
  width: min(51vw, 760px);
  height: auto;
  margin-bottom: 0;
  max-width: min(120vw, 780px);
  object-fit: contain;
  object-position: center top;
  image-rendering: auto;
  backface-visibility: hidden;
  transform: translate3d(0, -32px, 0);
}

.hero-ticker {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 4;
  width: 100%;
  height: var(--hero-ticker-height);
  border-top: 1px solid rgba(255,255,255,0.2);
  background: #000;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.ticker-track {
  width: max-content;
  display: flex;
  white-space: nowrap;
  font: 12px "SFMono-Regular", Consolas, monospace;
  text-transform: uppercase;
  animation: marquee 18s linear infinite;
  will-change: transform;
}

.ticker-group {
  flex: 0 0 auto;
  display: flex;
  gap: 18px;
  padding-right: 18px;
}

.ticker-track span,
.ticker-group span {
  color: rgba(255,255,255,0.4);
}

.ticker-track strong,
.ticker-group strong {
  color: #fff;
}

.section-block {
  position: relative;
  min-height: var(--screen-height);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 96px 0;
  display: flex;
  align-items: center;
}

.lore,
.roadmap,
.airdrop {
  background: #030303;
}

.chart {
  background: #0a0a0a;
}

.chart {
  height: var(--screen-height);
  min-height: var(--screen-height);
  padding: clamp(48px, 6vh, 72px) 0 clamp(44px, 5.5vh, 60px);
  align-items: stretch;
}

.chart .section-inner {
  min-height: 0;
  display: flex;
  flex-direction: column;
}

.chart .center-head {
  margin-bottom: clamp(16px, 3vh, 28px);
}

.section-inner {
  position: relative;
  z-index: 1;
  width: min(1600px, 100%);
  margin: 0 auto;
  padding: 0 24px;
}

.section-inner.narrow {
  width: min(1200px, 100%);
}

.section-head {
  margin-bottom: 64px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.section-head h2,
.center-head h2 {
  font-size: clamp(48px, 7vw, 78px);
}

.section-head p,
.section-head span,
.center-head span {
  color: rgba(255,255,255,0.5);
  font: 12px "SFMono-Regular", Consolas, monospace;
  text-transform: uppercase;
}

.section-chip,
.center-head span {
  display: inline-block;
  border: 1px solid rgba(255,255,255,0.2);
  padding: 6px 12px;
  margin-bottom: 16px;
}

.center-head {
  margin-bottom: 64px;
  text-align: center;
}

.lore-stack {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.lore-chapter {
  min-height: var(--screen-height);
  display: flex;
  align-items: center;
  gap: 64px;
}

.lore-chapter.reverse {
  flex-direction: row-reverse;
}

.lore-art {
  position: relative;
  width: 320px;
  height: 320px;
  padding: 16px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  overflow: hidden;
  animation: float-layers 6s ease-in-out infinite;
}

.lore-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.92;
  filter: grayscale(1) contrast(1.08);
  transition: opacity 0.45s ease, transform 0.45s ease, filter 0.45s ease;
}

.lore-art::after {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(255,255,255,0.12);
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 49.7%, rgba(255,255,255,0.18) 50%, transparent 50.3%),
    linear-gradient(0deg, transparent 49.7%, rgba(255,255,255,0.12) 50%, transparent 50.3%);
  mix-blend-mode: screen;
}

.lore-chapter:hover .lore-art img {
  opacity: 1;
  transform: scale(1.035);
  filter: grayscale(1) contrast(1.18) brightness(1.08);
}

.lore-copy {
  flex: 1;
  border-left: 1px solid rgba(255,255,255,0.2);
  padding-left: 32px;
}

.reverse .lore-copy {
  border-left: 0;
  border-right: 1px solid rgba(255,255,255,0.2);
  padding-left: 0;
  padding-right: 32px;
  text-align: right;
}

.lore-copy span {
  display: inline-block;
  background: #030303;
  font: 12px "SFMono-Regular", Consolas, monospace;
}

.lore-copy h3 {
  margin: 16px 0;
  font-size: 24px;
  text-transform: uppercase;
}

.lore-copy p {
  max-width: 560px;
  color: rgba(255,255,255,0.8);
  font: 15px/1.8 "SFMono-Regular", Consolas, monospace;
}

.reverse .lore-copy p {
  margin-left: auto;
}

.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.road-card {
  position: relative;
  min-height: 430px;
  border: 1px solid rgba(255,255,255,0.2);
  background: #050505;
  padding: 24px;
  overflow: hidden;
  isolation: isolate;
  transition:
    transform 0.35s var(--ease),
    border-color 0.35s ease,
    background 0.35s ease,
    box-shadow 0.35s ease;
}

.road-card::before,
.road-card::after {
  content: "";
  position: absolute;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s ease, transform 0.55s var(--ease);
}

.road-card::before {
  z-index: 0;
  inset: -40% -65%;
  background: linear-gradient(105deg, transparent 38%, rgba(255,255,255,0.22) 49%, transparent 60%);
  mix-blend-mode: screen;
  transform: translateX(-55%) skewX(-14deg);
}

.road-card::after {
  z-index: 1;
  inset: 10px;
  border: 1px solid rgba(255,255,255,0.24);
  background:
    linear-gradient(90deg, rgba(255,255,255,0.45), transparent 22%) top left / 72px 1px no-repeat,
    linear-gradient(180deg, rgba(255,255,255,0.45), transparent 22%) top left / 1px 72px no-repeat,
    linear-gradient(270deg, rgba(255,255,255,0.45), transparent 22%) bottom right / 72px 1px no-repeat,
    linear-gradient(0deg, rgba(255,255,255,0.45), transparent 22%) bottom right / 1px 72px no-repeat;
}

.road-card > * {
  position: relative;
  z-index: 2;
}

.road-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255,255,255,0.55);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.08), transparent 38%),
    #050505;
  box-shadow:
    0 22px 55px rgba(0,0,0,0.55),
    inset 0 1px 0 rgba(255,255,255,0.16),
    0 0 34px rgba(255,255,255,0.08);
}

.road-card:hover::before {
  opacity: 1;
  transform: translateX(55%) skewX(-14deg);
}

.road-card:hover::after {
  opacity: 1;
}

.road-card h3,
.road-card ul,
.road-card p,
.road-card b,
.road-card > span {
  transition:
    transform 0.35s var(--ease),
    color 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.road-card:hover h3 {
  transform: translateX(6px);
  text-shadow: 0 0 22px rgba(255,255,255,0.28);
}

.road-card:hover ul {
  border-left-color: rgba(255,255,255,0.72);
}

.road-card:hover > span {
  box-shadow: -10px 10px 0 rgba(255,255,255,0.10);
}

.road-card > span {
  position: absolute;
  right: 0;
  top: 0;
  background: #fff;
  color: #000;
  padding: 5px 12px;
  font: 800 12px "SFMono-Regular", Consolas, monospace;
}

.road-card h3 {
  margin: 42px 0 18px;
  font-size: 24px;
  line-height: 1.1;
  text-transform: uppercase;
}

.road-card em {
  display: inline-block;
  margin-bottom: 16px;
  padding: 4px 8px;
  background: rgba(255,255,255,0.1);
  font-style: normal;
  font-weight: 800;
}

.road-card ul {
  margin: 0 0 28px;
  padding: 0 0 0 16px;
  border-left: 1px solid rgba(255,255,255,0.2);
  list-style: none;
  color: rgba(255,255,255,0.7);
  font: 14px/1.6 "SFMono-Regular", Consolas, monospace;
}

.road-card b {
  display: block;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 16px;
  color: rgba(255,255,255,0.5);
  font-size: 10px;
  text-transform: uppercase;
}

.road-card p {
  font: 12px/1.6 "SFMono-Regular", Consolas, monospace;
}

.road-card.inverted {
  background: #fff;
  color: #000;
}

.road-card.inverted::before {
  background: linear-gradient(105deg, transparent 38%, rgba(0,0,0,0.16) 49%, transparent 60%);
  mix-blend-mode: multiply;
}

.road-card.inverted::after {
  border-color: rgba(0,0,0,0.24);
  background:
    linear-gradient(90deg, rgba(0,0,0,0.45), transparent 22%) top left / 72px 1px no-repeat,
    linear-gradient(180deg, rgba(0,0,0,0.45), transparent 22%) top left / 1px 72px no-repeat,
    linear-gradient(270deg, rgba(0,0,0,0.45), transparent 22%) bottom right / 72px 1px no-repeat,
    linear-gradient(0deg, rgba(0,0,0,0.45), transparent 22%) bottom right / 1px 72px no-repeat;
}

.road-card.inverted:hover {
  border-color: rgba(255,255,255,0.82);
  background:
    linear-gradient(145deg, rgba(0,0,0,0.12), transparent 34%),
    #fff;
  box-shadow:
    0 22px 55px rgba(0,0,0,0.62),
    inset 0 1px 0 rgba(0,0,0,0.16),
    0 0 34px rgba(255,255,255,0.14);
}

.road-card.inverted > span {
  background: #000;
  color: #fff;
}

.road-card.inverted ul {
  color: rgba(0,0,0,0.7);
  border-left-color: rgba(0,0,0,0.2);
}

.road-card.inverted b {
  color: rgba(0,0,0,0.5);
  border-top-color: rgba(0,0,0,0.1);
}

.airdrop {
  min-height: var(--screen-height);
  padding: clamp(34px, 4vh, 52px) 0 clamp(28px, 3.4vh, 44px);
  align-items: flex-start;
  overflow: hidden;
  isolation: isolate;
}

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

.airdrop::before {
  opacity: 0.2;
  background:
    linear-gradient(90deg, transparent 49.85%, rgba(255,255,255,0.14) 50%, transparent 50.15%),
    linear-gradient(0deg, transparent 49.85%, rgba(255,255,255,0.08) 50%, transparent 50.15%);
  background-size: 86px 86px;
}

.airdrop::after {
  opacity: 0.42;
  background:
    linear-gradient(115deg, transparent 0 22%, rgba(255,255,255,0.08) 22.2% 22.5%, transparent 22.7% 100%),
    repeating-linear-gradient(0deg, transparent 0 16px, rgba(255,255,255,0.035) 16px 17px);
  mix-blend-mode: screen;
}

.airdrop .section-inner {
  min-height: calc(var(--screen-height) - clamp(62px, 7.4vh, 96px));
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: clamp(14px, 1.8vh, 24px);
}

.airdrop .section-head {
  margin-bottom: 0;
  align-items: end;
}

.airdrop .section-head h2 {
  font-size: clamp(50px, 5.5vw, 80px);
}

.airdrop .section-head p {
  max-width: 600px;
}

.airdrop-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(340px, 0.54fr);
  gap: 24px;
  align-items: stretch;
  min-height: 0;
}

.airdrop-console,
.airdrop-rules {
  position: relative;
  border: 1px solid rgba(255,255,255,0.22);
  overflow: hidden;
}

.airdrop-console {
  height: clamp(700px, calc(var(--screen-height) - 186px), 780px);
  min-height: 0;
  display: grid;
  grid-template-rows: auto auto auto minmax(430px, 1fr) auto auto;
  gap: 10px;
  padding: 14px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.08), transparent 35%),
    #050505;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.13),
    0 28px 80px rgba(0,0,0,0.5);
}

.airdrop-console::before {
  content: "";
  position: absolute;
  inset: -50% -70%;
  pointer-events: none;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.16) 50%, transparent 60%);
  transform: translateX(-48%) skewX(-14deg);
  animation: console-sweep 7s var(--ease) infinite;
}

.airdrop-console::after {
  content: "";
  position: absolute;
  inset: 12px;
  pointer-events: none;
  border: 1px solid rgba(255,255,255,0.12);
  background:
    linear-gradient(90deg, rgba(255,255,255,0.45), transparent 20%) top left / 96px 1px no-repeat,
    linear-gradient(180deg, rgba(255,255,255,0.45), transparent 20%) top left / 1px 96px no-repeat,
    linear-gradient(270deg, rgba(255,255,255,0.45), transparent 20%) bottom right / 96px 1px no-repeat,
    linear-gradient(0deg, rgba(255,255,255,0.45), transparent 20%) bottom right / 1px 96px no-repeat;
}

.airdrop-console > * {
  position: relative;
  z-index: 1;
}

.airdrop-console-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: rgba(255,255,255,0.58);
  font: 800 12px "SFMono-Regular", Consolas, monospace;
  text-transform: uppercase;
}

.airdrop-console-top i {
  width: 54px;
  height: 10px;
  background:
    linear-gradient(90deg, #fff 0 10px, rgba(255,255,255,0.45) 10px 22px, transparent 22px 32px, rgba(186,255,41,0.78) 32px 100%);
  box-shadow: 0 0 22px rgba(186,255,41,0.24);
}

.wallet-entry {
  min-width: 0;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.035);
  padding: 10px 12px;
}

.wallet-entry label {
  display: block;
  margin-bottom: 6px;
  color: rgba(255,255,255,0.5);
  font: 800 11px "SFMono-Regular", Consolas, monospace;
  text-transform: uppercase;
}

.wallet-input-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
}

.wallet-input-row input {
  min-width: 0;
  height: 38px;
  border: 1px solid rgba(255,255,255,0.2);
  background: #070707;
  color: #fff;
  padding: 0 12px;
  outline: 0;
  font: 14px "SFMono-Regular", Consolas, monospace;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.wallet-input-row input:focus {
  border-color: rgba(255,255,255,0.65);
  background: #000;
  box-shadow: 0 0 0 3px rgba(255,255,255,0.08);
}

.wallet-input-row input::placeholder {
  color: rgba(255,255,255,0.36);
}

.wallet-input-row .btn-outline {
  min-height: 38px;
  padding: 7px 14px;
  white-space: nowrap;
}

.wallet-entry small,
.wallet-entry code {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.wallet-entry small {
  color: rgba(255,255,255,0.5);
  font: 800 11px "SFMono-Regular", Consolas, monospace;
  text-transform: uppercase;
}

.wallet-entry code {
  color: rgba(255,255,255,0.86);
  font: 14px "SFMono-Regular", Consolas, monospace;
}

.airdrop-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.airdrop-stats p {
  min-width: 0;
  margin: 0;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.04);
  padding: 10px;
}

.airdrop-stats p:nth-child(2) {
  background: #fff;
  color: #030303;
}

.airdrop-stats span {
  display: block;
  margin-bottom: 6px;
  color: rgba(255,255,255,0.48);
  font: 800 10px "SFMono-Regular", Consolas, monospace;
  text-transform: uppercase;
}

.airdrop-stats p:nth-child(2) span {
  color: rgba(0,0,0,0.54);
}

.airdrop-stats strong {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  color: inherit;
  font: 900 18px "SFMono-Regular", Consolas, monospace;
  line-height: 1;
  white-space: nowrap;
}

.airdrop-arena {
  position: relative;
  min-height: 430px;
  border: 1px solid rgba(255,255,255,0.18);
  background:
    linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255,255,255,0.06) 1px, transparent 1px),
    radial-gradient(ellipse at center, rgba(186,255,41,0.12), transparent 58%),
    #000;
  background-size: 32px 32px, 32px 32px, auto, auto;
  overflow: hidden;
  touch-action: none;
}

.airdrop-arena::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px dashed rgba(255,255,255,0.2);
  pointer-events: none;
}

.airdrop-arena::after {
  content: "SIGNAL CATCH / LIVE";
  position: absolute;
  left: 18px;
  top: 18px;
  color: rgba(255,255,255,0.4);
  font: 800 11px "SFMono-Regular", Consolas, monospace;
  text-transform: uppercase;
}

.airdrop-arena p {
  position: absolute;
  left: 50%;
  top: 48%;
  z-index: 2;
  width: min(520px, calc(100% - 52px));
  margin: 0;
  transform: translate(-50%, -50%);
  color: rgba(255,255,255,0.54);
  font: 12px/1.6 "SFMono-Regular", Consolas, monospace;
  text-align: center;
  text-transform: uppercase;
  pointer-events: none;
}

.airdrop-arena.is-running p,
.airdrop-arena.has-played p {
  opacity: 0;
}

.airdrop-target {
  position: absolute;
  top: 0;
  left: 0;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  color: #fff;
  filter: drop-shadow(0 0 10px rgba(186,255,41,0.16)) drop-shadow(0 5px 0 rgba(0,0,0,0.72));
  pointer-events: none;
  will-change: transform;
}

.airdrop-target img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  user-select: none;
}

.airdrop-pop {
  position: absolute;
  z-index: 4;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255,255,255,0.75);
  background: #fff;
  color: #000;
  padding: 3px 9px;
  font: 900 12px "SFMono-Regular", Consolas, monospace;
  pointer-events: none;
  animation: catch-pop 560ms var(--ease) forwards;
}

.airdrop-basket {
  position: absolute;
  left: 50%;
  bottom: 14px;
  width: clamp(112px, 7vw, 132px);
  height: auto;
  aspect-ratio: 1282 / 1053;
  transform: translateX(-50%);
  filter: drop-shadow(0 0 12px rgba(186,255,41,0.14)) drop-shadow(0 5px 0 rgba(0,0,0,0.75));
  will-change: left;
}

.airdrop-basket img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  user-select: none;
}

.airdrop-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.airdrop-controls .btn-primary,
.airdrop-controls .btn-outline {
  min-height: 42px;
  padding: 9px 18px;
}

.airdrop-controls button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.airdrop-status-line {
  margin: 0;
  border-top: 1px solid rgba(255,255,255,0.14);
  padding-top: 12px;
  color: rgba(255,255,255,0.62);
  font: 12px/1.45 "SFMono-Regular", Consolas, monospace;
  text-transform: uppercase;
}

.airdrop-rules {
  height: clamp(700px, calc(var(--screen-height) - 186px), 780px);
  min-height: 0;
  align-self: start;
  background: #fff;
  color: #030303;
  padding: 22px;
  box-shadow: 0 28px 80px rgba(0,0,0,0.46);
}

.airdrop-rules::before {
  content: "";
  position: absolute;
  inset: 10px;
  pointer-events: none;
  border: 1px solid rgba(0,0,0,0.14);
  background:
    linear-gradient(90deg, rgba(0,0,0,0.34), transparent 22%) top left / 72px 1px no-repeat,
    linear-gradient(180deg, rgba(0,0,0,0.34), transparent 22%) top left / 1px 72px no-repeat,
    linear-gradient(270deg, rgba(0,0,0,0.34), transparent 22%) bottom right / 72px 1px no-repeat,
    linear-gradient(0deg, rgba(0,0,0,0.34), transparent 22%) bottom right / 1px 72px no-repeat;
}

.airdrop-rules > * {
  position: relative;
  z-index: 1;
}

.airdrop-rules > span {
  display: inline-block;
  margin-bottom: 14px;
  border: 1px solid rgba(0,0,0,0.22);
  padding: 5px 10px;
  color: rgba(0,0,0,0.58);
  font: 900 11px "SFMono-Regular", Consolas, monospace;
  text-transform: uppercase;
}

.airdrop-rules h3 {
  margin: 0 0 18px;
  font-size: clamp(26px, 2.3vw, 32px);
  line-height: 0.96;
  text-transform: uppercase;
}

.airdrop-rules ol {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.airdrop-rules li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  border-top: 1px solid rgba(0,0,0,0.14);
  padding: 11px 0;
}

.airdrop-rules li:last-child {
  border-bottom: 1px solid rgba(0,0,0,0.14);
}

.airdrop-rules strong {
  min-width: 40px;
  display: inline-grid;
  place-items: center;
  background: #030303;
  color: #fff;
  padding: 5px 8px;
  font: 900 12px "SFMono-Regular", Consolas, monospace;
}

.airdrop-rules li span {
  color: rgba(0,0,0,0.74);
  font: 12px/1.45 "SFMono-Regular", Consolas, monospace;
  text-transform: uppercase;
}

.chart-box {
  position: relative;
  flex: 1 1 auto;
  min-height: 0;
  border: 1px solid rgba(255,255,255,0.2);
  background: #000;
  overflow: hidden;
}

.chart-box iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.dexscreener-frame {
  position: absolute;
  inset: 5px;
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  background: #000;
}

.chart-placeholder {
  position: absolute;
  inset: 5px;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  background-image:
    linear-gradient(45deg, rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(-45deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 20px 20px;
}

.chart-placeholder svg {
  margin-bottom: 16px;
}

.chart-placeholder span {
  color: rgba(255,255,255,0.5);
  font: 14px "SFMono-Regular", Consolas, monospace;
  text-transform: uppercase;
}

.chart-dots {
  display: flex;
  gap: 5px;
  margin-top: 16px;
}

.chart-dots i {
  width: 8px;
  height: 8px;
  background: rgba(255,255,255,0.2);
  animation: blink 1s infinite alternate;
}

.chart-dots i:nth-child(2) {
  animation-delay: 0.2s;
}

.chart-dots i:nth-child(3) {
  animation-delay: 0.4s;
}

.final-cta {
  flex: 0 0 auto;
  margin-top: clamp(20px, 4vh, 40px);
  border: 1px solid rgba(255,255,255,0.1);
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.05), transparent);
  padding: clamp(22px, 4vh, 40px);
  text-align: center;
}

.final-cta h2 {
  margin: 0 0 clamp(16px, 3vh, 24px);
  font-size: clamp(30px, 4vw, 48px);
  text-transform: uppercase;
}

.chart .final-cta {
  margin-top: clamp(14px, 2.4vh, 24px);
  padding: clamp(18px, 2.7vh, 28px);
}

.chart .final-cta h2 {
  margin-bottom: clamp(12px, 2vh, 18px);
  font-size: clamp(26px, 3.2vw, 42px);
}

.chart .button-row.center {
  gap: 12px;
}

.chart .btn-primary,
.chart .btn-outline {
  min-height: 44px;
  padding: 10px 20px;
}

.copy-notification {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transform: translateY(30px) scale(0.95);
  transition: all 0.5s var(--ease);
}

.copy-notification.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.notification-content {
  position: relative;
  overflow: hidden;
  min-width: 260px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-left: 4px solid #000;
  background: rgba(255,255,255,0.96);
  color: #000;
  padding: 16px 24px;
  font: 14px "SFMono-Regular", Consolas, monospace;
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 16px 100%, 0 calc(100% - 16px));
  animation: notification-glow 2s ease-in-out infinite;
}

.check-mark {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #000;
  color: #fff;
  font-weight: 900;
}

.notification-content strong,
.notification-content small {
  display: block;
}

.notification-content small {
  color: rgba(0,0,0,0.6);
  font-size: 12px;
}

.notification-content i {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 4px;
  background: #000;
  animation: progress 3s linear forwards;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.glitch-hover:hover {
  position: relative;
}

.glitch-hover:hover::before {
  content: attr(data-text);
  position: absolute;
  left: -2px;
  text-shadow: 2px 0 #fff;
  background: var(--bg);
  overflow: hidden;
  animation: glitch-anim 0.4s infinite linear alternate-reverse;
}

@keyframes marquee {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-25%, 0, 0);
  }
}

@keyframes loader-sweep {
  to {
    left: 125%;
  }
}

@keyframes loader-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes section-wipe {
  0% {
    transform: translateX(-115%);
  }
  45% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(115%);
  }
}

@keyframes section-label {
  0%,
  100% {
    opacity: 0;
    transform: translateY(16px) skewX(-8deg);
  }
  22%,
  62% {
    opacity: 1;
    transform: translateY(0) skewX(0);
  }
  36% {
    transform: translate(-7px, 0) skewX(10deg);
  }
  48% {
    transform: translate(6px, -2px) skewX(-8deg);
  }
}

@keyframes arrival-flash {
  0% {
    opacity: 0;
    transform: translateX(-30%);
  }
  18% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
    transform: translateX(30%);
  }
}

@keyframes pulse-ring {
  0% {
    transform: scale(0.8);
    opacity: 0.5;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}

@keyframes spin-slow {
  to {
    transform: rotate(360deg);
  }
}

@keyframes shape-pop {
  0%,
  18%,
  100% {
    opacity: 0;
    transform: translate3d(0, 10px, 0) scale(0.78) rotate(var(--shape-rotate, 0deg));
  }
  24%,
  46% {
    opacity: 0.78;
    transform: translate3d(0, 0, 0) scale(1) rotate(var(--shape-rotate, 0deg));
  }
  52% {
    opacity: 0;
    transform: translate3d(0, -8px, 0) scale(1.08) rotate(var(--shape-rotate, 0deg));
  }
}

@keyframes float-layers {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes glitch-anim {
  0% { clip-path: inset(10% 0 80% 0); transform: translate(-2px, 2px); }
  20% { clip-path: inset(80% 0 5% 0); transform: translate(2px, -2px); }
  40% { clip-path: inset(50% 0 30% 0); transform: translate(-2px, 0); }
  60% { clip-path: inset(10% 0 60% 0); transform: translate(2px, 2px); }
  80% { clip-path: inset(30% 0 20% 0); transform: translate(-2px, -2px); }
  100% { clip-path: inset(50% 0 30% 0); transform: translate(0); }
}

@keyframes notification-glow {
  0%,
  100% {
    box-shadow: 0 0 40px rgba(255,255,255,0.3), 0 10px 30px rgba(0,0,0,0.3);
  }
  50% {
    box-shadow: 0 0 60px rgba(255,255,255,0.5), 0 15px 40px rgba(0,0,0,0.4);
  }
}

@keyframes progress {
  from { width: 100%; }
  to { width: 0%; }
}

@keyframes blink {
  from { opacity: 0.2; }
  to { opacity: 1; }
}

@keyframes console-sweep {
  0%,
  18% {
    transform: translateX(-52%) skewX(-14deg);
    opacity: 0;
  }
  36% {
    opacity: 1;
  }
  58%,
  100% {
    transform: translateX(52%) skewX(-14deg);
    opacity: 0;
  }
}

@keyframes signal-drop {
  0% {
    transform: translate3d(-50%, -20%, 0) rotate(0deg);
    opacity: 0;
  }
  12%,
  82% {
    opacity: 1;
  }
  100% {
    transform: translate3d(-50%, 390px, 0) rotate(160deg);
    opacity: 0;
  }
}

@keyframes catch-pop {
  0% {
    opacity: 0;
    transform: translate(-50%, -20%) scale(0.84);
  }
  18% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -120%) scale(1.08);
  }
}

@media (max-width: 1200px) {
  .hero {
    height: auto;
    min-height: var(--screen-height);
  }

  .hero-inner {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    height: auto;
    min-height: calc(var(--screen-height) - var(--hero-top-pad) - var(--hero-ticker-height) - var(--hero-ticker-gap));
    flex: 1 1 auto;
  }

  .hero-copy {
    top: 0;
  }

  .hero-visual {
    height: clamp(460px, 56vh, 620px);
    min-height: 0;
  }

  .roadmap-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .airdrop-console {
    height: auto;
    min-height: 760px;
  }

  .airdrop-rules {
    height: auto;
    min-height: auto;
  }
}

@media (max-width: 980px) {
  .desktop-nav,
  .header-actions {
    display: none;
  }

  .menu-button {
    display: flex;
  }

  .section-head,
  .lore-chapter,
  .lore-chapter.reverse {
    flex-direction: column;
    align-items: flex-start;
  }

  .reverse .lore-copy {
    border-right: 0;
    border-left: 1px solid rgba(255,255,255,0.2);
    padding-right: 0;
    padding-left: 32px;
    text-align: left;
  }

  .reverse .lore-copy p {
    margin-left: 0;
  }

}

@media (max-width: 680px) {
  .header-inner {
    height: 72px;
    padding: 0 18px;
  }

  .brand-word {
    font-size: 20px;
  }

  .hero {
    --hero-top-pad: 88px;
    padding-top: 88px;
  }

  .hero-inner,
  .section-inner {
    padding: 0 18px;
  }

  .status-row {
    align-items: stretch;
    flex-direction: column;
  }

  .status-line {
    display: none;
  }

  .title-stack h1 {
    font-size: clamp(46px, 14.8vw, 64px);
    white-space: nowrap;
  }

  .ticker-row {
    gap: 16px;
  }

  .face {
    display: none;
  }

  .button-row,
  .button-row.center {
    display: grid;
    grid-template-columns: 1fr;
  }

  .btn-primary,
  .btn-outline {
    width: 100%;
  }

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

  .airdrop-grid {
    gap: 18px;
  }

  .airdrop {
    padding: 48px 0 56px;
  }

  .airdrop .section-inner {
    min-height: 0;
    gap: 24px;
  }

  .airdrop .section-head {
    gap: 18px;
  }

  .airdrop-console {
    height: auto;
    min-height: auto;
    padding: 18px;
    gap: 14px;
  }

  .wallet-input-row {
    grid-template-columns: 1fr;
  }

  .wallet-input-row .btn-outline {
    width: 100%;
  }

  .airdrop-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .airdrop-stats p {
    padding: 10px;
  }

  .airdrop-stats strong {
    font-size: 18px;
  }

  .airdrop-arena {
    min-height: 440px;
  }

  .airdrop-target {
    width: 44px;
    height: 44px;
  }

  .airdrop-basket {
    width: min(120px, 38vw);
  }

  .airdrop-controls {
    display: grid;
    grid-template-columns: 1fr;
  }

  .airdrop-controls .btn-primary,
  .airdrop-controls .btn-outline {
    width: 100%;
  }

  .airdrop-rules {
    padding: 22px;
  }

  .airdrop-rules h3 {
    font-size: 26px;
  }

  .airdrop-rules li {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .hero-visual {
    height: 390px;
    min-height: 0;
  }

  .orbit,
  .visual-notes,
  .protocol-card,
  .pixel-stack {
    display: none;
  }

  .shape-c,
  .shape-g,
  .shape-h,
  .shape-j {
    display: none;
  }

  .lore-art {
    width: min(320px, 100%);
    height: auto;
    aspect-ratio: 1;
  }

  .section-block {
    padding: 72px 0;
  }

  .chart {
    padding: clamp(36px, 7vh, 56px) 0 clamp(18px, 4vh, 28px);
  }

  .section-head h2,
  .center-head h2 {
    max-width: 100%;
    font-size: clamp(36px, 10vw, 44px);
  }

  .chart .center-head {
    margin-bottom: 18px;
  }

  .chart-box {
    min-height: 0;
  }

  .chart .final-cta {
    margin-top: 16px;
    padding: 18px;
  }

  .chart .final-cta h2 {
    margin-bottom: 14px;
    font-size: clamp(22px, 7vw, 30px);
  }

  .chart .button-row.center {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .chart .button-row.center > *:last-child {
    grid-column: 1 / -1;
  }

  .chart .btn-primary,
  .chart .btn-outline {
    min-height: 42px;
    padding: 9px 12px;
    font-size: 12px;
  }

  .copy-notification {
    left: 16px;
    right: 16px;
    bottom: 16px;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
