/* ============================================================
   MESSI IN HOOD — $MESSIHOOD
   Dark Robinhood-green theme, world cup energy
   ============================================================ */

:root {
  --bg-0: #030a05;
  --bg-1: #06120a;
  --bg-2: #0a1c10;
  --green: #40e850;
  --green-dim: #2bb53a;
  --green-deep: #10531f;
  --gold: #e8c440;
  --text: #eafbe9;
  --text-dim: #9dbfa2;
  --line: rgba(64, 232, 80, 0.16);
  --card: rgba(10, 28, 16, 0.62);
  --font-display: "Archivo Black", sans-serif;
  --font-body: "Space Grotesk", sans-serif;
  --header-h: 76px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg-0);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

::selection { background: var(--green); color: #041207; }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg-0); }
::-webkit-scrollbar-thumb { background: var(--green-deep); border-radius: 8px; }
::-webkit-scrollbar-thumb:hover { background: var(--green-dim); }

/* ============ BACKGROUND LAYERS ============ */

#bg-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -3;
  background:
    radial-gradient(ellipse 90% 60% at 50% -10%, rgba(24, 78, 36, 0.55), transparent 60%),
    radial-gradient(ellipse 70% 50% at 85% 110%, rgba(16, 62, 28, 0.5), transparent 65%),
    linear-gradient(180deg, var(--bg-0) 0%, var(--bg-1) 50%, var(--bg-0) 100%);
}

.bg-pitch-lines {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(64, 232, 80, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(64, 232, 80, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 30%, transparent 75%);
  animation: gridDrift 24s linear infinite;
}

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

.bg-glow {
  position: fixed;
  width: 55vw;
  height: 55vw;
  border-radius: 50%;
  filter: blur(120px);
  z-index: -2;
  pointer-events: none;
  opacity: 0.35;
}
.bg-glow--left {
  left: -22vw;
  top: 20vh;
  background: radial-gradient(circle, rgba(38, 130, 55, 0.5), transparent 70%);
  animation: glowPulse 9s ease-in-out infinite;
}
.bg-glow--right {
  right: -25vw;
  bottom: -10vh;
  background: radial-gradient(circle, rgba(232, 196, 64, 0.16), transparent 70%);
  animation: glowPulse 11s ease-in-out infinite reverse;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.25; transform: scale(1); }
  50% { opacity: 0.45; transform: scale(1.12); }
}

.bg-vignette {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(ellipse 120% 100% at 50% 50%, transparent 55%, rgba(2, 7, 3, 0.75) 100%);
}

/* ============ HEADER ============ */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  transition: background 0.35s ease, border-color 0.35s ease, backdrop-filter 0.35s ease;
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background: rgba(4, 12, 7, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  height: 100%;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand { display: flex; align-items: center; gap: 12px; }

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--green);
  box-shadow: 0 0 18px rgba(64, 232, 80, 0.45);
  flex-shrink: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.brand:hover .brand-mark {
  transform: rotate(-8deg) scale(1.06);
  box-shadow: 0 0 28px rgba(64, 232, 80, 0.7);
}
.brand-mark img { width: 100%; height: 100%; object-fit: cover; }

.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name {
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.06em;
}
.brand-ticker {
  font-size: 0.7rem;
  color: var(--green);
  letter-spacing: 0.22em;
  font-weight: 600;
}

.main-nav { display: flex; gap: 6px; }

.nav-link {
  position: relative;
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-dim);
  border-radius: 10px;
  transition: color 0.25s ease, background 0.25s ease;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 4px;
  height: 2px;
  background: var(--green);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s cubic-bezier(0.65, 0, 0.35, 1);
}
.nav-link:hover { color: var(--text); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.nav-link.active { color: var(--green); }

.header-actions { display: flex; align-items: center; gap: 14px; }

.header-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: rgba(64, 232, 80, 0.05);
  transition: border-color 0.25s, background 0.25s, transform 0.25s;
}
.header-icon img { width: 16px; height: 16px; }
.header-icon:hover {
  border-color: var(--green);
  background: rgba(64, 232, 80, 0.14);
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  background: none;
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
  padding: 10px;
}
.nav-toggle span {
  height: 2px;
  background: var(--green);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============ BUTTONS ============ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.03em;
  border-radius: 14px;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
  white-space: nowrap;
}

.btn--primary {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dim) 100%);
  color: #04160a;
  box-shadow: 0 6px 24px rgba(64, 232, 80, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}
.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 34px rgba(64, 232, 80, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}
.btn--primary:active { transform: translateY(-1px); }

.btn--ghost {
  background: rgba(64, 232, 80, 0.06);
  color: var(--text);
  border: 1px solid var(--line);
}
.btn--ghost:hover {
  border-color: var(--green);
  background: rgba(64, 232, 80, 0.13);
  transform: translateY(-3px);
}

.btn--small { padding: 10px 20px; font-size: 0.85rem; }
.btn--large { padding: 16px 32px; font-size: 1rem; }

.btn-icon { width: 20px; height: 20px; }
.btn--primary .btn-icon { filter: brightness(0) saturate(100%); opacity: 0.85; }

/* ============ HERO ============ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 40px) 28px 60px;
}

.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  border: 1px solid var(--line);
  border-radius: 100px;
  background: rgba(64, 232, 80, 0.07);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--green);
  margin-bottom: 26px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(64, 232, 80, 0.6);
  animation: dotPing 1.8s ease-out infinite;
}

@keyframes dotPing {
  0% { box-shadow: 0 0 0 0 rgba(64, 232, 80, 0.6); }
  70% { box-shadow: 0 0 0 10px rgba(64, 232, 80, 0); }
  100% { box-shadow: 0 0 0 0 rgba(64, 232, 80, 0); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 7.5vw, 6.2rem);
  line-height: 0.98;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin-bottom: 26px;
}
.hero-title .line { display: block; }
.hero-title .line--accent {
  background: linear-gradient(100deg, var(--green) 15%, #8dffa0 40%, var(--green) 60%, var(--green-dim) 85%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: sheen 5s ease-in-out infinite;
  filter: drop-shadow(0 0 26px rgba(64, 232, 80, 0.35));
}

@keyframes sheen {
  0%, 100% { background-position: 0% 0; }
  50% { background-position: 100% 0; }
}

.hero-tagline {
  max-width: 520px;
  font-size: 1.12rem;
  color: var(--text-dim);
  margin-bottom: 34px;
}
.hero-tagline strong { color: var(--green); font-weight: 700; }

.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 30px; }

.contract-bar {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  margin-bottom: 38px;
  max-width: 100%;
}
.contract-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--green);
  padding: 4px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(64, 232, 80, 0.08);
}
.contract-address {
  font-size: 0.88rem;
  color: var(--text-dim);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.contract-copy {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  background: none;
  border: 1px solid var(--line);
  border-radius: 9px;
  color: var(--text-dim);
  cursor: pointer;
  transition: color 0.25s, border-color 0.25s, transform 0.2s;
}
.contract-copy svg { width: 15px; height: 15px; }
.contract-copy:hover { color: var(--green); border-color: var(--green); transform: scale(1.08); }

.hero-stats {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; }
.stat-value {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--green);
  line-height: 1.1;
}
.stat-value--infinity { color: var(--gold); }
.stat-label {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.stat-divider { width: 1px; height: 44px; background: var(--line); }

/* Hero visual */

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
}

.hero-portrait {
  position: relative;
  width: min(420px, 82vw);
  aspect-ratio: 1;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(64, 232, 80, 0.35);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.6),
    0 0 60px rgba(64, 232, 80, 0.22),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  transform-style: preserve-3d;
  will-change: transform;
  animation: portraitFloat 7s ease-in-out infinite;
  z-index: 2;
}
.hero-portrait img { width: 100%; height: 100%; object-fit: cover; }

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

.portrait-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(255, 255, 255, 0.14) 48%, transparent 60%);
  background-size: 260% 100%;
  animation: shineSweep 6s ease-in-out infinite;
  pointer-events: none;
}

@keyframes shineSweep {
  0%, 60%, 100% { background-position: 130% 0; }
  30% { background-position: -60% 0; }
}

.hero-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(64, 232, 80, 0.3);
  pointer-events: none;
}
.hero-ring--1 {
  width: 118%;
  aspect-ratio: 1;
  animation: ringSpin 40s linear infinite;
}
.hero-ring--2 {
  width: 136%;
  aspect-ratio: 1;
  border-color: rgba(232, 196, 64, 0.18);
  animation: ringSpin 60s linear infinite reverse;
}

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

.hero-chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: rgba(6, 20, 11, 0.88);
  border: 1px solid var(--line);
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--green);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(8px);
  z-index: 3;
}
.hero-chip svg { width: 18px; height: 18px; }
.hero-chip--tl { top: 6%; left: -4%; }
.hero-chip--br { bottom: 8%; right: -3%; color: var(--gold); border-color: rgba(232, 196, 64, 0.3); }

.chip-ball {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 35%, #fff 0%, #cfd8cf 55%, #8a998a 100%);
  box-shadow: inset -2px -2px 3px rgba(0,0,0,0.35);
}

.float-a { animation: floatA 5s ease-in-out infinite; }
.float-b { animation: floatB 6s ease-in-out infinite; }

@keyframes floatA {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-12px) rotate(2deg); }
}
@keyframes floatB {
  0%, 100% { transform: translateY(0) rotate(2deg); }
  50% { transform: translateY(-16px) rotate(-2deg); }
}

.hero-scroll-hint {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 44px;
  border: 2px solid rgba(64, 232, 80, 0.4);
  border-radius: 16px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}
.hero-scroll-hint span {
  width: 4px;
  height: 9px;
  border-radius: 3px;
  background: var(--green);
  animation: scrollHint 1.8s ease-in-out infinite;
}

@keyframes scrollHint {
  0% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(14px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* ============ TICKER ============ */

.ticker {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(64, 232, 80, 0.05);
  padding: 16px 0;
  transform: rotate(-0.6deg) scale(1.01);
}

.ticker-track {
  display: flex;
  gap: 34px;
  width: max-content;
  animation: tickerScroll 28s linear infinite;
}
.ticker:hover .ticker-track { animation-play-state: paused; }

.ticker-item {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.14em;
  color: var(--green);
  white-space: nowrap;
}
.ticker-item--gold { color: var(--gold); }
.ticker-sep { color: rgba(64, 232, 80, 0.4); font-size: 0.8rem; align-self: center; }

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

/* ============ SECTIONS ============ */

.section { position: relative; padding: 110px 28px; }

.section-inner { max-width: 1280px; margin: 0 auto; }

.section-head { text-align: center; margin-bottom: 64px; }

.section-kicker {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4.5vw, 3.4rem);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.section-title .accent {
  background: linear-gradient(120deg, var(--green), #8dffa0);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-sub {
  margin-top: 16px;
  color: var(--text-dim);
  font-size: 1.05rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ============ ABOUT ============ */

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

.about-card {
  position: relative;
  padding: 38px 30px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
.about-card:hover {
  transform: translateY(-8px);
  border-color: rgba(64, 232, 80, 0.45);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.45), 0 0 40px rgba(64, 232, 80, 0.12);
}

.about-card-glow {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(64, 232, 80, 0.18), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.about-card:hover .about-card-glow { opacity: 1; }

.about-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(64, 232, 80, 0.1);
  border: 1px solid var(--line);
  color: var(--green);
  margin-bottom: 22px;
}
.about-icon svg { width: 28px; height: 28px; }

.about-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.03em;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.about-card p { color: var(--text-dim); font-size: 0.97rem; }

.about-banner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding: 36px 30px;
  background: linear-gradient(135deg, rgba(64, 232, 80, 0.09), rgba(232, 196, 64, 0.05));
  border: 1px solid var(--line);
  border-radius: 22px;
  text-align: center;
}

.about-banner-item { display: flex; flex-direction: column; align-items: center; }
.ab-num, .ab-suffix {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--green);
  line-height: 1.1;
  display: inline;
}
.about-banner-item { flex-direction: row; flex-wrap: wrap; justify-content: center; align-items: baseline; column-gap: 2px; }
.ab-num--inf { color: var(--gold); }
.ab-label {
  width: 100%;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-top: 6px;
}

/* ============ HOW TO BUY ============ */

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 58px;
}

.step {
  position: relative;
  padding: 34px 26px 30px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.35s ease, border-color 0.35s ease;
}
.step:hover { transform: translateY(-7px); border-color: rgba(64, 232, 80, 0.5); }

.step-num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(64, 232, 80, 0.55);
  margin-bottom: 18px;
  transition: color 0.35s ease;
}
.step:hover .step-num { color: rgba(64, 232, 80, 0.9); -webkit-text-stroke-color: transparent; }

.step-body h3 {
  font-size: 1.08rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}
.step-body p { color: var(--text-dim); font-size: 0.93rem; }

.step-line {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s cubic-bezier(0.65, 0, 0.35, 1);
}
.step:hover .step-line { transform: scaleX(1); }

.howtobuy-cta {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

/* ============ CHART ============ */

.chart-frame {
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  background: var(--card);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5), 0 0 50px rgba(64, 232, 80, 0.08);
}

.chart-frame-top {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--line);
  background: rgba(4, 13, 7, 0.8);
}

.chart-dot { width: 11px; height: 11px; border-radius: 50%; }
.chart-dot--r { background: #ff5f57; }
.chart-dot--y { background: #febc2e; }
.chart-dot--g { background: var(--green); }

.chart-frame-title {
  margin-left: 12px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--text-dim);
}

.chart-frame-link {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--green);
  padding: 7px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  transition: background 0.25s, border-color 0.25s;
}
.chart-frame-link img { width: 14px; height: 14px; }
.chart-frame-link:hover { background: rgba(64, 232, 80, 0.12); border-color: var(--green); }

.chart-embed { position: relative; width: 100%; padding-bottom: 56%; }
.chart-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ============ JOIN US ============ */

.joinus-banner {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(64, 232, 80, 0.35);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55), 0 0 60px rgba(64, 232, 80, 0.15);
  margin-bottom: 54px;
}
.joinus-banner > img {
  width: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.8s ease;
}
.joinus-banner:hover > img { transform: scale(1.07); }

.joinus-banner-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 26px;
  background: linear-gradient(180deg, transparent 55%, rgba(2, 8, 4, 0.88) 100%);
}

.joinus-banner-text {
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 2.4vw, 1.6rem);
  letter-spacing: 0.16em;
  text-align: center;
  color: var(--text);
  text-shadow: 0 0 24px rgba(64, 232, 80, 0.55);
}

.socials {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.social-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 26px 28px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 20px;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
.social-card:hover {
  transform: translateY(-6px);
  border-color: rgba(64, 232, 80, 0.5);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.45), 0 0 34px rgba(64, 232, 80, 0.1);
}

.social-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(64, 232, 80, 0.09);
  border: 1px solid var(--line);
  transition: background 0.3s, transform 0.3s;
}
.social-icon img { width: 28px; height: 28px; }
.social-card:hover .social-icon { background: rgba(64, 232, 80, 0.18); transform: rotate(-6deg) scale(1.05); }

.social-info h3 {
  font-size: 1.08rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.social-info p { color: var(--text-dim); font-size: 0.9rem; }

.social-arrow {
  margin-left: auto;
  font-size: 1.4rem;
  color: var(--green);
  transition: transform 0.3s ease;
}
.social-card:hover .social-arrow { transform: translateX(6px); }

/* ============ FOOTER ============ */

.site-footer {
  border-top: 1px solid var(--line);
  background: rgba(3, 10, 5, 0.85);
  padding: 54px 28px 40px;
}

.footer-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  text-align: center;
}

.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-logo {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid var(--green);
  object-fit: cover;
}
.footer-brand > div { display: flex; flex-direction: column; text-align: left; line-height: 1.2; }
.footer-name { font-family: var(--font-display); font-size: 1rem; letter-spacing: 0.05em; }
.footer-ticker { color: var(--green); font-size: 0.78rem; letter-spacing: 0.2em; font-weight: 700; }

.footer-disclaimer {
  color: var(--text-dim);
  font-size: 0.84rem;
  max-width: 640px;
}

.footer-socials { display: flex; gap: 14px; }
.footer-socials a {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(64, 232, 80, 0.05);
  transition: border-color 0.25s, background 0.25s, transform 0.25s;
}
.footer-socials img { width: 18px; height: 18px; }
.footer-socials a:hover {
  border-color: var(--green);
  background: rgba(64, 232, 80, 0.14);
  transform: translateY(-3px);
}

.footer-copy { color: rgba(157, 191, 162, 0.55); font-size: 0.8rem; letter-spacing: 0.05em; }

/* ============ TOAST ============ */

.toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translate(-50%, 80px);
  background: var(--green);
  color: #04160a;
  font-weight: 700;
  padding: 13px 26px;
  border-radius: 12px;
  box-shadow: 0 14px 40px rgba(64, 232, 80, 0.4);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
  z-index: 200;
}
.toast.show { transform: translate(-50%, 0); opacity: 1; }

/* ============ REVEAL ANIMATIONS ============ */

.reveal, .reveal-scale {
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
.reveal { transform: translateY(36px); }
.reveal-scale { transform: scale(0.93); }

.reveal.visible, .reveal-scale.visible {
  opacity: 1;
  transform: none;
}

.d-1 { transition-delay: 0.1s; }
.d-2 { transition-delay: 0.2s; }
.d-3 { transition-delay: 0.3s; }
.d-4 { transition-delay: 0.4s; }
.d-5 { transition-delay: 0.5s; }
.d-6 { transition-delay: 0.6s; }

/* ============ RESPONSIVE ============ */

@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 54px; text-align: center; }
  .hero-copy { display: flex; flex-direction: column; align-items: center; }
  .hero-tagline { margin-left: auto; margin-right: auto; }
  .hero-visual { order: -1; margin-top: 10px; }
  .about-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .about-banner { grid-template-columns: repeat(2, 1fr); row-gap: 30px; }
}

@media (max-width: 760px) {
  .main-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(3, 10, 5, 0.97);
    border-bottom: 1px solid var(--line);
    padding: 18px 24px 26px;
    gap: 4px;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  .main-nav.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-link { padding: 13px 14px; font-size: 1rem; }
  .nav-toggle { display: flex; }
  .header-actions .btn { display: none; }

  .socials { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .section { padding: 80px 20px; }
  .hero { padding-left: 20px; padding-right: 20px; }
  .hero-chip--tl { left: 0; }
  .hero-chip--br { right: 0; }
  .contract-bar { width: 100%; }
  .stat-divider { display: none; }
  .hero-stats { justify-content: center; }
  .chart-embed { padding-bottom: 130%; }
  .chart-frame-title { display: none; }
}

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