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

body {
    font-family: 'Space Mono', monospace;
    line-height: 1.6;
    color: #2c3e50;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    overflow-x: hidden;
}

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

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: radial-gradient(circle at 30% 70%, #ff6b6b, #4ecdc4, #45b7d1);
    background-size: 400% 400%;
    animation: atomicGlow 8s ease-in-out infinite;
}

@keyframes atomicGlow {
    0%, 100% { background-position: 0% 0%; }
    50% { background-position: 100% 100%; }
}

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

.hero-image-container {
    position: relative;
    display: inline-block;
    max-width: 600px;
    width: 100%;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 
        0 0 60px rgba(255, 255, 255, 0.3),
        0 0 120px rgba(69, 183, 209, 0.2);
    animation: floatImage 6s ease-in-out infinite;
}

@keyframes floatImage {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-10px) scale(1.02); }
}

.hero-overlay {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 3;
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 900;
    color: #ffffff;
    text-shadow: 
        0 0 10px rgba(255, 255, 255, 0.8),
        0 0 20px rgba(69, 183, 209, 0.6),
        0 0 30px rgba(69, 183, 209, 0.4);
    margin: 0;
}

.highlight {
    color: #ff6b6b;
    text-shadow: 
        0 0 10px rgba(255, 107, 107, 0.8),
        0 0 20px rgba(255, 107, 107, 0.6);
}

.atomic-decoration {
    position: absolute;
    top: 10%;
    right: 10%;
    width: 100px;
    height: 100px;
    opacity: 0.3;
    animation: atomicSpin 20s linear infinite;
}

.atomic-decoration::before {
    content: "⚛";
    font-size: 4rem;
    color: #ffffff;
}

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

/* Tagline Section */
.tagline {
    padding: 4rem 0;
    background: linear-gradient(45deg, #2c3e50, #34495e);
    text-align: center;
}

.tagline-text {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #ecf0f1;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.atomic-separator {
    width: 200px;
    height: 3px;
    background: linear-gradient(90deg, #ff6b6b, #4ecdc4, #45b7d1, #ff6b6b);
    margin: 0 auto;
    border-radius: 2px;
    animation: separatorGlow 3s ease-in-out infinite;
}

@keyframes separatorGlow {
    0%, 100% { box-shadow: 0 0 5px rgba(255, 107, 107, 0.5); }
    50% { box-shadow: 0 0 20px rgba(69, 183, 209, 0.8); }
}

/* Journey Section */
.journey {
    padding: 5rem 0;
    background: linear-gradient(135deg, #ecf0f1, #bdc3c7);
}

.journey-section {
    margin-bottom: 4rem;
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
}

.easy-part {
    background: linear-gradient(135deg, #95a5a6, #7f8c8d);
    position: relative;
}

.journey-content h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.easy-part .journey-content h3 {
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

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

.capability {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(5px);
}

.capability-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.capability-icon.see { background: #3498db; }
.capability-icon.hear { background: #e74c3c; }
.capability-icon.think { background: #f39c12; }
.capability-icon.respond { background: #27ae60; }

.capability-icon.see::before { content: "👁"; }
.capability-icon.hear::before { content: "👂"; }
.capability-icon.think::before { content: "🧠"; }
.capability-icon.respond::before { content: "💬"; }

.capability span {
    font-weight: 700;
    color: #2c3e50;
}

.easy-part .capability span {
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.7);
}

.dismissive {
    font-size: 1.2rem;
    color: #7f8c8d;
    font-style: italic;
    margin-top: 2rem;
}

.easy-part .dismissive {
    color: #ecf0f1;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.7);
}

.checkmark {
    color: #27ae60;
    font-size: 1.5rem;
    margin-left: 0.5rem;
}

.easy-part .checkmark {
    color: #2ecc71;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* Hard Part */
.hard-part {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: #ecf0f1;
    position: relative;
    overflow: hidden;
}

.hard-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: #ffffff;
    text-shadow: 
        0 0 20px rgba(255, 107, 107, 0.8),
        0 2px 4px rgba(0, 0, 0, 0.7);
    margin-bottom: 1rem;
}

.hard-subtitle {
    font-size: 1.5rem;
    color: #ecf0f1;
    margin-bottom: 2rem;
    font-weight: 700;
}

.curiosity-visual {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.curiosity-spark {
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, #ff6b6b, #4ecdc4);
    border-radius: 50%;
    animation: sparkle 2s ease-in-out infinite;
}

.curiosity-spark:nth-child(1) { animation-delay: 0s; }
.curiosity-spark:nth-child(2) { animation-delay: 0.7s; }
.curiosity-spark:nth-child(3) { animation-delay: 1.4s; }

@keyframes sparkle {
    0%, 100% { 
        transform: scale(1); 
        box-shadow: 0 0 10px rgba(255, 107, 107, 0.5);
    }
    50% { 
        transform: scale(1.5); 
        box-shadow: 0 0 30px rgba(255, 107, 107, 0.8);
    }
}

/* Vision Section */
.vision {
    padding: 5rem 0;
    background: linear-gradient(135deg, #45b7d1, #96e6a1);
    text-align: center;
}

.vision h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: #2c3e50;
    margin-bottom: 3rem;
}

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

.vision-item {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vision-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.vision-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.vision-icon.questions { background: linear-gradient(135deg, #e74c3c, #ff6b6b); }
.vision-icon.learns { background: linear-gradient(135deg, #3498db, #45b7d1); }
.vision-icon.connects { background: linear-gradient(135deg, #f39c12, #f1c40f); }
.vision-icon.grows { background: linear-gradient(135deg, #27ae60, #2ecc71); }

.vision-icon.questions::before { content: "❓"; }
.vision-icon.learns::before { content: "📚"; }
.vision-icon.connects::before { content: "🤝"; }
.vision-icon.grows::before { content: "🌱"; }

.vision-item p {
    font-size: 1.1rem;
    color: #2c3e50;
    font-weight: 600;
}

/* Future Section */
.future {
    padding: 5rem 0;
    background: radial-gradient(circle at center, #2c3e50, #34495e, #2c3e50);
    color: #ecf0f1;
    text-align: center;
}

.future h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 2rem;
}

.future p {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.orenda-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-top: 3rem;
}

.orenda-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: #ff6b6b;
    text-shadow: 
        0 0 10px rgba(255, 107, 107, 0.8),
        0 0 20px rgba(255, 107, 107, 0.4);
    letter-spacing: 3px;
}

.orenda-subtitle {
    font-size: 1.2rem;
    color: #4ecdc4;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 400;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-overlay {
        bottom: -40px;
    }
    
    .capabilities {
        grid-template-columns: 1fr;
    }
    
    .vision-grid {
        grid-template-columns: 1fr;
    }
    
    .curiosity-visual {
        gap: 1rem;
    }
    
    .orenda-text {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 80vh;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .journey-section {
        padding: 2rem 1rem;
        margin-bottom: 2rem;
    }
    
    .hard-title {
        font-size: 2rem;
    }
}

/* Scroll animations */
@media (prefers-reduced-motion: no-preference) {
    .journey-section,
    .vision-item {
        opacity: 0;
        transform: translateY(30px);
        animation: fadeInUp 1s ease-out forwards;
    }
    
    .journey-section:nth-child(1) { animation-delay: 0.2s; }
    .journey-section:nth-child(2) { animation-delay: 0.4s; }
    
    .vision-item:nth-child(1) { animation-delay: 0.1s; }
    .vision-item:nth-child(2) { animation-delay: 0.2s; }
    .vision-item:nth-child(3) { animation-delay: 0.3s; }
    .vision-item:nth-child(4) { animation-delay: 0.4s; }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
