:root {
    --bg-color: #050505;
    --text-color: #e0e0e0;
    --accent-color: #00f3ff;
    --secondary-accent: #a0a0a0;
    --card-bg: rgba(255, 255, 255, 0.03);
    --card-border: rgba(255, 255, 255, 0.1);
    --font-main: 'Inter', sans-serif;
}

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

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

/* Canvas Background */
#hero-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.6;
}

/* Header */
.site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    color: #fff;
    text-transform: uppercase;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 2rem;
    position: relative;
}

.hero-content {
    max-width: 900px;
    animation: fadeIn 1.5s ease-out;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #fff 0%, #a0a0a0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.02em;
}

.sub-headline {
    font-size: 1.25rem;
    color: #a0a0a0;
    font-weight: 300;
    max-width: 700px;
    margin: 0 auto;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.7;
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    display: block;
    width: 20px;
    height: 30px;
    border: 2px solid var(--secondary-accent);
    border-radius: 10px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    width: 4px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 50%;
    transform: translateX(-50%);
}

/* Mission Section */
.mission {
    padding: 8rem 2rem;
    background: linear-gradient(to bottom, transparent, #080808);
    text-align: center;
}

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

.mission h2 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--accent-color);
    margin-bottom: 2rem;
}

.mission-text {
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 1.4;
    color: #fff;
    max-width: 1000px;
    margin: 0 auto;
}

/* Strategy Section */
.strategy {
    padding: 6rem 2rem 10rem;
    background-color: #080808;
}

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

.strategy-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 4rem 2rem;
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
    border-radius: 4px;
}

.strategy-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
}

.icon-wrapper {
    margin-bottom: 2rem;
    color: var(--secondary-accent);
    transition: color 0.3s ease;
}

.strategy-card:hover .icon-wrapper {
    color: var(--accent-color);
}

.icon-wrapper svg {
    width: 48px;
    height: 48px;
}

.strategy-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
}

/* Footer */
footer {
    padding: 4rem 2rem;
    border-top: 1px solid var(--card-border);
    background-color: #050505;
    color: #666;
    font-size: 0.9rem;
}

footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-info {
    display: flex;
    gap: 2rem;
}

footer a {
    color: #666;
    text-decoration: none;
    transition: color 0.2s;
}

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

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translate(-50%, 0); }
    40% { transform: translate(-50%, -10px); }
    60% { transform: translate(-50%, -5px); }
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .mission-text {
        font-size: 1.5rem;
    }
    
    .site-header {
        padding: 1.5rem 2rem;
    }
    
    footer .container {
        flex-direction: column;
        text-align: center;
    }
}
