/* ============================================
   Focaly Coming Soon
   ============================================ */

:root {
    --brand-primary: #6C5CE7;
    --brand-primary-light: #8B7CF7;
    --brand-primary-dark: #5B4BD5;
    --bg: #FAFBFC;
    --bg-card: #FFFFFF;
    --bg-accent: #F1F5F9;
    --text: #1F2937;
    --text-secondary: #6B7280;
    --text-muted: #9CA3AF;
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

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

body {
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Hero Section */
.hero {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 48px 24px 24px;
    min-height: calc(100vh - 60px);
}

.hero-content {
    max-width: 600px;
}

/* Brand - Logo + Name */
.brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
}

.hero-logo {
    width: 72px;
    height: 72px;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(108, 92, 231, 0.25);
}

.brand-name {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text);
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 32px;
}

.hero-badge {
    display: inline-block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--brand-primary);
    background: rgba(108, 92, 231, 0.1);
    padding: 10px 24px;
    border-radius: 100px;
}

/* Footer */
.footer {
    text-align: center;
    padding: 16px 24px;
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Responsive */
@media (max-width: 768px) {
    .brand {
        gap: 12px;
    }

    .hero-logo {
        width: 56px;
        height: 56px;
        border-radius: 14px;
    }

    .brand-name {
        font-size: 2rem;
    }

    .hero-title {
        font-size: 2.75rem;
    }

    .hero-subtitle {
        font-size: 1.0625rem;
    }
}
