.hero {
  padding: 90px 0 60px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  width: 620px; height: 620px;
  background: radial-gradient(circle, rgba(212,175,55,0.14), transparent 70%);
  top: -220px; right: -160px;
  pointer-events: none;
  animation: heroGlow 8s ease-in-out infinite;
}
@keyframes heroGlow {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.08); }
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
.hero h1 {
  font-size: 3.4rem;
  margin-bottom: 22px;
}
.hero p.lead {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 34px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-ticker {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 12px 20px; border-radius: 999px;
  background: var(--bg-card); border: 1px solid var(--border-bright);
  font-family: var(--font-mono);
}
.hero-ticker .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--up); box-shadow: 0 0 10px var(--up); animation: pulse 1.6s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

.hero-visual {
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.hero-visual img {
  width: 100%; max-width: 380px;
  filter: drop-shadow(0 20px 60px rgba(212,175,55,0.25));
  animation: float 5s ease-in-out infinite;
}
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.feature-card:hover { transform: translateY(-6px); border-color: var(--border-bright); }
.feature-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: linear-gradient(135deg, rgba(212,175,55,0.18), rgba(212,175,55,0.05));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 18px;
}
.feature-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.feature-card p { color: var(--text-muted); font-size: 0.92rem; }

.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}
.how-step { position: relative; padding-left: 4px; }
.how-step .step-num {
  font-family: var(--font-mono);
  color: var(--gold);
  font-size: 0.85rem;
  display: block;
  margin-bottom: 12px;
}
.how-step h3 { margin-bottom: 8px; font-size: 1.05rem; }
.how-step p { color: var(--text-muted); font-size: 0.9rem; }

.cta-band {
  text-align: center;
  background: linear-gradient(135deg, rgba(212,175,55,0.1), rgba(212,175,55,0.02));
  border: 1px solid var(--border-bright);
  border-radius: var(--radius-lg);
  padding: 64px 32px;
}
.cta-band h2 { font-size: 2rem; margin-bottom: 14px; }
.cta-band p { color: var(--text-muted); margin-bottom: 30px; }

.section-header { text-align: center; max-width: 560px; margin: 0 auto 20px; }
.section-header h2 { font-size: 2.1rem; margin-bottom: 14px; }
.section-header p { color: var(--text-muted); }
