.hero-container {
    flex-direction: column;
    gap: 40px;
}

/* ── Intro above terminal ── */

.hero-intro {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.hero-name {
    margin: 0;
    font-size: 5rem;
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1;
    color: rgba(255, 255, 255, 0.88);
}

.hero-sub {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.22);
    text-transform: uppercase;
}

.hero-sep {
    margin: 0 4px;
    color: rgba(255, 255, 255, 0.1);
}

/* ── Bento (below terminal) ── */

.bento {
    width: 100%;
    max-width: 900px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

/* ── Tagline ── */

.bento-tagline {
    margin: 0;
    font-size: 1.6rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.3);
    text-align: center;
}

.bento-sep {
    margin: 0 6px;
    color: rgba(255, 255, 255, 0.12);
}

/* ── Grid ── */

.bento-grid {
    display: flex;
    gap: 12px;
}

.bento-stat {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 5px;
    padding: 22px 24px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    background: rgba(255, 255, 255, 0.02);
    transition: transform 0.35s ease, border-color 0.35s ease;
}

.bento-stat:hover {
    transform: translateY(-2px);
    border-color: rgba(74, 144, 226, 0.15);
}

.bento-number {
    font-size: 2.8rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1;
    color: rgba(255, 255, 255, 0.85);
}

.bento-label {
    font-size: 1.15rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.25);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ── Responsive ── */

@media (max-width: 768px) {
    .hero-container {
        gap: 28px;
    }

    .hero-name {
        font-size: 3.8rem;
    }

    .hero-sub {
        font-size: 1.2rem;
    }

    .bento {
        gap: 18px;
    }

    .bento-tagline {
        font-size: 1.4rem;
    }

    .bento-grid {
        gap: 8px;
    }

    .bento-stat {
        padding: 18px 14px;
    }

    .bento-number {
        font-size: 2.3rem;
    }

    .bento-label {
        font-size: 1.05rem;
    }
}

@media (max-width: 480px) {
    .hero-container {
        gap: 22px;
    }

    .hero-name {
        font-size: 3rem;
    }

    .hero-sub {
        font-size: 1.05rem;
    }

    .bento-tagline {
        font-size: 1.25rem;
    }

    .bento-stat {
        padding: 16px 10px;
        border-radius: 12px;
    }

    .bento-number {
        font-size: 2rem;
    }

    .bento-label {
        font-size: 1rem;
    }
}
