/* hero.css — animated hero section */

.hero {
  position: relative;
  padding: 120px 0 var(--space-88);
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

/* Mesh background */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(255,215,0,.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 10% 60%, rgba(0,255,136,.06) 0%, transparent 50%),
    radial-gradient(ellipse 60% 50% at 90% 80%, rgba(79,195,247,.05) 0%, transparent 50%);
  pointer-events: none;
}

/* Grain overlay */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.04'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.4;
}

.hero .container { position: relative; z-index: 2; }

.hero-inner {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: var(--space-8);
  padding: var(--space-6) var(--space-16);
  background: var(--brand-soft);
  border: 1px solid var(--line-gold);
  border-radius: var(--pill);
  font-size: var(--fs-kicker);
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: var(--space-28);
}
.hero-kicker-dot {
  width: 6px; height: 6px;
  border-radius: var(--pill);
  background: var(--brand);
  animation: pulse-dot 1.8s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(.7); }
}

.hero h1 {
  margin-bottom: var(--space-20);
  color: var(--white);
}

.hero-gold { color: var(--brand); }

.hero-sub {
  font-size: var(--fs-subhead);
  color: var(--ink-2);
  max-width: 56ch;
  margin: 0 auto var(--space-40);
  line-height: var(--lh-prose);
}

.hero-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-16);
  flex-wrap: wrap;
  margin-bottom: var(--space-48);
}

/* CTA pulse animation */
.btn-pulse {
  animation: btn-pulse 2.5s ease-in-out infinite;
}
@keyframes btn-pulse {
  0%, 100% { box-shadow: var(--shadow-brand); }
  50% { box-shadow: 0 0 0 8px rgba(255,215,0,.15), var(--shadow-brand-hover); }
}

.hero-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-12);
  flex-wrap: wrap;
}

.hero-logos-label {
  font-size: var(--fs-sm);
  color: var(--ink-3);
  margin-right: var(--space-4);
}

.hero-logo-chip {
  display: inline-flex;
  align-items: center;
  padding: var(--space-6) var(--space-14);
  background: var(--bg-glass);
  border: 1px solid var(--line);
  border-radius: var(--pill);
  font-size: var(--fs-caption);
  font-weight: var(--fw-bold);
  color: var(--ink-2);
  letter-spacing: 0.02em;
  backdrop-filter: blur(8px);
  text-decoration: none;
}

/* Floating coins canvas */
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

/* Floating coin elements */
.coin {
  position: absolute;
  width: 20px; height: 20px;
  border-radius: var(--pill);
  background: var(--brand);
  opacity: 0;
  animation: float-coin 6s ease-in-out infinite;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #080c18;
  font-weight: var(--fw-bold);
  box-shadow: 0 0 12px rgba(255,215,0,.5);
}

@keyframes float-coin {
  0% { opacity: 0; transform: translateY(0) rotate(0deg); }
  10% { opacity: .7; }
  90% { opacity: .3; }
  100% { opacity: 0; transform: translateY(-120px) rotate(360deg); }
}

@media (max-width: 720px) {
  .hero { padding: var(--space-88) 0 var(--space-56); min-height: auto; }
  .hero-sub { font-size: var(--fs-body); }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
}
