.home-hero {
    max-width: 60rem;
    margin: 0 auto;
    padding: 0 1.25rem;
    min-height: 70vh;

    display: flex;
    flex-direction: column;
    justify-content: center;

    align-items: flex-start;
    text-align: left;
}

.home-main {
    font-size: clamp(1.65rem, 3.2vw, 2.55rem);
    font-weight: 500;
    line-height: 1.12;
    margin: 0 0 0.55rem;
    letter-spacing: -0.02em;
}

.home-nowrap {
    white-space: nowrap;
}

/* whisper */
.home-sub {
    font-size: 0.9rem;
    opacity: 0.75;
    margin: 0.2rem 0 0.9rem;
}

/* Static pill button (no hover behavior) */
.home-button,
.home-button:visited,
.home-button:hover,
.home-button:active {
    display: inline-block;
    padding: 0.55rem 0.85rem;
    border-radius: 0.8rem;
    background: #4a5568;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.8rem;
}

.home-cursor {
    display: inline-block;
    margin-left: 0.15ch;
    animation: home-blink 1.05s steps(1) infinite;
}

@keyframes home-blink {
    0%,
    49% {
        opacity: 1;
    }
    50%,
    100% {
        opacity: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-cursor {
        animation: none;
    }
}

@media (max-width: 520px) {
    .home-main {
        font-size: 1.45rem;
    }
}
