#hero {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0 48px 80px;
    overflow: hidden;
}

#canvas-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(232, 255, 71, 0.08);
    border: 1px solid rgba(232, 255, 71, 0.2);
    color: var(--accent);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 2px;
    margin-bottom: 32px;
    opacity: 0;
    animation: fadeUp 0.8s 0.2s forwards;
}
.hero-tag .hgi-stroke {
    font-size: 13px;
    opacity: 0.85;
}
.hero-tag::before {
    content: "";
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

h1 {
    font-family: var(--font-display);
    font-size: clamp(52px, 7vw, 96px);
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -0.03em;
    color: var(--white);
    opacity: 0;
    animation: fadeUp 0.8s 0.4s forwards;
}
h1 em {
    font-style: normal;
    color: var(--accent);
}

.hero-sub {
    margin-top: 28px;
    font-size: 17px;
    color: var(--white-dim);
    max-width: 520px;
    line-height: 1.65;
    font-weight: 300;
    opacity: 0;
    animation: fadeUp 0.8s 0.6s forwards;
}

.hero-actions {
    margin-top: 44px;
    display: flex;
    align-items: center;
    gap: 20px;
    opacity: 0;
    animation: fadeUp 0.8s 0.8s forwards;
}

/* ── BUTTONS ── */
.btn-primary {
    background: var(--accent);
    color: var(--black);
    padding: 16px 36px;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition:
        transform 0.2s,
        box-shadow 0.2s;
    position: relative;
    overflow: hidden;
}
.btn-primary::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        transparent 30%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 70%
    );
    transform: translateX(-100%);
    transition: transform 0.5s;
}
.btn-primary:hover::after {
    transform: translateX(100%);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 40px var(--accent-glow);
}

.btn-ghost {
    color: var(--white-dim);
    font-size: 14px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s;
    letter-spacing: 0.01em;
}
.btn-ghost:hover {
    color: var(--white);
}
.btn-ghost svg {
    transition: transform 0.2s;
}
.btn-ghost:hover svg {
    transform: translateX(4px);
}
