.hero {
    max-width: 860px;
    margin: 0 auto;
    padding: 96px 24px 72px;
    text-align: center;
}

.hero__title { font-size: clamp(2.3rem, 6vw, 3.8rem); font-weight: 800; text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8); }

.hero__lede {
    color: #e3e6f5;
    font-size: 1.2rem;
    max-width: 60ch;
    margin: 24px auto 32px;
    text-shadow: 0 1px 14px rgba(0, 0, 0, 0.85);
}

.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

.hero__note { color: #c3c8de; font-size: 0.9rem; margin-top: 22px; text-shadow: 0 1px 12px rgba(0, 0, 0, 0.85); }

.products__grid {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
}

.product-card {
    flex: 0 1 calc(33.333% - 12px);
    min-width: 280px;
    display: flex;
    align-items: center;
    gap: 18px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 22px;
    text-decoration: none;
    color: inherit;
    transition: transform 0.15s ease, border-color 0.15s ease;
}

.product-card:hover { transform: translateY(-4px); border-color: var(--cyan); }

.product-card__media {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.product-card__icon { border-radius: 16px; flex-shrink: 0; }

.product-card__text h3 {
    font-size: 1.2rem;
    margin: 0 0 6px;
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.product-card__text p { color: var(--text-muted); margin: 0; font-size: 0.95rem; }

.product-card--soon .product-card__icon { opacity: 0.9; }

.product-card__tag {
    background: none;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 2px 8px;
    vertical-align: middle;
    white-space: nowrap;
    flex-shrink: 0;
}

.product-card__tag--out {
    -webkit-text-fill-color: #4ade80;
    color: #4ade80;
    border-color: rgba(74, 222, 128, 0.5);
}

.product-card__tag--soon {
    -webkit-text-fill-color: #f87171;
    color: #f87171;
    border-color: rgba(248, 113, 113, 0.5);
}

.product-card__tag--bonus {
    -webkit-text-fill-color: #fbbf24;
    color: #fbbf24;
    border-color: rgba(251, 191, 36, 0.5);
}
