:root {
    --bg-primary: #0F0F0F;
    --bg-secondary: #1A1A1A;
    --bg-tertiary: #252525;
    --text-primary: #FFFFFF;
    --text-secondary: #B4B4B4;
    --text-tertiary: #808080;
    --accent-cyan: #00D9FF;
    --accent-cyan-dark: #00B8D9;
    --accent-pink: #FF10F0;
    --accent-pink-light: #FF6BF6;
    --accent-gradient: linear-gradient(135deg, #00D9FF 0%, #FF10F0 50%, #0099FF 100%);
    --border-color: #2A2A2A;
    --border-pink: #FF10F0;
    --success-green: #00CC88;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
    --shadow-pink: 0 4px 24px rgba(255, 16, 240, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Hero Section */
.hero {
    padding: 80px 0 60px;
    text-align: center;
    background: radial-gradient(ellipse at top, rgba(0, 217, 255, 0.1) 0%, rgba(255, 16, 240, 0.05) 30%, transparent 70%);
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 800px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 217, 255, 0.15) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 100px;
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.hero-badge svg {
    color: var(--accent-cyan);
}

h1 {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.gradient-text {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 36px;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* CTA Button */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    background: var(--accent-gradient);
    color: var(--bg-primary);
    font-size: 18px;
    font-weight: 600;
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 24px rgba(0, 217, 255, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 32px rgba(0, 217, 255, 0.4);
}

.cta-large {
    padding: 20px 40px;
    font-size: 20px;
}

.hero-note {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    font-size: 13px;
    color: var(--text-tertiary);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-note svg {
    color: var(--accent-pink);
    flex-shrink: 0;
}

.hero-note span {
    white-space: nowrap;
}

/* Discord CTA in Hero */
.discord-cta {
    margin-top: 32px;
    padding: 24px;
    background: var(--bg-secondary);
    border: 2px solid var(--border-pink);
    border-radius: var(--radius-lg);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.discord-text {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
    font-size: 15px;
    margin-bottom: 16px;
    justify-content: center;
}

.discord-text svg {
    color: #5865F2;
    flex-shrink: 0;
}

.discord-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #5865F2;
    color: white;
    font-size: 16px;
    font-weight: 600;
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: all 0.3s ease;
}

.discord-button:hover {
    background: #4752C4;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(88, 101, 242, 0.4);
}

/* Problem Section */
.problem-section {
    padding: 60px 0;
    background: var(--bg-secondary);
}

.problem-section h2 {
    text-align: center;
    font-size: clamp(28px, 4vw, 42px);
    margin-bottom: 48px;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}

.problem-card {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all 0.3s ease;
}

.problem-card:hover {
    border-color: var(--accent-pink);
    transform: translateY(-4px);
    box-shadow: var(--shadow-pink);
}

.problem-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.problem-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.problem-card p {
    color: var(--text-secondary);
    font-size: 16px;
}

.problem-solution {
    text-align: center;
    font-size: 20px;
    color: var(--text-secondary);
    margin-top: 32px;
}

.problem-solution strong {
    color: var(--accent-cyan);
}

/* How It Works Section */
.how-section {
    padding: 60px 0;
}

.how-section h2 {
    text-align: center;
    font-size: clamp(28px, 4vw, 42px);
    margin-bottom: 48px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.step {
    text-align: center;
    padding: 32px;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: var(--accent-gradient);
    color: var(--bg-primary);
    font-size: 32px;
    font-weight: 700;
    border-radius: 50%;
    margin-bottom: 24px;
}

.step h3 {
    font-size: 24px;
    margin-bottom: 16px;
}

.step p {
    color: var(--text-secondary);
    font-size: 16px;
}

/* Tutorial Highlight */
.tutorial-highlight {
    margin-top: 48px;
    padding: 32px;
    background: var(--bg-tertiary);
    border: 2px solid var(--border-pink);
    border-radius: var(--radius-lg);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: var(--shadow-pink);
}

.tutorial-highlight h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--accent-pink-light);
}

.tutorial-highlight p {
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.tutorial-highlight ol {
    color: var(--text-secondary);
    padding-left: 24px;
    line-height: 1.8;
}

.tutorial-highlight ol li {
    margin-bottom: 8px;
}

.tutorial-highlight em {
    color: var(--accent-cyan);
    font-style: italic;
}

.tutorial-highlight kbd {
    background: var(--bg-secondary);
    padding: 4px 8px;
    border-radius: 4px;
    border: 1px solid var(--border-color);
    font-family: monospace;
    font-size: 14px;
    color: var(--accent-pink-light);
}

/* Features Section */
.features-section {
    padding: 60px 0;
    background: var(--bg-secondary);
}

.features-section h2 {
    text-align: center;
    font-size: clamp(28px, 4vw, 42px);
    margin-bottom: 48px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.feature-card {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: var(--accent-pink);
    box-shadow: var(--shadow-pink);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.6;
}

.feature-discord {
    border-color: #5865F2;
    background: linear-gradient(135deg, rgba(88, 101, 242, 0.1) 0%, var(--bg-tertiary) 100%);
}

.feature-discord-link {
    display: inline-block;
    margin-top: 12px;
    color: #5865F2;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.feature-discord-link:hover {
    color: #4752C4;
    transform: translateX(4px);
}

.feature-share {
    border-color: var(--accent-pink);
    background: linear-gradient(135deg, rgba(255, 16, 240, 0.1) 0%, var(--bg-tertiary) 100%);
}

.feature-share strong {
    color: var(--accent-pink-light);
}

/* Use Cases Section */
.usecases-section {
    padding: 60px 0;
}

.usecases-section h2 {
    text-align: center;
    font-size: clamp(28px, 4vw, 42px);
    margin-bottom: 48px;
}

.usecases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
}

.usecase {
    text-align: center;
    padding: 24px;
}

.usecase svg {
    color: var(--accent-pink);
    margin-bottom: 16px;
}

.usecase h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.usecase p {
    color: var(--text-secondary);
    font-size: 15px;
}

/* Mission Section */
.mission-section {
    padding: 60px 0;
    background: var(--bg-secondary);
}

.mission-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.mission-quote {
    font-size: 120px;
    line-height: 1;
    color: var(--accent-pink);
    opacity: 0.2;
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
}

.mission-content h2 {
    font-size: clamp(28px, 4vw, 42px);
    margin-bottom: 32px;
}

.mission-text {
    font-size: 20px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 24px;
}

.mission-text strong {
    color: var(--accent-pink-light);
}

.mission-author {
    font-size: 18px;
    color: var(--text-tertiary);
    font-style: italic;
}

/* FAQ Section */
.faq-section {
    padding: 60px 0;
}

.faq-section h2 {
    text-align: center;
    font-size: clamp(28px, 4vw, 42px);
    margin-bottom: 48px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.faq-item {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 32px;
}

.faq-item h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--accent-pink-light);
}

.faq-item p {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.6;
}

/* Discord Section */
.discord-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(88, 101, 242, 0.1) 0%, rgba(255, 16, 240, 0.05) 50%, transparent 100%);
}

.discord-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.discord-icon {
    color: #5865F2;
    margin-bottom: 24px;
}

.discord-section h2 {
    font-size: clamp(32px, 4vw, 48px);
    margin-bottom: 16px;
}

.discord-description {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.6;
}

.discord-benefits {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.discord-benefit {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
    font-size: 16px;
}

.discord-benefit svg {
    color: #5865F2;
    flex-shrink: 0;
}

.discord-big-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    background: #5865F2;
    color: white;
    font-size: 18px;
    font-weight: 600;
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 24px rgba(88, 101, 242, 0.3);
}

.discord-big-button:hover {
    background: #4752C4;
    transform: translateY(-2px);
    box-shadow: 0 6px 32px rgba(88, 101, 242, 0.5);
}

/* Final CTA Section */
.final-cta {
    padding: 70px 0;
    text-align: center;
    background: radial-gradient(ellipse at center, rgba(255, 16, 240, 0.1) 0%, rgba(0, 217, 255, 0.05) 40%, transparent 70%);
}

.final-cta h2 {
    font-size: clamp(32px, 4vw, 48px);
    margin-bottom: 20px;
}

.final-cta > p {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 48px;
}

.final-note {
    margin-top: 24px;
    font-size: 14px;
    color: var(--text-tertiary);
}

/* Footer */
.footer {
    padding: 48px 0;
    text-align: center;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
}

.footer p {
    color: var(--text-tertiary);
    font-size: 14px;
}

.footer-note {
    margin-top: 8px;
    font-size: 13px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        padding: 80px 0 60px;
    }
    
    .hero-stats {
        gap: 32px;
    }
    
    .discord-cta {
        padding: 20px;
    }
    
    .discord-benefits {
        text-align: left;
    }
    
    .problem-grid,
    .features-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-grid,
    .usecases-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-button {
        width: 100%;
        justify-content: center;
    }
    
    .discord-button,
    .discord-big-button {
        width: 100%;
        justify-content: center;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero .container > * {
    animation: fadeInUp 0.6s ease-out backwards;
}

.hero .container > *:nth-child(1) { animation-delay: 0.1s; }
.hero .container > *:nth-child(2) { animation-delay: 0.2s; }
.hero .container > *:nth-child(3) { animation-delay: 0.3s; }
.hero .container > *:nth-child(4) { animation-delay: 0.4s; }
.hero .container > *:nth-child(5) { animation-delay: 0.5s; }
.hero .container > *:nth-child(6) { animation-delay: 0.6s; }