/* ═══════════════════════════════════════════════════════════════
   HERO.CSS — Hero Section
   From merchant.html layout with pure green #00ff00
   ═══════════════════════════════════════════════════════════════ */

/* ── Hero Section ── */
.hero {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 120px 40px 80px;
    position: relative;
    z-index: 10;
    overflow: hidden;
}

/* ── Hero Badge ── */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,0,255,0.1);
    border: 1px solid rgba(255,0,255,0.3);
    padding: 8px 20px;
    font-size: 0.75rem;
    font-family: var(--font-mono);
    color: var(--neon-magenta);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 32px;
    animation: fadeInDown 0.8s ease forwards;
}

.hero-badge svg {
    width: 16px;
    height: 16px;
}

.hero-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--neon-magenta);
    border-radius: 50%;
    box-shadow: var(--glow-magenta);
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50%      { opacity: 0.4; }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ── Hero Title ── */
.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    opacity: 0;
    animation: heroReveal 1s ease 0.3s forwards;
}

.hero-title .highlight {
    color: var(--neon);
    text-shadow: var(--glow-neon-text);
}

.hero-title .neon {
    color: var(--neon);
    text-shadow: var(--glow-neon-intense);
    display: block;
}

.hero-title .sub {
    font-size: 0.35em;
    color: rgba(255,255,255,0.6);
    letter-spacing: 0.3em;
    display: block;
    margin-top: 16px;
    text-shadow: none;
}

@keyframes heroReveal {
    from { opacity: 0; transform: translateY(50px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ── Hero Tagline ── */
.hero-tagline {
    font-family: var(--font-mono);
    font-size: clamp(1rem, 3vw, 1.3rem);
    color: var(--neon-cyan);
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.6s forwards;
    text-shadow: var(--glow-cyan);
}

/* ── Hero Description ── */
.hero-desc {
    max-width: 700px;
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 40px;
    line-height: 1.8;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.8s forwards;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ── Hero Stats ── */
.hero-stats {
    display: flex;
    gap: 48px;
    margin-bottom: 48px;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-stat {
    text-align: center;
}

.hero-stat-value {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--neon);
    text-shadow: var(--glow-neon-text);
}

.hero-stat-label {
    font-size: 0.8rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ── Hero CTA Buttons ── */
.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    opacity: 0;
    animation: fadeInUp 0.8s ease 1s forwards;
}

/* ── Scroll Indicator ── */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    opacity: 0;
    animation: fadeInUp 0.8s ease 1.5s forwards;
    cursor: pointer;
}

.scroll-indicator span {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(180deg, var(--neon), transparent);
    position: relative;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: -2px;
    width: 5px;
    height: 10px;
    background: var(--neon);
    box-shadow: var(--glow-neon);
    animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
    0%   { top: 0; opacity: 1; }
    100% { top: 100%; opacity: 0; }
}
