/* ── Reset & Base ─────────────────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  background: #0a0a0f;
  color: #fff;
  font-family: "DM Sans", sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
}
button {
  font-family: inherit;
}
a {
  text-decoration: none;
}
::-webkit-scrollbar {
  width: 5px;
}
::-webkit-scrollbar-track {
  background: #0a0a0f;
}
::-webkit-scrollbar-thumb {
  background: rgba(0, 255, 148, 0.25);
  border-radius: 4px;
}

/* ── Color tokens ──────────────────────────────────────────────────────────── */
.txt-white {
  color: #ffffff;
}
.txt-green {
  color: #00ff94;
}
.txt-purple {
  color: #8b5cf6;
}
.txt-orange {
  color: #ff7a00;
}
.txt-muted {
  color: #a1a1aa;
}

/* ── Typography helpers ────────────────────────────────────────────────────── */
.font-mono {
  font-family: "Space Mono", monospace;
}
.font-bold {
  font-weight: 700;
}
.font-semibold {
  font-weight: 600;
}
.text-xs {
  font-size: 0.75rem;
}
.text-sm {
  font-size: 0.875rem;
}
.text-base {
  font-size: 1rem;
}
.text-lg {
  font-size: 1.125rem;
}
.text-2xl {
  font-size: 1.5rem;
}
.text-3xl {
  font-size: 1.875rem;
}
.lh-relaxed {
  line-height: 1.7;
}
.lh-snug {
  line-height: 1.3;
}
.text-center {
  text-align: center;
}

/* ── Layout helpers ────────────────────────────────────────────────────────── */
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.mt-1 {
  margin-top: 0.25rem;
}
.mt-2 {
  margin-top: 0.5rem;
}
.mt-3 {
  margin-top: 0.75rem;
}
.mt-4 {
  margin-top: 1rem;
}
.mb-1 {
  margin-bottom: 0.25rem;
}
.mb-2 {
  margin-bottom: 0.5rem;
}
.mt-5 {
  margin-top: 1.25rem;
}
.py-20 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.py-24 {
  padding-top: 6rem;
  padding-bottom: 6rem;
}
.py-32 {
  padding-top: 8rem;
  padding-bottom: 8rem;
}
.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.pt-2 {
  padding-top: 0.5rem;
}
.max-w-2xl {
  max-width: 42rem;
}
.max-w-3xl {
  max-width: 48rem;
}
.max-w-4xl {
  max-width: 56rem;
}
.max-w-5xl {
  max-width: 64rem;
}
.max-w-6xl {
  max-width: 72rem;
}
.max-w-md {
  max-width: 28rem;
}
.max-w-sm {
  max-width: 24rem;
}
.max-w-xs {
  max-width: 20rem;
}
.max-w-lg {
  max-width: 32rem;
}
.block {
  display: block;
}
.flex-col {
  flex-direction: column;
}
.gap-4 {
  gap: 1rem;
}
.gap-5 {
  gap: 1.25rem;
}
.gap-6 {
  gap: 1.5rem;
}
.gap-8 {
  gap: 2rem;
}
.space-y-2 > * + * {
  margin-top: 0.5rem;
}
.space-y-3 > * + * {
  margin-top: 0.75rem;
}
.space-y-4 > * + * {
  margin-top: 1rem;
}
.space-y-6 > * + * {
  margin-top: 1.5rem;
}
.space-y-8 > * + * {
  margin-top: 2rem;
}
.space-y-10 > * + * {
  margin-top: 2.5rem;
}
.space-y-12 > * + * {
  margin-top: 3rem;
}
.space-y-14 > * + * {
  margin-top: 3.5rem;
}
.space-y-16 > * + * {
  margin-top: 4rem;
}

/* ── Grid ──────────────────────────────────────────────────────────────────── */
.grid-4,
.grid-3,
.grid-2 {
  display: grid;
  width: 100%;
}
.grid-4 {
  grid-template-columns: repeat(2, 1fr);
}
.grid-3 {
  grid-template-columns: 1fr;
}
.grid-2 {
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ── Scroll fade ───────────────────────────────────────────────────────────── */
.fade-section {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.fade-section.visible {
  opacity: 1;
  transform: none;
}

/* ── Fixed grid background ─────────────────────────────────────────────────── */
.fixed-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.fixed-bg svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.grid-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 55% 35% at 50% 0%,
    rgba(0, 255, 148, 0.055) 0%,
    transparent 65%
  );
}

/* Everything above z-index 0 sits on top of the grid */
nav,
section,
footer {
  position: relative;
  z-index: 1;
}

/* ── NAV ───────────────────────────────────────────────────────────────────── */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition:
    background 0.3s,
    border-bottom 0.3s,
    backdrop-filter 0.3s;
}
#nav.scrolled {
  background: rgba(10, 10, 15, 0.94);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(0, 255, 148, 0.08);
}
.nav-inner {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: "Space Mono", monospace;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.12em;
  color: #00ff94;
  background: none;
  border: none;
  cursor: pointer;
}
.brand-logo {
  display: block;
  width: 100%;
  height: auto;
}
.brand-logo-nav {
  width: 140px;
}
.brand-logo-hero {
  width: min(420px, 78vw);
  margin: 0 auto 1.25rem;
  padding: 0.8rem 1rem;
  background: rgba(10, 10, 15, 0.55);
  border: 1px solid rgba(0, 255, 148, 0.14);
  border-radius: 1rem;
  box-shadow: 0 0 28px rgba(0, 255, 148, 0.1);
  filter: brightness(1.75) contrast(1.08)
    drop-shadow(0 0 18px rgba(0, 255, 148, 0.3));
}
.brand-logo-footer {
  width: 160px;
}
.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
}
@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }
}
.nav-links button {
  font-family: "Space Mono", monospace;
  font-size: 13px;
  color: #a1a1aa;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
}
.nav-links button:hover {
  color: #fff;
}
.nav-burger {
  display: flex;
  background: none;
  border: none;
  cursor: pointer;
  color: #a1a1aa;
}
@media (min-width: 768px) {
  .nav-burger {
    display: none;
  }
}
.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 1.25rem;
  padding: 0 1.5rem 1.5rem;
  background: rgba(10, 10, 15, 0.97);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.nav-mobile.open {
  display: flex;
}
.nav-mobile button {
  font-family: "Space Mono", monospace;
  font-size: 13px;
  color: #a1a1aa;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  padding: 0.25rem 0;
}

/* ── Divider ───────────────────────────────────────────────────────────────── */
.divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 255, 148, 0.14),
    transparent
  );
  position: relative;
  z-index: 1;
}

/* ── Glow Button ───────────────────────────────────────────────────────────── */
.glow-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Space Mono", monospace;
  font-weight: 700;
  letter-spacing: 0.05em;
  border-radius: 6px;
  color: #0a0a0f;
  background: #00ff94;
  box-shadow: 0 0 24px rgba(0, 255, 148, 0.31);
  transition:
    opacity 0.22s,
    transform 0.22s;
  cursor: pointer;
  border: none;
}
.glow-btn:hover {
  opacity: 0.9;
  transform: scale(1.025);
}
.glow-btn:active {
  transform: scale(1);
}
.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}
.btn-sm {
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
}

/* X button tweaks */
.x-btn {
  padding: 0.45rem 0.75rem;
  font-size: 0.85rem;
}

/* Footer setter button (owner use) */
.footer-set-x {
  background: transparent;
  color: #a1a1aa;
  border: 1px dashed rgba(161, 161, 170, 0.12);
  padding: 0.35rem 0.6rem;
  border-radius: 6px;
  font-family: "Space Mono", monospace;
  font-size: 0.75rem;
  cursor: pointer;
}
.footer-set-x:hover {
  color: #fff;
  border-color: rgba(161, 161, 170, 0.3);
}

/* Built-by credit */
.footer-col a[href*="honored-hash-portfolio"] {
  color: #a1a1aa;
}
.footer-col a[href*="honored-hash-portfolio"]:hover {
  color: #8b5cf6;
}

/* ── Tag ───────────────────────────────────────────────────────────────────── */
.tag {
  display: inline-block;
  font-family: "Space Mono", monospace;
  font-size: 0.75rem;
  padding: 0.25rem 0.625rem;
  border-radius: 9999px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.tag-green {
  background: rgba(0, 255, 148, 0.08);
  color: #00ff94;
  border: 1px solid rgba(0, 255, 148, 0.25);
}
.tag-purple {
  background: rgba(139, 92, 246, 0.08);
  color: #8b5cf6;
  border: 1px solid rgba(139, 92, 246, 0.25);
}
.tag-orange {
  background: rgba(255, 122, 0, 0.08);
  color: #ff7a00;
  border: 1px solid rgba(255, 122, 0, 0.25);
}
.tag-muted {
  background: rgba(161, 161, 170, 0.08);
  color: #a1a1aa;
  border: 1px solid rgba(161, 161, 170, 0.25);
}

/* ── Glass Card ────────────────────────────────────────────────────────────── */
.glass-card {
  background: rgba(17, 17, 24, 0.75);
  backdrop-filter: blur(18px);
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  flex-direction: column;
}
.glow-green {
  border-color: rgba(0, 255, 148, 0.19);
  box-shadow: 0 0 36px rgba(0, 255, 148, 0.08);
}
.glow-purple {
  border-color: rgba(139, 92, 246, 0.19);
  box-shadow: 0 0 36px rgba(139, 92, 246, 0.08);
}
.glow-orange {
  border-color: rgba(255, 122, 0, 0.19);
  box-shadow: 0 0 36px rgba(255, 122, 0, 0.08);
}

/* ── Highlight box ─────────────────────────────────────────────────────────── */
.highlight-box {
  display: inline-block;
  padding: 1rem 1.75rem;
  border-radius: 1rem;
}
.orange-box {
  background: rgba(255, 122, 0, 0.07);
  border: 1px solid rgba(255, 122, 0, 0.25);
  display: block;
}

/* ── Hero ──────────────────────────────────────────────────────────────────── */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 1.5rem 0;
  overflow: hidden;
}
#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.45;
}
.hero-fade-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 12rem;
  pointer-events: none;
  background: linear-gradient(transparent, #0a0a0f);
  z-index: 2;
}
.hero-content {
  position: relative;
  z-index: 10;
  max-width: 48rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
}
.hero-h1 {
  font-family: "Space Mono", monospace;
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3.75rem);
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.hero-sub {
  font-size: 1.125rem;
  color: #a1a1aa;
  line-height: 1.7;
  max-width: 36rem;
}
.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}
@media (min-width: 640px) {
  .hero-ctas {
    flex-direction: row;
  }
}
.hero-scroll-btn {
  font-family: "Space Mono", monospace;
  font-size: 13px;
  color: #a1a1aa;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
}
.hero-scroll-btn:hover {
  color: #fff;
}

/* ── Stats ─────────────────────────────────────────────────────────────────── */
.stat-val {
  font-family: "Space Mono", monospace;
  font-weight: 700;
  font-size: 1.5rem;
  color: #00ff94;
  margin-bottom: 0.5rem;
}
.stat-label {
  font-size: 0.75rem;
  color: #a1a1aa;
  line-height: 1.4;
}

/* ── Section heading ───────────────────────────────────────────────────────── */
.section-h2 {
  font-family: "Space Mono", monospace;
  font-weight: 700;
  font-size: clamp(1.6rem, 3vw, 2.25rem);
}

/* ── Pillar list ───────────────────────────────────────────────────────────── */
.pillar-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.pillar-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #a1a1aa;
}

/* ── Icon wrap ─────────────────────────────────────────────────────────────── */
.icon-wrap {
  display: inline-flex;
  padding: 0.625rem;
  border-radius: 0.75rem;
  width: fit-content;
}
.green-wrap {
  background: rgba(0, 255, 148, 0.07);
  border: 1px solid rgba(0, 255, 148, 0.15);
}
.purple-wrap {
  background: rgba(139, 92, 246, 0.07);
  border: 1px solid rgba(139, 92, 246, 0.15);
}
.orange-wrap {
  background: rgba(255, 122, 0, 0.07);
  border: 1px solid rgba(255, 122, 0, 0.15);
}

/* ── Live Feed ─────────────────────────────────────────────────────────────── */
.feed-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1rem;
  margin-bottom: 0.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.feed-live {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #00ff94;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}
.feed-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.feed-row {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  align-items: center;
  gap: 10px;
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  transition:
    background 0.5s,
    border-color 0.5s,
    opacity 0.5s;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
}
.feed-row.fresh {
  border-color: rgba(0, 255, 148, 0.26);
  background: rgba(0, 255, 148, 0.06);
}
.feed-badge {
  font-family: "Space Mono", monospace;
  font-size: 10px;
  font-weight: 700;
  text-align: center;
  padding: 2px 6px;
  border-radius: 4px;
  letter-spacing: 0.07em;
}
.feed-msg {
  font-size: 0.875rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.feed-right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}
.feed-chain {
  font-family: "Space Mono", monospace;
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 4px;
}
.feed-ts {
  font-family: "Space Mono", monospace;
  font-size: 11px;
  color: rgba(161, 161, 170, 0.7);
}

/* ── Trade Simulator ───────────────────────────────────────────────────────── */
.sim-btn {
  width: 100%;
  padding: 0.75rem;
  border-radius: 0.75rem;
  font-family: "Space Mono", monospace;
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.15s;
  border: none;
}
.sim-btn:hover {
  transform: scale(1.02);
}
.green-btn {
  background: rgba(0, 255, 148, 0.09);
  color: #00ff94;
  border: 1px solid rgba(0, 255, 148, 0.27);
}
.orange-btn {
  background: rgba(255, 122, 0, 0.09);
  color: #ff7a00;
  border: 1px solid rgba(255, 122, 0, 0.27);
}
.reveal-box {
  border-radius: 0.75rem;
  padding: 1.25rem;
  text-align: center;
}
.green-reveal {
  background: rgba(0, 255, 148, 0.05);
  border: 1px solid rgba(0, 255, 148, 0.21);
}
.hidden {
  display: none;
}

/* ── Degen Profile ─────────────────────────────────────────────────────────── */
.progress-bar {
  display: flex;
  gap: 4px;
}
.progress-pip {
  height: 4px;
  width: 24px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.12);
  transition: background 0.3s;
}
.progress-pip.active {
  background: #00ff94;
}
.degen-q {
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
  margin: 0.75rem 0 0.75rem;
}
.degen-opt {
  width: 100%;
  text-align: left;
  font-size: 0.875rem;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.04);
  color: #a1a1aa;
  border: 1px solid rgba(255, 255, 255, 0.08);
  cursor: pointer;
  transition:
    background 0.15s,
    border-color 0.15s,
    color 0.15s;
  display: block;
  margin-bottom: 0.5rem;
  font-family: inherit;
}
.degen-opt:hover {
  background: rgba(0, 255, 148, 0.07);
  border-color: rgba(0, 255, 148, 0.21);
  color: #fff;
}

/* ── Locked Content ────────────────────────────────────────────────────────── */
.locked-card {
  border-radius: 1rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: rgba(17, 17, 24, 0.85);
  border: 1px solid;
}
.locked-body {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.locked-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.5rem;
}
.locked-meta {
  display: inline-block;
  font-family: "Space Mono", monospace;
  font-size: 10px;
  padding: 4px 8px;
  border-radius: 0.5rem;
  border: 1px solid;
}
.locked-footer {
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid;
}

/* Locked content: tighter, consistent cards for normal flow */
.grid-3 .locked-card {
  min-height: 140px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.locked-body h4 {
  font-size: 0.95rem;
  margin: 0;
}
.locked-body p {
  font-size: 0.78rem;
  color: #a1a1aa;
  margin: 0;
}
.locked-footer {
  padding: 0.6rem 1rem;
}
@media (min-width: 768px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid-3 .locked-card {
    min-height: 150px;
  }
}

/* ── Testimonials ──────────────────────────────────────────────────────────── */
.testimonial-wrap {
  text-align: center;
  padding: 1.5rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.quote-mark {
  font-size: 2.5rem;
  line-height: 1;
  color: rgba(0, 255, 148, 0.31);
  font-family: serif;
}
.testi-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
}
.testi-dot {
  border-radius: 9999px;
  height: 6px;
  background: rgba(255, 255, 255, 0.18);
  border: none;
  cursor: pointer;
  transition:
    width 0.3s,
    background 0.3s;
  width: 6px;
}
.testi-dot.active {
  background: #00ff94;
  width: 18px;
}

/* ── Instructor ────────────────────────────────────────────────────────────── */
.instructor-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.skill-tag {
  font-family: "Space Mono", monospace;
  font-size: 0.75rem;
  padding: 4px 10px;
  border-radius: 9999px;
}
.green-skill {
  background: rgba(0, 255, 148, 0.07);
  color: rgba(0, 255, 148, 0.8);
  border: 1px solid rgba(0, 255, 148, 0.17);
}
.purple-skill {
  background: rgba(139, 92, 246, 0.07);
  color: rgba(139, 92, 246, 0.8);
  border: 1px solid rgba(139, 92, 246, 0.17);
}

/* ── How It Works ──────────────────────────────────────────────────────────── */
.how-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.how-num {
  font-family: "Space Mono", monospace;
  font-weight: 700;
  font-size: 2.5rem;
}

/* ── Steps ─────────────────────────────────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 640px) {
  .steps-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.step-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
  padding: 1.25rem;
  border-radius: 1rem;
  text-align: center;
  background: rgba(0, 255, 148, 0.03);
  border: 1px solid rgba(0, 255, 148, 0.14);
}
.step-num {
  font-family: "Space Mono", monospace;
  font-size: 0.75rem;
  color: rgba(0, 255, 148, 0.5);
}

/* ── Footer ────────────────────────────────────────────────────────────────── */
footer {
  background: #07070c;
  border-top: 1px solid rgba(0, 255, 148, 0.1);
  position: relative;
  z-index: 1;
}
.footer-inner {
  max-width: 72rem;
  margin: 0 auto;
  padding: 4rem 1.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}
@media (min-width: 768px) {
  .footer-inner {
    grid-template-columns: repeat(4, 1fr);
  }
}
.footer-brand {
  grid-column: span 2;
}
@media (min-width: 768px) {
  .footer-brand {
    grid-column: span 1;
  }
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer-col-title {
  font-family: "Space Mono", monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(161, 161, 170, 0.7);
  margin-bottom: 0.25rem;
}
.footer-col button,
.footer-col a {
  font-family: "Space Mono", monospace;
  font-size: 0.75rem;
  color: #a1a1aa;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: color 0.2s;
  text-decoration: none;
}
.footer-col button:hover {
  color: #fff;
}
.footer-col a:hover {
  color: #00ff94;
}
