.product-hero {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 60px 24px 40px;
    display: flex;
    align-items: center;
    gap: 32px;
}

.product-hero__icon {
    border-radius: 28px;
    box-shadow: 0 24px 60px rgba(59, 130, 246, 0.4);
    flex-shrink: 0;
}

.product-hero__eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.8rem;
    color: var(--cyan);
    margin: 0 0 8px;
    font-weight: 700;
}

.product-hero__title { font-size: clamp(2.2rem, 5vw, 3.2rem); font-weight: 800; margin: 0; }

.product-hero__lede {
    color: #e3e6f5;
    font-size: 1.1rem;
    max-width: 52ch;
    margin: 16px 0 24px;
    text-shadow: 0 1px 14px rgba(0, 0, 0, 0.85);
}

.product-hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }

.showcase__grid {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.shot { margin: 0; }

.shot img {
    width: 100%;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    display: block;
    background: #fff;
}

.shot figcaption { color: var(--text-muted); font-size: 0.9rem; margin-top: 12px; text-align: center; }

.features__grid {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.feature {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 26px 22px;
}

.feature h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.feature p { color: var(--text-muted); margin: 0; font-size: 0.97rem; }

.product-cta { display: flex; justify-content: center; padding-top: 0; }

.product-cta__card {
    max-width: 680px;
    margin: 0 24px;
    text-align: center;
    background: var(--surface-raised);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 44px 32px;
}

.product-cta__card h2 { font-size: clamp(1.5rem, 3.5vw, 2.1rem); font-weight: 800; margin-bottom: 10px; }

.product-cta__card p { color: var(--text-muted); margin: 0 0 24px; }

.product-cta__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

@media (max-width: 900px) {
    .features__grid { grid-template-columns: repeat(2, 1fr); }
    .showcase__grid { grid-template-columns: 1fr; }
    .product-hero { flex-direction: column; text-align: center; }
    .product-hero__actions { justify-content: center; }
}

@media (max-width: 560px) {
    .features__grid { grid-template-columns: 1fr; }
}
