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

:root {
    --mint-primary: #7bfcb7;
    --mint-secondary: #5de0a0;
    --dark-bg: #0c0c0c;
    --dark-lighter: #131313;
    --text-primary: #ddd;
    --text-secondary: #c8c8c8;
}

body {
    font-family: 'Quantico', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-primary);
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

/* Matrix Canvas Background */
#matrix {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.15;
}

/* Main Container */
.container {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.content {
    max-width: 800px;
    width: 100%;
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

/* Logo */
.logo-container {
    margin-bottom: 2rem;
    animation: float 3s ease-in-out infinite;
}

.logo {
    width: 120px;
    height: 120px;
    filter: drop-shadow(0 0 20px rgba(123, 252, 183, 0.5));
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.1);
}

/* Title */
.title {
    margin-bottom: 2rem;
}

.title-main {
    display: block;
    font-family: 'Tektur', sans-serif;
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 700;
    background: linear-gradient(135deg, var(--mint-primary), var(--mint-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.1em;
    text-shadow: 0 0 30px rgba(123, 252, 183, 0.3);
    animation: glow 2s ease-in-out infinite alternate;
}

.title-sub {
    display: block;
    font-family: 'Tektur', sans-serif;
    font-size: clamp(1rem, 3vw, 1.5rem);
    font-weight: 600;
    color: var(--text-primary);
    margin-top: 1rem;
    letter-spacing: 0.05em;
}

/* Tagline */
.tagline {
    margin-bottom: 3rem;
    padding: 0 1rem;
}

.tagline-text {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

/* Status Badge */
.status {
    margin-bottom: 3rem;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 2rem;
    background: var(--dark-lighter);
    border: 2px solid var(--mint-primary);
    border-radius: 50px;
    box-shadow: 0 0 20px rgba(123, 252, 183, 0.2);
    transition: all 0.3s ease;
}

.status-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(123, 252, 183, 0.4);
}

.pulse {
    width: 12px;
    height: 12px;
    background: var(--mint-primary);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 0 10px var(--mint-primary);
}

.status-text {
    font-family: 'Tektur', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--mint-primary);
    letter-spacing: 0.05em;
}

/* CTA Section */
.cta-section {
    margin-bottom: 3rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Waitlist Form */
.waitlist-form {
    padding: 2rem;
    background: rgba(19, 19, 19, 0.5);
    border-radius: 16px;
    border: 1px solid rgba(123, 252, 183, 0.1);
    backdrop-filter: blur(10px);
}

.section-title {
    font-family: 'Tektur', sans-serif;
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 600;
    color: var(--mint-primary);
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
}

.email-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.email-input {
    padding: 1rem 1.5rem;
    font-family: 'Quantico', sans-serif;
    font-size: 1rem;
    background: var(--dark-bg);
    border: 2px solid rgba(123, 252, 183, 0.3);
    border-radius: 8px;
    color: var(--text-primary);
    transition: all 0.3s ease;
    outline: none;
}

.email-input:focus {
    border-color: var(--mint-primary);
    box-shadow: 0 0 15px rgba(123, 252, 183, 0.3);
}

.email-input::placeholder {
    color: var(--text-secondary);
}

.cta-button {
    padding: 1rem 2rem;
    font-family: 'Tektur', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-bg);
    background: linear-gradient(135deg, var(--mint-primary), var(--mint-secondary));
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    letter-spacing: 0.05em;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(123, 252, 183, 0.5);
}

.cta-button:active {
    transform: translateY(0);
}

.form-message {
    font-size: 0.9rem;
    text-align: center;
    margin-top: 0.5rem;
    min-height: 1.2rem;
}

.form-message.success {
    color: var(--mint-primary);
}

.form-message.error {
    color: #ff6b6b;
}

/* Pitch Section */
.pitch-section {
    text-align: center;
}

.pitch-button {
    min-width: 200px;
}

/* Graffiti Section */
.graffiti-section {
    margin-bottom: 2rem;
    padding: 1.5rem;
    text-align: center;
}

.graffiti-text {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.graffiti-link {
    color: var(--mint-primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.graffiti-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--mint-primary);
    transition: width 0.3s ease;
}

.graffiti-link:hover {
    text-shadow: 0 0 10px var(--mint-primary);
}

.graffiti-link:hover::after {
    width: 100%;
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.social-link {
    color: var(--mint-primary);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icon {
    width: 32px;
    height: 32px;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px);
}

.social-link:hover .social-icon {
    filter: drop-shadow(0 0 10px var(--mint-primary));
}

/* Footer */
.footer {
    padding-top: 2rem;
    border-top: 1px solid rgba(123, 252, 183, 0.1);
}

.footer p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

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

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

@keyframes glow {
    from {
        filter: drop-shadow(0 0 10px rgba(123, 252, 183, 0.5));
    }
    to {
        filter: drop-shadow(0 0 20px rgba(123, 252, 183, 0.8));
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 1.5rem;
    }

    .logo {
        width: 80px;
        height: 80px;
    }

    .title-main {
        letter-spacing: 0.05em;
    }

    .waitlist-form {
        padding: 1.5rem 1rem;
    }

    .status-badge {
        padding: 0.6rem 1.5rem;
    }

    .social-links {
        gap: 1.5rem;
    }

    .email-form {
        gap: 0.75rem;
    }
}

@media (max-width: 480px) {
    .tagline-text {
        font-size: 1rem;
    }

    .email-input {
        font-size: 0.9rem;
        padding: 0.875rem 1.25rem;
    }

    .cta-button {
        font-size: 1rem;
        padding: 0.875rem 1.5rem;
    }

    .social-icon {
        width: 28px;
        height: 28px;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
