/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: #0a0a0a;
    color: #e8e8e8;
    line-height: 1.7;
    overflow-x: hidden;
    font-weight: 400;
    position: relative;
}

/* Ancient Aura Background Effect */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(184, 134, 11, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(184, 134, 11, 0.06) 0%, transparent 40%),
        radial-gradient(circle at 40% 60%, rgba(184, 134, 11, 0.04) 0%, transparent 40%);
    opacity: 0.4;
    animation: ancientGlow 12s ease-in-out infinite;
    pointer-events: none;
    z-index: -1;
}

@keyframes ancientGlow {
    0%, 100% { opacity: 0.4; transform: scale(1) rotate(0deg); }
    33% { opacity: 0.6; transform: scale(1.05) rotate(1deg); }
    66% { opacity: 0.5; transform: scale(1.03) rotate(-1deg); }
}

/* Typography System */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    color: #f8f8f8;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 30px rgba(184, 134, 11, 0.3);
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 2rem;
}

h2 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.8rem;
}

h3 {
    font-size: 1.8rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

/* Unicode Glyph System */
.glyph {
    display: inline-block;
    font-style: normal;
    font-weight: normal;
    color: #d4af37;
    filter: brightness(1.2) drop-shadow(0 0 5px rgba(212, 175, 55, 0.5));
    transition: all 0.3s ease;
    margin-right: 0.5rem;
}

.glyph:hover {
    transform: scale(1.1);
    filter: brightness(1.5) drop-shadow(0 0 10px rgba(212, 175, 55, 0.8));
}

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

@keyframes glyphPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.1); }
}

.glyph-spark::before { content: '✦'; }
.glyph-eye::before { content: '◉'; }
.glyph-triangle::before { content: '▲'; }
.glyph-circle::before { content: '◯'; }
.glyph-hexagon::before { content: '⬢'; }
.glyph-diamond::before { content: '◆'; }
.glyph-compass::before { content: '⊕'; }
.glyph-spiral::before { content: '◈'; }
.glyph-key::before { content: '⚷'; }
.glyph-drop::before { content: '◈'; }
.glyph-wave::before { content: '≈'; }
.glyph-grid::before { content: '▦'; }
.glyph-orb::before { content: '◎'; }
.glyph-scales::before { content: '⚖'; }
.glyph-face::before { content: '◐'; }
.glyph-pyramid::before { content: '▲'; }
.glyph-cross::before { content: '✕'; }

p {
    font-size: 1.1rem;
    color: #c0c0c0;
    margin-bottom: 1.5rem;
    max-width: 65ch;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 3rem;
}

/* Navigation - Ancient and Mystical */
.navbar {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(184, 134, 11, 0.2);
    box-shadow: 0 4px 30px rgba(184, 134, 11, 0.1);
}

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

.logo-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #b8860b;
    letter-spacing: -0.02em;
    text-shadow: 0 0 20px rgba(184, 134, 11, 0.4);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-link {
    color: #c0c0c0;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover,
.nav-link.active {
    color: #b8860b;
    text-shadow: 0 0 15px rgba(184, 134, 11, 0.4);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #b8860b, #daa520);
    border-radius: 1px;
    box-shadow: 0 0 10px rgba(184, 134, 11, 0.5);
}

/* Hero Section - Ancient and Mystical */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem 0 4rem;
    background: 
        radial-gradient(circle at 50% 30%, rgba(184, 134, 11, 0.06) 0%, transparent 60%),
        linear-gradient(135deg, #0a0a0a 0%, #0f0f0f 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../glyphs.png') no-repeat center;
    background-size: 60px 45px;
    background-position: 50% 20%;
    opacity: 0.1;
    animation: float 8s ease-in-out infinite;
}

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

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #b8860b 0%, #daa520 50%, #f4d03f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    text-shadow: 0 0 40px rgba(184, 134, 11, 0.3);
    animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    0% { filter: drop-shadow(0 0 20px rgba(184, 134, 11, 0.4)); }
    100% { filter: drop-shadow(0 0 30px rgba(184, 134, 11, 0.6)); }
}

/* Ancient Glyph System - Unicode Based */
.glyph {
    display: inline-block;
    font-size: 1.5rem;
    color: #d4af37;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
    transition: all 0.3s ease;
    margin: 0 0.5rem;
    line-height: 1;
}

.glyph:hover {
    color: #f4d03f;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.8);
    transform: scale(1.2);
}

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

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

/* Page-specific glyphs using Unicode symbols */
.glyph-spark::before { content: '✦'; }
.glyph-eye::before { content: '◉'; }
.glyph-triangle::before { content: '△'; }
.glyph-circle::before { content: '○'; }
.glyph-spiral::before { content: '◉'; }
.glyph-key::before { content: '⚷'; }
.glyph-compass::before { content: '⊕'; }
.glyph-wave::before { content: '∿'; }
.glyph-hexagon::before { content: '⬢'; }
.glyph-scales::before { content: '⚖'; }
.glyph-pyramid::before { content: '▲'; }
.glyph-cross::before { content: '✚'; }
.glyph-moon::before { content: '☾'; }
.glyph-grid::before { content: '⊞'; }
.glyph-shield::before { content: '⛨'; }
.glyph-drop::before { content: '◆'; }
.glyph-orb::before { content: '●'; }
.glyph-mountain::before { content: '▴'; }

.hero-subtitle {
    font-size: 1.4rem;
    color: #b8860b;
    margin-bottom: 1.5rem;
    font-weight: 400;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 0 20px rgba(184, 134, 11, 0.5);
}

.hero-tagline {
    font-size: 1.2rem;
    color: #c0c0c0;
    margin-bottom: 3rem;
    font-weight: 400;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Tagline Cycler */
.tagline-cycler {
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 3rem;
}

.tagline {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    color: #d4af37;
    opacity: 0;
    position: absolute;
    transition: opacity 1s ease-in-out;
    text-shadow: 0 0 15px rgba(184, 134, 11, 0.4);
}

.tagline.active {
    opacity: 1;
}

/* Hero Actions - Interwoven Button Effect */
.hero-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 3rem;
    position: relative;
}

.hero-actions .btn {
    position: relative;
    z-index: 1;
    transform: rotate(-2deg);
}

.hero-actions .btn:first-child {
    margin-right: -20px;
    transform: rotate(2deg);
    z-index: 2;
}

.hero-actions .btn:last-child {
    margin-left: -20px;
    transform: rotate(-2deg);
    z-index: 1;
}

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

.btn {
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 500;
    border: none;
    border-radius: 0;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    position: relative;
    overflow: hidden;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(218, 165, 32, 0.1));
    color: #d4af37;
    border: 2px solid #d4af37;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #d4af37, #daa520);
    color: #0a0a0a;
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.6);
    text-shadow: none;
    transform: translateY(-2px);
}

.btn-secondary {
    background: linear-gradient(135deg, rgba(102, 102, 102, 0.1), rgba(136, 136, 136, 0.1));
    color: #c0c0c0;
    border: 2px solid #888;
    box-shadow: 0 0 15px rgba(136, 136, 136, 0.2);
    text-shadow: 0 0 8px rgba(192, 192, 192, 0.3);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #888, #aaa);
    color: #f9f9f9;
    box-shadow: 0 0 25px rgba(136, 136, 136, 0.5);
    text-shadow: none;
    transform: translateY(-2px);
}

/* Primordia Glyph - Abstract Node Diagram */
.primordia-glyph {
    position: absolute;
    top: 20%;
    right: 10%;
    width: 200px;
    height: 200px;
    opacity: 0.1;
    animation: rotate 20s linear infinite;
}

.node-diagram {
    position: relative;
    width: 100%;
    height: 100%;
}

.node {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #d4af37;
    border-radius: 50%;
    animation: pulse 3s ease-in-out infinite;
}

.node:nth-child(1) { top: 50%; left: 50%; transform: translate(-50%, -50%); }
.node:nth-child(2) { top: 20%; left: 50%; transform: translate(-50%, -50%); animation-delay: 0.3s; }
.node:nth-child(3) { top: 80%; left: 50%; transform: translate(-50%, -50%); animation-delay: 0.6s; }
.node:nth-child(4) { top: 50%; left: 20%; transform: translate(-50%, -50%); animation-delay: 0.9s; }
.node:nth-child(5) { top: 50%; left: 80%; transform: translate(-50%, -50%); animation-delay: 1.2s; }

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

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
    50% { transform: translate(-50%, -50%) scale(1.5); opacity: 1; }
}

/* Sections - More Whitespace */
.section {
    padding: 8rem 0;
    position: relative;
}

.section:nth-child(even) {
    background: rgba(18, 18, 18, 0.3);
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
    font-size: 2.8rem;
    font-weight: 600;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #c0c0c0;
    margin-bottom: 5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Quick Links Grid - Clean and Minimal */
.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.quick-link-card {
    background: rgba(20, 20, 20, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(184, 134, 11, 0.2);
    border-radius: 0;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.quick-link-card:hover {
    background: rgba(30, 30, 30, 0.9);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(184, 134, 11, 0.2);
}

.quick-link-card:hover::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #00ffaa, #0ff);
}

.quick-link-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #e8e8e8;
}

.quick-link-card p {
    color: #c0c0c0;
    font-size: 1rem;
    margin-bottom: 0;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 4rem;
    margin-top: 5rem;
}

.feature-card {
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(184, 134, 11, 0.2);
    border-radius: 0;
    padding: 3rem;
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: rgba(30, 30, 30, 0.8);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(184, 134, 11, 0.2);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #e8e8e8;
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #e8e8e8;
}

.feature-card p {
    color: #c0c0c0;
    font-size: 1rem;
    line-height: 1.6;
}

/* System Overview */
.system-overview {
    background: rgba(20, 20, 20, 0.5);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(184, 134, 11, 0.3);
    border-radius: 0;
    padding: 4rem;
    margin: 5rem 0;
    text-align: center;
}

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

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #e8e8e8;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: #c0c0c0;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
}

/* Page Hero for Interior Pages */
.page-hero {
    padding: 12rem 0 6rem;
    background: linear-gradient(135deg, #f9f9f9 0%, #f4f4f4 100%);
    text-align: center;
    border-bottom: 1px solid rgba(26, 26, 26, 0.08);
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #e8e8e8;
}

.page-hero p {
    font-size: 1.2rem;
    color: #c0c0c0;
    max-width: 600px;
    margin: 0 auto;
}

/* Content Sections */
.content-section {
    padding: 6rem 0;
}

.content-section:nth-child(even) {
    background: #f4f4f4;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.content-text h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #e8e8e8;
}

.content-text p {
    color: #c0c0c0;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.content-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.value-card {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(26, 26, 26, 0.08);
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.value-card:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.value-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #e8e8e8;
    font-weight: 500;
}

.value-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #e8e8e8;
}

.value-card p {
    color: #c0c0c0;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* System Overview */
.system-overview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    margin-top: 4rem;
}

.overview-text {
    padding-right: 2rem;
}

.overview-text h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #e8e8e8;
}

.overview-text p {
    color: #c0c0c0;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(26, 26, 26, 0.08);
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: translateY(-2px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 600;
    color: #e8e8e8;
    margin-bottom: 0.5rem;
    font-family: 'Space Grotesk', sans-serif;
}

.stat-label {
    font-size: 0.9rem;
    color: #c0c0c0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Timeline */
.timeline-item {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.timeline-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00ffaa, #0ff);
    flex-shrink: 0;
}

.timeline-content h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #e8e8e8;
}

.timeline-content p {
    color: #c0c0c0;
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background: #d4af37;
    color: #f9f9f9;
    padding: 4rem 0 2rem;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-text {
    font-size: 0.9rem;
    color: #999;
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-link {
    color: #999;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #00ffaa;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .nav-container {
        padding: 1rem 1.5rem;
    }
    
    .nav-menu {
        gap: 1.5rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .section {
        padding: 4rem 0;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .quick-links-grid,
    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .primordia-glyph {
        display: none;
    }
}

/* Mobile Navigation */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #d4af37;
    margin: 3px 0;
    transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background: rgba(249, 249, 249, 0.98);
        backdrop-filter: blur(20px);
        width: 100%;
        height: 100vh;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        justify-content: center;
        align-items: center;
        z-index: 1000;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-item {
        margin: 2rem 0;
    }
    
    .nav-link {
        font-size: 1.5rem;
        font-weight: 500;
        padding: 1rem 2rem;
        display: block;
    }
    
    .nav-link:hover {
        background: rgba(0, 255, 170, 0.1);
        border-radius: 8px;
    }
    
    .system-overview {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .overview-text {
        padding-right: 0;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
    
    .stat-item {
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* Training Statistics */
.training-stats {
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.05) 0%, rgba(10, 10, 10, 0.8) 70%);
    padding: 6rem 0;
}

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

.stat-card {
    background: rgba(20, 20, 20, 0.8);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(184, 134, 11, 0.2);
    border-radius: 0;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
    border-color: rgba(184, 134, 11, 0.4);
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 0.5rem;
    font-family: 'Space Grotesk', sans-serif;
}

.stat-label {
    color: #c0c0c0;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.progress-bar {
    background: rgba(255, 255, 255, 0.1);
    height: 6px;
    border-radius: 3px;
    overflow: hidden;
    margin-top: 1rem;
}

.progress-fill {
    background: linear-gradient(90deg, #d4af37, #f4d03f);
    height: 100%;
    transition: width 2s ease;
    position: relative;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Training Upload */
.training-upload {
    padding: 6rem 0;
    background: rgba(10, 10, 10, 0.9);
}

.upload-interface {
    max-width: 600px;
    margin: 0 auto;
}

.upload-zone {
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(10px);
    border: 2px dashed rgba(184, 134, 11, 0.3);
    border-radius: 0;
    padding: 4rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.upload-zone:hover {
    border-color: rgba(184, 134, 11, 0.6);
    background: rgba(30, 30, 30, 0.8);
}

.upload-zone.dragover {
    border-color: #d4af37;
    background: rgba(212, 175, 55, 0.1);
}

.upload-content h3 {
    color: #e8e8e8;
    margin: 1rem 0;
    font-size: 1.5rem;
}

.upload-content p {
    color: #c0c0c0;
    margin-bottom: 2rem;
}

#file-input {
    display: none;
}

.upload-status {
    margin-top: 2rem;
    padding: 1rem;
    background: rgba(20, 20, 20, 0.8);
    border-radius: 0;
    display: none;
}

.upload-status.success {
    border-left: 4px solid #00ff88;
    color: #00ff88;
    display: block;
}

.upload-status.error {
    border-left: 4px solid #ff4444;
    color: #ff4444;
    display: block;
}