:root {
    --black: #0a0a0a;
    --white: #f5f5f5;
    --accent: #00ff88;
    --accent-dim: #00ff8833;
    --red: #ff3366;
    --yellow: #ffcc00;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'JetBrains Mono', monospace;
    background: var(--black);
    color: var(--white);
    min-height: 100vh;
    overflow-x: hidden;
    cursor: crosshair;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%' height='100%' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
    z-index: 1000;
}

@keyframes glitch {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
}

@keyframes flicker {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

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

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 var(--accent-dim); }
    50% { box-shadow: 0 0 0 20px transparent; }
}

@keyframes progressPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

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

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 1.5rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    background: linear-gradient(to bottom, var(--black) 0%, transparent 100%);
}

.logo {
    font-family: 'Unbounded', sans-serif;
    font-weight: 900;
    font-size: 1.2rem;
    letter-spacing: -0.02em;
    color: var(--accent);
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-size: 0.85rem;
    opacity: 0.7;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border: 1px solid transparent;
}

.nav-link:hover {
    opacity: 1;
    border-color: var(--accent);
}

.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    position: relative;
}

.hero-content {
    text-align: center;
    animation: slideUp 1s ease-out;
}

.strike-through {
    font-family: 'Unbounded', sans-serif;
    font-size: clamp(1rem, 3vw, 1.5rem);
    color: var(--red);
    text-decoration: line-through;
    opacity: 0.6;
    margin-bottom: 1rem;
    letter-spacing: 0.3em;
}

h1 {
    font-family: 'Unbounded', sans-serif;
    font-size: clamp(4rem, 15vw, 12rem);
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -0.03em;
    margin-bottom: 0.5rem;
    position: relative;
}

h1:hover {
    animation: glitch 0.3s ease infinite;
}

h1 .accent {
    color: var(--accent);
    text-shadow: 0 0 60px var(--accent-dim);
}

.tagline {
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    opacity: 0.5;
    margin-top: 2rem;
    letter-spacing: 0.1em;
}

.status-badge {
    display: inline-block;
    margin-top: 2rem;
    padding: 0.5rem 1.5rem;
    background: var(--yellow);
    color: var(--black);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    animation: progressPulse 2s ease infinite;
}

.cta-group {
    margin-top: 3rem;
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
    animation: slideUp 1s ease-out 0.3s both;
}

.btn {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
    padding: 1.2rem 2.5rem;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--accent);
    color: var(--black);
    font-weight: 500;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 40px var(--accent-dim);
    animation: pulse 1.5s ease infinite;
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--white);
    opacity: 0.7;
}

.btn-secondary:hover {
    opacity: 1;
    background: var(--white);
    color: var(--black);
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.3;
    animation: flicker 2s ease infinite;
}

.scroll-indicator span {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
}

.scroll-indicator::after {
    content: '\2193';
    font-size: 1.5rem;
}

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

.section-label {
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    opacity: 0.4;
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.feature {
    padding: 2.5rem;
    border: 1px solid rgba(255,255,255,0.1);
    position: relative;
    transition: all 0.4s ease;
}

.feature:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
}

.feature::before {
    content: attr(data-num);
    position: absolute;
    top: -1rem;
    right: 2rem;
    font-family: 'Unbounded', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    opacity: 0.05;
}

.feature h3 {
    font-family: 'Unbounded', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.feature p {
    font-size: 0.9rem;
    line-height: 1.7;
    opacity: 0.6;
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

/* Progress Section */
.progress-section {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, transparent 0%, rgba(255,255,255,0.02) 50%, transparent 100%);
}

.progress-content {
    max-width: 800px;
    margin: 0 auto;
}

.progress-header {
    text-align: center;
    margin-bottom: 4rem;
}

.progress-header h2 {
    font-family: 'Unbounded', sans-serif;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
}

.progress-header p {
    opacity: 0.5;
    font-size: 0.95rem;
}

.progress-bar-container {
    margin-bottom: 4rem;
}

.progress-bar-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-size: 0.85rem;
}

.progress-bar-label span:first-child {
    opacity: 0.6;
}

.progress-bar-label span:last-child {
    color: var(--accent);
    font-weight: 500;
}

.progress-bar {
    height: 8px;
    background: rgba(255,255,255,0.1);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.progress-bar-fill {
    height: 100%;
    width: 35%;
    background: linear-gradient(90deg, var(--accent), var(--yellow), var(--accent));
    background-size: 200% 100%;
    animation: gradientMove 3s ease infinite;
    border-radius: 4px;
    position: relative;
}

.progress-bar-fill::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--accent);
}

.milestones {
    display: grid;
    gap: 1.5rem;
}

.milestone {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.milestone:hover {
    border-color: rgba(255,255,255,0.2);
}

.milestone.done {
    border-color: var(--accent);
    background: var(--accent-dim);
}

.milestone.current {
    border-color: var(--yellow);
    background: rgba(255, 204, 0, 0.1);
}

.milestone-status {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.8rem;
}

.milestone.done .milestone-status {
    background: var(--accent);
    color: var(--black);
}

.milestone.current .milestone-status {
    background: var(--yellow);
    color: var(--black);
    animation: progressPulse 1.5s ease infinite;
}

.milestone.pending .milestone-status {
    border: 1px solid rgba(255,255,255,0.3);
    color: rgba(255,255,255,0.3);
}

.milestone-content h4 {
    font-family: 'Unbounded', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.milestone.pending .milestone-content h4 {
    opacity: 0.4;
}

.milestone-content p {
    font-size: 0.85rem;
    opacity: 0.5;
    line-height: 1.6;
}

/* Participate Section */
.participate {
    padding: 8rem 2rem;
    background: linear-gradient(180deg, transparent 0%, var(--accent-dim) 50%, transparent 100%);
}

.participate-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.participate h2 {
    font-family: 'Unbounded', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1.5rem;
}

.participate > .participate-content > p {
    font-size: 1.1rem;
    opacity: 0.7;
    margin-bottom: 3rem;
    line-height: 1.7;
}

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

.participate-card {
    padding: 2.5rem;
    border: 1px solid rgba(255,255,255,0.2);
    text-align: left;
    transition: all 0.3s ease;
}

.participate-card:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
}

.participate-card-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.participate-card h3 {
    font-family: 'Unbounded', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.participate-card p {
    font-size: 0.9rem;
    opacity: 0.6;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.participate-card .btn {
    width: 100%;
    text-align: center;
    padding: 1rem;
    font-size: 0.85rem;
}

/* Email Form */
.email-form {
    margin-top: 4rem;
    padding: 3rem;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(0,0,0,0.3);
}

.email-form h3 {
    font-family: 'Unbounded', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.email-form p {
    opacity: 0.5;
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.form-row {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.form-row input {
    flex: 1;
    min-width: 250px;
    padding: 1rem 1.5rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--white);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.form-row input:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(255,255,255,0.1);
}

.form-row input::placeholder {
    color: rgba(255,255,255,0.3);
}

.form-row .btn {
    flex-shrink: 0;
}

.manifesto {
    padding: 6rem 2rem;
}

.manifesto-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.manifesto p {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.7;
    margin-bottom: 1.5rem;
}

.manifesto .highlight {
    color: var(--accent);
    opacity: 1;
}

.disclaimer {
    margin-top: 2rem;
    padding: 1.5rem;
    border: 1px solid rgba(255,255,255,0.2);
    font-size: 0.85rem;
    opacity: 0.5;
    text-align: left;
}

.disclaimer strong {
    color: var(--red);
    opacity: 1;
}

footer {
    padding: 3rem 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

footer .logo {
    font-size: 1rem;
}

footer p {
    font-size: 0.8rem;
    opacity: 0.4;
}

footer a {
    color: var(--accent);
    text-decoration: none;
}

/* Poll Section */
.poll-section {
    padding: 6rem 2rem;
    background: rgba(255,255,255,0.02);
}

.poll-content {
    max-width: 600px;
    margin: 0 auto;
}

.poll-header {
    text-align: center;
    margin-bottom: 3rem;
}

.poll-header h2 {
    font-family: 'Unbounded', sans-serif;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
}

.poll-header p {
    opacity: 0.5;
    font-size: 0.95rem;
}

.poll-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.poll-option {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2rem;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--white);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
    text-align: left;
}

.poll-option:hover {
    border-color: var(--accent);
    background: var(--accent-dim);
}

.poll-option.voted {
    pointer-events: none;
}

.poll-option.selected {
    border-color: var(--accent);
    background: var(--accent-dim);
}

.poll-emoji {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.poll-text {
    flex: 1;
    position: relative;
    z-index: 1;
}

.poll-bar {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background: var(--accent);
    opacity: 0.2;
    width: 0%;
    transition: width 1s ease-out;
}

.poll-percent {
    position: relative;
    z-index: 1;
    font-weight: 500;
    color: var(--accent);
    opacity: 0;
    transition: opacity 0.3s ease;
    min-width: 45px;
    text-align: right;
}

.poll-option.voted .poll-percent {
    opacity: 1;
}

.poll-results {
    text-align: center;
    margin-top: 2rem;
    padding: 1.5rem;
    border: 1px solid rgba(255,255,255,0.1);
}

.poll-thanks {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.poll-total {
    font-size: 0.85rem;
    opacity: 0.5;
}

@media (max-width: 768px) {
    header {
        padding: 1rem 1.5rem;
    }

    .features {
        padding: 4rem 1.5rem;
    }

    .feature {
        padding: 1.5rem;
    }

    .form-row {
        flex-direction: column;
    }

    .form-row input {
        min-width: 100%;
    }

    footer {
        flex-direction: column;
        text-align: center;
    }
}
