/*
ARQUIVO: estilos da pagina /produto/.

POR QUE ELE EXISTE:
- Da linguagem visual propria a pagina de capabilities, mantendo coerencia com a landing.
- Cria signature visuals (mock cards) que ilustram features sem screenshots reais.

O QUE ESTE ARQUIVO FAZ:
1. Dark protagonista, como prescreve o tema oficial OctoBox.
2. Hero com glow magenta sutil + estatisticas curtas.
3. Cards de papel (4) com hover sutil.
4. Features em layout alternado (texto/visual) + mock visuals tematicos.
5. Trust row + CTA final.

DISCIPLINA:
- Magenta neon usada de forma localizada (eyebrows e badges).
- Cyan para ascao primaria.
- Glows isolados em ::before/::after para custo de repaint controlado.
*/

:root {
    --product-bg: #0a0e18;
    --product-bg-soft: #0f1320;
    --product-card: rgba(20, 28, 44, 0.72);
    --product-card-strong: rgba(22, 32, 54, 0.86);
    --product-card-hover: rgba(28, 40, 64, 0.86);
    --product-text: #f5f7fa;
    --product-text-muted: rgba(240, 245, 255, 0.66);
    --product-text-faded: rgba(240, 245, 255, 0.46);
    --product-line: rgba(255, 255, 255, 0.08);
    --product-line-strong: rgba(255, 255, 255, 0.18);
    --product-cyan: #4d8dff;
    --product-cyan-strong: #7cb8ff;
    --product-magenta: #ff3eb5;
    --product-amber: #f7b84d;
    --product-emerald: #29d398;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body[data-page="marketing-product"] {
    margin: 0;
    min-height: 100vh;
    color: var(--product-text);
    font-family: var(--font-body, system-ui, sans-serif);
    background:
        radial-gradient(circle at 50% -10%, rgba(255, 62, 181, 0.1), transparent 36%),
        radial-gradient(circle at 80% 30%, rgba(77, 141, 255, 0.08), transparent 32%),
        radial-gradient(circle at 10% 70%, rgba(124, 184, 255, 0.06), transparent 30%),
        linear-gradient(180deg, var(--product-bg) 0%, var(--product-bg-soft) 100%);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body[data-page="marketing-product"]::before,
body[data-page="marketing-product"]::after {
    display: none;
}

a { color: inherit; }

.product-shell {
    width: min(calc(100% - 40px), 1180px);
    margin: 0 auto;
}

/* NAV ───────────────────────────────────────────────── */

.product-nav {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px clamp(20px, 4vw, 48px);
    background: rgba(10, 14, 24, 0.78);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--product-line);
}

.product-brand {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--product-text);
    font-weight: 800;
    letter-spacing: -0.04em;
}

.product-brand-icon {
    width: 28px;
    height: 28px;
}

.product-brand-mark { font-size: 1.04rem; }

.product-brand-subtitle {
    font-size: 0.78rem;
    color: var(--product-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.18em;
}

.product-nav-links {
    display: inline-flex;
    align-items: center;
    gap: 24px;
}

.product-nav-links a {
    color: var(--product-text-muted);
    text-decoration: none;
    font-size: 0.94rem;
    transition: color 180ms ease;
}

.product-nav-links a:hover,
.product-nav-links a[aria-current="page"] {
    color: var(--product-text);
}

.product-nav-cta {
    display: inline-flex;
    align-items: center;
    padding: 10px 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--product-cyan), var(--product-cyan-strong));
    color: #f8fbff;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.92rem;
    box-shadow: 0 12px 28px rgba(47, 128, 255, 0.28);
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.product-nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 36px rgba(47, 128, 255, 0.36);
}

@media (max-width: 768px) {
    .product-nav-links { display: none; }
}

/* SHARED SECTION HEADERS ────────────────────────────── */

.product-eyebrow,
.product-section-kicker,
.product-feature-eyebrow {
    margin: 0 0 16px;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--product-cyan-strong);
}

.product-section-kicker--magenta {
    color: var(--product-magenta);
}

.product-section-head {
    max-width: 720px;
    margin-bottom: 56px;
}

.product-section-head--center {
    margin-inline: auto;
    text-align: center;
}

.product-section-title,
.product-h1 {
    margin: 0;
    font-family: var(--font-display, var(--font-body));
    font-weight: 800;
    letter-spacing: -0.05em;
    color: var(--product-text);
    line-height: 1;
}

.product-h1 {
    font-size: clamp(2.6rem, 6vw, 5rem);
}

.product-section-title {
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.05;
}

.product-section-copy {
    margin: 20px 0 0;
    font-size: 1.02rem;
    line-height: 1.6;
    color: var(--product-text-muted);
}

.product-section-head--center .product-section-copy {
    margin-inline: auto;
    max-width: 580px;
}

/* HERO ─────────────────────────────────────────────── */

.product-hero {
    position: relative;
    padding: clamp(96px, 12vw, 160px) 0 clamp(72px, 10vw, 120px);
    overflow: hidden;
}

.product-hero-glow {
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 62, 181, 0.16) 0%, transparent 60%);
    pointer-events: none;
    filter: blur(40px);
}

.product-hero .product-shell {
    position: relative;
}

.product-hero-copy {
    margin: 28px 0 0;
    max-width: 640px;
    font-size: clamp(1.04rem, 1.8vw, 1.22rem);
    line-height: 1.6;
    color: var(--product-text-muted);
}

.product-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 56px;
    padding: 28px 32px;
    border: 1px solid var(--product-line);
    border-radius: 22px;
    background: var(--product-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    max-width: 720px;
}

.product-hero-stat {
    display: grid;
    gap: 6px;
}

.product-hero-stat-value {
    font-family: var(--font-display, var(--font-body));
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.04em;
    color: var(--product-cyan-strong);
}

.product-hero-stat-label {
    font-size: 0.86rem;
    color: var(--product-text-muted);
    line-height: 1.4;
}

@media (max-width: 640px) {
    .product-hero-stats {
        grid-template-columns: 1fr;
        gap: 18px;
    }
}

/* ROLES ─────────────────────────────────────────────── */

.product-roles {
    padding: clamp(72px, 10vw, 120px) 0;
}

.product-roles-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.product-role-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 32px 26px;
    border: 1px solid var(--product-line);
    border-radius: 22px;
    background: var(--product-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.product-role-card:hover {
    transform: translateY(-3px);
    border-color: rgba(77, 141, 255, 0.32);
    background: var(--product-card-hover);
}

.product-role-card--featured {
    border-color: rgba(77, 141, 255, 0.4);
    background:
        radial-gradient(circle at 80% 0%, rgba(77, 141, 255, 0.18), transparent 60%),
        var(--product-card-strong);
    box-shadow:
        0 0 0 1px rgba(77, 141, 255, 0.18) inset,
        0 32px 80px rgba(0, 0, 0, 0.3),
        0 0 60px rgba(77, 141, 255, 0.14);
}

.product-role-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 4px 10px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--product-magenta), #ff7fcb);
    color: #0a0e18;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    box-shadow: 0 8px 20px rgba(255, 62, 181, 0.32);
}

.product-role-icon {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: var(--product-cyan-strong);
    background: rgba(77, 141, 255, 0.12);
    border: 1px solid rgba(77, 141, 255, 0.24);
}

.product-role-icon svg {
    width: 22px;
    height: 22px;
}

.product-role-card h3 {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--product-text);
}

.product-role-tag {
    margin: 0;
    font-size: 0.86rem;
    color: var(--product-text-muted);
    letter-spacing: 0.01em;
}

.product-role-card ul {
    margin: 8px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 8px;
}

.product-role-card li {
    position: relative;
    padding-left: 20px;
    font-size: 0.92rem;
    color: rgba(240, 245, 255, 0.82);
    line-height: 1.45;
}

.product-role-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--product-cyan);
}

@media (max-width: 1080px) {
    .product-roles-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 540px) {
    .product-roles-grid { grid-template-columns: 1fr; }
}

/* FEATURES ─────────────────────────────────────────── */

.product-features {
    padding: clamp(72px, 10vw, 120px) 0;
}

.product-feature {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(32px, 5vw, 64px);
    align-items: center;
    padding: clamp(48px, 8vw, 80px) 0;
    border-top: 1px solid var(--product-line);
}

.product-feature:first-of-type { border-top: none; }

.product-feature--reverse {
    direction: rtl;
}

.product-feature--reverse > * {
    direction: ltr;
}

.product-feature-copy h3 {
    margin: 12px 0 18px;
    font-family: var(--font-display, var(--font-body));
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    line-height: 1.1;
    letter-spacing: -0.04em;
    font-weight: 700;
    color: var(--product-text);
}

.product-feature-copy p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--product-text-muted);
}

.product-feature-points {
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.product-feature-points li {
    position: relative;
    padding-left: 24px;
    font-size: 0.95rem;
    color: rgba(240, 245, 255, 0.82);
    line-height: 1.5;
}

.product-feature-points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(77, 141, 255, 0.2);
    border: 1px solid rgba(77, 141, 255, 0.5);
}

.product-feature-points li::after {
    content: "";
    position: absolute;
    left: 4px;
    top: 11px;
    width: 6px;
    height: 3px;
    border-left: 1.5px solid var(--product-cyan-strong);
    border-bottom: 1.5px solid var(--product-cyan-strong);
    transform: rotate(-45deg);
}

.product-feature-visual {
    display: grid;
    gap: 12px;
    padding: 28px;
    border: 1px solid var(--product-line-strong);
    border-radius: 22px;
    background: var(--product-card-strong);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.4);
    min-height: 280px;
}

@media (max-width: 900px) {
    .product-feature,
    .product-feature--reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }

    .product-feature--reverse .product-feature-visual {
        order: 2;
    }

    .product-feature--reverse .product-feature-copy {
        order: 1;
    }
}

/* RISK CARD VISUAL ─────────────────────────────────── */

.risk-card {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    border-radius: 14px;
    border: 1px solid var(--product-line);
    background: rgba(0, 0, 0, 0.2);
    transition: transform 200ms ease;
}

.risk-card:hover { transform: translateX(2px); }

.risk-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.risk-dot--high {
    background: #ff5f7e;
    box-shadow: 0 0 12px rgba(255, 95, 126, 0.6);
}

.risk-dot--watch {
    background: var(--product-amber);
    box-shadow: 0 0 12px rgba(247, 184, 77, 0.5);
}

.risk-dot--ok {
    background: var(--product-emerald);
    box-shadow: 0 0 12px rgba(41, 211, 152, 0.5);
}

.risk-card-body {
    display: grid;
    gap: 2px;
}

.risk-card-body strong {
    font-size: 0.96rem;
    color: var(--product-text);
    font-weight: 600;
}

.risk-card-body small {
    font-size: 0.82rem;
    color: var(--product-text-muted);
}

.risk-card-cta {
    font-size: 0.84rem;
    color: var(--product-cyan-strong);
    font-weight: 600;
}

.risk-card--high {
    border-color: rgba(255, 95, 126, 0.32);
    background: rgba(255, 95, 126, 0.06);
}

.risk-card--watch {
    border-color: rgba(247, 184, 77, 0.28);
}

.risk-card--ok {
    border-color: rgba(41, 211, 152, 0.28);
}

/* WHATSAPP BUBBLES ─────────────────────────────────── */

.product-feature-visual--whatsapp {
    background:
        linear-gradient(180deg, rgba(15, 90, 60, 0.08), rgba(10, 14, 24, 0.6)),
        var(--product-card-strong);
    gap: 10px;
}

.wpp-bubble {
    max-width: 86%;
    padding: 12px 16px;
    border-radius: 14px;
    font-size: 0.94rem;
    line-height: 1.45;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
}

.wpp-bubble--out {
    align-self: flex-start;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--product-line);
    color: var(--product-text);
}

.wpp-bubble--in {
    align-self: flex-end;
    background: rgba(41, 211, 152, 0.18);
    border: 1px solid rgba(41, 211, 152, 0.36);
    color: #d6f5e6;
}

.wpp-bubble--system {
    background: rgba(77, 141, 255, 0.12);
    border-color: rgba(77, 141, 255, 0.32);
    color: #c8dbff;
    font-size: 0.88rem;
}

.wpp-link {
    display: inline-block;
    margin-top: 4px;
    color: var(--product-cyan-strong);
    text-decoration: underline;
    text-underline-offset: 2px;
    font-weight: 600;
}

.product-feature-visual--whatsapp { display: flex; flex-direction: column; }

/* APP PHONE ────────────────────────────────────────── */

.product-feature-visual--app {
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.app-phone {
    width: min(280px, 100%);
    margin: 0 auto;
    padding: 14px;
    border-radius: 32px;
    background: #050810;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow:
        0 32px 80px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.04) inset;
}

.app-phone-screen {
    display: grid;
    gap: 12px;
    padding: 18px 16px;
    border-radius: 22px;
    background: linear-gradient(180deg, #0a0f1c, #0e1422);
    min-height: 320px;
}

.app-streak {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 12px;
    row-gap: 2px;
    align-items: center;
    padding: 14px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(255, 62, 181, 0.16), rgba(247, 184, 77, 0.1));
    border: 1px solid rgba(255, 62, 181, 0.24);
}

.app-streak-flame {
    grid-row: span 2;
    font-size: 1.6rem;
}

.app-streak strong {
    font-size: 1rem;
    font-weight: 700;
    color: var(--product-text);
}

.app-streak small {
    font-size: 0.78rem;
    color: var(--product-text-muted);
}

.app-wod {
    padding: 14px;
    border-radius: 14px;
    background: rgba(0, 0, 0, 0.32);
    border: 1px solid var(--product-line);
}

.app-wod-tag {
    margin: 0 0 8px;
    font-size: 0.74rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--product-cyan);
    font-weight: 700;
}

.app-wod ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 6px;
}

.app-wod li {
    font-size: 0.86rem;
    color: rgba(240, 245, 255, 0.84);
    line-height: 1.4;
}

.app-wod li small {
    color: var(--product-text-faded);
    font-size: 0.74rem;
}

.app-pr {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 12px;
    background: rgba(41, 211, 152, 0.14);
    border: 1px solid rgba(41, 211, 152, 0.36);
    font-size: 0.86rem;
    color: #d6f5e6;
}

.app-pr-arrow {
    color: var(--product-emerald);
    font-weight: 800;
}

/* DUNNING ROW VISUAL ───────────────────────────────── */

.product-feature-visual--dunning { gap: 8px; }

.dunning-header {
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--product-text-muted);
    margin-bottom: 4px;
}

.dunning-row {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 16px;
    padding: 12px 14px;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.24);
    border: 1px solid var(--product-line);
    font-size: 0.88rem;
}

.dunning-row span {
    color: var(--product-text-muted);
    font-size: 0.8rem;
}

.dunning-row strong {
    color: var(--product-text);
    font-weight: 600;
}

.dunning-row em {
    font-style: normal;
    color: var(--product-cyan-strong);
    font-size: 0.82rem;
}

.dunning-row--urgent {
    border-color: rgba(255, 95, 126, 0.32);
    background: rgba(255, 95, 126, 0.06);
}

.dunning-row--urgent em { color: #ff8fa3; }

.dunning-row--won {
    border-color: rgba(41, 211, 152, 0.32);
    background: rgba(41, 211, 152, 0.06);
}

.dunning-row--won em { color: #6ee2b3; }

/* LEADS VISUAL ─────────────────────────────────────── */

.product-feature-visual--leads { gap: 8px; }

.leads-source {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.22);
    border: 1px solid var(--product-line);
    font-size: 0.86rem;
    color: rgba(240, 245, 255, 0.78);
    align-items: center;
}

.leads-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.leads-pill--ig { background: rgba(255, 62, 181, 0.16); color: #ff8fd6; border: 1px solid rgba(255, 62, 181, 0.32); }
.leads-pill--ref { background: rgba(41, 211, 152, 0.14); color: #6ee2b3; border: 1px solid rgba(41, 211, 152, 0.32); }
.leads-pill--ads { background: rgba(77, 141, 255, 0.16); color: #9bc1ff; border: 1px solid rgba(77, 141, 255, 0.32); }
.leads-pill--vcf { background: rgba(247, 184, 77, 0.14); color: #f7d27a; border: 1px solid rgba(247, 184, 77, 0.32); }

.leads-source--total {
    margin-top: 8px;
    padding: 14px;
    border: 1px solid var(--product-line-strong);
    background: rgba(20, 30, 48, 0.6);
    font-weight: 600;
    color: var(--product-text);
}

.leads-source--total span:first-child {
    font-weight: 700;
    color: var(--product-cyan-strong);
}

/* TRAINING VISUAL ──────────────────────────────────── */

.product-feature-visual--training { gap: 8px; }

.train-row {
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.24);
    border: 1px solid var(--product-line);
}

.train-row span {
    font-size: 0.88rem;
    color: var(--product-text-muted);
}

.train-row strong {
    font-family: var(--font-display, var(--font-body));
    font-size: 1.1rem;
    color: var(--product-text);
    letter-spacing: -0.02em;
    font-weight: 700;
}

.train-row em {
    font-style: normal;
    font-size: 0.78rem;
    color: var(--product-text-faded);
}

.train-delta {
    color: var(--product-emerald) !important;
    font-weight: 700;
}

.train-row--prescribed {
    border-color: rgba(77, 141, 255, 0.32);
    background: rgba(77, 141, 255, 0.06);
}

.train-row--prescribed em { color: var(--product-cyan-strong) !important; }

/* TRUST ROW ────────────────────────────────────────── */

.product-trust {
    padding: clamp(64px, 8vw, 96px) 0;
    border-top: 1px solid var(--product-line);
    border-bottom: 1px solid var(--product-line);
    background: rgba(0, 0, 0, 0.18);
}

.product-trust-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.product-trust-item {
    padding: 28px;
    border-radius: 18px;
    background: var(--product-card);
    border: 1px solid var(--product-line);
}

.product-trust-kicker {
    margin: 0 0 10px;
    font-size: 0.74rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--product-cyan-strong);
    font-weight: 800;
}

.product-trust-item h3 {
    margin: 0 0 10px;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--product-text);
    letter-spacing: -0.02em;
}

.product-trust-item p {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.5;
    color: var(--product-text-muted);
}

@media (max-width: 880px) {
    .product-trust-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* CTA FINAL ────────────────────────────────────────── */

.product-cta {
    padding: clamp(96px, 12vw, 144px) 0;
    text-align: center;
    background:
        radial-gradient(circle at 50% 0%, rgba(255, 62, 181, 0.16), transparent 40%),
        radial-gradient(circle at 50% 100%, rgba(77, 141, 255, 0.12), transparent 50%);
}

.product-cta-headline {
    margin: 0 0 22px;
    font-family: var(--font-display, var(--font-body));
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 800;
    letter-spacing: -0.05em;
    line-height: 1.05;
    color: var(--product-text);
}

.product-cta-copy {
    max-width: 540px;
    margin: 0 auto 36px;
    font-size: 1.04rem;
    line-height: 1.6;
    color: var(--product-text-muted);
}

.product-cta-actions {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
}

.product-cta-primary,
.product-cta-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 28px;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.product-cta-primary {
    color: #f8fbff;
    background: linear-gradient(135deg, var(--product-cyan), var(--product-cyan-strong));
    box-shadow: 0 18px 40px rgba(47, 128, 255, 0.32);
}

.product-cta-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 22px 48px rgba(47, 128, 255, 0.42);
}

.product-cta-secondary {
    color: var(--product-text);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--product-line-strong);
}

.product-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.32);
}

.product-cta-foot {
    margin: 28px 0 0;
    font-size: 0.86rem;
    color: var(--product-text-faded);
    letter-spacing: 0.04em;
}

/* RESPONSIVE FINAL ─────────────────────────────────── */

@media (max-width: 640px) {
    .product-hero { padding: 80px 0 56px; }
    .product-cta-primary,
    .product-cta-secondary { width: 100%; }
    .product-cta-actions { display: grid; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .product-role-card,
    .product-cta-primary,
    .product-cta-secondary,
    .product-nav-cta,
    .risk-card { transition: none; }
}
