* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: #020617;
    color: #fff;
    overflow-x: hidden;
}

.page-container {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

/* Background Effects */
.bg-gradient-orbs {
    position: fixed;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.orb {
    position: absolute;
    width: 384px;
    height: 384px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
}

.orb-1 {
    top: -160px;
    left: -160px;
    background: radial-gradient(circle, #17FE9B 0%, transparent 70%);
    animation: pulse1 8s ease-in-out infinite;
}

.orb-2 {
    bottom: -160px;
    right: -160px;
    background: radial-gradient(circle, #24B2FB 0%, transparent 70%);
    animation: pulse2 8s ease-in-out infinite;
}

@keyframes pulse1 {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.2); opacity: 0.5; }
}

@keyframes pulse2 {
    0%, 100% { transform: scale(1.2); opacity: 0.3; }
    50% { transform: scale(1); opacity: 0.5; }
}

.bg-grid {
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: 0.02;
    background-image: 
        linear-gradient(rgba(255,255,255,0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 60px 60px;
}

.main-content {
    position: relative;
    z-index: 10;
}

/* Hero Section */
.hero-section {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 6rem 1.5rem 4rem;
    text-align: center;
}

.logo-container {
    position: relative;
    z-index: 10;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.logo-image-wrapper {
    position: relative;
}

.logo-image {
    width: 96px;
    height: 96px;
    object-fit: contain;
    position: relative;
    z-index: 2;
}

.logo-glow {
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    opacity: 0.3;
    filter: blur(40px);
    background: linear-gradient(135deg, #17FE9B 0%, #24B2FB 100%);
    animation: logoGlow 2s ease-in-out infinite;
}

@keyframes logoGlow {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.2); opacity: 0.6; }
}

.logo-text {
    text-align: center;
}

.logo-title {
    font-size: 1.875rem;
    font-weight: 700;
    letter-spacing: -0.025em;
}

.gradient-text {
    background: linear-gradient(135deg, #17FE9B 0%, #24B2FB 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.coming-soon-badge {
    position: relative;
    z-index: 10;
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: linear-gradient(135deg, rgba(23, 254, 155, 0.2) 0%, rgba(36, 178, 251, 0.2) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.main-headline {
    position: relative;
    z-index: 10;
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.subheadline {
    position: relative;
    z-index: 10;
    font-size: 1.125rem;
    color: #cbd5e1;
    max-width: 42rem;
    margin: 0 auto 1rem;
    line-height: 1.75;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.subtext {
    position: relative;
    z-index: 10;
    font-size: 1rem;
    color: #94a3b8;
    animation: fadeInUp 0.8s ease-out 0.5s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Waitlist Section */
.waitlist-section {
    width: 100%;
    max-width: 32rem;
    margin: 0 auto;
    padding: 0 1.5rem 4rem;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.form-container, .success-message {
    padding: 2rem;
    border-radius: 1.5rem;
    background: linear-gradient(135deg, rgba(23, 254, 155, 0.05) 0%, rgba(36, 178, 251, 0.05) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
}

.form-title {
    font-size: 1.25rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 1.5rem;
}

.waitlist-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.input-wrapper {
    position: relative;
    padding-bottom: 1.5rem;
}

.input-icon {
    position: absolute;
    left: 1rem;
    top: 1.75rem;
    transform: translateY(-50%);
    width: 1.25rem;
    height: 1.25rem;
    color: #94a3b8;
    pointer-events: none;
}

.form-input {
    width: 100%;
    height: 3.5rem;
    padding-left: 3rem;
    padding-right: 1rem;
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid #334155;
    border-radius: 0.75rem;
    color: #fff;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s;
}

.form-input::placeholder {
    color: #64748b;
}

.form-input:focus {
    border-color: #24B2FB;
    box-shadow: 0 0 0 3px rgba(36, 178, 251, 0.2);
}

.form-input.error {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.2);
}

.error-message {
    display: none;
    font-size: 0.875rem;
    color: #ef4444;
    margin-top: 0.5rem;
    margin-left: 0.5rem;
}

.error-message.show {
    display: block;
}

.submit-btn {
    width: 100%;
    height: 3.5rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 0.75rem;
    background: linear-gradient(135deg, #17FE9B 0%, #24B2FB 100%);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(23, 254, 155, 0.3);
}

.submit-btn:hover:not(:disabled) {
    transform: scale(1.02);
    box-shadow: 0 6px 24px rgba(23, 254, 155, 0.4);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn-arrow {
    width: 1.25rem;
    height: 1.25rem;
}

.spinner {
    width: 1.25rem;
    height: 1.25rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.form-disclaimer {
    font-size: 0.75rem;
    color: #64748b;
    text-align: center;
    margin-top: 1rem;
}

/* Success Message */
.success-message {
    text-align: center;
    animation: scaleIn 0.4s ease-out;
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.success-icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #17FE9B 0%, #24B2FB 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: iconPop 0.4s ease-out 0.2s both;
}

@keyframes iconPop {
    0% { transform: scale(0); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.success-icon svg {
    width: 2rem;
    height: 2rem;
}

.success-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.success-text {
    color: #cbd5e1;
}

/* How It Works */
.how-it-works {
    padding: 5rem 1.5rem;
    max-width: 64rem;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-subtitle {
    color: #94a3b8;
    max-width: 36rem;
    margin: 0 auto;
}

.steps-grid {
    display: grid;
    gap: 1.5rem;
}

.step-card {
    position: relative;
    padding: 1.5rem;
    border-radius: 1rem;
    background: linear-gradient(135deg, rgba(23, 254, 155, 0.05) 0%, rgba(36, 178, 251, 0.05) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s;
}

.step-card:hover {
    transform: scale(1.02);
}

.step-number {
    position: absolute;
    top: -0.75rem;
    left: -0.75rem;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #17FE9B 0%, #24B2FB 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 700;
}

.step-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.75rem;
    background: linear-gradient(135deg, rgba(23, 254, 155, 0.15) 0%, rgba(36, 178, 251, 0.15) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.step-icon svg {
    width: 1.75rem;
    height: 1.75rem;
    color: #17FE9B;
}

.step-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.step-description {
    color: #94a3b8;
    font-size: 0.875rem;
    line-height: 1.6;
}

/* Footer */
.footer {
    position: relative;
    padding: 3rem 1.5rem;
    border-top: 1px solid #1e293b;
}

.footer-content {
    max-width: 64rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-logo-img {
    width: 2.5rem;
    height: 2.5rem;
    object-fit: contain;
}

.footer-logo-text {
    font-weight: 600;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.footer-link {
    font-size: 0.875rem;
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-link:hover {
    color: #fff;
}

.footer-copyright {
    max-width: 64rem;
    margin: 0 auto;
    padding-top: 1.5rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(30, 41, 59, 0.5);
    text-align: center;
}

.footer-copyright p {
    font-size: 0.75rem;
    color: #64748b;
}

/* Responsive Design */
@media (min-width: 768px) {
    .logo-image {
        width: 128px;
        height: 128px;
    }

    .logo-title {
        font-size: 2.25rem;
    }

    .main-headline {
        font-size: 3.75rem;
    }

    .subheadline {
        font-size: 1.25rem;
    }

    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-content {
        flex-direction: row;
    }
}

@media (min-width: 1024px) {
    .main-headline {
        font-size: 4.5rem;
    }
}