:root {
  --orange: #f4661f;
  --orange-hi: #ff8038;
  --orange-dim: rgba(244, 102, 31, 0.08);
  --green: #46e08c;
  --bg: #0d0e10;
  --bg-deep: #0a0b0c;
  --panel: #131518;
  --panel-2: #17191d;
  --line: #26292e;
  --line-hi: #34383e;
  --text: #e8e6e1;
  --muted: #8b9096;
  --faint: #5c6167;
  --mono: "JetBrains Mono", "Consolas", monospace;
  --pixel: "Press Start 2P", monospace;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

html {
  background:
    repeating-linear-gradient(0deg, transparent 0 2px, rgba(255, 255, 255, 0.008) 2px 4px),
    radial-gradient(900px 700px at 88% -5%, rgba(244, 102, 31, 0.13), transparent 65%),
    radial-gradient(1100px 900px at -12% 40%, rgba(244, 102, 31, 0.07), transparent 60%),
    linear-gradient(180deg, #121014 0%, var(--bg) 40%),
    var(--bg);
  background-attachment: scroll, fixed, fixed, fixed, scroll;
}

body {
  font-family: var(--mono);
  font-size: 14px;
  background: transparent;
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    repeating-linear-gradient(0deg, transparent 0 47px, rgba(244, 102, 31, 0.16) 47px 48px),
    repeating-linear-gradient(90deg, transparent 0 47px, rgba(244, 102, 31, 0.16) 47px 48px);
  -webkit-mask-image: radial-gradient(closest-side, #000, transparent);
  mask-image: radial-gradient(closest-side, #000, transparent);
  -webkit-mask-size: 720px 520px;
  mask-size: 720px 520px;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  opacity: 0;
  animation: grid-drift-a 19s linear infinite;
}

body::after {
  background:
    repeating-linear-gradient(0deg, transparent 0 79px, rgba(244, 102, 31, 0.1) 79px 80px),
    repeating-linear-gradient(90deg, transparent 0 79px, rgba(244, 102, 31, 0.1) 79px 80px);
  -webkit-mask-size: 900px 640px;
  mask-size: 900px 640px;
  animation: grid-drift-b 29s linear infinite;
}

@keyframes grid-drift-a {
  0% { opacity: 0; -webkit-mask-position: 8% 12%; mask-position: 8% 12%; }
  12% { opacity: 0.5; }
  30% { opacity: 0; -webkit-mask-position: 8% 12%; mask-position: 8% 12%; }
  33% { opacity: 0; -webkit-mask-position: 78% 64%; mask-position: 78% 64%; }
  46% { opacity: 0.4; }
  62% { opacity: 0; -webkit-mask-position: 78% 64%; mask-position: 78% 64%; }
  66% { opacity: 0; -webkit-mask-position: 34% 88%; mask-position: 34% 88%; }
  80% { opacity: 0.45; }
  100% { opacity: 0; -webkit-mask-position: 34% 88%; mask-position: 34% 88%; }
}

@keyframes grid-drift-b {
  0% { opacity: 0; -webkit-mask-position: 88% 8%; mask-position: 88% 8%; }
  15% { opacity: 0.35; }
  34% { opacity: 0; -webkit-mask-position: 88% 8%; mask-position: 88% 8%; }
  38% { opacity: 0; -webkit-mask-position: 12% 70%; mask-position: 12% 70%; }
  52% { opacity: 0.3; }
  68% { opacity: 0; -webkit-mask-position: 12% 70%; mask-position: 12% 70%; }
  72% { opacity: 0; -webkit-mask-position: 60% 30%; mask-position: 60% 30%; }
  86% { opacity: 0.35; }
  100% { opacity: 0; -webkit-mask-position: 60% 30%; mask-position: 60% 30%; }
}

img {
  max-width: 100%;
  image-rendering: pixelated;
}

a {
  color: var(--orange);
}

.wrap {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--orange);
  color: #0d0e10;
  padding: 0.5rem 1rem;
  z-index: 300;
  font-weight: 700;
  text-decoration: none;
}

.skip-link:focus {
  left: 0;
}

.cursor {
  display: inline-block;
  width: 0.55em;
  height: 1em;
  background: var(--orange);
  margin-left: 0.25em;
  vertical-align: text-bottom;
  animation: blink 1.1s steps(1) infinite;
}

@keyframes blink {
  50% { opacity: 0; }
}

.dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border: 1px solid var(--line-hi);
  padding: 0.15rem 0.6rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  white-space: nowrap;
  color: var(--muted);
}

.badge-live {
  border-color: rgba(70, 224, 140, 0.4);
  color: var(--green);
}

.badge-dim {
  color: var(--faint);
}

.accent {
  color: var(--orange);
}

.announce {
  background: var(--bg-deep);
  border-bottom: 1px solid var(--line);
  padding: 0.5rem 1.25rem;
  text-align: center;
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.announce b {
  color: var(--orange);
}

.announce a {
  color: var(--orange);
  font-weight: 700;
  text-decoration: none;
  margin-left: 0.5rem;
}

.announce a:hover {
  text-decoration: underline;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13, 14, 16, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.nav {
  max-width: 1720px;
  margin: 0 auto;
  padding: 0.7rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--text);
  font-family: var(--pixel);
  font-size: 0.72rem;
}

.brand img {
  filter: invert(1);
}

.brand em,
.footer-brand em {
  font-style: normal;
  color: var(--orange);
}

.nav-status {
  display: flex;
  gap: 0.5rem;
  margin-right: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.nav-menu a:not(.btn) {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.nav-menu a:not(.btn):hover {
  color: var(--orange);
}

.nav-menu a.btn {
  text-decoration: none;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  background: none;
  border: 1px solid var(--line-hi);
  cursor: pointer;
  padding: 10px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--text);
  transition: transform 0.2s, opacity 0.2s;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.rail {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  width: 52px;
  border-right: 1px solid var(--line);
  background: var(--bg-deep);
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  padding-top: 96px;
  z-index: 90;
}

.rail a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: var(--faint);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 700;
  border: 1px solid transparent;
}

.rail a:hover {
  color: var(--orange);
  border-color: var(--line-hi);
  background: var(--panel);
}

.rail img {
  filter: invert(0.45);
}

.rail a:hover img {
  filter: invert(1);
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  font-family: var(--mono);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.btn-solid,
a.btn-solid,
a.btn-solid:hover {
  background: var(--orange);
  color: #0a0b0c;
  font-weight: 800;
}

.btn-solid:hover,
a.btn-solid:hover {
  background: var(--orange-hi);
  box-shadow: 0 0 18px rgba(244, 102, 31, 0.45);
}

.btn-line {
  border-color: var(--line-hi);
  color: var(--text);
  background: transparent;
}

.btn-line:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.btn-sm {
  padding: 0.45rem 1rem;
  font-size: 0.78rem;
}

.btn-xs {
  padding: 0.25rem 0.75rem;
  font-size: 0.72rem;
}

.btn-lg {
  padding: 0.95rem 2rem;
  font-size: 0.95rem;
}

.hero-banner {
  padding: 2.5rem 0 0;
}

.dashed-box {
  border: 2px dashed var(--orange);
  padding: 1.5rem 2rem;
  margin-bottom: 1.25rem;
}

.dashed-box h1 {
  font-size: clamp(1.3rem, 3vw, 2.2rem);
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.3;
}

.dashed-box > p {
  color: var(--muted);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  margin-top: 0.35rem;
}

.hero-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    repeating-linear-gradient(0deg, transparent 0 39px, rgba(244, 102, 31, 0.05) 39px 40px),
    repeating-linear-gradient(90deg, transparent 0 39px, rgba(244, 102, 31, 0.05) 39px 40px),
    var(--panel);
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 2rem;
  padding: 2.5rem;
  align-items: center;
}

.hero-panel::before {
  content: "";
  position: absolute;
  width: 640px;
  height: 640px;
  top: -220px;
  left: -160px;
  background: radial-gradient(circle, rgba(244, 102, 31, 0.18), transparent 60%);
  filter: blur(42px);
  pointer-events: none;
  will-change: transform, opacity;
  animation: glow-glide 26s ease-in-out infinite alternate;
}

@keyframes glow-glide {
  0% { transform: translate(0, 0) scale(1); opacity: 0.85; }
  25% { transform: translate(18vw, 160px) scale(1.12); opacity: 1; }
  50% { transform: translate(42vw, 60px) scale(0.95); opacity: 0.7; }
  75% { transform: translate(30vw, 300px) scale(1.18); opacity: 0.95; }
  100% { transform: translate(8vw, 220px) scale(1); opacity: 0.8; }
}

.hero-watermark {
  position: absolute;
  top: 50%;
  left: 44%;
  width: clamp(560px, 58vw, 880px);
  transform: translate(-50%, -50%) rotate(-14deg);
  opacity: 0.055;
  filter: invert(38%) sepia(85%) saturate(2662%) hue-rotate(357deg) brightness(99%) contrast(93%) blur(5px);
  pointer-events: none;
}

.hero-copy,
.hero-art {
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1.25;
  margin-bottom: 1.25rem;
}

.hero-sub {
  color: var(--muted);
  max-width: 46rem;
  margin-bottom: 1.75rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.75rem;
  font-size: 0.75rem;
  color: var(--faint);
  letter-spacing: 0.05em;
}

.hero-art {
  display: flex;
  justify-content: center;
}

.bot-box {
  border: 1px solid var(--line-hi);
  background:
    linear-gradient(rgba(244, 102, 31, 0.05), rgba(244, 102, 31, 0.05)),
    repeating-linear-gradient(0deg, transparent 0 23px, var(--line) 23px 24px),
    repeating-linear-gradient(90deg, transparent 0 23px, var(--line) 23px 24px),
    var(--panel-2);
  width: 100%;
  max-width: 460px;
}

.bot-box-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--line);
  background: var(--bg-deep);
  padding: 0.5rem 0.9rem;
  font-size: 0.7rem;
  color: var(--faint);
  letter-spacing: 0.1em;
}

.bot-box > img {
  display: block;
  margin: 2.25rem auto;
  width: clamp(200px, 20vw, 320px);
  height: auto;
  filter: invert(38%) sepia(85%) saturate(2662%) hue-rotate(357deg) brightness(99%) contrast(93%);
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.25rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--line-hi);
  background: var(--panel);
  color: var(--muted);
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 0.5rem 1rem;
}

.chip:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.chip-live {
  color: var(--green);
  border-color: rgba(70, 224, 140, 0.4);
}

.handle-bar {
  margin-top: 1.25rem;
  border: 1px solid var(--line);
  background: var(--panel);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  padding: 0.7rem 1.1rem;
}

.handle-tag {
  border: 1px solid var(--orange);
  color: var(--orange);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.15rem 0.6rem;
}

.handle-bar code {
  font-family: var(--mono);
  font-size: 0.9rem;
  color: var(--text);
}

.handle-link {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.8rem;
  margin-left: auto;
}

.handle-link:hover {
  color: var(--orange);
}

.ticker {
  border: 1px solid var(--line);
  background: var(--bg-deep);
  margin-top: 1.25rem;
  display: flex;
  align-items: stretch;
}

.ticker-tag {
  display: flex;
  align-items: center;
  border-right: 1px solid var(--line);
  background: var(--panel);
  color: var(--orange);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 0 1rem;
  flex-shrink: 0;
}

.ticker-viewport {
  overflow: hidden;
  flex: 1;
  padding: 0.7rem 0;
}

.ticker-track {
  display: flex;
  gap: 2.75rem;
  width: max-content;
  animation: scroll 45s linear infinite;
}

.ticker-track span {
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  color: var(--muted);
  white-space: nowrap;
}

.ticker-track span b {
  color: var(--orange);
}

@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.section {
  padding: 4.5rem 0 0;
}

.rule-head {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  margin-bottom: 1rem;
}

.rule-head::before,
.rule-head::after {
  content: "";
  height: 1px;
  background: var(--line);
  flex: 1;
}

.section-title {
  text-align: center;
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  font-weight: 800;
  letter-spacing: 0.1em;
  margin-bottom: 0.6rem;
}

.section-sub {
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
  max-width: 44rem;
  margin: 0 auto 2.5rem;
}

.how-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 1.25rem;
  margin-top: 2.5rem;
  align-items: stretch;
}

.terminal {
  border: 1px solid var(--line-hi);
  background: var(--bg-deep);
  display: flex;
  flex-direction: column;
}

.terminal-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--line);
  background: var(--panel);
  padding: 0.55rem 1rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--faint);
  letter-spacing: 0.1em;
}

.terminal-body {
  padding: 1.25rem 1.25rem 1.5rem;
  font-size: 0.82rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.55rem;
  flex: 1;
}

.terminal-body p {
  line-height: 1.5;
}

.t-prompt {
  color: var(--orange);
  font-weight: 700;
  margin-right: 0.5rem;
}

.t-bot {
  color: var(--muted);
}

.t-opts {
  color: var(--orange);
  letter-spacing: 0.03em;
}

.t-addr {
  color: var(--text);
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 0.3rem 0.6rem;
  width: fit-content;
}

.t-ok {
  color: var(--green);
  font-weight: 700;
}

.steps {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  grid-auto-rows: 1fr;
  gap: 1rem;
}

.step {
  border: 1px solid var(--line);
  background: var(--panel);
  padding: 1.1rem 1.25rem;
}

.step:hover {
  border-color: var(--orange);
}

.step-head {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 0.4rem;
}

.step-num {
  color: var(--orange);
  font-weight: 800;
  font-size: 0.95rem;
}

.step h3 {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.step p {
  color: var(--muted);
  font-size: 0.83rem;
}

.step p b {
  color: var(--orange);
}

.note-bar {
  margin-top: 1.25rem;
  border: 1px solid rgba(244, 102, 31, 0.45);
  background: var(--orange-dim);
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 1.25rem;
  flex-wrap: wrap;
}

.note-bar p {
  font-size: 0.85rem;
  color: var(--muted);
}

.note-bar b {
  color: var(--text);
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}

.stat-card {
  border: 1px solid var(--line);
  background: var(--panel);
  padding: 1.5rem 1.4rem;
  text-align: center;
}

.stat-card:hover {
  border-color: var(--orange);
  box-shadow: 0 0 18px rgba(244, 102, 31, 0.14);
}

.stat-value {
  color: var(--orange);
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.stat-label {
  color: var(--text);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  margin: 0.4rem 0 0.8rem;
}

.stat-desc {
  color: var(--muted);
  font-size: 0.8rem;
}

.fine {
  margin-top: 1.25rem;
  text-align: center;
  color: var(--faint);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
}

.stock-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 0.75rem;
}

.stock-grid li {
  display: flex;
}

.stock {
  flex: 1;
  text-decoration: none;
  border: 1px solid var(--line);
  background: var(--panel);
  padding: 1.25rem 0.75rem 1.1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}

.stock:hover {
  border-color: var(--orange);
  background: var(--panel-2);
  box-shadow: 0 0 16px rgba(244, 102, 31, 0.14);
}

.stock .ico {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 0.6rem;
}

.stock .ico img {
  width: 22px;
  height: 22px;
  image-rendering: auto;
}

.stock .ico-fallback {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--panel-2);
  border: 1px solid var(--line-hi);
  color: var(--orange);
  font-weight: 800;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.6rem;
}

.stock .sym {
  color: var(--orange);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.stock .name {
  color: var(--muted);
  font-size: 0.75rem;
}

.stock .mint {
  color: var(--faint);
  font-size: 0.65rem;
  letter-spacing: 0.04em;
  margin-top: 0.3rem;
}

.stock:hover .mint {
  color: var(--orange);
}

.rules-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}

.rule-card {
  border: 1px solid var(--line);
  border-left: 3px solid var(--orange);
  background: var(--panel);
  padding: 1.25rem 1.4rem;
}

.rule-card:hover {
  box-shadow: 0 0 18px rgba(244, 102, 31, 0.12);
}

.rule-head-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
  flex-wrap: wrap;
}

.rule-card h3 {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.rule-card p {
  color: var(--muted);
  font-size: 0.83rem;
}

.rule-card a {
  color: var(--orange);
  text-decoration: none;
  font-weight: 700;
}

.rule-card a:hover {
  text-decoration: underline;
}

.faq-list {
  max-width: 860px;
  margin: 2.5rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.faq {
  border: 1px solid var(--line);
  background: var(--panel);
}

.faq[open] {
  border-color: var(--orange);
}

.faq summary {
  cursor: pointer;
  padding: 0.95rem 1.25rem;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "[+]";
  color: var(--orange);
  font-size: 0.8rem;
  flex-shrink: 0;
}

.faq[open] summary::after {
  content: "[-]";
}

.faq p {
  padding: 0 1.25rem 1.1rem;
  color: var(--muted);
  font-size: 0.85rem;
}

.cta-band {
  padding: 4.5rem 0;
}

.cta-box {
  position: relative;
  overflow: hidden;
  margin-bottom: 0;
  text-align: center;
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  background:
    repeating-linear-gradient(0deg, transparent 0 39px, rgba(244, 102, 31, 0.05) 39px 40px),
    repeating-linear-gradient(90deg, transparent 0 39px, rgba(244, 102, 31, 0.05) 39px 40px),
    rgba(19, 21, 24, 0.6);
}

.cta-box::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  top: -180px;
  left: -160px;
  background: radial-gradient(circle, rgba(244, 102, 31, 0.15), transparent 60%);
  filter: blur(38px);
  pointer-events: none;
  will-change: transform, opacity;
  animation: glow-glide 32s ease-in-out infinite alternate;
}

.cta-box > * {
  position: relative;
  z-index: 1;
}

.cta-box img {
  filter: invert(1);
}

.cta-box h2 {
  font-size: clamp(1.1rem, 2.4vw, 1.7rem);
  font-weight: 800;
  letter-spacing: 0.1em;
}

.cta-box p {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--bg-deep);
  padding: 2.5rem 0 2rem;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--pixel);
  font-size: 0.65rem;
}

.footer-brand img {
  filter: invert(1);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
}

.footer-links a:hover {
  color: var(--orange);
}

.commands {
  color: var(--muted);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
}

.disclaimer {
  color: var(--faint);
  font-size: 0.72rem;
  max-width: 60rem;
}

.copyright {
  color: var(--faint);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
}

@media (min-width: 1280px) {
  .rail {
    display: flex;
  }
  body {
    padding-left: 52px;
  }
}

@media (min-width: 1800px) {
  .wrap {
    max-width: 1720px;
  }
  body {
    font-size: 15px;
  }
  .stock-grid {
    grid-template-columns: repeat(9, 1fr);
  }
  .rules-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .how-grid {
    gap: 2rem;
  }
  .hero-panel {
    padding: 3.5rem 4rem;
  }
}

@media (max-width: 1024px) {
  .stat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .rules-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .how-grid {
    grid-template-columns: 1fr;
  }
  .nav-status {
    display: none;
  }
}

@media (max-width: 860px) {
  .nav-toggle {
    display: flex;
    margin-left: auto;
  }
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--bg-deep);
    border-bottom: 1px solid var(--line);
    padding: 1rem 1.25rem 1.5rem;
    gap: 0.25rem;
  }
  .nav-menu.open {
    display: flex;
  }
  .nav-menu a {
    padding: 0.7rem 0.5rem;
    font-size: 0.9rem;
  }
  .nav-menu .btn {
    margin-top: 0.75rem;
    text-align: center;
  }
  .hero-panel {
    grid-template-columns: 1fr;
    padding: 1.75rem 1.5rem;
  }
  .hero-art {
    order: -1;
  }
  .hero-copy {
    text-align: center;
  }
  .hero-sub {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-cta,
  .hero-meta,
  .chip-row {
    justify-content: center;
  }
  .bot-box {
    max-width: 380px;
  }
  .bot-box > img {
    width: min(64vw, 320px);
    margin: 1.75rem auto;
  }
  .dashed-box {
    padding: 1.25rem 1.25rem;
    text-align: center;
  }
  .note-bar {
    flex-direction: column;
    text-align: center;
  }
  .handle-bar {
    justify-content: center;
    text-align: center;
  }
  .footer-top {
    flex-direction: column;
    align-items: center;
  }
  .footer-links {
    justify-content: center;
  }
  .footer-inner {
    align-items: center;
    text-align: center;
  }
  .section {
    padding: 3.5rem 0 0;
  }
  .rules-grid {
    grid-template-columns: 1fr;
  }
  .handle-link {
    margin-left: 0;
  }
}

@media (max-width: 480px) {
  .stat-grid {
    grid-template-columns: 1fr;
  }
  .hero-cta .btn {
    width: 100%;
    text-align: center;
  }
  .stock-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }
  .brand span {
    font-size: 0.6rem;
  }
  .announce {
    font-size: 0.7rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .cursor {
    animation: none;
  }
  .ticker-track {
    animation-duration: 140s;
  }
  body::before,
  body::after {
    animation: none;
    opacity: 0;
  }
  .hero-panel::before,
  .cta-box::before {
    animation: none;
  }
}
