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

:root {
    --primary: #2563eb;
    --primary-dark: #1e40af;
    --primary-light: #3b82f6;
    --background: #0f172a;
    --surface: #1e293b;
    --surface-light: #334155;
    --border: #475569;
    --text: #f1f5f9;
    --text-muted: #94a3b8;
    --success: #10b981;
    --error: #ef4444;
    --shadow: rgba(0, 0, 0, 0.3);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 20px;
}

.landing-container {
    width: 100%;
    max-width: 420px;
}

.landing-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 48px 40px;
    box-shadow: 0 20px 60px var(--shadow);
    animation: slideIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo {
    text-align: center;
    margin-bottom: 40px;
}

.logo-icon {
    width: 48px;
    height: 48px;
    color: var(--primary);
    margin: 0 auto 16px;
    display: block;
}

.logo h1 {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 4px;
    letter-spacing: -0.02em;
}

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

.portal-selection {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.portal-btn {
    padding: 16px 24px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 0.9375rem;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.2s ease;
    background: var(--surface-light);
    color: var(--text);
}

.portal-btn:hover {
    background: var(--border);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(71, 85, 105, 0.3);
}

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

.portal-btn.primary {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--text);
}

.portal-btn.primary:hover {
    background: var(--primary-dark);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.portal-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.footer {
    margin-top: 32px;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.875rem;
}