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

.hero-wrap {
    background: var(--color-bg);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: var(--font-body);
}

/* ─── Hero Section ─── */
.hero {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 48px;
    gap: 80px;
}

/* ─── Globe ─── */
.globe-wrap {
    position: relative;
    width: 340px;
    height: 340px;
    flex-shrink: 0;
}

.globe-glow {
    position: absolute;
    inset: -30px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--color-primary-glow) 0%, transparent 70%);
}

canvas#globe {
    border-radius: 50%;
}

/* ─── Hero Text ─── */
.hero-text {
    max-width: 480px;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--color-primary-tint);
    border: 0.5px solid var(--color-primary-border);
    border-radius: 20px;
    padding: 5px 14px;
    margin-bottom: 20px;
}

.hero-tag-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-primary-light);
    animation: pulse 2s infinite;
}

.hero-tag span {
    font-family: var(--font-caption);
    font-size: 12px;
    color: var(--color-primary-light);
}

.hero-name {
    font-family: var(--font-header);
    font-weight: var(--fw-header);
    font-size: 52px;
    color: var(--color-text-primary);
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 8px;
}

.hero-name em {
    color: var(--color-primary);
    font-style: normal;
}

.hero-title {
    font-family: var(--font-subtitle);
    font-weight: var(--fw-subtitle);
    font-size: 18px;
    color: var(--color-text-secondary);
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.hero-desc {
    font-family: var(--font-paragraph);
    font-size: 15px;
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-bottom: 32px;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--color-primary);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    font-family: var(--font-title);
}

.btn-outline {
    background: transparent;
    color: var(--color-text-primary);
    border: 0.5px solid var(--color-border-strong);
    border-radius: 8px;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    font-family: var(--font-title);
}

/* ─── Stats ─── */
.hero-stats {
    display: flex;
    gap: 32px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 0.5px solid var(--color-border);
}

.stat-num {
    font-family: var(--font-header);
    font-weight: var(--fw-title);
    font-size: 24px;
    color: var(--color-text-primary);
}

.stat-label {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--color-text-faint);
    margin-top: 2px;
}

/* ─── Animations ─── */
@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        align-items: center;
        justify-content: flex-end;
        padding: 0 24px 40px;
        position: relative;
        min-height: 100vh;
    }

    .globe-wrap {
        position: absolute;
        top: 40px;
        left: 20%;
        transform: translateX(-50%);
        width: 260px;
        height: 260px;
        opacity: 0.35;
        z-index: 0;
    }

    .globe-glow {
        inset: -20px;
    }

    canvas#globe {
        width: 260px;
        height: 260px;
    }

    .hero-text {
        position: relative;
        z-index: 1;
        max-width: 100%;
        text-align: left;
    }

    .hero-name {
        font-size: 36px;
    }

    .hero-title {
        font-size: 15px;
    }

    .hero-stats {
        gap: 20px;
    }

    nav {
        padding: 16px 24px;
    }

    .nav-links {
        display: none;
    }
}