/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette - Futuristic Cyber */
    --primary: #00f5ff;
    --primary-dark: #0084ff;
    --secondary: #a855f7;
    --secondary-dark: #ec4899;
    --accent: #10b981;
    --bg-dark: #0a0e27;
    --bg-darker: #050816;
    --text-light: #ffffff;
    --text-muted: #94a3b8;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    
    /* Fonts */
    --font-display: 'Orbitron', monospace;
    --font-body: 'Space Mono', monospace;
}

body {
    font-family: var(--font-body);
    background: var(--bg-darker);
    color: var(--text-light);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Canvas Background */
#canvas-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.grain-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='3.5' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: -1;
    opacity: 0.4;
}

/* Glass Morphism Utility */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.glass-nav {
    background: rgba(10, 14, 39, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 900;
}

.logo-icon {
    font-size: 2rem;
    animation: pulse 2s ease-in-out infinite;
}

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

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

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

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

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

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10rem 2rem 6rem;
    position: relative;
    margin-bottom: 2rem;
}

.hero-content {
    text-align: center;
    max-width: 1200px;
    position: relative;
    z-index: 2;
}

.glass-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    margin-bottom: 2rem;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.badge-icon {
    font-size: 1.5rem;
}

.pulse {
    animation: pulse 2s ease-in-out infinite;
}

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

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 8vw, 5.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-alt {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glow {
    text-shadow: 0 0 30px rgba(0, 245, 255, 0.5);
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-muted);
    margin-bottom: 3rem;
    line-height: 1.8;
}

/* Hero Stats */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.stat-card {
    padding: 1.5rem;
    text-align: center;
}

.float {
    animation: float 3s ease-in-out infinite;
}

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

.stat-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 0.25rem;
}

.stat-sublabel {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--bg-dark);
}

.glow-button {
    box-shadow: 0 0 30px rgba(0, 245, 255, 0.4);
}

.glow-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 50px rgba(0, 245, 255, 0.6);
}

.btn-secondary {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 2px solid var(--glass-border);
    color: var(--text-light);
}

.glass-button:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
}

.btn-icon {
    font-size: 1.25rem;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    opacity: 0.6;
    animation: bounce 2s ease-in-out infinite;
}

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

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--primary);
    border-radius: 15px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 10px;
    background: var(--primary);
    border-radius: 2px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 1.5s ease-in-out infinite;
}

@keyframes scroll {
    0% { top: 10px; opacity: 1; }
    100% { top: 30px; opacity: 0; }
}

.arrow-down {
    width: 20px;
    height: 20px;
    border-right: 2px solid var(--primary);
    border-bottom: 2px solid var(--primary);
    transform: rotate(45deg);
}

/* Section Spacing */
section {
    padding: 8rem 0;
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
}

/* Achievement Section */
.achievement-section {
    background: linear-gradient(180deg, transparent 0%, rgba(0, 245, 255, 0.03) 50%, transparent 100%);
}

.achievement-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.achievement-card {
    position: relative;
    overflow: hidden;
}

.achievement-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.achievement-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.achievement-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.achievement-metric {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--glass-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.metric-value {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 900;
}

/* Slide In Animations */
.slide-in-left {
    animation: slideInLeft 0.8s ease-out;
}

.slide-in-right {
    animation: slideInRight 0.8s ease-out;
}

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

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

/* Results Section */
.results-section {
    background: linear-gradient(180deg, transparent 0%, rgba(168, 85, 247, 0.03) 50%, transparent 100%);
    position: relative;
    z-index: 1;
}

.results-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.chart-container {
    min-height: 450px;
    position: relative;
    z-index: 2;
}

.chart-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.chart {
    height: 350px;
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    gap: 0.5rem;
    padding: 2rem 1rem;
    position: relative;
}

.chart-bar {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.bar {
    width: 100%;
    background: linear-gradient(180deg, var(--primary), var(--primary-dark));
    border-radius: 8px 8px 0 0;
    position: relative;
    transition: all 0.3s ease;
    animation: growBar 1s ease-out;
}

@keyframes growBar {
    from { height: 0; }
    to { /* height is set inline */ }
}

.bar:hover {
    filter: brightness(1.2);
    transform: scaleX(1.05);
}

.bar-value {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 700;
    white-space: nowrap;
}

.bar-label {
    font-size: 0.8rem;
    text-align: center;
    color: var(--text-muted);
    font-weight: 700;
}

.our-label {
    color: var(--secondary);
    font-weight: 900;
}

/* Performance Breakdown */
.performance-breakdown {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.metric-row {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.metric-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-muted);
}

.metric-bar {
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.metric-fill {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 1rem;
    animation: fillBar 1s ease-out;
}

@keyframes fillBar {
    from { width: 0 !important; }
}

.metric-value {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 1.1rem;
    color: white;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

/* Rankings Table */
.rankings-table {
    margin-top: 2rem;
}

.results-table {
    width: 100%;
    border-collapse: collapse;
}

.results-table thead {
    background: rgba(255, 255, 255, 0.05);
}

.results-table th {
    padding: 1rem;
    text-align: left;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid var(--glass-border);
}

.results-table td {
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.results-table tbody tr {
    transition: all 0.3s ease;
}

.results-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.05);
}

.winner-row {
    background: linear-gradient(90deg, rgba(0, 245, 255, 0.1), transparent);
}

.highlight-row {
    background: linear-gradient(90deg, rgba(168, 85, 247, 0.1), transparent);
}

.rank-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
}

.rank-badge.gold {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #000;
}

.rank-badge.silver {
    background: linear-gradient(135deg, #c0c0c0, #e8e8e8);
    color: #000;
}

.rank-badge.bronze {
    background: linear-gradient(135deg, #cd7f32, #e09540);
    color: #000;
}

.score-highlight {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 900;
    color: var(--primary);
}

.badge-yes {
    color: var(--accent);
    font-weight: 700;
}

.badge-no {
    color: var(--text-muted);
}

.status-best {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #000;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-weight: 900;
    font-size: 0.75rem;
    white-space: nowrap;
}

.status-ours {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    color: #fff;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.8rem;
}

.status-baseline {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.status-commercial {
    background: rgba(255, 215, 0, 0.2);
    color: #ffd700;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.8rem;
}

.score-our {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 900;
    color: var(--secondary);
}

.gpt-row {
    background: linear-gradient(90deg, rgba(255, 215, 0, 0.05), transparent);
    border-left: 3px solid #ffd700;
}

.table-note {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(0, 245, 255, 0.1);
    border-left: 3px solid var(--primary);
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Architecture Section */
.architecture-section {
    background: linear-gradient(180deg, transparent 0%, rgba(16, 185, 129, 0.03) 50%, transparent 100%);
    position: relative;
    z-index: 1;
}

.architecture-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.phase-card {
    position: relative;
    text-align: center;
    z-index: 2;
    min-height: 400px;
}

.phase-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #000;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 0.9rem;
    z-index: 3;
}

.phase-title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    margin: 2rem 0 1rem;
}

.phase-icon {
    font-size: 4rem;
    margin: 1rem 0;
}

.phase-features {
    list-style: none;
    margin: 1.5rem 0;
    text-align: left;
}

.phase-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.phase-features li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary);
}

.phase-diagram {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.diagram-box {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    font-size: 0.85rem;
    white-space: nowrap;
}

.diagram-box.highlight {
    background: linear-gradient(135deg, rgba(0, 245, 255, 0.2), rgba(0, 132, 255, 0.2));
    border-color: var(--primary);
}

.diagram-box.winner {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 237, 78, 0.2));
    border-color: #ffd700;
    font-weight: 900;
}

.diagram-arrow {
    color: var(--primary);
    font-weight: 900;
}

.winner-card {
    border: 2px solid var(--primary);
    box-shadow: 0 0 30px rgba(0, 245, 255, 0.3);
}

/* Architecture Highlight */
.architecture-highlight {
    margin-top: 3rem;
    text-align: center;
}

.architecture-highlight h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    margin-bottom: 2rem;
}

.innovation-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.innovation-item {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    text-align: center;
}

.innovation-arrow {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary);
}

.result-bad {
    color: var(--secondary-dark);
    font-family: var(--font-display);
    font-size: 1.25rem;
    margin-top: 1rem;
    display: block;
}

.result-good {
    color: var(--accent);
    font-family: var(--font-display);
    font-size: 1.25rem;
    margin-top: 1rem;
    display: block;
}

/* Comparison Section */
.comparison-section {
    background: linear-gradient(180deg, transparent 0%, rgba(239, 68, 68, 0.03) 50%, transparent 100%);
}

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

.comparison-card {
    position: relative;
}

.winner-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #000;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 0.9rem;
}

.comparison-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
    padding-top: 1rem;
}

.comparison-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    margin: 0.5rem 0;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.02);
}

.comparison-item .icon {
    font-size: 1.5rem;
}

.comparison-item.good {
    border-left: 3px solid var(--accent);
}

.comparison-item.bad {
    border-left: 3px solid var(--secondary-dark);
}

.comparison-item.ok {
    border-left: 3px solid var(--text-muted);
}

/* Key Stats */
.key-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.stat-box {
    text-align: center;
    padding: 2rem;
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.stat-big {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

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

/* Tech Section */
.tech-section {
    background: linear-gradient(180deg, transparent 0%, rgba(0, 245, 255, 0.03) 50%, transparent 100%);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.tech-item {
    text-align: center;
    padding: 1.5rem;
}

.tech-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.tech-item h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.tech-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Footer CTA */
.footer-cta {
    padding: 6rem 0;
    background: linear-gradient(180deg, transparent 0%, rgba(168, 85, 247, 0.05) 100%);
}

.cta-content {
    text-align: center;
    padding: 4rem;
}

.cta-title {
    font-family: var(--font-display);
    font-size: 3rem;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

/* Footer */
.footer {
    padding: 3rem 0;
    border-top: 1px solid var(--glass-border);
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 900;
}

.footer-tagline {
    color: var(--text-muted);
    margin-top: 0.5rem;
}

.footer-right {
    text-align: right;
}

.footer-note {
    color: var(--text-muted);
    font-style: italic;
    margin-top: 0.5rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .results-grid {
        grid-template-columns: 1fr;
    }
    
    .innovation-grid {
        grid-template-columns: 1fr;
    }
    
    .innovation-arrow {
        transform: rotate(90deg);
    }
    
    section {
        padding: 6rem 0;
    }
}

@media (max-width: 768px) {
    nav {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
    
    .nav-links {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-section {
        padding: 8rem 1rem 4rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-right {
        text-align: center;
    }
    
    .chart {
        gap: 0.25rem;
        padding: 1rem 0.5rem;
    }
    
    .bar-value {
        font-size: 0.7rem;
        top: -25px;
    }
    
    .bar-label {
        font-size: 0.7rem;
    }
    
    section {
        padding: 4rem 0;
    }
    
    .results-table {
        font-size: 0.85rem;
    }
    
    .results-table th,
    .results-table td {
        padding: 0.75rem 0.5rem;
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}
