:root {
  --lime: #cef706;
  --lime-dim: #a8c905;
  --lime-soft: rgba(206, 247, 6, 0.12);
  --lime-glow: rgba(206, 247, 6, 0.35);
  --black: #070807;
  --ink: #0c0e0a;
  --panel: #10140c;
  --panel-2: #161c10;
  --muted: #9aa68a;
  --line: rgba(206, 247, 6, 0.18);
  --white: #f4f7ec;
  --font-display: "Anybody", system-ui, sans-serif;
  --font-body: "Sora", system-ui, sans-serif;
  --radius: 4px;
  --nav-h: 72px;
  --ticker-h: 36px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

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

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

strong {
  color: var(--lime);
  font-weight: 600;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9000;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' 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;
}

.grid-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(206, 247, 6, 0.14), transparent 55%),
    radial-gradient(ellipse 50% 40% at 100% 40%, rgba(206, 247, 6, 0.06), transparent 50%),
    radial-gradient(ellipse 40% 30% at 0% 80%, rgba(206, 247, 6, 0.05), transparent 45%),
    linear-gradient(180deg, #070807 0%, #0a0d08 40%, #070807 100%);
}

.grid-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(206, 247, 6, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(206, 247, 6, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%);
  animation: gridDrift 28s linear infinite;
}

.grid-bg::after {
  content: "";
  position: absolute;
  inset: -20%;
  background: repeating-linear-gradient(
    -18deg,
    transparent 0 28px,
    rgba(206, 247, 6, 0.025) 28px 29px
  );
  animation: slashDrift 40s linear infinite;
}

@keyframes gridDrift {
  from { transform: translateY(0); }
  to { transform: translateY(64px); }
}

@keyframes slashDrift {
  from { transform: translateX(0); }
  to { transform: translateX(80px); }
}

.particles {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  opacity: 0.55;
}

.cursor-glow {
  position: fixed;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  background: radial-gradient(circle, var(--lime-glow), transparent 65%);
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.4s ease;
  mix-blend-mode: screen;
}

body.is-ready .cursor-glow {
  opacity: 0.35;
}

/* Ticker */
.ticker {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--ticker-h);
  z-index: 100;
  background: var(--lime);
  color: var(--black);
  overflow: hidden;
  display: flex;
  align-items: center;
  border-bottom: 2px solid #000;
}

.ticker__track {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  white-space: nowrap;
  font-family: var(--font-display);
  font-weight: 800;
  font-style: italic;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  animation: ticker 28s linear infinite;
  width: max-content;
}

.ticker__dot {
  width: 7px;
  height: 7px;
  background: var(--black);
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
  flex-shrink: 0;
}

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

/* Nav */
.nav {
  position: fixed;
  top: var(--ticker-h);
  left: 0;
  right: 0;
  height: var(--nav-h);
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
  background: rgba(7, 8, 7, 0.78);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-style: italic;
  letter-spacing: -0.02em;
}

.nav__logo {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border: 2px solid var(--black);
  box-shadow: 3px 3px 0 var(--lime);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav__brand:hover .nav__logo {
  transform: rotate(-6deg) scale(1.05);
}

.nav__name {
  font-size: 1.15rem;
}

.nav__links {
  display: flex;
  gap: 1.75rem;
}

.nav__links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--muted);
  position: relative;
  transition: color 0.25s ease;
}

.nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--lime);
  transition: width 0.3s ease;
}

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

.nav__links a:hover::after {
  width: 100%;
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.icon-btn {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background: var(--panel);
  color: var(--lime);
  transition: background 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.icon-btn img {
  width: 18px;
  height: 18px;
}

.icon-btn:hover {
  background: var(--lime);
  color: var(--black);
  border-color: var(--lime);
  transform: translateY(-2px);
}

.icon-btn:hover img {
  filter: brightness(0) saturate(100%);
}

.nav__burger {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  background: var(--panel);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.nav__burger span {
  width: 18px;
  height: 2px;
  background: var(--lime);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

body.nav-open .nav__burger span:first-child {
  transform: translateY(4px) rotate(45deg);
}

body.nav-open .nav__burger span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-style: italic;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  padding: 0.9rem 1.4rem;
  border: 2px solid var(--lime);
  cursor: pointer;
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.btn--sm {
  padding: 0.55rem 0.95rem;
  font-size: 0.8rem;
}

.btn--solid {
  background: var(--lime);
  color: var(--black);
  box-shadow: 4px 4px 0 #000;
}

.btn--solid:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 #000;
}

.btn--ghost {
  background: transparent;
  color: var(--lime);
}

.btn--ghost:hover {
  background: var(--lime-soft);
  transform: translateY(-2px);
}

.btn__icon {
  width: 16px;
  height: 16px;
}

/* Sections shared */
main {
  position: relative;
  z-index: 2;
  padding-top: calc(var(--ticker-h) + var(--nav-h));
}

.section-inner {
  width: min(1120px, calc(100% - 2.5rem));
  margin: 0 auto;
}

.section-head {
  margin-bottom: 3rem;
  max-width: 640px;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 800;
  font-style: italic;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--lime);
  padding: 0.3rem 0.7rem;
  margin-bottom: 1rem;
  transform: skewX(-8deg);
}

.section-head h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-style: italic;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.section-sub {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 520px;
}

.reveal {
  opacity: 0;
  transform: translateY(36px) skewY(1.5deg);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-in {
  opacity: 1;
  transform: translateY(0) skewY(0);
}

/* Hero */
.hero {
  position: relative;
  min-height: calc(100vh - var(--ticker-h) - var(--nav-h));
  display: grid;
  place-items: center;
  padding: 3rem 1.25rem 5rem;
  overflow: hidden;
}

.hero__orbit {
  position: absolute;
  width: min(720px, 90vw);
  height: min(720px, 90vw);
  border: 1px dashed rgba(206, 247, 6, 0.25);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  animation: orbitSpin 40s linear infinite;
}

.hero__orbit::before,
.hero__orbit::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(206, 247, 6, 0.15);
}

.hero__orbit::before {
  inset: 12%;
  animation: orbitSpinInner 28s linear infinite reverse;
}

.hero__orbit::after {
  inset: 28%;
  background: radial-gradient(circle, var(--lime-soft), transparent 70%);
}

@keyframes orbitSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes orbitSpinInner {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero__slash {
  position: absolute;
  width: 140%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--lime), transparent);
  top: 38%;
  left: -20%;
  transform: rotate(-18deg);
  opacity: 0.35;
  animation: slashPulse 3.5s ease-in-out infinite;
}

.hero__slash--2 {
  top: 62%;
  opacity: 0.2;
  animation-delay: 1.2s;
}

@keyframes slashPulse {
  0%, 100% { opacity: 0.15; transform: rotate(-18deg) scaleX(0.9); }
  50% { opacity: 0.45; transform: rotate(-18deg) scaleX(1); }
}

.hero__content {
  position: relative;
  text-align: center;
  max-width: 820px;
}

.hero__logo-wrap {
  position: relative;
  width: min(220px, 48vw);
  margin: 0 auto 1.5rem;
}

.hero__logo {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 3px solid #000;
  box-shadow:
    8px 8px 0 #000,
    0 0 0 6px var(--lime);
  animation: logoFloat 5s ease-in-out infinite;
}

.hero__logo-ring {
  position: absolute;
  inset: -18px;
  border: 1px solid rgba(206, 247, 6, 0.4);
  animation: ringPulse 3s ease-in-out infinite;
  pointer-events: none;
}

@keyframes logoFloat {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-12px) rotate(1deg); }
}

@keyframes ringPulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.06); opacity: 1; }
}

.hero__symbol {
  font-family: var(--font-display);
  font-weight: 700;
  font-style: italic;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lime);
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-style: italic;
  line-height: 0.85;
  letter-spacing: -0.04em;
  margin-bottom: 1.25rem;
}

.hero__title-line {
  display: block;
  font-size: clamp(3.5rem, 12vw, 7.5rem);
}

.hero__title-line--accent {
  color: var(--lime);
  text-shadow: 4px 4px 0 #000;
  animation: accentFlicker 4s ease-in-out infinite;
}

@keyframes accentFlicker {
  0%, 90%, 100% { filter: brightness(1); }
  92% { filter: brightness(1.25); }
  94% { filter: brightness(0.9); }
  96% { filter: brightness(1.2); }
}

.hero__lede {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto 2rem;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.hero__scroll {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(var(--lime), transparent);
  animation: scrollDrop 1.8s ease-in-out infinite;
}

@keyframes scrollDrop {
  0% { transform: scaleY(0.3); opacity: 0; transform-origin: top; }
  40% { opacity: 1; }
  100% { transform: scaleY(1); opacity: 0; transform-origin: top; }
}

/* About */
.about {
  padding: 7rem 0;
  position: relative;
}

.about::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--lime), transparent);
}

.about__video {
  margin-bottom: 3rem;
}

.about__video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 2px solid var(--lime);
  box-shadow: 8px 8px 0 rgba(206, 247, 6, 0.22);
  background: #000;
  overflow: hidden;
}

.about__video-frame::before {
  content: "NARRATIVE";
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  font-family: var(--font-display);
  font-weight: 800;
  font-style: italic;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  background: var(--lime);
  color: var(--black);
  padding: 0.25rem 0.55rem;
  pointer-events: none;
}

.about__video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.about__video-link {
  display: inline-flex;
  margin-top: 0.9rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-style: italic;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--lime);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.about__video-link:hover {
  border-bottom-color: var(--lime);
  transform: translateX(4px);
}

.about__grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 2.5rem;
  align-items: start;
}

.about__story {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  font-size: 1.05rem;
  color: #c5cdb8;
}

.about__stats {
  display: grid;
  gap: 1rem;
  background: linear-gradient(160deg, var(--panel) 0%, var(--panel-2) 100%);
  border: 1px solid var(--line);
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
}

.about__stats::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -30%;
  width: 220px;
  height: 220px;
  background: var(--lime);
  opacity: 0.08;
  clip-path: polygon(20% 0%, 100% 0%, 80% 100%, 0% 100%);
  animation: bladeShift 8s ease-in-out infinite;
}

@keyframes bladeShift {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(-20px, 30px) rotate(8deg); }
}

.stat {
  position: relative;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.15rem 0.35rem;
}

.stat:last-of-type {
  border-bottom: none;
}

.stat__value {
  font-family: var(--font-display);
  font-weight: 900;
  font-style: italic;
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  color: var(--lime);
  line-height: 1;
}

.stat__unit {
  font-family: var(--font-display);
  font-weight: 800;
  font-style: italic;
  font-size: 1.5rem;
  color: var(--white);
}

.stat__label {
  width: 100%;
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 0.25rem;
}

.about__chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.chip {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.4rem 0.7rem;
  border: 1px solid var(--line);
  color: var(--lime);
  background: rgba(206, 247, 6, 0.06);
}

/* How to buy */
.howtobuy {
  padding: 7rem 0;
  background:
    linear-gradient(180deg, transparent, rgba(206, 247, 6, 0.03), transparent);
}

.steps {
  list-style: none;
  display: grid;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  align-items: center;
  padding: 1.4rem 1.5rem;
  border: 1px solid var(--line);
  background: rgba(16, 20, 12, 0.75);
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s ease, transform 0.3s ease, background 0.3s ease;
}

.step::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--lime);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s ease;
}

.step:hover {
  border-color: rgba(206, 247, 6, 0.45);
  transform: translateX(6px);
  background: rgba(22, 28, 16, 0.9);
}

.step:hover::before {
  transform: scaleY(1);
}

.step__num {
  font-family: var(--font-display);
  font-weight: 900;
  font-style: italic;
  font-size: 2rem;
  color: var(--lime);
  line-height: 1;
  min-width: 2.5rem;
}

.step__body h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-style: italic;
  font-size: 1.35rem;
  margin-bottom: 0.35rem;
}

.step__body p {
  color: var(--muted);
  font-size: 0.98rem;
}

.ca-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
  padding: 1rem 1.25rem;
  border: 1px dashed rgba(206, 247, 6, 0.4);
  background: rgba(206, 247, 6, 0.05);
  margin-bottom: 1.75rem;
}

.ca-bar__label {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lime);
}

.ca-bar__value {
  flex: 1;
  min-width: 180px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.85rem;
  color: var(--white);
  word-break: break-all;
}

.buy-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.buy-link {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1.1rem 1.2rem;
  border: 1px solid var(--line);
  background: var(--panel);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 800;
  font-style: italic;
  font-size: 1.05rem;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.buy-link img {
  width: 28px;
  height: 28px;
}

.buy-link:hover {
  background: var(--lime);
  color: var(--black);
  border-color: var(--lime);
  transform: translateY(-4px);
}

.buy-link:hover img {
  filter: brightness(0) saturate(100%);
}

/* Chart */
.chart {
  padding: 7rem 0;
}

.chart__frame {
  position: relative;
  border: 2px solid var(--lime);
  box-shadow: 8px 8px 0 rgba(206, 247, 6, 0.2);
  background: #0b0f0a;
  overflow: hidden;
  min-height: 560px;
}

.chart__frame::before {
  content: "LIVE";
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  font-family: var(--font-display);
  font-weight: 800;
  font-style: italic;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  background: var(--lime);
  color: var(--black);
  padding: 0.25rem 0.55rem;
  animation: liveBlink 1.6s ease-in-out infinite;
}

@keyframes liveBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.55; }
}

.chart__frame iframe {
  width: 100%;
  height: 620px;
  border: 0;
  display: block;
  filter: saturate(1.05) contrast(1.02);
}

.chart__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

/* Join Us */
.joinus {
  padding: 4rem 0 7rem;
  position: relative;
}

.joinus__banner-wrap {
  position: relative;
  width: min(1120px, calc(100% - 2.5rem));
  margin: 0 auto 3rem;
  overflow: hidden;
  border: 3px solid #000;
  box-shadow:
    10px 10px 0 var(--lime),
    0 0 0 1px rgba(206, 247, 6, 0.3);
}

.joinus__banner {
  width: 100%;
  height: auto;
  display: block;
  transform: scale(1.02);
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.joinus__banner-wrap:hover .joinus__banner {
  transform: scale(1.06);
}

.joinus__banner-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    transparent 30%,
    rgba(255, 255, 255, 0.25) 45%,
    transparent 60%
  );
  transform: translateX(-120%);
  animation: shineSweep 5s ease-in-out infinite;
  pointer-events: none;
}

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

.joinus__content .section-head {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.joinus__content .section-sub {
  margin-left: auto;
  margin-right: auto;
}

.joinus__links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.join-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.35rem 1.4rem;
  background: var(--panel);
  border: 1px solid var(--line);
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.join-card img {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.join-card strong {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--white);
}

.join-card span {
  color: var(--muted);
  font-size: 0.85rem;
}

.join-card:hover {
  background: var(--lime);
  border-color: var(--lime);
  transform: translateY(-6px) skewX(-2deg);
  box-shadow: 6px 6px 0 #000;
}

.join-card:hover img {
  filter: brightness(0) saturate(100%);
}

.join-card:hover strong,
.join-card:hover span {
  color: var(--black);
}

/* Footer */
.footer {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--line);
  padding: 2.5rem 0 3rem;
  background: rgba(0, 0, 0, 0.45);
}

.footer__inner {
  width: min(1120px, calc(100% - 2.5rem));
  margin: 0 auto;
  display: grid;
  gap: 1.5rem;
  justify-items: center;
  text-align: center;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.footer__brand img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border: 2px solid #000;
  box-shadow: 3px 3px 0 var(--lime);
}

.footer__brand strong {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--white);
  text-align: left;
}

.footer__brand span {
  color: var(--muted);
  font-size: 0.85rem;
}

.footer__socials {
  display: flex;
  gap: 0.75rem;
}

.footer__socials a {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  color: var(--lime);
  transition: background 0.25s ease, color 0.25s ease;
}

.footer__socials a img {
  width: 18px;
  height: 18px;
}

.footer__socials a:hover {
  background: var(--lime);
  color: var(--black);
}

.footer__socials a:hover img {
  filter: brightness(0) saturate(100%);
}

.btn--solid .btn__icon {
  filter: brightness(0) saturate(100%);
}

.btn--ghost:hover .btn__icon {
  filter: none;
}

.footer__note {
  max-width: 520px;
  font-size: 0.8rem;
  color: var(--muted);
}

/* Mobile */
@media (max-width: 900px) {
  .about__grid,
  .buy-links,
  .joinus__links {
    grid-template-columns: 1fr;
  }

  .nav__links {
    position: fixed;
    top: calc(var(--ticker-h) + var(--nav-h));
    left: 0;
    right: 0;
    background: rgba(7, 8, 7, 0.96);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    padding: 1.25rem 1.5rem 1.5rem;
    gap: 1rem;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s ease, opacity 0.35s ease;
  }

  body.nav-open .nav__links {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav__burger {
    display: flex;
  }

  .nav__name {
    display: none;
  }

  .nav__actions .btn--sm {
    display: none;
  }

  .chart__frame,
  .chart__frame iframe {
    min-height: 420px;
    height: 460px;
  }
}

@media (max-width: 560px) {
  .hero__cta .btn {
    width: 100%;
  }

  .ca-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .joinus__banner-wrap {
    box-shadow: 6px 6px 0 var(--lime);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
