/* ════════════════════════════════════════════════════════════════════
   TravelZona — Auth Pages CSS (Final Visual Polish)
   ─────────────────────────────────────────
   3-column desktop layout: Hero | Step 1 (Role) | Step 2 (Account)
   Mobile: vertical stack with step transitions.
   Color system: Indigo (#6366f1) + Violet (#8b5cf6) gradients.
   ════════════════════════════════════════════════════════════════════ */

/* ─── CSS Variables ─────────────────────────────────────────────── */
:root {
    --tz-bg:           #020617;  /* slate-950 — page background */
    --tz-card:         #0f172a;  /* slate-900 — card background */
    --tz-surface:      #1e293b;  /* slate-800 — unselected cards */
    --tz-input-bg:     #0a0f1c;  /* darker than card */
    --tz-border:       #1e293b;  /* slate-800 */
    --tz-border-light: #334155;  /* slate-700 */
    --tz-text:         #f8fafc;  /* slate-50 */
    --tz-text-2:       #cbd5e1;  /* slate-300 */
    --tz-text-3:       #94a3b8;  /* slate-400 */
    --tz-text-4:       #64748b;  /* slate-500 */
    --tz-primary:      #6366f1;  /* indigo-500 */
    --tz-secondary:    #8b5cf6;  /* violet-500 */
    --tz-blue:         #60a5fa;  /* blue-400 */
    --tz-success:      #22c55e;  /* green-500 */
    --tz-danger:       #ef4444;  /* red-500 */
    --tz-warning:      #eab308;  /* yellow-500 */
    --tz-grad:         linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    --tz-grad-text:    linear-gradient(to right, #60a5fa, #a78bfa);
    --tz-shadow-card:  0 25px 50px -12px rgba(0,0,0,0.5);
    --tz-shadow-btn:   0 10px 25px -5px rgba(99,102,241,0.4);
    --tz-shadow-glow:  0 0 30px -5px rgba(99,102,241,0.3);
    --tz-radius:       1.25rem;  /* 20px */
    --tz-radius-sm:    0.75rem;  /* 12px */
}

/* ─── Auth page reset ───────────────────────────────────────────── */
body.auth-page {
    background: var(--tz-bg);
    overflow-x: hidden;
    color: var(--tz-text);
}
body.auth-page .main-content {
    padding: 0 !important;
    max-width: 100% !important;
    min-height: 100vh;
    min-height: 100dvh;
}

/* ─── Auth Shell: 3-column on desktop, stacked on mobile ───────── */
.auth-shell {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    min-height: 100dvh;
    width: 100%;
}

/* ═════════════════════════════════════════════════════════════════
   1. LEFT VISUAL PANEL — Hero + Branding + Value Props
   ═════════════════════════════════════════════════════════════════ */
.auth-visual {
    position: relative;
    min-height: 240px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: var(--tz-bg);
    flex-shrink: 0;
}
.auth-visual-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}
.auth-visual-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(2,6,23,0.3) 0%, rgba(2,6,23,0.6) 50%, rgba(2,6,23,0.95) 100%),
        linear-gradient(135deg, rgba(99,102,241,0.15) 0%, transparent 50%, rgba(139,92,246,0.1) 100%);
    pointer-events: none;
}
/* Subtle dot texture for depth */
.auth-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 2;
    background-image: radial-gradient(circle, rgba(99,102,241,0.06) 1px, transparent 1px);
    background-size: 28px 28px;
    opacity: 0.4;
    pointer-events: none;
}
.auth-visual-content {
    position: relative;
    z-index: 3;
    padding: 1.5rem 1.5rem 2rem;
    width: 100%;
    color: var(--tz-text);
}
.auth-visual-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    font-weight: 800;
    font-size: 1.125rem;
    color: var(--tz-text);
    text-decoration: none;
}
.auth-visual-logo-icon {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 0.625rem;
    background: var(--tz-grad);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9375rem;
    box-shadow: 0 4px 12px rgba(99,102,241,0.4);
}
.auth-visual-headline {
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1.15;
    margin: 0 0 0.75rem;
    text-shadow: 0 2px 12px rgba(0,0,0,0.6);
    letter-spacing: -0.02em;
}
.auth-visual-headline .grad {
    background: var(--tz-grad-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.auth-visual-tagline {
    font-size: 0.9375rem;
    color: var(--tz-text-3);
    margin: 0 0 1.75rem;
    text-shadow: 0 1px 6px rgba(0,0,0,0.5);
}
/* Value points */
.auth-value-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.75rem;
}
.auth-value-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}
.auth-value-icon {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 0.625rem;
    background: rgba(99,102,241,0.15);
    border: 1px solid rgba(99,102,241,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--tz-blue);
    font-size: 0.875rem;
    flex-shrink: 0;
}
.auth-value-body {
    flex: 1;
}
.auth-value-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--tz-text);
    margin: 0 0 0.125rem;
}
.auth-value-desc {
    font-size: 0.75rem;
    color: var(--tz-text-3);
    margin: 0;
}
/* Social proof */
.auth-social-proof {
    display: flex;
    align-items: center;
    gap: 0.875rem;
}
.auth-social-avatars {
    display: flex;
    flex-shrink: 0;
}
.auth-social-avatar {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    border: 2px solid var(--tz-card);
    object-fit: cover;
    margin-left: -0.5rem;
}
.auth-social-avatar:first-child { margin-left: 0; }
.auth-social-avatar-fallback {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    border: 2px solid var(--tz-card);
    background: var(--tz-grad);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    margin-left: -0.5rem;
    flex-shrink: 0;
}
.auth-social-avatar-fallback:first-child { margin-left: 0; }
.auth-social-text {
    font-size: 0.8125rem;
    line-height: 1.3;
}
.auth-social-text strong { color: var(--tz-text); font-weight: 700; }
.auth-social-text span { color: var(--tz-text-4); display: block; }

/* ═════════════════════════════════════════════════════════════════
   2. AUTH PANELS (Step 1 + Step 2) — shared card styling
   ═════════════════════════════════════════════════════════════════ */
.auth-panels {
    display: flex;
    flex-direction: column;
    flex: 1;
}
.auth-panel {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1.5rem 1.25rem;
    background: var(--tz-bg);
    position: relative;
}
.auth-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(99,102,241,0.05) 1px, transparent 1px);
    background-size: 24px 24px;
    opacity: 0.4;
    pointer-events: none;
}
.auth-card {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 26rem;
    margin: 0 auto;
    background: var(--tz-card);
    border: 1px solid var(--tz-border);
    border-radius: var(--tz-radius);
    padding: 1.75rem 1.5rem;
    box-shadow: var(--tz-shadow-card);
}

/* ─── Step indicator (01 / 02) ─────────────────────────────────── */
.auth-step-indicator {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}
.auth-step-num {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: var(--tz-surface);
    color: var(--tz-text-3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    border: 1px solid var(--tz-border-light);
    transition: all 0.3s;
    flex-shrink: 0;
}
.auth-step-num.active {
    background: var(--tz-grad);
    color: white;
    border-color: transparent;
    box-shadow: 0 0 0 4px rgba(99,102,241,0.2);
}
.auth-step-num.done {
    background: rgba(34,197,94,0.15);
    color: var(--tz-success);
    border-color: rgba(34,197,94,0.3);
}
.auth-step-info {
    flex: 1;
}
.auth-step-label {
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--tz-text-4);
    font-weight: 600;
}
.auth-step-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--tz-text);
}
.auth-step-connector {
    flex: 1;
    height: 1px;
    background: var(--tz-border-light);
    margin: 0 0.5rem;
}
.auth-step-connector.done {
    background: var(--tz-success);
}

/* ─── Card headings ────────────────────────────────────────────── */
.auth-card-eyebrow {
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--tz-blue);
    margin: 0 0 0.5rem;
}
.auth-card-title {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--tz-text);
    margin: 0 0 0.5rem;
    line-height: 1.25;
    letter-spacing: -0.01em;
}
.auth-card-subtitle {
    font-size: 0.875rem;
    color: var(--tz-text-3);
    margin: 0 0 1.5rem;
    line-height: 1.5;
}

/* ═════════════════════════════════════════════════════════════════
   3. ROLE CARDS (Step 1)
   ═════════════════════════════════════════════════════════════════ */
.auth-role-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.625rem;
    margin-bottom: 1.5rem;
}
.auth-role-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 0.875rem;
    background: var(--tz-surface);
    border: 2px solid transparent;
    border-radius: var(--tz-radius-sm);
    cursor: pointer;
    transition: all 0.25s ease;
    user-select: none;
}
.auth-role-card:hover {
    background: #263348;
    border-color: var(--tz-border-light);
}
.auth-role-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.auth-role-icon {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 0.625rem;
    background: rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    color: var(--tz-text-3);
    flex-shrink: 0;
    transition: all 0.25s;
}
.auth-role-body {
    flex: 1;
    min-width: 0;
}
.auth-role-name {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--tz-text);
    margin: 0 0 0.125rem;
}
.auth-role-desc {
    font-size: 0.75rem;
    color: var(--tz-text-4);
    margin: 0;
    line-height: 1.3;
}
.auth-role-check {
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    border: 2px solid var(--tz-border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: transparent;
    font-size: 0.625rem;
    flex-shrink: 0;
    transition: all 0.25s;
}
/* Selected state — premium gradient + glow */
.auth-role-card:has(input:checked) {
    background: rgba(99,102,241,0.08);
    border-color: var(--tz-primary);
    box-shadow: 0 0 0 1px rgba(99,102,241,0.3), 0 8px 24px rgba(99,102,241,0.15);
    transform: scale(1.02);
}
.auth-role-card:has(input:checked) .auth-role-icon {
    background: var(--tz-grad);
    color: white;
    box-shadow: 0 4px 12px rgba(99,102,241,0.4);
}
.auth-role-card:has(input:checked) .auth-role-check {
    background: var(--tz-grad);
    border-color: transparent;
    color: white;
}

/* ═════════════════════════════════════════════════════════════════
   4. FORM FIELDS
   ═════════════════════════════════════════════════════════════════ */
.auth-field {
    margin-bottom: 1rem;
}
.auth-field-label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--tz-text-2);
    margin-bottom: 0.375rem;
}
.auth-field-required {
    color: var(--tz-danger);
    margin-left: 0.125rem;
}
.auth-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}
.auth-input-icon {
    position: absolute;
    left: 0.875rem;
    color: var(--tz-text-4);
    font-size: 0.875rem;
    pointer-events: none;
    transition: color 0.2s;
}
.auth-input {
    width: 100%;
    padding: 0.75rem 0.875rem 0.75rem 2.5rem;
    background: var(--tz-input-bg);
    border: 1px solid var(--tz-border-light);
    border-radius: var(--tz-radius-sm);
    color: var(--tz-text);
    font-size: 0.9375rem;
    font-family: inherit;
    outline: none;
    transition: all 0.2s;
}
.auth-input::placeholder {
    color: #475569;
}
.auth-input:focus {
    border-color: var(--tz-primary);
    background: rgba(99,102,241,0.05);
    box-shadow: 0 0 0 3px rgba(99,102,241,0.15);
}
.auth-input:focus ~ .auth-input-icon,
.auth-input-wrap:focus-within .auth-input-icon {
    color: var(--tz-primary);
}
.auth-input-toggle {
    position: absolute;
    right: 0.75rem;
    background: transparent;
    border: none;
    color: var(--tz-text-4);
    cursor: pointer;
    padding: 0.375rem;
    font-size: 0.9375rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.auth-input-toggle:hover {
    color: var(--tz-text-2);
}
.auth-field-status {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.75rem;
    margin-top: 0.375rem;
    min-height: 1rem;
}
.auth-field-status.checking { color: var(--tz-text-3); }
.auth-field-status.ok      { color: var(--tz-success); }
.auth-field-status.error   { color: var(--tz-danger); }
.auth-field-error {
    font-size: 0.75rem;
    color: var(--tz-danger);
    margin-top: 0.375rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

/* Password strength meter */
.auth-strength { margin-top: 0.5rem; }
.auth-strength-bar {
    display: flex;
    gap: 0.25rem;
    height: 4px;
}
.auth-strength-seg {
    flex: 1;
    background: var(--tz-border);
    border-radius: 2px;
    transition: background 0.3s;
}
.auth-strength.severity-1 .auth-strength-seg:nth-child(-n+1) { background: var(--tz-danger); }
.auth-strength.severity-2 .auth-strength-seg:nth-child(-n+2) { background: var(--tz-warning); }
.auth-strength.severity-3 .auth-strength-seg:nth-child(-n+3) { background: #84cc16; }
.auth-strength.severity-4 .auth-strength-seg:nth-child(-n+4) { background: var(--tz-success); }
.auth-strength-label {
    font-size: 0.6875rem;
    color: var(--tz-text-4);
    margin-top: 0.25rem;
}
.auth-strength.severity-1 .auth-strength-label { color: var(--tz-danger); }
.auth-strength.severity-2 .auth-strength-label { color: var(--tz-warning); }
.auth-strength.severity-3 .auth-strength-label { color: #84cc16; }
.auth-strength.severity-4 .auth-strength-label { color: var(--tz-success); }

/* Consent checkbox */
.auth-consent {
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
    margin: 1rem 0 1.25rem;
    font-size: 0.8125rem;
    color: var(--tz-text-2);
    line-height: 1.5;
}
.auth-consent input[type="checkbox"] {
    margin-top: 0.125rem;
    width: 1.125rem;
    height: 1.125rem;
    accent-color: var(--tz-primary);
    cursor: pointer;
    flex-shrink: 0;
}
.auth-consent a {
    color: var(--tz-blue);
    text-decoration: underline;
    text-decoration-color: rgba(96,165,250,0.4);
}
.auth-consent a:hover { text-decoration-color: var(--tz-blue); }

/* ═════════════════════════════════════════════════════════════════
   5. BUTTONS
   ═════════════════════════════════════════════════════════════════ */
.auth-btn {
    width: 100%;
    padding: 0.875rem 1.25rem;
    background: var(--tz-grad);
    color: white;
    border: none;
    border-radius: var(--tz-radius-sm);
    font-size: 0.9375rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.2s;
    box-shadow: var(--tz-shadow-btn);
    min-height: 3rem;
}
.auth-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px -5px rgba(99,102,241,0.5);
}
.auth-btn:active:not(:disabled) { transform: translateY(0); }
.auth-btn:disabled { opacity: 0.6; cursor: not-allowed; }
.auth-btn-secondary {
    background: var(--tz-surface);
    border: 1px solid var(--tz-border-light);
    color: var(--tz-text);
    box-shadow: none;
}
.auth-btn-secondary:hover:not(:disabled) {
    background: #263348;
    box-shadow: none;
}
.auth-spinner {
    width: 1rem;
    height: 1rem;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: auth-spin 0.7s linear infinite;
}
@keyframes auth-spin { to { transform: rotate(360deg); } }

/* ═════════════════════════════════════════════════════════════════
   6. FOOTER + MISC
   ═════════════════════════════════════════════════════════════════ */
.auth-footer {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.8125rem;
    color: var(--tz-text-4);
}
.auth-footer a {
    color: #818cf8;
    font-weight: 600;
    text-decoration: none;
}
.auth-footer a:hover { text-decoration: underline; }
.auth-security-note {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.6875rem;
    color: var(--tz-text-4);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
}

/* Flash messages */
.auth-flash {
    padding: 0.75rem 1rem;
    border-radius: var(--tz-radius-sm);
    margin-bottom: 1.25rem;
    font-size: 0.8125rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    line-height: 1.4;
}
.auth-flash-error    { background: rgba(239,68,68,0.12); border: 1px solid rgba(239,68,68,0.3); color: #fca5a5; }
.auth-flash-success  { background: rgba(34,197,94,0.12); border: 1px solid rgba(34,197,94,0.3); color: #6ee7b7; }
.auth-flash-warning  { background: rgba(234,179,8,0.12); border: 1px solid rgba(234,179,8,0.3); color: #fcd34d; }

/* Verification screen */
.auth-verify-icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1.25rem;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(99,102,241,0.2), rgba(139,92,246,0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: #818cf8;
    border: 1px solid rgba(99,102,241,0.3);
}
.auth-verify-email {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    background: rgba(99,102,241,0.15);
    border: 1px solid rgba(99,102,241,0.3);
    border-radius: 9999px;
    color: #818cf8;
    font-weight: 600;
    font-size: 0.8125rem;
    margin: 0.5rem 0 1.25rem;
}
.auth-verify-steps {
    text-align: left;
    background: var(--tz-input-bg);
    border: 1px solid var(--tz-border);
    border-radius: var(--tz-radius-sm);
    padding: 1rem 1.25rem;
    margin-bottom: 1.25rem;
}
.auth-verify-steps li {
    font-size: 0.8125rem;
    color: var(--tz-text-3);
    margin-bottom: 0.5rem;
    line-height: 1.5;
}
.auth-verify-steps li:last-child { margin-bottom: 0; }
.auth-verify-steps li::marker { color: #818cf8; }

/* Onboarding */
.auth-onboard-progress {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
    font-size: 0.75rem;
    color: var(--tz-text-4);
}
.auth-onboard-progress-bar {
    flex: 1;
    height: 4px;
    background: var(--tz-border);
    border-radius: 2px;
    margin: 0 0.75rem;
    overflow: hidden;
}
.auth-onboard-progress-fill {
    height: 100%;
    background: var(--tz-grad);
    border-radius: 2px;
    transition: width 0.4s ease;
}
.auth-onboard-skip {
    background: transparent;
    border: none;
    color: var(--tz-text-4);
    font-size: 0.75rem;
    cursor: pointer;
    text-decoration: none;
    font-family: inherit;
}
.auth-onboard-skip:hover { color: var(--tz-text-2); }

/* Chip selector */
.auth-chip-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}
.auth-chip {
    padding: 0.5rem 0.875rem;
    background: var(--tz-surface);
    border: 1px solid var(--tz-border-light);
    border-radius: 9999px;
    color: var(--tz-text-2);
    font-size: 0.8125rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    user-select: none;
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
}
.auth-chip:hover {
    background: #263348;
    border-color: #475569;
}
.auth-chip.selected {
    background: rgba(99,102,241,0.15);
    border-color: var(--tz-primary);
    color: var(--tz-text);
}
.auth-chip.selected .auth-chip-check { color: var(--tz-blue); }

/* ═════════════════════════════════════════════════════════════════
   7. RESPONSIVE — Desktop 3-column layout (≥ 1024px)
   ═════════════════════════════════════════════════════════════════ */
/* Step 2 hidden until Continue is clicked (both desktop + mobile) */
.auth-panel.step2-hidden { display: none; }

@media (min-width: 1024px) {
    body.auth-page .main-content { min-height: 100vh; }
    .auth-shell {
        flex-direction: row;
        min-height: 100vh;
    }
    .auth-visual {
        flex: 1.2;
        min-height: 100vh;
        align-items: center;
    }
    .auth-visual-content {
        padding: 3rem 3rem 3rem 3.5rem;
        max-width: 34rem;
    }
    .auth-visual-headline { font-size: 2.5rem; }
    .auth-visual-tagline { font-size: 1.0625rem; }
    .auth-panels {
        flex-direction: row;
        flex: 2;
    }
    .auth-panel {
        padding: 2rem 2rem;
    }
    .auth-card {
        padding: 2rem 1.75rem;
    }
}

/* ─── Tablet (768px – 1023px) ──────────────────────────────────── */
@media (min-width: 768px) and (max-width: 1023px) {
    .auth-visual { min-height: 260px; }
    .auth-visual-headline { font-size: 2rem; }
    .auth-role-grid { grid-template-columns: 1fr 1fr; }
}

/* ─── Very small screens (≤ 360px) ─────────────────────────────── */
@media (max-width: 360px) {
    .auth-card {
        padding: 1.25rem 1rem;
        border-radius: 1rem;
    }
    .auth-visual-headline { font-size: 1.375rem; }
    .auth-role-card { padding: 0.75rem; gap: 0.625rem; }
    .auth-role-icon { width: 2.5rem; height: 2.5rem; font-size: 1rem; }
    .auth-role-name { font-size: 0.875rem; }
    .auth-role-desc { font-size: 0.6875rem; }
}

/* ─── Reduced motion ───────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}
