/* Base Background */
        body {
            background-color: #050505;
            color: #FFFFFF;
            overflow-x: hidden;
        }

        /* Hero Grid - Less dense (75px) and fading smoothly */
        .hero-grid {
            position: absolute;
            inset: 0;
            background-size: 75px 75px;
            background-image: 
                linear-gradient(to right, rgba(247, 138, 175, 0.07) 1px, transparent 1px),
                linear-gradient(to bottom, rgba(247, 138, 175, 0.07) 1px, transparent 1px);
            /* Smooth fade out at the bottom to transition seamlessly into the solid dark background */
            mask-image: linear-gradient(to bottom, black 0%, transparent 100%);
            -webkit-mask-image: linear-gradient(to bottom, black 0%, transparent 100%);
            z-index: 0;
            pointer-events: none;
        }

        /* ═══ TYPOGRAPHY — Pink bubble 3D with diagonal stack ═══ */
        .pixel-heading {
            font-family: 'Fredoka', sans-serif;
            font-weight: 700;
            color: #F78AAF;
            letter-spacing: -0.01em;
            text-shadow:
                1px 1px 0 #d16289,
                2px 2px 0 #b0567a,
                3px 3px 0 #8f4462,
                4px 4px 0 #6e3149;
        }
        
        .pixel-sub {
            font-family: 'Fredoka', sans-serif;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.32em;
            color: #FFC4D8;
        }

        /* Section headings (all h2.font-pixel) get the same pink bubble treatment */
        h2.font-pixel {
            color: #F78AAF !important;
            font-weight: 700;
            letter-spacing: -0.01em;
            text-shadow:
                1px 1px 0 #cc648c,
                2px 2px 0 #a03d64,
                3px 4px 0 #7d2c4c,
                4px 6px 10px rgba(0,0,0,0.5),
                0 0 28px rgba(247,138,175,0.4) !important;
        }

        /* Feature-card titles (h3.font-pixel) — smaller diagonal bubble stack */
        h3.font-pixel {
            font-weight: 700;
            letter-spacing: -0.005em;
            text-shadow:
                1px 1px 0 rgba(204,100,140,0.9),
                2px 2px 0 rgba(160,61,100,0.75),
                3px 4px 8px rgba(0,0,0,0.4);
        }

        /* Big pink stat numbers (in status dashboard + cards) */
        .font-pixel.text-3xl,
        .font-pixel.text-2xl {
            color: #F78AAF !important;
            font-weight: 700;
            letter-spacing: -0.02em;
            text-shadow:
                1px 1px 0 #cc648c,
                2px 2px 0 #a03d64,
                3px 4px 0 #7d2c4c,
                4px 6px 12px rgba(0,0,0,0.55),
                0 0 24px rgba(247,138,175,0.45);
        }
        /* Fredoka needs slightly bigger optical size for numbers */
        .font-pixel.text-3xl { font-size: 2.35rem !important; line-height: 1 !important; }

        /* ═══ BUBBLE BUTTONS (glossy pink w/ white text) ═══ */
        .btn-pixel-primary {
            background: linear-gradient(180deg, #FFA5C5 0%, #F78AAF 50%, #de6c92 100%);
            color: #FFFFFF;
            font-family: 'Fredoka', sans-serif;
            font-weight: 600;
            letter-spacing: 0.02em;
            text-shadow: 0 1px 2px rgba(120,30,60,0.55);
            border: 1px solid rgba(255,255,255,0.35);
            box-shadow:
                inset 0 1px 0 rgba(255,255,255,0.7),
                inset 0 -3px 0 rgba(0,0,0,0.12),
                0 5px 0 #a94670,
                0 10px 22px rgba(247,138,175,0.5);
            transition: all 0.16s ease;
        }
        .btn-pixel-primary:hover {
            transform: translateY(2px);
            color: #FFFFFF;
            box-shadow:
                inset 0 1px 0 rgba(255,255,255,0.7),
                inset 0 -3px 0 rgba(0,0,0,0.12),
                0 3px 0 #a94670,
                0 6px 16px rgba(247,138,175,0.55);
        }
        .btn-pixel-primary:active {
            transform: translateY(4px);
            box-shadow:
                inset 0 1px 0 rgba(255,255,255,0.55),
                inset 0 -2px 6px rgba(120,30,60,0.35),
                0 0 0 #a03d64,
                0 3px 10px rgba(247,138,175,0.45);
        }

        .btn-pixel-secondary {
            background: rgba(247,138,175,0.10);
            color: #FFFFFF;
            border: 1.5px solid rgba(247,138,175,0.6);
            font-family: 'Fredoka', sans-serif;
            font-weight: 600;
            letter-spacing: 0.02em;
            box-shadow:
                inset 0 1px 0 rgba(255,255,255,0.08),
                0 4px 0 rgba(247,138,175,0.28),
                0 8px 18px rgba(247,138,175,0.18);
            transition: all 0.16s ease;
        }
        .btn-pixel-secondary:hover {
            background: rgba(247,138,175,0.18);
            border-color: rgba(247,138,175,0.85);
            transform: translateY(2px);
            box-shadow:
                inset 0 1px 0 rgba(255,255,255,0.12),
                0 1px 0 rgba(160,61,100,0.5),
                0 5px 14px rgba(247,138,175,0.28);
        }

        /* Glass Cards */
        .glass-card {
            background: rgba(17, 17, 17, 0.6);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid rgba(247, 138, 175, 0.15);
            border-radius: 22px;
            transition: transform 0.3s ease, border-color 0.3s ease;
        }
        .glass-card:hover {
            border-color: rgba(247, 138, 175, 0.4);
            transform: translateY(-4px);
        }

        /* Reveal Animations */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #050505;
        }
        ::-webkit-scrollbar-thumb {
            background: #F78AAF;
            border-radius: 4px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #FFC4D8;
        }

     @keyframes float-ui {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-6px) rotate(0.5deg); }
        }
        @keyframes float-mascot {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-12px) rotate(-1.5deg); }
        }
        .animate-float-ui {
            animation: float-ui 6s ease-in-out infinite;
        }
        .animate-float-mascot {
            animation: float-mascot 4.5s ease-in-out infinite;
        }



  /* Sharp Peak Line Chart Animation */
        @keyframes draw-sharp-line {
            0% { stroke-dashoffset: 1000; }
            100% { stroke-dashoffset: 0; }
        }
        @keyframes fill-in {
            0% { opacity: 0; transform: translateY(10px); }
            100% { opacity: 1; transform: translateY(0); }
        }
        .anim-sharp-line {
            stroke-dasharray: 1000;
            animation: draw-sharp-line 2s ease-out forwards;
        }
        .anim-fill-grad {
            animation: fill-in 1.5s ease-out 1s forwards;
            opacity: 0; /* starts hidden until animation */
        }
        
        /* Radar Sweeper */
        @keyframes radar-spin {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }
        .radar-sweep {
            background: conic-gradient(from 0deg, transparent 75%, rgba(39, 201, 63, 0.7) 100%);
            animation: radar-spin 2s linear infinite;
            border-radius: 50%;
        }

        /* Ping Ripple */
        @keyframes ripple {
            0% { transform: scale(0.8); opacity: 1; border-width: 2px; }
            100% { transform: scale(3.5); opacity: 0; border-width: 0px; }
        }
        .anim-ripple::before, .anim-ripple::after {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 50%;
            border: 1px solid #F78AAF;
            background: rgba(247, 138, 175, 0.1);
            animation: ripple 2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
        }
        .anim-ripple::after {
            animation-delay: 1s;
        }

        /* Terminal Cursor Blink */
        @keyframes blink {
            0%, 100% { opacity: 1; }
            50% { opacity: 0; }
        }
        .cursor-blink { animation: blink 1s step-end infinite; }


.lf-wrap {
    max-width: 69rem;
    margin: 0 auto;
    padding: 0 0 8px;
}

.lf-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 6px 10px;
}

.lf-head-l {
    display: flex;
    align-items: center;
    gap: 7px;
}

.lf-live-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #27c93f;
    box-shadow: 0 0 7px rgba(39, 201, 63, 0.9);
    animation: lf-dot 2.2s ease-in-out infinite;
}

@keyframes lf-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.45; transform: scale(1.4); }
}

.lf-title {
    font-family: 'Fredoka', sans-serif;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: rgba(247, 138, 175, 0.75);
}

.lf-total {
    font-family: 'Fredoka', sans-serif;
    font-size: 10px;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.2);
    transition: color 0.4s;
}

/* Outer track container */
.lf-outer {
    position: relative;
    overflow: hidden;
}

.lf-mask-l,
.lf-mask-r {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 72px;
    z-index: 5;
    pointer-events: none;
}

.lf-mask-l { left:  0; background: linear-gradient(to right, #050505 35%, transparent); }
.lf-mask-r { right: 0; background: linear-gradient(to left,  #050505 35%, transparent); }

/* Scrolling track */
.lf-track {
    display: flex;
    align-items: center;
    gap: 7px;
    width: max-content;
    padding: 2px 0 4px;
    animation: lf-scroll 55s linear infinite;
}

.lf-track:hover { animation-play-state: paused; }

@keyframes lf-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Card pill */
.lf-card {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 5px 10px 5px 6px;
    border-radius: 10px;
    border: 1px solid rgba(247, 138, 175, 0.13);
    background: rgba(255, 255, 255, 0.025);
    flex-shrink: 0;
    cursor: default;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.lf-card:hover {
    border-color: rgba(247, 138, 175, 0.30);
    background: rgba(247, 138, 175, 0.06);
}

/* Device icon */
.lf-icon {
    width: 22px;
    height: 22px;
    border-radius: 7px;
    background: rgba(247, 138, 175, 0.10);
    border: 1px solid rgba(247, 138, 175, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.lf-icon svg {
    width: 11px;
    height: 11px;
    fill: #F78AAF;
}

/* Info block */
.lf-info {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.lf-name {
    font-family: 'Courier New', Courier, monospace;
    font-size: 11px;
    font-weight: 700;
    color: #e2cdd6;
    letter-spacing: 0.03em;
    line-height: 1;
}

.lf-meta {
    display: flex;
    align-items: center;
    gap: 4px;
    line-height: 1;
}

.lf-device {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: rgba(247, 138, 175, 0.6);
}

.lf-dot-sep {
    width: 2px;
    height: 2px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    flex-shrink: 0;
}

.lf-time {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.22);
    letter-spacing: 0.02em;
}



  @keyframes timeline-glow {
        0%, 100% { box-shadow: 0 0 4px rgba(247, 138, 175, 0.18); }
        50% { box-shadow: 0 0 12px rgba(247, 138, 175, 0.45); }
    }

    .download-os-tab {
        color: #d1d5db;
        transition: all 0.25s ease;
        opacity: 0.8;
    }

    .download-os-tab:hover {
        opacity: 1;
        border-color: rgba(247, 138, 175, 0.38);
        transform: translateY(-1px);
    }

    .download-os-tab.active {
        opacity: 1;
        color: #fff;
        background: rgba(247, 138, 175, 0.12);
        border-color: rgba(247, 138, 175, 0.62);
        box-shadow: 0 0 16px rgba(247, 138, 175, 0.08);
    }

    .download-steps-wrap {
        position: relative;
    }

    .download-steps-line {
        position: absolute;
        top: 0.55rem;
        bottom: 0.55rem;
        left: 0;
        width: 2px;
        border-radius: 999px;
        background: linear-gradient(
            to bottom,
            rgba(247,138,175,0.95),
            rgba(247,138,175,0.45),
            rgba(247,138,175,0.10)
        );
        box-shadow: 0 0 14px rgba(247,138,175,0.18);
        animation: timeline-glow 3s ease-in-out infinite;
    }

    .download-step-item {
        position: relative;
    
    }

    .download-step-item::before {
        content: "";
        position: absolute;
        left: -1.75rem;
        top: 0.48rem;
        width: 10px;
        height: 10px;
        border-radius: 999px;
        background: radial-gradient(circle, #ffd8e7 0%, #f59fbb 55%, #f59fbb 100%);
        border: 2px solid rgba(12, 12, 12, 0.95);
        box-shadow:
            0 0 0 1px rgba(247,138,175,0.28),
            0 0 10px rgba(247,138,175,0.28);
    }

    .download-step-badge {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 1.55rem;
        height: 1rem;
        padding: 0 0.32rem;
        border-radius: 999px;
        font-size: 7px;
        line-height: 1;
        letter-spacing: 0.12em;
        color: #f59fbb;
        background: rgba(247, 138, 175, 0.12);
        border: 1px solid rgba(247, 138, 175, 0.35);
        font-weight: 700;
    }

    .download-steps-panel {
        display: none;
        animation: fadeInDownload 0.28s ease;
    }

    .download-steps-panel.active {
        display: block;
    }

    @keyframes fadeInDownload {
        from {
            opacity: 0;
            transform: translateY(6px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .download-preview-wrap {
        display: flex;
        justify-content: center;
        align-items: flex-start;
	padding-top: 10px !important;
   
    }

    .download-preview {
        position: relative;
        width: 100%;
        max-width: 360px;
        margin-inline: auto;
    }

    .download-preview-glow {
        position: absolute;
        inset: 8% 6%;
        background: rgba(247, 138, 175, 0.10);
        filter: blur(60px);
        border-radius: 999px;
        pointer-events: none;
    }

    .download-preview-frame {
        position: relative;
        border-radius: 18px;
        overflow: hidden;
        border: 1px solid rgba(247, 138, 175, 0.22);
        background: #111;
        box-shadow: 0 0 28px rgba(247,138,175,0.08);
    }

    @media (min-width: 1024px) {
    

        .download-preview {
            max-width: 390px;
        }
    }

    @media (max-width: 1023px) {
        .download-steps-line {
            left: 1px;
        }

        .download-preview-wrap {
            margin-top: 0.5rem;
        }

        .download-preview {
            max-width: 300px;
        }
    }


.in-action-mascot {
    position: absolute;
    left: -72px;
    bottom: -6px;
    width: 180px;
    opacity: 0.88;
    pointer-events: none;
    z-index: 0;
    filter: drop-shadow(0 0 24px rgba(247, 138, 175, 0.14));
}

.action-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 14px;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(255,255,255,0.118), rgba(255,255,255,0.108));
    border: 1px solid rgba(247, 138, 175, 0.13);
    box-shadow:
        0 10px 24px rgba(0, 0, 0, 0.20),
        0 0 0 1px rgba(255,255,255,0.012) inset;
    backdrop-filter: blur(8px);
    transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
    overflow: hidden;
}

.action-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(247, 138, 175, 0.04) 0%,
        rgba(247, 138, 175, 0.012) 38%,
        rgba(0, 0, 0, 0) 100%
    );
    pointer-events: none;
}

.action-card:hover {
    transform: translateY(-3px);
    border-color: rgba(247, 138, 175, 0.24);
    box-shadow:
        0 16px 34px rgba(0, 0, 0, 0.26),
        0 0 18px rgba(247, 138, 175, 0.06);
}

.action-card-top {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}

.action-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 26px;
    padding: 0 9px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #fbe4ec;
    background: rgba(247, 138, 175, 0.12);
    border: 1px solid rgba(247, 138, 175, 0.24);
}

.action-pill-soft {
    color: #d8b4c4;
    background: rgba(255, 255, 255, 0.035);
    border-color: rgba(255, 255, 255, 0.07);
}

.action-meta {
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #7b7b86;
}

.mac-frame {
    position: relative;
    z-index: 1;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(247, 138, 175, 0.14);
    background: #111214;
    box-shadow:
        0 0 0 1px rgba(255,255,255,0.025) inset,
        0 10px 24px rgba(0,0,0,0.22);
}

.mac-frame-bar {
    height: 32px;
    padding: 0 11px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    background: linear-gradient(180deg, #1d1e22 0%, #17181b 100%);
}

.mac-dots {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

.mac-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    display: inline-block;
}

.mac-dot-red { background: #ff5f57; }
.mac-dot-yellow { background: #febc2e; }
.mac-dot-green { background: #28c840; }

.mac-frame-title {
    flex: 1;
    text-align: center;
    padding-right: 40px;
    font-size: 10px;
    line-height: 1;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #8b8d96;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mac-frame-screen {
    position: relative;
    aspect-ratio: 615 / 385;
    background: #0c0c0f;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mac-frame-screen img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #0c0c0f;
}

.action-card-body {
    position: relative;
    z-index: 1;
    padding-top: 0;
}

.action-stat {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    height: 22px;
    padding: 0 8px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    color: #f59fbb;
    background: rgba(247, 138, 175, 0.10);
    border: 1px solid rgba(247, 138, 175, 0.22);
    flex-shrink: 0;
}

.action-badge {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 0 10px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: #d5d7de;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.065);
}

@media (max-width: 1279px) {
    .in-action-mascot {
        left: -40px;
        width: 145px;
        opacity: 0.68;
    }
}

@media (max-width: 1023px) {
    .action-card {
        padding: 13px;
        border-radius: 18px;
    }
}

@media (max-width: 767px) {
    .mac-frame-title {
        padding-right: 0;
        text-align: right;
        font-size: 9px;
        letter-spacing: 0.10em;
    }

    .action-card-top {
        align-items: flex-start;
    }
}


   .changelog-shell {
            position: relative;
        }

        .changelog-window {
            border-radius: 24px;
            overflow: hidden;
            border: 1px solid rgba(247, 138, 175, 0.14);
            background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
            box-shadow:
                0 16px 40px rgba(0, 0, 0, 0.26),
                0 0 0 1px rgba(255,255,255,0.02) inset,
                0 0 30px rgba(247, 138, 175, 0.05);
            backdrop-filter: blur(10px);
        }

        .changelog-window-bar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            min-height: 54px;
            padding: 0 16px;
            border-bottom: 1px solid rgba(255,255,255,0.06);
            background: linear-gradient(180deg, #1d1e22 0%, #17181b 100%);
        }

        .changelog-window-left,
        .changelog-window-right {
            display: flex;
            align-items: center;
            gap: 10px;
            min-width: 110px;
        }

        .changelog-window-right {
            justify-content: flex-end;
        }

        .changelog-window-title {
            flex: 1;
            text-align: center;
            font-size: 11px;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            color: #8b8d96;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .changelog-window-status {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            height: 28px;
            padding: 0 10px;
            border-radius: 999px;
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: #f7d7e2;
            background: rgba(247, 138, 175, 0.10);
            border: 1px solid rgba(247, 138, 175, 0.22);
        }

        .changelog-window-status-dot {
            width: 7px;
            height: 7px;
            border-radius: 999px;
            background: #7dffaf;
            box-shadow: 0 0 10px rgba(125, 255, 175, 0.7);
        }

        .changelog-mac-dot {
            width: 10px;
            height: 10px;
            border-radius: 999px;
            display: inline-block;
        }

        .changelog-mac-dot-red {
            background: #ff5f57;
        }

        .changelog-mac-dot-yellow {
            background: #febc2e;
        }

        .changelog-mac-dot-green {
            background: #28c840;
        }

        .changelog-layout {
            display: grid;
            grid-template-columns: 260px minmax(0, 1fr);
            min-height: 520px;
        }

        .changelog-sidebar {
            padding: 18px;
            border-right: 1px solid rgba(255,255,255,0.06);
            background: linear-gradient(180deg, rgba(255,255,255,0.015), rgba(255,255,255,0.01));
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .changelog-sidebar-label {
            font-size: 10px;
            letter-spacing: 0.16em;
            text-transform: uppercase;
            color: #777882;
            margin-bottom: 4px;
            padding-left: 4px;
        }

        .changelog-tab {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            padding: 12px 12px;
            border-radius: 22px;
            text-align: left;
            background: rgba(255,255,255,0.02);
            border: 1px solid rgba(255,255,255,0.05);
            transition: all 0.25s ease;
        }

        .changelog-tab:hover {
            border-color: rgba(247, 138, 175, 0.18);
            background: rgba(247, 138, 175, 0.05);
            transform: translateY(-1px);
        }

        .changelog-tab.active {
            background: rgba(247, 138, 175, 0.10);
            border-color: rgba(247, 138, 175, 0.28);
            box-shadow: 0 0 18px rgba(247, 138, 175, 0.06);
        }

        .changelog-tab-main {
            display: flex;
            align-items: center;
            gap: 10px;
            min-width: 0;
        }

        .changelog-version-dot {
            width: 10px;
            height: 10px;
            border-radius: 999px;
            background: linear-gradient(180deg, #f59fbb, #d96d98);
            box-shadow: 0 0 12px rgba(247, 138, 175, 0.34);
            flex-shrink: 0;
        }

        .changelog-tab-copy {
            min-width: 0;
        }

        .changelog-tab strong {
            display: block;
            font-size: 13px;
            line-height: 1.15;
            color: #ffffff;
            font-weight: 700;
            letter-spacing: 0.02em;
        }

        .changelog-tab small {
            display: block;
            font-size: 11px;
            color: #8a8d96;
            margin-top: 3px;
            line-height: 1.2;
        }

        .changelog-tab-badge {
            flex-shrink: 0;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 24px;
            padding: 0 8px;
            border-radius: 999px;
            font-size: 9px;
            font-weight: 700;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: #f7dce5;
            background: rgba(255,255,255,0.04);
            border: 1px solid rgba(255,255,255,0.08);
        }

        .changelog-main {
            padding: 22px 22px 20px;
            position: relative;
            overflow: hidden;
        }

        .changelog-panel {
            display: none;
            animation: changelogFade 0.28s ease;
        }

        .changelog-panel.active {
            display: block;
        }

        @keyframes changelogFade {
            from {
                opacity: 0;
                transform: translateY(6px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .changelog-panel-head {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            gap: 16px;
            flex-wrap: wrap;
            margin-bottom: 12px;
        }

        .changelog-overline {
            font-size: 10px;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            color: #777882;
            margin-bottom: 7px;
        }

        .changelog-meta-wrap {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 8px;
        }

        .changelog-chip {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 28px;
            padding: 0 10px;
            border-radius: 999px;
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: #d8d9df;
            background: rgba(255,255,255,0.03);
            border: 1px solid rgba(255,255,255,0.08);
        }

        .changelog-chip-solid {
            color: #fff3f7;
            background: rgba(247, 138, 175, 0.12);
            border-color: rgba(247, 138, 175, 0.24);
        }

        .changelog-description {
            font-size: 14px;
            line-height: 1.7;
            color: #a6a8b0;
            max-width: 70ch;
            margin-bottom: 18px;
        }

        .changelog-list {
            display: grid;
            gap: 12px;
        }

        .changelog-item {
            display: grid;
            grid-template-columns: 44px minmax(0, 1fr);
            gap: 12px;
            padding: 14px;
            border-radius: 18px;
            background: rgba(255,255,255,0.02);
            border: 1px solid rgba(255,255,255,0.05);
        }

        .changelog-item-icon {
            width: 44px;
            height: 44px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #f59fbb;
            background: rgba(247, 138, 175, 0.10);
            border: 1px solid rgba(247, 138, 175, 0.18);
            box-shadow: 0 0 14px rgba(247, 138, 175, 0.06);
        }

        .changelog-item-icon svg {
            width: 18px;
            height: 18px;
        }

        .changelog-item-title {
            font-size: 15px;
            line-height: 1.3;
            color: #ffffff;
            font-weight: 700;
            margin-bottom: 5px;
        }

        .changelog-item-copy p {
            margin: 0;
            font-size: 13px;
            line-height: 1.7;
            color: #a1a4ad;
            max-width: 68ch;
        }

        @media (max-width: 1023px) {
            .changelog-layout {
                grid-template-columns: 1fr;
            }

            .changelog-sidebar {
                border-right: none;
                border-bottom: 1px solid rgba(255,255,255,0.06);
                padding: 14px;
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 10px;
            }

            .changelog-sidebar-label {
                grid-column: 1 / -1;
                margin-bottom: 2px;
            }

            .changelog-main {
                padding: 18px;
            }
        }

        @media (max-width: 767px) {
            .changelog-window {
                border-radius: 20px;
            }

            .changelog-window-bar {
                min-height: 48px;
                padding: 0 12px;
            }

            .changelog-window-left,
            .changelog-window-right {
                min-width: auto;
            }

            .changelog-window-title {
                font-size: 9px;
                letter-spacing: 0.12em;
            }

            .changelog-window-status {
                display: none;
            }

            .changelog-sidebar {
                grid-template-columns: 1fr;
                padding: 12px;
            }

            .changelog-tab {
                padding: 11px 11px;
                border-radius: 14px;
            }

            .changelog-main {
                padding: 14px;
            }

            .changelog-panel-head {
                gap: 12px;
                margin-bottom: 10px;
            }

            .changelog-description {
                font-size: 13px;
                margin-bottom: 14px;
            }

            .changelog-item {
                grid-template-columns: 38px minmax(0, 1fr);
                gap: 10px;
                padding: 12px;
                border-radius: 22px;
            }

            .changelog-item-icon {
                width: 38px;
                height: 38px;
                border-radius: 12px;
            }

            .changelog-item-icon svg {
                width: 16px;
                height: 16px;
            }

            .changelog-item-title {
                font-size: 14px;
                margin-bottom: 4px;
            }

            .changelog-item-copy p {
                font-size: 12px;
                line-height: 1.6;
            }
        }


.supported-scripts-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.ss-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 14px 14px 12px;
    border-radius: 18px;
    border: 1px solid rgba(247, 138, 175, 0.14);
    background: linear-gradient(160deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
    backdrop-filter: blur(8px);
    transition: transform 0.25s ease, border-color 0.25s ease;
    overflow: hidden;
    min-height: 200px;
}

.ss-card:hover {
    transform: translateY(-3px);
    border-color: rgba(247, 138, 175, 0.28);
}

.ss-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 12px;
}

/* Badges */
.ss-badge {
    display: inline-flex;
    align-items: center;
    height: 20px;
    padding: 0 8px;
    border-radius: 999px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #fff0f6;
    background: rgba(247, 138, 175, 0.13);
    border: 1px solid rgba(247, 138, 175, 0.24);
    white-space: nowrap;
}

.ss-badge-hot {
    background: rgba(255, 120, 80, 0.14);
    border-color: rgba(255, 120, 80, 0.28);
    color: #ffcdb8;
}

.ss-badge-new {
    background: rgba(39, 201, 63, 0.13);
    border-color: rgba(39, 201, 63, 0.28);
    color: #adffc0;
}

.ss-badge-strong {
    background: rgba(247, 138, 175, 0.18);
    border-color: rgba(247, 138, 175, 0.35);
    box-shadow: 0 0 12px rgba(247, 138, 175, 0.1);
}

.ss-tag {
    display: inline-flex;
    align-items: center;
    height: 20px;
    padding: 0 7px;
    border-radius: 999px;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #9ca0ad;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    white-space: nowrap;
}

.ss-num {
    font-family: 'Fredoka', sans-serif;
    font-size: 11px;
    color: rgba(247, 138, 175, 0.35);
    letter-spacing: 0.1em;
    flex-shrink: 0;
}

.ss-text {
    font-size: 12px;
    line-height: 1.65;
    color: #9ca0ad;
    margin: 0 0 auto;
    flex: 1;
}

.ss-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 12px;
    padding-top: 10px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.ss-compat {
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #666b76;
    font-weight: 600;
}

.ss-status {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    height: 20px;
    padding: 0 8px;
    border-radius: 999px;
}

.ss-status::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    flex-shrink: 0;
}

.ss-status-green {
    color: #a3ffbc;
    background: rgba(39, 201, 63, 0.10);
    border: 1px solid rgba(39, 201, 63, 0.22);
}

.ss-status-green::before {
    background: #27c93f;
    box-shadow: 0 0 6px rgba(39, 201, 63, 0.7);
}

/* Featured card */
.ss-card-featured {
    cursor: pointer;
    border-color: rgba(247, 138, 175, 0.22);
    background: linear-gradient(160deg, rgba(247,138,175,0.09), rgba(247,138,175,0.02));
}

.ss-card-featured:hover {
    border-color: rgba(247, 138, 175, 0.45);
    transform: translateY(-4px);
}

.ss-card-featured:focus-visible {
    outline: 2px solid rgba(247,138,175,0.6);
    outline-offset: 3px;
}

.ss-card-featured-glow {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(247,138,175,0.12), transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.ss-big-num {
    font-family: 'Fredoka', sans-serif;
    font-size: 38px;
    font-weight: 700;
    color: #fff0f5;
    line-height: 1;
    margin-bottom: 10px;
    -webkit-text-stroke: 1px rgba(247,138,175,0.4);
    text-shadow: 2px 2px 0 rgba(247,138,175,0.2);
}

.ss-download-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
    padding: 8px 14px;
    border-radius: 10px;
    background: rgba(247,138,175,0.12);
    border: 1px solid rgba(247,138,175,0.28);
    font-family: 'Fredoka', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #ffcfdf;
    transition: background 0.2s ease, transform 0.2s ease;
}

.ss-card-featured:hover .ss-download-cta {
    background: rgba(247,138,175,0.2);
    transform: translateY(-1px);
}

/* Responsive */
@media (max-width: 1279px) {
    .supported-scripts-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .supported-scripts-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .supported-scripts-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .ss-card {
        min-height: 0;
    }
    .ss-big-num {
        font-size: 32px;
    }
}


	.comparison-shell {
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(247, 138, 175, 0.14);
    background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
    box-shadow:
        0 16px 40px rgba(0, 0, 0, 0.26),
        0 0 0 1px rgba(255,255,255,0.02) inset,
        0 0 30px rgba(247, 138, 175, 0.05);
    backdrop-filter: blur(10px);
}

.comparison-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 54px;
    padding: 0 16px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    background: linear-gradient(180deg, #1d1e22 0%, #17181b 100%);
}

.comparison-topbar-left,
.comparison-topbar-right {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 120px;
}

.comparison-topbar-right {
    justify-content: flex-end;
}

.comparison-topbar-title {
    flex: 1;
    text-align: center;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #8b8d96;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.comparison-mac-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    display: inline-block;
}

.comparison-mac-dot-red { background: #ff5f57; }
.comparison-mac-dot-yellow { background: #febc2e; }
.comparison-mac-dot-green { background: #28c840; }

.comparison-live-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #f7d7e2;
    background: rgba(247, 138, 175, 0.10);
    border: 1px solid rgba(247, 138, 175, 0.22);
}

.comparison-live-dot {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: #7dffaf;
    box-shadow: 0 0 10px rgba(125, 255, 175, 0.7);
}

.comparison-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.comparison-table {
    width: 100%;
    min-width: 860px;
    border-collapse: collapse;
}

.comparison-table thead th {
    text-align: left;
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #7f818a;
    font-weight: 700;
    padding: 16px 18px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    background: rgba(255,255,255,0.015);
}

.comparison-table tbody td {
    padding: 16px 18px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    vertical-align: middle;
}

.comparison-table tbody tr {
    transition: background 0.22s ease;
}

.comparison-table tbody tr:hover {
    background: rgba(255,255,255,0.018);
}

.comparison-axis-row {
    background: linear-gradient(90deg, rgba(247,138,175,0.08), rgba(247,138,175,0.02));
    box-shadow: inset 0 0 0 1px rgba(247,138,175,0.08);
}

.comparison-name {
    display: flex;
    align-items: center;
    gap: 12px;
}

.comparison-rank {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: #d0d2d9;
    background: rgba(255,255,255,0.035);
    border: 1px solid rgba(255,255,255,0.08);
    flex-shrink: 0;
}

.comparison-rank-best {
    color: #fff3f7;
    background: rgba(247,138,175,0.14);
    border-color: rgba(247,138,175,0.24);
    box-shadow: 0 0 18px rgba(247,138,175,0.08);
}

.comparison-title {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 15px;
    line-height: 1.2;
    font-weight: 700;
    color: #ffffff;
}

.comparison-subtitle {
    margin-top: 4px;
    font-size: 12px;
    color: #8f929a;
    line-height: 1.3;
}

.comparison-best-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 22px;
    padding: 0 8px;
    border-radius: 999px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #fff0f6;
    background: rgba(247,138,175,0.12);
    border: 1px solid rgba(247,138,175,0.22);
}

.comparison-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
    color: #d5d7de;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    white-space: nowrap;
}

.comparison-pill-best {
    color: #fff3f7;
    background: rgba(247,138,175,0.12);
    border-color: rgba(247,138,175,0.20);
}

.comparison-score {
    width: 56px;
    height: 36px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 800;
    color: #ffffff;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
}

.comparison-score-best {
    color: #fff4f8;
    background: rgba(247,138,175,0.14);
    border-color: rgba(247,138,175,0.24);
    box-shadow: 0 0 18px rgba(247,138,175,0.08);
}

.comparison-footer {
    padding: 16px 18px 18px;
}

.comparison-footer-note {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 14px;
    border-radius: 18px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
}

.comparison-footer-icon {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #f59fbb;
    background: rgba(247,138,175,0.10);
    border: 1px solid rgba(247,138,175,0.18);
    flex-shrink: 0;
}

.comparison-footer-icon svg {
    width: 16px;
    height: 16px;
}

.comparison-footer-note p {
    margin: 0;
    font-size: 13px;
    line-height: 1.7;
    color: #a2a5ae;
    max-width: 70ch;
}

@media (max-width: 767px) {
    .comparison-shell {
        border-radius: 20px;
    }

    .comparison-topbar {
        min-height: 48px;
        padding: 0 12px;
    }

    .comparison-topbar-left,
    .comparison-topbar-right {
        min-width: auto;
    }

    .comparison-topbar-title {
        font-size: 9px;
        letter-spacing: 0.12em;
    }

    .comparison-live-badge {
        display: none;
    }

    .comparison-table thead th,
    .comparison-table tbody td {
        padding: 14px 14px;
    }

    .comparison-footer {
        padding: 14px;
    }

    .comparison-footer-note {
        padding: 12px;
        border-radius: 22px;
    }
}


.ts-layout {
    display: grid;
    grid-template-columns: 210px minmax(0, 1fr);
    gap: 24px;
    align-items: start;
}

/* --- Sidebar --- */
.ts-sidebar {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ts-sidebar-label {
    font-family: 'Fredoka', sans-serif;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: rgba(247,138,175,0.6);
    margin-bottom: 4px;
    padding-left: 2px;
}

.ts-cat-btn {
    display: flex;
    align-items: center;
    gap: 9px;
    width: 100%;
    padding: 9px 12px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.05);
    background: rgba(255,255,255,0.02);
    color: #6b6f7a;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: left;
}

.ts-cat-btn:hover {
    border-color: rgba(247,138,175,0.2);
    color: #d0d3db;
    background: rgba(247,138,175,0.04);
}

.ts-cat-btn.active {
    border-color: rgba(247,138,175,0.30);
    background: rgba(247,138,175,0.08);
    color: #ffffff;
}

.ts-cat-icon {
    width: 24px;
    height: 24px;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    color: inherit;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.ts-cat-btn.active .ts-cat-icon {
    background: rgba(247,138,175,0.12);
    border-color: rgba(247,138,175,0.22);
    color: #F78AAF;
}

.ts-cat-count {
    margin-left: auto;
    font-size: 10px;
    font-weight: 700;
    color: rgba(247,138,175,0.5);
    background: rgba(247,138,175,0.08);
    border: 1px solid rgba(247,138,175,0.14);
    border-radius: 999px;
    padding: 0 6px;
    height: 18px;
    display: inline-flex;
    align-items: center;
}

/* Status card */
.ts-status-card {
    margin-top: 16px;
    padding: 12px 14px;
    border-radius: 14px;
    border: 1px solid rgba(247,138,175,0.14);
    background: rgba(17,17,17,0.7);
    backdrop-filter: blur(8px);
}

.ts-status-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 2px;
}

.ts-status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #27c93f;
    box-shadow: 0 0 8px rgba(39,201,63,0.7);
    flex-shrink: 0;
    animation: ts-ping 2s ease-in-out infinite;
}

@keyframes ts-ping {
    0%,100% { opacity:1; transform:scale(1); }
    50% { opacity:0.6; transform:scale(1.3); }
}

.ts-status-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    font-size: 11px;
    color: #6b6f7a;
}

.ts-status-row:last-child { border-bottom: none; }

.ts-status-ok {
    color: #a3ffbc;
    font-weight: 700;
    font-size: 10px;
    letter-spacing: 0.06em;
}

/* --- Accordion list --- */
.ts-list {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.ts-item {
    border-radius: 22px;
    border: 1px solid rgba(247,138,175,0.12);
    background: linear-gradient(160deg, rgba(255,255,255,0.025), rgba(255,255,255,0.01));
    backdrop-filter: blur(8px);
    overflow: hidden;
    transition: border-color 0.25s ease;
}

.ts-item[data-cat="install"] { --ts-accent: rgba(255,189,46,0.18); }
.ts-item[data-cat="inject"]  { --ts-accent: rgba(247,138,175,0.12); }
.ts-item[data-cat="script"]  { --ts-accent: rgba(56,189,248,0.10); }
.ts-item[data-cat="mobile"]  { --ts-accent: rgba(167,139,250,0.10); }

.ts-item:has(.ts-btn[aria-expanded="true"]) {
    border-color: rgba(247,138,175,0.28);
}

.ts-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
}

.ts-btn-left {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    flex-wrap: wrap;
}

/* Severity badges */
.ts-severity {
    display: inline-flex;
    align-items: center;
    height: 20px;
    padding: 0 8px;
    border-radius: 999px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    flex-shrink: 0;
}

.ts-severity-red    { color: #ffc0c0; background: rgba(239,68,68,0.12); border: 1px solid rgba(239,68,68,0.22); }
.ts-severity-yellow { color: #ffe9a0; background: rgba(255,189,46,0.12); border: 1px solid rgba(255,189,46,0.22); }
.ts-severity-green  { color: #adffc0; background: rgba(39,201,63,0.10); border: 1px solid rgba(39,201,63,0.22); }

.ts-q {
    font-size: 14px;
    color: #e8eaf0;
    line-height: 1.3;
    transition: color 0.2s ease;
}

.ts-btn:hover .ts-q { color: #ffffff; }

.ts-chevron {
    color: rgba(247,138,175,0.5);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.ts-btn[aria-expanded="true"] .ts-chevron {
    transform: rotate(180deg);
    color: #F78AAF;
}

/* Body */
.ts-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.16,1,0.3,1);
}

.ts-body-inner {
    padding: 0 16px 16px 16px;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 14px;
}

.ts-body-inner p {
    font-size: 13px;
    line-height: 1.75;
    color: #a5a8b0;
    margin: 0 0 12px;
}

.ts-steps {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-top: 4px;
}

.ts-step {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 12px;
    color: #a5a8b0;
    line-height: 1.6;
}

.ts-step-n {
    font-family: 'Fredoka', sans-serif;
    font-size: 9px;
    color: #F78AAF;
    background: rgba(247,138,175,0.10);
    border: 1px solid rgba(247,138,175,0.20);
    border-radius: 6px;
    padding: 2px 6px;
    flex-shrink: 0;
    margin-top: 1px;
}

.ts-tip {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-top: 12px;
    padding: 10px 12px;
    border-radius: 10px;
    background: rgba(247,138,175,0.06);
    border: 1px solid rgba(247,138,175,0.14);
    font-size: 12px;
    color: #c9acb7;
    line-height: 1.65;
}

.ts-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 10px;
}

.ts-tag {
    display: inline-flex;
    align-items: center;
    height: 22px;
    padding: 0 10px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 600;
    color: #c9ccd4;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
}

.ts-tag-red {
    color: #ffc0c0;
    background: rgba(239,68,68,0.08);
    border-color: rgba(239,68,68,0.18);
}

/* hidden by filter */
.ts-item.ts-hidden {
    display: none;
}

/* Responsive */
@media (max-width: 900px) {
    .ts-layout {
        grid-template-columns: 1fr;
    }
    .ts-sidebar {
        position: static;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 6px;
    }
    .ts-sidebar-label { width: 100%; }
    .ts-status-card { display: none; }
    .ts-cat-btn { width: auto; flex: 1; min-width: 120px; }
}

@media (max-width: 560px) {
    .ts-q { font-size: 13px; }
    .ts-btn { padding: 12px 14px; }
    .ts-body-inner { padding: 12px 14px 14px; }
}


.faq-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 220px;
    gap: 32px;
    align-items: start;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* --- Accordion item --- */
.faq-item {
    border-radius: 22px;
    border: 1px solid rgba(247, 138, 175, 0.14);
    background: linear-gradient(160deg, rgba(255,255,255,0.025), rgba(255,255,255,0.01));
    backdrop-filter: blur(8px);
    overflow: hidden;
    transition: border-color 0.25s ease;
}

.faq-item:has(.faq-btn[aria-expanded="true"]) {
    border-color: rgba(247, 138, 175, 0.32);
}

.faq-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 18px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
}

.faq-btn:hover .faq-q {
    color: #F78AAF;
}

.faq-btn-inner {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.faq-icon-wrap {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #F78AAF;
    background: rgba(247, 138, 175, 0.10);
    border: 1px solid rgba(247, 138, 175, 0.18);
    flex-shrink: 0;
}

.faq-q {
    font-size: 15px;
    color: #ffffff;
    transition: color 0.2s ease;
    line-height: 1.3;
}

.faq-chevron {
    color: #F78AAF;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    opacity: 0.7;
}

.faq-btn[aria-expanded="true"] .faq-chevron {
    transform: rotate(180deg);
    opacity: 1;
}

/* --- Body --- */
.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-body-inner {
    padding: 0 18px 18px 62px;
}

.faq-body-inner p {
    font-size: 13px;
    line-height: 1.75;
    color: #a5a8b0;
    margin: 0 0 12px;
}

.faq-body-inner p:last-child {
    margin-bottom: 0;
}

/* Tags */
.faq-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 10px;
}

.faq-tag {
    display: inline-flex;
    align-items: center;
    height: 22px;
    padding: 0 10px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: #c9ccd4;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
}

.faq-tag-green {
    color: #a3ffbc;
    background: rgba(39, 201, 63, 0.08);
    border-color: rgba(39, 201, 63, 0.20);
}

/* Steps */
.faq-steps {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 10px;
}

.faq-step {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 12px;
    color: #a5a8b0;
    line-height: 1.6;
}

.faq-step-num {
    font-family: 'Fredoka', sans-serif;
    font-size: 10px;
    color: #F78AAF;
    background: rgba(247, 138, 175, 0.10);
    border: 1px solid rgba(247, 138, 175, 0.20);
    border-radius: 6px;
    padding: 1px 6px;
    flex-shrink: 0;
    margin-top: 1px;
}

/* Features grid */
.faq-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 12px;
}

.faq-feature {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 12px;
    color: #a5a8b0;
    line-height: 1.55;
}

.faq-feature-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #F78AAF;
    flex-shrink: 0;
    margin-top: 4px;
    box-shadow: 0 0 6px rgba(247,138,175,0.5);
}

/* Code inline */
.faq-code {
    font-family: monospace;
    font-size: 12px;
    color: #FFC4D8;
    background: rgba(247,138,175,0.10);
    border: 1px solid rgba(247,138,175,0.18);
    border-radius: 5px;
    padding: 1px 6px;
}

/* --- Mascot --- */
.faq-mascot-wrap {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.faq-mascot {
    width: 100%;
    max-width: 200px;
    filter: drop-shadow(0 0 20px rgba(247,138,175,0.25));
    animation: float-mascot 4.5s ease-in-out infinite;
}

.faq-mascot-card {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 14px;
    border: 1px solid rgba(247,138,175,0.18);
    background: rgba(17,17,17,0.7);
    backdrop-filter: blur(8px);
}

.faq-mascot-card-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #27c93f;
    box-shadow: 0 0 8px rgba(39,201,63,0.7);
    flex-shrink: 0;
    animation: ping-once 2s ease-in-out infinite;
}

@keyframes ping-once {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.3); }
}

/* Responsive */
@media (max-width: 900px) {
    .faq-layout {
        grid-template-columns: 1fr;
    }
    .faq-mascot-wrap {
        position: static;
        flex-direction: row;
        align-items: center;
        max-width: 360px;
    }
    .faq-mascot {
        max-width: 100px;
    }
}

@media (max-width: 640px) {
    .faq-btn {
        padding: 14px 14px;
    }
    .faq-body-inner {
        padding: 0 14px 14px 14px;
    }
    .faq-features-grid {
        grid-template-columns: 1fr;
    }
    .faq-q {
        font-size: 13px;
    }
}



.footer-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(247,138,175,0.25), transparent);
    margin-bottom: 48px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

/* Trust badges */
.footer-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    height: 22px;
    padding: 0 9px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: #a5a8b0;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    white-space: nowrap;
}

.footer-trust-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    flex-shrink: 0;
}

.footer-trust-dot-green {
    background: #27c93f;
    box-shadow: 0 0 5px rgba(39,201,63,0.7);
}

.footer-trust-dot-pink {
    background: #F78AAF;
    box-shadow: 0 0 5px rgba(247,138,175,0.7);
}

/* Column titles */
.footer-col-title {
    font-family: 'Fredoka', sans-serif;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #F78AAF;
    margin-bottom: 14px;
}

/* Nav links */
.footer-link {
    font-size: 13px;
    color: #6b6f7a;
    text-decoration: none;
    transition: color 0.2s ease;
    display: inline-block;
}

.footer-link:hover {
    color: #F78AAF;
}

/* Social links */
.footer-social-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #6b6f7a;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-social-link:hover {
    color: #F78AAF;
}

.footer-social-link:hover .footer-social-icon {
    border-color: rgba(247,138,175,0.35);
    background: rgba(247,138,175,0.10);
    color: #F78AAF;
}

.footer-social-icon {
    width: 26px;
    height: 26px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    color: #6b6f7a;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

/* Bottom bar */
.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-bottom-sep {
    color: #3a3d45;
    font-size: 12px;
}

/* Responsive */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 640px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}


 /* ── Breadcrumb bar ── */
    .bc-bar {
        position: fixed;
        top: 80px; /* sits right below the 80px header */
        left: 0;
        right: 0;
        z-index: 49;
        background: rgba(5, 5, 5, 0.85);
        backdrop-filter: blur(8px);
        border-bottom: 1px solid rgba(247, 138, 175, 0.08);
    }

    .bc-inner {
        max-width: 1152px; /* matches max-w-6xl */
        margin: 0 auto;
        padding: 0 24px;
        height: 34px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
    }

    .bc-list {
        display: flex;
        align-items: center;
        gap: 2px;
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .bc-item {
        display: flex;
        align-items: center;
    }

    .bc-link {
        display: inline-flex;
        align-items: center;
        gap: 4px;
        font-size: 11px;
        font-weight: 500;
        color: rgba(255, 255, 255, 0.35);
        text-decoration: none;
        letter-spacing: 0.02em;
        transition: color 0.18s ease;
        white-space: nowrap;
    }

    .bc-link:hover { color: #F78AAF; }

    .bc-current {
        color: rgba(247, 138, 175, 0.75) !important;
        cursor: default;
    }

    .bc-home-icon {
        width: 12px;
        height: 12px;
        flex-shrink: 0;
    }

    .bc-sep {
        display: flex;
        align-items: center;
        color: rgba(255, 255, 255, 0.15);
        padding: 0 1px;
    }

    .bc-sep svg {
        width: 12px;
        height: 12px;
        flex-shrink: 0;
    }

    /* ── Social icons in breadcrumb bar ── */
    .bc-socials {
        display: flex;
        align-items: center;
        gap: 2px;
    }

    .bc-social-link {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 24px;
        height: 24px;
        border-radius: 6px;
        color: rgba(255, 255, 255, 0.25);
        transition: color 0.18s ease, background 0.18s ease;
        flex-shrink: 0;
    }

    .bc-social-link svg {
        width: 12px;
        height: 12px;
    }
     @media (max-width: 500px) {
	.bc-socials {
	display: none !important;
}
}
    .bc-social-link:hover {
        color: #F78AAF;
        background: rgba(247, 138, 175, 0.08);
    }

    /* Push page content below both header (80px) + breadcrumb bar (34px) */
    body { padding-top: calc(80px + 34px); }



/* ═══ Axis: crisp pink headings (readable, no glow) ═══ */
.bubble-heading {
    font-family: 'Fredoka', sans-serif;
    font-weight: 700;
    color: #F78AAF;
    letter-spacing: -0.01em;
    text-shadow:
        1px 1px 0 #d16289,
        2px 2px 0 #b0567a,
        3px 3px 0 #8f4462;
}

.bubble-title {
    font-family: 'Fredoka', sans-serif;
    font-weight: 700;
    color: #F78AAF;
    letter-spacing: -0.005em;
    text-shadow:
        1px 1px 0 #b0567a,
        2px 2px 0 #7a3450;
}

.bubble-stat {
    font-family: 'Fredoka', sans-serif;
    font-weight: 700;
    color: #F78AAF;
    letter-spacing: -0.01em;
    text-shadow:
        1px 1px 0 #b0567a,
        2px 2px 0 #7a3450;
}


/* ═══════════════════════════════════════════════════════════════
   Changelog v2 — compact info-dense entries with type badges
   ═══════════════════════════════════════════════════════════════ */

/* Panel head — two-column: title left, chips right */
.cl-panel-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}
.cl-panel-top-l { min-width: 0; }
.cl-panel-top-r {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: flex-end;
}

/* Metrics strip — compact stat row above entries */
.cl-metrics {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 14px;
    background: rgba(247, 138, 175, 0.04);
    border: 1px solid rgba(247, 138, 175, 0.14);
    border-radius: 12px;
    margin-bottom: 16px;
    flex-wrap: wrap;
    font-family: 'Fredoka', sans-serif;
    font-size: 12px;
}
.cl-metric {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #cfcfd6;
}
.cl-metric b {
    color: #ffffff;
    font-weight: 700;
    letter-spacing: 0.02em;
}
.cl-metric span:last-child {
    color: #8a8a94;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.cl-metric-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    display: inline-block;
}
.cl-dot-add { background: #4ade80; box-shadow: 0 0 6px rgba(74,222,128,0.5); }
.cl-dot-fix { background: #facc15; box-shadow: 0 0 6px rgba(250,204,21,0.5); }
.cl-dot-imp { background: #60a5fa; box-shadow: 0 0 6px rgba(96,165,250,0.5); }
.cl-dot-rem { background: #f87171; box-shadow: 0 0 6px rgba(248,113,113,0.5); }
.cl-dot-sec { background: #c084fc; box-shadow: 0 0 6px rgba(192,132,252,0.5); }

.cl-metric-sep {
    margin-left: auto;
    color: #8a8a94;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding-left: 14px;
    border-left: 1px solid rgba(255,255,255,0.08);
}

/* Compact 2-column entry grid */
.cl-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}
@media (max-width: 900px) {
    .cl-grid { grid-template-columns: 1fr; }
    .cl-metric-sep { margin-left: 0; border-left: 0; padding-left: 0; width: 100%; }
}

.cl-entry {
    display: block;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-left-width: 3px;
    border-radius: 12px;
    transition: background 0.18s ease, border-color 0.18s ease;
}
.cl-entry:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.10);
}

.cl-entry-add { border-left-color: #4ade80; }
.cl-entry-fix { border-left-color: #facc15; }
.cl-entry-imp { border-left-color: #60a5fa; }
.cl-entry-rem { border-left-color: #f87171; }
.cl-entry-sec { border-left-color: #c084fc; }

/* Type badge (pill with mini SVG) — now stacks above the title */
.cl-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 8px 3px 6px;
    margin-bottom: 8px;
    border-radius: 999px;
    font-family: 'Fredoka', sans-serif;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    line-height: 1;
    border: 1px solid;
    white-space: nowrap;
}
.cl-badge svg { width: 10px; height: 10px; }
.cl-badge-add {
    color: #4ade80;
    background: rgba(74, 222, 128, 0.10);
    border-color: rgba(74, 222, 128, 0.30);
}
.cl-badge-fix {
    color: #facc15;
    background: rgba(250, 204, 21, 0.10);
    border-color: rgba(250, 204, 21, 0.30);
}
.cl-badge-imp {
    color: #60a5fa;
    background: rgba(96, 165, 250, 0.10);
    border-color: rgba(96, 165, 250, 0.30);
}
.cl-badge-rem {
    color: #f87171;
    background: rgba(248, 113, 113, 0.10);
    border-color: rgba(248, 113, 113, 0.30);
}
.cl-badge-sec {
    color: #c084fc;
    background: rgba(192, 132, 252, 0.10);
    border-color: rgba(192, 132, 252, 0.30);
}

/* Entry copy */
.cl-entry-copy { min-width: 0; flex: 1; }
.cl-entry-title {
    font-family: 'Fredoka', sans-serif;
    font-weight: 600;
    font-size: 13.5px;
    color: #ffffff;
    letter-spacing: -0.005em;
    margin-bottom: 4px;
    line-height: 1.3;
}
.cl-entry-copy p {
    font-size: 12px;
    color: #a3a3ad;
    line-height: 1.45;
    margin: 0 0 8px 0;
}
.cl-entry-copy code {
    font-family: 'Menlo', 'SF Mono', monospace;
    font-size: 11px;
    color: #FFC4D8;
    background: rgba(247,138,175,0.10);
    border: 1px solid rgba(247,138,175,0.20);
    padding: 1px 5px;
    border-radius: 4px;
}

/* Inline area tags */
.cl-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}
.cl-tag {
    display: inline-block;
    padding: 2px 7px;
    font-family: 'Fredoka', sans-serif;
    font-size: 9.5px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #9a9aa4;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 999px;
    line-height: 1.4;
}

/* Sidebar tab badge for security releases */
.changelog-tab-badge-sec {
    background: rgba(192,132,252,0.15) !important;
    color: #c084fc !important;
    border-color: rgba(192,132,252,0.35) !important;
}
.changelog-chip-sec {
    background: rgba(192,132,252,0.15) !important;
    color: #c084fc !important;
    border-color: rgba(192,132,252,0.35) !important;
}

/* ═══════════════════════════════════════════════════════════════
   Comparison v2 — richer table + footer highlights
   ═══════════════════════════════════════════════════════════════ */

.cmp2 { font-size: 12px; }
.cmp2 thead th {
    font-family: 'Fredoka', sans-serif;
    font-weight: 600;
    font-size: 10.5px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #a3a3ad;
    padding: 12px 10px;
    background: rgba(255,255,255,0.02);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    text-align: center;
    vertical-align: bottom;
    line-height: 1.2;
    white-space: normal;
}
.cmp2 thead th:first-child { text-align: left; padding-left: 18px; }
.cmp2 tbody td {
    padding: 14px 10px;
    text-align: center;
    vertical-align: middle;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.cmp2 tbody td:first-child { text-align: left; padding-left: 18px; }
.cmp2 tbody tr:last-child td { border-bottom: 0; }
.cmp2 tbody tr { transition: background 0.15s ease; }
.cmp2 tbody tr:hover { background: rgba(255,255,255,0.02); }

/* Highlighted Axis row */
.cmp2-row-best {
    background: linear-gradient(90deg,
        rgba(247,138,175,0.10) 0%,
        rgba(247,138,175,0.04) 60%,
        transparent 100%);
    box-shadow: inset 3px 0 0 #F78AAF;
}
.cmp2-row-best:hover { background: linear-gradient(90deg,
    rgba(247,138,175,0.14) 0%,
    rgba(247,138,175,0.06) 60%,
    transparent 100%); }

/* Name cell */
.cmp2-name { display: flex; align-items: center; gap: 12px; }
.cmp2-rank {
    font-family: 'Fredoka', sans-serif;
    font-weight: 700;
    font-size: 13px;
    color: #6a6a74;
    width: 26px;
    text-align: center;
    letter-spacing: -0.02em;
}
.cmp2-rank-best {
    color: #F78AAF;
    text-shadow: 1px 1px 0 #b0567a;
}
.cmp2-name-body { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.cmp2-title-row { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.cmp2-title {
    font-family: 'Fredoka', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: #ffffff;
    letter-spacing: -0.005em;
}
.cmp2-meta {
    font-family: 'Fredoka', sans-serif;
    font-size: 10.5px;
    color: #7a7a84;
    letter-spacing: 0.02em;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}
.cmp2-ver {
    color: #cfcfd6;
    background: rgba(255,255,255,0.05);
    padding: 1px 6px;
    border-radius: 4px;
    font-family: 'Menlo', 'SF Mono', monospace;
    font-size: 9.5px;
}
.cmp2-dot { color: #4a4a54; }
.cmp2-plat { color: #a3a3ad; }

/* Status chips next to the name */
.cmp2-best-badge {
    font-family: 'Fredoka', sans-serif;
    font-weight: 600;
    font-size: 9.5px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 3px 8px;
    color: #ffffff;
    background: linear-gradient(180deg, #FFA5C5 0%, #F78AAF 50%, #de6c92 100%);
    border-radius: 999px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.4);
    white-space: nowrap;
}
.cmp2-status {
    font-family: 'Fredoka', sans-serif;
    font-weight: 600;
    font-size: 9.5px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 3px 8px;
    border-radius: 999px;
    border: 1px solid;
    white-space: nowrap;
}
.cmp2-status-stable { color: #4ade80; background: rgba(74,222,128,0.10); border-color: rgba(74,222,128,0.30); }
.cmp2-status-paid   { color: #facc15; background: rgba(250,204,21,0.10); border-color: rgba(250,204,21,0.30); }
.cmp2-status-slow   { color: #fb923c; background: rgba(251,146,60,0.10); border-color: rgba(251,146,60,0.30); }
.cmp2-status-dep    { color: #f87171; background: rgba(248,113,113,0.10); border-color: rgba(248,113,113,0.30); }

/* Metric pills */
.cmp2-pill {
    font-family: 'Fredoka', sans-serif;
    font-weight: 600;
    font-size: 10.5px;
    padding: 4px 10px;
    border-radius: 999px;
    border: 1px solid;
    display: inline-block;
    white-space: nowrap;
    letter-spacing: 0.02em;
}
.cmp2-pill-excellent { color: #F78AAF; background: rgba(247,138,175,0.10); border-color: rgba(247,138,175,0.35); }
.cmp2-pill-good      { color: #4ade80; background: rgba(74,222,128,0.08);  border-color: rgba(74,222,128,0.25); }
.cmp2-pill-mid       { color: #facc15; background: rgba(250,204,21,0.08); border-color: rgba(250,204,21,0.22); }
.cmp2-pill-low       { color: #f87171; background: rgba(248,113,113,0.08); border-color: rgba(248,113,113,0.22); }

/* Attach time — big number */
.cmp2-metric-num {
    font-family: 'Fredoka', sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: #ffffff;
    letter-spacing: -0.02em;
}
.cmp2-metric-num em {
    font-style: normal;
    font-size: 10px;
    color: #7a7a84;
    margin-left: 2px;
    font-weight: 500;
}

/* Checkmark for keyless */
.cmp2-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 999px;
    font-family: 'Fredoka', sans-serif;
    font-weight: 700;
    font-size: 12px;
    border: 1px solid;
}
.cmp2-check-yes { color: #4ade80; background: rgba(74,222,128,0.10); border-color: rgba(74,222,128,0.30); }
.cmp2-check-no  { color: #f87171; background: rgba(248,113,113,0.10); border-color: rgba(248,113,113,0.30); }

/* Star rating column */
.cmp2-stars { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.cmp2-star-row {
    color: #F78AAF;
    letter-spacing: 1px;
    font-size: 12px;
    line-height: 1;
}
.cmp2-star-empty { color: #3a3a44; }
.cmp2-star-count {
    font-family: 'Fredoka', sans-serif;
    font-size: 10px;
    color: #7a7a84;
    letter-spacing: 0.02em;
}

/* Overall score */
.cmp2-score {
    display: inline-flex;
    align-items: baseline;
    gap: 2px;
    font-family: 'Fredoka', sans-serif;
    padding: 6px 12px;
    border-radius: 10px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
}
.cmp2-score span {
    font-weight: 700;
    font-size: 16px;
    color: #ffffff;
    letter-spacing: -0.02em;
}
.cmp2-score em {
    font-style: normal;
    font-size: 10px;
    color: #7a7a84;
}
.cmp2-score-best {
    background: linear-gradient(180deg, rgba(247,138,175,0.20) 0%, rgba(247,138,175,0.08) 100%);
    border-color: rgba(247,138,175,0.40);
}
.cmp2-score-best span {
    color: #F78AAF;
    text-shadow: 1px 1px 0 #b0567a;
}

/* ═══ Footer highlight cards ═══ */
.cmp2-footer {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    padding: 16px;
    border-top: 1px solid rgba(255,255,255,0.06);
    background: rgba(255,255,255,0.015);
}
@media (max-width: 900px) { .cmp2-footer { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 500px) { .cmp2-footer { grid-template-columns: 1fr; } }

.cmp2-fcard {
    padding: 12px 14px;
    background: rgba(247,138,175,0.05);
    border: 1px solid rgba(247,138,175,0.15);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.cmp2-fcard-label {
    font-family: 'Fredoka', sans-serif;
    font-size: 9.5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #a3a3ad;
}
.cmp2-fcard-val {
    font-family: 'Fredoka', sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: #ffffff;
    letter-spacing: -0.01em;
}
.cmp2-fcard-val em {
    font-style: normal;
    font-weight: 500;
    color: #F78AAF;
    font-size: 13px;
}
.cmp2-fcard-sub {
    font-family: 'Fredoka', sans-serif;
    font-size: 10.5px;
    color: #7a7a84;
}

/* Bottom methodology note */
.cmp2-note {
    display: flex;
    gap: 10px;
    padding: 14px 18px;
    border-top: 1px solid rgba(255,255,255,0.06);
    background: rgba(255,255,255,0.01);
}
.cmp2-note-icon {
    color: #F78AAF;
    flex-shrink: 0;
    padding-top: 1px;
}
.cmp2-note-icon svg { width: 14px; height: 14px; }
.cmp2-note p {
    font-family: 'Fredoka', sans-serif;
    font-size: 11px;
    line-height: 1.5;
    color: #8a8a94;
    margin: 0;
}

/* Horizontal scroll on narrow screens */
.comparison-table-wrap { overflow-x: auto; }
@media (max-width: 1100px) {
    .cmp2 { min-width: 980px; }
}