@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=DM+Mono:wght@400;500&family=Crimson+Pro:ital,wght@0,300;0,400;1,300&display=swap');

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

:root {
    --bg-primary: #0a0908;
    --bg-secondary: #1a1612;
    --bg-tertiary: #251e18;
    --text-primary: #FFEDD7;
    --text-muted: rgba(255, 237, 215, 0.5);
    --accent: #FF6B35;
    --accent-dark: #E55A2B;
    --border: rgba(255, 237, 215, 0.1);
}

html {
    scroll-behavior: smooth;
}

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

#webgl-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(135deg, #0a0908 0%, #1a1612 50%, #0d0a06 100%);
}

.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 48px;
    z-index: 100;
    background: linear-gradient(180deg, rgba(10, 9, 8, 0.9) 0%, transparent 100%);
}

.nav-logo {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text-primary);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 48px;
}

.nav-links a {
    font-family: 'DM Mono', monospace;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--text-primary);
}

section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 80px 48px;
}

.hero {
    flex-direction: column;
    justify-content: flex-start;
    text-align: center;
    padding-top: 140px;
}

.hero-center-full {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    margin-top: -80px;
}

.hero-tag {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(16px, 10vw, 76px);
    font-weight: 600;
    line-height: 0.95;
    letter-spacing: -2px;
    color: var(--text-primary);
    margin-bottom: 48px;
}

.hero-tag .highlight {
    color: #38BDF8;
}

.btn {
    font-family: 'DM Mono', monospace;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    padding: 20px 40px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: var(--accent);
    color: var(--bg-primary);
}

.btn-primary:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    border-color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

.scroll-indicator {
    position: absolute;
    bottom: 48px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.scroll-indicator span {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(16px, 10vw, 76px);
    font-weight: 600;
    line-height: 0.95;
    letter-spacing: -2px;
    color: var(--text-primary);
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(180deg, var(--accent) 0%, transparent 100%);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.5; transform: scaleY(0.8); }
}

.section {
    min-height: 100vh;
    padding: 120px 48px;
}

.section-content {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
}

.section-label {
    font-family: 'DM Mono', monospace;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 2px;
    color: #7DF9FF;
    margin-bottom: 24px;
}

.section-title {
    font-size: clamp(36px, 6vw, 72px);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 32px;
}

.section-title span {
    display: block;
}

.section-title .accent {
    color: #7DF9FF;
}

.section-desc {
    font-family: 'Crimson Pro', serif;
    font-size: 20px;
    font-weight: 300;
    color: var(--text-muted);
    max-width: 800px;
    white-space: nowrap;
    overflow: visible;
}

.dark-section {
    background: linear-gradient(180deg, transparent 0%, rgba(26, 22, 18, 0.5) 50%, transparent 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 64px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 40px;
    transition: all 0.4s ease;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent);
    transform: translateY(-8px);
}

.feature-number {
    font-family: 'DM Mono', monospace;
    font-size: 48px;
    font-weight: 500;
    color: #7DF9FF;
    opacity: 0.3;
    margin-bottom: 24px;
}

.feature-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.feature-card p {
    font-family: 'Crimson Pro', serif;
    font-size: 16px;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.7;
}

.showcase-section {
    text-align: center;
}

.showcase-stats {
    display: flex;
    justify-content: center;
    gap: 64px;
    margin-top: 80px;
    flex-wrap: wrap;
}

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

.stat-number {
    display: block;
    font-size: 72px;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 16px;
}

.stat-label {
    font-family: 'DM Mono', monospace;
    font-size: 12px;
    letter-spacing: 2px;
    color: var(--text-muted);
}

.contact-section {
    text-align: center;
    padding-bottom: 80px;
}

.contact-cta {
    margin: 48px 0;
}

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

.footer-links a {
    font-family: 'DM Mono', monospace;
    font-size: 14px;
    letter-spacing: 1px;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-bottom {
    font-family: 'Crimson Pro', serif;
    font-size: 14px;
    color: var(--text-muted);
    opacity: 0.5;
}

@media (max-width: 768px) {
    .nav {
        padding: 20px 24px;
    }

    .nav-links {
        display: none;
    }

    section {
        padding: 60px 24px;
    }

    .hero-title {
        font-size: 48px;
    }

    .showcase-stats {
        gap: 32px;
    }

    .stat-number {
        font-size: 48px;
    }

    .btn {
        padding: 16px 32px;
        font-size: 13px;
    }
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-dark);
}