/* input(23,1): run-time error CSS1019: Unexpected token, found '@'
input(25,6): run-time error CSS1030: Expected identifier, found ' '
input(149,1): run-time error CSS1019: Unexpected token, found '@' */
:root {
    --radius-xl: 1.25rem;
    --radius-lg: 1rem;
    --card-border: rgba(0,0,0,0.08);
    --card-shadow: 0 10px 30px rgba(0,0,0,0.08);
    --card-shadow-hover: 0 18px 40px rgba(0,0,0,0.12);
    --chip-bg: rgba(0, 102, 255, 0.1);
    --chip-soft-bg: rgba(0, 0, 0, 0.06);
    --gradient-1: linear-gradient(135deg, rgba(0, 120, 255, 0.08), rgba(168, 85, 247, 0.06));
}

@@media (prefers-color-scheme: dark) {
    : root {
        --card-border: rgba(255,255,255,0.06);
        --card-shadow: 0 10px 30px rgba(0,0,0,0.6);
        --card-shadow-hover: 0 18px 40px rgba(0,0,0,0.75);
        --chip-bg: rgba(59, 130, 246, 0.18);
        --chip-soft-bg: rgba(255, 255, 255, 0.08);
        --gradient-1: linear-gradient(135deg, rgba(0, 120, 255, 0.15), rgba(168, 85, 247, 0.15));
    }
}

.team-member-card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 1.25rem;
    border-radius: var(--radius-xl);
    /* Much lighter, cleaner background */
    background: linear-gradient( 135deg, rgba(0, 120, 255, 0.03), rgba(168, 85, 247, 0.03) ), rgba(255, 255, 255, 0.95); /* was 0.65 → 0.95 */
    border: 0 solid var(--card-border);
    box-shadow: var(--card-shadow);
    backdrop-filter: saturate(120%) blur(8px);
    -webkit-backdrop-filter: saturate(120%) blur(8px);
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
    overflow: hidden;
}

    .team-member-card:hover,
    .team-member-card:focus-within {
        transform: translateY(-2px);
        box-shadow: var(--card-shadow-hover);
        border-color: rgba(0, 102, 255, 0.25);
        /* Slightly stronger white for hover */
        background: linear-gradient( 135deg, rgba(0, 120, 255, 0.04), rgba(168, 85, 247, 0.04) ), rgba(255, 255, 255, 0.98);
    }

.products-section {
    position: relative;
}

    .products-section .dot {
        width: 8px;
        height: 8px;
        border-radius: 999px;
        background: currentColor;
        opacity: .4;
    }

.bg-grid {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(rgba(0,0,0,0.04) 1px, transparent 1px) 0 0 / 24px 24px, linear-gradient(90deg, rgba(0,0,0,0.04) 1px, transparent 1px) 0 0 / 24px 24px;
    mask-image: linear-gradient(to bottom, transparent, black 20%, black 80%, transparent);
    -webkit-mask-image: linear-gradient(to bottom, transparent, black 20%, black 80%, transparent);
    /* Parallax */
    will-change: transform;
    transform: translateY(var(--parallax-y, 0px));
    transition: transform 50ms linear; /* keeps it snappy without being janky */
}

/* Respect user preferences */
@@media (prefers-reduced-motion: reduce) {
    .bg-grid {
        transform: none !important;
        transition: none !important;
    }
}

.product-card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 1.25rem;
    border-radius: var(--radius-xl);
    /* Much lighter, cleaner background */
    background: linear-gradient( 135deg, rgba(0, 120, 255, 0.03), rgba(168, 85, 247, 0.03) ), rgba(255, 255, 255, 0.95); /* was 0.65 → 0.95 */
    border: 0 solid var(--card-border);
    box-shadow: var(--card-shadow);
    backdrop-filter: saturate(120%) blur(8px);
    -webkit-backdrop-filter: saturate(120%) blur(8px);
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
    overflow: hidden;
}

    .product-card:hover,
    .product-card:focus-within {
        transform: translateY(-2px);
        box-shadow: var(--card-shadow-hover);
        border-color: rgba(0, 102, 255, 0.25);
        /* Slightly stronger white for hover */
        background: linear-gradient( 135deg, rgba(0, 120, 255, 0.04), rgba(168, 85, 247, 0.04) ), rgba(255, 255, 255, 0.98);
    }

.chip {
    display: inline-flex;
    align-items: center;
    gap: .375rem;
    line-height: 1;
    font-size: .75rem;
    padding: .5rem .65rem;
    border-radius: 999px;
    background: var(--chip-bg);
    color: #0a58ca;
    font-weight: 600;
}

.chip-soft {
    background: var(--chip-soft-bg);
    color: inherit;
    font-weight: 500;
}

.logo-wrap {
    height: 120px;
    display: grid;
    align-items: center;
    background: transparent;
    border: none;
}

.product-logo {
    max-width: 100%;
    max-height: 100px;
    object-fit: contain;
    filter: drop-shadow(0 1px 1px rgba(0,0,0,.05));
}

.product-title {
    margin-bottom: .35rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}


.product-card:hover .cta .chev {
    transform: translateX(3px);
}

.product-card a.stretched-link {
    position: absolute;
    inset: 0;
    border-radius: inherit;
}

    .product-card a.stretched-link:focus-visible {
        outline: 3px solid rgba(0,123,255,.6);
        outline-offset: 2px;
        border-radius: inherit;
    }
