/* ═══════════════════════════════════════════════════════════════════════
   LaunchMyVoice — App Design System
   Übertragen aus LaunchMyAgent v0.4.19 — App/Admin-Bereiche
   Verwenden auf: Auth-Seiten, Setup-Wizard, Dashboard
   ═══════════════════════════════════════════════════════════════════════ */

:root {
    /* ── Brand ─────────────────────────────────── */
    --color-primary:        #00AEEF;
    --color-accent:         #f97316;
    --color-accent-hover:   #ea6a0a;
    --color-dark-brand:     #1A2A5E;

    /* ── Surfaces (Dark Theme) ─────────────────── */
    --surface-page:         #080c16;
    --surface-card:         #0f1623;
    --surface-input:        #080c16;
    --surface-elevated:     #1a2d47;

    /* ── Borders ───────────────────────────────── */
    --border-subtle:        #1a2236;
    --border-default:       #1e2d45;
    --border-strong:        #334155;

    /* ── Text ──────────────────────────────────── */
    --text-primary:         #f0f4f8;
    --text-body:            #e2e8f0;
    --text-muted:           #cbd5e1;
    --text-dim:             #64748b;
    --text-faint:           #4b5563;

    /* ── Status ────────────────────────────────── */
    --color-success:        #22c55e;
    --color-warning:        #eab308;
    --color-danger:         #ef4444;
    --color-danger-text:    #f87171;

    /* ── Radii ─────────────────────────────────── */
    --radius-sm:            .375rem;
    --radius-md:            .5rem;
    --radius-lg:            .75rem;
    --radius-xl:            .875rem;

    /* ── Transitions ───────────────────────────── */
    --transition-fast:      .15s;

    /* ── Typography ────────────────────────────── */
    --font-headline:        'Exo 2', 'Rajdhani', system-ui, sans-serif;
    --font-body:            'DM Sans', system-ui, -apple-system, sans-serif;
    --font-mono:            'JetBrains Mono', ui-monospace, monospace;

    /* ── Sidebar (aus Schwester-App übernommen) ──── */
    --sb-bg:            #070b14;
    --sb-border:        rgba(255,255,255,0.06);
    --sb-accent:        #f97316;
    --sb-accent-bg:     rgba(249,115,22,0.1);
    --sb-text:          #475569;
    --sb-text-hover:    #e2e8f0;
    --sb-label:         #1e293b;
    --sb-hover-bg:      rgba(255,255,255,0.04);
    --sb-width:         280px;
}

/* ── App-Body (nur wenn body.app oder body.auth) ─────────────────────── */
body.app, body.auth, body.setup {
    background: var(--surface-page);
    color: var(--text-body);
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
}

body.app h1, body.app h2, body.app h3, body.app h4,
body.auth h1, body.auth h2, body.auth h3, body.auth h4,
body.setup h1, body.setup h2, body.setup h3, body.setup h4 {
    font-family: var(--font-headline);
    letter-spacing: -.01em;
    color: var(--text-primary);
    font-weight: 700;
    line-height: 1.2;
}

body.app code, body.auth code, body.setup code,
body.app pre, body.auth pre, body.setup pre,
.field-value, .code-block {
    font-family: var(--font-mono);
}

/* ═══ Card ═════════════════════════════════════════════════════════════ */
.card {
    background: var(--surface-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
}
.card-lg { padding: 2rem; }
.card-sm { padding: 1rem; }

/* ═══ Section-Title ════════════════════════════════════════════════════ */
.section-title {
    font-size: .65rem;
    font-weight: 700;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: 1rem;
}

/* ═══ Buttons ══════════════════════════════════════════════════════════ */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: .65rem 1.35rem;
    background: var(--color-accent);
    color: #fff;
    border: none;
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: .875rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: background var(--transition-fast), transform var(--transition-fast);
}
.btn-primary:hover    { background: var(--color-accent-hover); color: #fff; }
.btn-primary:active   { transform: translateY(1px); }
.btn-primary:disabled { opacity: .5; cursor: not-allowed; }

.btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: .6rem 1.15rem;
    background: transparent;
    border: 1px solid var(--border-default);
    color: var(--text-dim);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: .875rem;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: border-color var(--transition-fast), color var(--transition-fast), background var(--transition-fast);
}
.btn-ghost:hover {
    border-color: var(--border-strong);
    color: var(--text-muted);
    background: rgba(255,255,255,.03);
}

.btn-danger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: .6rem 1.15rem;
    background: transparent;
    border: 1px solid rgba(127,29,29,.5);
    color: var(--color-danger-text);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: .875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-fast);
}
.btn-danger:hover {
    background: rgba(239,68,68,.08);
    border-color: var(--color-danger);
}

.btn-block { display: flex; width: 100%; }
.btn-sm    { padding: .45rem 1rem; font-size: .8rem; }
.btn-lg    { padding: .85rem 1.6rem; font-size: 1rem; }

/* ═══ Form-Felder ══════════════════════════════════════════════════════ */
.field-group { margin-bottom: 1.1rem; }
.field-label {
    display: block;
    font-size: .72rem;
    color: var(--text-faint);
    margin-bottom: .4rem;
    font-weight: 600;
    letter-spacing: .03em;
    text-transform: uppercase;
}
/* Eine Klasse, alle Felder — kompatibel zu Schwester-Markup (textarea.field-input)
   UND zu unseren separaten Klassen (.field-textarea, .field-select). */
.field-input,
.field-textarea,
.field-select,
input.field-input,
textarea.field-input,
select.field-input {
    width: 100%;
    background: var(--surface-input);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: .65rem .9rem;
    color: var(--text-body);
    font-family: var(--font-body);
    font-size: .9rem;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}
.field-input:focus,
.field-textarea:focus,
.field-select:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(249,115,22,.1);
}
.field-input::placeholder,
.field-textarea::placeholder,
textarea.field-input::placeholder { color: var(--text-faint); }
.field-textarea,
textarea.field-input { resize: vertical; min-height: 90px; line-height: 1.5; }
.field-select,
select.field-input {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14' fill='%23cbd5e1'><path d='M7 10L2 5h10z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 38px;
}
.field-help {
    margin-top: .35rem;
    font-size: .78rem;
    color: var(--text-dim);
}

.field-check {
    display: flex;
    align-items: flex-start;
    gap: .65rem;
    cursor: pointer;
    font-size: .88rem;
    color: var(--text-muted);
    line-height: 1.5;
}
.field-check input[type="checkbox"],
.field-check input[type="radio"] {
    flex-shrink: 0;
    width: 1rem;
    height: 1rem;
    margin-top: .2rem;
    accent-color: var(--color-accent);
}
.field-check a { color: var(--color-primary); }

.field-row {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr 1fr;
}
.field-row-3 {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr 1fr 1fr;
}

/* ═══ Code-Block ═══════════════════════════════════════════════════════ */
.code-block {
    font-family: var(--font-mono);
    font-size: .78rem;
    background: var(--surface-page);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 1rem;
    color: #67e8f9;
    white-space: pre;
    overflow-x: auto;
    line-height: 1.65;
}

/* ═══ AI-Panel (Highlight-Bereich) ═════════════════════════════════════ */
.ai-panel {
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    padding: 1.25rem;
    background: linear-gradient(135deg, #0f1623 0%, #0a1020 100%);
}
.ai-panel-active {
    border-color: var(--color-accent);
    box-shadow: 0 0 0 1px rgba(249,115,22,.1);
}

/* ═══ Plan-Cards (Radio-Replacement) ═══════════════════════════════════ */
.plan-fieldset { border: 0; padding: 0; margin: 0; }
.plan-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .5rem;
}
.plan-card-label {
    position: relative;
    display: block;
    cursor: pointer;
}
.plan-card-content {
    border: 1.5px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 1rem;
    background: transparent;
    transition: border-color var(--transition-fast), background var(--transition-fast);
    height: 100%;
}
.plan-card-label:hover .plan-card-content { border-color: var(--border-strong); }
.plan-card-label input:focus-visible + .plan-card-content {
    outline: 2px solid var(--color-accent);
    outline-offset: 2px;
}
.plan-card-label input:checked + .plan-card-content {
    border-color: var(--plan-color);
    background: var(--plan-bg);
}
.plan-check {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--plan-color);
    display: none;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: .65rem;
    font-weight: 700;
}
.plan-card-label input:checked + .plan-card-content .plan-check { display: flex; }

/* ═══ Flash-Messages ═══════════════════════════════════════════════════ */
.flash-success {
    background: rgba(34,197,94,.08);
    border: 1px solid rgba(34,197,94,.25);
    color: #86efac;
    padding: .75rem 1rem;
    border-radius: var(--radius-md);
    font-size: .875rem;
    margin-bottom: 1rem;
}
.flash-error,
.flash-danger {
    background: rgba(239,68,68,.08);
    border: 1px solid rgba(239,68,68,.25);
    color: var(--color-danger-text);
    padding: .75rem 1rem;
    border-radius: var(--radius-md);
    font-size: .875rem;
    margin-bottom: 1rem;
}
.flash-info {
    background: rgba(0,174,239,.08);
    border: 1px solid rgba(0,174,239,.25);
    color: #7dd3fc;
    padding: .75rem 1rem;
    border-radius: var(--radius-md);
    font-size: .875rem;
    margin-bottom: 1rem;
}
.flash-warn {
    background: rgba(234,179,8,.08);
    border: 1px solid rgba(234,179,8,.25);
    color: #fde047;
    padding: .75rem 1rem;
    border-radius: var(--radius-md);
    font-size: .875rem;
    margin-bottom: 1rem;
}

/* ═══ Sidebar — 1:1 aus Schwester-App (ID-basiert) ═════════════════════ */
#sidebar {
    position: fixed; top: 0; left: 0;
    height: 100vh; width: var(--sb-width);
    background: var(--sb-bg);
    border-right: 1px solid var(--sb-border);
    display: flex; flex-direction: column;
    z-index: 50;
    font-family: var(--font-body);          /* DM Sans (markenkonform statt Inter) */
}

/* Brand / Logo */
#sidebar-brand {
    display: flex; align-items: center;
    padding: 1rem;
    border-bottom: 1px solid var(--sb-border);
    text-decoration: none; flex-shrink: 0;
    transition: opacity .15s;
    gap: .6rem;
}
#sidebar-brand:hover { opacity: .82; }

/* Nav */
#sidebar-nav {
    flex: 1;
    padding: 1rem 0.65rem;
    overflow-y: auto;
    display: flex; flex-direction: column; gap: 0.1rem;
}

.nav-section-label {
    font-size: 0.625rem; font-weight: 700;
    color: var(--sb-label);
    text-transform: uppercase; letter-spacing: 0.1em;
    padding: 0 0.5rem; margin: .9rem 0 0.45rem;
}
.nav-section-label:first-child { margin-top: 0; }

/* #sidebar-Prefix nötig: schlägt die globale Regel `body.app a` (orange),
   sonst wären ALLE Nav-Items orange statt nur das aktive. */
#sidebar .nav-item {
    display: flex; align-items: center; gap: 0.65rem;
    height: 36px;
    padding: 0 0.75rem;
    border-radius: 8px;
    font-size: 0.875rem; font-weight: 500;
    color: var(--sb-text);
    text-decoration: none;
    transition: background .15s, color .15s, border-color .15s;
    border-left: 2px solid transparent;
}
#sidebar .nav-item svg { flex-shrink: 0; color: var(--sb-text); transition: color .15s; }
#sidebar .nav-item:hover {
    background: var(--sb-hover-bg);
    color: var(--sb-text-hover);
}
#sidebar .nav-item:hover svg { color: var(--sb-text-hover); }
#sidebar .nav-item.active {
    background: var(--sb-accent-bg);
    color: var(--sb-accent);
    border-left-color: var(--sb-accent);
    padding-left: calc(0.75rem - 2px);   /* kompensiert 2px-Border, kein Springen */
}
#sidebar .nav-item.active svg { color: var(--sb-accent); }

/* Legal-Links */
#sidebar-legal {
    display: flex; gap: 0.5rem; flex-wrap: wrap;
    padding: 1rem 0.9rem 0.25rem;
    font-size: 0.65rem;
    flex-shrink: 0;
}
#sidebar-legal a { color: var(--sb-label); text-decoration: none; transition: color .15s; }
#sidebar-legal a:hover { color: var(--sb-text); }

/* Bottom (Profil + Logout) */
#sidebar-bottom {
    display: flex; align-items: center;
    padding: 0 0.65rem;
    height: 60px;
    border-top: 1px solid var(--sb-border);
    gap: 0.25rem;
    flex-shrink: 0;
}
.nav-item--bottom { flex: 1; margin-bottom: 0; }
#sidebar-bottom .sb-logout {
    display: flex; align-items: center; justify-content: center;
    width: 32px; height: 32px; border-radius: 8px;
    color: var(--sb-label);
    text-decoration: none; flex-shrink: 0;
    transition: background .15s, color .15s;
}
#sidebar-bottom .sb-logout:hover {
    background: rgba(248,113,113,0.08);
    color: #f87171;
}

/* Content-Bereich neben der Sidebar */
.sidebar-offset { margin-left: var(--sb-width); }
@media (max-width: 768px) {
    .sidebar-offset { margin-left: 0; }
    #sidebar { transform: translateX(-100%); transition: transform var(--transition-fast); }
    #sidebar.open { transform: translateX(0); }
}

/* ═══ KPI-Cards (Icon-Badge + Value + Label, à la LaunchMyAgent) ════════ */
.kpi-card {
    background: var(--surface-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    padding: 1.25rem;
}
.kpi-icon {
    width: 36px; height: 36px;
    border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: .75rem;
}
.kpi-value {
    font-family: var(--font-headline);
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.1;
}
.kpi-label {
    font-size: .7rem;
    color: var(--text-dim);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-top: .35rem;
}

/* ═══ Badges (Status-Tags in Listen) ═══════════════════════════════════ */
.badge {
    display: inline-block;
    font-size: .62rem;
    font-weight: 700;
    padding: .15rem .45rem;
    border-radius: .25rem;
    letter-spacing: .04em;
    text-transform: uppercase;
}
.badge-lead    { background: rgba(34,197,94,.12);  color: #4ade80; border: 1px solid rgba(34,197,94,.25); }
.badge-booking { background: rgba(99,102,241,.12); color: #a5b4fc; border: 1px solid rgba(99,102,241,.25); }
.badge-call    { background: rgba(249,115,22,.12); color: #fdba74; border: 1px solid rgba(249,115,22,.25); }
.badge-muted   { background: rgba(255,255,255,.04); color: var(--text-dim); border: 1px solid var(--border-subtle); }

/* ═══ Page-Layout ══════════════════════════════════════════════════════ */
.page-padding { padding: 2rem; }
.page-max     { max-width: 48rem; margin-inline: auto; }
.page-max-lg  { max-width: 64rem; margin-inline: auto; }

.page-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 2rem;
    gap: 1rem;
    flex-wrap: wrap;
}
.page-header h1 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: -.01em;
}
.page-header p.sub {
    font-size: .875rem;
    color: var(--text-dim);
    margin-top: .25rem;
}

.breadcrumbs {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: .375rem;
    font-size: .875rem;
    color: var(--text-dim);
}
.breadcrumbs a {
    color: var(--text-dim);
    text-decoration: none;
    transition: color var(--transition-fast);
}
.breadcrumbs a:hover { color: var(--color-accent); }
.breadcrumbs .sep { color: var(--text-faint); }
.breadcrumbs .current { color: var(--text-muted); font-weight: 500; }

/* ═══ Auth-Layout ══════════════════════════════════════════════════════ */
.auth-shell {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 2rem 1rem;
    position: relative;
    overflow: hidden;
}
.auth-card {
    position: relative;
    z-index: 2;
    background: var(--surface-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    padding: 2.5rem 2.25rem;
    max-width: 28rem;
    width: 100%;
}
.auth-card-wide { max-width: 40rem; }
.auth-brand {
    display: inline-flex;
    align-items: center;
    gap: .65rem;
    font-family: var(--font-headline);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-primary);
    text-decoration: none;
    margin-bottom: 1.75rem;
}
.auth-brand .brand-orb {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary), var(--color-dark-brand));
    box-shadow: 0 0 12px rgba(0,174,239,.45);
}
.auth-card h1 {
    font-size: 1.5rem;
    margin-bottom: .35rem;
    color: var(--text-primary);
}
.auth-card .lead {
    font-size: .9rem;
    color: var(--text-dim);
    margin-bottom: 1.75rem;
}
.auth-foot {
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border-subtle);
    font-size: .82rem;
    color: var(--text-dim);
    text-align: center;
}
.auth-foot a {
    color: var(--color-accent);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--transition-fast);
}
.auth-foot a:hover { color: var(--color-accent-hover); }

/* Atmosphäre: dezente Glows hinter dem Card */
.auth-shell .glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    z-index: 0;
    pointer-events: none;
}
.auth-shell .glow-cyan {
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(0,174,239,.18) 0%, transparent 70%);
    top: -10%;
    right: -8%;
}
.auth-shell .glow-orange {
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(249,115,22,.12) 0%, transparent 70%);
    bottom: -10%;
    left: -8%;
}

/* ═══ Utility ══════════════════════════════════════════════════════════ */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}
.text-primary { color: var(--text-primary); }
.text-body    { color: var(--text-body); }
.text-muted   { color: var(--text-muted); }
.text-dim     { color: var(--text-dim); }
.text-faint   { color: var(--text-faint); }
.text-accent  { color: var(--color-accent); }
.text-brand   { color: var(--color-primary); }
.text-danger  { color: var(--color-danger-text); }

/* Links global im App-Bereich */
body.app a, body.setup a, body.auth a {
    color: var(--color-accent);
    text-decoration: none;
    transition: color var(--transition-fast);
}
body.app a:hover, body.setup a:hover, body.auth a:hover {
    color: var(--color-accent-hover);
}

/* ═══ Tailwind-CDN-Overrides (höhere Spezifität als Preflight) ═════════ */
a.btn-primary,
button.btn-primary,
input[type="submit"].btn-primary {
    color: #fff !important;
    text-decoration: none !important;
}
a.btn-primary:hover,
button.btn-primary:hover { color: #fff !important; }

a.btn-ghost,
button.btn-ghost {
    color: var(--text-dim) !important;
    text-decoration: none !important;
}
a.btn-ghost:hover,
button.btn-ghost:hover { color: var(--text-muted) !important; }

a.btn-danger,
button.btn-danger {
    color: var(--color-danger-text) !important;
    text-decoration: none !important;
}

/* SVGs in Buttons folgen der Button-Farbe */
.btn-primary svg, .btn-ghost svg, .btn-danger svg { color: inherit !important; }

/* Links in Auth-Foot + Help-Texten korrekt orange */
.auth-foot a, .field-help a, .breadcrumbs a:hover { color: var(--color-accent) !important; }

/* Sidebar-Items: text muss sichtbar bleiben */
a.sidebar-nav-item, a.sidebar-brand { text-decoration: none !important; }

/* ═══ Toast / Flash ════════════════════════════════════════════════════
   App-Surface (bodyClass 'app'/'dashboard'/...) lädt NUR diese Datei —
   darum müssen die Toast-Styles hier liegen, sonst rendert das Flash
   ungestylt als volle Leiste oben (Text läuft raus, nicht als Erfolg
   erkennbar). Server-Markup: <div class="toast-wrap" id="flashStack">. */
.toast-wrap {
    position: fixed; top: 20px; right: 20px; z-index: 9999;
    display: flex; flex-direction: column; gap: 10px;
    max-width: min(440px, calc(100vw - 40px));
}
.toast {
    position: relative;
    display: flex; align-items: flex-start; gap: 10px;
    padding: 14px 38px 14px 16px;
    background: var(--surface-elevated);
    border: 1px solid var(--border-default);
    border-left: 4px solid var(--color-primary);
    border-radius: var(--radius-md);
    color: var(--text-primary); font-size: .9rem; line-height: 1.45;
    box-shadow: 0 12px 34px rgba(0, 0, 0, .45);
    overflow-wrap: anywhere; word-break: break-word;
    animation: lmvToastIn .25s ease;
}
.toast::before {
    flex: 0 0 auto; font-weight: 800; font-size: 1rem; line-height: 1.3;
}
.toast-success {
    border-left-color: var(--color-success);
    background: linear-gradient(0deg, rgba(34,197,94,.10), rgba(34,197,94,.10)), var(--surface-elevated);
}
.toast-success::before { content: "✓"; color: var(--color-success); }
.toast-danger {
    border-left-color: var(--color-danger);
    background: linear-gradient(0deg, rgba(239,68,68,.12), rgba(239,68,68,.12)), var(--surface-elevated);
}
.toast-danger::before { content: "!"; color: var(--color-danger-text); }
.toast-warn {
    border-left-color: var(--color-warning);
    background: linear-gradient(0deg, rgba(234,179,8,.10), rgba(234,179,8,.10)), var(--surface-elevated);
}
.toast-warn::before  { content: "!"; color: var(--color-warning); }
.toast-info::before  { content: "i"; color: var(--color-primary); }
.toast-close {
    position: absolute; top: 7px; right: 9px;
    background: none; border: 0; color: var(--text-primary); opacity: .55;
    font-size: 1.15rem; line-height: 1; cursor: pointer; padding: 2px 4px;
}
.toast-close:hover { opacity: 1; }
@keyframes lmvToastIn {
    from { opacity: 0; transform: translateX(16px); }
    to   { opacity: 1; transform: translateX(0); }
}

/* ═══ Mobile-Anpassungen ═══════════════════════════════════════════════ */
@media (max-width: 640px) {
    .auth-card { padding: 2rem 1.5rem; }
    .field-row,
    .field-row-3 { grid-template-columns: 1fr; }
    .plan-grid { grid-template-columns: 1fr; }
    .page-padding { padding: 1.25rem; }
    .toast-wrap { left: 14px; right: 14px; top: 14px; max-width: none; }
}
