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

html, body {
    height: 100%;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

body {
    background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
    display: flex;
    flex-direction: column;
    color: #1a1a1a;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.navbar {
    padding: 20px 40px;
    display: flex;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 32px;
    height: 32px;
    background-color: #1a1a1a;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.logo-text {
    font-size: 15px;
    font-weight: 500;
    color: #1a1a1a;
    letter-spacing: -0.3px;
}

.hero {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
}

.coming-soon-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    background-color: #f0f0f0;
    border-radius: 20px;
    margin-bottom: 32px;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background-color: #10b981;
    border-radius: 50%;
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

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

.badge-text {
    font-size: 11px;
    font-weight: 500;
    color: #6b7280;
    letter-spacing: 0.2px;
}

.main-title {
    font-size: 52px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 24px;
    letter-spacing: -3px;
    line-height: 1.1;
}

.subtitle {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 48px;
    max-width: 400px;
}

.buttons {
    display: flex;
    gap: 14px;
    margin-bottom: 48px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 24px;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    font-family: inherit;
    letter-spacing: 0.2px;
    text-decoration: none;
    outline: none;
}

.btn-primary {
    background-color: #1a1a1a;
    color: white;
}

.btn-primary:hover {
    background-color: #333333;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
    background-color: #ffffff;
    color: #1a1a1a;
    border: 1px solid #e5e7eb;
}

.btn-secondary:hover {
    background-color: #f9fafb;
    border-color: #d1d5db;
    transform: translateY(-1px);
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-link {
    width: 40px;
    height: 40px;
    background-color: #f3f4f6;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    text-decoration: none;
    transition: all 0.2s ease;
}

.social-link:hover {
    background-color: #1a1a1a;
    color: white;
}

.footer {
    padding: 20px;
    text-align: center;
    border-top: 1px solid #f3f4f6;
}

.footer p {
    font-size: 11px;
    color: #9ca3af;
    letter-spacing: 0.1px;
}

@media (max-width: 1024px) {
    .main-title {
        font-size: 44px;
        letter-spacing: -2.5px;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 16px 24px;
    }
    
    .logo-icon {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }
    
    .logo-text {
        font-size: 14px;
    }
    
    .main-title {
        font-size: 32px;
        letter-spacing: -2px;
    }
    
    .subtitle {
        font-size: 15px;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 14px 16px;
    }
    
    .logo-icon {
        width: 24px;
        height: 24px;
        font-size: 12px;
    }
    
    .logo-text {
        font-size: 13px;
    }
    
    .main-title {
        font-size: 24px;
        letter-spacing: -1.5px;
    }
    
    .subtitle {
        font-size: 14px;
        padding: 0 16px;
    }
    
    .buttons {
        flex-direction: column;
        gap: 12px;
        width: 100%;
        max-width: 280px;
    }
    
    .btn {
        width: 100%;
        padding: 12px 20px;
        font-size: 13px;
    }
    
    .social-link {
        width: 36px;
        height: 36px;
    }
}

@media (max-width: 320px) {
    .main-title {
        font-size: 20px;
    }
    
    .subtitle {
        font-size: 13px;
    }
}