﻿/* Ultra-compressed version */
.tool-page-pill-row {
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 0.78rem;
}

.tool-page-pill {
    display: inline-flex; /* Change from default to inline-flex */
    align-items: center; /* Vertically center content */
    padding: 6px 10px;
    border-radius: 999px;
    background: #e2e5f3;
    border: 1px solid #e2e5f3;
    color: dimgrey;
}

    .tool-page-pill.primary {
        background: #0f172a;
        color: #f9fafb;
        border-color: #0f172a;
    }

.tool-page-pill.learn-more-3d {
    min-width: 200px;
    padding: 6px 24px;
    border-radius: 999px;
    font-size: .9rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background: var(--pv-orange);
    box-shadow: 0 4px 12px rgba(247,148,29,.35);
    border: 1px solid rgba(231,125,13,.4);
    color: #fff;
    transition: all .15s ease
}

    .tool-page-pill.learn-more-3d:hover {
        background: #d97f18; /* var(--pv-orange-dark); */
        transform: translateY(-1px);
        box-shadow: 0 6px 14px rgba(247,148,29,.4)
    }

    .tool-page-pill.learn-more-3d:active {
        transform: translateY(0);
        box-shadow: 0 2px 6px rgba(247,148,29,.3)
    }

    .tool-page-pill.learn-more-3d.align-right {
        margin-left: auto
    }

@media(max-width:640px) {
    .tool-page-pill.learn-more-3d {
        min-width: 160px;
        padding: 8px 20px;
        font-size: .85rem
    }

        .tool-page-pill.learn-more-3d.align-right {
            margin-left: 0;
            margin-top: 4px;
            width: 100%
        }
}

/* Non-clickable feature summary (replaces pill row) */
.tool-page-features {
    margin-top: 10px;
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    padding: 6px 10px;
    border-radius: 12px;
    background: rgba(255,255,255,0.72);
    border: 1px solid rgba(226,229,243,0.9);
    color: var(--pv-muted);
    font-size: 0.80rem;
    line-height: 1.2;
    max-width: 860px;
}

.features-label {
    font-weight: 650;
    color: rgba(17,24,39,0.72);
    letter-spacing: 0.01em;
}

.features-text {
    font-weight: 520;
    color: rgba(17,24,39,0.58);
}

.nav-link.home {
    background: #71717a;
    color: #ffffff;
    font-weight: 500;
    box-shadow: 0 8px 18px rgba(113, 113, 122, 0.32);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration:none
}

    .nav-link.home:hover {
        background: #5a5a61;
        box-shadow: 0 6px 14px rgba(113, 113, 122, 0.38);
    }

    .nav-link.home svg {
        display: inline-block;
    }

/* =========================================================
   Pvalue Analytics AI Studio — Shared Button Styles
   File: ai-studio-buttons.css
   Scope: Primary, Secondary, Disabled buttons
   ========================================================= */

/* Base button */
button {
    border: none;
    border-radius: 999px;
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    transition: transform 0.05s ease, box-shadow 0.1s ease, background 0.1s, border-color 0.1s, color 0.1s;
    -webkit-font-smoothing: antialiased;
}

    /* Focus */
    button:focus {
        outline: none;
    }

    button:focus-visible {
        box-shadow: 0 0 0 3px rgba(0,114,188,0.22), 0 10px 22px rgba(15,23,42,0.10);
    }

/* =========================
   Primary CTA
   ========================= */
.btn-primary {
    background: linear-gradient(180deg, #f7941d 0%, #e68310 100%);
    color: #ffffff;
    box-shadow: 0 10px 22px rgba(247,148,29,0.35), inset 0 1px 0 rgba(255,255,255,0.35);
}

    .btn-primary:hover {
        background: linear-gradient(180deg, #ff9f2b 0%, #e07b0a 100%);
        transform: translateY(-1px);
        box-shadow: 0 14px 28px rgba(247,148,29,0.42), inset 0 1px 0 rgba(255,255,255,0.45);
    }

    .btn-primary:active {
        transform: translateY(0);
        box-shadow: 0 6px 14px rgba(247,148,29,0.35), inset 0 2px 4px rgba(0,0,0,0.18);
    }

/* =========================
   Secondary / Utility
   ========================= */
.btn-secondary {
    background: rgba(255,255,255,0.90);
    border: 1px solid rgba(226,229,243,0.95);
    color: #374151;
    box-shadow: 0 2px 6px rgba(15,23,42,0.08);
    backdrop-filter: blur(6px);
}

    .btn-secondary:hover {
        background: #ffffff;
        border-color: rgba(199,210,254,0.95);
        color: #1f3a8a;
        transform: translateY(-1px);
        box-shadow: 0 6px 14px rgba(15,23,42,0.12);
    }

    .btn-secondary:active {
        transform: translateY(0);
        box-shadow: 0 2px 8px rgba(15,23,42,0.10);
    }

/* =========================
   Disabled (global)
   ========================= */
button:disabled,
button[aria-disabled="true"] {
    opacity: 0.65;
    background: linear-gradient(180deg, #f3f4f6, #e5e7eb) !important;
    color: rgba(55,65,81,0.70) !important;
    border-color: rgba(226,232,240,0.95) !important;
    box-shadow: none !important;
    cursor: not-allowed;
    transform: none !important;
}
