@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');
﻿/* landing.css - Premium SEO Landing Page Styles */

:root {
    --gold-accent: #fbbf24;
}

/* Base reset for landing page to avoid conflicts */
body.landing-page {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: 'Plus Jakarta Sans', sans-serif;
    margin: 0;
    padding: 0;
}

/* Container */
.landing-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10rem 2rem 0; /* Clears the floating header perfectly */
}

/* Floating Pill Header */
.landing-header.floating-pill {
    position: fixed;
    top: calc(1.5rem + env(safe-area-inset-top));
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1000px;
    background-color: rgba(15, 23, 42, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 1.5rem;
    z-index: 1000;
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.05), 0 10px 40px rgba(0,0,0,0.5);
}

.landing-logo img {
    height: 56px; /* Increased from 40px */
    width: auto;
}

.landing-nav .btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1.25rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 50px; /* Pill shaped to match the container */
    text-decoration: none;
    white-space: nowrap;
    background: linear-gradient(180deg, #3b82f6 0%, #2563eb 100%);
    border: 1px solid #1d4ed8;
    color: white;
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.3), 0 2px 8px rgba(0, 0, 0, 0.4);
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
    transition: transform 200ms ease, box-shadow 200ms ease, background 200ms ease;
}

@media (hover: hover) and (pointer: fine) {
.landing-nav .btn-primary:hover {
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.3), 0 4px 12px rgba(0, 0, 0, 0.5);
    transform: translateY(-1px);
}
}

.landing-nav {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.landing-nav .btn-discord {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1.25rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    white-space: nowrap;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #e2e8f0;
    transition: transform 200ms ease, box-shadow 200ms ease, background 200ms ease, border-color 200ms ease, color 200ms ease;
}


.landing-nav .btn-primary:active,
.landing-nav .btn-discord:active {
    transform: translateY(0) scale(0.97);
    transition: transform 160ms cubic-bezier(0.23, 1, 0.32, 1);
}

@media (hover: hover) and (pointer: fine) {
.landing-nav .btn-discord:hover {
    background: rgba(88, 101, 242, 0.2);
    border-color: #5865F2;
    color: #fff;
    transform: translateY(-1px);
}
}

/* Hero Section */
.hero-section {
    padding: 1rem 0 2rem;
    text-align: center;
    position: relative;
}

/* Premium Background Glows */
.hero-bg-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -2;
    opacity: 0.2;
    pointer-events: none;
    will-change: transform, opacity;
}

@keyframes orbPulse1 {
    0%, 100% { transform: scale(1) translate(0, 0); opacity: 0.2; }
    50% { transform: scale(1.05) translate(30px, 30px); opacity: 0.3; }
}

@keyframes orbPulse2 {
    0%, 100% { transform: scale(1) translate(0, 0); opacity: 0.15; }
    50% { transform: scale(1.1) translate(-30px, -20px); opacity: 0.25; }
}

@keyframes orbPulse3 {
    0%, 100% { transform: scale(1) translate(-50%, 0); opacity: 0.15; }
    50% { transform: scale(1.2) translate(-50%, -20px); opacity: 0.25; }
}

.glow-1 {
    width: 500px;
    height: 500px;
    background-color: #4f46e5; /* Deep Indigo */
    top: -50px;
    left: -10vw;
    animation: orbPulse1 12s ease-in-out infinite;
}

.glow-2 {
    width: 500px;
    height: 500px;
    background-color: #0ea5e9; /* Vivid Sky Blue */
    bottom: 50px;
    right: -10vw;
    animation: orbPulse2 15s ease-in-out infinite;
}

.glow-3 {
    width: 800px;
    height: 400px;
    background-color: #3b82f6; /* Core Blue */
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    animation: orbPulse3 10s ease-in-out infinite;
    filter: blur(150px);
}

/* Reduced Motion Safety */
@media (prefers-reduced-motion: reduce) {
    .hero-bg-glow { animation: none !important; }
    
    /* Disable spatial movement for entrances, keep opacity */
    @keyframes fadeUp {
        from { opacity: 0; }
        to { opacity: 1; }
    }
    @keyframes fadeDown {
        from { opacity: 0; }
        to { opacity: 1; }
    }
    @keyframes floatDashboard {
        from, to { transform: none; }
    }
}

/* Tech Grid Overlay with Radial Mask */
.hero-grid-overlay {
    position: absolute;
    top: 0;
    left: 50%;
    width: 100vw;
    transform: translateX(-50%);
    height: 100%;
    z-index: -1;
    pointer-events: none;
    background-size: 32px 32px;
    background-image: 
        linear-gradient(to right, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    mask-image: radial-gradient(circle at top center, black 0%, rgba(0,0,0,0.4) 40%, transparent 70%);
    -webkit-mask-image: radial-gradient(circle at top center, black 0%, rgba(0,0,0,0.4) 40%, transparent 70%);
}

/* Premium Integrated Button Hover & Click */
.hero-cta .btn-glow.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    border-radius: 50px;
    background: linear-gradient(180deg, #3b82f6 0%, #2563eb 100%);
    border: 1px solid #1d4ed8;
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.3), 0 4px 12px rgba(0, 0, 0, 0.4);
    will-change: transform, box-shadow;
    transition: transform 200ms ease, box-shadow 200ms ease, background 200ms ease;
}

@media (hover: hover) and (pointer: fine) {
.hero-cta .btn-glow.btn-primary:hover {
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.4), 0 8px 16px rgba(0, 0, 0, 0.5);
    transform: translateY(-3px) scale(1.02);
    background: linear-gradient(180deg, #60a5fa 0%, #3b82f6 100%);
}
}

.hero-cta .btn-glow.btn-primary:active {
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2), 0 2px 8px rgba(30, 64, 175, 0.3);
    transform: translateY(1px) scale(0.97);
    transition: transform 160ms ease-out, box-shadow 160ms ease-out;
}

/* Discord Secondary Button */
.hero-cta .btn-discord {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.875rem 1.75rem;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 50px; /* Updated to match GPA Calc roundness */
    text-decoration: none;
    background: linear-gradient(180deg, #5865F2 0%, #4752C4 100%);
    border: 1px solid #4752C4;
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.2), 0 4px 12px rgba(0, 0, 0, 0.4);
    color: white;
    transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
    will-change: transform, box-shadow, border-color;
}

@media (hover: hover) and (pointer: fine) {
.hero-cta .btn-discord:hover {
    background: linear-gradient(180deg, #6974f3 0%, #5865F2 100%);
    border-color: #5865F2;
    transform: translateY(-2px);
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.25), 0 8px 16px rgba(0, 0, 0, 0.5);
}
}

.hero-cta .btn-discord:active {
    transform: translateY(1px) scale(0.97);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: transform 160ms ease-out, box-shadow 160ms ease-out;
}

.author-credit {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.footer-heart {
    color: #ef4444;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-block;
}

.author-credit:hover .footer-heart {
    transform: scale(1.3);
}

.footer-author {
    color: var(--text-secondary);
    font-weight: 600;
    cursor: pointer;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

@media (hover: hover) and (pointer: fine) {
.footer-author:hover {
    color: var(--gold-accent);
    text-shadow: 0 0 8px rgba(251, 191, 36, 0.5);
}
}

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

/* 3D Isometric Dashboard Mockup */
.hero-mockup-container {
    margin-top: 1rem;
    position: relative;
    perspective: 1200px; /* Creates the 3D space */
    z-index: 1;
    padding: 0 1rem;
    opacity: 0;
}

.hero-mockup-container.in-view {
    animation: scrollRevealMockup 1.2s cubic-bezier(0.23, 1, 0.32, 1) forwards, floatDashboard 8s ease-in-out 1.2s infinite;
}

@keyframes scrollRevealMockup {
    from { opacity: 0; transform: translateY(120px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (prefers-reduced-motion: reduce) {
    .hero-mockup-container.in-view {
        animation: fadeUp 0.5s ease forwards; /* Uses existing fadeUp without large translations */
    }
}

.mockup-placeholder {
    margin: 0 auto;
    max-width: 900px;
    background-color: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px 16px 0 0;
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.1), 0 35px 60px -15px rgba(0, 0, 0, 0.8), 0 0 40px rgba(99, 102, 241, 0.15);
    transform: rotateX(8deg);
    transform-origin: top center;
    transition: transform 0.5s ease;
    mask-image: linear-gradient(to bottom, black 55%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 55%, transparent 100%);
    overflow: hidden;
    height: auto;
    min-height: 250px;
}

.mockup-placeholder:hover {
    transform: rotateX(4deg); /* Tilt up slightly on hover */
}

.dashboard-mockup-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: top center;
    border-radius: 0 0 12px 12px; /* Bottom corners match, top handled by container overflow */
    cursor: pointer;
}

.mockup-header {
    background-color: var(--bg-tertiary);
    padding: 1rem;
    display: flex;
    gap: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mockup-header .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red { background-color: #ef4444; }
.dot.yellow { background-color: #f59e0b; }
.dot.green { background-color: #10b981; }

.mockup-body {
    display: flex;
    height: 100%;
    padding: 1.5rem;
    gap: 1.5rem;
}

.mockup-sidebar {
    width: 20%;
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    height: 100%;
}

.mockup-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mockup-card.wide {
    height: 80px;
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
}

.mockup-card-group {
    display: flex;
    gap: 1.5rem;
}

.mockup-box {
    flex: 1;
    
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
}

.hero-logo {
    display: inline-block;
    margin-bottom: 0.5rem;
    animation: fadeDown 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-logo img {
    height: 110px;
    width: auto;
    /* Removed box-shadow and border-radius to prevent a visible rectangular bounding box */
}

.hero-text-rotator {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    align-items: center;
    justify-items: center;
    position: relative;
    min-height: 200px; /* Prevents button jump on mobile */
    margin-bottom: 3rem;
}

.hero-text-slide {
    grid-column: 1;
    grid-row: 1;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.hero-text-slide.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

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



.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    letter-spacing: -0.04em;
    color: #ffffff;
    animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
}

.hero-gradient-text {
    background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #cbd5e1;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 400;
    letter-spacing: -0.015em;
    animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

.hero-cta {
    animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}

.hero-cta .btn-primary {
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(59, 130, 246, 0.4);
    text-decoration: none;
}


/* Features Section */
.features-section {
    padding: 5rem 0;
}

.features-header {
    margin-bottom: 5rem;
}
.premium-badge-wrapper {
    display: flex;
    justify-content: center;
}
.premium-badge {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #e2e8f0;
    font-size: 0.85rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: inset 0 1px 1px rgba(255,255,255,0.05), 0 4px 12px rgba(0,0,0,0.2);
    backdrop-filter: blur(8px);
}
.badge-dot {
    width: 6px;
    height: 6px;
    background-color: #60a5fa;
    border-radius: 50%;
    box-shadow: 0 0 8px #60a5fa;
}
.text-center { text-align: center; }
.text-gradient-blue {
    background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.section-title {
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-top: 1rem;
    margin-bottom: 0.75rem;
    color: #f8fafc;
}
.section-subtitle {
    font-size: 1.125rem;
    color: #94a3b8;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}
.mt-12 { margin-top: 4rem; }

/* Bento Grid Overhaul */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1.5rem;
}

/* Premium Glass Cards */
.feature-card {
    background: rgba(15, 23, 42, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 24px;
    padding: 0;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 20px 40px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease;
    z-index: 1;
}

/* Subtle Static Glow inside card */
.feature-card-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 0% 0%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

@media (hover: hover) and (pointer: fine) {
.feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 30px 60px rgba(0, 0, 0, 0.4);
}
}

.feature-content {
    padding: 2.5rem 2.5rem 0 2.5rem;
    position: relative;
    z-index: 2;
}

/* Premium Icon Container */
.feature-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #60a5fa;
    margin-bottom: 1.5rem;
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.1), 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Typography refinements */
.feature-title {
    font-size: 1.35rem;
    font-weight: 500;
    letter-spacing: -0.01em;
    margin: 0 0 0.5rem 0;
    color: #f8fafc;
}

.feature-desc {
    font-size: 1rem;
    color: #94a3b8;
    line-height: 1.5;
    margin: 0;
    font-weight: 400;
}

/* Premium Image Wrappers */
.premium-img-wrapper {
    position: relative;
    z-index: 5;
    width: 100%;
    margin-top: 2rem;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.premium-img-wrapper.centered-image {
    padding: 1.5rem 2.5rem 2.5rem 2.5rem;
    align-items: center;
    flex-grow: 1;
    margin-top: 0;
}

/* Fixed Image Styling - no auto stretching */
.premium-img-wrapper img {
    cursor: pointer;
    width: auto;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.08);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-card:hover .premium-img-wrapper img:active {
    transform: translateY(-4px) scale(0.96);
    transition: transform 160ms cubic-bezier(0.23, 1, 0.32, 1);
}

.feature-card:hover .premium-img-wrapper img {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.15);
}

/* High-end Blur Reveal Animation */
.reveal-blur {
    opacity: 0;
    transform: translateY(30px);
    filter: blur(8px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                filter 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-blur.in-view {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }

/* Grid Responsive */
.col-12 { grid-column: span 12; }
.col-8 { grid-column: span 8; }
.col-7 { grid-column: span 7; }
.col-5 { grid-column: span 5; }
.col-4 { grid-column: span 4; }

@media (max-width: 992px) {
    .col-8, .col-7, .col-5, .col-4 { grid-column: span 12; }
}

@media (max-width: 768px) {
    .section-title { font-size: 2.25rem; }
    .feature-content { padding: 2rem 1.5rem 0 1.5rem; }
    
    .premium-img-wrapper.centered-image { padding: 0 1.5rem 1.5rem 1.5rem; }
    
    .premium-img-wrapper.centered-image img {
        border-radius: 16px !important;
        border: 1px solid rgba(255,255,255,0.08) !important;
        box-shadow: 0 10px 30px rgba(0,0,0,0.4) !important;
    }
    /* Ensure stat groups stack on narrow screens to prevent text squishing */
    .results-stat-group,
    .att-stats {
        flex-direction: column;
    }

    /* Fix Mockup padding and squishing on mobile */
    .fs-mockup .monitor-mockup,
    .fs-mockup .att-mockup,
    .fs-mockup .discord-mockup,
    .fs-mockup .results-mockup,
    .fs-mockup .csp-mockup {
        padding: 0.5rem !important;
    }
    
    .mon-stats {
        flex-direction: column;
    }
    
    .csp-header, .csp-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }


}

/* Image Size Constraints for High-Res Displays */
.img-sm { max-width: 320px; }
.img-md { max-width: 480px; }
.img-lg { max-width: 600px; }



/* FAQ Section */
.faq-section {
    padding: 5rem 0 2rem;
    background: transparent;
}

.faq-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    background: linear-gradient(180deg, rgba(30, 41, 59, 0.3) 0%, rgba(15, 23, 42, 0.5) 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 0 2.5rem;
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.05), 0 20px 40px rgba(0,0,0,0.3);
}

.faq-item {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0;
}

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

.faq-summary {
    padding: 2rem 0;
    font-size: 1.15rem;
    font-weight: 500;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-primary);
    transition: color 0.3s ease;
}

.faq-summary::-webkit-details-marker {
    display: none;
}

.faq-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    color: var(--text-secondary);
    transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}


.faq-summary:active {
    transform: scale(0.99);
    transition: transform 160ms cubic-bezier(0.23, 1, 0.32, 1);
}

@media (hover: hover) and (pointer: fine) {
.faq-summary:hover {
    color: #fff;
}
}

.faq-summary:hover .faq-icon {
    background: rgba(255,255,255,0.08);
    color: #fff;
    transform: scale(1.1);
}

.faq-item.active .faq-summary {
    color: #fff;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    background: var(--gold-accent);
    color: #000;
    border-color: transparent;
    box-shadow: 0 0 15px rgba(251, 191, 36, 0.3);
}

.faq-content-wrapper {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-content-inner {
    overflow: hidden;
}

.faq-item.active .faq-content-wrapper {
    grid-template-rows: 1fr;
}

.faq-content {
    padding: 0 0 2.5rem 0;
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1rem;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-content {
    opacity: 1;
    transform: translateY(0);
}

/* Footer */
.landing-footer {
    position: relative;
    padding: 3rem 0 3rem;
    margin-top: 1rem;
    overflow: hidden;
}

.landing-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
}

.landing-footer::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 600px;
    height: 300px;
    background: radial-gradient(closest-side, rgba(88, 101, 242, 0.15) 0%, transparent 100%);
    pointer-events: none;
    z-index: -1;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 3rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}


.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.footer-logo img {
    height: 56px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(255,255,255,0.2));
}

.footer-tagline {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin: 0;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    width: 100%;
}





.badge-heart {
    color: #ef4444;
    font-size: 0.9rem;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}



.footer-copyright {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-mockup-container {
        padding: 0;
        margin-top: 3rem;
        perspective: 800px;
    }
    .mockup-placeholder {
        transform: rotateX(6deg) scale(1.02);
        border-radius: 8px 8px 0 0;
        width: 100%;
        max-width: 100%;
        border-left: none;
        border-right: none;
        min-height: auto;
    }

    .landing-header.floating-pill {
        padding: 0.5rem 1rem;
        width: 95%;
        top: 1rem;
    }
    .landing-logo img {
        height: 36px;
    }
    .landing-nav {
        gap: 0.4rem;
    }
    .landing-nav .btn-primary, .landing-nav .btn-discord {
        padding: 0.4rem 0.8rem;
        font-size: 0.85rem;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .bento-grid {
        grid-template-columns: 1fr;
    }
    .card-wide {
        grid-column: span 1;
    }
    /* Ensure stat groups stack on narrow screens to prevent text squishing */
    .results-stat-group,
    .att-stats {
        flex-direction: column;
    }

    /* Fix Mockup padding and squishing on mobile */
    .fs-mockup .monitor-mockup,
    .fs-mockup .att-mockup,
    .fs-mockup .discord-mockup,
    .fs-mockup .results-mockup,
    .fs-mockup .csp-mockup {
        padding: 0.5rem !important;
    }
    
    .mon-stats {
        flex-direction: column;
    }
    
    .csp-header, .csp-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }


}

@media (max-width: 480px) {
    .landing-header.floating-pill {
        padding: 0.4rem 0.5rem;
    }
    .landing-logo img {
        height: 28px;
    }
    .landing-nav {
        gap: 0.3rem;
    }
    .landing-nav .btn-primary, .landing-nav .btn-discord {
        padding: 0.4rem 0.6rem;
        font-size: 0.8rem;
    }
    .landing-nav .fa-rocket, 
    .landing-nav .fa-discord {
        margin-left: 0.3rem !important; 
    }
}

@media (max-width: 350px) {
    .landing-nav .btn-text {
        display: none;
    }
    .landing-nav .fa-rocket, 
    .landing-nav .fa-discord {
        margin-left: 0 !important;
    }
    .landing-nav .btn-primary, 
    .landing-nav .btn-discord {
        padding: 0.5rem;
        border-radius: 50%;
        width: 36px;
        height: 36px;
    }
}

/* Lightbox Modal */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(10, 15, 25, 0.95);
    backdrop-filter: blur(10px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.lightbox-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.lightbox-img {
    max-width: 90vw;
    max-height: 90vh;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    transform: scale(0.95);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.lightbox-overlay.active .lightbox-img {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 200ms ease, transform 200ms ease;
    z-index: 10000;
}


.lightbox-close:active {
    transform: scale(0.95);
    transition: transform 160ms cubic-bezier(0.23, 1, 0.32, 1);
}

@media (hover: hover) and (pointer: fine) {
.lightbox-close:hover {
    background: rgba(255,255,255,0.2);
    transform: scale(1.1);
}
}

/* Accessibility: Keyboard Focus Visibility */
.btn-primary:focus-visible, 
.btn-discord:focus-visible,
.faq-summary:focus-visible, 
.social-link:focus-visible,
.social-card-close:focus-visible,
.lightbox-close:focus-visible {
    outline: 2px solid var(--gold-accent, #fbbf24);
    outline-offset: 4px;
}

/* Accessibility: Respect Reduced Motion Preferences */
@media (prefers-reduced-motion: reduce) {
    *, ::before, ::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    /* Explicitly disable 3D transform that might trigger motion sickness */
    .mockup-placeholder { 
        transform: none !important; 
    }
    .mockup-placeholder:hover {
        transform: none !important;
    }
}



@media (max-width: 768px) {
    .hero-title {
        font-size: 2.75rem !important;
        letter-spacing: -0.02em !important;
    }
    .hero-subtitle {
        font-size: 1.1rem !important;
    }
    /* Ensure stat groups stack on narrow screens to prevent text squishing */
    .results-stat-group,
    .att-stats {
        flex-direction: column;
    }

    /* Fix Mockup padding and squishing on mobile */
    .fs-mockup .monitor-mockup,
    .fs-mockup .att-mockup,
    .fs-mockup .discord-mockup,
    .fs-mockup .results-mockup,
    .fs-mockup .csp-mockup {
        padding: 0.5rem !important;
    }
    
    .mon-stats {
        flex-direction: column;
    }
    
    .csp-header, .csp-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }


}


/* Scroll Indicator */
.hero-scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-top: 5rem;
    margin-bottom: 4rem; /* Overlap slightly with mockup gap */
    opacity: 0;
    animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.8s forwards;
    cursor: pointer;
    z-index: 10;
    position: relative;
}

.hero-scroll-indicator:hover .scroll-text {
    color: #fff;
}

.mouse-icon {
    width: 24px;
    height: 36px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    position: relative;
    display: flex;
    justify-content: center;
}

.mouse-wheel {
    width: 4px;
    height: 6px;
    background-color: #60a5fa;
    border-radius: 2px;
    margin-top: 6px;
    animation: scrollWheel 2s cubic-bezier(0.15, 0.41, 0.69, 0.94) infinite;
}

.scroll-text {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

@keyframes scrollWheel {
    0% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(8px); opacity: 0; }
    51% { transform: translateY(-8px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
    .mouse-wheel { animation: none; }
}

/* Code-based Mockup: Results */
.mockup-wrapper {
    position: relative;
    z-index: 5;
    width: 100%;
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    padding: 0 2.5rem 2.5rem 2.5rem;
    gap: 1rem;
}

.results-stat-group {
    display: flex;
    gap: 1rem;
    width: 100%;
}

.results-stat-card {
    flex: 1;
    background: rgba(30, 41, 59, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    opacity: 0;
    transform: translateY(20px);
}

.feature-showcase.in-view .results-stat-card {
    animation: popUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.results-stat-card.delay-2 { animation-delay: 0.3s; }
.results-stat-card.delay-3 { animation-delay: 0.45s; }

.r-icon {
    width: 36px;
    height: 36px;
    background: rgba(59, 130, 246, 0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #60a5fa;
    font-size: 1rem;
    flex-shrink: 0;
}

.r-data {
    display: flex;
    flex-direction: column;
}

.r-val {
    font-size: 1.15rem;
    font-weight: 700;
    color: #f8fafc;
    line-height: 1.2;
}

.r-label {
    font-size: 0.7rem;
    color: #94a3b8;
    margin-top: 2px;
}





.results-chart {
    background: rgba(30, 41, 59, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 1.5rem 1rem 1rem 1rem;
    opacity: 0;
    transform: translateY(20px);
    
    display: flex;
}

.feature-showcase.in-view .results-chart {
    animation: popUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards;
}

.results-svg {
    width: 100%;
    height: auto;
    overflow: visible;
}

.chart-line {
    stroke-dasharray: 400;
    stroke-dashoffset: 400;
}
.feature-showcase.in-view .chart-line {
    animation: drawLine 1.5s cubic-bezier(0.16, 1, 0.3, 1) 0.9s forwards;
}

.chart-area {
    opacity: 0;
}
.feature-showcase.in-view .chart-area {
    animation: fadeIn 1s ease 1.6s forwards;
}

.chart-point {
    opacity: 0;
    transform: scale(0);
    transform-origin: center;
    transform-box: fill-box;
}
.feature-showcase.in-view .chart-point.pt-1 { animation: popScale 0.4s cubic-bezier(0.16, 1, 0.3, 1) 1.0s forwards; }
.feature-showcase.in-view .chart-point.pt-2 { animation: popScale 0.4s cubic-bezier(0.16, 1, 0.3, 1) 1.3s forwards; }
.feature-showcase.in-view .chart-point.pt-3 { animation: popScale 0.4s cubic-bezier(0.16, 1, 0.3, 1) 1.6s forwards; }
.feature-showcase.in-view .chart-point.pt-4 { animation: popScale 0.4s cubic-bezier(0.16, 1, 0.3, 1) 1.9s forwards; }

@keyframes popUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes drawLine {
    to { stroke-dashoffset: 0; }
}
@keyframes popScale {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

/* Code-based Mockup: Discord Pings */
.discord-mockup {
    padding: 0 1.5rem 1.5rem 1.5rem;
    display: flex;
    justify-content: center;
    align-items: flex-end; /* push to bottom like the image */
    height: 100%;
}

.d-msg {
    background: #1e293b;
    border-radius: 8px;
    padding: 1rem;
    display: flex;
    gap: 1rem;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5), inset 0 1px 1px rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.05);
    opacity: 0;
    transform: translateY(20px);
}

.feature-showcase.in-view .d-msg {
    animation: popUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

.d-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e3e5e8;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.d-content {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    width: 100%;
}

.d-header {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 0.2rem;
}

.d-name {
    color: #f2f3f5;
    font-weight: 600;
    font-size: 0.95rem;
}

.d-badge {
    background: #5865f2;
    color: white;
    font-size: 0.6rem;
    font-weight: 700;
    padding: 0.1rem 0.3rem;
    border-radius: 4px;
    line-height: 1;
}

.d-time {
    color: #949ba4;
    font-size: 0.75rem;
}

.d-embed {
    background-color: rgba(15, 23, 42, 0.4);
    border-left: 4px solid #3b82f6;
    border-radius: 4px;
    padding: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    opacity: 0;
    transform: translateX(-15px);
}

.feature-showcase.in-view .d-embed {
    animation: slideInRight 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.feature-showcase.in-view .d-delay-1 { animation-delay: 0.7s; }
.feature-showcase.in-view .d-delay-2 { animation-delay: 1.2s; }

.d-embed-title {
    color: #3b82f6;
    font-weight: 700;
    font-size: 0.85rem;
}

.d-embed-desc {
    color: #dbdee1;
    font-size: 0.8rem;
    line-height: 1.4;
}

.d-embed-fields {
    margin-top: 0.3rem;
}

.d-field-name {
    color: #f2f3f5;
    font-size: 0.75rem;
    font-weight: 600;
}

.d-field-val {
    color: #dbdee1;
    font-size: 0.75rem;
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(-15px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Code-based Mockup: 1-Click Downloads */
.download-mockup {
    position: relative;
    padding: 0;
    height: 240px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.dl-bg-ui {
    width: 100%;
    height: 100%;
    background: #111827;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    border: 1px solid rgba(255,255,255,0.05);
    border-bottom: none;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: absolute;
    bottom: 0;
    mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
}

.dl-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dl-title {
    color: #94a3b8;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.dl-btn-download {
    background: #1e293b;
    border: 1px solid rgba(255,255,255,0.1);
    color: #f8fafc;
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transform-origin: center;
}

.dl-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.dl-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.dl-file {
    width: 60%;
    height: 8px;
    background: rgba(255,255,255,0.05);
    border-radius: 4px;
}
.dl-size {
    width: 15%;
    height: 8px;
    background: rgba(255,255,255,0.05);
    border-radius: 4px;
}

/* Animations */
.feature-showcase.in-view .dl-btn-download {
    animation: dlBtnPress 6s infinite;
}

.dl-cursor {
    position: absolute;
    bottom: -20px;
    right: 30%;
    color: #ffffff;
    font-size: 1.5rem;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
    z-index: 10;
    opacity: 0;
}
.feature-showcase.in-view .dl-cursor {
    animation: dlCursorMove 6s ease-in-out infinite;
}

.dl-modal {
    position: relative;
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    padding: 2.25rem 2rem;
    width: 240px;
    height: 130px;
    z-index: 5;
    opacity: 0;
    transform: scale(0.95);
    pointer-events: none;
    overflow: hidden;
}
.feature-showcase.in-view .dl-modal {
    animation: dlModalPop 6s infinite;
}

.dl-modal-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: absolute;
    inset: 0;
    justify-content: center;
}
.state-loading { opacity: 0; }
.state-success { opacity: 0; }

.feature-showcase.in-view .state-loading {
    animation: stateLoading 6s infinite;
}
.feature-showcase.in-view .state-success {
    animation: stateSuccess 6s infinite;
}

.dl-icon-blue, .dl-icon-green {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 0.75rem;
    color: white;
}
.dl-icon-blue {
    background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
    box-shadow: 0 8px 24px rgba(59,130,246,0.35), inset 0 1px 1px rgba(255,255,255,0.4);
}
.dl-icon-green {
    background: linear-gradient(135deg, #34d399 0%, #10b981 100%);
    box-shadow: 0 8px 24px rgba(16,185,129,0.35), inset 0 1px 1px rgba(255,255,255,0.4);
}

.dl-m-title {
    color: #f8fafc;
    font-weight: 700;
    font-size: 1.15rem;
    letter-spacing: -0.01em;
    margin-bottom: 0.25rem;
}
.dl-m-sub {
    color: #94a3b8;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.dl-progress-track {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255,255,255,0.05);
    overflow: hidden;
}
.dl-progress-fill {
    height: 100%;
    background: #3b82f6;
    width: 100%;
    transform-origin: left;
    transform: scaleX(0);
}
.dl-progress-fill.full {
    transform: scaleX(1);
    background: #10b981;
}

.feature-showcase.in-view .dl-progress-fill:not(.full) {
    animation: dlProgress 6s infinite;
}

/* Keyframes Timeline (6s total) */
@keyframes dlCursorMove {
    0%   { transform: translate(0, 50px); opacity: 0; }
    5%   { opacity: 1; }
    15%  { transform: translate(50px, -150px); }
    20%  { transform: translate(50px, -150px) scale(0.9); } /* Click */
    22%  { transform: translate(50px, -150px) scale(1); }
    25%  { opacity: 0; transform: translate(60px, -130px); }
    100% { opacity: 0; transform: translate(60px, -130px); }
}

@keyframes dlBtnPress {
    0%, 15% { background: #1e293b; transform: scale(1); }
    17%     { background: #334155; transform: scale(1); } /* Hover */
    20%     { background: #3b82f6; transform: scale(0.95); border-color:#3b82f6;} /* Active */
    22%     { background: #334155; transform: scale(1); }
    30%, 100% { background: #1e293b; transform: scale(1); }
}

@keyframes dlModalPop {
    0%, 22%  { opacity: 0; transform: scale(0.95); }
    25%      { opacity: 1; transform: scale(1); }
    85%      { opacity: 1; transform: scale(1); }
    90%, 100%{ opacity: 0; transform: scale(0.95); }
}

@keyframes stateLoading {
    0%, 24%  { opacity: 0; }
    25%, 55% { opacity: 1; }
    58%, 100%{ opacity: 0; }
}

@keyframes stateSuccess {
    0%, 55%  { opacity: 0; transform: scale(0.95); }
    58%      { opacity: 1; transform: scale(1); }
    85%      { opacity: 1; }
    90%, 100%{ opacity: 0; }
}

@keyframes dlProgress {
    0%, 25%  { transform: scaleX(0); }
    55%, 100%{ transform: scaleX(1); }
}

/* Code-based Mockup: Deadline Monitor */
.monitor-mockup {
    position: relative;
    padding: 0 2.5rem 2.5rem 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    height: 100%;
    margin-top: 2rem;
}

.mon-stats {
    display: flex;
    gap: 1rem;
}

.mon-stat {
    flex: 1;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255,255,255,0.05);
    opacity: 0;
    transform: translateY(15px);
}

.feature-showcase.in-view .mon-stat {
    animation: popUp 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.feature-showcase.in-view .mon-delay-1 { animation-delay: 0.3s; }
.feature-showcase.in-view .mon-delay-2 { animation-delay: 0.4s; }

.urgent-stat { border-left: 3px solid #f59e0b; }
.missed-stat { border-left: 3px solid #ef4444; }

.urgent-stat .mon-stat-icon { color: #f59e0b; background: rgba(245,158,11,0.1); }
.missed-stat .mon-stat-icon { color: #ef4444; background: rgba(239,68,68,0.1); }

.mon-stat-icon {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.mon-stat-info { display: flex; flex-direction: column; }
.mon-val { font-size: 1.1rem; font-weight: 700; color: #f8fafc; line-height: 1.1; }
.mon-label { font-size: 0.65rem; color: #94a3b8; text-transform: uppercase; letter-spacing: 0.05em; margin-top: 2px; }

.mon-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.mon-item {
    background: #1e293b;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 10px;
    padding: 1rem;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
}

.feature-showcase.in-view .mon-item {
    animation: slideUpFade 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.feature-showcase.in-view .mon-delay-3 { animation-delay: 0.6s; }
.feature-showcase.in-view .mon-delay-4 { animation-delay: 0.8s; }

.item-urgent {
    background: linear-gradient(to right, rgba(245,158,11,0.05), transparent 30%), #1e293b;
    border-color: rgba(245,158,11,0.2);
}

.item-missed {
    background: linear-gradient(to right, rgba(239,68,68,0.05), transparent 30%), #1e293b;
    border-color: rgba(239,68,68,0.2);
}

.mon-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.3rem;
}

.mon-item-title {
    color: #f8fafc;
    font-size: 0.95rem;
    font-weight: 600;
}

.mon-badge {
    font-size: 0.6rem;
    font-weight: 700;
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    letter-spacing: 0.05em;
}

.badge-urgent { background: rgba(245,158,11,0.15); color: #fbbf24; }
.badge-missed { background: rgba(239,68,68,0.15); color: #f87171; }

.mon-item-course {
    color: #94a3b8;
    font-size: 0.8rem;
    margin-bottom: 0.75rem;
}

.mon-item-footer {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    font-weight: 500;
}

.item-urgent .mon-item-footer { color: #fbbf24; }
.item-missed .mon-item-footer { color: #f87171; }

.mon-timer-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(245,158,11,0.1);
}

.mon-timer-fill {
    height: 100%;
    background: #f59e0b;
    width: 100%;
    transform-origin: left;
}

.feature-showcase.in-view .mon-timer-fill {
    animation: timerDrain 15s linear infinite;
}

.feature-showcase.in-view .urgent-stat .mon-stat-icon {
    animation: urgentPulse 2s infinite;
}

@keyframes slideUpFade {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes timerDrain {
    0% { transform: scaleX(1); }
    100% { transform: scaleX(0); }
}

@keyframes urgentPulse {
    0%, 100% { filter: drop-shadow(0 0 2px rgba(245,158,11,0.2)); }
    50% { filter: drop-shadow(0 0 10px rgba(245,158,11,0.8)); }
}

/* Code-based Mockup: CSP Tracking */
.csp-mockup {
    position: relative;
    padding: 0 1.5rem 1.5rem 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    margin-top: 1rem;
}

.csp-card {
    background: #111827;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 12px;
    padding: 1.5rem;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    opacity: 0;
    transform: translateY(20px);
}

.feature-showcase.in-view .csp-card {
    animation: popUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.csp-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.csp-title {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.csp-stats {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.csp-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.csp-stat-val {
    font-size: 1.7rem;
    font-weight: 700;
    line-height: 1;
    color: #f8fafc;
}

.text-blue { color: #3b82f6; }

.csp-stat-label {
    font-size: 0.5rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 0.3rem;
}

.csp-stat-divider {
    color: #475569;
    font-size: 1.5rem;
    font-weight: 300;
}

.csp-grid {
    display: grid;
    grid-template-columns: repeat(20, 1fr);
    gap: 4px;
    margin-bottom: 1.5rem;
}

.csp-block {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 3px;
    background: #1e293b;
}

.feature-showcase.in-view .csp-filled {
    animation: fillBlock 0.3s forwards;
    animation-delay: calc(0.2s + (var(--i) * 0.04s));
}

.csp-current {
    background: transparent;
    border: 1px solid #1e40af;
}

.csp-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.csp-pct {
    color: #f8fafc;
    font-size: 0.9rem;
    font-weight: 600;
}

.text-green { color: #10b981; }

.csp-rem {
    color: #94a3b8;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

@keyframes fillBlock {
    0% { background: #1e293b; transform: scale(1); }
    50% { background: #34d399; transform: scale(1.2); box-shadow: 0 0 8px rgba(16,185,129,0.5); }
    100% { background: #10b981; transform: scale(1); }
}

/* Code-based Mockup: Live Attendance */
.att-mockup {
    position: relative;
    padding: 0 2rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    height: 100%;
    margin-top: 2rem;
}

.att-stats {
    display: flex;
    gap: 1rem;
}

.att-stat {
    flex: 1;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255,255,255,0.05);
    opacity: 0;
    transform: translateY(15px);
}

.feature-showcase.in-view .att-stat {
    animation: popUp 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.feature-showcase.in-view .att-delay-1 { animation-delay: 0.2s; }
.feature-showcase.in-view .att-delay-2 { animation-delay: 0.3s; }
.feature-showcase.in-view .att-delay-3 { animation-delay: 0.4s; }

.stat-safe { border-left: 3px solid #10b981; }
.stat-warn { border-left: 3px solid #f59e0b; }
.stat-crit { border-left: 3px solid #ef4444; }

.stat-safe .att-icon { color: #10b981; background: rgba(16,185,129,0.1); }
.stat-warn .att-icon { color: #f59e0b; background: rgba(245,158,11,0.1); }
.stat-crit .att-icon { color: #ef4444; background: rgba(239,68,68,0.1); }

.att-icon {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.att-info { display: flex; flex-direction: column; }
.att-val { font-size: 1.1rem; font-weight: 700; color: #f8fafc; line-height: 1.1; }
.att-label { font-size: 0.65rem; color: #94a3b8; text-transform: uppercase; letter-spacing: 0.05em; margin-top: 2px; }

.att-courses {
    display: flex;
    gap: 1rem;
}

.att-course {
    flex: 1;
    background: #1e293b;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 10px;
    padding: 1.25rem;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
}

.feature-showcase.in-view .att-course {
    animation: slideUpFade 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.feature-showcase.in-view .att-delay-4 { animation-delay: 0.6s; }
.feature-showcase.in-view .att-delay-5 { animation-delay: 0.8s; }

.att-c-border {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    transform-origin: top;
    transform: scaleY(0);
}

.feature-showcase.in-view .att-c-border {
    animation: growBorder 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.feature-showcase.in-view .course-safe .att-c-border { animation-delay: 1.0s; background: #10b981; }
.feature-showcase.in-view .course-warn .att-c-border { animation-delay: 1.2s; background: #f59e0b; }

.att-c-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.2rem;
}

.att-c-title {
    color: #f8fafc;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.3;
    max-width: 70%;
}

.att-badge {
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.6rem;
    border-radius: 6px;
    transform: scale(0.9);
    opacity: 0;
}

.feature-showcase.in-view .att-badge {
    animation: popScale 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}
.feature-showcase.in-view .course-safe .att-badge { animation-delay: 1.2s; }
.feature-showcase.in-view .course-warn .att-badge { animation-delay: 1.4s; }

.badge-safe { background: rgba(16,185,129,0.15); color: #10b981; }
.badge-warn { background: rgba(245,158,11,0.15); color: #fbbf24; }

.att-c-code {
    color: #3b82f6;
    font-size: 0.7rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    background: rgba(59,130,246,0.1);
    display: inline-block;
    padding: 0.1rem 0.4rem;
    border-radius: 4px;
}

.att-c-stats {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.att-c-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
}

.att-c-row span { color: #94a3b8; font-weight: 500; font-size: 0.7rem; }
.att-c-row strong { color: #f8fafc; font-weight: 600; }

@keyframes growBorder {
    from { transform: scaleY(0); }
    to { transform: scaleY(1); }
}

@media (max-width: 768px) {
    .att-courses { flex-direction: column; }
    /* Ensure stat groups stack on narrow screens to prevent text squishing */
    .results-stat-group,
    .att-stats {
        flex-direction: column;
    }

    /* Fix Mockup padding and squishing on mobile */
    .fs-mockup .monitor-mockup,
    .fs-mockup .att-mockup,
    .fs-mockup .discord-mockup,
    .fs-mockup .results-mockup,
    .fs-mockup .csp-mockup {
        padding: 0.5rem !important;
    }
    
    .mon-stats {
        flex-direction: column;
    }
    
    .csp-header, .csp-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }


}

/* ============================================================
   SCROLL-REVEAL FEATURE SHOWCASE
   ============================================================ */

/* Easing tokens from the animate skill */
:root {
    --ease-out-strong: cubic-bezier(0.23, 1, 0.32, 1);
    --ease-in-out-strong: cubic-bezier(0.77, 0, 0.175, 1);
}

.features-showcase {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 6rem;
}

.feature-showcase {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    min-height: 70vh;
    padding: 4rem 2rem;
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
}

/* Text side */
.fs-text {
    flex: 1;
    max-width: 420px;
}

.fs-text .feature-icon {
    margin-bottom: 1.5rem;
}

.fs-title {
    font-size: 2rem;
    font-weight: 700;
    color: #f8fafc;
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin: 0 0 1rem 0;
}

.fs-desc {
    font-size: 1.05rem;
    color: #94a3b8;
    line-height: 1.6;
    margin: 0;
}

/* Mockup side */
.fs-mockup {
    flex: 1.2;
    max-width: 560px;
    background: rgba(15, 23, 42, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 20px 40px rgba(0, 0, 0, 0.2);
    position: relative;
}

/* ---- Scroll-Reveal Animations ---- */

.fs-reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 700ms var(--ease-out-strong),
                transform 700ms var(--ease-out-strong);
}

.fs-reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 700ms var(--ease-out-strong),
                transform 700ms var(--ease-out-strong);
    transition-delay: 50ms;
}

.feature-showcase.in-view .fs-reveal-left,
.feature-showcase.in-view .fs-reveal-right {
    opacity: 1;
    transform: translateX(0);
}

/* ---- Reduced Motion ---- */
@media (prefers-reduced-motion: reduce) {
    .fs-reveal-left,
    .fs-reveal-right {
        transform: none;
        transition: opacity 200ms ease;
    }

    /* Inner Mockup Fallbacks */
    @keyframes popScale {
        from { opacity: 0; transform: none; }
        to { opacity: 1; transform: none; }
    }
    @keyframes popUp {
        from { opacity: 0; transform: none; }
        to { opacity: 1; transform: none; }
    }
    @keyframes slideInRight {
        from { opacity: 0; transform: none; }
        to { opacity: 1; transform: none; }
    }
    @keyframes dlModalPop {
        from { opacity: 0; transform: scale(0.95); }
        to { opacity: 1; transform: scale(0.95); }
    }
    .chart-line {
        stroke-dashoffset: 0 !important;
    }
    .feature-showcase.in-view .chart-line {
        animation: none !important;
    }
    .feature-showcase.in-view .dl-cursor,
    .feature-showcase.in-view .dl-progress-fill:not(.full),
    .feature-showcase.in-view .mon-timer-fill,
    .feature-showcase.in-view .state-loading,
    .feature-showcase.in-view .state-success {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
    .feature-showcase.in-view .dl-progress-fill:not(.full) {
        transform: scaleX(1) !important;
    }
}

/* ---- Responsive: Stack on Mobile ---- */
@media (max-width: 768px) {
    .feature-showcase {
        flex-direction: column !important;
        gap: 2rem;
        min-height: auto;
        padding: 3rem 1.5rem;
    }

    .fs-text {
        order: 1;
        max-width: 100%;
        text-align: center;
    }

    .fs-text .feature-icon {
        margin-left: auto;
        margin-right: auto;
    }

    .fs-mockup {
        order: 2;
        max-width: 100%;
        width: 100%;
    }

    .fs-title {
        font-size: 1.5rem;
    }

    .fs-reveal-left,
    .fs-reveal-right {
        transform: translateY(30px);
    }

    .feature-showcase.in-view .fs-reveal-left,
    .feature-showcase.in-view .fs-reveal-right {
        transform: translateY(0);
    }
    /* Ensure stat groups stack on narrow screens to prevent text squishing */
    .results-stat-group,
    .att-stats {
        flex-direction: column;
    }

    /* Fix Mockup padding and squishing on mobile */
    .fs-mockup .monitor-mockup,
    .fs-mockup .att-mockup,
    .fs-mockup .discord-mockup,
    .fs-mockup .results-mockup,
    .fs-mockup .csp-mockup {
        padding: 0.5rem !important;
    }
    
    .mon-stats {
        flex-direction: column;
    }
    
    .csp-header, .csp-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }


}

/* ---- Mockup wrapper adjustments for showcase context ---- */
.fs-mockup .mockup-wrapper {
    margin-top: 0;
}

.fs-mockup .monitor-mockup {
    padding: 2rem;
}

.fs-mockup .att-mockup {
    padding: 2rem;
    margin-top: 0;
}

.fs-mockup .download-mockup {
    min-height: 280px;
}

.fs-mockup .discord-mockup {
    padding: 1.5rem;
    min-height: 240px;
}

.fs-mockup .results-mockup {
    padding: 2rem;
    margin-top: 0;
}

.fs-mockup .csp-mockup {
    padding: 1.5rem;
    margin-top: 0;
}



.results-svg text { font-family: inherit; }
@media (max-width: 768px) {
    .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 3rem;
}
}

/* Hero Code Dashboard Mockup */
.dash-mockup {
    display: flex;
    height: 600px;
    background: #0f172a;
    color: #e2e8f0;
    font-family: inherit;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    overflow: hidden;
    text-align: left;
}

.dash-sidebar {
    width: 220px;
    background: #0f172a;
    border-right: 1px solid rgba(255,255,255,0.05);
    display: flex;
    flex-direction: column;
    padding: 1.5rem 1rem;
    flex-shrink: 0;
}

.dash-logo img {
    height: 32px;
    margin-bottom: 2rem;
    padding-left: 0.5rem;
}

.dash-nav {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.dash-nav-item {
    padding: 0.6rem 0.75rem;
    border-radius: 6px;
    font-size: 0.8rem;
    color: #94a3b8;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.dash-nav-item i { width: 16px; text-align: center; }
.dash-nav-item.active {
    background: rgba(59, 130, 246, 0.15);
    color: #3b82f6;
    font-weight: 500;
}

.dash-profile {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    margin-top: auto;
}

.dash-avatar {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: #3b82f6;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
}

.dash-name { font-size: 0.8rem; font-weight: 500; }

.dash-main {
    flex: 1;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    background: #1e293b;
    overflow: hidden;
}

.dash-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #0f172a;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.05);
}

.dash-welcome { font-size: 1.25rem; font-weight: 700; color: #f8fafc; letter-spacing: -0.02em; }
.text-blue { color: #3b82f6; }
.dash-refresh { color: #94a3b8; }

.dash-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.dash-stat-card {
    background: #0f172a;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 8px;
    padding: 1.5rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
}

.reveal-mockup.in-view .dash-stat-card {
    animation: popUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.reveal-mockup.in-view .dash-anim-1 { animation-delay: 0.2s; }
.reveal-mockup.in-view .dash-anim-2 { animation-delay: 0.3s; }
.reveal-mockup.in-view .dash-anim-3 { animation-delay: 0.4s; }
.reveal-mockup.in-view .dash-anim-4 { animation-delay: 0.5s; }
.reveal-mockup.in-view .dash-anim-5 { animation-delay: 0.7s; }

.dash-stat-val { font-size: 1.1rem; font-weight: 700; color: #f8fafc; margin-bottom: 0.25rem; }
.dash-stat-label { font-size: 0.7rem; color: #94a3b8; }

.dash-events {
    background: #0f172a;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 8px;
    padding: 1.5rem;
    flex: 1;
    opacity: 0;
    transform: translateY(20px);
}

.reveal-mockup.in-view .dash-events {
    animation: popUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.dash-events-header { font-size: 0.95rem; font-weight: 600; color: #f8fafc; margin-bottom: 1rem; display: flex; align-items: center; gap: 0.5rem; }
.dash-events-list { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.dash-event {
    background: #1e293b;
    border: 1px solid rgba(255,255,255,0.02);
    border-radius: 8px;
    padding: 1rem;
    display: flex;
    gap: 1rem;
    align-items: center;
}

.dash-event-date {
    background: #1e293b;
    border-radius: 6px;
    width: 48px; height: 48px;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    border: 1px solid rgba(255,255,255,0.05);
}

.dash-event-date .mo { font-size: 0.6rem; color: #ffffff; font-weight: 700; background: #3b82f6; width: 100%; text-align: center; padding: 2px 0; border-top-left-radius: 6px; border-top-right-radius: 6px; }
.dash-event-date .da { font-size: 1.1rem; font-weight: 700; color: #f8fafc; line-height: 1; padding-top: 4px; padding-bottom: 4px; }

.dash-event-title { font-size: 0.9rem; font-weight: 600; color: #f8fafc; margin-bottom: 0.2rem; }
.dash-event-time { font-size: 0.75rem; color: #94a3b8; display: flex; align-items: center; gap: 0.3rem; }

/* Responsive adjustments */
@media (max-width: 900px) {
    .dash-sidebar { display: none; } /* Hide sidebar on small screens to let content breathe */
    .dash-stats { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
    .dash-main { padding: 1rem; gap: 1rem; }
    .dash-events-list { grid-template-columns: 1fr; }
    .dash-header { padding: 1rem; }
}
