:root {
  --void: #030308;
  --ink: #07070f;
  --panel: rgba(7, 9, 18, 0.72);
  --cyan: #00e5ff;
  --cyan-2: #14d4e8;
  --blue: #3d6bff;
  --violet: #b14cff;
  --magenta: #d946ef;
  --sol: #14f195;
  --text: #eef6ff;
  --muted: #8b9bb4;
  --line: rgba(0, 229, 255, 0.22);
  --cut: 14px;
  --grad: linear-gradient(120deg, var(--cyan), var(--blue) 48%, var(--violet));
  --font-display: "Oxanium", sans-serif;
  --font-ui: "Space Grotesk", sans-serif;
  --font-label: "Rajdhani", sans-serif;
  --font-mono: "IBM Plex Mono", monospace;
  --max: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: var(--void);
  color: var(--text);
}

body {
  font-family: var(--font-ui);
  font-size: 17px;
  line-height: 1.6;
  overflow-x: hidden;
}

@media (pointer: fine) {
  body.is-pointer,
  body.is-pointer a,
  body.is-pointer button {
    cursor: none;
  }
}

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

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

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

code {
  font-family: var(--font-mono);
}

.skip {
  position: absolute;
  left: -999px;
}

.skip:focus {
  left: 16px;
  top: 16px;
  z-index: 80;
  padding: 8px 12px;
  background: var(--cyan);
  color: #031016;
}

/* ---------- FX ---------- */

.fx {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.fx__void {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 520px at 12% -10%, rgba(0, 229, 255, 0.14), transparent 55%),
    radial-gradient(820px 480px at 92% 8%, rgba(177, 76, 255, 0.16), transparent 58%),
    radial-gradient(700px 420px at 50% 110%, rgba(61, 107, 255, 0.1), transparent 60%),
    #030308;
}

.fx__orb {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.35;
  animation: orb 18s ease-in-out infinite;
}

.fx__orb--cyan {
  top: 8%;
  left: -6%;
  background: #00e5ff;
}

.fx__orb--violet {
  right: -8%;
  top: 28%;
  background: #b14cff;
  animation-delay: -7s;
}

.fx__streaks {
  position: absolute;
  inset: 12% 0 auto;
  height: 220px;
  background:
    linear-gradient(90deg, transparent, rgba(0, 229, 255, 0.08), transparent),
    linear-gradient(90deg, transparent 10%, rgba(177, 76, 255, 0.07), transparent 70%);
  background-size: 160% 2px, 180% 2px;
  background-repeat: no-repeat;
  background-position: 0 40%, 20% 70%;
  animation: streak 9s linear infinite;
  filter: blur(0.4px);
}

.fx__grid {
  position: absolute;
  inset: auto 0 -8%;
  height: 46vh;
  background-image:
    linear-gradient(rgba(0, 229, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(177, 76, 255, 0.08) 1px, transparent 1px);
  background-size: 72px 72px;
  transform: perspective(500px) rotateX(62deg);
  transform-origin: center top;
  mask-image: linear-gradient(to top, rgba(0, 0, 0, 0.55), transparent 85%);
  animation: gridshift 22s linear infinite;
}

.fx__pixels {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.fx__scan {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.028) 0 1px,
    transparent 1px 3px
  );
  mix-blend-mode: overlay;
  animation: scan 8s linear infinite;
}

.fx__grain {
  position: absolute;
  inset: 0;
  opacity: 0.12;
  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='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.fx__vignette {
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 180px 40px #030308;
}

.fx__pointer {
  position: fixed;
  width: 18px;
  height: 18px;
  margin: -9px 0 0 -9px;
  border: 1px solid rgba(0, 229, 255, 0.85);
  border-radius: 50%;
  box-shadow: 0 0 16px rgba(0, 229, 255, 0.45);
  opacity: 0;
  z-index: 90;
  transition: transform 0.15s ease, opacity 0.2s;
}

.fx__pointer.is-on {
  opacity: 1;
}

.progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0;
  z-index: 60;
  background: var(--grad);
  box-shadow: 0 0 12px var(--cyan);
}

/* ---------- NAV ---------- */

.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 28px;
  background: rgba(3, 3, 8, 0.42);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
}

.nav.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(3, 3, 8, 0.78);
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.nav__mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  padding: 2px;
  background: var(--grad);
  box-shadow: 0 0 18px rgba(0, 229, 255, 0.35);
  animation: pulse 3.4s ease-in-out infinite;
}

.nav__mark img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #000;
}

.nav__name strong {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 800;
  letter-spacing: 0.12em;
  font-size: 15px;
}

.nav__name small {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--muted);
}

.nav__clock {
  display: none;
  align-items: baseline;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.12em;
}

.nav__clock time {
  color: var(--cyan);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav__links a {
  font-family: var(--font-label);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 14px;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
}

.nav__links a i {
  font-style: normal;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--cyan);
}

.nav__links a:hover {
  color: var(--text);
}

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

.nav__toggle {
  display: none;
  width: 42px;
  height: 42px;
  position: relative;
}

.nav__toggle span {
  position: absolute;
  left: 10px;
  right: 10px;
  height: 2px;
  background: var(--text);
  transition: 0.25s;
}

.nav__toggle span:nth-child(1) { top: 14px; }
.nav__toggle span:nth-child(2) { top: 20px; }
.nav__toggle span:nth-child(3) { top: 26px; }

.nav__toggle.is-open span:nth-child(1) {
  top: 20px;
  transform: rotate(45deg);
}

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

.nav__toggle.is-open span:nth-child(3) {
  top: 20px;
  transform: rotate(-45deg);
}

.rail {
  position: fixed;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 30;
  display: none;
  flex-direction: column;
  gap: 14px;
}

.rail a {
  width: 8px;
  height: 8px;
  border: 1px solid var(--cyan);
  transform: rotate(45deg);
  opacity: 0.35;
  transition: 0.25s;
}

.rail a.is-on {
  opacity: 1;
  background: var(--cyan);
  box-shadow: 0 0 12px var(--cyan);
}

/* ---------- BUTTONS ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 18px;
  font-family: var(--font-label);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 14px;
  position: relative;
  isolation: isolate;
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
  transition: transform 0.2s, filter 0.2s;
}

.btn img {
  width: 16px;
  height: 16px;
}

.btn--fill {
  background: var(--grad);
  color: #041018;
  box-shadow: 0 0 22px rgba(0, 229, 255, 0.28);
}

.btn--fill img {
  background: rgba(4, 16, 24, 0.4);
  border-radius: 3px;
  padding: 2px;
}

.btn--fill::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(255, 255, 255, 0.38), transparent 70%);
  transform: translateX(-120%);
  animation: sheen 4.5s ease-in-out infinite;
}

.btn--line {
  background: rgba(0, 229, 255, 0.04);
  color: var(--text);
  box-shadow: inset 0 0 0 1px var(--line);
}

.btn--line:hover,
.btn--fill:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
}

/* ---------- HERO ---------- */

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

.hero {
  padding: 28px 28px 0;
}

.hero__status {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--muted);
  padding: 10px 4px 22px;
  border-bottom: 1px solid var(--line);
}

.live {
  color: var(--sol);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.live i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sol);
  box-shadow: 0 0 10px var(--sol);
  animation: pulse 1.6s ease-in-out infinite;
}

.hero__layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  padding: 54px 0 28px;
}

.kicker {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin: 0 0 18px;
}

.kicker__hash {
  color: #041018;
  background: var(--grad);
  padding: 3px 8px;
  font-weight: 600;
}

.wordmark {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 800;
  font-size: clamp(64px, 11vw, 128px);
  line-height: 0.88;
  letter-spacing: 0.02em;
}

.wordmark span {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  background-size: 220% 100%;
  animation: shimmer 6s ease-in-out infinite, glitch 7.5s steps(2, end) infinite;
  filter: drop-shadow(0 0 18px rgba(0, 229, 255, 0.25));
}

.tagline {
  margin: 0 0 14px;
  font-family: var(--font-label);
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #d7e7ff;
}

.lede {
  margin: 0 0 26px;
  max-width: 560px;
  color: var(--muted);
}

.ids {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}

.ids__cell {
  padding: 12px 14px;
  background: var(--panel);
  border: 1px solid var(--line);
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
}

.ids__cell span {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--muted);
  text-transform: uppercase;
}

.ids__cell strong {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.ids__cell img {
  width: 16px;
  height: 16px;
}

.ca {
  margin-bottom: 22px;
  padding: 12px 14px;
  background: rgba(0, 229, 255, 0.04);
  border: 1px solid var(--line);
}

.ca__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--muted);
  text-transform: uppercase;
}

.ca__row button {
  color: var(--cyan);
}

.ca.is-copied {
  box-shadow: 0 0 0 1px var(--cyan), 0 0 22px rgba(0, 229, 255, 0.25);
}

.ca code {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  word-break: break-all;
  color: var(--text);
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero__stage {
  position: relative;
  min-height: 520px;
}

.chamber {
  position: relative;
  width: min(460px, 100%);
  aspect-ratio: 1;
  margin: 0 auto;
}

.chamber__ring {
  position: absolute;
  inset: 6%;
  border-radius: 50%;
  border: 1px dashed rgba(0, 229, 255, 0.35);
  animation: spin 22s linear infinite;
}

.chamber__ring--b {
  inset: 0;
  border-style: solid;
  border-color: rgba(177, 76, 255, 0.28);
  animation-direction: reverse;
  animation-duration: 28s;
}

.chamber__ring--c {
  inset: 14%;
  border-color: rgba(61, 107, 255, 0.4);
  animation-duration: 16s;
}

.chamber__sweep {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(from 180deg, transparent 70%, rgba(0, 229, 255, 0.22), transparent 88%);
  animation: spin 8s linear infinite;
  mask: radial-gradient(circle, transparent 54%, #000 56%);
}

.chamber__hex {
  position: absolute;
  inset: 18%;
  border-radius: 50%;
  padding: 10px;
  background:
    radial-gradient(circle at 50% 50%, rgba(0, 229, 255, 0.12), transparent 62%),
    #05050c;
  box-shadow:
    0 0 0 1px rgba(0, 229, 255, 0.28),
    0 0 40px rgba(177, 76, 255, 0.22),
    inset 0 0 40px rgba(0, 0, 0, 0.65);
  animation: float 5.5s ease-in-out infinite;
}

.chamber__hex img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
  filter: drop-shadow(0 0 18px rgba(0, 229, 255, 0.35));
}

.chamber__tag {
  position: absolute;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--cyan);
  opacity: 0.8;
}

.chamber__tag--nw { top: 8%; left: 4%; }
.chamber__tag--ne { top: 8%; right: 4%; }
.chamber__tag--sw { bottom: 10%; left: 4%; }
.chamber__tag--se { bottom: 10%; right: 4%; color: var(--violet); }

.term {
  position: absolute;
  right: 0;
  bottom: -8px;
  width: min(280px, 70%);
  background: rgba(4, 6, 12, 0.86);
  border: 1px solid var(--line);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45), 0 0 24px rgba(0, 229, 255, 0.08);
  backdrop-filter: blur(10px);
}

.term header {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 10px;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--muted);
}

.term header i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ff5f57;
}

.term header i:nth-child(2) { background: #febc2e; }
.term header i:nth-child(3) { background: #28c840; }

.term header strong {
  margin-left: auto;
  font-weight: 500;
}

.term__body {
  min-height: 92px;
  padding: 12px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: #7dffa3;
  line-height: 1.7;
}

.term__body p {
  margin: 0;
}

.term__caret {
  display: inline-block;
  width: 8px;
  height: 13px;
  background: #7dffa3;
  vertical-align: text-bottom;
  animation: blink 1s step-end infinite;
}

.tape {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(0, 229, 255, 0.03);
  margin: 40px -28px 0;
}

.tape__track {
  display: flex;
  gap: 36px;
  width: max-content;
  padding: 10px 0;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--muted);
  animation: tape 28s linear infinite;
}

/* ---------- SECTIONS ---------- */

.about,
.howto,
.chart,
.join {
  padding: 92px 28px 20px;
  max-width: calc(var(--max) + 56px);
  margin: 0 auto;
}

.sec {
  display: flex;
  align-items: flex-end;
  gap: 22px;
  margin-bottom: 18px;
}

.sec__idx {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 800;
  font-size: 56px;
  line-height: 0.8;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.sec__eye {
  margin: 0 0 4px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cyan);
}

.sec h2 {
  margin: 0;
  font-family: var(--font-label);
  font-weight: 700;
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: 0.02em;
  line-height: 1.1;
}

.sec__lead {
  max-width: 620px;
  color: var(--muted);
  margin: 0 0 36px;
}

.about__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: stretch;
}

.about__lead {
  position: relative;
  padding: 28px;
  background: var(--panel);
  border: 1px solid var(--line);
  overflow: hidden;
}

.watermark {
  position: absolute;
  right: -8px;
  top: -18px;
  margin: 0;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 800;
  font-size: 120px;
  letter-spacing: 0.04em;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0.12;
  pointer-events: none;
}

.about__lead p {
  position: relative;
  color: #c9d6ea;
}

.about__meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 28px 0 0;
}

.about__meta dt {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--muted);
  text-transform: uppercase;
}

.about__meta dd {
  margin: 4px 0 0;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
}

.rails {
  display: grid;
  gap: 14px;
}

.mod {
  padding: 20px 22px;
  background: rgba(7, 9, 18, 0.7);
  border: 1px solid var(--line);
  clip-path: polygon(14px 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%, 0 14px);
  transition: transform 0.25s, box-shadow 0.25s;
}

.mod:hover {
  transform: translateX(6px);
  box-shadow: 0 0 28px rgba(0, 229, 255, 0.08);
}

.mod header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.mod header span {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--muted);
}

.mod svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: var(--cyan);
  stroke-width: 2;
}

.mod[data-accent="blue"] svg { stroke: var(--blue); }
.mod[data-accent="violet"] svg { stroke: var(--violet); }

.mod h3 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.mod p {
  margin: 0;
  color: var(--muted);
}

/* ---------- HOW TO BUY ---------- */

.route {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  position: relative;
}

.route::before {
  content: "";
  position: absolute;
  top: 42px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg, var(--cyan), var(--blue), var(--violet));
  opacity: 0.45;
  animation: flow 2.8s linear infinite;
  background-size: 200% 100%;
}

.node {
  position: relative;
  padding: 0;
}

.node__well {
  width: 84px;
  height: 84px;
  margin: 0 auto 16px;
  display: grid;
  place-items: center;
  background: #07070f;
  border: 1px solid var(--line);
  clip-path: polygon(30% 0, 70% 0, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0 70%, 0 30%);
  box-shadow: 0 0 22px rgba(0, 229, 255, 0.12);
  animation: pulse 3.8s ease-in-out infinite;
}

.node:nth-child(2) .node__well { animation-delay: 0.4s; }
.node:nth-child(3) .node__well { animation-delay: 0.8s; }
.node:nth-child(4) .node__well { animation-delay: 1.2s; }

.node__well img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.node__body {
  padding: 18px;
  min-height: 220px;
  background: var(--panel);
  border: 1px solid var(--line);
}

.node__body span {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--cyan);
}

.node__body h3 {
  margin: 8px 0;
  font-family: var(--font-label);
  font-size: 22px;
}

.node__body p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 15px;
}

.node__body a {
  font-family: var(--font-label);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 13px;
  color: var(--cyan);
  border-bottom: 1px solid rgba(0, 229, 255, 0.35);
}

/* ---------- CHART ---------- */

.bezel {
  border: 1px solid var(--line);
  background: #05060d;
  box-shadow: 0 0 40px rgba(0, 229, 255, 0.06);
}

.bezel__bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 12px;
}

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

.bezel__dots i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff5f57;
}

.bezel__dots i:nth-child(2) { background: #febc2e; }
.bezel__dots i:nth-child(3) { background: #28c840; }

.bezel__bar strong {
  letter-spacing: 0.12em;
}

.bezel__bar a {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--cyan);
}

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

.bezel__screen {
  height: min(680px, 72vh);
  background: #000;
}

.bezel__screen iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ---------- JOIN ---------- */

.join__plate {
  position: relative;
  margin: 28px 0 0;
  overflow: hidden;
  border: 1px solid var(--line);
}

.join__plate::before,
.join__plate::after {
  content: "";
  position: absolute;
  width: 28px;
  height: 28px;
  z-index: 2;
  pointer-events: none;
}

.join__plate::before {
  top: 10px;
  left: 10px;
  border-top: 2px solid var(--cyan);
  border-left: 2px solid var(--cyan);
}

.join__plate::after {
  bottom: 10px;
  right: 10px;
  border-bottom: 2px solid var(--violet);
  border-right: 2px solid var(--violet);
}

.join__banner {
  width: 100%;
  height: auto;
  min-height: 280px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.join__card {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  padding: 22px 24px;
  background: rgba(4, 6, 12, 0.78);
  border: 1px solid var(--line);
  backdrop-filter: blur(14px);
  max-width: 620px;
}

.join__card h3 {
  margin: 0 0 8px;
  font-family: var(--font-label);
  font-size: 30px;
}

.join__card p {
  color: #c9d6ea;
}

.join__card p a {
  color: var(--cyan);
  border-bottom: 1px solid rgba(0, 229, 255, 0.4);
}

/* ---------- FOOT ---------- */

.foot {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 36px 28px 48px;
  margin-top: 72px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.foot__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--text);
}

.foot__brand img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
}

.foot p {
  max-width: 460px;
  margin: 0;
}

.foot__links {
  display: flex;
  gap: 10px;
}

.foot__links a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background: rgba(0, 229, 255, 0.04);
  transition: 0.2s;
}

.foot__links a:hover {
  box-shadow: 0 0 16px rgba(0, 229, 255, 0.2);
}

.foot__links img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

/* ---------- REVEAL ---------- */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.85s ease, transform 0.85s ease;
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

.rails .reveal:nth-child(2) { transition-delay: 0.12s; }
.rails .reveal:nth-child(3) { transition-delay: 0.24s; }
.route .reveal:nth-child(2) { transition-delay: 0.1s; }
.route .reveal:nth-child(3) { transition-delay: 0.2s; }
.route .reveal:nth-child(4) { transition-delay: 0.3s; }

/* ---------- KEYFRAMES ---------- */

@keyframes orb {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, 30px) scale(1.12); }
}

@keyframes streak {
  0% { background-position: -40% 40%, 120% 70%; }
  100% { background-position: 140% 40%, -20% 70%; }
}

@keyframes gridshift {
  0% { background-position: 0 0; }
  100% { background-position: 72px 72px; }
}

@keyframes scan {
  0% { transform: translateY(0); }
  100% { transform: translateY(3px); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; filter: brightness(1); }
  50% { opacity: 0.72; filter: brightness(1.2); }
}

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

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

@keyframes shimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes glitch {
  0%, 92%, 100% { transform: none; }
  93% { transform: translate(1px, -1px); }
  95% { transform: translate(-1px, 1px); }
  97% { transform: translate(1px, 0); }
}

@keyframes sheen {
  0%, 70% { transform: translateX(-120%); }
  100% { transform: translateX(120%); }
}

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

@keyframes tape {
  to { transform: translateX(-50%); }
}

@keyframes flow {
  0% { background-position: 0 0; }
  100% { background-position: 200% 0; }
}

/* ---------- RESPONSIVE ---------- */

@media (min-width: 1100px) {
  .nav__clock,
  .rail {
    display: flex;
  }

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

@media (max-width: 980px) {
  .hero__layout,
  .about__grid,
  .route {
    grid-template-columns: 1fr;
  }

  .route::before {
    display: none;
  }

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

  .hero__stage {
    min-height: 0;
  }

  .term {
    position: relative;
    width: 100%;
    margin-top: 18px;
    bottom: auto;
    right: auto;
  }

  .join__card {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    max-width: none;
  }
}

@media (max-width: 820px) {
  .nav__toggle {
    display: block;
  }

  .nav__links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 18px 22px 24px;
    background: rgba(3, 3, 8, 0.94);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: flex-start;
  }

  .nav__links.is-open {
    display: flex;
  }

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

  .tape {
    margin-left: -18px;
    margin-right: -18px;
  }

  .foot {
    flex-direction: column;
    text-align: center;
  }

  .wordmark {
    font-size: 64px;
  }
}

@media (max-width: 420px) {
  .wordmark {
    font-size: 48px;
  }
}

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

  .reveal,
  .reveal.is-in {
    opacity: 1;
    transform: none;
  }

  .fx__pointer {
    display: none;
  }
}
