/* ════════════════════════════════════════
   LA JUGADA — World-class landing page
   ════════════════════════════════════════ */

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

/* ── TOKENS ── */
:root {
  --bg:       #02040f;
  --bg-card:  rgba(255,255,255,0.04);
  --bg-dark:  #060c1e;
  --green:    #00e676;
  --green-dk: #00c45e;
  --green-gl: rgba(0,230,118,0.25);
  --gold:     #FFD60A;
  --gold-gl:  rgba(255,214,10,0.25);
  --purple:   #7c3aed;
  --blue:     #3b82f6;
  --white:    #ffffff;
  --muted:    rgba(255,255,255,0.55);
  --border:   rgba(255,255,255,0.08);
  --r:        20px;
  --r-sm:     12px;
  --font-d:   'Bebas Neue', sans-serif;
  --font-h:   'Montserrat', sans-serif;
  --font-b:   'Inter', sans-serif;
}

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

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--green); border-radius: 3px; }

/* ── GLOBAL LAYERS ── */
#bgCanvas {
  position: fixed; inset: 0;
  z-index: 0; pointer-events: none;
  opacity: 0.6;
}

.noise-overlay {
  position: fixed; inset: 0;
  z-index: 1; pointer-events: none;
  opacity: 0.04;
  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");
  background-size: 180px;
}

.mesh {
  position: fixed; inset: 0;
  z-index: 0; pointer-events: none;
  overflow: hidden;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  animation: blobDrift ease-in-out infinite;
}
.b1 { width: 700px; height: 700px; background: radial-gradient(circle, rgba(0,230,118,0.22), transparent 70%); top: -200px; left: -150px; animation-duration: 22s; }
.b2 { width: 550px; height: 550px; background: radial-gradient(circle, rgba(124,58,237,0.18), transparent 70%); top: 40%; right: -180px; animation-duration: 28s; animation-delay: -10s; }
.b3 { width: 450px; height: 450px; background: radial-gradient(circle, rgba(255,214,10,0.12), transparent 70%); bottom: 15%; left: 25%; animation-duration: 19s; animation-delay: -6s; }
.b4 { width: 380px; height: 380px; background: radial-gradient(circle, rgba(59,130,246,0.15), transparent 70%); bottom: -100px; right: 15%; animation-duration: 24s; animation-delay: -14s; }

@keyframes blobDrift {
  0%,100% { transform: translate(0,0) scale(1); }
  25%      { transform: translate(40px,-50px) scale(1.08); }
  50%      { transform: translate(-25px,35px) scale(0.94); }
  75%      { transform: translate(30px,25px) scale(1.04); }
}

/* ── UTILITIES ── */
.container { max-width: 1220px; margin: 0 auto; padding: 0 28px; }
.section    { padding: 110px 0; position: relative; z-index: 2; }
.dark-s     { background: var(--bg-dark); }

.green  { color: var(--green); }
.gold   { color: var(--gold); }
.up     { color: var(--green); font-weight: 700; }
.dn     { color: #ff4757; font-weight: 700; }

/* ── GLASSMORPHISM BASE ── */
.gc {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r);
  position: relative;
  overflow: hidden;
}

.gc-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.07) 0%, transparent 55%);
  pointer-events: none;
  border-radius: inherit;
}

/* ── NAVBAR ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: all 0.35s ease;
}
.nav.scrolled {
  background: rgba(2,4,15,0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 40px;
}

.logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; flex-shrink: 0;
}
.logo-ball {
  width: 32px; height: 32px;
  color: var(--green);
  animation: ballSpin 12s linear infinite;
}
@keyframes ballSpin { to { transform: rotate(360deg); } }

.logo-text {
  font-family: var(--font-h); font-size: 1.4rem; font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
}
.logo-text strong { color: var(--green); font-weight: 900; }

.nav-menu {
  display: flex; list-style: none; gap: 36px; margin-left: auto;
}
.nav-menu a {
  color: var(--muted); font-size: 0.875rem; font-weight: 500;
  text-decoration: none; transition: color 0.2s;
  letter-spacing: 0.01em;
}
.nav-menu a:hover { color: var(--white); }

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

.nav-ghost {
  color: var(--muted); font-size: 0.875rem; font-weight: 500;
  text-decoration: none; padding: 8px 16px;
  transition: color 0.2s;
}
.nav-ghost:hover { color: var(--white); }

.nav-cta {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--green); color: #02040f;
  font-family: var(--font-h); font-size: 0.875rem; font-weight: 800;
  text-decoration: none; padding: 10px 22px;
  border-radius: 50px;
  transition: all 0.25s ease;
  box-shadow: 0 0 20px var(--green-gl);
}
.nav-cta:hover {
  background: var(--green-dk);
  transform: translateY(-1px);
  box-shadow: 0 0 35px var(--green-gl);
}

.menu-btn {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
  margin-left: auto;
}
.menu-btn span {
  display: block; width: 22px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: all 0.3s;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
  padding-top: 80px;
}

.spotlight {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,230,118,0.06) 0%, transparent 70%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: transform 0.08s linear;
  z-index: 1;
}

.hero-inner {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 60px 28px 20px;
  position: relative;
  z-index: 2;
  max-width: 1220px;
  margin: 0 auto;
  width: 100%;
}

/* Hero Copy */
.hero-copy { flex: 1; min-width: 300px; max-width: 580px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,230,118,0.1);
  border: 1px solid rgba(0,230,118,0.25);
  color: var(--green);
  padding: 7px 16px; border-radius: 50px;
  font-family: var(--font-h); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  margin-bottom: 28px;
}
.badge-pulse {
  width: 7px; height: 7px; background: var(--green);
  border-radius: 50%;
  animation: pls 2s ease-in-out infinite;
}
@keyframes pls {
  0%,100% { opacity:1; transform:scale(1); box-shadow: 0 0 0 0 var(--green-gl); }
  50%      { opacity:0.6; transform:scale(0.8); box-shadow: 0 0 0 6px transparent; }
}

.hero-h1 {
  font-family: var(--font-d);
  font-size: clamp(4.5rem, 9vw, 8.5rem);
  line-height: 0.95;
  letter-spacing: 0.03em;
  margin-bottom: 28px;
  display: flex; flex-direction: column; gap: 4px;
}
.hh {
  display: block;
  opacity: 0;
  transform: translateY(40px);
  animation: slideUp 0.7s cubic-bezier(0.16,1,0.3,1) forwards;
}
.hh:nth-child(1) { animation-delay: 0.1s; }
.hh:nth-child(2) { animation-delay: 0.22s; }
.hh:nth-child(3) { animation-delay: 0.34s; }

.hh-glow {
  background: linear-gradient(90deg, var(--green) 0%, var(--gold) 50%, var(--green) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: slideUp 0.7s cubic-bezier(0.16,1,0.3,1) 0.34s forwards,
             gradientShift 4s linear 1s infinite;
}
@keyframes gradientShift { to { background-position: 200% center; } }
@keyframes slideUp {
  to { opacity: 1; transform: translateY(0); }
}

.hero-desc {
  color: var(--muted); font-size: 1.1rem; line-height: 1.75;
  margin-bottom: 36px; max-width: 490px;
  opacity: 0; animation: slideUp 0.7s ease 0.5s forwards;
}

.hero-btns {
  display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 44px;
  opacity: 0; animation: slideUp 0.7s ease 0.6s forwards;
}

/* Glowing button */
.btn-glow {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--green); color: #02040f;
  font-family: var(--font-h); font-size: 1rem; font-weight: 800;
  text-decoration: none; padding: 16px 34px;
  border-radius: 60px; border: none; cursor: pointer;
  box-shadow: 0 0 30px var(--green-gl), 0 4px 20px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
  letter-spacing: 0.01em;
}
.btn-glow:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 60px var(--green-gl), 0 8px 40px rgba(0,0,0,0.4);
  background: var(--green-dk);
}
.btn-glow .shine {
  position: absolute; top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.45), transparent);
  transform: skewX(-20deg);
  animation: shine 3.5s ease-in-out infinite;
}
@keyframes shine {
  0%    { left: -100%; }
  40%,100% { left: 150%; }
}
.btn-glow-xl { font-size: 1.1rem; padding: 20px 44px; }

.btn-ghost-outline {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--muted); font-family: var(--font-h); font-size: 0.95rem; font-weight: 600;
  text-decoration: none; padding: 16px 28px;
  border-radius: 60px;
  border: 1px solid rgba(255,255,255,0.15);
  transition: all 0.25s ease;
}
.btn-ghost-outline:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.04);
}

.hero-trust {
  display: flex; align-items: center; gap: 16px;
  opacity: 0; animation: slideUp 0.7s ease 0.75s forwards;
}
.avatars { display: flex; }
.av {
  width: 34px; height: 34px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; margin-left: -8px; border: 2px solid var(--bg);
}
.av:first-child { margin-left: 0; }
.hero-trust p { color: var(--muted); font-size: 0.875rem; }
.hero-trust strong { color: var(--white); }

/* Hero visual */
.hero-visual {
  flex: 1; min-width: 280px; max-width: 480px;
  display: flex; justify-content: center; align-items: center;
}

.cards-scene {
  position: relative;
  width: 440px; height: 500px;
}

/* Glassmorphism Cards */
.card-main {
  position: absolute;
  width: 340px; padding: 24px;
  top: 60px; left: 0; z-index: 3;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.08);
  animation: floatA 6s ease-in-out infinite;
  transition: transform 0.15s ease;
}
@keyframes floatA {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-14px); }
}

.card-lb {
  position: absolute;
  width: 210px; padding: 18px;
  top: 0; right: 0; z-index: 2;
  transform: rotate(2.5deg);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  animation: floatB 7s ease-in-out infinite;
  transition: transform 0.15s ease;
}
@keyframes floatB {
  0%,100% { transform: rotate(2.5deg) translateY(0); }
  50%      { transform: rotate(2.5deg) translateY(-10px); }
}

.card-pill {
  position: absolute;
  display: flex; align-items: center; gap: 12px;
  padding: 14px 18px;
  border-radius: 50px !important;
  box-shadow: 0 10px 40px rgba(0,0,0,0.4);
  animation: floatC 5s ease-in-out infinite;
  transition: transform 0.15s ease;
  white-space: nowrap;
}
@keyframes floatC {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

.card-prize {
  top: 10px; left: 10px; z-index: 4;
  animation-delay: -2s;
  border-color: rgba(255,214,10,0.3) !important;
  background: rgba(255,214,10,0.08) !important;
}
.card-goal {
  bottom: 10px; right: 0; z-index: 4;
  animation-delay: -1s;
  border-color: rgba(0,230,118,0.25) !important;
}

.pill-emoji { font-size: 1.4rem; }
.pill-text { display: flex; flex-direction: column; }
.pill-text strong { font-family: var(--font-h); font-size: 0.8rem; font-weight: 700; }
.pill-text small  { color: var(--muted); font-size: 0.7rem; }

.scene-orb {
  position: absolute;
  width: 200px; height: 200px;
  bottom: 20px; left: 20px; z-index: 1;
  background: radial-gradient(circle, rgba(0,230,118,0.15), transparent 70%);
  filter: blur(30px);
  border-radius: 50%;
  animation: orbPulse 4s ease-in-out infinite;
}
@keyframes orbPulse {
  0%,100% { opacity:0.5; transform:scale(1); }
  50%      { opacity:1; transform:scale(1.3); }
}

.spin-ball { animation: spinEmoji 3s linear infinite; display: inline-block; }
@keyframes spinEmoji { to { transform: rotate(360deg); } }

/* Card internals */
.card-header-row {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 20px;
}
.live-pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,71,87,0.15); border: 1px solid rgba(255,71,87,0.3);
  color: #ff4757; padding: 4px 12px; border-radius: 50px;
  font-family: var(--font-h); font-size: 0.7rem; font-weight: 800;
  letter-spacing: 0.05em;
}
.live-dot {
  width: 6px; height: 6px; background: #ff4757;
  border-radius: 50%; animation: pls 1.2s infinite;
}
.round-label { color: var(--muted); font-size: 0.75rem; font-weight: 500; }

.match-view {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 20px; gap: 8px;
}
.mv-team { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.team-flag-big { font-size: 2.4rem; line-height: 1; }
.team-name-label { font-family: var(--font-h); font-size: 0.72rem; font-weight: 700; color: var(--muted); }
.mv-center { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.score-display { display: flex; align-items: center; gap: 10px; }
.score-d {
  font-family: var(--font-d);
  font-size: 3rem; line-height: 1; color: var(--white);
  text-shadow: 0 0 20px var(--green-gl);
}
.score-dash { font-family: var(--font-d); font-size: 1.8rem; color: var(--muted); }
.match-progress {
  width: 80px; height: 3px; background: rgba(255,255,255,0.1);
  border-radius: 2px; overflow: hidden;
}
.mp-fill { height: 100%; background: var(--green); border-radius: 2px; }

.pred-band {
  background: rgba(0,230,118,0.08);
  border: 1px solid rgba(0,230,118,0.2);
  border-radius: 10px; padding: 12px 14px;
}
.pred-label-row {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.75rem; color: var(--muted); margin-bottom: 6px;
}
.pred-check { color: var(--green); font-weight: 700; }
.pts-earned {
  font-family: var(--font-h); font-size: 0.85rem; font-weight: 800;
  color: var(--green);
}

/* Leaderboard card internals */
.lb-head {
  font-family: var(--font-h); font-size: 0.8rem; font-weight: 800;
  color: var(--gold); margin-bottom: 12px;
  letter-spacing: 0.02em;
}
.lb-list { display: flex; flex-direction: column; gap: 8px; }
.lb-item {
  display: grid; grid-template-columns: 24px 1fr auto;
  align-items: center; gap: 8px;
  font-size: 0.78rem; padding: 6px 8px;
  border-radius: 8px;
  transition: background 0.2s;
}
.lb-item:hover { background: rgba(255,255,255,0.05); }
.lb-you { background: rgba(0,230,118,0.08); border: 1px solid rgba(0,230,118,0.15); }
.lb-medal { font-size: 0.85rem; }
.lb-n { color: var(--white); font-weight: 500; }
.lb-p { font-family: var(--font-h); font-weight: 800; color: var(--green); font-size: 0.8rem; }

/* ── STATS BAR ── */
.stats-bar {
  position: relative; z-index: 2;
  border-top: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
  backdrop-filter: blur(10px);
}
.stats-inner {
  display: flex; align-items: center; gap: 32px;
  flex-wrap: wrap; padding: 20px 28px;
}
.stat-item {
  display: flex; flex-direction: column; gap: 3px;
}
.stat-item strong {
  font-family: var(--font-h); font-size: 1.4rem; font-weight: 900;
  color: var(--white);
  display: flex; align-items: baseline; gap: 2px;
}
.stat-item span { color: var(--muted); font-size: 0.78rem; }
.stat-sep { color: rgba(255,255,255,0.2); font-size: 1.2rem; }

/* ── STADIUM ── */
.stadium-svg {
  position: absolute; bottom: 0; left: 0; right: 0;
  z-index: 1; pointer-events: none;
}
.stadium-svg svg { display: block; width: 100%; }

/* ── MARQUEE ── */
.marquee-section {
  position: relative; z-index: 2;
  background: rgba(255,255,255,0.025);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
  overflow: hidden;
}
.marquee-track { overflow: hidden; white-space: nowrap; }
.marquee-content {
  display: inline-flex; align-items: center; gap: 28px;
  font-family: var(--font-h); font-size: 0.95rem; font-weight: 600;
  color: rgba(255,255,255,0.5);
  animation: marqueeScroll 35s linear infinite;
  padding-right: 28px;
}
.marquee-content span { flex-shrink: 0; }
.msep { color: var(--green); font-size: 0.5rem; }
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee-fade {
  position: absolute; top: 0; bottom: 0; width: 120px; z-index: 1; pointer-events: none;
}
.marquee-fade.left  { left: 0; background: linear-gradient(90deg, var(--bg), transparent); }
.marquee-fade.right { right: 0; background: linear-gradient(-90deg, var(--bg), transparent); }

/* ── SECTION HEADERS ── */
.sh { text-align: center; margin-bottom: 72px; }
.sh-tag {
  display: inline-block;
  background: rgba(0,230,118,0.1);
  border: 1px solid rgba(0,230,118,0.25);
  color: var(--green); padding: 6px 16px;
  border-radius: 50px;
  font-family: var(--font-h); font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 18px;
}
.sh-title {
  font-family: var(--font-h);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 900; line-height: 1.15; margin-bottom: 16px;
}
.sh-title em { font-style: italic; color: var(--green); }
.sh-sub { color: var(--muted); font-size: 1rem; max-width: 520px; margin: 0 auto; }

/* ── STEPS ── */
.steps-row {
  display: flex; align-items: flex-start; gap: 16px; flex-wrap: wrap;
  justify-content: center;
}
.step-card {
  flex: 1; min-width: 260px; max-width: 320px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--r); padding: 36px 28px;
  position: relative; overflow: hidden;
  transition: all 0.35s cubic-bezier(0.16,1,0.3,1);
}
.step-card::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--green), var(--gold));
  opacity: 0; transition: opacity 0.3s;
}
.step-card:hover {
  border-color: rgba(0,230,118,0.25);
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.3), 0 0 0 1px rgba(0,230,118,0.1);
}
.step-card:hover::after { opacity: 1; }

.step-num-bg {
  position: absolute; top: 16px; right: 20px;
  font-family: var(--font-d); font-size: 5rem; line-height: 1;
  color: rgba(255,255,255,0.035);
}
.step-icon-box { font-size: 2.6rem; margin-bottom: 16px; }
.step-card h3 {
  font-family: var(--font-h); font-size: 1.15rem; font-weight: 800;
  margin-bottom: 10px; line-height: 1.3;
}
.step-card p { color: var(--muted); font-size: 0.9rem; line-height: 1.65; margin-bottom: 20px; }
.chips { display: flex; gap: 8px; flex-wrap: wrap; }
.chip {
  background: rgba(0,230,118,0.08); color: var(--green);
  border: 1px solid rgba(0,230,118,0.2);
  padding: 4px 12px; border-radius: 50px;
  font-size: 0.72rem; font-weight: 700;
}
.step-arrow {
  flex-shrink: 0; width: 60px;
  margin-top: 90px; color: var(--green); opacity: 0.6;
}
.step-arrow svg { width: 100%; }

/* ── FEATURES ── */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}
.feat-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--r); padding: 28px;
  position: relative; overflow: hidden;
  transition: all 0.3s cubic-bezier(0.16,1,0.3,1);
}
.feat-card:hover {
  border-color: rgba(0,230,118,0.2);
  transform: translateY(-6px);
  background: rgba(0,230,118,0.04);
}
.feat-big {
  grid-column: span 2;
  padding: 36px;
}
.feat-big.feat-right { }

.feat-highlighted {
  background: linear-gradient(135deg, rgba(0,230,118,0.1), rgba(255,214,10,0.04));
  border-color: rgba(0,230,118,0.25);
}

.feat-bg-word {
  position: absolute; bottom: -10px; right: 10px;
  font-family: var(--font-d); font-size: 6rem; line-height: 1;
  color: rgba(255,255,255,0.03);
  user-select: none; pointer-events: none;
}
.feat-icon-lg { font-size: 2.2rem; margin-bottom: 14px; }
.feat-card h3 {
  font-family: var(--font-h); font-size: 1rem; font-weight: 800;
  margin-bottom: 8px;
}
.feat-card p { color: var(--muted); font-size: 0.875rem; line-height: 1.6; }
.feat-arrow {
  display: inline-block; margin-top: 16px;
  color: var(--green); font-size: 1.2rem; font-weight: 700;
  transition: transform 0.2s;
}
.feat-card:hover .feat-arrow { transform: translateX(6px); }

/* ── ORGANIZERS ── */
.orga-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.orga-desc { color: var(--muted); font-size: 1.05rem; line-height: 1.7; margin-bottom: 36px; }
.use-cases { display: flex; flex-direction: column; gap: 16px; }
.uc {
  display: flex; gap: 16px; align-items: flex-start;
  background: rgba(255,255,255,0.03); border: 1px solid var(--border);
  border-radius: var(--r-sm); padding: 18px;
  transition: all 0.25s;
}
.uc:hover { border-color: rgba(0,230,118,0.2); background: rgba(0,230,118,0.03); }
.uc-icon { font-size: 1.8rem; flex-shrink: 0; }
.uc strong { font-family: var(--font-h); font-size: 0.9rem; font-weight: 800; display: block; margin-bottom: 4px; }
.uc p { color: var(--muted); font-size: 0.82rem; margin: 0; }

/* Dashboard card */
.dash-card { padding: 0; }
.dc-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 22px;
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.03);
}
.dc-title { display: flex; align-items: center; gap: 10px; font-family: var(--font-h); font-size: 0.85rem; font-weight: 700; }
.dc-kpis { display: grid; grid-template-columns: repeat(3,1fr); border-bottom: 1px solid var(--border); }
.kpi-box { padding: 20px; text-align: center; border-right: 1px solid var(--border); }
.kpi-box:last-child { border-right: none; }
.kpi-n { display: block; font-family: var(--font-h); font-size: 1.8rem; font-weight: 900; }
.kpi-n.green { color: var(--green); }
.kpi-n.gold { color: var(--gold); }
.kpi-l { display: block; color: var(--muted); font-size: 0.72rem; margin-top: 4px; }
.dc-table { padding: 16px 20px; }
.dt-head {
  display: grid; grid-template-columns: 28px 1fr 50px 50px;
  font-size: 0.72rem; font-weight: 700; color: var(--muted);
  padding: 6px 0; border-bottom: 1px solid var(--border);
  margin-bottom: 4px; letter-spacing: 0.04em;
}
.dt-row {
  display: grid; grid-template-columns: 28px 1fr 50px 50px;
  align-items: center; padding: 9px 0; font-size: 0.82rem;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  gap: 4px;
}
.dt-row:last-child { border-bottom: none; }
.dc-btn {
  display: block; width: calc(100% - 40px); margin: 0 20px 20px;
  padding: 12px; background: var(--green); color: #02040f;
  border: none; border-radius: var(--r-sm);
  font-family: var(--font-h); font-size: 0.82rem; font-weight: 800;
  cursor: pointer; transition: all 0.25s;
}
.dc-btn:hover { background: var(--green-dk); transform: translateY(-1px); }

/* ── PRICING ── */
.plans-row {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; align-items: center;
}
.plan-card {
  background: rgba(255,255,255,0.03); border: 1px solid var(--border);
  border-radius: var(--r); padding: 36px 28px; text-align: center;
  position: relative; transition: all 0.35s cubic-bezier(0.16,1,0.3,1);
}
.plan-card:hover { border-color: rgba(0,230,118,0.3); transform: translateY(-8px); }

.plan-pro {
  background: linear-gradient(160deg, rgba(0,230,118,0.1), rgba(255,214,10,0.04));
  border-color: rgba(0,230,118,0.4);
  transform: scale(1.04);
  box-shadow: 0 0 60px rgba(0,230,118,0.1);
}
.plan-pro:hover { transform: scale(1.04) translateY(-8px); }

.plan-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--green); color: #02040f;
  padding: 4px 16px; border-radius: 50px;
  font-family: var(--font-h); font-size: 0.72rem; font-weight: 800;
  white-space: nowrap; letter-spacing: 0.02em;
}

.plan-icon { font-size: 2.4rem; margin-bottom: 10px; }
.plan-name { font-family: var(--font-h); font-size: 1.2rem; font-weight: 800; margin-bottom: 16px; }
.plan-price {
  display: flex; align-items: flex-end; justify-content: center; gap: 3px;
  margin-bottom: 12px;
}
.pp-cur { font-size: 1.1rem; font-weight: 700; color: var(--green); padding-bottom: 4px; }
.pp-val { font-family: var(--font-h); font-size: 2rem; font-weight: 900; }
.pp-mo { color: var(--muted); font-size: 0.85rem; padding-bottom: 5px; }
.plan-desc { color: var(--muted); font-size: 0.82rem; margin-bottom: 24px; min-height: 44px; }
.plan-feats { list-style: none; text-align: left; margin-bottom: 28px; display: flex; flex-direction: column; gap: 9px; }
.plan-feats li { font-size: 0.85rem; display: flex; align-items: center; gap: 8px; }
.plan-feats li::before { content: ''; width: 16px; height: 16px; flex-shrink: 0; border-radius: 50%; }
.plan-feats li.y { color: var(--white); }
.plan-feats li.y::before { content: '✓'; color: var(--green); font-weight: 700; font-size: 0.8rem; display: flex; align-items: center; justify-content: center; background: rgba(0,230,118,0.15); }
.plan-feats li.n { color: rgba(255,255,255,0.3); }
.plan-feats li.n::before { content: '✕'; color: rgba(255,255,255,0.2); font-size: 0.8rem; display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,0.05); }

.plan-btn {
  display: block; text-decoration: none; text-align: center;
  font-family: var(--font-h); font-size: 0.9rem; font-weight: 800;
  padding: 14px; border-radius: 50px;
  transition: all 0.25s ease;
}
.plan-ghost {
  color: var(--white); border: 1px solid rgba(255,255,255,0.2);
  background: transparent;
}
.plan-ghost:hover { border-color: var(--green); color: var(--green); }
.plan-primary {
  position: relative; overflow: hidden;
  background: var(--green); color: #02040f;
  box-shadow: 0 0 30px var(--green-gl);
}
.plan-primary:hover { background: var(--green-dk); transform: translateY(-2px); box-shadow: 0 0 50px var(--green-gl); }

/* ── CTA FINAL ── */
.cta-final {
  position: relative; padding: 140px 0;
  overflow: hidden; text-align: center;
  background: radial-gradient(ellipse at center, rgba(0,230,118,0.07) 0%, transparent 70%);
  z-index: 2;
}
.cta-orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px); pointer-events: none;
}
.cta-orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,230,118,0.15), transparent);
  top: -100px; left: -150px;
}
.cta-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,214,10,0.1), transparent);
  bottom: -80px; right: -100px;
}

/* Field decoration */
.cta-field {
  position: absolute; inset: 0; pointer-events: none; opacity: 0.04;
}
.cf-center-circle {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 300px; height: 300px; border-radius: 50%;
  border: 2px solid var(--white);
}
.cf-center-line {
  position: absolute; top: 0; bottom: 0; left: 50%;
  width: 2px; background: var(--white);
}

.cta-content { position: relative; z-index: 2; max-width: 680px; margin: 0 auto; }

.cta-ball-wrap {
  position: relative; display: inline-block; margin-bottom: 28px;
}
.cta-ball { font-size: 5rem; display: inline-block; animation: ctaBallSpin 8s linear infinite; }
@keyframes ctaBallSpin { to { transform: rotate(360deg); } }
.cta-ball-orbit {
  position: absolute; inset: -20px; border-radius: 50%;
  border: 1px dashed rgba(0,230,118,0.3);
  animation: orbitSpin 6s linear infinite reverse;
}
@keyframes orbitSpin { to { transform: rotate(360deg); } }

.cta-h2 {
  font-family: var(--font-d);
  font-size: clamp(3rem,6vw,5.5rem);
  line-height: 1; margin-bottom: 20px;
}
.cta-gradient {
  background: linear-gradient(90deg, var(--green), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cta-p { color: var(--muted); font-size: 1.1rem; margin-bottom: 44px; line-height: 1.7; }
.cta-btns { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; margin-bottom: 24px; }
.btn-gold-xl {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--gold); color: #02040f;
  font-family: var(--font-h); font-size: 1.1rem; font-weight: 800;
  text-decoration: none; padding: 20px 40px; border-radius: 60px;
  box-shadow: 0 0 30px var(--gold-gl);
  transition: all 0.3s ease;
}
.btn-gold-xl:hover {
  background: #e6c200; transform: translateY(-3px);
  box-shadow: 0 0 60px var(--gold-gl);
}
.cta-token { color: var(--muted); font-size: 0.9rem; }
.cta-token a { color: var(--green); text-decoration: none; font-weight: 600; }
.cta-token a:hover { text-decoration: underline; }

/* ── FOOTER ── */
.footer {
  background: rgba(255,255,255,0.02);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
  position: relative; z-index: 2;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}
.footer-brand p { color: var(--muted); font-size: 0.88rem; margin-top: 16px; max-width: 240px; line-height: 1.65; }
.footer-col h4 {
  font-family: var(--font-h); font-size: 0.78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  margin-bottom: 16px; color: var(--white);
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: var(--muted); text-decoration: none; font-size: 0.88rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--green); }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  color: rgba(255,255,255,0.3); font-size: 0.8rem; flex-wrap: wrap; gap: 12px;
}

/* ── REVEAL ANIMATIONS ── */
[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1),
              transform 0.7s cubic-bezier(0.16,1,0.3,1);
}
[data-reveal].visible {
  opacity: 1; transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .feat-grid { grid-template-columns: repeat(2,1fr); }
  .feat-big { grid-column: span 2; }
  .feat-big.feat-right { grid-column: span 2; }
  .plans-row { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .plan-pro { transform: scale(1); }
  .plan-pro:hover { transform: translateY(-8px); }
  .orga-layout { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .hero-inner { flex-direction: column; padding-top: 40px; text-align: center; }
  .hero-copy { max-width: 100%; }
  .hero-btns { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-visual { max-width: 380px; }
  .cards-scene { width: 360px; height: 420px; transform: scale(0.9); transform-origin: top center; }
  .nav-menu { display: none; }
  .nav-actions { display: none; }
  .menu-btn { display: flex; }
}

@media (max-width: 680px) {
  .hero-h1 { font-size: clamp(3.5rem, 12vw, 5rem); }
  .step-arrow { display: none; }
  .steps-row { flex-direction: column; align-items: center; }
  .feat-grid { grid-template-columns: 1fr; }
  .feat-big { grid-column: span 1; }
  .stats-inner { gap: 20px; justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cta-btns { flex-direction: column; align-items: center; }
  .cards-scene { width: 300px; height: 360px; transform: scale(0.85); }
}

@media (min-width: 901px) {
  .nav-menu.mobile-open { display: flex; }
}
