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

:root {
    --primary: #2563eb;
    --primary-dark: #1e40af;
    --primary-light: #60a5fa;
    --glow: rgba(37, 99, 235, 0.5);
}

body {
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    color: white;
    position: relative;
    overflow-x: hidden;
    background-color: #0f172a;
}

.circuit-pattern {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('images/circuit-pattern.svg');
    background-repeat: repeat;
    opacity: 0.1;
    z-index: -2;
}

.gradient-bg {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(-45deg, #1e3a8a, #1e40af, #1d4ed8, #2563eb);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
    z-index: -3;
}

.glow-orbs {
    position: fixed;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.glow-orb {
    position: absolute;
    width: 200px;
    height: 200px;
    background-image: url('images/glow-effect.svg');
    background-size: contain;
    opacity: 0.5;
}

.glow-orb-1 {
    top: 10%;
    left: 10%;
    animation: float 8s ease-in-out infinite;
}

.glow-orb-2 {
    top: 60%;
    right: 15%;
    animation: float 12s ease-in-out infinite reverse;
}

.glow-orb-3 {
    bottom: 10%;
    left: 30%;
    animation: float 10s ease-in-out infinite 2s;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    position: relative;
}

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

.logo {
    height: 80px;
    margin-bottom: 1rem;
}

.main-title {
    margin: 2rem 0;
    position: relative;
}

.text-logo {
    width: 100%;
    max-width: 400px;
    height: auto;
    filter: drop-shadow(0 0 20px var(--glow));
}

.pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

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

h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    letter-spacing: -1px;
}



.subtitle {
    font-size: 1.25rem;
    color: rgba(219, 234, 254, 1);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.stats {
    display: flex;
    gap: 4rem;
    margin-bottom: 4rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-light);
    margin-bottom: 0.5rem;
}

.stat-label {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.875rem;
    opacity: 0.8;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    width: 100%;
    margin-bottom: 4rem;
}

.feature {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.zoom-hover:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px var(--glow);
}

.feature-icon-wrapper {
    background: rgba(255, 255, 255, 0.1);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature img {
    height: 48px;
    width: 48px;
}

.feature h3 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-light);
}

.feature p {
    font-size: 0.9rem;
    opacity: 0.8;
    line-height: 1.6;
}

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

.message h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.launching {
    font-size: 1.25rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
}

.glow-text {
    color: var(--primary-light);
    text-shadow: 0 0 10px var(--glow);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { text-shadow: 0 0 10px var(--glow); }
    to { text-shadow: 0 0 20px var(--primary), 0 0 30px var(--primary-light); }
}

.email-form {
    width: 100%;
    max-width: 500px;
    margin-bottom: 2rem;
}

.input-group {
    position: relative;
    margin-bottom: 1rem;
}

.envelope-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    opacity: 0.7;
}

input[type="email"] {
    width: 100%;
    padding: 1.25rem 1rem 1.25rem 3rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.5rem;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

input[type="email"]::placeholder {
    color: rgba(219, 234, 254, 0.6);
}

input[type="email"]:focus {
    outline: none;
    border-color: var(--primary-light);
    box-shadow: 0 0 0 3px var(--glow);
    background: rgba(255, 255, 255, 0.1);
}

.pulse-button {
    width: 100%;
    padding: 1.25rem;
    background: var(--primary);
    border: none;
    border-radius: 0.5rem;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pulse-button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.pulse-button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1, 1) translate(-50%);
    transform-origin: 50% 50%;
}

.pulse-button:focus:not(:active)::after {
    animation: ripple 1s ease-out;
}

@keyframes ripple {
    0% {
        transform: scale(0, 0);
        opacity: 0.5;
    }
    100% {
        transform: scale(100, 100);
        opacity: 0;
    }
}

.success-message {
    display: none;
    text-align: center;
    color: var(--primary-light);
    margin-bottom: 2rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    align-items: center;
    gap: 1rem;
}

.checkmark {
    font-size: 2rem;
    color: #10B981;
}

.wave-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 320px;
    background-image: url('images/wave-bg.svg');
    background-size: cover;
    background-position: center;
    z-index: -1;
    opacity: 0.5;
}

footer {
    text-align: center;
    color: rgba(219, 234, 254, 0.8);
    font-size: 0.875rem;
    margin-top: auto;
    width: 100%;
    position: relative;
    z-index: 1;
}



/* Reveal Animations */
.reveal-slide-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.reveal-slide-down {
    opacity: 0;
    transform: translateY(-30px);
    transition: all 0.6s ease;
}

.reveal-slide-up.active,
.reveal-slide-down.active {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    .stats {
        flex-direction: column;
        gap: 2rem;
    }

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

    .container {
        padding: 1rem;
    }

    .message h2 {
        font-size: 2rem;
    }
} 