/* ============================================================
   lawnovus.css  –  Global stylesheet
   Place at: public/css/lawnovus.css
   ============================================================ */

/* ── RESET & FONTS ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --ink:        #0f1923;
    --ink-soft:   #3a4a5a;
    --ink-muted:  #8a9aaa;
    --forest:     #1a4a3a;
    --emerald:    #2d7a5a;
    --mint:       #4db889;
    --mint-light: #e6f7f0;
    --gold:       #c9962a;
    --gold-light: #fdf5e0;
    --rose:       #c94a4a;
    --sky:        #3a6fa0;
    --sky-light:  #e8f2fb;
    --bg:         #f4f6f8;
    --card:       #ffffff;
    --border:     #e2e8ee;
    --radius:     16px;
    --radius-sm:  10px;
    --shadow:     0 1px 12px rgba(15,25,35,0.06);
    --shadow-md:  0 8px 24px rgba(15,25,35,0.10);
}

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg);
    color: var(--ink);
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

/* ── TOPBAR ─────────────────────────────────────────────────── */
.lnv-topbar {
    background: var(--card);
    border-bottom: 1px solid var(--border);
    padding: 0 2.5rem;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow);
}

.lnv-logo {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--forest);
    letter-spacing: -0.5px;
    text-decoration: none;
    flex-shrink: 0;
}
.lnv-logo span { color: var(--mint); }

.lnv-nav { display: flex; gap: 0.25rem; align-items: center; }
.lnv-nav a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--ink-soft);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.18s;
    white-space: nowrap;
}
.lnv-nav a:hover,
.lnv-nav a.active { background: var(--mint-light); color: var(--emerald); }
.lnv-nav a.active { font-weight: 600; }

.lnv-topbar-right { display: flex; align-items: center; gap: 1rem; }

.lnv-bell {
    width: 38px; height: 38px; border-radius: 50%;
    border: 1.5px solid var(--border);
    background: transparent;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    color: var(--ink-soft);
    transition: all 0.18s;
    position: relative;
    text-decoration: none;
    flex-shrink: 0;
}
.lnv-bell:hover { background: var(--mint-light); border-color: var(--mint); color: var(--emerald); }
.lnv-bell-badge {
    position: absolute; top: 6px; right: 6px;
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--rose); border: 2px solid white;
}

.lnv-avatar-wrap { position: relative; }
.lnv-avatar {
    width: 38px; height: 38px; border-radius: 50%;
    background: linear-gradient(135deg, var(--emerald), var(--mint));
    display: flex; align-items: center; justify-content: center;
    color: white; font-weight: 700; font-size: 0.875rem;
    cursor: pointer; border: 2px solid transparent;
    transition: border-color 0.18s;
    user-select: none;
    flex-shrink: 0;
}
.lnv-avatar:hover { border-color: var(--mint); }

/* ── DROPDOWN ───────────────────────────────────────────────── */
.lnv-dropdown {
    position: absolute; top: calc(100% + 8px); right: 0;
    width: 210px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
    display: none;
    z-index: 300;
}
.lnv-dropdown.open { display: block; }

.lnv-dropdown-header {
    padding: 0.75rem 1rem;
    background: #f8fafc;
    border-bottom: 1px solid var(--border);
}
.lnv-dropdown-header .dd-plan-label {
    font-size: 0.68rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.08em;
    color: var(--ink-muted);
}
.lnv-dropdown-header .dd-plan-name {
    font-size: 0.9rem; font-weight: 700; color: var(--ink); margin-top: 2px;
}

.lnv-dropdown a,
.lnv-dropdown button {
    display: block; width: 100%;
    padding: 0.65rem 1rem;
    font-size: 0.83rem;
    color: var(--ink-soft);
    text-decoration: none;
    text-align: left;
    background: none; border: none;
    cursor: pointer;
    transition: background 0.15s;
    font-family: inherit;
}
.lnv-dropdown a:hover,
.lnv-dropdown button:hover { background: var(--mint-light); color: var(--emerald); }

/* ── LAYOUT SHELL ───────────────────────────────────────────── */
.lnv-layout { display: flex; min-height: calc(100vh - 64px); }

/* ── SIDEBAR ────────────────────────────────────────────────── */
.lnv-sidebar {
    width: 240px;
    flex-shrink: 0;
    background: var(--card);
    border-right: 1px solid var(--border);
    padding: 1.5rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    position: sticky;
    top: 64px;
    height: calc(100vh - 64px);
    overflow-y: auto;
}

.lnv-sidebar-label {
    font-size: 0.7rem; font-weight: 700;
    letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--ink-muted);
    padding: 0.5rem 0.75rem 0.25rem;
    margin-top: 0.5rem;
}

.lnv-sidebar-link {
    display: flex; align-items: center; gap: 0.75rem;
    padding: 0.6rem 0.875rem;
    border-radius: var(--radius-sm);
    font-size: 0.875rem; font-weight: 500;
    color: var(--ink-soft);
    text-decoration: none;
    transition: all 0.15s;
}
.lnv-sidebar-link:hover { background: var(--bg); color: var(--ink); }
.lnv-sidebar-link.active { background: var(--mint-light); color: var(--emerald); font-weight: 600; }
.lnv-sidebar-link svg { flex-shrink: 0; opacity: 0.7; }
.lnv-sidebar-link.active svg { opacity: 1; }

.lnv-plan-badge {
    margin: auto 0.5rem 0.5rem;
    padding: 0.875rem 1rem;
    background: linear-gradient(135deg, #0f3028, #1a6048);
    border-radius: 14px;
    color: white;
}
.lnv-plan-badge .badge-title {
    font-size: 0.75rem; font-weight: 700;
    letter-spacing: 0.06em; text-transform: uppercase;
    opacity: 0.7; margin-bottom: 0.25rem;
}
.lnv-plan-badge .badge-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem; font-weight: 600; margin-bottom: 0.75rem;
}
.lnv-plan-badge a {
    display: block; width: 100%;
    background: var(--mint); color: white;
    border: none; padding: 0.5rem; border-radius: 8px;
    font-size: 0.8rem; font-weight: 600;
    cursor: pointer; text-align: center;
    text-decoration: none; transition: background 0.18s;
    font-family: inherit;
}
.lnv-plan-badge a:hover { background: #3daa7a; color: white; }

/* ── MAIN CONTENT AREA ──────────────────────────────────────── */
.lnv-main {
    flex: 1;
    padding: 2rem 2.5rem;
    background: var(--bg);
    overflow-x: hidden;
}

/* ── PAGE HEADER ────────────────────────────────────────────── */
.lnv-page-header {
    display: flex; align-items: flex-start; justify-content: space-between;
    margin-bottom: 2rem;
    gap: 1rem;
}
.lnv-page-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 1.875rem; font-weight: 700;
    color: var(--ink); line-height: 1.2;
}
.lnv-page-header p { color: var(--ink-muted); font-size: 0.9rem; margin-top: 0.25rem; }
.lnv-date-chip {
    background: white; border: 1px solid var(--border); border-radius: 8px;
    padding: 0.5rem 1rem; font-size: 0.8rem; color: var(--ink-muted);
    font-weight: 500; white-space: nowrap; flex-shrink: 0;
}

/* ── BACK LINK ──────────────────────────────────────────────── */
.lnv-back-link {
    display: inline-flex; align-items: center; gap: 0.4rem;
    font-size: 0.82rem; font-weight: 600;
    color: var(--emerald); text-decoration: none;
    margin-bottom: 1.25rem;
    transition: gap 0.15s;
}
.lnv-back-link:hover { gap: 0.6rem; color: var(--forest); }

/* ── GENERIC CONTENT WRAPPER (for pages without sidebar) ────── */
.lnv-content-wrap {
    max-width: 860px;
    margin: 0 auto;
    padding: 2rem 2rem;
}
.lnv-content-wrap-wide {
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem 2rem;
}

/* ── CARDS ──────────────────────────────────────────────────── */
.lnv-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
}
.lnv-card + .lnv-card { margin-top: 1.25rem; }

.lnv-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem; font-weight: 600; color: var(--ink);
    margin-bottom: 1.25rem;
    display: flex; align-items: center; gap: 0.5rem;
}
.lnv-card-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--mint); flex-shrink: 0;
}

/* ── STAT CARDS ─────────────────────────────────────────────── */
.lnv-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 1.75rem;
}
.lnv-stat-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem 1.5rem;
    transition: transform 0.2s, box-shadow 0.2s;
}
.lnv-stat-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.lnv-stat-icon {
    width: 36px; height: 36px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 0.875rem;
}
.lnv-stat-icon.green  { background: var(--mint-light); color: var(--emerald); }
.lnv-stat-icon.gold   { background: var(--gold-light); color: var(--gold); }
.lnv-stat-icon.sky    { background: var(--sky-light);  color: var(--sky); }
.lnv-stat-icon.rose   { background: #fdf0f0; color: var(--rose); }
.lnv-stat-icon.purple { background: #f3edff; color: #7c3aed; }
.lnv-stat-icon.blue   { background: #e8f0fe; color: #3b5bdb; }
.lnv-stat-label { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--ink-muted); margin-bottom: 0.25rem; }
.lnv-stat-value { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: var(--ink); line-height: 1; }
.lnv-stat-sub   { font-size: 0.75rem; color: var(--ink-muted); margin-top: 0.25rem; }

/* ── CONTENT GRID ───────────────────────────────────────────── */
.lnv-content-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 1.5rem;
}
.lnv-col { display: flex; flex-direction: column; gap: 1.5rem; }

/* ── FEATURE TILES ──────────────────────────────────────────── */
.lnv-features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.875rem; }

.lnv-feature-tile {
    border-radius: 14px; padding: 1.125rem;
    cursor: pointer; transition: all 0.2s;
    border: 1.5px solid transparent;
    text-decoration: none; display: block;
}
.lnv-feature-tile:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(15,25,35,0.1); }
.lnv-feature-tile.purple { background: #f3edff; border-color: #ddd0ff; }
.lnv-feature-tile.blue   { background: var(--sky-light); border-color: #c8dff5; }
.lnv-feature-tile.amber  { background: var(--gold-light); border-color: #f0dfa0; }
.lnv-feature-tile.slate  { background: #f0f4f8; border-color: #d8e4ee; }
.lnv-feature-tile.cyan   { background: #e0f7fa; border-color: #b2ebf2; }
.lnv-feature-tile.indigo { background: #eef2ff; border-color: #c7d2fe; }
.lnv-feature-tile.red    { background: #fef2f2; border-color: #fecaca; }
.lnv-feature-tile.green  { background: #f0fdf4; border-color: #bbf7d0; }
.lnv-feature-tile.rose   { background: #fff1f2; border-color: #fecdd3; }
.lnv-feature-tile.teal   { background: #f0fdfa; border-color: #99f6e4; }

.lnv-feature-icon  { margin-bottom: 0.5rem; }
.lnv-feature-name  { font-weight: 700; font-size: 0.9rem; color: var(--ink); }
.lnv-feature-desc  { font-size: 0.78rem; color: var(--ink-soft); margin: 0.2rem 0 0.625rem; }
.lnv-feature-link  { font-size: 0.78rem; font-weight: 700; display: inline-flex; align-items: center; gap: 0.3rem; text-decoration: none; }
.lnv-feature-link.purple { color: #7c3aed; }
.lnv-feature-link.blue   { color: var(--sky); }
.lnv-feature-link.amber  { color: var(--gold); }
.lnv-feature-link.slate  { color: var(--ink-soft); }
.lnv-feature-link.cyan   { color: #0891b2; }
.lnv-feature-link.indigo { color: #4338ca; }
.lnv-feature-link.red    { color: #dc2626; }
.lnv-feature-link.green  { color: #16a34a; }
.lnv-feature-link.rose   { color: #e11d48; }
.lnv-feature-link.teal   { color: #0d9488; }

/* ── QUICK ACTIONS ──────────────────────────────────────────── */
.lnv-qa-row { display: flex; gap: 0.75rem; margin-bottom: 1.75rem; flex-wrap: wrap; }

.lnv-qa-btn {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.5rem 1.125rem; border-radius: var(--radius-sm);
    font-size: 0.82rem; font-weight: 600;
    cursor: pointer; border: 1.5px solid var(--border);
    background: var(--card); color: var(--ink-soft);
    transition: all 0.18s; font-family: inherit;
    text-decoration: none; white-space: nowrap;
}
.lnv-qa-btn:hover { border-color: var(--mint); color: var(--emerald); background: var(--mint-light); }
.lnv-qa-btn.primary { background: var(--emerald); color: white; border-color: var(--emerald); }
.lnv-qa-btn.primary:hover { background: var(--forest); border-color: var(--forest); color: white; }

/* ── UPGRADE CARD ───────────────────────────────────────────── */
.lnv-upgrade-card {
    background: linear-gradient(145deg, #0f3028 0%, #1a5540 50%, #0d2a22 100%);
    border-radius: var(--radius); padding: 1.5rem;
    color: white; position: relative; overflow: hidden;
}
.lnv-upgrade-card::before {
    content: ''; position: absolute; top: -40px; right: -40px;
    width: 140px; height: 140px; border-radius: 50%;
    background: rgba(77,184,137,0.15);
}
.lnv-upgrade-card::after {
    content: ''; position: absolute; bottom: -20px; left: 20px;
    width: 80px; height: 80px; border-radius: 50%;
    background: rgba(201,150,42,0.1);
}
.lnv-upgrade-tag {
    display: inline-flex; align-items: center; gap: 0.4rem;
    background: rgba(77,184,137,0.2); border: 1px solid rgba(77,184,137,0.3);
    color: var(--mint); font-size: 0.72rem; font-weight: 700;
    letter-spacing: 0.06em; text-transform: uppercase;
    padding: 0.3rem 0.7rem; border-radius: 20px; margin-bottom: 0.875rem;
}
.lnv-upgrade-title { font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 700; margin-bottom: 0.5rem; position: relative; z-index: 1; }
.lnv-upgrade-desc  { font-size: 0.8rem; opacity: 0.7; line-height: 1.5; margin-bottom: 1.125rem; position: relative; z-index: 1; }
.lnv-upgrade-perks { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.25rem; position: relative; z-index: 1; }
.lnv-upgrade-perk  { display: flex; align-items: center; gap: 0.5rem; font-size: 0.8rem; opacity: 0.85; }
.lnv-perk-check {
    width: 16px; height: 16px; border-radius: 50%;
    background: rgba(77,184,137,0.25);
    display: flex; align-items: center; justify-content: center;
    color: var(--mint); flex-shrink: 0;
}
.lnv-upgrade-cta {
    display: block; width: 100%;
    background: var(--mint); color: white; border: none;
    padding: 0.75rem; border-radius: var(--radius-sm);
    font-size: 0.875rem; font-weight: 700;
    cursor: pointer; font-family: inherit;
    transition: background 0.18s; position: relative; z-index: 1;
    text-align: center; text-decoration: none;
}
.lnv-upgrade-cta:hover { background: #3daa7a; color: white; }

/* ── ACTIVITY ───────────────────────────────────────────────── */
.lnv-activity-item {
    display: flex; align-items: center; gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
}
.lnv-activity-item:last-child { border-bottom: none; }
.lnv-activity-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--border); flex-shrink: 0; }
.lnv-activity-dot.active { background: var(--mint); }

/* ── EMPTY STATE ────────────────────────────────────────────── */
.lnv-empty { text-align: center; padding: 2rem 1rem; color: var(--ink-muted); }
.lnv-empty-icon { margin-bottom: 0.5rem; opacity: 0.4; display: flex; justify-content: center; }
.lnv-empty-text { font-size: 0.82rem; line-height: 1.6; }

/* ── ACCOUNT DETAILS ────────────────────────────────────────── */
.lnv-acct-row  { display: flex; justify-content: space-between; align-items: center; }
.lnv-acct-label { font-size: 0.82rem; color: var(--ink-muted); }
.lnv-acct-value { font-size: 0.875rem; font-weight: 600; color: var(--ink); }
.lnv-divider   { height: 1px; background: var(--border); }

.lnv-pill { font-size: 0.82rem; font-weight: 700; padding: 0.2rem 0.6rem; border-radius: 6px; }
.lnv-pill.green  { color: var(--emerald); background: var(--mint-light); }
.lnv-pill.rose   { color: var(--rose); background: #fdf0f0; }
.lnv-pill.blue   { color: var(--sky); background: var(--sky-light); }
.lnv-pill.purple { color: #7c3aed; background: #f3edff; }
.lnv-pill.gold   { color: var(--gold); background: var(--gold-light); }
.lnv-pill.gray   { color: var(--ink-soft); background: #f0f4f8; }

/* ── FORM ELEMENTS ──────────────────────────────────────────── */
.lnv-label {
    display: block; font-size: 0.82rem; font-weight: 600;
    color: var(--ink-soft); margin-bottom: 0.4rem;
}
.lnv-input,
.lnv-select,
.lnv-textarea {
    display: block; width: 100%;
    padding: 0.625rem 0.875rem;
    font-size: 0.875rem; font-family: inherit; color: var(--ink);
    background: white;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    transition: border-color 0.18s, box-shadow 0.18s;
    outline: none;
}
.lnv-input:focus,
.lnv-select:focus,
.lnv-textarea:focus {
    border-color: var(--mint);
    box-shadow: 0 0 0 3px rgba(77,184,137,0.15);
}
.lnv-textarea { resize: vertical; min-height: 120px; }

/* ── BUTTONS ────────────────────────────────────────────────── */
.lnv-btn {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.625rem 1.25rem; border-radius: var(--radius-sm);
    font-size: 0.875rem; font-weight: 600;
    cursor: pointer; border: 1.5px solid transparent;
    font-family: inherit; text-decoration: none;
    transition: all 0.18s; white-space: nowrap;
}
.lnv-btn.primary { background: var(--emerald); color: white; border-color: var(--emerald); }
.lnv-btn.primary:hover { background: var(--forest); border-color: var(--forest); }
.lnv-btn.secondary { background: white; color: var(--ink-soft); border-color: var(--border); }
.lnv-btn.secondary:hover { border-color: var(--mint); color: var(--emerald); background: var(--mint-light); }
.lnv-btn.danger { background: #fdf0f0; color: var(--rose); border-color: #fad0d0; }
.lnv-btn.danger:hover { background: var(--rose); color: white; border-color: var(--rose); }

/* ── TABLE ──────────────────────────────────────────────────── */
.lnv-table { width: 100%; border-collapse: collapse; font-size: 0.875rem; }
.lnv-table thead th {
    text-align: left; font-size: 0.75rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.04em;
    color: var(--ink-muted); padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--border);
}
.lnv-table tbody td { padding: 0.875rem 1rem; border-bottom: 1px solid var(--border); color: var(--ink-soft); }
.lnv-table tbody tr:last-child td { border-bottom: none; }
.lnv-table tbody tr:hover td { background: var(--bg); }

/* ── SEARCH BAR ─────────────────────────────────────────────── */
.lnv-search-wrap {
    position: relative; display: flex; align-items: center;
}
.lnv-search-wrap svg {
    position: absolute; left: 0.875rem;
    color: var(--ink-muted); pointer-events: none;
}
.lnv-search-input {
    width: 100%; padding: 0.75rem 1rem 0.75rem 2.75rem;
    font-size: 0.875rem; font-family: inherit;
    background: white; color: var(--ink);
    border: 1.5px solid var(--border);
    border-radius: 12px;
    transition: border-color 0.18s, box-shadow 0.18s;
    outline: none;
}
.lnv-search-input:focus {
    border-color: var(--mint);
    box-shadow: 0 0 0 3px rgba(77,184,137,0.15);
}

/* ── ALERT / FLASH ──────────────────────────────────────────── */
.lnv-alert {
    padding: 0.875rem 1.125rem;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    margin-bottom: 1.25rem;
    display: flex; align-items: flex-start; gap: 0.75rem;
}
.lnv-alert.success { background: var(--mint-light); color: var(--forest); border: 1px solid #b0e8cc; }
.lnv-alert.error   { background: #fdf0f0; color: #9a2a2a; border: 1px solid #fad0d0; }
.lnv-alert.info    { background: var(--sky-light); color: #1e4a6e; border: 1px solid #bad5f0; }
.lnv-alert.warning { background: var(--gold-light); color: #7a5010; border: 1px solid #f0d888; }

/* ── TICKET / SUPPORT ───────────────────────────────────────── */
.lnv-ticket-badge {
    display: inline-flex; align-items: center;
    font-size: 0.72rem; font-weight: 700;
    padding: 0.2rem 0.6rem; border-radius: 6px;
}
.lnv-ticket-badge.open     { background: var(--mint-light); color: var(--emerald); }
.lnv-ticket-badge.resolved { background: #f0f4f8; color: var(--ink-muted); }
.lnv-ticket-badge.pending  { background: var(--gold-light); color: var(--gold); }
.lnv-ticket-badge.closed   { background: #f0f4f8; color: var(--ink-muted); }

.lnv-priority-badge {
    display: inline-flex; align-items: center;
    font-size: 0.72rem; font-weight: 700;
    padding: 0.2rem 0.6rem; border-radius: 6px;
}
.lnv-priority-badge.low    { background: #f0fdf4; color: #16a34a; }
.lnv-priority-badge.medium { background: var(--gold-light); color: var(--gold); }
.lnv-priority-badge.high   { background: #fdf0f0; color: var(--rose); }

/* ── RADIO / CHECKBOX OVERRIDES ─────────────────────────────── */
.lnv-radio-group { display: flex; gap: 1.5rem; align-items: center; flex-wrap: wrap; }
.lnv-radio-label {
    display: flex; align-items: center; gap: 0.5rem;
    font-size: 0.875rem; color: var(--ink-soft); cursor: pointer;
}
.lnv-radio-label input[type="radio"] { accent-color: var(--emerald); width: 16px; height: 16px; }

/* ── PAGE SECTION HEADING ───────────────────────────────────── */
.lnv-section-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem; font-weight: 700; color: var(--ink);
    margin-bottom: 0.25rem;
}
.lnv-section-sub { font-size: 0.875rem; color: var(--ink-muted); margin-bottom: 1.5rem; }

/* ── ANIMATIONS ─────────────────────────────────────────────── */
@keyframes lnvFadeUp {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}
.fade-up   { animation: lnvFadeUp 0.5s ease both; }
.fade-up-1 { animation: lnvFadeUp 0.5s 0.1s  ease both; }
.fade-up-2 { animation: lnvFadeUp 0.5s 0.15s ease both; }
.fade-up-3 { animation: lnvFadeUp 0.5s 0.2s  ease both; }

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1100px) {
    .lnv-content-grid { grid-template-columns: 1fr; }
    .lnv-stats-grid   { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .lnv-topbar { padding: 0 1rem; }
    .lnv-sidebar { display: none; }
    .lnv-main   { padding: 1.25rem 1rem; }
    .lnv-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .lnv-features-grid { grid-template-columns: 1fr; }
    .lnv-nav a  { padding: 0.4rem 0.6rem; font-size: 0.8rem; }
    .lnv-content-wrap, .lnv-content-wrap-wide { padding: 1.25rem 1rem; }
}
@media (max-width: 480px) {
    .lnv-stats-grid { grid-template-columns: 1fr 1fr; }
    .lnv-page-header { flex-direction: column; }
    .lnv-date-chip { display: none; }
}