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

:root {
    --primary-color: rgb(255, 115, 40);
    --primary-gradient: linear-gradient(135deg, rgb(255, 115, 40) 0%, rgb(230, 90, 20) 100%);
    --secondary-gradient: linear-gradient(135deg, rgb(255, 115, 40) 0%, rgb(255, 140, 70) 100%);
    --light-bg: #ffffff;
    --card-bg: rgba(255, 115, 40, 0.05);
    --text-primary: #1a202c;
    --text-secondary: #4a5568;
    --glow-color: rgba(255, 115, 40, 0.3);
}

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

/* Starfield background removed for cleaner look */

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

.content {
    max-width: 1200px;
    width: 100%;
    text-align: center;
}

/* Brand Section */
.brand {
    margin-bottom: 4rem;
    animation: fadeInDown 1s ease-out;
}

.logo-wrapper {
    display: inline-block;
    margin-bottom: 1.5rem;
}

.logo-icon {
    width: 80px;
    height: 80px;
    filter: drop-shadow(0 0 20px var(--glow-color));
    animation: float 3s ease-in-out infinite;
}

.brand-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: -2px;
    margin-bottom: 0.5rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brand-highlight {
    color: var(--primary-color);
    -webkit-text-fill-color: var(--primary-color);
}

.domain {
    font-size: 1.125rem;
    color: var(--text-secondary);
    letter-spacing: 2px;
}

/* Main Message */
.main-message {
    margin-bottom: 4rem;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.ai-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.5rem;
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 115, 40, 0.3);
    border-radius: 50px;
    margin-bottom: 2rem;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 1px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

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

.headline {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.gradient-text {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subheadline {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

/* Countdown Timer */
.countdown-wrapper {
    margin-bottom: 4rem;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.countdown-label {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 2rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-secondary);
}

.countdown {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.time-unit {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 115, 40, 0.2);
    border-radius: 16px;
    padding: 1.5rem 2rem;
    min-width: 120px;
    transition: all 0.3s ease;
}

.time-unit:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 115, 40, 0.5);
    box-shadow: 0 10px 40px rgba(255, 115, 40, 0.2);
}

.time-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.time-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.time-separator {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-secondary);
    margin: 0 0.5rem;
}

.launch-date {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: 1px;
}

/* Features */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.feature-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 115, 40, 0.2);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 115, 40, 0.5);
    box-shadow: 0 20px 60px rgba(255, 115, 40, 0.2);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 10px var(--glow-color));
}

.feature-card h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Notify Section */
.notify-section {
    max-width: 600px;
    margin: 0 auto 4rem;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.notify-section h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.notify-section > p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.notify-form {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.notify-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(102, 126, 234, 0.3);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

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

.notify-form input:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.notify-btn {
    padding: 1rem 2rem;
    background: var(--primary-gradient);
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.notify-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.notify-btn:active {
    transform: translateY(0);
}

.notify-message {
    min-height: 24px;
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.notify-message.success {
    background: rgba(72, 187, 120, 0.2);
    color: #68d391;
}

.notify-message.error {
    background: rgba(245, 87, 108, 0.2);
    color: #f5576c;
}

/* Footer */
.footer {
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 115, 40, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    animation: fadeInUp 1s ease-out 1s both;
}

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

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

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

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

/* Responsive Design */
@media (max-width: 768px) {
    .brand-name {
        font-size: 3rem;
    }

    .headline {
        font-size: 2.5rem;
    }

    .subheadline {
        font-size: 1.125rem;
    }

    .time-unit {
        min-width: 90px;
        padding: 1rem 1.5rem;
    }

    .time-value {
        font-size: 2rem;
    }

    .time-separator {
        font-size: 1.5rem;
        margin: 0 0.25rem;
    }

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

    .notify-btn {
        justify-content: center;
    }

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

@media (max-width: 480px) {
    .brand-name {
        font-size: 2.5rem;
    }

    .logo-icon {
        width: 60px;
        height: 60px;
    }

    .headline {
        font-size: 2rem;
    }

    .countdown {
        gap: 0.5rem;
    }

    .time-unit {
        min-width: 70px;
        padding: 0.75rem 1rem;
    }

    .time-value {
        font-size: 1.5rem;
    }

    .time-separator {
        font-size: 1.25rem;
    }
}
