/* Modern Landing Page Design - 8/10 Professional Grade */

:root {
    /* Stunning Neon Cyberpunk Color Palette */
    --primary: #00d9ff;
    --primary-dark: #0099cc;
    --primary-light: #4de8ff;
    --secondary: #ff00ff;
    --accent: #ffff00;
    --danger: #ff0055;
    --success: #00ff88;
    --warning: #ff9500;

    /* Rich Dark Theme */
    --bg-primary: #0a0a0a;
    --bg-secondary: #141414;
    --bg-card: linear-gradient(135deg, rgba(0,217,255,0.03) 0%, rgba(255,0,255,0.03) 100%);
    --bg-hover: rgba(0,217,255,0.1);

    /* High Contrast Text */
    --text-primary: #ffffff;
    --text-secondary: #b8bfc6;
    --text-muted: #7a8490;

    /* Stunning Gradients */
    --gradient-primary: linear-gradient(135deg, #00d9ff 0%, #ff00ff 100%);
    --gradient-success: linear-gradient(135deg, #00ff88 0%, #00d9ff 100%);
    --gradient-danger: linear-gradient(135deg, #ff0055 0%, #ff9500 100%);
    --gradient-hero: linear-gradient(180deg, rgba(0,217,255,0.15) 0%, rgba(255,0,255,0.05) 50%, transparent 100%);
    --gradient-neon: linear-gradient(90deg, #00d9ff, #ff00ff, #ffff00, #00ff88);

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0,0,0,0.05);
    --shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0,0,0,0.2);
    --shadow-glow: 0 0 30px rgba(99,102,241,0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Premium Navigation Bar */
.nav-premium {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0,217,255,0.2);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 4px 30px rgba(0,217,255,0.1);
}

/* Ensure all nav items are white */
.nav-premium a,
.nav-premium .nav-link,
.navbar a,
.navbar .nav-link {
    color: #ffffff !important;
    text-decoration: none;
}

.nav-premium a:hover,
.navbar a:hover {
    color: #00d9ff !important;
}

.nav-premium .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
}

.nav-logo-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-menu {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    list-style: none;
}

.nav-link {
    color: #ffffff !important;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    position: relative;
    padding: 0.5rem 1rem;
    opacity: 0.9;
}

.nav-link:hover {
    color: #00d9ff !important;
    text-shadow: 0 0 10px rgba(0,217,255,0.5);
    opacity: 1;
}

.nav-link.active {
    color: #00d9ff !important;
    text-shadow: 0 0 5px rgba(0,217,255,0.3);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    display: flex;
    gap: 1rem;
    align-items: center;
}

/* Hero Section - Premium Design */
.hero-premium {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 6rem 2rem 4rem;
    background: var(--gradient-hero);
}

.hero-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.3;
    background:
        radial-gradient(circle at 20% 50%, rgba(99,102,241,0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(139,92,246,0.2) 0%, transparent 50%),
        radial-gradient(circle at 50% 100%, rgba(99,102,241,0.1) 0%, transparent 50%);
    animation: bgPulse 10s ease-in-out infinite;
}

@keyframes bgPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.5; }
}

.hero-content {
    max-width: 1280px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(99,102,241,0.1);
    border: 1px solid rgba(99,102,241,0.3);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    font-size: 0.875rem;
    color: var(--primary-light);
    animation: fadeInUp 0.6s ease-out;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(90deg, #00d9ff 0%, #ff00ff 50%, #00d9ff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeInUp 0.8s ease-out, gradientShift 3s ease-in-out infinite;
    filter: drop-shadow(0 4px 20px rgba(0,217,255,0.4));
}

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

.hero-subtitle {
    font-size: 1.5rem;
    color: #cbd5e1;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease-out 0.2s both;
    opacity: 0;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    max-width: 600px;
    margin: 0 auto 3rem;
    animation: fadeInUp 1.2s ease-out;
}

.stat-card {
    background: linear-gradient(135deg, rgba(0,217,255,0.1) 0%, rgba(255,0,255,0.05) 100%);
    border: 1px solid rgba(0,217,255,0.3);
    padding: 1.5rem;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 30px rgba(0,217,255,0.2);
    transition: all 0.3s ease;
    position: relative;
}

.stat-card::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, #00d9ff, #ff00ff);
    border-radius: 16px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 0 50px rgba(0,217,255,0.4);
    border-color: var(--primary);
}

.stat-card:hover::after {
    opacity: 0.1;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #00d9ff, #ff00ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
    filter: drop-shadow(0 0 20px rgba(0,217,255,0.5));
    animation: numberPulse 2s ease-in-out infinite;
}

@keyframes numberPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    animation: fadeInUp 1.4s ease-out;
}

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

/* Shimmer loading effect */
.shimmer {
    background: linear-gradient(
        90deg,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0.1) 50%,
        rgba(255,255,255,0) 100%
    );
    background-size: 200% 100%;
    animation: shimmerEffect 1.5s ease-in-out infinite;
}

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

/* Premium Buttons */
.btn-premium {
    padding: 0.875rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.btn-primary-premium {
    background: linear-gradient(135deg, #00d9ff, #0099cc);
    color: #0a0a0a;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(0,217,255,0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

/* Ensure nav links don't get button styles */
.nav-links a,
.nav-link {
    background: transparent !important;
    background-image: none !important;
    box-shadow: none !important;
}

.btn-primary-premium:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 25px rgba(0,217,255,0.5);
}

.btn-primary-premium:hover::before {
    left: 100%;
}

.btn-secondary-premium {
    background: rgba(255,255,255,0.1);
    color: var(--text-primary);
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
}

.btn-secondary-premium:hover {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.3);
}

/* Feature Cards Section */
.features-section {
    padding: 5rem 2rem;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1280px;
    margin: 0 auto;
}

.feature-card {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.8), rgba(15, 23, 42, 0.9));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(148, 163, 184, 0.1);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: translateX(-100%);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,217,255,0.15);
    border-color: rgba(0,217,255,0.3);
}

.feature-card:hover::before {
    transform: translateX(0);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(99,102,241,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature-description {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Vulnerability Dashboard */
.vuln-dashboard {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem auto;
    max-width: 1280px;
}

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

.vuln-title {
    font-size: 1.5rem;
    font-weight: 700;
}

.vuln-filters {
    display: flex;
    gap: 0.5rem;
}

.filter-btn {
    padding: 0.5rem 1rem;
    border-radius: 6px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--text-secondary);
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-btn.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.vuln-grid {
    display: grid;
    gap: 1rem;
}

.vuln-item {
    background: linear-gradient(135deg, rgba(255,255,255,0.02), rgba(255,255,255,0.04));
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.vuln-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: transparent;
    transition: background 0.3s ease;
}

.vuln-item:hover {
    background: linear-gradient(135deg, rgba(0,217,255,0.05), rgba(255,0,255,0.05));
    border-color: rgba(0,217,255,0.3);
    transform: translateX(5px);
}

.vuln-item.severity-critical:hover::before {
    background: #ef4444;
}

.vuln-item.severity-high:hover::before {
    background: #fb923c;
}

.vuln-item.severity-medium:hover::before {
    background: #facc15;
}

.vuln-item.severity-low:hover::before {
    background: #4ade80;
}

.vuln-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.vuln-severity {
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.severity-critical {
    background: rgba(239,68,68,0.2);
    color: #ef4444;
}

.severity-high {
    background: rgba(251,146,60,0.2);
    color: #fb923c;
}

.severity-medium {
    background: rgba(250,204,21,0.2);
    color: #facc15;
}

.severity-low {
    background: rgba(74,222,128,0.2);
    color: #4ade80;
}

.vuln-name {
    font-weight: 600;
    color: var(--text-primary);
}

.vuln-score {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.score-bar {
    width: 100px;
    height: 8px;
    background: rgba(255,255,255,0.1);
    border-radius: 4px;
    overflow: hidden;
}

.score-fill {
    height: 100%;
    background: var(--gradient-danger);
    transition: width 0.3s;
}

/* Live Scan Animation */
.scan-animation {
    position: relative;
    margin: 2rem auto;
    max-width: 600px;
}

.scan-radar {
    width: 200px;
    height: 200px;
    margin: 0 auto;
    position: relative;
    border: 2px solid rgba(99,102,241,0.3);
    border-radius: 50%;
    overflow: hidden;
}

.radar-sweep {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--primary) 100%);
    transform-origin: 0 0;
    animation: radarSweep 3s linear infinite;
}

@keyframes radarSweep {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.scan-dots {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.scan-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    animation: dotPulse 2s ease-in-out infinite;
}

.dot-critical {
    background: var(--danger);
    top: 30%;
    left: 40%;
}

.dot-warning {
    background: var(--warning);
    top: 60%;
    left: 70%;
}

.dot-safe {
    background: var(--success);
    top: 50%;
    left: 30%;
}

@keyframes dotPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
}

/* Scanner Section Enhanced */
.scanner {
    padding: 5rem 2rem;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.scanner-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    margin-top: 3rem;
}

.config-panel {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.8), rgba(15, 23, 42, 0.9));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.config-panel h3 {
    color: var(--accent-cyan);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 8px;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-cyan);
    box-shadow: 0 0 10px rgba(0, 217, 255, 0.2);
    background: rgba(0, 0, 0, 0.5);
}

.scan-output {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.8), rgba(15, 23, 42, 0.9));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 16px;
    padding: 2rem;
    height: 600px;
    overflow-y: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.scan-log {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(0, 217, 255, 0.1);
    border-radius: 8px;
    padding: 1rem;
    font-family: 'Fira Code', monospace;
    font-size: 0.875rem;
    height: 300px;
    overflow-y: auto;
    color: var(--accent-cyan);
}

/* OWASP Section Enhanced */
.owasp {
    padding: 5rem 2rem;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    position: relative;
    overflow: hidden;
}

.owasp::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 217, 255, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

.owasp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.owasp-item {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.8), rgba(15, 23, 42, 0.9));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(148, 163, 184, 0.1);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.owasp-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-purple));
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.owasp-item:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 217, 255, 0.3);
    box-shadow: 0 15px 40px rgba(0, 217, 255, 0.15);
}

.owasp-item:hover::before {
    transform: translateX(0);
}

.owasp-number {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--bg-primary);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.owasp-item h4 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.owasp-item p {
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.test-count {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(0, 217, 255, 0.1);
    border: 1px solid rgba(0, 217, 255, 0.3);
    border-radius: 20px;
    color: var(--accent-cyan);
    font-size: 0.75rem;
    font-weight: 600;
}

/* Trust Badges */
.trust-section {
    padding: 3rem 2rem;
    background: rgba(255,255,255,0.02);
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.trust-content {
    max-width: 1280px;
    margin: 0 auto;
    text-align: center;
}

.trust-title {
    font-size: 0.875rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
}

.trust-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.trust-logo {
    opacity: 0.4;
    transition: opacity 0.3s;
    filter: grayscale(100%);
}

.trust-logo:hover {
    opacity: 0.7;
    filter: grayscale(0%);
}

/* Results Visualization */
.results-visual {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem 0;
}

.risk-meter {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 2rem auto;
}

.risk-gauge {
    width: 100%;
    height: 200px;
    position: relative;
    background: conic-gradient(
        from 180deg at 50% 100%,
        #10b981 0deg,
        #facc15 72deg,
        #fb923c 144deg,
        #ef4444 180deg
    );
    border-radius: 200px 200px 0 0;
    overflow: hidden;
}

.risk-needle {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 4px;
    height: 100px;
    background: white;
    transform-origin: bottom center;
    transform: translateX(-50%) rotate(-90deg);
    transition: transform 1s ease-in-out;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.risk-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .nav-links {
        display: none;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .btn-premium {
        width: 100%;
        justify-content: center;
    }
}

/* Loading States */
.skeleton {
    background: linear-gradient(
        90deg,
        rgba(255,255,255,0.05) 25%,
        rgba(255,255,255,0.1) 50%,
        rgba(255,255,255,0.05) 75%
    );
    background-size: 200% 100%;
    animation: skeleton 1.5s ease-in-out infinite;
}

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

/* Glow Effects */
.glow-primary {
    box-shadow: 0 0 30px rgba(99,102,241,0.5);
}

.glow-success {
    box-shadow: 0 0 30px rgba(16,185,129,0.5);
}

.glow-danger {
    box-shadow: 0 0 30px rgba(239,68,68,0.5);
}

/* Reports Section */
.reports-section {
    padding: 5rem 2rem;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.reports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.report-card {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.8), rgba(15, 23, 42, 0.9));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(148, 163, 184, 0.1);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.report-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 217, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 217, 255, 0.1);
}

.report-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.export-formats {
    text-align: center;
    margin-top: 3rem;
}

.format-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.format-badge {
    padding: 0.5rem 1rem;
    background: rgba(0, 217, 255, 0.1);
    border: 1px solid rgba(0, 217, 255, 0.3);
    border-radius: 20px;
    color: var(--accent-cyan);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Footer Enhanced */
.footer {
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.95) 0%, rgba(10, 10, 10, 1) 100%);
    border-top: 1px solid rgba(0, 217, 255, 0.2);
    padding: 4rem 2rem 2rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-cyan), transparent);
    animation: scanLine 3s linear infinite;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    color: var(--accent-cyan);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.footer-section p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.footer-section ul li a:hover {
    color: var(--accent-cyan);
    padding-left: 10px;
}

.footer-section ul li a::before {
    content: '→';
    position: absolute;
    left: -15px;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-section ul li a:hover::before {
    left: 0;
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(148, 163, 184, 0.1);
    color: var(--text-muted);
}

/* API Section Enhanced */
.api-section {
    padding: 5rem 2rem;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    position: relative;
}

.api-coming-soon {
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.8), rgba(15, 23, 42, 0.9));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.api-status-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    border-radius: 50px;
    color: var(--bg-primary);
    font-weight: 700;
    font-size: 0.875rem;
    margin-bottom: 1rem;
    animation: pulse 2s ease-in-out infinite;
}

.api-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.api-feature {
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 217, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.api-feature:hover {
    background: rgba(0, 217, 255, 0.05);
    border-color: rgba(0, 217, 255, 0.3);
    transform: translateY(-3px);
}

.api-feature-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.api-preview {
    margin-top: 3rem;
    text-align: left;
}

.code-preview {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 8px;
    padding: 1.5rem;
    overflow-x: auto;
    font-family: 'Fira Code', monospace;
    font-size: 0.875rem;
    color: var(--accent-cyan);
}

/* Section Title Styling */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}