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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji', sans-serif;
    color: #ffffff;
    background: #0a0a0a;
    scroll-behavior: smooth;
    line-height: 1.6;
}

/* Progress Indicator */
.progress-indicator {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #1a1a1a;
    z-index: 1000;
}

.progress-fill {
    height: 100%;
    background: #00ff9f;
    width: 0%;
    transition: width 0.1s ease;
    box-shadow: 0 0 10px #00ff9f;
}

/* Story Sections */
.story-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.story-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.content-wrapper {
    max-width: 1200px;
    width: 100%;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    text-align: center;
}

.mega-title {
    font-size: 5rem;
    font-weight: 900;
    color: #00ff9f;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
    text-shadow: 0 0 40px rgba(0, 255, 159, 0.3);
}

.tagline {
    font-size: 2rem;
    color: #cccccc;
    margin-bottom: 4rem;
    line-height: 1.5;
}

.scroll-indicator {
    font-size: 1.125rem;
    color: #666666;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* Intro Section */
.intro {
    background: #111111;
    text-align: center;
}

.section-number {
    font-size: 1.125rem;
    font-weight: 700;
    color: #00ff9f;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
}

.big-text {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto 2rem auto;
}

/* Feature Sections */
.feature-01 { background: #0a0a0a; }
.feature-02 { background: #141414; }
.feature-03 { background: #0a0a0a; }

.feature-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(0, 255, 159, 0.15);
    color: #00ff9f;
    border: 1px solid rgba(0, 255, 159, 0.3);
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 2rem;
}

.story-section h2 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.feature-intro {
    font-size: 1.5rem;
    color: #999999;
    line-height: 1.8;
    margin-bottom: 4rem;
    max-width: 800px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-box {
    padding: 3rem;
    background: #1a1a1a;
    border-radius: 1rem;
    border: 1px solid #2a2a2a;
    transition: all 0.3s;
}

.feature-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border-color: #00ff9f;
    background: #1f1f1f;
}

.box-icon {
    margin-bottom: 1.5rem;
    width: 64px;
    height: 64px;
}

.box-icon svg {
    width: 100%;
    height: 100%;
    stroke: #00ff9f;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.feature-box h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.feature-box p {
    color: #999999;
    line-height: 1.7;
    font-size: 1.05rem;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, #00ff9f 0%, #00cc7f 100%);
    color: #000000;
    text-align: center;
}

.cta-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #000000;
    margin-bottom: 1.5rem;
}

.cta-text {
    font-size: 1.5rem;
    color: #000000;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.cta-button {
    background: #000000;
    color: #00ff9f;
    border: none;
    padding: 1.5rem 4rem;
    font-size: 1.25rem;
    font-weight: 700;
    border-radius: 0.75rem;
    cursor: pointer;
    transition: all 0.3s;
}

.cta-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.4);
    background: #111111;
}

.cta-note {
    margin-top: 2rem;
    color: #000000;
    font-size: 1rem;
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 768px) {
    .mega-title {
        font-size: 3rem;
    }

    .tagline {
        font-size: 1.25rem;
    }

    .big-text {
        font-size: 1.5rem;
    }

    .story-section h2 {
        font-size: 2.5rem;
    }

    .feature-intro {
        font-size: 1.25rem;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .cta-title {
        font-size: 2.5rem;
    }

    .cta-text {
        font-size: 1.25rem;
    }
}

/* Additional sections styling */
.why-exists, .problem, .what-to-do {
    background: #0a0a0a;
}

.why-exists p, .problem p, .what-to-do p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.belief-box, .results-box, .problem-box, .solution-preview, .solution-box {
    padding: 2rem;
    margin: 2rem 0;
    background: rgba(255, 255, 255, 0.03);
    border-left: 3px solid #00ff9f;
    border-radius: 0.5rem;
}

.needs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.need-card {
    text-align: center;
    padding: 2rem;
    background: #1a1a1a;
    border-radius: 0.75rem;
    transition: all 0.3s;
}

.need-card:hover {
    transform: translateY(-5px);
    background: #1f1f1f;
    box-shadow: 0 10px 20px rgba(0, 255, 159, 0.1);
}

.need-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    background: #1a1a1a;
    border-radius: 0.75rem;
    border: 2px solid #00ff9f;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #00ff9f;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.125rem;
    color: #999999;
}

.results-intro, .results-conclusion, .solution-statement {
    font-size: 1.25rem;
    line-height: 1.8;
    margin: 1.5rem 0;
}

.results-caveat {
    font-size: 1.125rem;
    color: #ff6b6b;
    margin: 2rem 0;
}

.problem-list, .solution-list {
    list-style: none;
    margin: 2rem 0;
}

.problem-list li, .solution-list li {
    padding: 1rem 0;
    font-size: 1.125rem;
    color: #cccccc;
    line-height: 1.8;
    border-bottom: 1px solid #2a2a2a;
}

.problem-list li:before {
    content: "❌ ";
    margin-right: 0.5rem;
}

.solution-list li:before {
    content: "✅ ";
    margin-right: 0.5rem;
}

.action-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.action-card {
    padding: 2rem;
    background: #1a1a1a;
    border-radius: 0.75rem;
    border: 1px solid #2a2a2a;
}

.action-number {
    display: inline-block;
    width: 3rem;
    height: 3rem;
    background: #00ff9f;
    color: #000000;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 3rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.question-box {
    text-align: center;
    padding: 3rem;
    margin: 3rem 0;
    background: rgba(0, 255, 159, 0.05);
    border: 2px solid #00ff9f;
    border-radius: 1rem;
}

.question-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.question-answer {
    font-size: 1.25rem;
    color: #00ff9f;
}

.final-quote {
    padding: 3rem;
    background: rgba(0, 255, 159, 0.05);
    border-left: 4px solid #00ff9f;
    margin: 3rem 0;
}

.final-quote blockquote {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.final-quote p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #cccccc;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #999999;
    margin-bottom: 2rem;
}

.cta-statement {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 2rem 0;
}

/* Shadow Work section styling */
.shadow-work {
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(255, 107, 107, 0.05);
    border-left: 3px solid #ff6b6b;
    border-radius: 0.5rem;
}

.shadow-work h4 {
    font-size: 1.5rem;
    color: #ff6b6b;
    margin-bottom: 1rem;
}

.shadow-work p {
    color: #cccccc;
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* Responsive for new sections */
@media (max-width: 768px) {
    .needs-grid, .stats-row, .action-grid {
        grid-template-columns: 1fr;
    }
    
    .need-icon {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .final-quote blockquote {
        font-size: 1.5rem;
    }
}
