/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Quantum Color Palette */
    --quantum-cyan: #00F0FF;
    --quantum-magenta: #FF00FF;
    --quantum-violet: #8A2BE2;
    --quantum-emerald: #00FFB3;
    --quantum-gold: #FFD700;

    /* Flow Gradients */
    --gradient-primary: linear-gradient(135deg, var(--quantum-cyan) 0%, var(--quantum-violet) 100%);
    --gradient-accent: linear-gradient(135deg, var(--quantum-magenta) 0%, var(--quantum-gold) 100%);
    --gradient-success: linear-gradient(135deg, var(--quantum-emerald) 0%, var(--quantum-cyan) 100%);

    /* Base Colors */
    --primary: var(--quantum-cyan);
    --accent: var(--quantum-magenta);
    --bg: #0A0A0A;
    --panel: #111111;
    --text: #F5F5F7;
    --text-dim: #86868B;
    --success: var(--quantum-emerald);
    --warning: var(--quantum-gold);
    --danger: #FF453A;
    --border: #2C2C2E;

    /* Flower Scope */
    --petal-glow: 0 0 20px rgba(0, 240, 255, 0.3);
    --scope-ring: 0 0 40px rgba(138, 43, 226, 0.4);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Quantum Background Effect */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 50%, rgba(0, 240, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 0, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(138, 43, 226, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

body>* {
    position: relative;
    z-index: 1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(180deg, var(--bg) 0%, #0F0F0F 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '🌸';
    position: absolute;
    font-size: 400px;
    opacity: 0.03;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: float 20s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    50% {
        transform: translate(-50%, -55%) rotate(5deg);
    }
}

.badge {
    display: inline-block;
    padding: 8px 16px;
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 20px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

.hero h1 {
    font-size: 72px;
    font-weight: 700;
    margin-bottom: 10px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tagline {
    font-size: 24px;
    color: var(--text-dim);
    margin-bottom: 20px;
    font-style: italic;
}

.description {
    font-size: 18px;
    color: var(--text);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
}

.btn {
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-block;
}

.btn-primary {
    background: var(--primary);
    color: #000;
}

.btn-primary:hover {
    background: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(224, 224, 224, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--panel);
    transform: translateY(-2px);
}

.btn-large {
    width: 100%;
    padding: 18px 32px;
    font-size: 18px;
}

.stats {
    display: flex;
    gap: 60px;
    justify-content: center;
    padding-top: 40px;
    border-top: 1px solid var(--border);
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary);
}

.stat-label {
    font-size: 14px;
    color: var(--text-dim);
    margin-top: 5px;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: var(--panel);
}

.features h2 {
    text-align: center;
    font-size: 48px;
    margin-bottom: 60px;
    color: var(--primary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--bg);
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 40px rgba(224, 224, 224, 0.1);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary);
}

.feature-card p {
    color: var(--text-dim);
    line-height: 1.6;
}

/* Beta Form Section */
.beta-form,
.bug-report {
    padding: 100px 0;
    background: var(--bg);
}

.beta-form h2,
.bug-report h2 {
    text-align: center;
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--primary);
}

.section-description {
    text-align: center;
    font-size: 18px;
    color: var(--text-dim);
    max-width: 600px;
    margin: 0 auto 60px;
}

.form {
    max-width: 600px;
    margin: 0 auto;
    background: var(--panel);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--border);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text);
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(224, 224, 224, 0.1);
}

.form-group.checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-group.checkbox input {
    width: auto;
}

.form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    display: none;
}

.form-message.success {
    background: rgba(50, 215, 75, 0.1);
    border: 1px solid var(--success);
    color: var(--success);
    display: block;
}

.form-message.error {
    background: rgba(255, 69, 58, 0.1);
    border: 1px solid var(--danger);
    color: var(--danger);
    display: block;
}

/* Roadmap Section */
.roadmap {
    padding: 100px 0;
    background: var(--panel);
}

.roadmap h2 {
    text-align: center;
    font-size: 48px;
    margin-bottom: 60px;
    color: var(--primary);
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border);
}

.timeline-item {
    position: relative;
    padding-left: 80px;
    margin-bottom: 50px;
}

.timeline-marker {
    position: absolute;
    left: 20px;
    top: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--border);
    border: 3px solid var(--bg);
}

.timeline-item.completed .timeline-marker {
    background: var(--success);
}

.timeline-item.active .timeline-marker {
    background: var(--primary);
    animation: pulse-marker 2s ease-in-out infinite;
}

@keyframes pulse-marker {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(224, 224, 224, 0.7);
    }

    50% {
        box-shadow: 0 0 0 10px rgba(224, 224, 224, 0);
    }
}

.timeline-content h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--primary);
}

.timeline-content p {
    color: var(--text-dim);
    margin-bottom: 10px;
}

.status {
    display: inline-block;
    padding: 4px 12px;
    background: var(--bg);
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
}

/* Footer */
.footer {
    background: var(--panel);
    padding: 60px 0 30px;
    border-top: 1px solid var(--border);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
    color: var(--primary);
    margin-bottom: 15px;
}

.footer-section p {
    color: var(--text-dim);
    margin-bottom: 5px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: var(--text-dim);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary);
}

.version {
    font-family: 'Courier New', monospace;
    color: var(--text-dim);
    font-size: 14px;
}

.status-indicator {
    color: var(--success);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border);
    color: var(--text-dim);
    font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 48px;
    }

    .stats {
        flex-direction: column;
        gap: 30px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .timeline::before {
        left: 10px;
    }

    .timeline-marker {
        left: 0;
    }

    .timeline-item {
        padding-left: 50px;
    }
}