/* --- HERO SECTION --- */
.hero {
    min-height: 100vh;
    padding: 0 5vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    padding-top: 100px;/* Safety buffer for navbar */
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(4rem, 15vw, 18rem);
    line-height: 0.85;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 4rem;
}

.outline-text {
    color: transparent;
    -webkit-text-stroke: 1px var(--text);
}

.hero-meta {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-top: 1px solid var(--line);
    padding-top: 1rem;
}

.tags { font-size: 1rem;
    color: #666;
    line-height: 1.5;
}
.scroll-prompt { animation: bounce 2s infinite;
}