/* ============================================================
   NORYX INTERACTIVE — 2026 GLASSMORPHISM DESIGN SYSTEM
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,300;0,14..32,400;0,14..32,500;0,14..32,600;0,14..32,700;0,14..32,800;0,14..32,900&display=swap');

/* ── 1. DESIGN TOKENS ───────────────────────────────────── */
:root {
    --clr-bg:           #050816;
    --clr-surface:      rgba(255,255,255,0.04);
    --clr-surface-md:   rgba(255,255,255,0.06);
    --clr-border:       rgba(255,255,255,0.08);
    --clr-border-bright:rgba(255,255,255,0.14);
    --clr-text:         #e8eaf6;
    --clr-text-muted:   rgba(232,234,246,0.55);
    --clr-text-sub:     rgba(232,234,246,0.75);

    --clr-primary:      #8b5cf6;
    --clr-primary-lt:   #a78bfa;
    --clr-primary-glow: rgba(139,92,246,0.35);
    --clr-secondary:    #06b6d4;
    --clr-secondary-lt: #22d3ee;
    --clr-secondary-glow:rgba(6,182,212,0.25);
    --clr-accent:       #ec4899;
    --clr-accent-glow:  rgba(236,72,153,0.25);
    --clr-success:      #10b981;
    --clr-warning:      #f59e0b;
    --clr-danger:       #ef4444;

    --grad-primary:     linear-gradient(135deg, #8b5cf6 0%, #06b6d4 100%);
    --grad-hero:        linear-gradient(135deg, #e8eaf6 0%, #c4b5fd 35%, #67e8f9 100%);
    --grad-card:        linear-gradient(145deg, rgba(255,255,255,0.07) 0%, rgba(255,255,255,0.02) 100%);
    --grad-card-hover:  linear-gradient(145deg, rgba(255,255,255,0.10) 0%, rgba(139,92,246,0.05) 100%);

    --blur-xs:  blur(8px);
    --blur-sm:  blur(12px);
    --blur-md:  blur(24px);
    --blur-lg:  blur(48px);

    --radius-xs: 8px;
    --radius-sm: 10px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-2xl:36px;

    --shadow-card:       0 4px 24px rgba(0,0,0,0.25), inset 0 1px 0 rgba(255,255,255,0.07);
    --shadow-card-hover: 0 20px 60px rgba(0,0,0,0.4), 0 0 40px rgba(139,92,246,0.18), inset 0 1px 0 rgba(255,255,255,0.12);
    --shadow-btn:        0 4px 20px rgba(139,92,246,0.3);
    --shadow-btn-hover:  0 8px 32px rgba(139,92,246,0.5);

    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --ease-out:    cubic-bezier(0.22, 1, 0.36, 1);
    --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);

    --dur-xs:  150ms;
    --dur-sm:  250ms;
    --dur-md:  400ms;
    --dur-lg:  700ms;
}

/* ── 2. BASE RESET ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    height: 100%;
}

body {
    margin: 0;
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.65;
    color: var(--clr-text);
    background-color: var(--clr-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    min-height: 100%;
}

::selection {
    background: rgba(139,92,246,0.35);
    color: #fff;
}

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: rgba(255,255,255,0.02); }
::-webkit-scrollbar-thumb {
    background: rgba(139,92,246,0.4);
    border-radius: 10px;
}

/* ── 3. AMBIENT BACKGROUND ──────────────────────────────── */
.bg-canvas {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
    background:
        radial-gradient(ellipse 100% 60% at 50% -10%, rgba(139,92,246,0.10) 0%, transparent 55%),
        radial-gradient(ellipse 70% 50% at 100% 60%, rgba(6,182,212,0.06) 0%, transparent 50%),
        var(--clr-bg);
}

.bg-orb {
    position: absolute;
    border-radius: 50%;
    will-change: transform;
    pointer-events: none;
}

.bg-orb-1 {
    width: 900px; height: 900px;
    top: -300px; left: -200px;
    background: radial-gradient(circle at 40% 40%, rgba(139,92,246,0.22) 0%, transparent 65%);
    filter: blur(80px);
    animation: orbFloat1 28s ease-in-out infinite;
}

.bg-orb-2 {
    width: 700px; height: 700px;
    top: 25%; right: -200px;
    background: radial-gradient(circle at 60% 50%, rgba(6,182,212,0.18) 0%, transparent 65%);
    filter: blur(70px);
    animation: orbFloat2 22s ease-in-out infinite;
}

.bg-orb-3 {
    width: 550px; height: 550px;
    bottom: 5%; left: 15%;
    background: radial-gradient(circle at 50% 60%, rgba(236,72,153,0.13) 0%, transparent 65%);
    filter: blur(60px);
    animation: orbFloat3 35s ease-in-out infinite;
}

.bg-orb-4 {
    width: 400px; height: 400px;
    bottom: 30%; right: 25%;
    background: radial-gradient(circle, rgba(139,92,246,0.10) 0%, transparent 65%);
    filter: blur(50px);
    animation: orbFloat2 18s ease-in-out infinite reverse;
}

/* ── 4. KEYFRAMES ───────────────────────────────────────── */
@keyframes orbFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33%       { transform: translate(70px, -50px) scale(1.06); }
    66%       { transform: translate(-40px, 25px) scale(0.96); }
}

@keyframes orbFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    40%       { transform: translate(-60px, 40px) scale(1.08); }
    70%       { transform: translate(30px, -45px) scale(0.94); }
}

@keyframes orbFloat3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50%       { transform: translate(50px, -35px) scale(1.05); }
}

@keyframes shimmer {
    0%   { background-position: -200% center; }
    100% { background-position: 200% center; }
}

@keyframes slide-up {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes slideInDown {
    from { opacity: 0; transform: translateY(-14px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeOut {
    from { opacity: 1; }
    to   { opacity: 0; }
}

@keyframes pulse {
    0%, 100% { opacity: 0.75; }
    50%       { opacity: 1; }
}

@keyframes gradientBorder {
    0%, 100% { background-position: 0% 50%; }
    50%       { background-position: 100% 50%; }
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ── 5. LAYOUT UTILITIES ────────────────────────────────── */
main { position: relative; z-index: 1; }

.container { max-width: 1180px; }

.py-6 { padding-top: 5rem !important; padding-bottom: 5rem !important; }
.py-7 { padding-top: 7rem !important; padding-bottom: 7rem !important; }
.mt-6 { margin-top: 5rem !important; }
.mb-6 { margin-bottom: 5rem !important; }
.gap-3 { gap: 0.75rem; }

/* ── 6. TYPOGRAPHY ──────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.2;
    color: var(--clr-text);
}

.display-5 {
    font-size: clamp(2.4rem, 5.5vw, 4rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1.08;
    background: var(--grad-hero);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 8s linear infinite;
}

h2.gradient-text,
.gradient-text {
    background: var(--grad-hero);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 10s linear infinite;
}

.lead {
    font-size: 1.08rem;
    line-height: 1.8;
    color: var(--clr-text-sub);
    font-weight: 400;
}

p { color: var(--clr-text-sub); }

.text-muted { color: var(--clr-text-muted) !important; }

.fw-semibold { font-weight: 600; }
.fw-bold     { font-weight: 700; }

a {
    color: var(--clr-primary-lt);
    text-decoration: none;
    transition: color var(--dur-xs) var(--ease-in-out);
}
a:hover { color: var(--clr-secondary-lt); }

/* ── 7. GLASS CARD ──────────────────────────────────────── */
.card {
    background: var(--grad-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    backdrop-filter: var(--blur-md);
    -webkit-backdrop-filter: var(--blur-md);
    box-shadow: var(--shadow-card);
    color: var(--clr-text);
    transition: transform var(--dur-md) var(--ease-out),
                box-shadow var(--dur-md) var(--ease-out),
                border-color var(--dur-md) var(--ease-out);
    position: relative;
    overflow: hidden;
}

.card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.18) 40%, rgba(255,255,255,0.06) 100%);
    border-radius: inherit;
    pointer-events: none;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card-hover);
    border-color: rgba(139,92,246,0.28);
    background: var(--grad-card-hover);
}

.card-body { padding: 1.5rem; }
.card-compact { border-radius: var(--radius-md); }
.card-compact .card-body { padding: 1.25rem; }

.card-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--clr-text);
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.card-text {
    font-size: 0.9rem;
    line-height: 1.65;
    color: var(--clr-text-muted);
    margin-bottom: 0;
}

/* Feature card (larger glass panel) */
.feature-card {
    border-radius: var(--radius-xl);
    padding: 2.5rem;
}

.feature-card:hover { transform: translateY(-8px) scale(1.015); }

/* Product card shimmer sweep */
.product-card::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(139,92,246,0.12), transparent);
    transition: left 0.55s ease;
    pointer-events: none;
    z-index: 0;
}

.product-card:hover::before { left: 100%; }
.product-card .card-body { position: relative; z-index: 1; }

/* ── 8. HERO VISUAL ─────────────────────────────────────── */
.hero-visual {
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    background: var(--grad-card);
    border: 1px solid var(--clr-border-bright);
    backdrop-filter: var(--blur-md);
    -webkit-backdrop-filter: var(--blur-md);
    box-shadow: var(--shadow-card), 0 0 80px rgba(139,92,246,0.14);
    position: relative;
    overflow: hidden;
}

.hero-visual::before {
    content: '';
    position: absolute;
    top: -1px; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 5%, rgba(255,255,255,0.25) 50%, transparent 95%);
}

/* ── 9. ICON PILL ───────────────────────────────────────── */
.icon-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px; height: 48px;
    border-radius: 14px;
    background: rgba(139,92,246,0.12);
    border: 1px solid rgba(139,92,246,0.22);
    font-size: 1.35rem;
    margin-bottom: 0.9rem;
    transition: transform var(--dur-sm) var(--ease-spring),
                box-shadow var(--dur-sm) ease;
}

.card:hover .icon-pill {
    transform: scale(1.1);
    box-shadow: 0 0 16px var(--clr-primary-glow);
}

/* ── 10. NAVBAR ─────────────────────────────────────────── */
.navbar {
    position: relative;
    z-index: 1000;
    padding: 0.7rem 0;
    background: rgba(5,8,22,0.65);
    backdrop-filter: var(--blur-md);
    -webkit-backdrop-filter: var(--blur-md);
    border-bottom: 1px solid var(--clr-border);
    box-shadow: 0 1px 40px rgba(0,0,0,0.35);
    animation: slide-up 0.5s var(--ease-out);
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.2rem;
    letter-spacing: -0.025em;
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.navbar .nav-link {
    font-weight: 500;
    font-size: 0.875rem;
    color: var(--clr-text-sub) !important;
    padding: 0.4rem 0.75rem !important;
    border-radius: var(--radius-xs);
    transition: color var(--dur-xs) ease, background var(--dur-xs) ease;
    letter-spacing: -0.005em;
}

.navbar .nav-link:hover {
    color: var(--clr-text) !important;
    background: rgba(255,255,255,0.06);
}

.navbar .nav-cta {
    background: var(--grad-primary) !important;
    color: #fff !important;
    border-radius: var(--radius-md) !important;
    padding: 0.42rem 1.1rem !important;
    font-weight: 600 !important;
    font-size: 0.875rem !important;
    box-shadow: 0 4px 18px var(--clr-primary-glow);
    transition: transform var(--dur-xs) var(--ease-spring),
                box-shadow var(--dur-xs) ease !important;
}

.navbar .nav-cta:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 28px var(--clr-primary-glow) !important;
}

.navbar-toggler {
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-xs);
    padding: 0.35rem 0.6rem;
    background: rgba(255,255,255,0.04);
    transition: background var(--dur-xs) ease;
}

.navbar-toggler:hover { background: rgba(255,255,255,0.08); }

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(232,234,246,0.7)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ── 11. HERO SECTION ───────────────────────────────────── */
.hero-section {
    padding: 6.5rem 0 6rem;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -30%; left: 50%;
    transform: translateX(-50%);
    width: 1100px; height: 700px;
    background: radial-gradient(ellipse at 50% 40%, rgba(139,92,246,0.09) 0%, transparent 60%);
    pointer-events: none;
}

/* ── 12. BUTTONS ────────────────────────────────────────── */
.btn {
    font-family: inherit;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: -0.01em;
    border-radius: var(--radius-md);
    padding: 0.62rem 1.4rem;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: transform var(--dur-xs) var(--ease-spring),
                box-shadow var(--dur-xs) ease,
                background var(--dur-xs) ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    line-height: 1.4;
    text-decoration: none;
    vertical-align: middle;
}

.btn:active { transform: scale(0.97) !important; }

.btn-lg {
    padding: 0.82rem 2rem;
    font-size: 0.975rem;
    border-radius: 16px;
}

.btn-sm {
    padding: 0.38rem 0.9rem;
    font-size: 0.82rem;
    border-radius: var(--radius-xs);
}

.btn-primary {
    background: var(--grad-primary);
    color: #fff;
    box-shadow: var(--shadow-btn);
}
.btn-primary:hover, .btn-primary:focus {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-btn-hover);
    background: linear-gradient(135deg, #a78bfa 0%, #22d3ee 100%);
}

.btn-outline-primary {
    background: transparent;
    border: 1.5px solid rgba(139,92,246,0.45);
    color: var(--clr-primary-lt);
}
.btn-outline-primary:hover {
    background: rgba(139,92,246,0.1);
    border-color: var(--clr-primary);
    color: #c4b5fd;
    transform: translateY(-2px);
}

.btn-outline-light {
    background: rgba(255,255,255,0.04);
    border: 1.5px solid rgba(255,255,255,0.14);
    color: var(--clr-text-sub);
}
.btn-outline-light:hover {
    background: rgba(139,92,246,0.09);
    border-color: rgba(139,92,246,0.45);
    color: var(--clr-text);
    transform: translateY(-2px);
}

.btn-secondary {
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--clr-border);
    color: var(--clr-text-muted);
}
.btn-secondary:hover {
    background: rgba(255,255,255,0.10);
    color: var(--clr-text-sub);
    transform: translateY(-2px);
}

/* ── 13. BADGES ─────────────────────────────────────────── */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.3rem 0.75rem;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    border: 1px solid var(--clr-border);
    line-height: 1.4;
    backdrop-filter: var(--blur-xs);
}

.badge.bg-primary, .bg-primary.badge {
    background: rgba(139,92,246,0.18) !important;
    color: #c4b5fd !important;
    border-color: rgba(139,92,246,0.3) !important;
}

.badge.glow {
    background: var(--grad-primary) !important;
    color: #fff !important;
    border: none;
    box-shadow: 0 4px 16px var(--clr-primary-glow);
    animation: pulse 2.5s ease-in-out infinite;
}

.badge.bg-success, .bg-success.badge {
    background: rgba(16,185,129,0.14) !important;
    color: #6ee7b7 !important;
    border-color: rgba(16,185,129,0.28) !important;
}

.badge.bg-warning, .bg-warning.badge {
    background: rgba(245,158,11,0.14) !important;
    color: #fcd34d !important;
    border-color: rgba(245,158,11,0.28) !important;
}

.badge.bg-info, .bg-info.badge {
    background: rgba(6,182,212,0.14) !important;
    color: #67e8f9 !important;
    border-color: rgba(6,182,212,0.28) !important;
}

.badge.bg-secondary, .bg-secondary.badge {
    background: rgba(255,255,255,0.07) !important;
    color: var(--clr-text-muted) !important;
    border-color: var(--clr-border) !important;
}

.badge.bg-danger, .bg-danger.badge {
    background: rgba(239,68,68,0.14) !important;
    color: #fca5a5 !important;
    border-color: rgba(239,68,68,0.28) !important;
}

.text-dark { color: inherit !important; }

/* ── 14. FORMS ──────────────────────────────────────────── */
.form-label {
    font-weight: 600;
    font-size: 0.855rem;
    color: var(--clr-text-sub);
    margin-bottom: 0.4rem;
    display: block;
}

.form-control {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    color: var(--clr-text);
    padding: 0.7rem 1rem;
    font-size: 0.925rem;
    font-family: inherit;
    backdrop-filter: var(--blur-xs);
    transition: border-color var(--dur-xs) ease,
                box-shadow var(--dur-xs) ease,
                background var(--dur-xs) ease;
    width: 100%;
    outline: none;
}

.form-control::placeholder { color: rgba(232,234,246,0.28); }

.form-control:focus {
    background: rgba(255,255,255,0.07);
    border-color: rgba(139,92,246,0.55);
    box-shadow: 0 0 0 3px rgba(139,92,246,0.14), 0 0 20px rgba(139,92,246,0.15);
    color: var(--clr-text);
}

.form-select {
    background-color: rgba(255,255,255,0.04);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='rgba(232,234,246,0.45)' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.7rem center;
    background-size: 14px 10px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-xs);
    color: var(--clr-text);
    padding: 0.42rem 2.4rem 0.42rem 0.75rem;
    font-size: 0.855rem;
    font-family: inherit;
    appearance: none;
    cursor: pointer;
    backdrop-filter: var(--blur-xs);
    transition: border-color var(--dur-xs) ease, box-shadow var(--dur-xs) ease;
    outline: none;
}

.form-select-sm {
    padding: 0.32rem 2.2rem 0.32rem 0.65rem;
    font-size: 0.82rem;
}

.form-select:focus {
    border-color: rgba(139,92,246,0.5);
    box-shadow: 0 0 0 3px rgba(139,92,246,0.14);
}

.form-select option {
    background: #1a1040;
    color: var(--clr-text);
}

.form-check {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0;
    margin: 0;
}

.form-check-input {
    background: rgba(255,255,255,0.07);
    border: 1.5px solid rgba(255,255,255,0.18);
    width: 1rem; height: 1rem;
    border-radius: 4px;
    cursor: pointer;
    appearance: none;
    position: relative;
    transition: background var(--dur-xs) ease, border-color var(--dur-xs) ease;
    flex-shrink: 0;
    margin: 0;
}

.form-check-input:checked {
    background: var(--grad-primary);
    border-color: transparent;
}

.form-check-input:checked::after {
    content: '';
    position: absolute;
    left: 4px; top: 1px;
    width: 4px; height: 7px;
    border: 2px solid #fff;
    border-top: none; border-left: none;
    transform: rotate(45deg);
}

.form-check-label {
    font-size: 0.845rem;
    color: var(--clr-text-muted);
    cursor: pointer;
    transition: color var(--dur-xs) ease;
    line-height: 1.4;
}

.form-check:hover .form-check-label { color: var(--clr-text-sub); }

/* ── 15. TABLE ──────────────────────────────────────────── */
.table {
    /* Override Bootstrap 5 CSS custom properties so light-mode defaults don't bleed in */
    --bs-table-bg:         transparent;
    --bs-table-color:      var(--clr-text);
    --bs-table-border-color: rgba(255,255,255,0.05);
    --bs-table-striped-bg: rgba(139,92,246,0.04);
    --bs-table-hover-bg:   rgba(139,92,246,0.06);
    --bs-table-active-bg:  rgba(139,92,246,0.08);

    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    color: var(--clr-text);
    font-size: 0.9rem;
}

/* Force every cell and row to stay transparent — Bootstrap's
   selector `.table > :not(caption) > * > *` sets background-color
   via the variable above, but we belt-and-brace it here. */
.table > :not(caption) > * {
    background-color: transparent !important;
    border-color: rgba(255,255,255,0.05) !important;
}

.table > :not(caption) > * > * {
    background-color: transparent !important;
    color: var(--clr-text);
    border-color: rgba(255,255,255,0.05) !important;
    box-shadow: none !important;
}

.table th {
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--clr-text-muted);
    padding: 1rem 1.25rem;
    background: rgba(139,92,246,0.07) !important;
    border-bottom: 1px solid var(--clr-border) !important;
    white-space: nowrap;
}

.table td {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid rgba(255,255,255,0.04) !important;
    vertical-align: middle;
}

.table tbody tr { transition: background var(--dur-xs) ease; }
.table tbody tr:hover td { background: rgba(139,92,246,0.055) !important; }
.table tbody tr:last-child td { border-bottom: none !important; }

.table-responsive {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--clr-border);
    background: var(--grad-card);
    backdrop-filter: var(--blur-md);
    -webkit-backdrop-filter: var(--blur-md);
}

.align-middle td, .align-middle th { vertical-align: middle; }

/* ── 16. ALERTS ─────────────────────────────────────────── */
.alert {
    border-radius: var(--radius-md);
    padding: 0.85rem 1.1rem;
    border: 1px solid;
    backdrop-filter: var(--blur-sm);
    font-size: 0.88rem;
    line-height: 1.5;
    animation: slideInDown 0.35s var(--ease-spring);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.alert-success {
    background: rgba(16,185,129,0.1);
    border-color: rgba(16,185,129,0.22);
    color: #6ee7b7;
}

.alert-danger {
    background: rgba(239,68,68,0.1);
    border-color: rgba(239,68,68,0.22);
    color: #fca5a5;
}

.alert-info {
    background: rgba(6,182,212,0.1);
    border-color: rgba(6,182,212,0.22);
    color: #67e8f9;
}

.btn-close {
    background: transparent;
    border: none;
    opacity: 0.5;
    filter: invert(1);
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
}

.btn-close:hover { opacity: 0.9; }

/* ── 17. LIST GROUP ─────────────────────────────────────── */
.list-group { background: transparent; border: none; }

.list-group-item {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    color: var(--clr-text);
    padding: 0.7rem 0;
    font-size: 0.9rem;
    transition: color var(--dur-xs) ease;
}

.list-group-item:last-child { border-bottom: none; }

/* ── 18. SECTIONS ───────────────────────────────────────── */
section { position: relative; z-index: 1; }

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--clr-primary-lt);
    margin-bottom: 0.85rem;
    opacity: 0.85;
}

.section-label::before {
    content: '';
    display: inline-block;
    width: 20px; height: 2px;
    border-radius: 2px;
    background: var(--grad-primary);
}

.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(139,92,246,0.3) 30%, rgba(6,182,212,0.2) 70%, transparent 100%);
    margin: 0;
    border: none;
}

/* ── 19. FOOTER ─────────────────────────────────────────── */
footer {
    position: relative;
    z-index: 1;
    background: rgba(5,8,22,0.85);
    backdrop-filter: var(--blur-md);
    -webkit-backdrop-filter: var(--blur-md);
    border-top: 1px solid var(--clr-border);
    padding: 2.25rem 0;
}

/* ── 20. SCROLL REVEAL ──────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(22px);
}

.reveal.animated {
    animation: slide-up var(--dur-md) var(--ease-out) forwards;
}

.reveal.animated:nth-child(2) { animation-delay: 0.08s; }
.reveal.animated:nth-child(3) { animation-delay: 0.16s; }
.reveal.animated:nth-child(4) { animation-delay: 0.24s; }

.hero-section .reveal {
    animation: slide-up 0.65s var(--ease-out) forwards;
}
.hero-section .reveal:nth-child(1) { animation-delay: 0.08s; }
.hero-section .reveal:nth-child(2) { animation-delay: 0.18s; }
.hero-section .reveal:nth-child(3) { animation-delay: 0.28s; }

/* ── 21. ADMIN SPECIFICS ────────────────────────────────── */
.user-avatar {
    width: 34px; height: 34px;
    border-radius: 9px;
    background: var(--grad-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0;
    letter-spacing: 0;
}

.entitlement-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 0.5rem;
}

/* ── 22. STAT CARD ──────────────────────────────────────── */
.stat-value {
    font-size: 2.25rem;
    font-weight: 900;
    line-height: 1;
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.04em;
}

/* ── 23. DASHBOARD ──────────────────────────────────────── */
.dash-sidebar-cta {
    background: linear-gradient(135deg, rgba(139,92,246,0.12) 0%, rgba(6,182,212,0.08) 100%);
    border: 1px solid rgba(139,92,246,0.2);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    position: relative;
    overflow: hidden;
}

.dash-sidebar-cta::before {
    content: '';
    position: absolute;
    top: -1px; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(139,92,246,0.5), transparent);
}

/* ── 24. UTILITY ────────────────────────────────────────── */
.shadow-sm  { box-shadow: 0 2px 12px rgba(0,0,0,0.18) !important; }
.shadow     { box-shadow: 0 8px 32px rgba(0,0,0,0.25) !important; }
.shadow-lg  { box-shadow: 0 20px 60px rgba(0,0,0,0.35) !important; }

:focus-visible {
    outline: 2px solid rgba(139,92,246,0.55);
    outline-offset: 3px;
}

.opacity-75 { opacity: 0.75; }
.opacity-85 { opacity: 0.85; }
.opacity-65 { opacity: 0.65; }

/* ── 25. RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 991px) {
    .navbar-collapse {
        background: rgba(5,8,22,0.95);
        backdrop-filter: var(--blur-md);
        border: 1px solid var(--clr-border);
        border-radius: var(--radius-md);
        margin-top: 0.5rem;
        padding: 0.75rem 1rem;
    }

    .navbar .nav-cta {
        margin-top: 0.5rem;
        display: inline-block;
    }
}

@media (max-width: 768px) {
    .hero-section { padding: 4.5rem 0 3.5rem; }
    .display-5    { font-size: 2.3rem !important; }
    .feature-card { padding: 1.75rem; }
    .py-6         { padding-top: 3.5rem !important; padding-bottom: 3.5rem !important; }
    .py-7         { padding-top: 5rem !important; padding-bottom: 5rem !important; }
}

/* ── 26. MODAL ──────────────────────────────────────────── */
.modal-backdrop.show { opacity: 0.65; }

.modal-content {
    background: linear-gradient(145deg, rgba(12,8,35,0.97) 0%, rgba(8,5,22,0.98) 100%);
    border: 1px solid rgba(139,92,246,0.22);
    border-radius: var(--radius-xl);
    backdrop-filter: var(--blur-lg);
    -webkit-backdrop-filter: var(--blur-lg);
    box-shadow: 0 30px 90px rgba(0,0,0,0.7), 0 0 0 1px rgba(255,255,255,0.04) inset;
    color: var(--clr-text);
    overflow: hidden;
}

.modal-content::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(139,92,246,0.5), rgba(6,182,212,0.3), transparent);
    pointer-events: none;
}

.modal-header {
    border-bottom: 1px solid var(--clr-border);
    padding: 1.5rem 1.75rem;
    background: rgba(139,92,246,0.04);
}

.modal-title { font-weight: 700; color: var(--clr-text); }

.modal-body { padding: 1.75rem; }

.modal-footer {
    border-top: 1px solid var(--clr-border);
    padding: 1.1rem 1.75rem;
    background: rgba(0,0,0,0.15);
}

/* Section headings inside modal */
.modal-section-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: var(--clr-text-muted);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.modal-section-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--clr-border);
}

/* Product access tiles inside modal */
.modal-product-item {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    padding: 0.75rem 0.9rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: background var(--dur-xs) ease, border-color var(--dur-xs) ease;
}

.modal-product-item:hover {
    background: rgba(139,92,246,0.07);
    border-color: rgba(139,92,246,0.25);
}

.modal-product-item.is-granted {
    background: rgba(16,185,129,0.07);
    border-color: rgba(16,185,129,0.2);
}

.modal-product-item .form-check-input { margin-top: 0.15rem; flex-shrink: 0; }

.modal-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 0.6rem;
}

/* Status toast inside modal */
.modal-toast {
    font-size: 0.82rem;
    padding: 0.5rem 0.8rem;
    border-radius: var(--radius-xs);
    animation: slideInDown 0.25s var(--ease-out);
}

/* ── 27. PRODUCT PAGE ───────────────────────────────────── */
.product-hero-visual { position: relative; }

.product-hero-visual > img {
    transition: opacity 0.25s ease;
}

.screenshot-thumb-item {
    width: 72px;
    height: 48px;
    border-radius: 6px;
    overflow: hidden;
    border: 2px solid var(--clr-border);
    cursor: pointer;
    flex-shrink: 0;
    transition: border-color var(--dur-xs) ease,
                transform var(--dur-xs) ease;
}

.screenshot-thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.screenshot-thumb-item:hover {
    border-color: rgba(255,255,255,0.3);
    transform: translateY(-2px);
}

.screenshot-thumb-item.active {
    border-color: var(--clr-primary);
    box-shadow: 0 0 0 1px var(--clr-primary);
}

.product-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    padding: 0.7rem 0.9rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    color: var(--clr-text-sub);
    line-height: 1.5;
    transition: background var(--dur-xs) ease,
                border-color var(--dur-xs) ease;
}

.product-feature-item:hover {
    background: rgba(255,255,255,0.05);
    border-color: var(--clr-border-bright);
}

.product-feature-check {
    font-size: 0.82rem;
    font-weight: 900;
    margin-top: 0.1rem;
    flex-shrink: 0;
}

/* Admin screenshot thumbnails inside product form */
.screenshot-admin-thumb {
    position: relative;
    width: 80px;
    height: 56px;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid var(--clr-border);
    flex-shrink: 0;
}

.screenshot-admin-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.screenshot-admin-thumb .thumb-delete {
    position: absolute;
    top: 2px; right: 2px;
    width: 18px; height: 18px;
    border-radius: 50%;
    background: rgba(239,68,68,0.9);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    color: #fff;
    padding: 0;
    opacity: 0;
    transition: opacity var(--dur-xs) ease;
    line-height: 1;
}

.screenshot-admin-thumb:hover .thumb-delete { opacity: 1; }

/* ── 28. PRICING TABLE ──────────────────────────────────── */
.pricing-card {
    background: var(--grad-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-xl);
    padding: 2.25rem 2rem 2rem;
    position: relative;
    overflow: hidden;
    backdrop-filter: var(--blur-md);
    -webkit-backdrop-filter: var(--blur-md);
    box-shadow: var(--shadow-card);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform var(--dur-md) var(--ease-out),
                box-shadow var(--dur-md) var(--ease-out);
}

.pricing-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 5%, rgba(255,255,255,0.12) 50%, transparent 95%);
    pointer-events: none;
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card-hover);
}

.pricing-card--highlighted::after {
    display: none;
}

.pricing-popular-badge {
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    padding: 0.22rem 1.1rem;
    border-radius: 0 0 10px 10px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: #fff;
    white-space: nowrap;
}

.pricing-tier-name {
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--clr-text-muted);
    margin-bottom: 1rem;
    margin-top: 1rem;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    gap: 0.1rem;
    margin-bottom: 1.5rem;
    line-height: 1;
}

.pricing-currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--clr-text);
    align-self: flex-start;
    margin-top: 0.5rem;
}

.pricing-amount {
    font-size: 3.75rem;
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1;
    color: var(--clr-text);
}

.pricing-period {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--clr-text-muted);
    align-self: flex-end;
    margin-bottom: 0.35rem;
    margin-left: 0.1rem;
}

.pricing-price-contact {
    font-size: 2.25rem;
    font-weight: 900;
    letter-spacing: -0.03em;
    color: var(--clr-text);
    margin-bottom: 1.5rem;
}

.pricing-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    flex-grow: 1;
}

.pricing-features-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    font-size: 0.88rem;
    color: var(--clr-text-sub);
    line-height: 1.5;
}

.pricing-check {
    font-size: 0.78rem;
    font-weight: 900;
    margin-top: 0.15rem;
    flex-shrink: 0;
}

.pricing-cta {
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: var(--radius-md);
    transition: transform var(--dur-xs) var(--ease-spring),
                box-shadow var(--dur-xs) ease;
}

.pricing-cta:hover {
    transform: translateY(-2px);
    color: #fff !important;
}

/* ── 29. PRODUCT NAVBAR ─────────────────────────────────── */
.product-navbar {
    position: sticky;
    top: 0;
    z-index: 1030;
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    background: rgba(5,8,22,0.82);
    backdrop-filter: var(--blur-sm);
    -webkit-backdrop-filter: var(--blur-sm);
}

.product-navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 62px;
    gap: 1rem;
}

.product-navbar-brand {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    text-decoration: none;
    min-width: 0;
}

.product-navbar-logo {
    height: 64px;
    max-width: 160px;
    width: auto;
    object-fit: contain;
    display: block;
}

.product-navbar-name {
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 200px;
    display: block;
}

.product-navbar-powered {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    text-decoration: none;
    opacity: 0.45;
    transition: opacity var(--dur-xs) ease;
    color: var(--clr-text-muted);
    font-size: 0.74rem;
    font-weight: 500;
    white-space: nowrap;
}

.product-navbar-powered:hover {
    opacity: 0.75;
}

.product-navbar-noryx-logo {
    height: 18px;
    width: auto;
    object-fit: contain;
    display: block;
}

.product-navbar-actions {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    flex-shrink: 0;
}

@media (max-width: 575.98px) {
    .product-navbar-powered { display: none; }
    .product-navbar-name    { max-width: 130px; font-size: 0.92rem; }
}

/* ── 30. PRODUCT FOOTER ─────────────────────────────────── */
.product-footer {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 3.5rem 0 0;
    margin-top: 2rem;
    background: rgba(5,8,22,0.6);
}

.product-footer-inner {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2.5rem;
    padding-bottom: 3rem;
}

.product-footer-logo {
    height: 36px;
    max-width: 180px;
    width: auto;
    object-fit: contain;
    display: block;
    margin-bottom: 0.85rem;
}

.product-footer-name {
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: -0.025em;
    display: block;
    margin-bottom: 0.6rem;
}

.product-footer-tagline {
    font-size: 0.84rem;
    color: var(--clr-text-muted);
    margin: 0;
    line-height: 1.55;
    max-width: 260px;
}

.product-footer-col-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--clr-text-muted);
    margin-bottom: 0.85rem;
}

.product-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.product-footer-links a {
    font-size: 0.88rem;
    color: var(--clr-text-sub);
    text-decoration: none;
    transition: color var(--dur-xs) ease;
}

.product-footer-links a:hover {
    color: var(--clr-text);
}

.product-footer-powered-link {
    display: inline-block;
    text-decoration: none;
    opacity: 0.6;
    transition: opacity var(--dur-xs) ease;
    margin-bottom: 0.85rem;
}

.product-footer-powered-link:hover {
    opacity: 0.9;
}

.product-footer-noryx-logo {
    height: 22px;
    width: auto;
    object-fit: contain;
    display: block;
}

.product-footer-powered-desc {
    font-size: 0.8rem;
    color: var(--clr-text-muted);
    line-height: 1.55;
    margin: 0;
}

.product-footer-bottom {
    border-top: 1px solid var(--clr-border);
    padding: 1rem 0;
    font-size: 0.78rem;
    color: var(--clr-text-muted);
}

@media (max-width: 767.98px) {
    .product-footer-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .product-footer-inner {
        grid-template-columns: 1fr 1fr;
    }
}

/* ── 31. SERVER RACK WIDGET ─────────────────────────────── */
.server-rack {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: #070707;
    border: 1px solid rgba(255,255,255,0.1);
    border-top-color: rgba(255,255,255,0.14);
    border-bottom-color: rgba(0,0,0,0.7);
    border-radius: 8px;
    padding: 6px 7px;
    box-shadow: inset 0 2px 10px rgba(0,0,0,0.7),
                0 0 0 1px rgba(255,255,255,0.02),
                0 4px 16px rgba(0,0,0,0.5);
}

.server-panel {
    display: flex;
    align-items: stretch;
    height: 40px;
    background: linear-gradient(180deg, #242424 0%, #131313 55%, #1c1c1c 100%);
    border: 1px solid rgba(255,255,255,0.09);
    border-top-color: rgba(255,255,255,0.15);
    border-bottom-color: rgba(0,0,0,0.55);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.06),
                inset 0 -1px 0 rgba(0,0,0,0.4);
    text-decoration: none;
    cursor: pointer;
    transition: background var(--dur-xs) ease, border-color var(--dur-xs) ease;
}

a.server-panel:hover {
    background: linear-gradient(180deg, #2e2e2e 0%, #1a1a1a 55%, #262626 100%);
    border-top-color: rgba(255,255,255,0.22);
}

a.server-panel:hover .server-lcd {
    text-shadow: 0 0 6px rgba(74,222,128,1), 0 0 20px rgba(74,222,128,0.7);
}

.server-grill {
    flex: 1;
    min-width: 0;
    background-color: #080808;
    background-image: radial-gradient(circle, rgba(255,255,255,0.18) 1px, transparent 1px);
    background-size: 5px 5px;
    border-right: 1px solid rgba(255,255,255,0.06);
}

.server-leds {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 0 11px;
    border-right: 1px solid rgba(255,255,255,0.06);
    flex-shrink: 0;
}

.server-led {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    display: block;
    flex-shrink: 0;
}

.server-led-pwr {
    background: #10b981;
    box-shadow: 0 0 4px #10b981, 0 0 10px rgba(16,185,129,0.55);
    animation: srv-pwr-pulse 3s ease-in-out infinite;
}

.server-led-act {
    background: #fbbf24;
    box-shadow: 0 0 3px #fbbf24, 0 0 7px rgba(251,191,36,0.45);
    animation: srv-act-blink 1.8s linear infinite;
}

.server-lcd {
    display: flex;
    align-items: center;
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #4ade80;
    background: #010a01;
    padding: 0 9px;
    margin: 7px 8px;
    border-radius: 3px;
    border: 1px solid rgba(74,222,128,0.22);
    text-shadow: 0 0 5px rgba(74,222,128,1), 0 0 14px rgba(74,222,128,0.5);
    box-shadow: inset 0 0 12px rgba(0,0,0,0.95);
    white-space: nowrap;
    flex-shrink: 0;
    user-select: none;
}

@keyframes srv-pwr-pulse {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.5; }
}

@keyframes srv-act-blink {
    0%   { opacity: 1; }
    8%   { opacity: 0.06; }
    18%  { opacity: 1; }
    26%  { opacity: 0.06; }
    36%  { opacity: 1; }
    52%  { opacity: 0.45; }
    62%  { opacity: 1; }
    74%  { opacity: 0.06; }
    84%  { opacity: 1; }
    100% { opacity: 0.06; }
}

/* ── 32. PRODUCT MARQUEE ────────────────────────────────── */
.product-marquee-track {
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
}

.product-marquee-inner {
    display: flex;
    align-items: center;
    width: max-content;
    animation: pmarquee 20s linear infinite;
}

.product-marquee-track:hover .product-marquee-inner {
    animation-play-state: paused;
}

.product-marquee-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.1rem 3rem;
    text-decoration: none;
    flex-shrink: 0;
    border-radius: var(--radius-md);
    border: 1px solid transparent;
    transition: background var(--dur-sm) ease, border-color var(--dur-sm) ease;
    position: relative;
}

.product-marquee-item::after {
    content: '';
    position: absolute;
    right: 0; top: 20%; bottom: 20%;
    width: 1px;
    background: var(--clr-border);
}

.product-marquee-item:hover {
    background: rgba(255,255,255,0.03);
    border-color: var(--clr-border);
}

/* Logo variant */
.product-marquee-item img {
    height: 88px;
    max-width: 280px;
    width: auto;
    object-fit: contain;
    display: block;
    filter: grayscale(1) opacity(0.35);
    transition: filter 0.45s ease;
}

.product-marquee-item:hover img {
    filter: grayscale(0) opacity(1);
}

/* Text fallback variant */
.product-marquee-name {
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: -0.025em;
    white-space: nowrap;
    display: block;
    color: var(--clr-text-muted);
    filter: grayscale(1);
    opacity: 0.35;
    transition: opacity 0.45s ease, filter 0.45s ease, -webkit-text-fill-color 0.45s ease;
    background: var(--pmi-grad);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.product-marquee-item:hover .product-marquee-name {
    filter: grayscale(0);
    opacity: 1;
}

.product-marquee-platforms {
    display: flex;
    justify-content: center;
    margin-top: 0.5rem;
    gap: 0.3rem;
    filter: grayscale(1) opacity(0.3);
    transition: filter 0.45s ease;
}
.product-marquee-item:hover .product-marquee-platforms {
    filter: grayscale(0) opacity(0.9);
}
.product-marquee-item {
    flex-direction: column;
}

@keyframes pmarquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}


