:root {
  --bg: #020403;
  --bg-2: #06110a;
  --bg-3: #0b1a12;
  --ink: #f3fff7;
  --muted: #8fb89a;
  --line: rgba(0, 255, 102, 0.22);
  --neon: #00ff66;
  --neon-2: #39ff14;
  --neon-deep: #00b84a;
  --neon-soft: rgba(0, 255, 102, 0.12);
  --danger: #ff4d6d;
  --shadow: 0 0 40px rgba(0, 255, 102, 0.18);
  --font-display: "Oxanium", sans-serif;
  --font-body: "Rajdhani", sans-serif;
  --wrap: min(1180px, calc(100% - 2.4rem));
  --header-h: 72px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.55;
  background:
    radial-gradient(1200px 700px at 80% -10%, rgba(0, 255, 102, 0.14), transparent 60%),
    radial-gradient(900px 500px at 10% 20%, rgba(0, 184, 74, 0.1), transparent 55%),
    linear-gradient(180deg, #010302 0%, #040a07 40%, #020403 100%);
  overflow-x: hidden;
}

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

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

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

.wrap {
  width: var(--wrap);
  margin-inline: auto;
}

.neon {
  color: var(--neon);
}

.noise,
.scanlines,
#fx-canvas,
.grid-floor,
.aurora {
  pointer-events: none;
}

.noise {
  position: fixed;
  inset: 0;
  z-index: 80;
  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;
}

.scanlines {
  position: fixed;
  inset: 0;
  z-index: 79;
  opacity: 0.04;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0,
    transparent 2px,
    rgba(0, 0, 0, 0.35) 3px,
    rgba(0, 0, 0, 0.35) 4px
  );
}

#fx-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
}

.grid-floor {
  position: fixed;
  inset: auto 0 -20% 0;
  height: 55vh;
  z-index: 0;
  background:
    linear-gradient(to right, rgba(0, 255, 102, 0.12) 1px, transparent 1px) 0 0 / 48px 48px,
    linear-gradient(to bottom, rgba(0, 255, 102, 0.12) 1px, transparent 1px) 0 0 / 48px 48px;
  transform: perspective(500px) rotateX(62deg);
  mask-image: linear-gradient(to top, rgba(0, 0, 0, 0.55), transparent 75%);
  animation: grid-drift 18s linear infinite;
}

.aurora {
  position: fixed;
  inset: -20% -10% auto;
  height: 55vh;
  z-index: 0;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(0, 255, 102, 0.16), transparent 50%),
    radial-gradient(ellipse at 70% 20%, rgba(57, 255, 20, 0.1), transparent 45%);
  filter: blur(40px);
  animation: aurora-shift 12s ease-in-out infinite alternate;
}

@keyframes grid-drift {
  from { background-position: 0 0, 0 0; }
  to { background-position: 0 48px, 48px 0; }
}

@keyframes aurora-shift {
  from { transform: translateY(0) scale(1); opacity: 0.8; }
  to { transform: translateY(24px) scale(1.08); opacity: 1; }
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: var(--header-h);
  backdrop-filter: blur(16px);
  background: rgba(2, 4, 3, 0.72);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(2, 4, 3, 0.9);
}

.nav {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  z-index: 2;
}

.brand-mark {
  width: 42px;
  height: 42px;
  object-fit: cover;
  clip-path: polygon(18% 0, 100% 0, 100% 82%, 82% 100%, 0 100%, 0 18%);
  filter: drop-shadow(0 0 12px rgba(0, 255, 102, 0.45));
}

.brand-text {
  display: flex;
  gap: 0.35rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  font-style: italic;
}

.brand-hood { color: var(--ink); }
.brand-wallet { color: var(--neon); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav-links a:not(.nav-cta) {
  opacity: 0.78;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.nav-links a:not(.nav-cta):hover {
  opacity: 1;
  color: var(--neon);
}

.nav-cta {
  padding: 0.55rem 1rem;
  background: var(--neon);
  color: #021006;
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
  transition: filter 0.2s ease, transform 0.2s ease;
}

.nav-cta:hover {
  filter: drop-shadow(0 0 14px rgba(0, 255, 102, 0.55));
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  gap: 5px;
  flex-direction: column;
  z-index: 2;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--neon);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 48px;
  padding: 0.7rem 1.25rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
  transition: transform 0.2s ease, filter 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

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

.btn-neon {
  background: linear-gradient(120deg, var(--neon-2), var(--neon-deep));
  color: #031208;
  box-shadow: var(--shadow);
}

.btn-neon .btn-icon {
  filter: none;
}

.btn-ghost .btn-icon,
.btn-line .btn-icon {
  filter: invert(67%) sepia(84%) saturate(500%) hue-rotate(74deg) brightness(110%);
}

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

.btn-ghost {
  background: rgba(0, 255, 102, 0.08);
  border: 1px solid var(--line);
  color: var(--ink);
}

.btn-ghost:hover {
  background: rgba(0, 255, 102, 0.16);
  border-color: var(--neon);
}

.btn-line {
  background: transparent;
  border: 1px solid rgba(243, 255, 247, 0.28);
}

.btn-line:hover {
  border-color: var(--neon);
  color: var(--neon);
}

.store-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.15rem;
}

.store-row-inline {
  margin-top: 0.9rem;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-height: 52px;
  padding: 0.55rem 1rem 0.55rem 0.85rem;
  background: #000;
  border: 1px solid rgba(243, 255, 247, 0.28);
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.store-badge img {
  width: 22px;
  height: 22px;
  filter: invert(1);
}

.store-badge span {
  display: grid;
  line-height: 1.05;
}

.store-badge small {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(243, 255, 247, 0.7);
}

.store-badge strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.store-badge:hover {
  border-color: var(--neon);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 255, 102, 0.12);
}

.store-badge-sm {
  min-height: 42px;
  padding: 0.4rem 0.85rem 0.4rem 0.7rem;
}

.store-badge-sm img {
  width: 18px;
  height: 18px;
}

.store-badge-sm strong {
  font-size: 0.92rem;
}

/* Hero */
.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  align-items: center;
  padding: calc(var(--header-h) + 2rem) 0 5rem;
  overflow: hidden;
}

.hero-beams {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-beams span {
  position: absolute;
  top: -20%;
  width: 2px;
  height: 140%;
  background: linear-gradient(to bottom, transparent, rgba(0, 255, 102, 0.55), transparent);
  transform: rotate(18deg);
  animation: beam-run 4.5s linear infinite;
  opacity: 0.35;
}

.hero-beams span:nth-child(1) { left: 12%; animation-delay: 0s; }
.hero-beams span:nth-child(2) { left: 28%; animation-delay: 1.1s; opacity: 0.2; }
.hero-beams span:nth-child(3) { left: 54%; animation-delay: 0.4s; }
.hero-beams span:nth-child(4) { left: 72%; animation-delay: 2s; opacity: 0.25; }
.hero-beams span:nth-child(5) { left: 88%; animation-delay: 1.5s; }

@keyframes beam-run {
  0% { transform: translateY(-30%) rotate(18deg); opacity: 0; }
  20% { opacity: 0.4; }
  100% { transform: translateY(30%) rotate(18deg); opacity: 0; }
}

.hero-city {
  position: absolute;
  inset: auto 0 0;
  height: 28vh;
  background:
    linear-gradient(to top, rgba(2, 4, 3, 0.95), transparent),
    repeating-linear-gradient(
      90deg,
      transparent 0 18px,
      rgba(0, 255, 102, 0.08) 18px 20px,
      transparent 20px 42px,
      rgba(0, 255, 102, 0.16) 42px 46px,
      transparent 46px 70px,
      rgba(0, 255, 102, 0.1) 70px 74px
    );
  mask-image: linear-gradient(to top, black 20%, transparent 95%);
  opacity: 0.55;
}

.hero-city::before {
  content: "";
  position: absolute;
  inset: 30% 0 0;
  background:
    linear-gradient(to top, #020403, transparent),
    radial-gradient(ellipse at 50% 100%, rgba(0, 255, 102, 0.25), transparent 60%);
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.8s ease;
  z-index: 0;
  pointer-events: none;
}

.hero-video.is-ready {
  opacity: 0.22;
  mix-blend-mode: screen;
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.hero-symbol {
  margin: 0 0 0.6rem;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.28em;
  color: var(--neon);
  text-transform: uppercase;
  font-size: 0.95rem;
}

.hero-title {
  margin: 0;
  display: flex;
  flex-direction: column;
  font-family: var(--font-display);
  font-weight: 800;
  font-style: italic;
  line-height: 0.92;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.title-hood {
  font-size: clamp(3.4rem, 9vw, 7rem);
  color: var(--ink);
  text-shadow: 0 0 40px rgba(255, 255, 255, 0.12);
}

.title-wallet {
  font-size: clamp(3.4rem, 9vw, 7rem);
  color: var(--neon);
  text-shadow: 0 0 36px rgba(0, 255, 102, 0.45);
  animation: title-pulse 3.6s ease-in-out infinite;
}

@keyframes title-pulse {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.15); }
}

.hero-tag {
  margin: 1.1rem 0 0.45rem;
  max-width: 34ch;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  font-weight: 600;
  color: var(--ink);
}

.hero-bio {
  margin: 0 0 1.6rem;
  color: var(--neon);
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.95rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-mark {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 420px;
}

.logo-glow {
  position: absolute;
  width: 70%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 255, 102, 0.35), transparent 68%);
  filter: blur(18px);
  animation: glow-breathe 3.2s ease-in-out infinite;
}

.logo-orbit span {
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(0, 255, 102, 0.18);
  border-radius: 50%;
  animation: orbit-spin 14s linear infinite;
}

.logo-orbit span:nth-child(2) {
  inset: 4%;
  border-style: dashed;
  animation-duration: 22s;
  animation-direction: reverse;
  opacity: 0.55;
}

.logo-orbit span:nth-child(3) {
  inset: 22%;
  border-color: rgba(0, 255, 102, 0.35);
  animation-duration: 9s;
}

.logo-orbit span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 8px;
  height: 8px;
  background: var(--neon);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 12px var(--neon);
}

.hero-logo {
  position: relative;
  z-index: 2;
  width: min(360px, 72vw);
  aspect-ratio: 1;
  object-fit: cover;
  animation: logo-float 5s ease-in-out infinite;
  filter: drop-shadow(0 0 28px rgba(0, 255, 102, 0.4));
}

.logo-ring {
  position: absolute;
  width: min(390px, 78vw);
  aspect-ratio: 1;
  border: 1px solid rgba(0, 255, 102, 0.25);
  clip-path: polygon(15% 0, 100% 0, 100% 85%, 85% 100%, 0 100%, 0 15%);
  animation: ring-pulse 2.8s ease-in-out infinite;
}

@keyframes glow-breathe {
  0%, 100% { transform: scale(0.92); opacity: 0.7; }
  50% { transform: scale(1.08); opacity: 1; }
}

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

@keyframes logo-float {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-14px) rotate(2deg); }
}

@keyframes ring-pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.04); opacity: 1; }
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 1.4rem;
  transform: translateX(-50%);
  width: 26px;
  height: 42px;
  border: 1px solid rgba(0, 255, 102, 0.4);
  border-radius: 16px;
  z-index: 3;
}

.scroll-cue span {
  position: absolute;
  left: 50%;
  top: 8px;
  width: 4px;
  height: 8px;
  background: var(--neon);
  transform: translateX(-50%);
  animation: cue-drop 1.4s ease-in-out infinite;
}

@keyframes cue-drop {
  0% { opacity: 1; transform: translate(-50%, 0); }
  100% { opacity: 0; transform: translate(-50%, 16px); }
}

/* Sections */
.section {
  position: relative;
  z-index: 1;
  padding: 6.5rem 0;
}

.section-head {
  max-width: 42rem;
  margin-bottom: 2.5rem;
}

.eyebrow {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--neon);
}

.section-head h2 {
  margin: 0 0 0.8rem;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800;
  font-style: italic;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1;
}

.section-lead {
  margin: 0;
  color: var(--muted);
  font-size: 1.15rem;
  max-width: 48ch;
}

/* About */
.about-story {
  display: grid;
  gap: 1rem;
  max-width: 68ch;
  margin-bottom: 3rem;
  color: #c7e6d0;
}

.about-story p {
  margin: 0;
}

.feature-rail {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.feature {
  padding: 1.4rem 1.2rem 1.5rem;
  background: linear-gradient(160deg, rgba(0, 255, 102, 0.08), rgba(0, 0, 0, 0.2));
  border-top: 1px solid rgba(0, 255, 102, 0.35);
  border-left: 1px solid rgba(0, 255, 102, 0.12);
  clip-path: polygon(16px 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%, 0 16px);
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.feature:hover {
  transform: translateY(-6px);
  background: linear-gradient(160deg, rgba(0, 255, 102, 0.14), rgba(0, 0, 0, 0.25));
  box-shadow: 0 16px 40px rgba(0, 255, 102, 0.08);
}

.feature-icon {
  width: 48px;
  height: 48px;
  color: var(--neon);
  margin-bottom: 1rem;
}

.feature-icon svg {
  width: 100%;
  height: 100%;
}

.feature h3 {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.feature p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

/* How to buy */
.howtobuy {
  background:
    linear-gradient(180deg, transparent, rgba(0, 255, 102, 0.03), transparent);
}

.buy-steps {
  list-style: none;
  margin: 0 0 2.4rem;
  padding: 0;
  display: grid;
  gap: 0.9rem;
}

.buy-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.2rem;
  align-items: start;
  padding: 1.25rem 1.3rem;
  border: 1px solid rgba(0, 255, 102, 0.14);
  background: rgba(4, 14, 9, 0.65);
  clip-path: polygon(18px 0, 100% 0, 100% 100%, 0 100%, 0 18px);
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.buy-step:hover {
  border-color: rgba(0, 255, 102, 0.45);
  transform: translateX(6px);
}

.step-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--neon);
  line-height: 1;
  text-shadow: 0 0 18px rgba(0, 255, 102, 0.35);
}

.step-body h3 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

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

.buy-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1rem;
}

.ca-line {
  margin: 0;
  width: 100%;
  font-family: var(--font-display);
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  color: var(--muted);
  word-break: break-all;
}

/* Chart */
.chart-frame {
  position: relative;
  min-height: 520px;
  border: 1px solid rgba(0, 255, 102, 0.22);
  background: rgba(0, 0, 0, 0.45);
  overflow: hidden;
  clip-path: polygon(24px 0, 100% 0, 100% calc(100% - 24px), calc(100% - 24px) 100%, 0 100%, 0 24px);
}

.chart-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.chart-frame.has-pair iframe {
  opacity: 1;
}

.chart-frame.has-pair .chart-fallback {
  display: none;
}

.chart-fallback {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 1rem;
  padding: 2rem;
  text-align: center;
  background:
    radial-gradient(circle at 50% 40%, rgba(0, 255, 102, 0.12), transparent 55%),
    rgba(2, 6, 4, 0.92);
}

.fallback-icon {
  width: 42px;
  height: 42px;
  color: var(--neon);
  filter: invert(67%) sepia(84%) saturate(500%) hue-rotate(74deg) brightness(110%);
}

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

.chart-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.2rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.7rem 1rem;
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 1px solid rgba(0, 255, 102, 0.25);
  background: rgba(0, 255, 102, 0.05);
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.chip img {
  width: 16px;
  height: 16px;
  filter: invert(67%) sepia(84%) saturate(500%) hue-rotate(74deg) brightness(110%);
}

.chip:hover {
  background: rgba(0, 255, 102, 0.14);
  border-color: var(--neon);
  transform: translateY(-2px);
}

/* Join Us */
.joinus {
  padding-top: 0;
  overflow: hidden;
}

.join-banner-plane {
  position: relative;
  width: 100%;
  min-height: clamp(280px, 48vw, 560px);
  overflow: hidden;
}

.join-banner {
  width: 100%;
  height: 100%;
  min-height: clamp(280px, 48vw, 560px);
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
  animation: banner-drift 18s ease-in-out infinite alternate;
}

.join-banner-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(2, 4, 3, 0.15), rgba(2, 4, 3, 0.55) 55%, var(--bg) 100%),
    linear-gradient(90deg, rgba(2, 4, 3, 0.35), transparent 30%, transparent 70%, rgba(2, 4, 3, 0.35));
}

@keyframes banner-drift {
  from { transform: scale(1.02) translateY(0); }
  to { transform: scale(1.06) translateY(-1.5%); }
}

.join-content {
  position: relative;
  margin-top: -4rem;
  padding-bottom: 2rem;
}

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

@media (min-width: 981px) {
  .social-row {
    grid-template-columns: repeat(5, 1fr);
  }
}

.social-link {
  display: grid;
  gap: 0.35rem;
  padding: 1.4rem 1.2rem;
  background: rgba(4, 14, 9, 0.85);
  border: 1px solid rgba(0, 255, 102, 0.2);
  clip-path: polygon(16px 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%, 0 16px);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.social-link img {
  width: 28px;
  height: 28px;
  margin-bottom: 0.4rem;
  filter: invert(67%) sepia(84%) saturate(500%) hue-rotate(74deg) brightness(110%);
}

.social-link span {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.social-link small {
  color: var(--muted);
  font-size: 0.92rem;
}

.social-link:hover {
  transform: translateY(-6px);
  border-color: var(--neon);
  box-shadow: 0 18px 40px rgba(0, 255, 102, 0.12);
}

/* Footer */
.site-footer {
  position: relative;
  z-index: 1;
  padding: 2rem 0 2.6rem;
  border-top: 1px solid rgba(0, 255, 102, 0.14);
  background: rgba(0, 0, 0, 0.35);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-brand img {
  width: 28px;
  height: 28px;
  object-fit: cover;
}

.footer-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* Responsive */
@media (max-width: 980px) {
  .hero-layout {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-tag,
  .section-lead,
  .about-story {
    margin-inline: auto;
  }

  .hero-tag {
    max-width: 36ch;
  }

  .hero-actions {
    justify-content: center;
  }

  .store-row {
    justify-content: center;
  }

  .hero-mark {
    order: -1;
    min-height: 300px;
  }

  .hero-logo {
    width: min(280px, 68vw);
  }

  .feature-rail {
    grid-template-columns: repeat(2, 1fr);
  }

  .social-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .nav-toggle {
    display: grid;
  }

  .nav-links {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    background: rgba(2, 4, 3, 0.96);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
  }

  .nav-links.is-open {
    opacity: 1;
    pointer-events: auto;
  }

  .feature-rail {
    grid-template-columns: 1fr;
  }

  .buy-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .buy-actions .btn {
    width: 100%;
  }

  .chart-frame {
    min-height: 420px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

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

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