#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: calc(var(--nav-h) + 60px);
    overflow: hidden;
}

.hero-inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 24px;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--mono), sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--teal);
    border: 1px solid rgba(6, 182, 212, 0.3);
    border-radius: 30px;
    padding: 6px 14px;
    margin-bottom: 28px;
    animation: fadeUp 0.7s ease both;
}

.hero-tag .bi {
    font-size: 0.8rem;
}

.hero-h1 {
    font-size: clamp(2.6rem, 6vw, 4.8rem);
    line-height: 1.06;
    margin-bottom: 24px;
    animation: fadeUp 0.7s 0.1s ease both;
}

.hero-h1 .line2 {
    color: var(--accent-lt);
}

.hero-h1 .line3 {
    color: var(--text-muted);
    font-size: 0.55em;
    display: block;
    margin-top: 6px;
    font-weight: 400;
}

.hero-desc {
    max-width: 560px;
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 40px;
    animation: fadeUp 0.7s 0.2s ease both;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    animation: fadeUp 0.7s 0.3s ease both;
}

.btn-primary-custom {
    font-family: var(--mono), sans-serif;
    font-size: 0.82rem;
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: 30px;
    padding: 13px 28px;
    text-decoration: none;
    transition: background 0.25s, box-shadow 0.25s, transform 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary-custom:hover {
    background: var(--accent-lt);
    box-shadow: 0 0 24px rgba(59, 130, 246, 0.45);
    color: #fff;
    transform: translateY(-1px);
}

.btn-outline-custom {
    font-family: var(--mono), sans-serif;
    font-size: 0.82rem;
    background: transparent;
    color: var(--text);
    border: 1px solid var(--navy-line);
    border-radius: 30px;
    padding: 13px 28px;
    text-decoration: none;
    transition: border-color 0.25s, color 0.25s, transform 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-outline-custom:hover {
    border-color: var(--accent-lt);
    color: var(--accent-lt);
    transform: translateY(-1px);
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 64px;
    flex-wrap: wrap;
    animation: fadeUp 0.7s 0.4s ease both;
}

.hero-stat-num {
    font-family: var(--mono), sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-lt);
}

.hero-stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
}

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