/* ===== Global ===== */
body {
    font-size: 1.05rem;
    background: #181b2e;
    color: #e0e0e0;
    min-height: 100vh;
}

/* ===== Landing Page ===== */
.landing-hero {
    background: linear-gradient(135deg, #0f1628 0%, #1a2342 40%, #1e3a5f 70%, #1a5276 100%);
    border-radius: 20px;
    padding: 3rem 2rem;
    margin-top: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.landing-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(13, 110, 253, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.landing-hero h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
}

.landing-hero p.lead {
    font-size: 1.2rem;
    color: #a8b8d0;
}

.landing-hero .badge {
    font-size: 0.95rem;
    padding: 0.5em 0.9em;
}

.landing-categories .card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.landing-categories .card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.landing-categories .card-header {
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.landing-categories .card-header h5 {
    font-size: 1.2rem;
}

.landing-categories li {
    font-size: 1.05rem;
    padding: 0.3rem 0;
}

.landing-categories li i {
    color: #5b9bd5;
    margin-right: 0.4rem;
}

/* ===== Homepage ===== */
.home-hero {
    background: linear-gradient(135deg, #0f1628 0%, #1a2342 30%, #1e3a5f 60%, #1a5276 100%);
    border-radius: 24px;
    padding: 4rem 3rem;
    margin-top: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.home-hero::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -20%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(13, 110, 253, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.home-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -15%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(25, 135, 84, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.home-hero-title {
    font-size: 2.6rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.home-hero-subtitle {
    font-size: 1.15rem;
    color: #a8b8d0;
    max-width: 550px;
    margin: 0.8rem 0 0;
    line-height: 1.6;
}

.home-cta-btn {
    font-size: 1.15rem;
    padding: 0.75rem 2.2rem;
    border-radius: 12px;
    font-weight: 700;
    box-shadow: 0 4px 16px rgba(13, 110, 253, 0.3);
    transition: transform 0.2s, box-shadow 0.2s;
}

.home-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(13, 110, 253, 0.4);
}

/* Gradient animated text */
.home-gradient-text {
    background: linear-gradient(135deg, #0d6efd, #198754, #0dcaf0);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: homeGradShift 4s ease-in-out infinite;
}

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

/* Stats row */
.home-stat {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    color: #8a9ab5;
}

.home-stat strong {
    font-size: 1.3rem;
    color: #e0e8f0;
    font-weight: 800;
}

/* Trust badges */
.home-trust-badge {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 0.35rem 0.9rem;
    font-size: 0.85rem;
    color: #c0cfe0;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

/* Health gauge */
.home-gauge-wrap {
    position: relative;
    display: inline-block;
    width: 180px;
    height: 180px;
}

.home-gauge {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.home-gauge-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.06);
    stroke-width: 12;
}

.home-gauge-fill {
    fill: none;
    stroke: #198754;
    stroke-width: 12;
    stroke-linecap: round;
    stroke-dasharray: 534;
    stroke-dashoffset: 534;
    animation: gaugeAnim 2s ease-out 0.5s forwards;
}

@keyframes gaugeAnim {
    to { stroke-dashoffset: 69; }
}

.home-gauge-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.home-gauge-number {
    display: block;
    font-size: 2.8rem;
    font-weight: 800;
    color: #198754;
    line-height: 1;
}

.home-gauge-text {
    display: block;
    font-size: 0.75rem;
    color: #8a9ab5;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 2px;
}

/* Floating platform icons */
.home-floating-icons {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    margin-top: 1rem;
}

.home-float-icon {
    width: 42px;
    height: 42px;
    line-height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 1.2rem;
    display: inline-block;
}

/* Panels */
.home-panel {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 18px;
    padding: 2rem 2.5rem;
}

.home-divider {
    border-color: rgba(255, 255, 255, 0.06);
    margin: 0;
}

.home-section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
}

/* Distro chips */
.home-distro-chip {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 0.4rem 1rem;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

/* Timeline steps */
.home-timeline-step {
    position: relative;
    padding: 0 1rem;
}

.home-step-number {
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0d6efd, #0b5ed7);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 auto 0.6rem;
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.3);
}

/* Feature items with fade-in */
.home-feature-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    padding: 0.6rem 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    transition: transform 0.2s, border-color 0.2s;
}

.home-feature-item:hover {
    transform: translateY(-2px);
    border-color: rgba(13, 110, 253, 0.2);
}

.home-feature-item i {
    font-size: 1.1rem;
    width: 22px;
    text-align: center;
    flex-shrink: 0;
}

/* Changelog */
.home-changelog {
    max-height: 260px;
    overflow-y: auto;
}

.home-changelog-entry {
    display: flex;
    gap: 1rem;
    padding: 0.7rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.home-changelog-entry:last-child {
    border-bottom: none;
}

.home-changelog-date {
    flex-shrink: 0;
    width: 70px;
    font-size: 0.8rem;
    color: #6c8eb5;
    padding-top: 2px;
}

.home-changelog-body {
    font-size: 0.92rem;
    color: #c0cfe0;
}

.home-changelog-body strong {
    color: #e0e8f0;
}

/* CTA section */
.home-cta-section {
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.08), rgba(25, 135, 84, 0.06));
    border: 1px solid rgba(13, 110, 253, 0.15);
    border-radius: 20px;
    padding: 2.5rem 2rem;
}

/* ===== Animations ===== */

/* Pulse glow on CPU icon */
.anim-pulse-glow {
    animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { text-shadow: 0 0 8px rgba(13, 110, 253, 0.3); }
    50% { text-shadow: 0 0 20px rgba(13, 110, 253, 0.6), 0 0 40px rgba(13, 110, 253, 0.2); }
}

/* Lightning vibrate */
.anim-vibrate {
    display: inline-block;
    animation: vibrate 2.5s ease-in-out infinite;
}

@keyframes vibrate {
    0%, 100% { transform: translateX(0); }
    10% { transform: translateX(-1px) rotate(-2deg); }
    20% { transform: translateX(1px) rotate(2deg); }
    30% { transform: translateX(-1px); }
    40% { transform: translateX(1px); }
    50%, 100% { transform: translateX(0); }
}

/* Floating icons */
.anim-float-1 { animation: floatY 3s ease-in-out infinite; }
.anim-float-2 { animation: floatY 3s ease-in-out 0.5s infinite; }
.anim-float-3 { animation: floatY 3s ease-in-out 1s infinite; }
.anim-float-4 { animation: floatY 3s ease-in-out 1.5s infinite; }

@keyframes floatY {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* Fade-in on scroll */
.anim-fade-in {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.anim-fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Upload card */
.upload-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

.upload-card .card-header {
    background: rgba(13, 110, 253, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px 16px 0 0 !important;
}

.upload-card .card-header h4 {
    font-size: 1.5rem;
    color: #fff;
}

.upload-card .form-label {
    font-size: 1.1rem;
}

.upload-card .btn-primary {
    font-size: 1.15rem;
    padding: 0.65rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
}

/* ===== Dashboard ===== */
.card-header {
    cursor: pointer;
}

.card-header:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.card-header h5 {
    margin-bottom: 0;
    font-size: 1.25rem;
}

.dashboard-summary .card-body h5 {
    font-size: 1.3rem;
}

.dashboard-summary .badge.fs-6 {
    font-size: 1rem !important;
}

pre {
    margin-bottom: 0;
    font-size: 0.9rem;
    white-space: pre-wrap;
    word-wrap: break-word;
}

.table {
    font-size: 1rem;
}

.table th {
    white-space: nowrap;
    font-size: 1rem;
    font-weight: 600;
}

.table td {
    font-size: 1rem;
}

.progress {
    height: 22px;
    background-color: #333;
    border-radius: 6px;
}

.progress-bar {
    font-size: 0.85rem;
    font-weight: 600;
}

.list-group-item.active {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

#sectionNav .list-group-item {
    font-size: 1rem;
    padding: 0.6rem 1rem;
}

#sectionNav .list-group-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.alert {
    font-size: 1rem;
}

.badge {
    font-weight: 500;
    font-size: 0.9rem;
}

/* Dashboard section cards */
.col-md-10 .card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
}

.col-md-10 .card-header {
    border-radius: 12px 12px 0 0;
}

/* Performance cards */
.card.bg-black {
    background: #0d1117 !important;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
}

.card.bg-black h4 {
    font-size: 1.6rem;
}

.card.bg-black h6 {
    font-size: 1rem;
}

/* Navbar */
.navbar-brand {
    font-size: 1.3rem;
    font-weight: 700;
}

.nav-link {
    font-size: 1.05rem;
}

/* Services stat boxes */
.services-stats h3,
.col-3 h3,
.col-2 h3 {
    font-size: 1.8rem;
    font-weight: 700;
}

.col-3 small,
.col-2 small {
    font-size: 0.95rem;
}

/* Export buttons */
.export-buttons .btn {
    font-size: 1rem;
    padding: 0.4rem 1rem;
    border-radius: 8px;
}

/* Form elements */
.form-control {
    font-size: 1.05rem;
}

.form-text {
    font-size: 0.95rem;
}

/* Scrollbar styling for dark theme */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #1a1d2e;
}

::-webkit-scrollbar-thumb {
    background: #3a3d4e;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #5a5d6e;
}

/* ===== Option 2: Liquid Glass Homepage ===== */

/* Animated background blobs */
.glass-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.glass-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
}

.glass-blob-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(13, 110, 253, 0.15), transparent 70%);
    top: -10%;
    right: -5%;
    animation: blobDrift1 20s ease-in-out infinite;
}

.glass-blob-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(25, 135, 84, 0.12), transparent 70%);
    bottom: 10%;
    left: -8%;
    animation: blobDrift2 25s ease-in-out infinite;
}

.glass-blob-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(111, 66, 193, 0.1), transparent 70%);
    top: 40%;
    right: 20%;
    animation: blobDrift3 18s ease-in-out infinite;
}

@keyframes blobDrift1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-60px, 40px) scale(1.1); }
    66% { transform: translate(30px, -30px) scale(0.95); }
}

@keyframes blobDrift2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(50px, -40px) scale(1.15); }
}

@keyframes blobDrift3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    40% { transform: translate(-40px, 30px) scale(1.08); }
    80% { transform: translate(20px, -50px) scale(0.92); }
}

/* Glass hero */
.glass-hero {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 28px;
    padding: 3.5rem 3rem;
    margin-top: 2rem;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.glass-hero-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.15;
    letter-spacing: -0.5px;
}

.glass-gradient-text {
    background: linear-gradient(135deg, #0d6efd, #198754, #0dcaf0);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease-in-out infinite;
}

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

.glass-hero-sub {
    font-size: 1.1rem;
    color: #95a5c0;
    max-width: 500px;
    line-height: 1.7;
    margin-top: 0.8rem;
}

.glass-micro-badge {
    background: rgba(13, 202, 240, 0.08);
    border: 1px solid rgba(13, 202, 240, 0.2);
    border-radius: 20px;
    padding: 0.3rem 0.8rem;
    font-size: 0.78rem;
    color: #0dcaf0;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

/* Glass buttons */
.glass-btn-primary {
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.8), rgba(13, 110, 253, 0.6));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(13, 110, 253, 0.4);
    border-radius: 14px;
    color: #fff;
    font-weight: 700;
    padding: 0.7rem 2rem;
    box-shadow: 0 4px 20px rgba(13, 110, 253, 0.25);
    transition: all 0.3s ease;
}

.glass-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(13, 110, 253, 0.35);
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.9), rgba(13, 110, 253, 0.7));
    color: #fff;
}

.glass-btn-outline {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    color: #c0cfe0;
    font-weight: 600;
    padding: 0.7rem 1.8rem;
    transition: all 0.3s ease;
}

.glass-btn-outline:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff;
    transform: translateY(-1px);
}

/* Stats row */
.glass-stat {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    color: #8a9ab5;
}

.glass-stat strong {
    font-size: 1.3rem;
    color: #e0e8f0;
    font-weight: 800;
}

/* Glass health card (mock dashboard preview) */
.glass-health-card {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 0;
    overflow: hidden;
    box-shadow:
        0 16px 48px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    max-width: 300px;
    margin: 0 auto;
    animation: cardFloat 6s ease-in-out infinite;
}

@keyframes cardFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.glass-health-header {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0.6rem 1rem;
    background: rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

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

.glass-dot-red { background: #ff5f57; }
.glass-dot-yellow { background: #ffbd2e; }
.glass-dot-green { background: #28c840; }

.glass-health-title {
    font-size: 0.75rem;
    color: #7a8aab;
    margin-left: 0.5rem;
    font-family: monospace;
}

.glass-health-body {
    position: relative;
    padding: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.glass-gauge {
    width: 140px;
    height: 140px;
    transform: rotate(-90deg);
}

.glass-gauge-track {
    fill: none;
    stroke: rgba(255, 255, 255, 0.05);
    stroke-width: 10;
}

.glass-gauge-bar {
    fill: none;
    stroke: url(#gaugeGrad);
    stroke: #198754;
    stroke-width: 10;
    stroke-linecap: round;
    stroke-dasharray: 502;
    stroke-dashoffset: 502;
    animation: glassGaugeAnim 2.5s ease-out 0.8s forwards;
}

@keyframes glassGaugeAnim {
    to { stroke-dashoffset: 65; }
}

.glass-gauge-center {
    position: absolute;
    text-align: center;
}

.glass-gauge-num {
    display: block;
    font-size: 2.4rem;
    font-weight: 800;
    color: #198754;
    line-height: 1;
}

.glass-gauge-label {
    font-size: 0.65rem;
    color: #6c8eb5;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.glass-health-metrics {
    display: flex;
    justify-content: space-around;
    padding: 0.8rem 1rem;
    background: rgba(0, 0, 0, 0.15);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.glass-metric {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
}

.glass-metric i {
    font-size: 1rem;
}

/* Platform ribbon */
.glass-ribbon {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 0.8rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.glass-distro {
    font-size: 0.82rem;
    color: #95a5c0;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

/* Glass card */
.glass-card {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 20px;
    padding: 2rem 2.5rem;
    box-shadow:
        0 4px 24px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.glass-section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    position: relative;
    z-index: 1;
}

/* Steps */
.glass-step {
    text-align: center;
    padding: 1rem;
}

.glass-step-icon {
    width: 52px;
    height: 52px;
    line-height: 52px;
    border-radius: 16px;
    background: rgba(13, 110, 253, 0.1);
    border: 1px solid rgba(13, 110, 253, 0.2);
    color: #0d6efd;
    font-size: 1.3rem;
    margin: 0 auto 0.8rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-step:hover .glass-step-icon {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(13, 110, 253, 0.2);
}

/* Feature items */
.glass-feature {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 0.65rem 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.92rem;
    transition: all 0.3s ease;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.glass-feature:hover {
    transform: translateY(-2px);
    border-color: rgba(13, 110, 253, 0.2);
    background: rgba(255, 255, 255, 0.05);
    box-shadow:
        0 6px 20px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.glass-feature i {
    font-size: 1.1rem;
    width: 22px;
    text-align: center;
    flex-shrink: 0;
}

/* Feature reveal animation */
.glass-feature-reveal {
    opacity: 0;
    transform: translateY(16px) scale(0.97);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.glass-feature-reveal.revealed {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Changelog */
.glass-changelog {
    max-height: 240px;
    overflow-y: auto;
}

.glass-cl-row {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    padding: 0.6rem 0;
    font-size: 0.9rem;
    color: #b0c0d8;
}

.glass-cl-date {
    flex-shrink: 0;
    width: 65px;
    font-size: 0.75rem;
    color: #5a7a9e;
    padding-top: 3px;
}

.glass-cl-dot {
    flex-shrink: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(13, 110, 253, 0.4);
    margin-top: 6px;
    box-shadow: 0 0 8px rgba(13, 110, 253, 0.3);
}

.glass-cl-row strong {
    color: #e0e8f0;
}

.glass-badge-glow {
    background: rgba(13, 110, 253, 0.15);
    color: #5b9bd5;
    border: 1px solid rgba(13, 110, 253, 0.2);
    font-size: 0.75rem;
    box-shadow: 0 0 12px rgba(13, 110, 253, 0.15);
}

/* Glass CTA */
.glass-cta {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(13, 110, 253, 0.12);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
