:root {
  --bg: #050806;
  --bg-elevated: #0b120e;
  --bg-panel: rgba(10, 22, 14, 0.72);
  --ink: #f4f7f4;
  --muted: #9aaca0;
  --line: rgba(0, 200, 5, 0.22);
  --green: #00c805;
  --green-hot: #39ff14;
  --green-deep: #067a0a;
  --green-dim: rgba(0, 200, 5, 0.12);
  --glow: 0 0 40px rgba(0, 200, 5, 0.35);
  --glow-soft: 0 0 80px rgba(0, 200, 5, 0.18);
  --radius: 18px;
  --nav-h: 76px;
  --font-display: "Oswald", sans-serif;
  --font-body: "Sora", sans-serif;
  --max: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: var(--font-body);
  background:
    radial-gradient(1200px 700px at 80% -10%, rgba(0, 200, 5, 0.16), transparent 55%),
    radial-gradient(900px 500px at 10% 20%, rgba(0, 120, 40, 0.12), transparent 50%),
    linear-gradient(180deg, #040705 0%, #070c09 40%, #050806 100%);
  overflow-x: hidden;
}

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

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

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

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 50;
  opacity: 0.045;
  mix-blend-mode: soft-light;
  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='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.grid-bg {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(0, 200, 5, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 200, 5, 0.05) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%);
  animation: gridDrift 28s linear infinite;
}

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

#candle-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.35;
}

.ring-field {
  pointer-events: none;
  position: fixed;
  top: 18%;
  right: 8%;
  width: min(42vw, 420px);
  height: min(42vw, 420px);
  z-index: 0;
  opacity: 0.35;
}

.ring-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(0, 200, 5, 0.35);
  box-shadow: inset 0 0 40px rgba(0, 200, 5, 0.08);
  animation: ringOut 5.5s ease-out infinite;
}

.ring-pulse.delay-1 {
  animation-delay: 1.8s;
}

.ring-pulse.delay-2 {
  animation-delay: 3.6s;
}

@keyframes ringOut {
  0% {
    transform: scale(0.45);
    opacity: 0.7;
  }
  100% {
    transform: scale(1.35);
    opacity: 0;
  }
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 clamp(1rem, 3vw, 2.5rem);
  background: rgba(5, 8, 6, 0.55);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.nav.scrolled {
  background: rgba(5, 8, 6, 0.88);
  border-bottom-color: var(--line);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.nav-logo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--green);
  box-shadow: var(--glow);
  animation: logoPulse 3.2s ease-in-out infinite;
}

@keyframes logoPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(0, 200, 5, 0.45), 0 0 24px rgba(0, 200, 5, 0.35);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(0, 200, 5, 0), 0 0 36px rgba(57, 255, 20, 0.45);
  }
}

.nav-wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.nav-wordmark strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-style: italic;
}

.nav-wordmark small {
  color: var(--green);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  font-weight: 600;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-links a {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  position: relative;
  transition: color 0.2s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
  box-shadow: 0 0 12px var(--green);
}

.nav-links a:hover {
  color: var(--ink);
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.icon-btn {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(0, 200, 5, 0.08);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease,
    background 0.2s ease;
}

.icon-btn img {
  width: 18px;
  height: 18px;
  filter: drop-shadow(0 0 6px rgba(57, 255, 20, 0.55));
}

.icon-btn:hover {
  transform: translateY(-2px);
  border-color: var(--green);
  background: rgba(0, 200, 5, 0.16);
  box-shadow: var(--glow);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.75rem 1.15rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease,
    border-color 0.2s ease;
  white-space: nowrap;
}

.btn-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  filter: drop-shadow(0 0 5px rgba(57, 255, 20, 0.45));
}

.btn-solid {
  color: #031404;
  background: linear-gradient(135deg, var(--green-hot), var(--green) 55%, var(--green-deep));
  box-shadow: var(--glow);
}

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

.btn-solid:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 0 50px rgba(57, 255, 20, 0.45);
}

.btn-ghost {
  border: 1px solid var(--line);
  background: rgba(0, 200, 5, 0.06);
  color: var(--ink);
}

.btn-ghost:hover {
  border-color: var(--green);
  box-shadow: var(--glow);
  transform: translateY(-2px);
}

.btn-ghost .btn-icon {
  filter: drop-shadow(0 0 6px rgba(57, 255, 20, 0.55));
}

.btn-lg {
  padding: 0.95rem 1.4rem;
  font-size: 1rem;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--line);
  border-radius: 12px;
}

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

.menu-toggle.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

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

.hero {
  position: relative;
  min-height: 100vh;
  padding: calc(var(--nav-h) + 2.5rem) clamp(1rem, 3vw, 2.5rem) 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  width: 55vw;
  height: 55vw;
  right: -8%;
  top: 10%;
  background: radial-gradient(circle, rgba(0, 200, 5, 0.28), transparent 68%);
  filter: blur(10px);
  animation: glowBreathe 6s ease-in-out infinite;
  pointer-events: none;
}

@keyframes glowBreathe {
  0%,
  100% {
    opacity: 0.65;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.08);
  }
}

.hero-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  padding-bottom: 3rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1rem;
  color: var(--green-hot);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-hot);
  box-shadow: 0 0 12px var(--green-hot);
  animation: blink 1.4s ease-in-out infinite;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.25;
  }
}

.brand-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(4.2rem, 12vw, 7.5rem);
  line-height: 0.9;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-style: italic;
  font-weight: 700;
}

.brand-glow {
  display: inline-block;
  background: linear-gradient(180deg, #ffffff 20%, #d7ffe0 55%, #8dff9a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 18px rgba(0, 200, 5, 0.55))
    drop-shadow(0 0 42px rgba(0, 200, 5, 0.28));
  animation: titleShimmer 4.5s ease-in-out infinite;
}

@keyframes titleShimmer {
  0%,
  100% {
    filter: drop-shadow(0 0 18px rgba(0, 200, 5, 0.55))
      drop-shadow(0 0 42px rgba(0, 200, 5, 0.28));
  }
  50% {
    filter: drop-shadow(0 0 28px rgba(57, 255, 20, 0.75))
      drop-shadow(0 0 70px rgba(0, 200, 5, 0.4));
  }
}

.tagline {
  margin: 0.55rem 0 1.25rem;
  color: var(--green);
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: lowercase;
  position: relative;
  display: inline-block;
  padding-top: 0.7rem;
}

.tagline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
  box-shadow: 0 0 12px var(--green);
}

.hero-lead {
  margin: 0 0 1.75rem;
  max-width: 34rem;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.ticker {
  color: var(--green-hot);
  font-weight: 700;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 1.75rem;
}

.ca-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  margin-bottom: 1.35rem;
  padding: 0.85rem 1rem;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(0, 200, 5, 0.1), rgba(0, 0, 0, 0.28));
  box-shadow: inset 0 0 0 1px rgba(0, 200, 5, 0.05);
  max-width: 36rem;
}

.ca-meta {
  min-width: 0;
  flex: 1;
}

.ca-meta span {
  display: block;
  color: var(--muted);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}

.ca-meta code {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--green-hot);
  font-family: "Sora", ui-monospace, monospace;
  font-size: 0.84rem;
  font-weight: 600;
}

.ca-copy {
  flex-shrink: 0;
  padding: 0.65rem 0.95rem;
  border-radius: 12px;
}

.ca-copy.copied {
  border-color: var(--green);
  color: var(--green-hot);
  box-shadow: var(--glow);
}

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

.meta-chip {
  min-width: 120px;
  padding: 0.75rem 0.95rem;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(0, 200, 5, 0.1), rgba(0, 0, 0, 0.2));
  backdrop-filter: blur(8px);
}

.meta-chip span {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.meta-chip strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  font-style: italic;
}

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

.aura {
  position: absolute;
  width: min(100%, 420px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 45%, rgba(57, 255, 20, 0.45), transparent 42%),
    radial-gradient(circle at 50% 50%, rgba(0, 200, 5, 0.22), transparent 68%);
  filter: blur(8px);
  animation: auraSpin 12s linear infinite;
}

@keyframes auraSpin {
  from {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(180deg) scale(1.06);
  }
  to {
    transform: rotate(360deg) scale(1);
  }
}

.logo-frame {
  position: relative;
  width: min(100%, 340px);
  aspect-ratio: 1;
  border-radius: 50%;
  padding: 8px;
  background: linear-gradient(145deg, var(--green-hot), transparent 40%, var(--green-deep));
  box-shadow: var(--glow-soft), 0 30px 80px rgba(0, 0, 0, 0.55);
  overflow: hidden;
  animation: floatY 5.5s ease-in-out infinite;
}

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

.hero-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid rgba(5, 8, 6, 0.85);
}

.scanline {
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(57, 255, 20, 0.12) 48%,
    transparent 52%
  );
  background-size: 100% 220%;
  animation: scan 3.8s linear infinite;
  pointer-events: none;
  mix-blend-mode: screen;
}

@keyframes scan {
  from {
    background-position: 0 -40%;
  }
  to {
    background-position: 0 140%;
  }
}

.equalizer {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 36px;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  background: rgba(5, 8, 6, 0.7);
  border: 1px solid var(--line);
  backdrop-filter: blur(8px);
}

.equalizer i {
  display: block;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--green-hot), var(--green-deep));
  box-shadow: 0 0 10px rgba(0, 200, 5, 0.55);
  animation: eq 1.1s ease-in-out infinite;
}

.equalizer i:nth-child(1) {
  height: 30%;
  animation-delay: 0s;
}
.equalizer i:nth-child(2) {
  height: 55%;
  animation-delay: 0.1s;
}
.equalizer i:nth-child(3) {
  height: 80%;
  animation-delay: 0.2s;
}
.equalizer i:nth-child(4) {
  height: 45%;
  animation-delay: 0.05s;
}
.equalizer i:nth-child(5) {
  height: 95%;
  animation-delay: 0.25s;
}
.equalizer i:nth-child(6) {
  height: 60%;
  animation-delay: 0.15s;
}
.equalizer i:nth-child(7) {
  height: 35%;
  animation-delay: 0.3s;
}
.equalizer i:nth-child(8) {
  height: 70%;
  animation-delay: 0.18s;
}

@keyframes eq {
  0%,
  100% {
    transform: scaleY(0.45);
  }
  50% {
    transform: scaleY(1);
  }
}

.ticket {
  position: absolute;
  top: 12%;
  left: 0;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.7rem 0.9rem;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(5, 12, 8, 0.82);
  box-shadow: var(--glow);
  animation: ticketIn 0.8s ease both, floatY 6.5s ease-in-out 0.8s infinite;
}

.ticket span {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  color: var(--muted);
}

.ticket strong {
  font-family: var(--font-display);
  font-style: italic;
  letter-spacing: 0.06em;
  color: var(--green-hot);
}

@keyframes ticketIn {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.marquee {
  margin-top: auto;
  border-block: 1px solid var(--line);
  background: rgba(0, 200, 5, 0.05);
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}

.marquee-track {
  display: flex;
  gap: 2.5rem;
  width: max-content;
  padding: 0.85rem 0;
  animation: marquee 28s linear infinite;
}

.marquee-track span {
  font-family: var(--font-display);
  font-style: italic;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(244, 247, 244, 0.55);
  white-space: nowrap;
}

.marquee-track span:nth-child(odd) {
  color: var(--green);
}

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

.section {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: clamp(4.5rem, 10vw, 7rem) clamp(1rem, 3vw, 2.5rem);
}

.section-head {
  max-width: 720px;
  margin-bottom: 2.75rem;
}

.section-kicker {
  margin: 0 0 0.75rem;
  color: var(--green);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.section-head h2,
.join-panel h2 {
  margin: 0 0 0.9rem;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-style: italic;
}

.section-sub,
.join-panel > p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.about-card {
  position: relative;
  padding: 1.5rem 1.35rem 1.6rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background:
    linear-gradient(160deg, rgba(0, 200, 5, 0.1), transparent 45%),
    rgba(8, 14, 10, 0.75);
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.about-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(57, 255, 20, 0.12), transparent 45%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.about-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 200, 5, 0.55);
  box-shadow: var(--glow-soft);
}

.about-card:hover::before {
  opacity: 1;
}

.about-index {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--green);
  margin-bottom: 1rem;
}

.about-card h3,
.about-blurb h3,
.step-body h3 {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-style: italic;
}

.about-card p,
.about-blurb p,
.step-body p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.98rem;
}

.about-media {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.25rem;
  align-items: stretch;
}

.video-shell {
  position: relative;
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #000;
  box-shadow: var(--glow-soft);
  min-height: 280px;
}

.about-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 320px;
  filter: saturate(1.05) contrast(1.05);
}

.video-caption {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: rgba(5, 8, 6, 0.78);
  border: 1px solid var(--line);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  backdrop-filter: blur(8px);
}

.rec {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff3b3b;
  box-shadow: 0 0 10px #ff3b3b;
  animation: blink 1.2s ease-in-out infinite;
}

.about-blurb {
  padding: 1.75rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--bg-panel);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.stat-list {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.stat-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(0, 200, 5, 0.14);
}

.stat-list strong {
  font-family: var(--font-display);
  font-style: italic;
  letter-spacing: 0.04em;
  color: var(--green-hot);
}

.stat-list span {
  color: var(--muted);
  font-size: 0.9rem;
}

.howtobuy {
  position: relative;
}

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

.step {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  align-items: start;
  padding: 1.4rem 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(0, 200, 5, 0.08), transparent 40%),
    rgba(8, 14, 10, 0.65);
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.step:hover {
  transform: translateX(6px);
  border-color: rgba(0, 200, 5, 0.5);
  box-shadow: var(--glow-soft);
}

.step-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 2rem;
  color: var(--green);
  line-height: 1;
  text-shadow: 0 0 20px rgba(0, 200, 5, 0.45);
}

.step-rail {
  position: absolute;
  left: 2.35rem;
  top: calc(100% - 4px);
  width: 2px;
  height: 1rem;
  background: linear-gradient(180deg, var(--green), transparent);
  opacity: 0.55;
}

.step:last-child .step-rail {
  display: none;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.9rem;
  color: var(--green-hot);
  font-weight: 600;
  font-size: 0.92rem;
}

.text-link img {
  width: 16px;
  height: 16px;
  filter: drop-shadow(0 0 6px rgba(57, 255, 20, 0.55));
}

.text-link:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.chart-actions {
  margin-top: 1.25rem;
}

.chart-frame {
  position: relative;
  border-radius: calc(var(--radius) + 6px);
  border: 1px solid var(--line);
  overflow: hidden;
  background: #0a0f0c;
  box-shadow: var(--glow-soft), 0 24px 80px rgba(0, 0, 0, 0.45);
  min-height: 560px;
}

.chart-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(0, 200, 5, 0.12);
  z-index: 1;
}

.chart-frame iframe {
  width: 100%;
  height: 620px;
  border: 0;
  display: block;
  background: #0a0f0c;
}

.joinus {
  width: min(100%, var(--max));
  padding-top: 2rem;
}

.join-banner {
  position: relative;
  border-radius: calc(var(--radius) + 8px);
  overflow: hidden;
  border: 1px solid rgba(0, 200, 5, 0.35);
  box-shadow: var(--glow-soft), 0 30px 90px rgba(0, 0, 0, 0.5);
  margin-bottom: 1.25rem;
}

.join-banner img {
  width: 100%;
  height: auto;
  display: block;
  transform: scale(1.02);
  animation: bannerDrift 14s ease-in-out infinite alternate;
}

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

.join-banner-fade {
  position: absolute;
  inset: auto 0 0;
  height: 40%;
  background: linear-gradient(180deg, transparent, rgba(5, 8, 6, 0.85));
  pointer-events: none;
}

.join-panel {
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at top right, rgba(0, 200, 5, 0.14), transparent 40%),
    rgba(8, 14, 10, 0.82);
}

.join-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
  margin-top: 1.75rem;
}

.join-card {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 1.1rem;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.28);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.join-card img {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  filter: drop-shadow(0 0 8px rgba(57, 255, 20, 0.55));
}

.join-card strong {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.15rem;
}

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

.join-card:hover {
  transform: translateY(-4px);
  border-color: var(--green);
  box-shadow: var(--glow);
}

.footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--line);
  margin-top: 2rem;
  background: rgba(3, 6, 4, 0.9);
}

.footer-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 2.5rem clamp(1rem, 3vw, 2.5rem) 3rem;
  display: grid;
  gap: 1.25rem;
}

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

.footer-brand img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--green);
  object-fit: cover;
}

.footer-brand em {
  font-style: italic;
  color: var(--green);
  margin-left: 0.35rem;
}

.footer-note {
  margin: 0;
  max-width: 58ch;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-socials {
  display: flex;
  gap: 0.6rem;
}

.footer-socials a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  border: 1px solid var(--line);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.footer-socials a img {
  width: 18px;
  height: 18px;
  filter: drop-shadow(0 0 6px rgba(57, 255, 20, 0.55));
}

.footer-socials a:hover {
  transform: translateY(-2px);
  border-color: var(--green);
  background: rgba(0, 200, 5, 0.12);
  box-shadow: var(--glow);
}

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

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

@media (max-width: 980px) {
  .hero-inner,
  .about-media,
  .about-grid,
  .join-links {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    order: -1;
    min-height: 360px;
  }

  .logo-frame {
    width: min(78vw, 300px);
  }

  .nav-links {
    position: fixed;
    inset: var(--nav-h) 1rem auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.75rem;
    border-radius: 16px;
    border: 1px solid var(--line);
    background: rgba(5, 10, 7, 0.96);
    box-shadow: var(--glow-soft);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 0.9rem 1rem;
    border-radius: 10px;
  }

  .nav-links a:hover {
    background: rgba(0, 200, 5, 0.08);
  }

  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .chart-frame,
  .chart-frame iframe {
    min-height: 460px;
    height: 460px;
  }
}

@media (max-width: 640px) {
  .icon-btn:nth-child(2) {
    display: none;
  }

  .brand-title {
    font-size: clamp(3.4rem, 18vw, 4.8rem);
  }

  .ticket {
    left: 4%;
    top: 6%;
  }

  .ca-box {
    flex-direction: column;
    align-items: stretch;
  }

  .ca-copy {
    width: 100%;
  }

  .hero-meta {
    width: 100%;
  }

  .meta-chip {
    flex: 1 1 calc(50% - 0.75rem);
  }

  .join-card {
    padding: 0.95rem;
  }
}

@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;
  }
}
