/**
 * HobbyEdge CSS
 * Purpose: Early landing/login styling.
 * Usage: Loaded by public HobbyEdge pages.
 * Dependencies: None.
 * Key Blocks: Layout, cards, buttons, forms.
 */

:root {
    --he-bg: #0f172a;
    --he-card: #111827;
    --he-text: #f8fafc;
    --he-muted: #94a3b8;
    --he-border: #1f2937;
    --he-primary: #7c3aed;
    --he-primary-hover: #6d28d9;
    --he-alert: #7f1d1d;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: radial-gradient(circle at top, #1e1b4b, var(--he-bg));
    color: var(--he-text);
}

.he-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px;
}

.he-card {
    width: 100%;
    max-width: 760px;
    background: rgba(17, 24, 39, 0.92);
    border: 1px solid var(--he-border);
    border-radius: 24px;
    padding: 42px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

.he-login-card {
    max-width: 440px;
}

.he-logo {
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -0.04em;
    margin-bottom: 24px;
}

h1 {
    font-size: 42px;
    line-height: 1.05;
    margin: 0 0 18px;
}

p {
    font-size: 18px;
    line-height: 1.5;
}

.he-muted {
    color: var(--he-muted);
    font-size: 14px;
}

.he-actions {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 32px;
}

.he-btn {
    display: inline-block;
    border: 0;
    border-radius: 12px;
    padding: 13px 20px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
}

.he-btn-primary {
    background: var(--he-primary);
    color: white;
}

.he-btn-primary:hover {
    background: var(--he-primary-hover);
}

.he-form {
    display: grid;
    gap: 18px;
}

.he-form label {
    display: grid;
    gap: 8px;
    color: var(--he-muted);
    font-size: 14px;
}

.he-form input {
    width: 100%;
    border: 1px solid var(--he-border);
    background: #020617;
    color: var(--he-text);
    border-radius: 12px;
    padding: 13px 14px;
    font-size: 16px;
}

.he-alert {
    background: var(--he-alert);
    border: 1px solid #991b1b;
    padding: 12px 14px;
    border-radius: 12px;
    margin-bottom: 18px;
}