/* SWINK — Neon Gym Anime */

:root {
  --lime: #b8ff14;
  --lime-hot: #dfff55;
  --lime-dim: #6f9510;
  --ginger: #e39a3c;
  --ginger-deep: #c46e1e;
  --cream: #f3e2c4;
  --ink: #070b05;
  --ink-2: #0d160a;
  --ink-3: #152214;
  --panel: rgba(18, 28, 12, 0.72);
  --line: rgba(200, 255, 42, 0.22);
  --text: #eef6d8;
  --muted: #9aab7a;
  --font-display: "Bungee", system-ui, sans-serif;
  --font-tech: "Orbitron", system-ui, sans-serif;
  --font-body: "Exo 2", system-ui, sans-serif;
  --radius: 18px;
  --max: 1120px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--ink);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.55;
}

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

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

ul,
ol {
  list-style: none;
}

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

/* Atmosphere */
.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  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;
}

.grid-floor {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(200, 255, 42, 0.16), transparent 55%),
    radial-gradient(ellipse 60% 40% at 85% 70%, rgba(227, 154, 60, 0.1), transparent 50%),
    radial-gradient(ellipse 50% 35% at 10% 80%, rgba(200, 255, 42, 0.08), transparent 45%),
    linear-gradient(180deg, #070b05 0%, #0c1409 40%, #0a1008 100%);
}

.grid-floor::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200, 255, 42, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200, 255, 42, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%);
  animation: grid-drift 28s linear infinite;
}

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

#spark-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.cursor-glow {
  position: fixed;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 2;
  background: radial-gradient(circle, rgba(200, 255, 42, 0.14), transparent 65%);
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.35s ease;
  mix-blend-mode: screen;
}

body.is-pointer .cursor-glow {
  opacity: 1;
}

/* Nav */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem clamp(1rem, 3vw, 2rem);
  transition: background 0.35s ease, backdrop-filter 0.35s ease, box-shadow 0.35s ease;
}

.nav.is-scrolled {
  background: rgba(7, 11, 5, 0.82);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
}

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

.nav__logo {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 2px rgba(200, 255, 42, 0.55), 0 0 18px rgba(200, 255, 42, 0.35);
  animation: logo-breathe 3.6s ease-in-out infinite;
}

@keyframes logo-breathe {
  0%, 100% { box-shadow: 0 0 0 2px rgba(200, 255, 42, 0.55), 0 0 14px rgba(200, 255, 42, 0.3); }
  50% { box-shadow: 0 0 0 3px rgba(232, 255, 106, 0.8), 0 0 28px rgba(200, 255, 42, 0.55); }
}

.nav__word {
  font-family: var(--font-display);
  letter-spacing: 0.06em;
  font-size: 1.15rem;
  color: var(--lime);
  text-shadow: 0 0 18px rgba(200, 255, 42, 0.45);
}

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

.nav__links a {
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  position: relative;
  transition: color 0.25s ease;
}

.nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--lime), var(--ginger));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

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

.nav__links a:hover::after {
  transform: scaleX(1);
}

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

.nav__icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background: rgba(200, 255, 42, 0.06);
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.nav__icon img {
  width: 16px;
  height: 16px;
  filter: brightness(0) saturate(100%) invert(88%) sepia(47%) saturate(700%) hue-rotate(23deg);
}

.nav__icon:hover {
  transform: translateY(-2px) scale(1.06);
  background: rgba(200, 255, 42, 0.16);
  border-color: var(--lime);
}

.nav__burger {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  gap: 5px;
  flex-direction: column;
}

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

.nav__burger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav__burger.is-open span:nth-child(2) {
  opacity: 0;
}
.nav__burger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.95rem 1.55rem;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.88rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.btn img {
  width: 16px;
  height: 16px;
}

.btn--lime {
  background: linear-gradient(135deg, var(--lime-hot), var(--lime) 45%, #9fd612);
  color: #101806;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.15) inset, 0 8px 28px rgba(200, 255, 42, 0.35);
}

.btn--lime:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.2) inset, 0 14px 36px rgba(200, 255, 42, 0.5);
}

.btn--ghost {
  border: 1px solid rgba(200, 255, 42, 0.45);
  color: var(--lime-hot);
  background: rgba(200, 255, 42, 0.05);
}

.btn--ghost:hover {
  transform: translateY(-3px);
  background: rgba(200, 255, 42, 0.12);
  box-shadow: 0 0 24px rgba(200, 255, 42, 0.2);
}

.btn--ghost img {
  filter: brightness(0) saturate(100%) invert(88%) sepia(47%) saturate(700%) hue-rotate(23deg);
}

/* Rail chips */
.rail-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(7, 11, 5, 0.55);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--cream);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.rail-chip img {
  width: 15px;
  height: 15px;
}

.rail-chip:hover {
  transform: translateY(-2px);
  border-color: var(--lime);
  background: rgba(200, 255, 42, 0.1);
}

/* Hero */
.hero {
  position: relative;
  z-index: 3;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 7rem 1.25rem 4.5rem;
  overflow: hidden;
}

.hero__plasma {
  position: absolute;
  inset: -10%;
  background:
    radial-gradient(circle at 50% 35%, rgba(200, 255, 42, 0.22), transparent 42%),
    radial-gradient(circle at 30% 60%, rgba(227, 154, 60, 0.14), transparent 35%);
  animation: plasma-sway 9s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes plasma-sway {
  from { transform: scale(1) translateY(0); filter: hue-rotate(0deg); }
  to { transform: scale(1.08) translateY(-2%); filter: hue-rotate(12deg); }
}

.hero__beams {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(
      -18deg,
      transparent 0 42px,
      rgba(200, 255, 42, 0.03) 42px 44px
    );
  mask-image: linear-gradient(180deg, transparent, black 25%, black 70%, transparent);
  animation: beam-slide 14s linear infinite;
}

@keyframes beam-slide {
  from { background-position: 0 0; }
  to { background-position: 120px 0; }
}

.hero__stage {
  position: relative;
  z-index: 2;
  width: min(100%, 760px);
  margin: 0 auto;
  text-align: center;
}

.hero__orbits {
  position: absolute;
  left: 50%;
  top: 120px;
  width: 280px;
  height: 280px;
  transform: translateX(-50%);
  pointer-events: none;
}

.hero__orbits span {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(200, 255, 42, 0.25);
  animation: orbit-spin 12s linear infinite;
}

.hero__orbits span:nth-child(2) {
  inset: 18px;
  border-color: rgba(227, 154, 60, 0.28);
  animation-duration: 9s;
  animation-direction: reverse;
}

.hero__orbits span:nth-child(3) {
  inset: 36px;
  border-style: dashed;
  border-color: rgba(200, 255, 42, 0.35);
  animation-duration: 7s;
}

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

.hero__media {
  position: relative;
  width: min(260px, 58vw);
  margin: 0 auto 1.4rem;
  aspect-ratio: 1;
}

.hero__video,
.hero__logo-fallback {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  position: absolute;
  inset: 0;
}

.hero__video {
  z-index: 2;
  opacity: 0;
  transition: opacity 0.6s ease;
  box-shadow: 0 0 0 3px rgba(200, 255, 42, 0.55), 0 0 50px rgba(200, 255, 42, 0.35);
}

.hero__video.is-ready {
  opacity: 1;
}

.hero__logo-fallback {
  z-index: 1;
  animation: float-y 4.5s ease-in-out infinite;
  box-shadow: 0 0 0 3px rgba(200, 255, 42, 0.55), 0 0 50px rgba(200, 255, 42, 0.35);
}

.hero__media:has(.hero__video.is-ready) .hero__logo-fallback {
  opacity: 0;
}

@keyframes float-y {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hero__aura {
  position: absolute;
  inset: -18%;
  border-radius: 50%;
  background: conic-gradient(from 0deg, transparent, rgba(200, 255, 42, 0.35), transparent 40%, rgba(227, 154, 60, 0.3), transparent 70%);
  animation: aura-spin 8s linear infinite;
  filter: blur(8px);
  z-index: 0;
}

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

.hero__brand {
  font-family: var(--font-tech);
  font-size: clamp(0.95rem, 2.4vw, 1.15rem);
  letter-spacing: 0.28em;
  color: var(--lime);
  text-shadow: 0 0 20px rgba(200, 255, 42, 0.55);
  margin-bottom: 0.55rem;
  animation: brand-flicker 5s steps(2) infinite;
}

@keyframes brand-flicker {
  0%, 92%, 100% { opacity: 1; }
  94% { opacity: 0.7; }
  96% { opacity: 1; }
  98% { opacity: 0.55; }
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 12vw, 6.4rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  margin-bottom: 0.85rem;
}

.hero__ticker {
  display: inline-block;
  background: linear-gradient(100deg, var(--lime-hot), var(--lime) 40%, var(--ginger) 75%, var(--lime-hot));
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: ticker-shine 4s linear infinite;
  filter: drop-shadow(0 0 18px rgba(200, 255, 42, 0.35));
}

@keyframes ticker-shine {
  to { background-position: 220% 0; }
}

.hero__slogan {
  font-family: var(--font-tech);
  font-size: clamp(0.95rem, 2.5vw, 1.25rem);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 0.75rem;
  text-shadow: 0 0 24px rgba(200, 255, 42, 0.25);
}

.hero__lead {
  max-width: 34rem;
  margin: 0 auto 1.6rem;
  color: var(--muted);
  font-size: clamp(1rem, 2.2vw, 1.15rem);
}

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

.hero__rail {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
}

.marquee {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(8, 12, 5, 0.75);
  padding: 0.7rem 0;
  z-index: 3;
}

.marquee__track {
  display: flex;
  gap: 2.5rem;
  width: max-content;
  animation: marquee 28s linear infinite;
  font-family: var(--font-tech);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lime);
}

.marquee__track span {
  white-space: nowrap;
}

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

/* Sections shared */
.section {
  position: relative;
  z-index: 3;
  padding: clamp(4.5rem, 10vw, 7rem) clamp(1.1rem, 3vw, 2rem);
  max-width: var(--max);
  margin: 0 auto;
}

.eyebrow {
  font-family: var(--font-tech);
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ginger);
  margin-bottom: 0.75rem;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 5vw, 3rem);
  line-height: 1.1;
  margin-bottom: 1rem;
  color: var(--cream);
  text-wrap: balance;
}

.section__text {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 38rem;
  margin-bottom: 1rem;
}

.section__text--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.howto .eyebrow,
.chart .eyebrow,
.join .eyebrow,
.howto .section__title,
.chart .section__title,
.join .section__title {
  text-align: center;
}

/* About */
.about__layout {
  display: grid;
  grid-template-columns: 0.95fr 1.15fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}

.section__slash {
  position: absolute;
  inset: 10% -20%;
  background: linear-gradient(105deg, transparent 40%, rgba(200, 255, 42, 0.05) 50%, transparent 60%);
  transform: skewY(-4deg);
  pointer-events: none;
}

.about__frame {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45), 0 0 40px rgba(200, 255, 42, 0.12);
}

.about__frame img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  animation: float-y 5.5s ease-in-out infinite;
}

.about__scan {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(200, 255, 42, 0.18), transparent);
  height: 35%;
  animation: scan-y 3.8s ease-in-out infinite;
  pointer-events: none;
  mix-blend-mode: soft-light;
}

@keyframes scan-y {
  0%, 100% { transform: translateY(-120%); }
  50% { transform: translateY(220%); }
}

.about__stats {
  margin-top: 1.1rem;
  display: grid;
  gap: 0.65rem;
}

.stat-bar {
  position: relative;
  height: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(7, 11, 5, 0.65);
  overflow: hidden;
}

.stat-bar i {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0;
  background: linear-gradient(90deg, var(--ginger-deep), var(--lime));
  box-shadow: 0 0 18px rgba(200, 255, 42, 0.45);
  transition: width 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.stat-bar.is-on i {
  width: var(--w);
}

.stat-bar span {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 0.75rem;
  font-family: var(--font-tech);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
}

.pillars {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.pillar {
  padding: 1rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: linear-gradient(160deg, rgba(200, 255, 42, 0.08), rgba(10, 14, 8, 0.5));
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.pillar:hover {
  transform: translateY(-4px);
  border-color: rgba(200, 255, 42, 0.55);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25), 0 0 20px rgba(200, 255, 42, 0.12);
}

.pillar svg {
  width: 28px;
  height: 28px;
  color: var(--lime);
  margin-bottom: 0.45rem;
  filter: drop-shadow(0 0 8px rgba(200, 255, 42, 0.45));
}

.pillar strong {
  display: block;
  font-family: var(--font-tech);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  color: var(--lime-hot);
  margin-bottom: 0.2rem;
}

.pillar span {
  color: var(--muted);
  font-size: 0.88rem;
}

/* How to buy */
.howto {
  max-width: none;
  padding-left: clamp(1.1rem, 4vw, 3rem);
  padding-right: clamp(1.1rem, 4vw, 3rem);
}

.howto__glow {
  position: absolute;
  left: 50%;
  top: 20%;
  width: min(680px, 90vw);
  height: 320px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(200, 255, 42, 0.12), transparent 70%);
  pointer-events: none;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  max-width: var(--max);
  margin: 2.2rem auto 0;
  counter-reset: none;
}

.step {
  position: relative;
  padding: 1.4rem 1.2rem 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(165deg, rgba(30, 42, 18, 0.85), rgba(10, 14, 8, 0.9));
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.step::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(200, 255, 42, 0.12), transparent 45%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.step:hover {
  transform: translateY(-6px);
  border-color: rgba(200, 255, 42, 0.55);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35), 0 0 30px rgba(200, 255, 42, 0.12);
}

.step:hover::before {
  opacity: 1;
}

.step__num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--lime);
  text-shadow: 0 0 16px rgba(200, 255, 42, 0.45);
  display: block;
  margin-bottom: 0.7rem;
}

.step h3 {
  font-family: var(--font-tech);
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  margin-bottom: 0.55rem;
  color: var(--cream);
}

.step p {
  color: var(--muted);
  font-size: 0.92rem;
}

.howto__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
}

/* Chart */
.chart {
  max-width: none;
}

.chart .section__title,
.chart .eyebrow,
.chart .section__text {
  max-width: var(--max);
}

.chart__tools {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
  margin: 1.4rem auto 1.5rem;
}

.chart__embed {
  width: min(1100px, 100%);
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #0b1208;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45), 0 0 40px rgba(200, 255, 42, 0.08);
  min-height: 520px;
}

.chart__embed iframe {
  width: 100%;
  height: 560px;
  border: 0;
  display: block;
}

/* Join */
.join {
  max-width: none;
  text-align: center;
}

.join__banner {
  position: relative;
  width: min(1080px, 100%);
  margin: 2rem auto 2.2rem;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(200, 255, 42, 0.35);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.5), 0 0 50px rgba(200, 255, 42, 0.15);
  transform-style: preserve-3d;
  transition: transform 0.2s ease;
}

.join__banner img {
  width: 100%;
  height: auto;
  display: block;
}

.join__banner-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.18) 48%, transparent 62%);
  transform: translateX(-120%);
  animation: shine-pass 5.5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes shine-pass {
  0%, 60%, 100% { transform: translateX(-120%); }
  80% { transform: translateX(120%); }
}

.join__socials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
  width: min(820px, 100%);
  margin: 0 auto;
}

.social {
  display: grid;
  justify-items: center;
  gap: 0.35rem;
  padding: 1.25rem 0.9rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(12, 18, 10, 0.75);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.social img {
  width: 22px;
  height: 22px;
  margin-bottom: 0.25rem;
  filter: brightness(0) saturate(100%) invert(88%) sepia(47%) saturate(700%) hue-rotate(23deg);
}

.social span {
  font-family: var(--font-tech);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--cream);
}

.social em {
  font-style: normal;
  font-size: 0.8rem;
  color: var(--muted);
}

.social:hover {
  transform: translateY(-5px);
  border-color: var(--lime);
  background: rgba(200, 255, 42, 0.08);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.3), 0 0 24px rgba(200, 255, 42, 0.15);
}

/* Footer */
.footer {
  position: relative;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 2rem clamp(1.1rem, 3vw, 2rem) 2.5rem;
  border-top: 1px solid var(--line);
  background: rgba(5, 8, 4, 0.85);
  max-width: 1200px;
  margin: 0 auto;
}

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

.footer__brand img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(200, 255, 42, 0.4);
}

.footer__brand strong {
  display: block;
  font-family: var(--font-display);
  color: var(--lime);
  letter-spacing: 0.06em;
}

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

.footer__note {
  color: var(--muted);
  font-size: 0.82rem;
  max-width: 28rem;
}

.footer__icons {
  display: flex;
  gap: 0.5rem;
}

.footer__icons a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.footer__icons img {
  width: 15px;
  height: 15px;
  filter: brightness(0) saturate(100%) invert(88%) sepia(47%) saturate(700%) hue-rotate(23deg);
}

.footer__icons a:hover {
  border-color: var(--lime);
  transform: translateY(-2px);
}

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

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

/* Responsive */
@media (max-width: 960px) {
  .about__layout {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }

  .steps {
    grid-template-columns: 1fr 1fr;
  }

  .join__socials {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .nav__links {
    position: fixed;
    inset: 0 0 auto 0;
    top: 0;
    padding: 5.5rem 1.5rem 1.5rem;
    background: rgba(7, 11, 5, 0.96);
    backdrop-filter: blur(16px);
    flex-direction: column;
    gap: 1.1rem;
    transform: translateY(-120%);
    transition: transform 0.35s ease;
    border-bottom: 1px solid var(--line);
  }

  .nav__links.is-open {
    transform: translateY(0);
  }

  .nav__burger {
    display: grid;
  }

  .steps {
    grid-template-columns: 1fr;
  }

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

  .footer {
    flex-direction: column;
    text-align: center;
  }

  .footer__brand {
    justify-content: center;
  }
}

@media (max-width: 520px) {
  .join__socials {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 6.2rem;
  }
}

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