/* ===========================
   FRONT PAGE
   =========================== */

.home-page {
    padding-top: 0;
}

.home-hero {
    position: relative;
    padding: var(--space-3xl) 0 var(--space-xl);
    background:
        radial-gradient(circle at 80% 10%, rgba(232, 197, 71, 0.22), rgba(232, 197, 71, 0) 45%),
        linear-gradient(180deg, #151515 0%, var(--bg-primary) 80%);
}

.home-hero-content {
    display: grid;
    gap: var(--space-md);
}

.home-kicker {
    margin: 0;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.78rem;
    font-weight: 700;
}

.home-subhead {
    max-width: 62ch;
    font-size: 1.05rem;
}

.home-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.home-steps,
.home-featured,
.home-portal-cta {
    padding: var(--space-2xl) 0;
}

.home-steps-grid {
    display: grid;
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.home-step-card {
    height: 100%;
}

.home-step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 999px;
    background: rgba(232, 197, 71, 0.16);
    border: 1px solid rgba(232, 197, 71, 0.35);
    color: var(--accent);
    font-weight: 700;
    font-size: 0.82rem;
    margin-bottom: var(--space-sm);
}

.home-step-card h3 {
    margin-bottom: var(--space-sm);
}

.home-step-card p {
    margin-bottom: 0;
}

.home-featured-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}

.home-feed-grid {
    display: grid;
    gap: var(--space-lg);
}

.home-feed-card {
    overflow: hidden;
}

.home-feed-link {
    color: inherit;
    display: block;
}

.home-feed-image {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.home-feed-meta h3 {
    font-size: 1.18rem;
    margin-bottom: var(--space-xs);
}

.home-feed-price {
    margin-bottom: 0;
    color: var(--text-secondary);
}

.home-empty p {
    margin-bottom: 0;
}

.home-portal-card p {
    margin-bottom: var(--space-lg);
}

@media (min-width: 768px) {
    .home-feed-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-steps-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .home-feed-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}
