﻿:root {
    --lr-background: #f7f9fb;
    --lr-surface: #ffffff;
    --lr-surface-low: #f2f4f6;
    --lr-surface-mid: #eceef0;
    --lr-surface-high: #e6e8ea;
    --lr-outline: #c1c6d5;
    --lr-outline-strong: #727784;
    --lr-text: #191c1e;
    --lr-text-muted: #5f6672;
    --lr-primary: #004e9f;
    --lr-primary-strong: #0066cc;
    --lr-primary-soft: #d7e3ff;
    --lr-primary-soft-text: #001b3e;
    --lr-secondary: #505f76;
    --lr-tertiary: #00567c;
    --lr-success: #1f7a4d;
    --lr-warning: #c78100;
    --lr-warning-soft: #fff7dd;
    --lr-error: #ba1a1a;
    --lr-error-soft: #ffdad6;
    --lr-shadow: 0 20px 45px rgba(22, 34, 51, 0.08);
    --lr-shadow-soft: 0 8px 24px rgba(22, 34, 51, 0.06);
    --lr-radius-sm: 4px;
    --lr-radius-md: 8px;
    --lr-radius-lg: 12px;
    --lr-radius-xl: 20px;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    min-height: 100%;
    background: var(--lr-background);
    color: var(--lr-text);
    font-family: "Manrope", sans-serif;
}

body {
    overflow-x: hidden;
}

.lr-access-page {
    display: grid;
    place-items: center;
    padding: 24px;
}

.lr-access-shell {
    width: min(100%, 1120px);
}

.lr-access-card {
    width: min(100%, 480px);
    padding: 40px;
    border: 1px solid rgba(193, 198, 213, 0.75);
    border-radius: 28px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 248, 252, 0.98)),
        var(--lr-surface);
    box-shadow: var(--lr-shadow);
}

.lr-access-card h1 {
    margin: 0 0 12px;
    font-size: clamp(2rem, 4vw, 2.8rem);
    line-height: 1.08;
}

.lr-access-card p {
    margin: 0 0 24px;
    color: var(--lr-text-muted);
    line-height: 1.6;
}

.lr-access-eyebrow {
    display: inline-flex;
    margin-bottom: 16px;
    padding: 8px 12px;
    border-radius: 999px;
    background: var(--lr-primary-soft);
    color: var(--lr-primary-soft-text);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.lr-access-form {
    display: grid;
    gap: 18px;
}

.lr-access-submit {
    justify-content: center;
}

.lr-access-error {
    margin-bottom: 20px;
    padding: 14px 16px;
    border: 1px solid rgba(186, 26, 26, 0.18);
    border-radius: 14px;
    background: var(--lr-error-soft);
    color: var(--lr-error);
    font-weight: 600;
}

.lr-button--compact {
    padding: 10px 14px;
    min-height: auto;
}

.lr-page--mockup {
    background: #eef2f6;
}

a {
    color: inherit;
}

button,
input,
select {
    font: inherit;
}

.lr-page {
    min-height: 100vh;
    background:
        radial-gradient(circle at top left, rgba(170, 199, 255, 0.32), transparent 30%),
        radial-gradient(circle at top right, rgba(208, 225, 251, 0.38), transparent 22%),
        var(--lr-background);
}

.lr-topbar {
    position: sticky;
    top: 0;
    z-index: 40;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    height: 72px;
    padding: 0 32px;
    background: rgba(255, 255, 255, 0.86);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(193, 198, 213, 0.8);
}

.lr-topbar--mockup {
    position: static;
    height: 80px;
    padding: 0 28px;
    background: #fff;
    border-bottom: 1px solid #d8dee8;
    backdrop-filter: none;
}

.lr-brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.lr-brand-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    color: #fff;
    background: linear-gradient(135deg, var(--lr-primary), var(--lr-primary-strong));
    box-shadow: var(--lr-shadow-soft);
    font-size: 22px;
    font-weight: 800;
}

.lr-brand-copy strong {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: var(--lr-primary);
    line-height: 1.2;
}

.lr-brand-copy span,
.lr-user-meta span,
.lr-shell-note,
.lr-muted {
    color: var(--lr-text-muted);
    font-size: 13px;
    line-height: 1.4;
}

.lr-topbar-search {
    flex: 1;
    max-width: 520px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 14px;
    height: 44px;
    border: 1px solid var(--lr-outline);
    border-radius: 999px;
    background: rgba(242, 244, 246, 0.82);
}

.lr-topbar-search--mockup {
    max-width: 720px;
    background: #fff;
    border-radius: 10px;
}

.lr-search-icon {
    font-size: 14px;
    color: var(--lr-text-muted);
}

.lr-topbar-search input {
    width: 100%;
    border: 0;
    outline: none;
    background: transparent;
    color: var(--lr-text);
}

.lr-topbar-right {
    display: flex;
    align-items: center;
    gap: 18px;
}

.lr-icon-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: var(--lr-secondary);
    cursor: pointer;
    transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.lr-icon-button:hover {
    background: rgba(0, 78, 159, 0.08);
    color: var(--lr-primary);
    transform: translateY(-1px);
}

.lr-user-meta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.lr-user-meta--mockup {
    border-left: 1px solid #d8dee8;
    padding-left: 20px;
}

.lr-mockup-shell {
    display: grid;
    grid-template-columns: 40.5% 59.5%;
    min-height: calc(100vh - 80px);
}

.lr-mockup-left {
    padding: 30px;
    background: #eef2f6;
}

.lr-mockup-right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 30px;
    background: #dde3eb;
}

.lr-mockup-stack {
    display: grid;
    gap: 22px;
}

.lr-mockup-dropzone {
    padding: 28px 26px 20px;
    border: 2px dashed #b8c4d8;
    border-radius: 18px;
    background: #fff;
    text-align: center;
    cursor: pointer;
    transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.lr-mockup-dropzone:hover {
    border-color: rgba(0, 102, 204, 0.42);
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.08);
    transform: translateY(-1px);
}

.lr-mockup-dropzone:focus-visible {
    border-color: rgba(0, 102, 204, 0.78);
    box-shadow: 0 0 0 4px rgba(0, 102, 204, 0.12);
    outline: none;
}

.lr-mockup-drop-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 68px;
    height: 68px;
    margin-bottom: 14px;
    border-radius: 16px;
    background: #dbe7ff;
    color: var(--lr-primary);
    font-size: 26px;
    font-weight: 800;
}

.lr-mockup-dropzone h2 {
    margin: 0;
    font-size: 17px;
    font-weight: 700;
}

.lr-mockup-dropzone p {
    margin: 6px 0 0;
    color: var(--lr-text-muted);
    font-size: 12px;
}

.lr-mockup-upload-controls {
    display: grid;
    gap: 10px;
    margin-top: 16px;
}

.lr-mockup-upload-controls input[type="file"] {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #cfd7e4;
    border-radius: 10px;
    background: #fff;
}

.lr-mockup-blank-link {
    margin-top: 12px;
    border: 0;
    background: transparent;
    color: var(--lr-primary);
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
}

.lr-mockup-warning {
    display: flex;
    gap: 14px;
    padding: 18px 20px;
    border: 1px solid #f1b6b0;
    border-radius: 12px;
    background: #fff0ef;
}

.lr-mockup-warning strong {
    display: block;
    margin-bottom: 4px;
    color: var(--lr-error);
}

.lr-mockup-warning p,
.lr-mockup-warning li {
    margin: 0;
    color: #7a3e3a;
    font-size: 13px;
    line-height: 1.6;
}

.lr-mockup-warning ul {
    margin: 8px 0 0 18px;
    padding: 0;
}

.lr-mockup-warning-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    flex: none;
    border-radius: 999px;
    border: 1px solid #f1b6b0;
    color: var(--lr-error);
    background: #fff;
    font-weight: 800;
}

.lr-mockup-card,
.lr-mockup-section {
    padding: 12px 0 0;
}

.lr-mockup-card-head,
.lr-mockup-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
}

.lr-mockup-card-head h3,
.lr-mockup-section-head h3 {
    margin: 0;
    font-size: 14px;
    font-weight: 700;
}

.lr-mockup-badge {
    padding: 5px 10px;
    border-radius: 999px;
    background: #dfeaff;
    color: var(--lr-primary);
    font-size: 11px;
    font-weight: 800;
}

.lr-mockup-steps {
    display: grid;
    gap: 16px;
    padding: 18px 20px;
    border-radius: 14px;
    background: #fff;
    border: 1px solid #dde3eb;
}

.lr-mockup-step {
    display: grid;
    grid-template-columns: 26px 1fr;
    gap: 14px;
}

.lr-mockup-step-dot {
    position: relative;
    width: 26px;
    height: 26px;
    border-radius: 999px;
    border: 2px solid #c3cada;
    background: #fff;
}

.lr-mockup-step-dot.is-done {
    border-color: var(--lr-primary);
    background: #e8f0ff;
}

.lr-mockup-step-dot.is-active {
    border-color: var(--lr-primary);
    box-shadow: 0 0 0 5px rgba(0, 102, 204, 0.08);
}

.lr-mockup-step-dot.is-waiting {
    border-color: #c3cada;
    background: #fff;
}

.lr-mockup-step-dot.is-done::before {
    content: "✓";
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: var(--lr-primary);
    font-size: 14px;
    font-weight: 800;
}

.lr-mockup-step-dot.is-active::before {
    content: "";
    position: absolute;
    inset: 5px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--lr-primary), var(--lr-primary-strong));
    animation: lrPulse 1.1s ease-in-out infinite;
}

.lr-mockup-step.is-done strong {
    color: var(--lr-primary);
}

.lr-mockup-step.is-active strong {
    color: var(--lr-text);
}

.lr-mockup-step.is-waiting strong,
.lr-mockup-step.is-waiting p {
    color: var(--lr-text-muted);
}

.lr-mockup-step strong {
    display: block;
    font-size: 14px;
}

.lr-mockup-step p {
    margin: 4px 0 0;
    color: var(--lr-text-muted);
    font-size: 13px;
    line-height: 1.5;
}

.lr-mockup-confidence {
    color: var(--lr-primary);
    font-size: 11px;
    font-weight: 700;
}

.lr-mockup-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 18px;
}

.lr-mockup-add-link,
.lr-mockup-remove {
    border: 0;
    background: transparent;
    color: var(--lr-primary);
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
}

.lr-mockup-results {
    display: grid;
    gap: 8px;
}

.lr-mockup-group-name {
    color: var(--lr-secondary);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.lr-table--mockup {
    min-width: 100%;
    background: #fff;
    border: 1px solid #dde3eb;
    border-radius: 12px;
    overflow: hidden;
}

.lr-table--mockup thead th {
    background: #f3f6fa;
    font-size: 11px;
}

.lr-preview-frame--mockup {
    flex: 1 1 auto;
    align-items: flex-start;
    padding: 0;
}

.lr-report-sheet {
    width: min(100%, 870px);
}

.lr-mockup-actionbar {
    display: flex;
    justify-content: flex-end;
    gap: 18px;
    margin-top: 18px;
    padding: 14px 18px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 10px 24px rgba(26, 37, 56, 0.14);
}

.lr-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    background: linear-gradient(135deg, #d7e3ff, #c9e6ff);
    border: 2px solid rgba(0, 102, 204, 0.18);
    color: var(--lr-primary);
    font-weight: 800;
}

.lr-shell {
    display: flex;
    min-height: calc(100vh - 72px);
}

.lr-shell--upload {
    align-items: stretch;
    justify-content: center;
    padding: 32px;
}

.lr-upload-layout {
    display: grid;
    grid-template-columns: minmax(340px, 520px) minmax(320px, 1fr);
    gap: 24px;
    width: min(1320px, 100%);
    align-items: stretch;
}

.lr-panel {
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(193, 198, 213, 0.88);
    border-radius: 24px;
    box-shadow: var(--lr-shadow);
}

.lr-panel--editor {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    min-width: 0;
}

.lr-panel--preview {
    display: flex;
    flex-direction: column;
    min-width: 0;
    min-height: 100%;
}

.lr-panel-header {
    padding: 24px 24px 0;
}

.lr-panel-body {
    padding: 24px;
}

.lr-panel-scroll {
    overflow-y: auto;
}

.lr-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(0, 78, 159, 0.08);
    color: var(--lr-primary);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.lr-heading {
    margin: 0;
    font-size: clamp(1.35rem, 2.15vw, 1.75rem);
    line-height: 1.14;
    letter-spacing: -0.03em;
    text-wrap: balance;
}

.lr-subheading {
    margin: 12px 0 0;
    max-width: 52ch;
    font-size: 14px;
    line-height: 1.65;
    color: var(--lr-text-muted);
}

.lr-card {
    padding: 20px;
    border: 1px solid rgba(193, 198, 213, 0.88);
    border-radius: var(--lr-radius-lg);
    background: var(--lr-surface);
    box-shadow: var(--lr-shadow-soft);
}

.lr-card + .lr-card {
    margin-top: 18px;
}

.lr-card-title-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.lr-card-title-row > div:first-child {
    min-width: 0;
    flex: 1 1 240px;
}

.lr-card-title {
    margin: 0;
    font-size: 16px;
    line-height: 1.3;
    font-weight: 700;
}

.lr-card-caption {
    margin: 4px 0 0;
    font-size: 12px;
    line-height: 1.6;
    color: var(--lr-text-muted);
}

.lr-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    background: var(--lr-primary-soft);
    color: var(--lr-primary-soft-text);
    font-size: 11px;
    line-height: 1.25;
    font-weight: 700;
    white-space: nowrap;
    flex: 0 0 auto;
    max-width: 100%;
}

.lr-pill--warn {
    background: var(--lr-warning-soft);
    color: var(--lr-warning);
}

.lr-pill--error {
    background: rgba(255, 218, 214, 0.72);
    color: var(--lr-error);
}

.lr-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: currentColor;
}

.lr-dropzone {
    position: relative;
    border: 2px dashed rgba(114, 119, 132, 0.42);
    border-radius: 18px;
    padding: 28px 24px;
    background:
        linear-gradient(135deg, rgba(215, 227, 255, 0.26), rgba(201, 230, 255, 0.18)),
        var(--lr-surface);
    text-align: center;
}

.lr-dropzone-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 999px;
    margin-bottom: 14px;
    background: linear-gradient(135deg, rgba(170, 199, 255, 0.8), rgba(201, 230, 255, 0.9));
    color: var(--lr-primary);
    font-size: 28px;
    font-weight: 800;
}

.lr-dropzone h3 {
    margin: 0;
    font-size: 18px;
    line-height: 1.3;
}

.lr-dropzone p {
    margin: 8px auto 0;
    max-width: 34ch;
    font-size: 13px;
    color: var(--lr-text-muted);
    line-height: 1.6;
}

.lr-file-input {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}

.lr-file-input input[type="file"] {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--lr-outline);
    border-radius: 12px;
    background: var(--lr-surface);
    color: var(--lr-secondary);
}

.lr-alert {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 16px 18px;
    border-radius: 14px;
    border: 1px solid rgba(186, 26, 26, 0.12);
    background: rgba(255, 218, 214, 0.42);
}

.lr-alert strong {
    display: block;
    margin-bottom: 4px;
}

.lr-alert ul {
    margin: 8px 0 0 18px;
    padding: 0;
}

.lr-flow-list {
    display: grid;
    gap: 16px;
}

.lr-flow-step {
    display: grid;
    grid-template-columns: 28px 1fr;
    gap: 14px;
    align-items: start;
}

.lr-flow-marker {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 999px;
    border: 2px solid rgba(114, 119, 132, 0.22);
    background: var(--lr-surface);
    color: var(--lr-outline-strong);
    font-size: 12px;
    font-weight: 800;
}

.lr-flow-step:not(:last-child) .lr-flow-marker::after {
    content: "";
    position: absolute;
    top: 22px;
    width: 2px;
    height: 34px;
    background: rgba(193, 198, 213, 0.9);
}

.lr-flow-step.is-complete .lr-flow-marker {
    border-color: rgba(0, 102, 204, 0.18);
    background: rgba(0, 78, 159, 0.1);
    color: var(--lr-primary);
}

.lr-flow-step.is-active .lr-flow-marker {
    border-color: var(--lr-primary-strong);
    color: var(--lr-primary-strong);
    box-shadow: 0 0 0 5px rgba(0, 102, 204, 0.1);
}

.lr-flow-step h4,
.lr-process-step h4 {
    margin: 0;
    font-size: 13px;
    line-height: 1.35;
}

.lr-flow-step p,
.lr-process-step p,
.lr-upload-checklist,
.lr-preview-blurb p,
.lr-support-list {
    margin: 4px 0 0;
    font-size: 12px;
    line-height: 1.6;
    color: var(--lr-text-muted);
}

.lr-metric-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.lr-metric {
    padding: 16px;
    border: 1px solid rgba(193, 198, 213, 0.8);
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(242, 244, 246, 0.95));
}

.lr-metric strong {
    display: block;
    margin-top: 6px;
    font-size: 20px;
    font-weight: 800;
}

.lr-metric span {
    font-size: 12px;
    color: var(--lr-text-muted);
}

.lr-editor-shell {
    display: grid;
    grid-template-columns: minmax(360px, 40%) minmax(420px, 1fr);
    width: 100%;
}

.lr-editor-shell--mockup {
    grid-template-columns: minmax(420px, 41%) minmax(520px, 59%);
}

.lr-editor-panel {
    padding: 24px;
    border-right: 1px solid rgba(193, 198, 213, 0.88);
    background: rgba(255, 255, 255, 0.78);
}

.lr-editor-panel--mockup {
    padding: 28px 28px 20px;
    background: #eef2f6;
}

.lr-editor-panel-inner {
    display: flex;
    flex-direction: column;
    gap: 18px;
    height: calc(100vh - 120px);
    overflow-y: auto;
    padding-right: 6px;
}

.lr-editor-panel-inner--mockup {
    gap: 22px;
    padding-right: 2px;
}

.lr-preview-panel {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 24px;
    background: linear-gradient(180deg, rgba(236, 238, 240, 0.85), rgba(247, 249, 251, 0.9));
}

.lr-preview-panel--mockup {
    padding: 30px;
    background: #dde3eb;
}

.lr-preview-panel-inner {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    height: calc(100vh - 120px);
    min-height: 100%;
    overflow-y: auto;
}

.lr-preview-panel-inner--mockup {
    gap: 20px;
}

.lr-upload-card {
    padding: 20px;
    border: 1px solid rgba(193, 198, 213, 0.88);
    border-radius: 16px;
    background: #fff;
    box-shadow: none;
}

.lr-upload-card--drop {
    padding: 0;
    border: 0;
    background: transparent;
}

.lr-upload-card--manual {
    padding: 18px 20px;
}

.lr-upload-dropzone {
    border: 2px dashed #bfc8d8;
    border-radius: 18px;
    background: #fff;
    padding: 38px 24px;
    text-align: center;
}

.lr-upload-dropzone-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    margin-bottom: 16px;
    border-radius: 18px;
    background: #d9e6ff;
    color: var(--lr-primary);
    font-size: 28px;
    font-weight: 800;
}

.lr-upload-dropzone h2 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
}

.lr-upload-dropzone p {
    margin: 8px 0 0;
    color: var(--lr-text-muted);
    font-size: 13px;
}

.lr-upload-actions {
    display: grid;
    gap: 12px;
    margin-top: 18px;
}

.lr-upload-actions input[type="file"] {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--lr-outline);
    border-radius: 12px;
    background: #fff;
}

.lr-inline-action {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.lr-inline-action h3 {
    margin: 0;
    font-size: 15px;
}

.lr-inline-action p {
    margin: 4px 0 0;
    font-size: 12px;
    color: var(--lr-text-muted);
}

.lr-alert--mockup {
    border-color: rgba(186, 26, 26, 0.18);
    background: #fff0ef;
}

.lr-alert-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    flex: none;
    border-radius: 999px;
    color: var(--lr-error);
    border: 1px solid rgba(186, 26, 26, 0.18);
    background: #fff;
    font-weight: 800;
}

.lr-confidence-inline {
    color: var(--lr-primary);
    font-size: 12px;
    font-weight: 700;
}

.lr-group-card--flat {
    border-radius: 12px;
    box-shadow: none;
}

.lr-group-header--flat {
    background: #fff;
}

.lr-add-link {
    border: 0;
    background: transparent;
    color: var(--lr-primary);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
}

.lr-floating-actions-inner--mockup {
    min-width: 560px;
    justify-content: flex-end;
}

.lr-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 14px;
}

.lr-form-grid--single {
    grid-template-columns: 1fr;
}

.lr-field {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.lr-field label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: var(--lr-secondary);
    text-transform: uppercase;
}

.lr-input,
.lr-select,
.lr-text-input {
    width: 100%;
    min-height: 34px;
    padding: 6px 10px;
    border: 1px solid var(--lr-outline);
    border-radius: 9px;
    background: var(--lr-surface);
    color: var(--lr-text);
    font-size: 14px;
    outline: none;
    transition: border-color 160ms ease, box-shadow 160ms ease;
}

.lr-textarea {
    width: 100%;
    min-height: 72px;
    padding: 8px 10px;
    border: 1px solid var(--lr-outline);
    border-radius: 9px;
    background: #fff;
    color: var(--lr-text);
    font-size: 14px;
    resize: vertical;
    outline: none;
    transition: border-color 160ms ease, box-shadow 160ms ease;
}

.lr-input:focus,
.lr-select:focus,
.lr-text-input:focus,
.lr-textarea:focus {
    border-color: rgba(0, 102, 204, 0.7);
    box-shadow: 0 0 0 4px rgba(0, 102, 204, 0.12);
}

.lr-section-stack {
    display: grid;
    gap: 18px;
}

.lr-group-card {
    border: 1px solid rgba(193, 198, 213, 0.88);
    border-radius: 16px;
    overflow: hidden;
    background: var(--lr-surface);
}

.lr-group-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 14px;
    background: rgba(242, 244, 246, 0.85);
    border-bottom: 1px solid rgba(193, 198, 213, 0.88);
}

.lr-group-header h4 {
    margin: 0;
    font-size: 15px;
    font-weight: 700;
}

.lr-table-wrap {
    overflow-x: auto;
}

.lr-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    min-width: 840px;
}

.lr-table thead th {
    padding: 8px 12px;
    background: rgba(230, 232, 234, 0.78);
    color: var(--lr-secondary);
    font-size: 10px;
    font-weight: 800;
    text-align: left;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.lr-table tbody td {
    padding: 8px 12px;
    border-top: 1px solid rgba(193, 198, 213, 0.7);
    vertical-align: middle;
}

.lr-table-row--highlight {
    background: linear-gradient(90deg, rgba(255, 247, 221, 0.82), rgba(255, 255, 255, 0.85));
}

.lr-confidence-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 54px;
    padding: 4px 8px;
    border-radius: 999px;
    background: rgba(0, 86, 124, 0.1);
    color: var(--lr-tertiary);
    font-size: 11px;
    font-weight: 700;
}

.lr-flag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
}

.lr-status-indicator {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--lr-success);
}

.lr-status-indicator.status-high,
.lr-status-indicator.status-abnormal,
.lr-status-indicator.status-critical {
    background: var(--lr-error);
}

.lr-status-indicator.status-low {
    background: var(--lr-warning);
}

.lr-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.lr-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 12px;
    border: 1px solid transparent;
    cursor: pointer;
    text-decoration: none;
    font-size: 13px;
    line-height: 1.2;
    font-weight: 700;
    white-space: nowrap;
    transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.lr-button:hover {
    transform: translateY(-1px);
}

.lr-button--primary {
    color: #fff;
    background: linear-gradient(135deg, var(--lr-primary), var(--lr-primary-strong));
    box-shadow: 0 12px 24px rgba(0, 78, 159, 0.22);
}

.lr-button--secondary {
    color: var(--lr-primary);
    background: var(--lr-surface);
    border-color: rgba(193, 198, 213, 0.92);
}

.lr-button--ghost {
    color: var(--lr-secondary);
    background: rgba(242, 244, 246, 0.7);
    border-color: rgba(193, 198, 213, 0.92);
}

.lr-button:disabled {
    cursor: wait;
    opacity: 0.7;
    transform: none;
}

.lr-floating-actions {
    position: sticky;
    bottom: 18px;
    margin-top: auto;
    display: flex;
    justify-content: flex-end;
    padding-top: 20px;
}

.lr-floating-actions-inner {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 10px;
    border: 1px solid rgba(193, 198, 213, 0.88);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(14px);
    box-shadow: var(--lr-shadow-soft);
}

.lr-preview-frame {
    display: flex;
    justify-content: center;
    padding: 6px 0 32px;
}

.lr-report-sheet {
    width: min(100%, 860px);
    min-height: 1120px;
    padding: 54px 56px 46px;
    border: 1px solid rgba(193, 198, 213, 0.88);
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 24px 60px rgba(29, 39, 54, 0.14);
}

.lr-report-top {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    padding-bottom: 24px;
    margin-bottom: 28px;
    border-bottom: 2px solid rgba(0, 102, 204, 0.18);
}

.lr-report-main-header {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    padding-bottom: 24px;
    margin-bottom: 22px;
    border-bottom: 2px solid rgba(0, 102, 204, 0.18);
}

.lr-report-main-header__brand,
.lr-report-main-header__meta {
    flex: 1 1 0;
}

.lr-report-main-header__meta {
    text-align: right;
}

.lr-report-main-header__meta h1 {
    margin: 0;
    font-size: 14px;
    font-weight: 800;
    color: var(--lr-secondary);
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.lr-report-main-eyebrow {
    margin: 0 0 8px;
    color: var(--lr-primary);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.lr-report-main-cover {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
    gap: 18px;
    margin-bottom: 22px;
}

.lr-report-main-profile,
.lr-report-main-summary,
.lr-report-main-metric,
.lr-report-main-overview-item {
    border: 1px solid rgba(193, 198, 213, 0.88);
    border-radius: 14px;
    background: rgba(242, 244, 246, 0.55);
}

.lr-report-main-profile,
.lr-report-main-summary {
    padding: 18px;
}

.lr-report-main-label {
    display: inline-block;
    margin-bottom: 8px;
    color: var(--lr-primary);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.lr-report-main-profile h2 {
    margin: 0;
    color: var(--lr-primary);
    font-size: 24px;
    line-height: 1.2;
}

.lr-report-main-profile p,
.lr-report-main-summary p {
    margin: 8px 0 0;
    color: var(--lr-text-muted);
    font-size: 13px;
    line-height: 1.6;
}

.lr-report-main-profile dl {
    display: grid;
    gap: 10px;
    margin: 16px 0 0;
}

.lr-report-main-profile dt {
    color: var(--lr-secondary);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.lr-report-main-profile dd {
    margin: 3px 0 0;
    font-size: 14px;
    font-weight: 700;
}

.lr-report-main-alert {
    margin-top: 14px;
    padding: 10px 12px;
    border-radius: 10px;
    background: rgba(255, 218, 214, 0.72);
    color: var(--lr-error);
    font-size: 12px;
    font-weight: 700;
}

.lr-report-main-metrics {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 22px;
}

.lr-report-main-metric {
    padding: 16px;
}

.lr-report-main-metric span {
    display: block;
    color: var(--lr-secondary);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.lr-report-main-metric strong {
    display: block;
    margin-top: 8px;
    color: var(--lr-primary);
    font-size: 24px;
    line-height: 1.1;
}

.lr-report-main-metric small {
    display: block;
    margin-top: 8px;
    color: var(--lr-text-muted);
    font-size: 12px;
    line-height: 1.5;
}

.lr-report-main-section {
    margin-top: 22px;
}

.lr-report-main-section__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.lr-report-main-section__head h3 {
    margin: 0;
    color: var(--lr-primary);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.lr-report-main-section__head span {
    color: var(--lr-text-muted);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.lr-report-main-overview-list {
    display: grid;
    gap: 10px;
}

.lr-report-main-overview-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 16px;
}

.lr-report-main-overview-item strong {
    display: block;
    color: var(--lr-text);
    font-size: 14px;
}

.lr-report-main-overview-item p,
.lr-report-main-overview-item small {
    margin: 4px 0 0;
    color: var(--lr-text-muted);
    font-size: 12px;
}

.lr-report-main-overview-item__meta {
    text-align: right;
}

.lr-report-main-overview-item__meta span {
    display: block;
    color: var(--lr-primary);
    font-size: 13px;
    font-weight: 800;
}

.lr-report-main-section__head--footer {
    margin-bottom: 8px;
}

.lr-report-clinic {
    display: flex;
    gap: 16px;
}

.lr-report-clinic-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 62px;
    flex: none;
    border-radius: 10px;
    background: var(--lr-primary);
    color: #fff;
    font-size: 30px;
    font-weight: 800;
}

.lr-report-clinic h2,
.lr-report-meta h1 {
    margin: 0;
}

.lr-report-clinic h2 {
    font-size: 28px;
    line-height: 1.2;
    color: var(--lr-primary);
}

.lr-report-clinic p,
.lr-report-meta p,
.lr-report-summary p,
.lr-report-footer-copy p {
    margin: 4px 0 0;
    font-size: 13px;
    line-height: 1.6;
    color: var(--lr-text-muted);
}

.lr-report-meta {
    text-align: right;
}

.lr-report-meta h1 {
    font-size: 14px;
    font-weight: 800;
    color: var(--lr-secondary);
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.lr-report-summary {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 34px;
    padding: 18px 20px;
    border: 1px solid rgba(193, 198, 213, 0.88);
    border-radius: 4px;
    background: rgba(242, 244, 246, 0.76);
}

.lr-report-summary strong {
    display: block;
    margin-bottom: 2px;
    font-size: 11px;
    font-weight: 800;
    color: var(--lr-secondary);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.lr-report-summary span {
    font-size: 15px;
    font-weight: 700;
}

.lr-report-results {
    margin-top: 2px;
}

.lr-report-results-table {
    width: 100%;
    border-collapse: collapse;
}

.lr-report-results-table thead th {
    padding: 14px 0 12px;
    border-bottom: 1px solid rgba(25, 28, 30, 0.16);
    font-size: 13px;
    font-weight: 800;
    text-align: left;
    color: var(--lr-text);
}

.lr-report-results-table tbody td {
    padding: 15px 0;
    border-bottom: 1px solid rgba(193, 198, 213, 0.64);
    font-size: 13px;
}

.lr-report-group-row td {
    padding: 14px 0 10px;
    border-bottom: 0;
    color: var(--lr-primary);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.lr-report-results-table tbody tr.is-highlighted {
    background: rgba(255, 218, 214, 0.12);
}

.lr-report-results-table td:last-child,
.lr-report-results-table th:last-child {
    text-align: right;
}

.lr-report-results-table td.flag-high,
.lr-report-results-table td.flag-critical,
.lr-report-results-table td.flag-abnormal {
    color: var(--lr-error);
    font-weight: 800;
}

.lr-report-results-table td.flag-low {
    color: var(--lr-warning);
    font-weight: 800;
}

.lr-report-flag {
    font-size: 12px;
    font-weight: 800;
}

.lr-report-flag.flag-high,
.lr-report-flag.flag-abnormal,
.lr-report-flag.flag-critical {
    color: var(--lr-error);
}

.lr-report-flag.flag-low {
    color: var(--lr-warning);
}

.lr-report-note {
    margin-top: 28px;
    padding: 16px 18px;
    border: 1px dashed rgba(193, 198, 213, 0.92);
    border-radius: 4px;
    background: rgba(242, 244, 246, 0.28);
}

.lr-report-note strong {
    display: block;
    margin-bottom: 6px;
    color: var(--lr-primary);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.lr-report-note p {
    margin: 0;
    font-size: 13px;
    line-height: 1.7;
    color: var(--lr-text-muted);
    font-style: italic;
}

.lr-report-bottom {
    display: flex;
    justify-content: space-between;
    gap: 28px;
    align-items: flex-end;
    margin-top: 28px;
    padding-top: 22px;
    border-top: 1px solid rgba(193, 198, 213, 0.9);
}

.lr-report-signature strong,
.lr-report-footer-copy strong {
    display: block;
    margin-bottom: 6px;
    font-size: 11px;
    font-weight: 800;
    color: var(--lr-secondary);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.lr-signature-mark {
    min-width: 210px;
    margin: 10px 0 8px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(114, 119, 132, 0.5);
    color: var(--lr-primary);
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.lr-report-signature span {
    color: var(--lr-text-muted);
    font-size: 13px;
}

.lr-report-verify {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.lr-report-verify-box {
    display: grid;
    place-items: center;
    width: 94px;
    height: 94px;
    border: 1px solid rgba(193, 198, 213, 0.9);
    border-radius: 14px;
    background: rgba(242, 244, 246, 0.64);
    color: var(--lr-secondary);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.lr-report-verify small {
    color: var(--lr-text-muted);
}

.lr-empty-state {
    padding: 20px;
    border: 1px dashed rgba(193, 198, 213, 0.88);
    border-radius: 16px;
    background: rgba(242, 244, 246, 0.5);
    color: var(--lr-text-muted);
}

.lr-preview-empty-sheet {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 1120px;
    padding: 40px 32px;
    background:
        radial-gradient(circle at top right, rgba(170, 199, 255, 0.18), transparent 28%),
        linear-gradient(180deg, #ffffff, #f7f9fb);
}

.lr-preview-empty {
    width: min(100%, 420px);
    padding: 24px 22px;
    border: 1px dashed rgba(193, 198, 213, 0.92);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 14px 30px rgba(29, 39, 54, 0.06);
    text-align: center;
}

.lr-preview-empty__eyebrow {
    display: inline-flex;
    align-items: center;
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(0, 78, 159, 0.08);
    color: var(--lr-primary);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.lr-preview-empty h2 {
    margin: 14px 0 0;
    color: var(--lr-text);
    font-size: 20px;
    line-height: 1.2;
    letter-spacing: -0.03em;
}

.lr-preview-empty > p {
    margin: 10px 0 0;
    color: var(--lr-text-muted);
    font-size: 13px;
    line-height: 1.5;
}

.lr-preview-document {
    display: grid;
    gap: 24px;
    width: 100%;
}

.lr-wellness-page {
    border-radius: 6px;
    padding: 38px 40px 34px;
}

.lr-wellness-page--cover {
    min-height: 1140px;
    padding: 0;
    overflow: hidden;
}

.lr-wellness-cover-board {
    min-height: 1140px;
    display: grid;
    grid-template-rows: 98px 1fr 106px 118px 128px;
    background: #fff;
}

.lr-wellness-cover-logos {
    display: grid;
    grid-template-columns: 1fr 140px 1fr;
    align-items: center;
    gap: 20px;
    padding: 18px 28px 14px;
    border-bottom: 1px solid #c8d5ea;
}

.lr-wellness-cover-logo {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lr-wellness-brand-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.lr-wellness-cover-logo--word {
    height: 44px;
    gap: 4px;
    color: #2d5aa8;
    font-size: 24px;
    font-weight: 800;
}

.lr-wellness-cover-logo--word span {
    color: #c8c8c8;
    font-weight: 700;
}

.lr-wellness-cover-logo--word em {
    font-style: normal;
    color: #005bb1;
}

.lr-wellness-cover-logo--right {
    justify-content: flex-end;
    flex-direction: column;
    gap: 0;
}

.lr-wellness-cover-logo--right strong {
    font-size: 24px;
    color: #2d6cc3;
}

.lr-wellness-cover-logo--right small {
    color: #5a8cc7;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.lr-wellness-cover-seal {
    width: 76px;
    height: 76px;
    border-radius: 999px;
    background:
        radial-gradient(circle at center, #f3d13e 0 14px, transparent 15px),
        linear-gradient(90deg, transparent 0 22px, #0b8c44 22px 27px, transparent 27px 49px, #0b8c44 49px 54px, transparent 54px),
        linear-gradient(0deg, transparent 0 22px, #0b8c44 22px 27px, transparent 27px 49px, #0b8c44 49px 54px, transparent 54px),
        conic-gradient(from 0deg, #d42323 0 25%, transparent 25% 50%, #d42323 50% 75%, transparent 75% 100%);
}

.lr-wellness-cover-hero {
    position: relative;
    background: #2456a6;
    overflow: hidden;
}

.lr-wellness-cover-hero__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.lr-wellness-cover-titleband {
    background: linear-gradient(180deg, #5ea4dc, #64a7dd);
    color: #fff;
    text-align: center;
    padding: 18px 24px 16px;
}

.lr-wellness-cover-titleband p {
    margin: 0;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.22em;
}

.lr-wellness-cover-titleband h1 {
    margin: 6px 0 0;
    font-size: 58px;
    line-height: 0.98;
    letter-spacing: -0.05em;
}

.lr-wellness-cover-details {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 24px;
    padding: 18px 22px 12px;
}

.lr-wellness-cover-details__left span,
.lr-wellness-cover-details__right span,
.lr-wellness-cover-footerbar__bottom span,
.lr-wellness-masthead span,
.lr-wellness-ribbon span,
.lr-wellness-preventive-item span,
.lr-wellness-cover-processed span {
    display: block;
    color: #5a5a5a;
    font-size: 11px;
    font-weight: 500;
}

.lr-wellness-cover-details__left h2 {
    margin: 6px 0 2px;
    color: #343434;
    font-size: 24px;
    line-height: 1.1;
    font-weight: 800;
}

.lr-wellness-cover-details__left p {
    margin: 0;
    color: #5a5a5a;
    font-size: 12px;
}

.lr-wellness-cover-details__right {
    display: grid;
    gap: 6px;
    align-content: start;
}

.lr-wellness-cover-details__right div {
    display: grid;
    grid-template-columns: 112px 1fr;
    gap: 10px;
    align-items: baseline;
}

.lr-wellness-cover-details__right strong {
    color: #555;
    font-size: 13px;
    font-weight: 500;
}

.lr-wellness-cover-footerbar {
    padding: 8px 22px 10px;
    border-top: 1px solid #e3e3e3;
    display: grid;
    grid-template-rows: 1fr auto;
    gap: 6px;
}

.lr-wellness-cover-footerbar__top {
    display: grid;
    grid-template-columns: 170px 1fr;
    gap: 16px;
    align-items: end;
}

.lr-wellness-cover-mini-logos {
    display: flex;
    gap: 6px;
    margin-top: 6px;
}

.lr-wellness-cover-mini-logo {
    width: 40px;
    height: 24px;
    border: 1px solid #ccd7ea;
    background: #f8fbff;
    color: #4470b6;
    display: grid;
    place-items: center;
    font-size: 8px;
    font-weight: 700;
}

.lr-wellness-cover-doctors {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.lr-wellness-cover-doctors strong {
    display: block;
    margin-top: 4px;
    color: #1f3f76;
    font-size: 10px;
    line-height: 1.2;
}

.lr-wellness-cover-sign {
    width: 100%;
    height: 18px;
    border-bottom: 1px solid #d3dbe8;
    color: #6d83aa;
    display: grid;
    place-items: center;
    font-size: 8px;
    font-style: italic;
}

.lr-wellness-cover-footerbar__bottom {
    display: grid;
    grid-template-columns: 1.8fr 1.4fr auto;
    gap: 12px;
    align-items: center;
}

.lr-wellness-cover-footerbar__bottom span:nth-child(2) {
    color: #2e72bf;
    text-align: center;
}

.lr-wellness-cover-footerbar__bottom span:last-child {
    text-align: right;
}

.lr-wellness-masthead,
.lr-wellness-ribbon {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px 18px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(193, 198, 213, 0.88);
}

.lr-wellness-masthead__meta,
.lr-wellness-masthead__timing {
    display: grid;
    gap: 6px;
}

.lr-wellness-masthead {
    grid-template-columns: 1fr 1fr;
}

.lr-wellness-intro,
.lr-wellness-summary,
.lr-wellness-topics,
.lr-wellness-parameter,
.lr-wellness-guidance,
.lr-wellness-preventive {
    padding-top: 22px;
}

.lr-wellness-intro__patient {
    display: grid;
    gap: 8px;
    padding: 18px;
    border: 1px solid rgba(193, 198, 213, 0.88);
    border-radius: 8px;
    background: rgba(244, 247, 251, 0.82);
}

.lr-wellness-intro__body h2,
.lr-wellness-summary h2,
.lr-wellness-topics h2,
.lr-wellness-parameter h2,
.lr-wellness-guidance h2,
.lr-wellness-preventive h2 {
    margin: 22px 0 0;
    font-size: 28px;
    line-height: 1.12;
}

.lr-wellness-intro__body h3 {
    margin: 18px 0 0;
    font-size: 18px;
}

.lr-wellness-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 16px;
}

.lr-wellness-info-card,
.lr-wellness-copy-card,
.lr-wellness-guidance-card,
.lr-wellness-guidance-list article,
.lr-wellness-preventive-item {
    padding: 16px 18px;
    border: 1px solid rgba(193, 198, 213, 0.88);
    border-radius: 8px;
    background: rgba(248, 250, 252, 0.94);
}

.lr-wellness-info-card strong,
.lr-wellness-copy-card strong,
.lr-wellness-guidance-card strong,
.lr-wellness-guidance-list strong,
.lr-wellness-preventive-item strong {
    display: block;
    font-size: 14px;
}

.lr-wellness-topics-card {
    margin-top: 18px;
    border: 1px solid rgba(193, 198, 213, 0.88);
    border-radius: 8px;
    overflow: hidden;
}

.lr-wellness-topics-sheet {
    min-height: 1140px;
    display: grid;
    grid-template-rows: auto 1fr auto;
}

.lr-wellness-summary-sheet {
    min-height: 1140px;
    display: grid;
    grid-template-rows: auto auto 1fr auto auto;
}

.lr-wellness-parameter-sheet {
    min-height: 1140px;
    display: flex;
    flex-direction: column;
}

.lr-wellness-guidance-sheet {
    min-height: 1140px;
    display: flex;
    flex-direction: column;
}

.lr-wellness-guidance-sheet .lr-wellness-intro-footer {
    margin-top: auto;
    padding-top: 12px;
}

.lr-wellness-followup-sheet {
    min-height: 1140px;
    display: flex;
    flex-direction: column;
}

.lr-wellness-followup-sheet .lr-wellness-intro-footer {
    margin-top: auto;
    padding-top: 12px;
}

.lr-wellness-ribbon--pills {
    grid-template-columns: repeat(3, max-content);
    gap: 10px;
    padding-bottom: 0;
    border-bottom: 0;
    justify-content: start;
}

.lr-wellness-ribbon--pills > div {
    min-width: 188px;
    padding: 7px 14px;
    border: 1.5px solid #4d79c1;
    border-radius: 999px;
    background: #fff;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 8px;
    align-items: center;
}

.lr-wellness-ribbon--pills > div:last-child {
    min-width: 120px;
}

.lr-wellness-ribbon--pills span,
.lr-wellness-ribbon--pills strong {
    display: inline;
    margin: 0;
    font-size: 11px;
    line-height: 1.1;
}

.lr-wellness-ribbon--pills span {
    color: #2d5aa8;
    font-weight: 700;
}

.lr-wellness-ribbon--pills strong {
    color: #5b5b5b;
    font-weight: 500;
}

.lr-wellness-topics-layout {
    padding: 34px 28px 0;
}

.lr-wellness-summary-hero {
    padding: 30px 34px 0;
}

.lr-wellness-guidance-hero {
    display: grid;
    grid-template-columns: 330px 1fr;
    gap: 26px;
    align-items: center;
    padding: 24px 14px 10px 14px;
}

.lr-wellness-guidance-hero__photo {
    position: relative;
    width: 322px;
    height: 176px;
    overflow: hidden;
    background: linear-gradient(180deg, #ffffff, #f2f2f2);
}

.lr-wellness-guidance-hero__person {
    position: absolute;
    bottom: -8px;
    border-radius: 999px 999px 0 0;
    background: linear-gradient(180deg, #f0dfd1, #c7ae9e);
}

.lr-wellness-guidance-hero__person--one {
    left: 8px;
    width: 88px;
    height: 136px;
}

.lr-wellness-guidance-hero__person--two {
    left: 72px;
    width: 74px;
    height: 108px;
}

.lr-wellness-guidance-hero__person--three {
    left: 122px;
    width: 82px;
    height: 124px;
}

.lr-wellness-guidance-hero__person--four {
    left: 190px;
    width: 70px;
    height: 156px;
    background: linear-gradient(180deg, #3e5f95, #23467e);
}

.lr-wellness-guidance-hero__person--five {
    right: 10px;
    width: 92px;
    height: 146px;
}

.lr-wellness-guidance-hero__title h2,
.lr-wellness-guidance-hero__title h3 {
    margin: 0;
    color: #2d5aa8;
    font-size: 64px;
    line-height: 0.9;
    letter-spacing: -0.06em;
}

.lr-wellness-guidance-hero__title h3 {
    color: #5aa5e0;
}

.lr-wellness-guidance-block {
    margin-top: 8px;
}

.lr-wellness-guidance-block__title {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 0 8px 0;
    color: #2d5aa8;
    font-size: 22px;
    font-weight: 800;
}

.lr-wellness-guidance-block__icon {
    width: 28px;
    height: 28px;
    border: 1px solid #d2d9ea;
    background: #f8fbff;
    display: inline-block;
    position: relative;
}

.lr-wellness-guidance-block__icon--nutrition::before,
.lr-wellness-guidance-block__icon--lifestyle::before {
    content: "";
    position: absolute;
    inset: 6px;
    background: linear-gradient(135deg, #ffc788, #f36a21);
}

.lr-wellness-guidance-block__icon--lifestyle::before {
    background: linear-gradient(135deg, #c8d8ff, #8db3f0);
}

.lr-wellness-guidance-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid #eef2f7;
}

.lr-wellness-guidance-column {
    min-height: 178px;
    padding: 12px 14px 12px 16px;
}

.lr-wellness-guidance-column--do {
    background: #dff0fb;
}

.lr-wellness-guidance-column--dont {
    background: #f8f8f8;
}

.lr-wellness-guidance-column h4 {
    margin: 0 0 8px;
    font-size: 16px;
}

.lr-wellness-guidance-column--do h4 {
    color: #17a04f;
}

.lr-wellness-guidance-column--dont h4 {
    color: #ff4545;
}

.lr-wellness-guidance-column ul {
    display: grid;
    gap: 6px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.lr-wellness-guidance-column li {
    position: relative;
    padding-left: 22px;
    color: #4f4f4f;
    font-size: 12px;
    line-height: 1.28;
}

.lr-wellness-guidance-column li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #17a04f;
    font-weight: 800;
}

.lr-wellness-guidance-column--dont li::before {
    content: "⊗";
    color: #ff4545;
}

.lr-wellness-followup-block {
    margin-top: 12px;
}

.lr-wellness-followup-block__title {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #2d5aa8;
    font-size: 22px;
    font-weight: 800;
}

.lr-wellness-followup-block__icon {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    display: inline-block;
    position: relative;
}

.lr-wellness-followup-block__icon--activity {
    background: linear-gradient(135deg, #65d4df, #23acc2);
}

.lr-wellness-followup-block__icon--diet {
    background: linear-gradient(135deg, #ff8b92, #ec5963);
}

.lr-wellness-followup-block__icon--stress {
    background: linear-gradient(135deg, #9ce8ff, #40b7e9);
}

.lr-wellness-followup-block__icon--tests {
    background: linear-gradient(135deg, #d2d7df, #9aa6b6);
}

.lr-wellness-followup-list {
    display: grid;
    gap: 6px;
    margin: 10px 0 0;
    padding: 0;
    list-style: none;
}

.lr-wellness-followup-list li {
    position: relative;
    padding-left: 30px;
    color: #4f4f4f;
    font-size: 12px;
    line-height: 1.3;
}

.lr-wellness-followup-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #16a250;
    font-weight: 800;
    font-size: 18px;
    line-height: 1;
}

.lr-wellness-followup-table {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    margin-top: 12px;
}

.lr-wellness-followup-table__tests,
.lr-wellness-followup-table__freq {
    display: grid;
    gap: 4px;
    padding: 12px 18px;
    font-size: 12px;
    line-height: 1.25;
}

.lr-wellness-followup-table__tests {
    background: #dff0fb;
    color: #4f4f4f;
}

.lr-wellness-followup-table__freq {
    background: #f8f8f8;
    color: #5b5b5b;
}

.lr-wellness-summary-hero h2 {
    margin: 0;
    color: #2d5aa8;
    font-size: 58px;
    line-height: 0.98;
    letter-spacing: -0.05em;
}

.lr-wellness-summary-hero p {
    margin: 6px 0 0;
    color: #7a7a7a;
    font-size: 15px;
}

.lr-wellness-summary-map {
    display: grid;
    grid-template-columns: 1.02fr 0.98fr;
    gap: 18px;
    padding: 12px 44px 0 44px;
    align-items: center;
}

.lr-wellness-summary-body {
    position: relative;
    width: 250px;
    height: 470px;
    margin: 0 auto;
    overflow: hidden;
    display: grid;
    place-items: center;
}

.lr-wellness-summary-body__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
}

.lr-wellness-summary-list {
    display: grid;
    gap: 18px;
    padding-top: 10px;
}

.lr-wellness-summary-item {
    display: grid;
    grid-template-columns: 16px 1fr;
    gap: 16px;
    align-items: center;
    color: #696969;
    font-size: 15px;
}

.lr-wellness-summary-item__dot {
    width: 14px;
    height: 14px;
    display: block;
}

.lr-wellness-summary-legend {
    display: flex;
    justify-content: center;
    gap: 34px;
    padding: 10px 0 6px;
}

.lr-wellness-summary-legend div {
    display: flex;
    align-items: center;
    gap: 9px;
}

.lr-wellness-summary-legend span {
    width: 14px;
    height: 14px;
    border-radius: 3px;
    display: block;
}

.lr-wellness-summary-legend strong {
    color: #6b6b6b;
    font-size: 11px;
    font-weight: 500;
}

.lr-wellness-parameter-title {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 12px;
    align-items: center;
    padding: 28px 24px 10px;
}

.lr-wellness-parameter-title__mark {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background:
        radial-gradient(circle at 44px 10px, #6fb9ff 0 5px, transparent 6px),
        radial-gradient(circle at 20px 16px, #5aa5e0 0 8px, transparent 9px),
        linear-gradient(0deg, transparent 0 22px, #2d5aa8 22px 36px, transparent 36px),
        linear-gradient(90deg, transparent 0 22px, #2d5aa8 22px 36px, transparent 36px),
        radial-gradient(circle at 29px 29px, #fff 0 11px, #2d5aa8 11px 15px, transparent 16px);
}

.lr-wellness-parameter-title h2 {
    margin: 0;
    color: #2d5aa8;
    font-size: 58px;
    line-height: 0.98;
    letter-spacing: -0.05em;
}

.lr-wellness-parameter-title p {
    margin: 4px 0 0;
    color: #7a7a7a;
    font-size: 17px;
}

.lr-wellness-parameter-banner {
    display: inline-grid;
    grid-template-columns: 30px 1fr;
    gap: 10px;
    align-items: center;
    min-width: 210px;
    margin: 22px 0 12px 26px;
    padding: 3px 14px 3px 6px;
    background: var(--lr-param-accent, #ed1c24);
    color: #fff;
}

.lr-wellness-parameter-banner__icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    position: relative;
}

.lr-wellness-parameter-banner__icon::before {
    content: "";
    position: absolute;
    inset: 5px;
    border-radius: 50%;
    background: #fff;
    opacity: 0.22;
}

.lr-wellness-parameter-banner strong {
    font-size: 14px;
    line-height: 1.1;
    font-weight: 800;
}

.lr-wellness-parameter-cards {
    display: grid;
    gap: 10px;
    padding: 0 24px;
    align-content: start;
}

.lr-wellness-parameter-row {
    display: grid;
    gap: 8px;
}

.lr-wellness-parameter-row--single {
    grid-template-columns: 1fr;
}

.lr-wellness-parameter-row--double {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.lr-wellness-parameter-block {
    display: grid;
    grid-template-columns: 158px 1fr;
    gap: 0;
    background: #f7f7f7;
}

.lr-wellness-parameter-block__value {
    padding: 16px 16px 12px;
    background: #dff0fb;
}

.lr-wellness-parameter-block__value > span {
    display: block;
    color: #6f6f6f;
    font-size: 12px;
}

.lr-wellness-parameter-block__metric {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    margin-top: 8px;
}

.lr-wellness-parameter-block__metric strong {
    font-size: 28px;
    line-height: 1;
    font-weight: 800;
}

.lr-wellness-parameter-block__metric em {
    color: #555;
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
}

.lr-wellness-parameter-block__status {
    margin-top: 8px;
    font-size: 12px;
    font-weight: 800;
}

.lr-wellness-parameter-block__value dl {
    display: grid;
    gap: 6px;
    margin: 14px 0 0;
}

.lr-wellness-parameter-block__value dl div {
    display: grid;
    gap: 2px;
}

.lr-wellness-parameter-block__value dt {
    color: #747474;
    font-size: 10px;
    font-weight: 700;
}

.lr-wellness-parameter-block__value dd {
    margin: 0;
    color: #4f4f4f;
    font-size: 10px;
    line-height: 1.3;
}

.lr-wellness-parameter-block__copy {
    padding: 14px 16px 12px;
    background: #f8f8f8;
}

.lr-wellness-parameter-block__copy h3 {
    margin: 0;
    color: #1b56b2;
    font-size: 15px;
    line-height: 1.15;
}

.lr-wellness-parameter-block__copy h4 {
    margin: 10px 0 2px;
    color: #1b56b2;
    font-size: 12px;
    line-height: 1.15;
}

.lr-wellness-parameter-block__copy p {
    margin: 2px 0 0;
    color: #4d4d4d;
    font-size: 11px;
    line-height: 1.35;
}

.lr-wellness-parameter-notes {
    display: grid;
    gap: 10px;
    padding: 12px 26px 0;
}

.lr-wellness-parameter-sheet .lr-wellness-summary-legend {
    margin-top: auto;
}

.lr-wellness-parameter-sheet .lr-wellness-intro-footer {
    padding-top: 10px;
}

.lr-wellness-parameter-notes div {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 10px;
    align-items: start;
}

.lr-wellness-parameter-notes strong {
    color: #1b56b2;
    font-size: 13px;
}

.lr-wellness-parameter-notes span {
    color: #444;
    font-size: 11px;
    line-height: 1.35;
}

.lr-wellness-topics-brand__icon {
    width: 90px;
    height: 90px;
    background:
        radial-gradient(circle at 64px 14px, #6fb9ff 0 6px, transparent 7px),
        radial-gradient(circle at 44px 8px, #7bbcff 0 8px, transparent 9px),
        radial-gradient(circle at 74px 42px, #173f8f 0 5px, transparent 6px),
        linear-gradient(135deg, transparent 0 26px, #2d5aa8 26px 30px, transparent 30px),
        linear-gradient(45deg, transparent 0 31px, #55a4e6 31px 35px, transparent 35px),
        radial-gradient(circle at 42px 44px, #ffffff 0 14px, #2d5aa8 14px 19px, transparent 20px),
        linear-gradient(0deg, transparent 0 33px, #5aa5e0 33px 57px, transparent 57px),
        linear-gradient(90deg, transparent 0 33px, #5aa5e0 33px 57px, transparent 57px);
    background-repeat: no-repeat;
}

.lr-wellness-topics-layout h2 {
    margin: 12px 0 0;
    color: #2d5aa8;
    font-size: 44px;
    line-height: 1;
    letter-spacing: -0.04em;
}

.lr-wellness-topics-layout p {
    margin: 4px 0 0;
    color: #7a7a7a;
    font-size: 13px;
}

.lr-wellness-topics-content {
    display: grid;
    grid-template-columns: 106px 1fr;
    gap: 56px;
    margin-top: 18px;
    align-items: start;
}

.lr-wellness-topics-image {
    height: 324px;
    background:
        linear-gradient(rgba(20, 28, 42, 0.28), rgba(20, 28, 42, 0.28)),
        url("/pdf-assets/lab-footer.jpg");
    background-size: cover;
    background-position: center;
    filter: grayscale(100%);
}

.lr-wellness-topics-list {
    padding-top: 18px;
}

.lr-wellness-topics-head--plain {
    padding: 0 0 10px;
    background: transparent;
    border-bottom: 0;
}

.lr-wellness-topic-row--icon {
    grid-template-columns: 1fr 56px;
    padding: 14px 0;
    border-top: 0;
}

.lr-wellness-topic-row--icon + .lr-wellness-topic-row--icon {
    border-top: 0;
}

.lr-wellness-topic-row__label {
    display: flex;
    align-items: center;
    gap: 20px;
}

.lr-wellness-topic-row__label > span:last-child {
    color: #202020;
    font-size: 14px;
}

.lr-wellness-topic-row--icon strong {
    color: #202020;
    font-size: 14px;
    font-weight: 500;
}

.lr-wellness-topic-icon {
    width: 16px;
    height: 22px;
    border: 1.5px solid #4d79c1;
    border-radius: 2px;
    position: relative;
}

.lr-wellness-topic-icon::before,
.lr-wellness-topic-icon::after {
    content: "";
    position: absolute;
    left: 3px;
    right: 3px;
    border-top: 1px solid #4d79c1;
}

.lr-wellness-topic-icon::before {
    top: 7px;
}

.lr-wellness-topic-icon::after {
    top: 12px;
}

.lr-wellness-topics-head,
.lr-wellness-topic-row,
.lr-wellness-important-list__head,
.lr-wellness-important-row {
    display: grid;
    grid-template-columns: 1fr 100px;
    gap: 16px;
    align-items: center;
    padding: 14px 18px;
}

.lr-wellness-topics-head,
.lr-wellness-important-list__head {
    background: rgba(234, 241, 250, 0.82);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.lr-wellness-topic-row + .lr-wellness-topic-row,
.lr-wellness-important-row + .lr-wellness-important-row {
    border-top: 1px solid rgba(193, 198, 213, 0.88);
}

.lr-wellness-pill-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.lr-wellness-pill {
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid rgba(193, 198, 213, 0.88);
    background: #fff;
    font-size: 12px;
    font-weight: 700;
}

.lr-wellness-pill.is-normal,
.lr-wellness-legend .is-normal {
    color: var(--lr-success);
}

.lr-wellness-pill.is-alert,
.lr-wellness-legend .is-alert {
    color: var(--lr-error);
}

.lr-wellness-legend .is-borderline {
    color: var(--lr-warning);
}

.lr-wellness-legend .is-critical {
    color: #7a1e1e;
}

.lr-wellness-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 16px;
    font-size: 12px;
    font-weight: 700;
}

.lr-wellness-chart-demo {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-top: 20px;
}

.lr-wellness-chart-demo div {
    min-height: 140px;
    border-radius: 10px;
    background: linear-gradient(180deg, rgba(215, 227, 255, 0.82), rgba(244, 247, 251, 0.92));
    border: 1px dashed rgba(31, 92, 170, 0.32);
}

.lr-wellness-important-list {
    margin-top: 20px;
    border: 1px solid rgba(193, 198, 213, 0.88);
    border-radius: 8px;
    overflow: hidden;
}

.lr-wellness-parameter-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 20px;
}

.lr-wellness-parameter-card {
    padding: 18px;
    border: 1px solid rgba(193, 198, 213, 0.88);
    border-radius: 10px;
    background: rgba(248, 250, 252, 0.94);
}

.lr-wellness-parameter-card.is-alert {
    background: rgba(255, 240, 239, 0.8);
    border-color: rgba(186, 26, 26, 0.2);
}

.lr-wellness-parameter-card header {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 12px;
}

.lr-wellness-parameter-card header strong {
    font-size: 15px;
}

.lr-wellness-parameter-card header span {
    color: var(--lr-primary);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.lr-wellness-parameter-value {
    margin-top: 12px;
    font-size: 34px;
    font-weight: 800;
    line-height: 1;
}

.lr-wellness-parameter-card p {
    margin: 8px 0 0;
    color: var(--lr-text-muted);
    font-size: 12px;
}

.lr-wellness-copy-grid,
.lr-wellness-guidance-list,
.lr-wellness-preventive-list {
    display: grid;
    gap: 14px;
    margin-top: 18px;
}

.lr-wellness-copy-card--wide {
    grid-column: 1 / -1;
}

.lr-wellness-closing {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 24px;
    padding-top: 18px;
    border-top: 1px solid rgba(193, 198, 213, 0.88);
}

.lr-wellness-intro-sheet {
    min-height: 1140px;
    display: grid;
    grid-template-rows: 54px 22px 78px 12px 192px 1fr 92px;
    padding: 16px 18px 0;
}

.lr-wellness-intro-toplogos {
    display: grid;
    grid-template-columns: 1fr 72px 1fr;
    align-items: center;
    justify-items: center;
    padding: 0 34px 0 250px;
}

.lr-wellness-intro-toplogos .lr-wellness-cover-logo--word {
    font-size: 20px;
}

.lr-wellness-intro-toplogos .lr-wellness-cover-logo--right strong {
    font-size: 19px;
}

.lr-wellness-intro-toplogos .lr-wellness-cover-seal {
    width: 52px;
    height: 52px;
}

.lr-wellness-intro-banner {
    width: 262px;
    padding: 4px 14px;
    background: #2d5aa8;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.15;
}

.lr-wellness-intro-meta {
    display: grid;
    grid-template-columns: 1fr 1fr 1.2fr;
    gap: 20px;
    padding: 8px 36px 0 36px;
    align-items: start;
}

.lr-wellness-intro-meta__group {
    display: grid;
    gap: 1px;
    align-content: start;
}

.lr-wellness-intro-meta__group div {
    display: grid;
    grid-template-columns: 62px 1fr;
    gap: 6px;
    align-items: start;
    min-height: 16px;
}

.lr-wellness-intro-meta__group span {
    color: #5f5f5f;
    font-size: 10px;
}

.lr-wellness-intro-meta__group strong {
    color: #4a4a4a;
    font-size: 10px;
    font-weight: 500;
    line-height: 1.25;
    overflow-wrap: anywhere;
}

.lr-wellness-intro-divider {
    border-top: 3px solid #2d5aa8;
    margin-top: 8px;
}

.lr-wellness-intro-family {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 2px;
}

.lr-wellness-intro-family__photo {
    position: relative;
    width: 448px;
    height: 152px;
    overflow: hidden;
    background: linear-gradient(180deg, #ffffff, #f0f0f0);
}

.lr-wellness-intro-family__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 28%;
}

.lr-wellness-intro-content {
    padding: 14px 48px 0;
    text-align: left;
}

.lr-wellness-intro-content h2 {
    margin: 0;
    color: #2d5aa8;
    font-size: 58px;
    line-height: 0.95;
    letter-spacing: -0.05em;
    text-align: center;
}

.lr-wellness-intro-subtitle {
    margin: 2px 0 0;
    color: #5a8cc7;
    font-size: 24px;
    text-align: center;
}

.lr-wellness-intro-content h3 {
    margin: 8px 0 4px;
    color: #2d5aa8;
    font-size: 18px;
}

.lr-wellness-intro-lead {
    margin: 0 0 10px;
    color: #2d5aa8;
    font-size: 14px;
    line-height: 1.45;
}

.lr-wellness-intro-copy {
    display: grid;
    gap: 10px;
}

.lr-wellness-intro-copy p {
    margin: 0;
    color: #2d2d2d;
    font-size: 12px;
    line-height: 1.45;
}

.lr-wellness-intro-copy strong {
    color: #121212;
}

.lr-wellness-intro-alert {
    margin-top: 14px;
    color: #2d5aa8;
    font-size: 18px;
    font-weight: 800;
}

.lr-wellness-intro-alert::before {
    content: "!";
    display: inline-grid;
    place-items: center;
    width: 26px;
    height: 26px;
    margin-right: 8px;
    border-radius: 999px;
    border: 2px solid #4d79c1;
    color: #4d79c1;
    font-size: 18px;
    vertical-align: middle;
}

.lr-wellness-intro-footer {
    padding-top: 6px;
    border-top: 0;
}

.lr-is-busy {
    overflow: hidden;
}

.lr-loading-overlay {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: grid;
    place-items: center;
    padding: 24px;
    background: rgba(18, 28, 43, 0.52);
    backdrop-filter: blur(8px);
}

.lr-loading-overlay[hidden] {
    display: none;
}

.lr-loading-modal {
    width: min(100%, 460px);
    padding: 28px 28px 24px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 28px 70px rgba(8, 20, 39, 0.28);
}

.lr-loading-modal h3 {
    margin: 0 0 8px;
    font-size: 22px;
    line-height: 1.2;
}

.lr-loading-modal p {
    margin: 0;
    color: var(--lr-text-muted);
    font-size: 14px;
    line-height: 1.6;
}

.lr-loading-spinner {
    width: 54px;
    height: 54px;
    margin-bottom: 18px;
    border: 4px solid rgba(0, 78, 159, 0.12);
    border-top-color: var(--lr-primary);
    border-radius: 999px;
    animation: lrSpin 0.9s linear infinite;
}

.lr-loading-steps {
    display: grid;
    gap: 12px;
    margin-top: 22px;
}

.lr-loading-step {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 14px;
    color: var(--lr-text-muted);
    background: rgba(242, 244, 246, 0.82);
}

.lr-loading-step-dot {
    position: relative;
    width: 22px;
    height: 22px;
    border-radius: 999px;
    border: 2px solid #c3cada;
    background: #fff;
    flex: none;
}

.lr-loading-step.is-active {
    color: var(--lr-text);
    background: rgba(215, 227, 255, 0.48);
}

.lr-loading-step.is-active .lr-loading-step-dot {
    border-color: var(--lr-primary);
    box-shadow: 0 0 0 4px rgba(0, 102, 204, 0.08);
}

.lr-loading-step.is-active .lr-loading-step-dot::before {
    content: "";
    position: absolute;
    inset: 4px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--lr-primary), var(--lr-primary-strong));
    animation: lrPulse 1.1s ease-in-out infinite;
}

.lr-loading-step.is-done {
    color: var(--lr-primary-soft-text);
    background: rgba(215, 227, 255, 0.42);
}

.lr-loading-step.is-done .lr-loading-step-dot {
    border-color: var(--lr-primary);
    background: #e8f0ff;
}

.lr-loading-step.is-done .lr-loading-step-dot::before {
    content: "✓";
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: var(--lr-primary);
    font-size: 13px;
    font-weight: 800;
}

@keyframes lrSpin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes lrPulse {
    0%,
    100% {
        transform: scale(0.84);
        opacity: 0.78;
    }

    50% {
        transform: scale(1);
        opacity: 1;
    }
}

@media (max-width: 1200px) {
    .lr-mockup-shell,
    .lr-upload-layout,
    .lr-editor-shell {
        grid-template-columns: 1fr;
    }

    .lr-editor-panel {
        border-right: 0;
        border-bottom: 1px solid rgba(193, 198, 213, 0.88);
    }

    .lr-editor-panel-inner,
    .lr-preview-panel-inner {
        height: auto;
        min-height: 0;
        overflow: visible;
    }
}

@media (max-width: 900px) {
    .lr-mockup-left,
    .lr-mockup-right {
        padding: 18px;
    }

    .lr-mockup-grid {
        grid-template-columns: 1fr;
    }

    .lr-mockup-actionbar {
        flex-wrap: wrap;
        justify-content: stretch;
    }

    .lr-mockup-actionbar > * {
        flex: 1 1 180px;
    }

    .lr-topbar {
        padding: 0 18px;
    }

    .lr-topbar-search {
        display: none;
    }

    .lr-shell--upload,
    .lr-preview-panel,
    .lr-editor-panel {
        padding: 18px;
    }

    .lr-panel-body,
    .lr-panel-header {
        padding-left: 18px;
        padding-right: 18px;
    }

    .lr-form-grid,
    .lr-report-summary,
    .lr-metric-grid {
        grid-template-columns: 1fr;
    }

    .lr-report-top,
    .lr-report-main-header,
    .lr-report-main-cover,
    .lr-report-bottom {
        flex-direction: column;
        align-items: stretch;
    }

    .lr-report-meta,
    .lr-report-main-header__meta {
        text-align: left;
    }

    .lr-report-main-metrics {
        grid-template-columns: 1fr;
    }

    .lr-floating-actions {
        position: static;
    }

    .lr-floating-actions-inner {
        width: 100%;
        justify-content: stretch;
        flex-wrap: wrap;
    }

    .lr-floating-actions-inner > * {
        flex: 1 1 180px;
    }
}
