@font-face {
  font-family: "Anton";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/anton.woff2") format("woff2");
}

@font-face {
  font-family: "IBM Plex Mono";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/ibm-plex-mono-400.woff2") format("woff2");
}

@font-face {
  font-family: "IBM Plex Mono";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("assets/fonts/ibm-plex-mono-500.woff2") format("woff2");
}

@font-face {
  font-family: "IBM Plex Mono";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("assets/fonts/ibm-plex-mono-600.woff2") format("woff2");
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("assets/fonts/manrope.woff2") format("woff2");
}

@font-face {
  font-family: "Oswald";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("assets/fonts/oswald.woff2") format("woff2");
}

:root {
  --void: #030812;
  --navy: #071226;
  --panel: #0b1a32;
  --panel-2: #10243f;
  --line: rgba(122, 196, 255, 0.16);
  --line-strong: rgba(122, 196, 255, 0.32);
  --cyan: #3ec6ff;
  --cyan-deep: #1484d6;
  --volt: #1aa4ff;
  --silver: #e8eef6;
  --mute: #8ea0b8;
  --ink: #d7e3f2;
  --up: #3ee29a;
  --down: #ff4d6d;
  --gold: #c9ad74;
  --shadow: 0 30px 80px rgba(0, 8, 22, 0.55);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

html.js .rise {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

html.js .rise.in {
  opacity: 1;
  transform: none;
}

html.js .delay-1 { transition-delay: 0.1s; }
html.js .delay-2 { transition-delay: 0.2s; }
html.js .delay-3 { transition-delay: 0.3s; }
html.js .delay-4 { transition-delay: 0.4s; }

body {
  min-height: 100vh;
  color: var(--ink);
  background: var(--void);
  font-family: "Manrope", sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #050b14;
}

::-webkit-scrollbar-thumb {
  background: #1a3d62;
  border-radius: 10px;
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

code {
  font-family: "IBM Plex Mono", monospace;
}

::selection {
  background: rgba(26, 164, 255, 0.35);
  color: #fff;
}

.atmosphere {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(20, 90, 170, 0.22), transparent 55%),
    linear-gradient(180deg, #06101f 0%, #030812 42%, #04101c 100%);
}

.grain,
.vignette,
.glow,
.floor,
.chart-ghost,
#sparks {
  position: absolute;
  inset: 0;
}

.grain {
  opacity: 0.09;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

.vignette {
  background: radial-gradient(ellipse at center, transparent 40%, rgba(2, 6, 14, 0.72) 100%);
}

.glow {
  filter: blur(70px);
  opacity: 0.45;
}

.glow-a {
  width: 42vw;
  height: 42vw;
  left: -8vw;
  top: 8vh;
  background: radial-gradient(circle, rgba(20, 110, 190, 0.35), transparent 68%);
  animation: drift 18s ease-in-out infinite;
}

.glow-b {
  width: 36vw;
  height: 36vw;
  right: -6vw;
  top: 18vh;
  background: radial-gradient(circle, rgba(62, 198, 255, 0.18), transparent 70%);
  animation: drift 22s ease-in-out infinite reverse;
}

.floor {
  top: auto;
  height: 42vh;
  background:
    linear-gradient(rgba(62, 198, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(62, 198, 255, 0.08) 1px, transparent 1px);
  background-size: 72px 72px;
  transform: perspective(600px) rotateX(68deg);
  transform-origin: center bottom;
  mask-image: linear-gradient(to top, rgba(0, 0, 0, 0.55), transparent 80%);
}

.chart-ghost {
  top: 18vh;
  height: 38vh;
  opacity: 0.18;
}

.ghost-line {
  fill: none;
  stroke: #3ec6ff;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-dasharray: 1800;
  stroke-dashoffset: 1800;
  animation: draw 6.5s var(--ease) 0.4s forwards, pulse-line 4s ease-in-out 7s infinite;
  filter: drop-shadow(0 0 8px rgba(62, 198, 255, 0.7));
}

#sparks {
  width: 100%;
  height: 100%;
}

.tape {
  position: relative;
  z-index: 5;
  height: 34px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: rgba(4, 12, 24, 0.78);
  backdrop-filter: blur(16px);
}

.tape-track {
  display: flex;
  width: max-content;
  gap: 36px;
  height: 100%;
  align-items: center;
  padding: 0 20px;
  animation: ticker 38s linear infinite;
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #9fb4cc;
  white-space: nowrap;
}

.tape-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.tape-item b {
  color: var(--silver);
  font-weight: 600;
}

.tape-item .up { color: var(--up); }
.tape-item .dn { color: var(--down); }

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 28px;
  border-bottom: 1px solid transparent;
  transition: background 0.35s ease, border-color 0.35s ease, backdrop-filter 0.35s ease;
}

.nav.is-on {
  background: rgba(5, 12, 24, 0.78);
  border-bottom-color: var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  box-shadow: 0 0 0 1px rgba(62, 198, 255, 0.08), 0 8px 24px rgba(0, 0, 0, 0.35);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}

.brand-type {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-name {
  font-family: "Oswald", sans-serif;
  font-size: 18px;
  letter-spacing: 0.14em;
}

.brand-sym {
  margin-top: 4px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--cyan);
}

.nav-links {
  display: flex;
  gap: 28px;
}

.nav-links a {
  font-family: "Oswald", sans-serif;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mute);
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 1px;
  background: var(--cyan);
  transition: width 0.3s var(--ease);
}

.nav-links a:hover {
  color: var(--silver);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon-btn {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background: rgba(12, 28, 50, 0.55);
  border-radius: 10px;
  transition: transform 0.25s var(--ease), border-color 0.25s ease, background 0.25s ease;
}

.icon-btn img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.icon-btn:hover {
  transform: translateY(-2px);
  border-color: var(--cyan);
  background: rgba(26, 164, 255, 0.12);
}

.menu-btn {
  display: none;
  width: 40px;
  height: 40px;
  place-items: center;
  gap: 6px;
  flex-direction: column;
}

.menu-btn span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--silver);
}

.drawer {
  display: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-family: "Oswald", sans-serif;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform 0.25s var(--ease), box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.btn img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.btn-buy,
.btn-primary {
  color: #041018;
  background: linear-gradient(180deg, #7ad8ff 0%, #1aa4ff 48%, #0d7ed4 100%);
  box-shadow: 0 8px 30px rgba(26, 164, 255, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.btn-ghost {
  color: var(--silver);
  border-color: var(--line-strong);
  background: rgba(10, 24, 44, 0.55);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary:hover,
.btn-buy:hover {
  box-shadow: 0 14px 36px rgba(26, 164, 255, 0.4);
}

.btn-ghost:hover {
  border-color: var(--cyan);
}

main {
  position: relative;
  z-index: 1;
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
  min-height: calc(100vh - 110px);
  padding: 48px 7vw 80px;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  padding: 7px 12px 7px 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(10, 24, 42, 0.7);
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mute);
}

.kicker img {
  width: 14px;
  height: 14px;
}

.kicker .dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--up);
  box-shadow: 0 0 10px var(--up);
  animation: blink 1.4s ease-in-out infinite;
}

.kicker .live {
  color: var(--up);
}

.hero h1 {
  display: flex;
  flex-direction: column;
  line-height: 0.82;
  font-family: "Anton", sans-serif;
  font-size: clamp(86px, 13vw, 168px);
  letter-spacing: 0.02em;
}

.metal {
  background: linear-gradient(180deg, #ffffff 0%, #d7e2ee 28%, #ffffff 48%, #8ea0b4 74%, #f3f7fb 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.35));
}

.volt {
  color: #2db7ff;
  text-shadow:
    0 0 18px rgba(45, 183, 255, 0.55),
    0 0 48px rgba(20, 132, 214, 0.35);
  animation: volt 4.5s ease-in-out infinite;
}

.lede {
  max-width: 540px;
  margin: 22px 0 28px;
  color: var(--mute);
  font-size: 18px;
  line-height: 1.7;
}

.ca-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 560px;
  min-height: 52px;
  padding: 8px 8px 8px 14px;
  margin-bottom: 22px;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(16, 36, 62, 0.85), rgba(8, 18, 34, 0.85));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.ca-label {
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.16em;
  color: var(--cyan);
}

#caText {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 13px;
  color: var(--silver);
}

#caCopy {
  min-width: 74px;
  height: 36px;
  border-radius: 10px;
  background: rgba(26, 164, 255, 0.14);
  color: var(--silver);
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

#caCopy:hover {
  background: rgba(26, 164, 255, 0.28);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 26px;
}

.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
}

.pills li {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--mute);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.bezel {
  width: min(100%, 520px);
  padding: 14px;
  border: 1px solid var(--line-strong);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(18, 40, 68, 0.7), rgba(7, 16, 30, 0.78));
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  animation: float 7s ease-in-out infinite;
}

.bezel-hud,
.bezel-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mute);
}

.bezel-hud {
  padding: 4px 8px 12px;
}

.rec {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ff6b82;
}

.rec i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ff4d6d;
  box-shadow: 0 0 10px #ff4d6d;
  animation: blink 1.1s ease-in-out infinite;
}

.bezel-frame {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  aspect-ratio: 1 / 1.08;
  background: #08101c;
}

.bezel-frame img,
.bezel-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.bezel-frame video {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
}

.bezel-frame video.is-live {
  opacity: 1;
  z-index: 1;
}

.bezel-frame img.is-hidden {
  opacity: 0;
}

.scan {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(62, 198, 255, 0.08) 50%, transparent 100%);
  background-size: 100% 220%;
  animation: scan 5.5s linear infinite;
  pointer-events: none;
  mix-blend-mode: screen;
}

.corner {
  position: absolute;
  width: 22px;
  height: 22px;
  z-index: 2;
  border: 2px solid rgba(62, 198, 255, 0.85);
}

.c-tl { top: 10px; left: 10px; border-right: 0; border-bottom: 0; }
.c-tr { top: 10px; right: 10px; border-left: 0; border-bottom: 0; }
.c-bl { bottom: 10px; left: 10px; border-right: 0; border-top: 0; }
.c-br { bottom: 10px; right: 10px; border-left: 0; border-top: 0; }

.bezel-meta {
  padding: 12px 8px 4px;
}

.bezel-meta strong {
  color: var(--silver);
}

.bezel-meta .up {
  color: var(--up);
}

.section-head {
  display: flex;
  align-items: flex-end;
  gap: 22px;
  margin-bottom: 36px;
}

.idx {
  font-family: "Anton", sans-serif;
  font-size: 64px;
  line-height: 0.8;
  color: transparent;
  -webkit-text-stroke: 1px rgba(62, 198, 255, 0.45);
}

.eyebrow {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 8px;
}

.section-head h2,
.join-copy h2 {
  font-family: "Oswald", sans-serif;
  font-size: clamp(40px, 6vw, 68px);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 0.95;
}

.about,
.howto,
.chart {
  padding: 90px 7vw;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
}

.thesis {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(14, 30, 52, 0.72), rgba(8, 16, 30, 0.72));
}

.thesis p {
  color: var(--mute);
  font-size: 17px;
  line-height: 1.8;
}

.thesis p + p {
  margin-top: 16px;
}

.thesis strong {
  color: var(--silver);
}

.pull {
  margin-top: 22px !important;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--silver) !important;
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.stat {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(10, 22, 40, 0.7);
  transition: transform 0.3s var(--ease), border-color 0.3s ease;
}

.stat:hover {
  transform: translateY(-4px);
  border-color: var(--cyan);
}

.stat span,
.stat em {
  display: block;
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mute);
}

.stat strong {
  display: block;
  margin: 10px 0 8px;
  font-family: "Anton", sans-serif;
  font-size: 36px;
  letter-spacing: 0.04em;
  color: var(--silver);
}

.howto {
  background: linear-gradient(180deg, transparent, rgba(10, 28, 52, 0.35), transparent);
}

.ticket-rail {
  height: 70px;
  margin: 0 18px 8px;
}

.ticket-rail svg {
  width: 100%;
  height: 100%;
}

.rail-line {
  fill: none;
  stroke: #3ec6ff;
  stroke-width: 2;
  stroke-dasharray: 1400;
  stroke-dashoffset: 1400;
  filter: drop-shadow(0 0 6px rgba(62, 198, 255, 0.7));
}

.howto.in-view .rail-line,
.rail-line.is-on {
  animation: draw 2.2s var(--ease) forwards;
}

.tickets {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  list-style: none;
}

.ticket {
  position: relative;
  padding: 24px 22px 26px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(8, 18, 34, 0.78);
  overflow: hidden;
  transition: transform 0.3s var(--ease), border-color 0.3s ease, box-shadow 0.3s ease;
}

.ticket:hover {
  transform: translateY(-6px);
  border-color: var(--cyan);
  box-shadow: 0 16px 40px rgba(0, 10, 24, 0.35);
}

.ticket::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(180deg, var(--cyan), transparent);
}

.ticket-no {
  font-family: "Anton", sans-serif;
  font-size: 28px;
  color: rgba(62, 198, 255, 0.28);
}

.ticket-icon {
  width: 48px;
  height: 48px;
  margin: 14px 0 16px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(16, 36, 62, 0.9);
  border: 1px solid var(--line);
}

.ticket-icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.ticket-icon.eth {
  background: #122033;
}

.ticket h3 {
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.ticket p {
  color: var(--mute);
  font-size: 14px;
  line-height: 1.65;
}

.howto-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.terminal {
  border: 1px solid var(--line-strong);
  border-radius: 24px;
  overflow: hidden;
  background: #07101c;
  box-shadow: var(--shadow);
}

.terminal-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  background: rgba(10, 22, 38, 0.95);
}

.lights {
  display: flex;
  gap: 6px;
}

.lights i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #3ee29a;
}

.lights i:first-child { background: #ff4d6d; }
.lights i:nth-child(2) { background: #c9ad74; }

.terminal-bar strong {
  flex: 1;
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--mute);
}

.terminal-bar a {
  color: var(--cyan);
  font-size: 13px;
}

.terminal-body {
  position: relative;
  height: min(720px, 78vh);
  background: #0b1118;
}

.terminal-body iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.chart-wait {
  position: absolute;
  inset: 0;
  display: none;
  place-items: center;
  align-content: center;
  text-align: center;
  gap: 14px;
  padding: 32px;
  background: radial-gradient(circle at center, rgba(16, 40, 68, 0.5), #0b1118);
}

.chart-wait.is-on {
  display: grid;
}

.chart-wait img {
  width: 36px;
  height: 36px;
  margin: 0 auto 8px;
}

.chart-wait p {
  color: var(--mute);
  max-width: 360px;
}

.join {
  position: relative;
  min-height: 88vh;
  display: grid;
  place-items: end start;
  overflow: hidden;
}

.join-banner {
  position: absolute;
  inset: 0;
}

.join-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.06);
  animation: ken 28s ease-in-out infinite alternate;
}

.join-wash {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(3, 8, 18, 0.15) 0%, rgba(3, 8, 18, 0.35) 40%, rgba(3, 8, 18, 0.88) 100%),
    linear-gradient(90deg, rgba(3, 8, 18, 0.72), transparent 55%);
}

.join-copy {
  position: relative;
  z-index: 1;
  padding: 90px 7vw;
  max-width: 720px;
}

.join-copy p {
  color: #c5d3e4;
  font-size: 17px;
  line-height: 1.7;
}

.join-line {
  margin: 14px 0 16px;
  font-family: "Oswald", sans-serif;
  font-size: clamp(22px, 3vw, 32px);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--silver) !important;
}

.join-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.foot {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 16px;
  padding: 36px 7vw 42px;
  border-top: 1px solid var(--line);
  background: rgba(3, 8, 16, 0.88);
}

.foot-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.foot-brand img {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  object-fit: cover;
  object-position: center 18%;
}

.foot-brand strong {
  display: block;
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.foot-brand span,
.foot p,
.foot small {
  color: var(--mute);
}

.foot-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.foot-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.foot-links img {
  width: 14px;
  height: 14px;
}

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

@keyframes draw {
  to { stroke-dashoffset: 0; }
}

@keyframes pulse-line {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}

@keyframes drift {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(40px, -24px, 0); }
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.25; }
}

@keyframes scan {
  0% { background-position: 0 -40%; }
  100% { background-position: 0 140%; }
}

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

@keyframes volt {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.18); }
}

@keyframes ken {
  from { transform: scale(1.04) translateY(0); }
  to { transform: scale(1.1) translateY(-12px); }
}

@media (max-width: 1080px) {
  .hero,
  .about-grid {
    grid-template-columns: 1fr;
  }

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

  .ticket-rail {
    display: none;
  }

  .nav-links {
    display: none;
  }

  .menu-btn {
    display: grid;
  }

  .drawer {
    display: grid;
    position: fixed;
    inset: 88px 16px auto;
    z-index: 25;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(6, 14, 26, 0.94);
    backdrop-filter: blur(18px);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: 0.28s var(--ease);
  }

  .drawer.is-open {
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }

  .drawer a {
    padding: 12px 8px;
    font-family: "Oswald", sans-serif;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 720px) {
  .nav {
    padding: 12px 16px;
  }

  .btn-buy {
    display: none;
  }

  .hero,
  .about,
  .howto,
  .chart,
  .join-copy,
  .foot {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero {
    padding-top: 28px;
    min-height: auto;
  }

  .hero h1 {
    font-size: 84px;
  }

  .tickets,
  .stats {
    grid-template-columns: 1fr;
  }

  .terminal-body {
    height: 560px;
  }

  .join {
    min-height: 78vh;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  html.js .rise {
    opacity: 1;
    transform: none;
  }
}
