:root {
    --bg: #202020;
    --panel: #292929;
    --panel-2: #242424;
    --text: #ffffff;
    --muted: #b8bdc8;
    --primary: #1309ff;
    --primary-2: #4b44ff;
    --secondary: #adfaff;
    --border: #3a3a3a;
    --radius: 4px;
}

.product-page {
    position: relative;
    overflow: clip;
    padding: 104px 0 120px;
    background:
        radial-gradient(760px 360px at -10% -10%, rgba(19, 9, 255, 0.14), transparent 62%),
        radial-gradient(660px 320px at 110% 8%, rgba(173, 250, 255, 0.1), transparent 64%),
        var(--bg);
}

.product-page .container {
    width: min(1200px, calc(100% - 40px));
    margin-inline: auto;
    display: grid;
    gap: 72px;
}



.product-hero {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 52px 56px;
}

.product-hero .kicker {
    display: inline-block;
    color: var(--secondary);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    margin-bottom: 20px;
}

.product-hero h1 {
    margin: 0 0 14px;
    font-size: clamp(3rem, 7vw, 5.25rem);
    line-height: 0.95;
    letter-spacing: -0.06em;
    color: #ffffff;
}

.product-hero p {
    margin: 0;
    max-width: 860px;
    color: var(--muted);
    font-size: 1.1rem;
    line-height: 1.62;
}

.cta-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 6px 18px;
    border-radius: var(--radius);
    border: 1px solid transparent;
    font-weight: 700;
    letter-spacing: 0.01em;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-2));
    color: #ffffff;
    box-shadow: 0 8px 28px rgba(19, 9, 255, 0.25);
}

.btn-secondary,
.btn-tertiary {
    background: rgba(32, 32, 32, 0.68);
    border-color: rgba(255, 255, 255, 0.32);
    color: #ffffff;
    backdrop-filter: blur(8px);
}

.btn-secondary:hover,
.btn-tertiary:hover {
    border-color: rgba(173, 250, 255, 0.55);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin-top: 2px;
}

.info-card {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 28px;
}

.info-card h3 {
    margin: 0 0 10px;
    font-size: 1.18rem;
    line-height: 1.3;
    color: #ffffff;
}

.info-card p {
    margin: 0;
    color: var(--muted);
}

.content-block {
    background: var(--panel-2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 48px 52px;
}

.content-block h2 {
    margin: 0 0 24px;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.08;
    letter-spacing: -0.045em;
    color: #ffffff;
}

.steps {
    margin: 0;
    padding: 0;
    counter-reset: item;
    list-style: none;
}

.steps li {
    position: relative;
    margin: 0 0 16px;
    padding-left: 44px;
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.5;
}

.steps li::before {
    counter-increment: item;
    content: counter(item);
    position: absolute;
    left: 0;
    top: 1px;
    width: 28px;
    height: 28px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: rgba(19, 9, 255, 0.3);
    border: 1px solid rgba(173, 250, 255, 0.38);
    color: #eaf2ff;
    font-size: 0.86rem;
    font-weight: 700;
}

.steps li:last-child {
    margin-bottom: 0;
}

.use-cases {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin-top: 4px;
}

.use-case {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 30px 28px;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.use-case:hover {
    transform: translateY(-2px);
    border-color: #5b5b5b;
}

.use-case h3 {
    margin: 0 0 10px;
    font-size: 1.08rem;
    color: #ffffff;
}

.use-case p {
    margin: 0;
    color: var(--muted);
}

.resource-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    padding-top: 20px;
}

.resource-links a {
    color: #d9ebff;
    border: 1px solid rgba(173, 250, 255, 0.3);
    background: rgba(173, 250, 255, 0.08);
    border-radius: var(--radius);
    padding: 9px 12px;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.resource-links a:hover {
    border-color: rgba(173, 250, 255, 0.58);
    background: rgba(173, 250, 255, 0.16);
}

@media (max-width: 1020px) {
    .info-grid,
    .use-cases {
        grid-template-columns: 1fr 1fr;
    }

    .product-hero {
        padding: 40px 38px;
    }

    .content-block {
        padding: 38px 36px;
    }
}

@media (max-width: 760px) {
    .product-page {
        padding: 86px 0 96px;
    }

    .product-page .container {
        width: min(100% - 28px, 1200px);
        gap: 48px;
    }

    .product-hero {
        padding: 28px 24px;
    }

    .product-hero h1 {
        font-size: clamp(2.6rem, 13vw, 3.8rem);
    }

    .product-hero p,
    .steps li {
        font-size: 1rem;
    }

    .content-block {
        padding: 28px 24px;
    }

    .info-grid,
    .use-cases {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .cta-row {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }
}


/* Hero product icon */
.hero-head {
    display: flex;
    align-items: center;
    gap: 24px;
    margin: 0 0 14px;
}

.hero-head h1 {
    margin: 0;
}

.hero-icon {
    width: 78px;
    height: 78px;
    border-radius: 18px;
    object-fit: contain;
    flex-shrink: 0;
}

@media (max-width: 720px) {
    .hero-head { gap: 14px; }
    .hero-icon { width: 54px; height: 54px; border-radius: 12px; }
}
