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

:root {
    --alpine-oat: #E8DCC4;
    --electric-lime: #CCFF00;
    --dusty-periwinkle: #9FA8DA;
    --obsidian: #0B1215;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: var(--obsidian);
    color: var(--alpine-oat);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Logo Design */
.logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 28px;
    font-weight: 300;
    letter-spacing: -0.5px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    position: relative;
}

.logo-icon svg {
    width: 100%;
    height: 100%;
}

/* Purple accent on logo hover */
.logo:hover .logo-icon svg path:last-child {
    stroke: var(--electric-lime);
    transition: stroke 0.3s ease;
}

/* Navigation */
nav {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(11, 18, 21, 0.9);
    backdrop-filter: blur(10px);
    padding: 20px 5%;
    transition: all 0.3s ease;
}

nav.scrolled {
    padding: 15px 5%;
    box-shadow: 0 2px 20px rgba(159, 168, 218, 0.2);
}

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

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0 5%;
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, var(--dusty-periwinkle) 0%, transparent 70%);
    opacity: 0.2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 4s ease-in-out infinite;
}

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

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

.hero h1 {
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 300;
    letter-spacing: -2px;
    margin-bottom: 30px;
    line-height: 1.1;
}

/* Animated text effect */
.hero h1 .word {
    display: inline-block;
    opacity: 0;
    animation: wordReveal 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

.hero h1 .word:nth-child(2) {
    animation-delay: 0.3s;
}

@keyframes wordReveal {
    0% {
        opacity: 0;
        transform: translateY(40px) rotateX(-90deg);
    }
    100% {
        opacity: 1;
        transform: translateY(0) rotateX(0);
    }
}

.hero h1 .highlight {
    color: var(--electric-lime);
    font-weight: 400;
}

.hero p {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    max-width: 700px;
    margin: 0 auto 40px;
    opacity: 0.9;
    font-weight: 300;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

/* Purple text for "real" */
.purple-text {
    color: var(--dusty-periwinkle);
    font-weight: 500;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.btn {
    padding: 16px 40px;
    font-size: 18px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-block;
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--electric-lime);
    color: var(--obsidian);
    position: relative;
    overflow: hidden;
}

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

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(204, 255, 0, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--alpine-oat);
    border: 2px solid var(--dusty-periwinkle);
}

.btn-secondary:hover {
    background: var(--dusty-periwinkle);
    color: var(--obsidian);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(159, 168, 218, 0.4);
}

/* Animated Background */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.4;
}

.bg-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    animation: float 20s infinite ease-in-out;
}

.bg-circle:nth-child(1) {
    width: 400px;
    height: 400px;
    background: var(--dusty-periwinkle);
    top: -200px;
    right: -200px;
    animation-delay: 0s;
}

.bg-circle:nth-child(2) {
    width: 300px;
    height: 300px;
    background: var(--electric-lime);
    bottom: -150px;
    left: -150px;
    animation-delay: 5s;
}

.bg-circle:nth-child(3) {
    width: 350px;
    height: 350px;
    background: var(--dusty-periwinkle);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

/* Add subtle fade-in animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mission Section */
.mission {
    padding: 100px 5%;
    background: linear-gradient(180deg, rgba(232, 220, 196, 0.05) 0%, rgba(159, 168, 218, 0.05) 100%);
}

.mission-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.mission-content.visible {
    opacity: 1;
    transform: translateY(0);
}

.mission h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--electric-lime), var(--dusty-periwinkle));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Add purple line accent */
.mission h2::after {
    content: '';
    display: block;
    width: 100px;
    height: 3px;
    background: var(--dusty-periwinkle);
    margin: 20px auto;
    animation: expandWidth 1s ease-out forwards;
}

@keyframes expandWidth {
    from { width: 0; }
    to { width: 100px; }
}

.mission p {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.8;
}

/* Footer */
footer {
    padding: 50px 5%;
    text-align: center;
    background: rgba(11, 18, 21, 0.5);
}

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

.social-links {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-top: 30px;
}

.social-links a {
    color: var(--alpine-oat);
    font-size: 24px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: var(--dusty-periwinkle);
    text-shadow: 0 0 20px var(--dusty-periwinkle);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .cta-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .btn {
        width: 100%;
    }

    .hero-glow {
        width: 600px;
        height: 600px;
    }
}