.product-hero {
    min-height: 72vh;
    padding: 9rem 2rem 4rem;
    position: relative;
    overflow: hidden;
    background: var(--dark);
}

.reveal {
    opacity: 1;
    transform: none;
}

.product-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 18% 18%, rgba(37, 99, 235, 0.22) 0%, transparent 48%),
        radial-gradient(ellipse at 82% 8%, rgba(14, 165, 233, 0.14) 0%, transparent 42%);
    pointer-events: none;
}

.product-hero-inner {
    width: min(100%, 1160px);
    margin: 0 auto;
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: 3rem;
    align-items: center;
}

.product-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.9rem;
    border: 1px solid rgba(37, 99, 235, 0.32);
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.12);
    color: #bfdbfe;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
}

.product-hero h1 {
    font-size: clamp(2.6rem, 5vw, 4.8rem);
    line-height: 1.08;
    font-weight: 900;
    margin-bottom: 1.25rem;
    color: var(--white);
}

.product-hero p {
    color: var(--gray-light);
    font-size: 1.12rem;
    line-height: 1.9;
    max-width: 760px;
}

.product-hero .hero-buttons {
    margin-top: 2rem;
}

.product-hero-panel {
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.045);
    padding: 1.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.panel-title {
    color: var(--white);
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.panel-list {
    list-style: none;
    display: grid;
    gap: 0.85rem;
}

.panel-list li {
    color: var(--gray-light);
    line-height: 1.7;
    padding-left: 1.2rem;
    position: relative;
}

.panel-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.72rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #60a5fa;
}

.product-overview {
    background: var(--dark-light);
}

.product-section {
    padding: 5rem 2rem;
}

.product-section.alt {
    background: #0a0e1a;
}

.product-container {
    width: min(100%, 1160px);
    margin: 0 auto;
}

.split-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 3rem;
    align-items: start;
}

.section-lead {
    color: var(--gray-light);
    line-height: 1.9;
    font-size: 1.02rem;
    margin-top: 1rem;
}

.capability-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 2.25rem;
}

.capability-card,
.scenario-card,
.flow-step {
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.035);
    padding: 1.35rem;
}

.capability-card h3,
.scenario-card h3,
.flow-step h3 {
    color: var(--white);
    font-size: 1.05rem;
    margin-bottom: 0.7rem;
}

.capability-card p,
.scenario-card p,
.flow-step p {
    color: var(--gray-light);
    line-height: 1.8;
    font-size: 0.95rem;
}

.scenario-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 2.25rem;
}

.flow-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 2.25rem;
}

.step-index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.18);
    color: #bfdbfe;
    font-weight: 800;
    margin-bottom: 1rem;
}

.value-band {
    border: 1px solid rgba(37, 99, 235, 0.24);
    border-radius: 8px;
    background: rgba(37, 99, 235, 0.1);
    padding: 2rem;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1.5rem;
    align-items: center;
}

.value-band h2 {
    color: var(--white);
    font-size: clamp(1.6rem, 3vw, 2.35rem);
    margin-bottom: 0.75rem;
}

.value-band p {
    color: #bfdbfe;
    line-height: 1.85;
    max-width: 820px;
}

@media (max-width: 960px) {
    .product-hero-inner,
    .split-layout,
    .value-band {
        grid-template-columns: 1fr;
    }

    .capability-grid,
    .flow-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .product-hero {
        padding: 7rem 1rem 3rem;
    }

    .product-section {
        padding: 3.5rem 1rem;
    }

    .capability-grid,
    .scenario-grid,
    .flow-grid {
        grid-template-columns: 1fr;
    }

    .product-hero-panel,
    .value-band {
        padding: 1.25rem;
    }
}
