:root {
    --brand: #0044d9;
    --brand-light: rgba(0, 68, 217, 0.08);
    --brand-medium: rgba(0, 68, 217, 0.15);
    --brand-dark: #003bb8;
    --bg: #f6f8ff;
    --panel: #ffffff;
    --text: #0b1220;
    --text-secondary: #3d5a80;
    --muted: rgba(15, 23, 42, 0.62);
    --border: rgba(2, 6, 23, 0.10);
    --border-focus: rgba(0, 68, 217, 0.45);
    --shadow: 0 4px 16px rgba(2, 6, 23, 0.08);
    --shadow-lg: 0 10px 30px rgba(2, 6, 23, 0.12);
    --radius: 12px;
    --radius-sm: 8px;
    --success: #10b981;
    --success-bg: rgba(16, 185, 129, 0.08);
}

* {
    box-sizing: border-box;
}

html, body {
    height: 100%;
    margin: 0;
    font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Apple Color Emoji", "Segoe UI Emoji";
    background: var(--bg);
    color: var(--text);
    line-height: 1.5;
}

.top-nav {
    position: sticky;
    top: 0;
    z-index: 50;
    display: flex;
    flex-direction: column;
    padding: 0;
    background: transparent;
    border-bottom: none;
    box-shadow: none;
}

.top-nav-card {
    width: 100%;
    margin: 0;
    padding: 12px 18px;
    border-radius: 0;
    box-sizing: border-box;
    border: 1px solid rgba(2, 6, 23, 0.08);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: none;
    backdrop-filter: blur(10px);
}

.top-nav-row {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.top-nav-row--main {
    padding: 2px 0 12px;
    gap: 14px;
}

.top-nav-row--main .nav-links {
    flex: 1 1 0;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

@media (max-width: 700px) {
    .nav-hide-mobile {
        display: none !important;
    }

    .top-nav--mobile-secondary .top-nav-row--main {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        flex-wrap: nowrap;
        padding: 0 0 10px;
    }

    .top-nav--mobile-secondary .top-nav-row--main .nav-links--left,
    .top-nav--mobile-secondary .top-nav-row--main .nav-links--right {
        display: none;
    }

    .top-nav--mobile-secondary .top-nav-row--main .brand {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

.nav-links--right {
    justify-content: flex-end;
}

.nav-inline-form {
    display: inline;
}

.nav-icon {
    width: 16px;
    height: 16px;
    display: inline-block;
    flex: 0 0 auto;
}

.top-nav-row--main .brand {
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-logo {
    height: clamp(36px, 4.2vw, 56px);
    width: auto;
    display: block;
}

.nav-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 38px;
    padding: 0 12px;
    gap: 8px;
    border-radius: 12px;
    border: 1px solid rgba(0, 68, 217, 0.18);
    background: rgba(0, 68, 217, 0.06);
    color: rgba(15, 23, 42, 0.86);
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    line-height: 1.2;
    cursor: pointer;
    transition: background 160ms ease, border-color 160ms ease;
}

.nav-button:hover {
    background: rgba(0, 68, 217, 0.10);
    border-color: rgba(0, 68, 217, 0.28);
}

.top-nav-row--main .nav-button {
    background: transparent;
    border-color: transparent;
    color: rgba(15, 23, 42, 0.84);
    font-weight: 600;
}

.top-nav-row--main .nav-button:hover {
    background: rgba(2, 6, 23, 0.05);
    border-color: rgba(2, 6, 23, 0.06);
}

.top-nav-row--main .nav-button.nav-button--primary {
    background: #0c4bd7;
    border-color: rgba(12, 75, 215, 0.45);
    color: #ffffff;
}

.top-nav-row--main .nav-button.nav-button--primary:hover {
    background: #0a3fb3;
    border-color: rgba(12, 75, 215, 0.65);
}

.top-nav-row--main .nav-links--left .nav-button {
    background: linear-gradient(180deg, rgba(0, 68, 218, 0.96), rgba(0, 68, 218, 0.86));
    border-color: rgba(0, 68, 218, 0.40);
    color: #ffffff;
    font-weight: 800;
}

.top-nav-row--main .nav-links--left .nav-button:hover {
    background: linear-gradient(180deg, rgba(0, 68, 218, 1), rgba(0, 68, 218, 0.92));
    border-color: rgba(0, 68, 218, 0.60);
}

.top-nav-row--main .nav-links--left .nav-button.nav-button--ai {
    position: relative;
    isolation: isolate;
    background: linear-gradient(180deg, rgba(0, 68, 218, 0.96), rgba(0, 68, 218, 0.86));
    border-color: rgba(0, 68, 218, 0.40);
    color: #ffffff;
    font-weight: 800;
    overflow: hidden;
}

.top-nav-row--main .nav-links--left .nav-button.nav-button--ai::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 12px;
    background: conic-gradient(
        rgba(168, 85, 247, 0) 0turn,
        rgba(255, 255, 255, 0.95) 0.10turn,
        rgba(168, 85, 247, 0) 0.22turn,
        rgba(168, 85, 247, 0) 1turn
    );
    filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.95)) drop-shadow(0 0 12px rgba(255, 255, 255, 0.6));
    z-index: 0;
    animation: aiNeonSpin 2.2s linear infinite;
}

.top-nav-row--main .nav-links--left .nav-button.nav-button--ai::after {
    content: "";
    position: absolute;
    inset: 2px;
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(0, 68, 218, 0.96), rgba(0, 68, 218, 0.86));
    z-index: 1;
}

.top-nav-row--main .nav-links--left .nav-button.nav-button--ai > * {
    position: relative;
    z-index: 2;
}

.top-nav-row--mobile-secondary .nav-button.nav-button--ai {
    position: relative;
    isolation: isolate;
    background: linear-gradient(180deg, rgba(0, 68, 218, 0.96), rgba(0, 68, 218, 0.86));
    border-color: rgba(0, 68, 218, 0.40);
    color: #ffffff;
    font-weight: 800;
    overflow: hidden;
}

.top-nav-row--mobile-secondary .nav-button.nav-button--ai::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 12px;
    background: conic-gradient(
        rgba(168, 85, 247, 0) 0turn,
        rgba(255, 255, 255, 0.95) 0.10turn,
        rgba(168, 85, 247, 0) 0.22turn,
        rgba(168, 85, 247, 0) 1turn
    );
    filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.95)) drop-shadow(0 0 12px rgba(255, 255, 255, 0.6));
    z-index: 0;
    animation: aiNeonSpin 2.2s linear infinite;
}

.top-nav-row--mobile-secondary .nav-button.nav-button--ai::after {
    content: "";
    position: absolute;
    inset: 2px;
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(0, 68, 218, 0.96), rgba(0, 68, 218, 0.86));
    z-index: 1;
}

.top-nav-row--mobile-secondary .nav-button.nav-button--ai > * {
    position: relative;
    z-index: 2;
}

.top-nav-row--mobile-secondary {
    display: none;
}

.ai-fab {
    position: fixed;
    right: 18px;
    bottom: 18px;
    width: 58px;
    height: 58px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(0, 68, 218, 1), rgba(0, 68, 218, 0.90));
    border: 1px solid rgba(0, 68, 218, 0.40);
    box-shadow: 0 16px 40px rgba(2, 6, 23, 0.18);
    display: grid;
    place-items: center;
    text-decoration: none;
    color: #ffffff;
    z-index: 1400;
}

.ai-fab:hover {
    background: linear-gradient(180deg, rgba(0, 68, 218, 1), rgba(0, 68, 218, 0.96));
    border-color: rgba(0, 68, 218, 0.60);
}

.ai-fab__icon svg {
    width: 26px;
    height: 26px;
}

.ai-fab__popup {
    position: absolute;
    right: 72px;
    bottom: 8px;
    width: min(320px, calc(100vw - 120px));
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(0, 68, 218, 0.18);
    box-shadow: 0 18px 45px rgba(2, 6, 23, 0.18);
    color: rgba(15, 23, 42, 0.92);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.35;
    opacity: 0;
    transform: translateY(6px);
    pointer-events: none;
    transition: opacity 220ms ease, transform 220ms ease;
}

.ai-fab__popup.is-open {
    opacity: 1;
    transform: translateY(0);
}

@keyframes aiNeonSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@media (max-width: 700px) {
    .top-nav--mobile-secondary .top-nav-row--mobile-secondary {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 0 0 10px;
    }

    .top-nav--mobile-secondary .top-nav-row--mobile-secondary .nav-links--mobile {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 8px;
        flex-wrap: nowrap;
        min-width: 0;
    }

    .top-nav--mobile-secondary .top-nav-row--mobile-secondary .nav-button {
        height: 32px;
        padding: 0 10px;
        font-size: 12px;
        font-weight: 800;
        min-width: 0;
    }

    .top-nav--mobile-secondary .top-nav-row--mobile-secondary .nav-button--ai-mobile {
        flex: 1 1 auto;
        max-width: calc(100% - 120px);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .top-nav--mobile-secondary .top-nav-row--mobile-secondary .nav-button--ai-mobile .nav-icon {
        width: 16px;
        height: 16px;
    }
}

.lc-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 24px 20px 48px;
    min-height: 100vh;
}

.lc-header {
    text-align: center;
    margin-bottom: 28px;
}

.lc-back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--brand);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
    transition: opacity 0.15s ease;
}

.lc-back-link:hover {
    opacity: 0.8;
}

.lc-back-icon {
    width: 18px;
    height: 18px;
}

.lc-brand {
    margin-bottom: 16px;
}

.lc-logo {
    height: 56px;
    width: auto;
    filter: drop-shadow(0 4px 8px rgba(2, 6, 23, 0.10));
}

.lc-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-secondary);
    margin: 0 0 8px;
    letter-spacing: -0.02em;
}

.lc-subtitle {
    font-size: 16px;
    color: var(--muted);
    margin: 0;
}

.lc-tabs {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 24px;
    background: var(--panel);
    border-radius: 10px;
    padding: 4px;
    box-shadow: var(--shadow);
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.lc-tab {
    flex: 1;
    padding: 12px 24px;
    border: none;
    background: transparent;
    color: var(--muted);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.2s ease;
    font-family: inherit;
}

.lc-tab:hover:not(.lc-tab--active) {
    color: var(--text);
    background: var(--brand-light);
}

.lc-tab--active {
    background: var(--brand);
    color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 68, 217, 0.25);
}

.lc-results {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 12px;
}

@media (max-width: 800px) {
    .lc-results {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .lc-results {
        grid-template-columns: 1fr;
    }
}

.lc-result-card {
    background: var(--panel);
    border-radius: var(--radius);
    padding: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.lc-result-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 8px;
}

.lc-result-value {
    display: block;
    font-size: 26px;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.02em;
}

.lc-result-note {
    display: block;
    font-size: 11px;
    color: var(--muted);
    margin-top: 4px;
}

.lc-disclaimer {
    text-align: center;
    font-size: 13px;
    color: var(--muted);
    margin: 0 0 24px;
}

.lc-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.lc-panel-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 700px) {
    .lc-panel-row {
        grid-template-columns: 1fr;
    }
}

.lc-panel {
    background: var(--panel);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.lc-panel--full {
    grid-column: 1 / -1;
}

.lc-panel-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-secondary);
    margin: 0 0 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}

.lc-panel-subtitle {
    font-size: 13px;
    color: var(--muted);
    margin: -12px 0 16px;
}

.lc-field {
    margin-bottom: 18px;
}

 .lc-label-row {
     display: flex;
     align-items: center;
     justify-content: space-between;
     gap: 10px;
 }

 .lc-label-help {
     font-size: 12px;
     font-weight: 700;
     color: rgba(15, 23, 42, 0.58);
     line-height: 1.25;
     text-align: right;
 }

 @media (max-width: 600px) {
     .lc-label-row {
         flex-direction: column;
         align-items: flex-start;
         gap: 4px;
     }

     .lc-label-help {
         text-align: left;
     }
 }

 .lc-field-meta {
     display: flex;
     align-items: flex-start;
     justify-content: space-between;
     gap: 12px;
     flex-wrap: wrap;
 }

.lc-field:last-child {
    margin-bottom: 0;
}

.lc-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 6px;
}

.lc-input-group {
    display: flex;
    align-items: center;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

 .lc-input-group.is-invalid {
     border-color: rgba(239, 68, 68, 0.55);
     box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.10);
 }

.lc-input-group:focus-within {
    border-color: var(--border-focus);
    box-shadow: 0 0 0 4px rgba(0, 68, 217, 0.10);
}

.lc-input-group--small {
    max-width: 160px;
}

.lc-input-prefix,
.lc-input-suffix {
    padding: 0 12px;
    font-size: 14px;
    font-weight: 600;
    color: var(--muted);
    background: rgba(0, 68, 217, 0.04);
    height: 42px;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.lc-input-prefix {
    border-right: 1px solid var(--border);
}

.lc-input-suffix {
    border-left: 1px solid var(--border);
}

.lc-input {
    flex: 1;
    border: none;
    outline: none;
    height: 42px;
    padding: 0 12px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    background: transparent;
    font-family: inherit;
    min-width: 0;
}

.lc-input::placeholder {
    color: rgba(15, 23, 42, 0.35);
    font-weight: 500;
}

.lc-checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    font-size: 13px;
    color: var(--muted);
    cursor: pointer;
}

.lc-checkbox {
    width: 18px;
    height: 18px;
    accent-color: var(--brand);
    cursor: pointer;
}

.lc-field-hint {
    display: block;
    font-size: 12px;
    color: var(--muted);
    margin-top: 6px;
}

 .lc-help {
     display: inline-grid;
     place-items: center;
     width: 20px;
     height: 20px;
     border-radius: 999px;
     border: 1px solid rgba(0, 68, 217, 0.24);
     background: rgba(0, 68, 217, 0.06);
     color: rgba(15, 23, 42, 0.85);
     font-size: 12px;
     font-weight: 900;
     cursor: help;
 }

 .lc-help:focus {
     outline: none;
     box-shadow: 0 0 0 4px rgba(0, 68, 217, 0.14);
 }

 .lc-help[aria-label] {
     position: relative;
 }

 .lc-help[aria-label]::after {
     content: attr(aria-label);
     position: absolute;
     left: 50%;
     top: calc(100% + 10px);
     transform: translateX(-50%);
     width: min(280px, calc(100vw - 48px));
     padding: 10px 12px;
     border-radius: 12px;
     background: rgba(15, 23, 42, 0.95);
     color: rgba(255, 255, 255, 0.96);
     font-size: 12px;
     font-weight: 600;
     line-height: 1.35;
     box-shadow: 0 12px 26px rgba(2, 6, 23, 0.20);
     opacity: 0;
     pointer-events: none;
     transition: opacity 150ms ease;
     z-index: 40;
 }

 .lc-help:hover::after,
 .lc-help:focus::after {
     opacity: 1;
 }

 .lc-step-note {
     min-height: 20px;
     color: rgba(239, 68, 68, 0.92);
     font-weight: 700;
     font-size: 13px;
     margin: 0 0 12px;
 }

 .lc-disclaimer-box {
     border: 1px solid rgba(2, 6, 23, 0.10);
     border-radius: 14px;
     padding: 14px 16px;
     background: rgba(255, 255, 255, 0.70);
 }

 .lc-disclaimer-box__title {
     font-size: 12px;
     letter-spacing: 0.04em;
     text-transform: uppercase;
     color: var(--muted);
     font-weight: 800;
     margin-bottom: 6px;
 }

 .lc-disclaimer-box__text {
     font-size: 13px;
     color: rgba(15, 23, 42, 0.80);
     font-weight: 600;
     line-height: 1.5;
 }

 .lc-tabpanel {
     width: 100%;
 }

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

 @media (max-width: 700px) {
     .lc-advanced-grid {
         grid-template-columns: 1fr;
     }
 }

 .lc-assumption-grid {
     display: grid;
     grid-template-columns: repeat(4, minmax(0, 1fr));
     gap: 12px;
 }

 @media (max-width: 800px) {
     .lc-assumption-grid {
         grid-template-columns: repeat(2, minmax(0, 1fr));
     }
 }

 @media (max-width: 500px) {
     .lc-assumption-grid {
         grid-template-columns: 1fr;
     }
 }

 .lc-assumption {
     background: rgba(0, 68, 217, 0.05);
     border: 1px solid rgba(0, 68, 217, 0.10);
     border-radius: 14px;
     padding: 14px;
 }

 .lc-assumption__label {
     font-size: 12px;
     color: var(--muted);
     font-weight: 700;
     margin-bottom: 6px;
 }

 .lc-assumption__value {
     font-size: 16px;
     font-weight: 900;
     color: rgba(15, 23, 42, 0.88);
 }

 .lc-section-title {
     margin: 0 0 10px;
     font-size: 14px;
     font-weight: 800;
     color: rgba(15, 23, 42, 0.88);
 }

 .lc-select {
     width: 100%;
     height: 42px;
     border-radius: var(--radius-sm);
     border: 1px solid var(--border);
     background: #ffffff;
     padding: 0 12px;
     font-weight: 700;
     color: rgba(15, 23, 42, 0.88);
 }

 .lc-select:focus {
     outline: none;
     border-color: var(--border-focus);
     box-shadow: 0 0 0 4px rgba(0, 68, 217, 0.10);
 }

 .lc-sr-only {
     position: absolute;
     width: 1px;
     height: 1px;
     padding: 0;
     margin: -1px;
     overflow: hidden;
     clip: rect(0, 0, 0, 0);
     white-space: nowrap;
     border: 0;
 }

 .lc-table-wrap {
     width: 100%;
     overflow: auto;
     border-radius: 14px;
     border: 1px solid rgba(2, 6, 23, 0.10);
     background: rgba(255, 255, 255, 0.90);
 }

 .lc-table {
     width: 100%;
     border-collapse: collapse;
     min-width: 520px;
 }

 .lc-table th,
 .lc-table td {
     padding: 12px 14px;
     border-bottom: 1px solid rgba(2, 6, 23, 0.08);
     text-align: left;
     font-size: 13px;
     font-weight: 700;
     color: rgba(15, 23, 42, 0.84);
 }

 .lc-table th {
     position: sticky;
     top: 0;
     background: rgba(246, 248, 255, 0.98);
     text-transform: uppercase;
     font-size: 11px;
     letter-spacing: 0.04em;
     color: rgba(15, 23, 42, 0.60);
 }

 .lc-table tr:last-child td {
     border-bottom: none;
 }

.lc-ltc-display {
    margin-top: 20px;
    padding: 16px;
    background: var(--brand-light);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(0, 68, 217, 0.15);
    text-align: center;
}

.lc-ltc-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
}

.lc-ltc-value {
    font-size: 22px;
    font-weight: 800;
    color: var(--brand);
    margin-left: 8px;
}

.lc-ltc-note {
    display: block;
    font-size: 12px;
    color: var(--muted);
    margin-top: 4px;
}

.lc-advanced-section {
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.lc-draw-schedule {
    margin-bottom: 24px;
}

.lc-draw-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.lc-draw-header {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 16px;
    font-size: 12px;
    font-weight: 700;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 0 0 8px;
    border-bottom: 1px solid var(--border);
}

.lc-draw-row {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 16px;
    align-items: center;
}

.lc-draw-month {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
}

.lc-draw-input {
    width: 100%;
}

.lc-add-draw-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
    padding: 8px 16px;
    background: transparent;
    border: 1px dashed var(--border);
    border-radius: var(--radius-sm);
    color: var(--brand);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.15s ease;
    font-family: inherit;
}

.lc-add-draw-btn:hover {
    background: var(--brand-light);
    border-color: var(--brand);
}

.lc-add-draw-btn svg {
    width: 16px;
    height: 16px;
}

.lc-reserves-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

@media (max-width: 600px) {
    .lc-reserves-grid {
        grid-template-columns: 1fr;
    }
}

.lc-reserve-card {
    background: var(--brand-light);
    border-radius: var(--radius-sm);
    padding: 16px;
    text-align: center;
    border: 1px solid rgba(0, 68, 217, 0.12);
}

.lc-reserve-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 6px;
}

.lc-reserve-value {
    display: block;
    font-size: 20px;
    font-weight: 800;
    color: var(--brand);
}

.lc-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 8px;
}

.lc-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.15s ease;
    border: none;
    font-family: inherit;
}

.lc-btn svg {
    width: 18px;
    height: 18px;
    transition: transform 0.2s ease;
}

.lc-btn--secondary {
    background: var(--panel);
    color: var(--brand);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.lc-btn--secondary:hover {
    background: var(--brand-light);
    border-color: rgba(0, 68, 217, 0.25);
}

.lc-btn--secondary.lc-btn--expanded svg {
    transform: rotate(180deg);
}

.lc-btn--primary {
    background: var(--brand);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 68, 217, 0.25);
}

.lc-btn--primary:hover {
    background: var(--brand-dark);
}

.lc-details-accordion {
    animation: fadeIn 0.3s ease;
}

.lc-breakdown {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.lc-breakdown-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.lc-breakdown-row--total {
    background: var(--brand-light);
    margin: 0 -16px;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
}

.lc-breakdown-label {
    font-size: 14px;
    color: var(--text);
    font-weight: 700;
}

.lc-breakdown-value {
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
}

.lc-breakdown-row--total .lc-breakdown-label,
.lc-breakdown-row--total .lc-breakdown-value {
    font-weight: 800;
    color: var(--brand);
}

.lc-breakdown-divider {
    height: 1px;
    background: var(--border);
    margin: 8px 0;
}

.lc-footer {
    margin-top: 40px;
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.lc-footer-disclaimer {
    font-size: 12px;
    color: var(--muted);
    margin: 0;
    line-height: 1.6;
}

@media (max-width: 600px) {
    .lc-container {
        padding: 16px 12px 40px;
    }

    .lc-title {
        font-size: 22px;
    }

    .lc-result-value {
        font-size: 22px;
    }

    .lc-panel {
        padding: 18px;
    }

    .lc-tabs {
        max-width: 100%;
    }

    .lc-tab {
        padding: 10px 16px;
        font-size: 13px;
    }
}
