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

html {
    background: #0a0e27;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 100%);
    color: #e0e0e0;
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: radial-gradient(ellipse at center, rgba(0, 150, 150, 0.1) 0%, transparent 70%);
}

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

.hero-content p {
    text-align: left;
}

.hero-layout {
    display: flex;
    align-items: center;
    gap: 40px;
    margin: 40px 0;
    min-height: 400px;
}

.email-capture {
    flex: 1;
    text-align: left;
}

.email-capture h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: #fff;
    line-height: 1.2;
}

.email-subtitle {
    color: #b0b0b0;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.cover-section {
    flex: 1;
    display: flex;
    justify-content: center;
}

.scroll-indicator {
    display: flex;
    justify-content: center;
    margin: 15px 0 0 0;
}

.arrow-down {
    font-size: 2rem;
    color: #00d4ff;
    animation: bounce 2s infinite;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.arrow-down:hover {
    opacity: 1;
}

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

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

.tagline {
    font-size: 1.1rem;
    color: #00d4ff;
    margin-top: 50px;
    margin-bottom: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 300;
}

h1 {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #00d4ff, #ff00ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 80px rgba(0, 212, 255, 0.5);
}

.subtitle {
    font-size: 1.3rem;
    color: #b0b0b0;
    margin-bottom: 40px;
    font-weight: 300;
}

.book-cover {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}



/* Axioms */
.axioms {
    margin: 80px auto;
    max-width: 900px;
    padding: 0 20px;
}

.axiom {
    background: linear-gradient(90deg, rgba(0, 212, 255, 0.05), transparent);
    border-left: 3px solid #00d4ff;
    padding: 25px;
    margin: 30px 0;
    font-size: 1.2rem;
    font-style: italic;
    transition: all 0.3s ease;
}

.axiom:hover {
    background: linear-gradient(90deg, rgba(0, 212, 255, 0.1), transparent);
    transform: translateX(10px);
}

/* Stories Preview */
.stories-preview {
    margin: 80px auto;
    max-width: 900px;
    padding: 0 20px;
}

.stories-preview h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #00d4ff;
}

.story-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 20px;
    margin: 20px 0;
    border-radius: 10px;
    border-left: 3px solid #ff00ff;
    transition: all 0.3s ease;
}

.story-item:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateX(5px);
}

.story-title {
    font-weight: bold;
    color: #fff;
    margin-bottom: 5px;
}

.story-question {
    color: #b0b0b0;
    font-style: italic;
}


.email-form {
    display: flex;
    gap: 10px;
    max-width: 400px;
    margin: 20px 0;
}

.email-input {
    flex: 1;
    padding: 15px 20px;
    border: 1px solid rgba(0, 212, 255, 0.3);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.email-input:focus {
    outline: none;
    border-color: #00d4ff;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.email-input::placeholder {
    color: #808080;
}

.submit-btn {
    padding: 15px 40px;
    background: linear-gradient(135deg, #00d4ff, #ff00ff);
    border: none;
    border-radius: 50px;
    color: #fff;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.submit-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.4);
}

.promise {
    color: #808080;
    font-size: 0.9rem;
    margin-top: 10px;
}

/* Quote */
.quote-section {
    text-align: left;
    padding: 60px 20px;
    font-size: 1.4rem;
    font-style: italic;
    color: #b0b0b0;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    margin: 40px auto;
    max-width: 900px;
}

/* Footer */
footer {
    text-align: center;
    padding: 40px 0;
    color: #606060;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-layout {
        flex-direction: column;
        gap: 20px;
    }
    
    .email-capture {
        text-align: center;
        order: 1;
    }
    
    .cover-section {
        order: 2;
    }
    
    .email-capture h2 {
        font-size: 2rem;
    }
    
    .email-form {
        flex-direction: column;
        max-width: 100%;
    }
    
    .submit-btn {
        width: 100%;
    }
    
    .scroll-indicator {
        display: none;
    }
}

/* Floating particles effect */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: #00d4ff;
    border-radius: 50%;
    animation: float 20s infinite linear;
    opacity: 0.3;
}

@keyframes float {
    from {
        transform: translateY(0) translateX(0);
    }
    to {
        transform: translateY(-110vh) translateX(100px);
    }
}