@font-face {
  font-family: "Fira Code";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/FiraCode-400.woff2") format("woff2");
}
@font-face {
  font-family: "Fira Code";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/FiraCode-500.woff2") format("woff2");
}
@font-face {
  font-family: "VT323";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/VT323.woff2") format("woff2");
}

:root {
  --fluor: #d0ff00;
  --hood: #00c805;
  --void: #000000;
  --white: #ffffff;
  --mono: "Fira Code", "Courier New", "Space Mono", monospace;
  --term: "VT323", monospace;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  border-width: 0;
  border-style: solid;
  border-color: #e5e7eb;
}
html {
  background: var(--void);
  color: var(--white);
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
  scroll-padding-top: 8rem;
}
body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background: transparent;
  font-family: var(--mono);
  color: var(--white);
}
::selection {
  background: var(--fluor);
  color: var(--void);
}
img,
svg,
video,
canvas {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font-family: inherit;
  font-size: 100%;
  color: inherit;
  background: none;
  cursor: pointer;
}
button:disabled {
  cursor: not-allowed;
}
ul,
ol,
p,
h1,
h2,
h3,
dl,
dd,
figure {
  margin: 0;
  padding: 0;
}
ul,
ol {
  list-style: none;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 200;
  padding: 0.5rem 1rem;
  background: var(--fluor);
  color: var(--void);
}
.skip-link:focus {
  left: 0.75rem;
  top: 0.75rem;
}

/* ===== BACKGROUND ===== */
.site-bg-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100vw;
  height: 100dvh;
  pointer-events: none;
  overflow: hidden;
  perspective: 920px;
}
.cube-stage {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transform-style: preserve-3d;
}
.cube-field {
  position: relative;
  width: 0;
  height: 0;
  transform-style: preserve-3d;
  transform: rotateX(58deg) rotateZ(42deg);
  animation: field-drift 28s ease-in-out infinite;
}
@keyframes field-drift {
  0%,
  100% {
    transform: rotateX(58deg) rotateZ(42deg) translate3d(-12px, 8px, 0);
  }
  50% {
    transform: rotateX(52deg) rotateZ(48deg) translate3d(14px, -10px, 0);
  }
}
.cube {
  position: absolute;
  width: 56px;
  height: 56px;
  transform-style: preserve-3d;
  transform: translate3d(var(--cx), 0, var(--cz));
  animation: cube-flip 9s ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}
.cube-face {
  position: absolute;
  inset: 0;
  background: rgba(208, 255, 0, 0.12);
  border: 1px solid color-mix(in srgb, var(--fluor) 55%, transparent);
  backface-visibility: hidden;
}
.cube-face.front {
  transform: translateZ(28px);
  background: color-mix(in srgb, var(--fluor) 18%, #000);
}
.cube-face.back {
  transform: rotateY(180deg) translateZ(28px);
  opacity: 0.35;
}
.cube-face.right {
  transform: rotateY(90deg) translateZ(28px);
  background: color-mix(in srgb, var(--fluor) 8%, #000);
}
.cube-face.left {
  transform: rotateY(-90deg) translateZ(28px);
  background: color-mix(in srgb, var(--fluor) 6%, #000);
}
.cube-face.top {
  transform: rotateX(90deg) translateZ(28px);
  background: color-mix(in srgb, var(--fluor) 28%, #000);
}
.cube-face.bottom {
  transform: rotateX(-90deg) translateZ(28px);
  opacity: 0.2;
}
@keyframes cube-flip {
  0%,
  100% {
    transform: translate3d(var(--cx), 0, var(--cz)) rotateX(0deg);
    filter: brightness(1);
  }
  40% {
    transform: translate3d(var(--cx), -8px, var(--cz)) rotateX(180deg);
    filter: brightness(1.35);
  }
  70% {
    transform: translate3d(var(--cx), 4px, var(--cz)) rotateX(360deg);
    filter: brightness(0.55);
  }
}
.site-bg-overlay {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 100% 90% at 50% 50%, transparent 0%, rgba(0, 0, 0, 0.28) 60%, rgba(0, 0, 0, 0.62) 100%),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, transparent 22%, transparent 78%, rgba(0, 0, 0, 0.7) 100%);
}
.site-scan {
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(208, 255, 0, 0.018) 2px,
    rgba(208, 255, 0, 0.018) 4px
  );
  opacity: 0.55;
}
.site-wrap {
  position: relative;
  z-index: 10;
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}

/* ===== HEADER ===== */
.site-header-glass {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  border-bottom: 1px solid color-mix(in srgb, var(--fluor) 30%, transparent);
  background: #000000b8;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.header-row {
  margin: 0 auto;
  display: flex;
  max-width: 72rem;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1rem;
  padding: 1rem 1.5rem;
  min-width: 0;
}
@media (min-width: 768px) {
  .header-row {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.site-logo-mark {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 14px color-mix(in srgb, var(--fluor) 45%, transparent);
}
.site-logo-text {
  font-family: var(--term);
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #fff;
}
@media (min-width: 768px) {
  .site-logo-text {
    font-size: 1.875rem;
  }
}
.text-fluor {
  color: var(--fluor) !important;
}
.nav-desktop {
  display: none;
  align-items: center;
  gap: 1.5rem;
}
@media (min-width: 1024px) {
  .nav-desktop {
    display: flex;
  }
}
.nav-link {
  font-family: var(--mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  transition: color 0.2s;
}
.nav-link:hover {
  color: var(--fluor);
}
.header-actions {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 0.75rem;
}
.btn-twitter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-width: 2.25rem;
  height: 2.25rem;
  padding: 0 0.7rem;
  border: 1px solid color-mix(in srgb, var(--white) 30%, transparent);
  background: #000;
  color: var(--white);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, box-shadow 0.2s, opacity 0.2s;
}
.btn-twitter-handle {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  color: inherit;
  white-space: nowrap;
}
@media (max-width: 1199px) {
  .header-actions .btn-twitter-handle {
    display: none;
  }
  .header-actions .btn-twitter {
    width: 2.25rem;
    min-width: 2.25rem;
    padding: 0;
  }
}
.btn-twitter:hover {
  border-color: var(--fluor);
  color: var(--fluor);
  box-shadow: 0 0 14px color-mix(in srgb, var(--fluor) 50%, transparent);
}
.btn-twitter.is-soon {
  opacity: 0.55;
  cursor: default;
}
.nav-mobile {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1rem;
  border-top: 1px solid color-mix(in srgb, var(--fluor) 30%, transparent);
  padding: 0.75rem 1.5rem;
}
@media (min-width: 1024px) {
  .nav-mobile {
    display: none;
  }
}
.nav-mobile .nav-link {
  font-size: 0.75rem;
}

/* ===== BUTTONS ===== */
.btn-primary,
.btn-secondary,
.btn-terminal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  border: 1px solid;
  font-family: var(--mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: all 0.2s;
}
.btn-primary {
  padding: 0.75rem 1.5rem;
  border-color: var(--fluor);
  background: var(--fluor);
  color: var(--void);
}
.btn-primary:hover:not(:disabled) {
  box-shadow: 0 0 22px color-mix(in srgb, var(--fluor) 60%, transparent);
}
.btn-primary:disabled,
.btn-secondary:disabled,
.btn-terminal:disabled {
  border-color: color-mix(in srgb, var(--white) 10%, transparent);
  color: color-mix(in srgb, var(--white) 30%, transparent);
  background: #000;
  box-shadow: none;
}
.btn-secondary {
  padding: 0.75rem 1.5rem;
  border-color: color-mix(in srgb, var(--white) 30%, transparent);
  background: #000;
  color: var(--white);
}
.btn-secondary:hover:not(:disabled) {
  border-color: var(--fluor);
  color: var(--fluor);
}
.btn-terminal {
  padding: 0.5rem 1rem;
  border-color: color-mix(in srgb, var(--white) 30%, transparent);
  background: #000;
  color: var(--white);
}
.btn-terminal:hover:not(:disabled) {
  border-color: var(--fluor);
  color: var(--fluor);
  box-shadow: 0 0 14px color-mix(in srgb, var(--fluor) 50%, transparent);
}
.btn-sm {
  padding: 0.45rem 0.85rem;
  font-size: 10px;
}
.hidden-sm {
  display: none;
}
@media (min-width: 640px) {
  .hidden-sm {
    display: inline-flex;
  }
  .show-sm-only {
    display: none !important;
  }
}

/* ===== CA STRIP ===== */
.ca-strip {
  position: relative;
  overflow: hidden;
  border-top: 1px solid color-mix(in srgb, var(--fluor) 22%, transparent);
  background: linear-gradient(
    90deg,
    #000000f2,
    color-mix(in srgb, var(--fluor) 6%, rgb(0 0 0 / 0.92)),
    #000000f2
  );
}
.ca-strip-glow {
  pointer-events: none;
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 0%,
    color-mix(in srgb, var(--fluor) 12%, transparent) 45%,
    transparent 70%
  );
  animation: ca-strip-sweep 4.5s ease-in-out infinite;
}
@keyframes ca-strip-sweep {
  0%,
  100% {
    transform: translateX(-120%);
    opacity: 0;
  }
  45% {
    opacity: 1;
  }
  55% {
    transform: translateX(120%);
    opacity: 1;
  }
  70% {
    opacity: 0;
  }
}
.ca-strip-inner {
  margin: 0 auto;
  display: flex;
  max-width: 72rem;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.55rem 1.5rem;
}
@media (min-width: 768px) {
  .ca-strip-inner {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
.ca-strip-meta {
  min-width: 0;
  flex: 1 1 14rem;
}
.ca-strip-label {
  margin: 0 0 0.2rem;
  font-size: 0.58rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--fluor) 70%, var(--white));
}
.ca-strip-address {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: clamp(0.62rem, 2.2vw, 0.78rem);
  letter-spacing: 0.06em;
  color: var(--white);
}
.ca-strip-address.is-revealed {
  color: var(--fluor);
  text-shadow: 0 0 12px color-mix(in srgb, var(--fluor) 45%, transparent);
}
.ca-strip-actions {
  display: flex;
  flex-shrink: 0;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}
.ca-strip-link,
.ca-copy-btn {
  padding: 0.35rem 0.75rem;
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.ca-strip-link {
  border: 1px solid color-mix(in srgb, var(--white) 22%, transparent);
  color: var(--white);
  text-decoration: none;
}
a.ca-strip-link {
  opacity: 1;
  pointer-events: auto;
}
a.ca-strip-link:hover {
  border-color: var(--fluor);
  color: var(--fluor);
}
.ca-copy-btn {
  border: 1px solid color-mix(in srgb, var(--fluor) 40%, transparent);
  background: transparent;
  color: color-mix(in srgb, var(--fluor) 70%, white);
  cursor: default;
  opacity: 0.7;
}
.ca-copy-btn.is-live {
  border-color: var(--fluor);
  background: color-mix(in srgb, var(--fluor) 12%, transparent);
  color: var(--fluor);
  cursor: pointer;
  opacity: 1;
}
.ca-x-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  flex-shrink: 0;
  border: 1px solid var(--fluor);
  background: color-mix(in srgb, var(--fluor) 12%, transparent);
  padding: 0.35rem 0.75rem;
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  color: var(--fluor);
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s, box-shadow 0.2s, color 0.2s;
}
.ca-x-link:hover {
  background: var(--fluor);
  color: var(--void);
  box-shadow: 0 0 14px color-mix(in srgb, var(--fluor) 40%, transparent);
}

/* ===== HERO ===== */
.hero-landing {
  position: relative;
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  justify-content: flex-start;
}
.hero-content {
  position: relative;
  z-index: 2;
  margin: 0 auto;
  width: 100%;
  max-width: 72rem;
  padding: 8.5rem 1.5rem 0;
}
@media (min-width: 768px) {
  .hero-content {
    padding-top: 10rem;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
.hero-eyebrow {
  margin-bottom: 1.25rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: var(--fluor);
}
.hero-title {
  max-width: 100%;
  font-family: var(--term);
  font-size: clamp(1.875rem, 4.5vw, 4.125rem);
  line-height: 1.1;
  color: var(--white);
  min-height: 2.4em;
}
.hero-typewriter-ghost {
  opacity: 0.55;
  color: color-mix(in srgb, var(--fluor) 70%, #00ffcc);
}
.hero-typewriter-cursor {
  display: inline-block;
  margin-left: 0.06em;
  color: var(--white);
  text-shadow: 0 0 8px rgb(255 255 255 / 0.85);
  animation: hero-cursor-blink 1s step-end infinite;
}
@keyframes hero-cursor-blink {
  50% {
    opacity: 0;
  }
}
.btn-gallery-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 2rem;
  padding: 0.95rem 1.65rem;
  border: 1px solid var(--fluor);
  background: color-mix(in srgb, var(--fluor) 12%, var(--void));
  color: var(--fluor);
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  overflow: hidden;
  animation: gallery-cta-float 4.5s ease-in-out infinite;
  box-shadow:
    0 0 18px color-mix(in srgb, var(--fluor) 35%, transparent),
    0 0 42px color-mix(in srgb, var(--fluor) 18%, transparent);
  transition: color 0.25s, background-color 0.25s, box-shadow 0.25s;
}
.btn-gallery-cta-glow {
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle, color-mix(in srgb, var(--fluor) 45%, transparent) 0%, transparent 68%);
  opacity: 0.55;
  animation: gallery-cta-glow-pulse 3s ease-in-out infinite;
  pointer-events: none;
}
.btn-gallery-cta-label {
  position: relative;
  z-index: 1;
}
.btn-gallery-cta:hover {
  color: var(--void);
  background: var(--fluor);
  box-shadow:
    0 0 28px color-mix(in srgb, var(--fluor) 70%, transparent),
    0 0 64px color-mix(in srgb, var(--fluor) 35%, transparent);
}
@keyframes gallery-cta-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}
@keyframes gallery-cta-glow-pulse {
  0%,
  100% {
    opacity: 0.35;
    transform: scale(0.95);
  }
  50% {
    opacity: 0.75;
    transform: scale(1.05);
  }
}
.hero-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding: 0 1.5rem 2rem;
}
.hero-stats {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.hero-stats-metrics {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 2rem;
}
.hero-stat-num {
  color: var(--fluor);
}
.hero-stats-launch {
  margin: 0;
  min-height: 1.25rem;
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: lowercase;
  color: var(--fluor);
}
.scroll-hint {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  color: var(--fluor);
}
@keyframes pulse {
  50% {
    opacity: 0.5;
  }
}

/* ===== SECTIONS ===== */
.section-pad {
  padding: 5rem 0;
}
@media (min-width: 768px) {
  .section-pad {
    padding: 7rem 0;
  }
}
.border-ui {
  border-color: color-mix(in srgb, var(--fluor) 30%, transparent);
}
.container-6xl {
  margin: 0 auto;
  max-width: 72rem;
  padding: 0 1.5rem;
}
@media (min-width: 768px) {
  .container-6xl {
    padding: 0 2.5rem;
  }
}
.section-label {
  margin-bottom: 0.75rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: var(--fluor);
}
.section-title {
  max-width: 48rem;
  font-family: var(--term);
  font-size: 1.875rem;
  line-height: 1.25;
  color: #fff;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .section-title {
    font-size: 3rem;
    line-height: 1;
  }
}
.body-text {
  font-size: 0.875rem;
  line-height: 1.625;
  color: #fff;
}
@media (min-width: 768px) {
  .body-text.md-base {
    font-size: 1rem;
  }
}
.label-text {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--fluor);
}
.link-fluor {
  color: var(--fluor);
  transition: opacity 0.2s;
}
.link-fluor:hover {
  opacity: 0.7;
}
.link-muted {
  color: var(--white);
  transition: color 0.2s;
}
.link-muted:hover {
  color: var(--fluor);
}

.grid-3 {
  display: grid;
  gap: 2rem;
}
.grid-2 {
  display: grid;
  gap: 1rem;
}
.grid-hashes {
  display: grid;
  gap: 1rem;
}
@media (min-width: 768px) {
  .grid-3,
  .grid-hashes {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.step-card,
.stat-cell,
.panel-box,
.wallet-panel,
.hash-card {
  border: 1px solid color-mix(in srgb, var(--fluor) 35%, transparent);
  background: #000;
}
.step-card {
  padding: 1.5rem;
}
@media (min-width: 768px) {
  .step-card {
    padding: 2rem;
  }
}
.step-number {
  margin-bottom: 1rem;
  display: block;
  font-family: var(--term);
  font-size: 2.25rem;
  color: var(--fluor);
}
.step-title {
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fluor);
}
.step-body {
  font-size: 0.875rem;
  line-height: 1.625;
}

.hash-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
}
.hash-card--live {
  border-color: var(--fluor);
}
.hash-card--sealed {
  border-color: color-mix(in srgb, var(--fluor) 60%, transparent);
}
.hash-card--dormant {
  border-color: color-mix(in srgb, var(--white) 15%, transparent);
}
.hash-preview {
  height: 4rem;
  width: 4rem;
  flex-shrink: 0;
  border: 1px solid color-mix(in srgb, var(--fluor) 40%, transparent);
  background: #000;
}
.hash-preview svg {
  width: 100%;
  height: 100%;
}
.hash-preview--dim {
  opacity: 0.45;
}
.hash-name {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fluor);
}
.hash-status {
  margin-top: 0.25rem;
  font-size: 0.75rem;
}
.hash-status--active {
  color: var(--fluor);
}

.panel-box {
  padding: 2rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .panel-box {
    padding: 2.5rem;
  }
}
.supply-num {
  font-family: var(--term);
  font-size: 3rem;
  color: var(--fluor);
  line-height: 1;
}
@media (min-width: 768px) {
  .supply-num {
    font-size: 3.75rem;
  }
}
.stat-cell {
  padding: 1.5rem;
}
@media (min-width: 768px) {
  .stat-cell {
    padding: 2rem;
  }
}
.stat-cell-label {
  margin-bottom: 0.5rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fluor);
}
.stat-cell-value {
  font-family: var(--term);
  font-size: 1.5rem;
  color: var(--fluor);
}
@media (min-width: 768px) {
  .stat-cell-value {
    font-size: 1.875rem;
  }
}

.gallery-preview {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.5rem;
}
@media (min-width: 640px) {
  .gallery-preview {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}
@media (min-width: 768px) {
  .gallery-preview {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  .gallery-preview {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
}
.gallery-cell {
  aspect-ratio: 1;
  border: 1px solid color-mix(in srgb, var(--fluor) 30%, transparent);
  background: #000;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.gallery-cell:hover {
  border-color: var(--fluor);
  box-shadow: 0 0 16px color-mix(in srgb, var(--fluor) 35%, transparent);
  transform: translateY(-2px);
}
.gallery-cell svg {
  width: 100%;
  height: 100%;
}
.gallery-cell.sm-only-hide {
  display: none;
}
@media (min-width: 640px) {
  .gallery-cell.sm-only-hide {
    display: block;
  }
}
.gallery-cell.md-only-hide {
  display: none;
}
@media (min-width: 768px) {
  .gallery-cell.md-only-hide {
    display: block;
  }
}

.bullet-square {
  margin-top: 0.5rem;
  display: inline-block;
  height: 0.375rem;
  width: 0.375rem;
  flex-shrink: 0;
  background: var(--fluor);
}
.manifest-list {
  margin: 0 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.875rem;
}
.manifest-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.inline-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ===== WALLET ===== */
.wallet-panel {
  padding: 2rem;
}
.wallet-panel-brand,
.wallet-modal-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.wallet-stats {
  display: flex;
  flex-direction: column;
}
.wallet-stat-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid color-mix(in srgb, var(--fluor) 25%, transparent);
  padding: 1rem 0;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.wallet-stat-row dt {
  color: var(--white);
}
.wallet-stat-row dd {
  color: var(--fluor);
}
.wallet-actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.wallet-dropdown {
  position: relative;
  display: inline-flex;
}
.wallet-dropdown-trigger {
  gap: 0.5rem;
}
.wallet-dropdown-chevron {
  display: none;
  font-size: 10px;
}
.wallet-dropdown--connected .wallet-dropdown-chevron {
  display: inline-block;
}
.wallet-dropdown--open .wallet-dropdown-chevron {
  transform: rotate(180deg);
}
.wallet-dropdown-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 0.5rem);
  z-index: 50;
  display: none;
  min-width: 11rem;
  border: 1px solid color-mix(in srgb, var(--fluor) 35%, transparent);
  background: #000;
  padding: 0.25rem 0;
  box-shadow: 0 8px 24px #00000073;
}
.wallet-dropdown--panel .wallet-dropdown-menu {
  left: 0;
  right: auto;
}
.wallet-dropdown--open .wallet-dropdown-menu {
  display: block;
}
.wallet-dropdown-item {
  display: block;
  width: 100%;
  padding: 0.75rem 1rem;
  text-align: left;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
}
.wallet-dropdown-item:hover {
  background: color-mix(in srgb, var(--fluor) 10%, black);
  color: var(--fluor);
}

.wallet-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s, visibility 0.2s;
}
.wallet-modal--open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
body.wallet-modal-open {
  overflow: hidden;
}
.wallet-modal-backdrop {
  position: absolute;
  inset: 0;
  background: #000000d1;
  backdrop-filter: blur(4px);
}
.wallet-modal-panel {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 28rem;
  border: 1px solid color-mix(in srgb, var(--fluor) 40%, transparent);
  background: #000;
  padding: 1.5rem;
  box-shadow: 0 0 40px color-mix(in srgb, var(--fluor) 12%, transparent);
}
@media (min-width: 768px) {
  .wallet-modal-panel {
    padding: 2rem;
  }
}
.wallet-modal-header {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wallet-modal-close {
  font-size: 1.5rem;
  line-height: 1;
  color: var(--white);
}
.wallet-modal-close:hover {
  color: var(--fluor);
}
.wallet-modal-title {
  margin-bottom: 0.5rem;
  font-family: var(--term);
  font-size: 1.875rem;
  text-transform: uppercase;
  color: var(--fluor);
}
.wallet-modal-subtitle {
  margin-bottom: 1.5rem;
  font-size: 0.75rem;
  line-height: 1.625;
}
.wallet-options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.wallet-option-btn {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 1rem;
  border: 1px solid color-mix(in srgb, var(--fluor) 25%, transparent);
  background: #000;
  padding: 0.75rem 1rem;
  text-align: left;
  transition: border-color 0.15s, background 0.15s;
}
.wallet-option-btn:hover {
  border-color: var(--fluor);
  background: color-mix(in srgb, var(--fluor) 8%, black);
}
.wallet-option-icon {
  display: flex;
  height: 2.5rem;
  width: 2.5rem;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 9999px;
  font-weight: 700;
  background: var(--wallet-accent, #111);
  color: #fff;
}
.wallet-option-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 9999px;
}
.wallet-option-name {
  display: block;
  font-size: 0.875rem;
  text-transform: uppercase;
}
.wallet-option-hint {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fluor);
}
.wallet-option--empty {
  border: 1px solid color-mix(in srgb, var(--fluor) 25%, transparent);
  padding: 1.5rem 1rem;
  text-align: center;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ===== FOOTER ===== */
.site-footer-glass {
  border-top: 1px solid color-mix(in srgb, var(--fluor) 30%, transparent);
  background: #000c;
  backdrop-filter: blur(8px);
  padding: 3rem 1.5rem;
}
@media (min-width: 768px) {
  .site-footer-glass {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
.footer-inner {
  margin: 0 auto;
  max-width: 72rem;
}
.footer-top {
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (min-width: 768px) {
  .footer-top {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }
}
.footer-copy {
  max-width: 24rem;
  font-size: 0.75rem;
  line-height: 1.625;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 2rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.footer-legal {
  border-top: 1px solid color-mix(in srgb, var(--fluor) 30%, transparent);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--fluor);
}

.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-xl { max-width: 36rem; margin-left: auto; margin-right: auto; }
.pt-4 { padding-top: 1rem; }
.border-t-ui {
  border-top: 1px solid color-mix(in srgb, var(--fluor) 30%, transparent);
}
.border-b-ui {
  border-bottom: 1px solid color-mix(in srgb, var(--fluor) 30%, transparent);
}
.inline-flex { display: inline-flex; }
.text-xs { font-size: 0.75rem; }

/* ===== DOCS ===== */
.docs-page {
  --docs-header-h: 4.5rem;
  --docs-sidebar-w: 15rem;
  min-height: 100vh;
  padding-top: var(--docs-header-h);
  background-color: var(--void);
  background-image: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    color-mix(in srgb, var(--white) 2%, transparent) 2px,
    color-mix(in srgb, var(--white) 2%, transparent) 4px
  );
}
.docs-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  min-height: var(--docs-header-h);
  height: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1rem;
  padding: 0.75rem 1.25rem;
  border-bottom: 1px solid color-mix(in srgb, var(--fluor) 22%, transparent);
  background: #000000d4;
  backdrop-filter: blur(10px);
}
.docs-header-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 1rem;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.docs-sidebar {
  position: fixed;
  top: var(--docs-header-h);
  left: 0;
  z-index: 40;
  width: var(--docs-sidebar-w);
  height: calc(100vh - var(--docs-header-h));
  overflow-y: auto;
  border-right: 1px solid color-mix(in srgb, var(--fluor) 22%, transparent);
  background: color-mix(in srgb, var(--void) 96%, var(--fluor) 4%);
  padding: 1.25rem 1rem;
}
.docs-sidebar-title {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid color-mix(in srgb, var(--fluor) 22%, transparent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fluor);
}
.docs-sidebar-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--fluor);
  box-shadow: 0 0 8px var(--fluor);
  animation: docs-signal-pulse 2.2s ease-in-out infinite;
}
@keyframes docs-signal-pulse {
  0%,
  100% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
}
.docs-sidebar-nav {
  display: grid;
  gap: 0.35rem;
  padding-top: 1rem;
}
.docs-nav-link {
  display: block;
  padding: 0.45rem 0.5rem;
  border-left: 2px solid transparent;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--white) 50%, transparent);
  transition: color 0.16s, border-color 0.16s, background 0.16s;
}
.docs-nav-link:hover {
  color: var(--fluor);
  background: color-mix(in srgb, var(--fluor) 6%, transparent);
}
.docs-nav-link.is-active {
  color: var(--fluor);
  border-left-color: var(--fluor);
  background: color-mix(in srgb, var(--fluor) 8%, transparent);
}
.docs-main {
  margin-left: var(--docs-sidebar-w);
  padding: 2.5rem 1.5rem 5rem;
  display: flex;
  justify-content: center;
}
.docs-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 100%;
  max-width: 42rem;
}
.docs-card {
  scroll-margin-top: calc(var(--docs-header-h) + 1rem);
  border: 1px solid color-mix(in srgb, var(--white) 12%, transparent);
  background: color-mix(in srgb, var(--void) 88%, var(--white) 12%);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--fluor) 8%, transparent);
}
.docs-signal-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1rem;
  padding: 0.4rem 0.7rem;
  border: 1px solid color-mix(in srgb, var(--fluor) 35%, transparent);
  background: color-mix(in srgb, var(--fluor) 6%, transparent);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fluor);
}
.docs-card h2 {
  margin: 0.5rem 0 0;
  font-family: var(--term);
  font-size: clamp(1.85rem, 4.5vw, 3rem);
  line-height: 0.95;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--fluor);
  text-shadow: 0 0 18px color-mix(in srgb, var(--fluor) 30%, transparent);
}
.docs-hero h2 {
  font-size: clamp(2.25rem, 6vw, 4rem);
}
.docs-card p,
.docs-card li {
  margin: 0;
  font-size: clamp(0.88rem, 1.4vw, 0.98rem);
  line-height: 1.85;
  color: color-mix(in srgb, var(--white) 72%, transparent);
}
.docs-card > p {
  margin-top: 1.25rem;
}
.docs-card > p + p {
  margin-top: 1rem;
}
.docs-accent {
  color: var(--fluor);
}
.docs-list {
  display: grid;
  gap: 0.75rem;
  margin: 1.25rem 0 0;
}
.docs-list li {
  position: relative;
  padding-left: 1.1rem;
}
.docs-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 5px;
  height: 5px;
  background: var(--fluor);
  box-shadow: 0 0 6px var(--fluor);
}
.docs-table {
  display: grid;
  margin-top: 1.25rem;
  border: 1px solid color-mix(in srgb, var(--white) 10%, transparent);
}
.docs-table-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 1rem;
  align-items: center;
  padding: 0.8rem 1rem;
  border-bottom: 1px solid color-mix(in srgb, var(--white) 8%, transparent);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
}
.docs-table-row:last-child {
  border-bottom: none;
}
.docs-table-key {
  text-transform: uppercase;
  color: var(--fluor);
}
.docs-table-val {
  color: color-mix(in srgb, var(--white) 78%, transparent);
}
.docs-code {
  margin-top: 1.25rem;
  overflow-x: auto;
  padding: 1rem;
  border: 1px solid color-mix(in srgb, var(--fluor) 25%, transparent);
  background: #000;
  font-family: var(--mono);
  font-size: 0.76rem;
  line-height: 1.75;
  white-space: pre;
  color: var(--fluor);
}
.docs-footer-note {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid color-mix(in srgb, var(--white) 10%, transparent);
  font-size: 0.8rem;
  line-height: 1.8;
  color: color-mix(in srgb, var(--white) 55%, transparent);
}
.docs-link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}
@media (max-width: 979px) {
  .docs-page {
    --docs-sidebar-w: 0px;
  }
  .docs-sidebar {
    position: sticky;
    top: var(--docs-header-h);
    width: 100%;
    height: auto;
    z-index: 30;
    border-right: none;
    border-bottom: 1px solid color-mix(in srgb, var(--fluor) 22%, transparent);
    padding: 0.75rem 1rem 1rem;
  }
  .docs-sidebar-nav {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    padding-top: 0.75rem;
  }
  .docs-nav-link {
    flex-shrink: 0;
    border-left: none;
    border-bottom: 2px solid transparent;
    padding: 0.35rem 0.65rem;
    white-space: nowrap;
  }
  .docs-nav-link.is-active {
    border-left: none;
    border-bottom-color: var(--fluor);
  }
  .docs-main {
    margin-left: 0;
    padding-top: 2rem;
  }
}

.toast {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  z-index: 80;
  transform: translateX(-50%) translateY(120%);
  padding: 0.65rem 1.1rem;
  border: 1px solid var(--fluor);
  background: #000000ee;
  color: var(--fluor);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  pointer-events: none;
  opacity: 0;
  transition: transform 0.28s ease, opacity 0.28s ease;
}
.toast.is-on {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .btn-gallery-cta,
  .btn-gallery-cta-glow,
  .ca-strip-glow,
  .cube,
  .cube-field,
  .scroll-hint,
  .hero-typewriter-cursor,
  .docs-sidebar-dot {
    animation: none;
  }
}

@media (max-width: 480px) {
  .cube {
    width: 40px;
    height: 40px;
  }
  .cube-face.front,
  .cube-face.back {
    transform: translateZ(20px);
  }
  .cube-face.back {
    transform: rotateY(180deg) translateZ(20px);
  }
  .cube-face.right {
    transform: rotateY(90deg) translateZ(20px);
  }
  .cube-face.left {
    transform: rotateY(-90deg) translateZ(20px);
  }
  .cube-face.top {
    transform: rotateX(90deg) translateZ(20px);
  }
  .cube-face.bottom {
    transform: rotateX(-90deg) translateZ(20px);
  }
  .site-logo-text {
    font-size: 1.25rem;
  }
}
