/* hero.css */
.hero {
    padding: 6rem 1.5rem 5rem;
}

.hero-inner {
    max-width: 720px;
    margin: 0 auto;
    text-align: left;
}


.hero-card {
    padding: 26px;
    border-radius: var(--radius-soft);
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(17, 24, 39, 0.06);
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
}

.hero-card::before {
    content: "";
    position: absolute;
    inset: -2px;
    background: var(--cute-grad);
    opacity: 0.25;
    filter: blur(22px);
    pointer-events: none;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: var(--radius-pill);
    background: rgba(205, 180, 219, 0.22);
    border: 1px solid rgba(17, 24, 39, 0.06);
    color: rgba(31, 41, 55, 0.78);
    font-size: 13px;
    width: fit-content;
    margin-bottom: 12px;
}

.hero h1 {
    margin-bottom: 10px;
}

.hero-lede {
    max-width: 52ch;
    margin-bottom: 18px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 10px;
}

.hero-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.hero-note {
    margin-top: 10px;
    font-size: 14px;
    color: rgba(31, 41, 55, 0.65);
}

.hero-art {
    min-height: 280px;
    border-radius: var(--radius-soft);
    border: 1px solid rgba(17, 24, 39, 0.06);
    background:
        radial-gradient(240px 240px at 20% 25%, rgba(255, 200, 221, 0.55), transparent 60%),
        radial-gradient(260px 260px at 80% 20%, rgba(189, 224, 254, 0.60), transparent 60%),
        radial-gradient(300px 300px at 70% 80%, rgba(205, 180, 219, 0.45), transparent 60%),
        rgba(255, 255, 255, 0.62);
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
}

/* little “sparkles” (subtle) */
.hero-art::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.9) 0 1px, transparent 2px),
        radial-gradient(circle at 75% 20%, rgba(255, 255, 255, 0.8) 0 1px, transparent 2px),
        radial-gradient(circle at 60% 70%, rgba(255, 255, 255, 0.7) 0 1px, transparent 2px);
    opacity: 0.35;
    pointer-events: none;
}

@media (max-width: 900px) {
    .hero-inner {
        grid-template-columns: 1fr;
    }

    .hero-art {
        min-height: 220px;
        order: -1;
    }
}

.hero h1 {
    margin-bottom: 0.75rem;
}

.hero-text {
    margin-bottom: 1.5rem;
    max-width: 60ch;
}

.hero-actions {
    margin-bottom: 1.25rem;
}