@import url("https://fonts.googleapis.com/css2?family=Source+Serif+4:opsz,wght@8..60,600;8..60,700&display=swap");

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --bg: #f1ebe3;
    --card: #fffcf8;
    --ink: #1c1916;
    --muted: #6d645a;
    --accent: #5c3a28;
    --accent-dark: #4a2e20;
    --accent-soft: #f3ece3;
    --accent-light: #e8d9c8;
    --danger: #d84c4c;
    --border: #d7cdc0;
    --shadow: 0 10px 28px rgba(28, 25, 22, 0.07);
    --header-height: 3.65rem;
    --nav-height: var(--header-height);
    --copper: #5c3a28;
    --copper-deep: #4a2e20;
    --parchment: #f7f1ea;
    --stone: #ebe4da;
    --mode-baseline: #5f6b4a;
    --mode-baseline-soft: #eef0e6;
    --mode-scenario: #8a5a3c;
    --mode-scenario-soft: #f5ebe3;
}

body {
    font-family: "Segoe UI", "Helvetica Neue", system-ui, sans-serif;
    background:
        radial-gradient(1100px 420px at 8% -12%, rgba(92, 58, 40, 0.07), transparent 58%),
        linear-gradient(180deg, #faf6f1 0%, var(--bg) 32%, #e8e0d6 100%);
    color: var(--ink);
    line-height: 1.6;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 300;
    display: flex;
    align-items: center;
    gap: 1.5rem 2rem;
    min-height: var(--header-height);
    padding: 0.65rem 2rem;
    background:
        linear-gradient(180deg, rgba(255, 252, 248, 0.97) 0%, rgba(247, 241, 234, 0.94) 100%);
    border-bottom: 1px solid rgba(215, 205, 192, 0.95);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.55) inset,
        0 8px 24px rgba(28, 25, 22, 0.04);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.site-header:not(:has(.main-menu)) {
    padding-top: 0.9rem;
    padding-bottom: 0.9rem;
}

.site-header .brand {
    flex: 0 0 auto;
    min-width: 0;
    text-decoration: none;
    color: inherit;
}

.site-header .brand h1 {
    margin: 0;
    font-family: "Source Serif 4", "Iowan Old Style", "Palatino Linotype", Georgia, serif;
    font-size: 1.18rem;
    font-weight: 700;
    font-optical-sizing: auto;
    letter-spacing: -0.015em;
    line-height: 1.15;
    color: var(--copper-deep);
    white-space: nowrap;
}

.site-header .brand p {
    margin: 0.35rem 0 0;
    color: var(--muted);
    font-size: 0.88rem;
    font-weight: 400;
    line-height: 1.35;
    max-width: 28rem;
}

.site-header .main-menu {
    flex: 1 1 auto;
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 0.15rem;
    min-width: 0;
    margin: 0;
    padding: 0;
    background: transparent;
    border: none;
    overflow-x: auto;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
}

.menu-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 0.55rem 0.85rem;
    border: none;
    border-radius: 0;
    background: transparent;
    color: var(--muted);
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.01em;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.16s ease;
}

.menu-link::after {
    content: "";
    position: absolute;
    left: 0.7rem;
    right: 0.7rem;
    bottom: 0.15rem;
    height: 2px;
    border-radius: 1px;
    background: transparent;
    transform: scaleX(0.55);
    opacity: 0;
    transition: background 0.16s ease, opacity 0.16s ease, transform 0.16s ease;
}

.menu-link:hover {
    color: var(--ink);
    background: transparent;
}

.menu-link:hover::after {
    background: rgba(92, 58, 40, 0.28);
    opacity: 1;
    transform: scaleX(1);
}

.menu-link.active {
    background: transparent;
    color: var(--copper-deep);
    font-weight: 700;
}

.menu-link.active::after {
    background: linear-gradient(90deg, #a56b45, var(--copper-deep));
    opacity: 1;
    transform: scaleX(1);
}

.user-panel,
.user-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 0 0 auto;
    margin-left: auto;
}

/* User Dropdown Styles */
.user-dropdown {
    position: relative;
    display: inline-block;
}

.user-dropdown-toggle {
    background: linear-gradient(155deg, #8a5a3c 0%, var(--copper) 48%, var(--copper-deep) 100%);
    border: 1px solid rgba(255, 248, 242, 0.22);
    cursor: pointer;
    padding: 0;
    border-radius: 50%;
    transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.35rem;
    height: 2.35rem;
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.02em;
    color: #fff8f2;
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.18) inset,
        0 2px 8px rgba(74, 46, 32, 0.28);
}

.user-dropdown-toggle:hover {
    transform: translateY(-1px);
    filter: brightness(1.05);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.22) inset,
        0 4px 14px rgba(74, 46, 32, 0.32);
}

.user-dropdown-toggle:active {
    transform: translateY(0) scale(0.97);
}

.user-dropdown-menu {
    position: absolute;
    top: calc(100% + 0.45rem);
    right: 0;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: 0 12px 32px rgba(28, 25, 22, 0.14);
    min-width: 220px;
    z-index: 1000;
    display: none;
    overflow: hidden;
}

.user-dropdown-menu.show {
    display: block;
    animation: dropdownFadeIn 0.18s ease-out;
}

@keyframes dropdownFadeIn {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.user-dropdown-header {
    padding: 0.95rem 1.15rem;
    border-bottom: 1px solid var(--border);
    font-weight: 600;
    color: var(--ink);
    background: linear-gradient(180deg, var(--parchment), var(--card));
}

.user-dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.8rem 1.15rem;
    color: var(--ink);
    text-decoration: none;
    transition: background 0.15s ease, color 0.15s ease;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
    font-size: 0.92rem;
}

.user-dropdown-item:hover {
    background-color: var(--accent-soft);
    color: var(--copper-deep);
}

.dropdown-icon {
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}

@media (max-width: 980px) {
    .site-header {
        flex-wrap: wrap;
        padding: 0.7rem 1.15rem 0.55rem;
        gap: 0.55rem 1rem;
        align-items: center;
    }

    .site-header .brand {
        order: 1;
    }

    .site-header .user-panel,
    .site-header .user-actions {
        order: 2;
        margin-left: auto;
    }

    .site-header .main-menu {
        order: 3;
        width: 100%;
        justify-content: flex-start;
        padding-bottom: 0.15rem;
        mask-image: linear-gradient(90deg, #000 88%, transparent);
    }

    .site-header .brand h1 {
        font-size: 1.05rem;
        white-space: normal;
    }

    .menu-link {
        padding: 0.45rem 0.7rem;
        font-size: 0.86rem;
    }
}

select,
input,
button {
    font-family: inherit;
}

select,
input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
textarea {
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 0.55rem 0.45rem;
    font-size: calc(0.95rem - 1px);
    width: 100%;
    background: #fff;
    box-sizing: border-box;
}

input[data-format="currency"],
input[data-format="percent"] {
    text-align: right;
    font-variant-numeric: tabular-nums;
}

input:focus,
select:focus {
    outline: 2px solid rgba(92, 58, 40, 0.22);
    border-color: var(--accent);
}

::placeholder {
    font-style: italic;
    font-weight: 400;
    color: #8a8178;
    font-size: 0.9em;
}

.btn {
    border: none;
    border-radius: 10px;
    padding: 0.6rem 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.btn:disabled {
    opacity: 0.55;
    cursor: not-allowed;
    box-shadow: none;
}

.btn-primary {
    background: linear-gradient(180deg, #6a4330 0%, var(--accent) 55%, var(--accent-dark) 100%);
    color: #fff8f2;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.14) inset;
}

.btn-primary:hover {
    background: linear-gradient(180deg, #754a35 0%, var(--accent-dark) 100%);
    color: #fff8f2;
}

.btn-secondary {
    background: var(--accent-soft);
    color: var(--accent);
}

.btn-secondary:hover {
    background: var(--accent-light);
}

.btn-secondary.btn-update-scenario {
    background: var(--mode-scenario);
    color: #fff8f2;
}

.btn-secondary.btn-update-scenario:hover {
    background: var(--copper-deep);
}

.btn-success {
    background: #e3f5ea;
    color: #2d8a54;
}

.btn-success:hover {
    background: #cfead9;
}

.btn-ghost {
    background: transparent;
    color: var(--muted);
}

.btn-ghost:hover {
    color: var(--ink);
}

.btn-danger {
    background: #ffe8e8;
    color: var(--danger);
}

.btn-danger:hover {
    background: #ffd0d0;
}

.btn-link {
    background: transparent;
    border: none;
    color: var(--accent);
    font-weight: 600;
    padding: 0;
    margin-left: 0.4rem;
    cursor: pointer;
}

.btn-link:hover {
    color: var(--accent-dark);
}

.btn-link:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.tab-badge {
    display: none;
    align-items: center;
    justify-content: center;
    margin-left: 0.5rem;
    min-width: 1.25rem;
    height: 1.25rem;
    padding: 0 0.35rem;
    border-radius: 999px;
    background: var(--accent);
    color: #fff8f2;
    font-size: 0.7rem;
    font-weight: 700;
}

.page {
    padding: 2.5rem 3rem 4rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.panel {
    background: var(--card);
    border-radius: 18px;
    padding: 2rem;
    box-shadow: var(--shadow);
}

.panel.hero {
    background: linear-gradient(120deg, #f7f1ea 0%, #fffcf8 62%);
}

.panel.narrow {
    max-width: 520px;
    margin: 0 auto;
}

.panel-header {
    margin-bottom: 1.5rem;
}

.panel-header h2 {
    font-size: 1.6rem;
    margin-bottom: 0.35rem;
}

.panel-header p {
    color: var(--muted);
    font-size: 0.95rem;
}

.alert {
    padding: 0.8rem 1rem;
    border-radius: 12px;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.alert-info {
    background: #eef4ff;
    color: var(--accent);
}

.alert-error {
    background: #ffe8e8;
    color: var(--danger);
}

.section-grid {
    display: grid;
    gap: 1.5rem;
}

.section-card {
    background: #f8f9fd;
    border-radius: 14px;
    padding: 1.5rem;
    border: 1px solid #eef0f7;
}

.tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.tab {
    border: 1px solid var(--border);
    background: #fff;
    padding: 0.5rem 0.9rem;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--muted);
    cursor: pointer;
}

.tab.active {
    background: var(--accent-soft);
    color: var(--accent);
    border-color: var(--accent-light);
}

.plan-workspace {
    display: grid;
    grid-template-columns: minmax(220px, 236px) minmax(0, 1fr);
    gap: 1.75rem;
    align-items: start;
}

.plan-nav {
    --plan-rail-bg: #ebe4da;
    --plan-rail-border: #d7cdc0;
    --plan-rail-ink: #1c1916;
    --plan-rail-muted: #6d645a;
    --plan-rail-hover: rgba(255, 250, 244, 0.55);
    --plan-rail-active: #5c3a28;
    --plan-rail-active-deep: #4a2e20;
    --plan-rail-active-text: #fff8f2;
    --plan-rail-ready: #2f6b4a;
    position: sticky;
    top: calc(var(--header-height) + 0.65rem);
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    padding: 1.05rem 0 0;
    background:
        linear-gradient(180deg, #f3ece3 0%, var(--plan-rail-bg) 40%, #e4dbd0 100%);
    border: 1px solid var(--plan-rail-border);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.plan-nav-heading {
    margin: 0 1.05rem 0.7rem;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--plan-rail-muted);
}

.plan-nav-item.tab {
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    text-align: left;
    border-radius: 0;
    padding: 0.78rem 1.05rem;
    border: none;
    border-left: 3px solid transparent;
    background: transparent;
    position: relative;
    box-shadow: none;
    color: var(--plan-rail-ink);
    transition: background 0.16s ease, color 0.16s ease, border-color 0.16s ease;
}

.plan-nav-item.tab:hover {
    background: var(--plan-rail-hover);
}

.plan-nav-item.tab.active {
    background: linear-gradient(180deg, var(--plan-rail-active) 0%, var(--plan-rail-active-deep) 100%);
    border-left-color: transparent;
    box-shadow: none;
    color: var(--plan-rail-active-text);
}

.plan-nav-item.tab.active::before,
.plan-nav-item.tab.active::after {
    display: none;
}

.plan-nav-item.tab.active .plan-nav-title {
    color: var(--plan-rail-active-text);
}

.plan-nav-item.tab.active .plan-nav-desc {
    color: rgba(255, 248, 242, 0.78);
}

.plan-nav-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.15rem;
    height: 1.15rem;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--plan-rail-ready);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 700;
    line-height: 1;
}

.plan-nav-status::before {
    content: "✓";
}

.plan-nav-status[hidden] {
    display: none !important;
}

.plan-nav-item.tab.active .plan-nav-status {
    background: rgba(255, 248, 242, 0.22);
    color: var(--plan-rail-active-text);
    box-shadow: inset 0 0 0 1px rgba(255, 248, 242, 0.35);
}

.plan-nav-copy {
    display: flex;
    flex-direction: column;
    gap: 0.14rem;
    min-width: 0;
}

.plan-nav-title {
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--plan-rail-ink);
}

.plan-nav-desc {
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--plan-rail-muted);
    line-height: 1.35;
}

.plan-nav-optional .plan-nav-title {
    color: var(--plan-rail-muted);
    font-weight: 600;
}

.plan-nav-optional .plan-nav-desc {
    font-style: italic;
    font-weight: 500;
    opacity: 0.9;
}

.plan-nav-item.tab.active.plan-nav-optional .plan-nav-title,
.plan-nav-item.tab.active.plan-nav-optional .plan-nav-desc {
    color: inherit;
    font-style: normal;
}

.plan-nav-item.tab.active .tab-badge {
    background: rgba(255, 248, 242, 0.92);
    color: var(--plan-rail-active-deep);
}

.plan-nav-item .tab-badge {
    margin-left: 0;
}

.plan-content .section-card,
.plan-content .summary-grid[data-tab-content] {
    scroll-margin-top: 1rem;
}

.plan-content .section-card {
    border: 1px solid var(--border);
    border-radius: 16px;
    background: #fff;
    padding: 1.25rem 1.35rem;
    box-shadow: 0 6px 18px rgba(21, 32, 51, 0.03);
}

.plan-content .section-card h3 {
    font-size: 1.15rem;
    letter-spacing: -0.01em;
}

.plan-content .section-note {
    color: var(--muted);
    font-size: 0.92rem;
    margin: -0.35rem 0 1rem;
}

.accounts-ledger-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 0.35rem;
}

.accounts-ledger-header h3 {
    margin-bottom: 0.45rem;
}

.accounts-ledger-header .section-note {
    margin-bottom: 0;
}

.accounts-ledger-header .btn {
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.accounts-ledger-empty {
    margin: 0.35rem 0 0;
    padding: 0.85rem 1rem;
    border: 1px dashed #d7cdc0;
    border-radius: 10px;
    background: #faf7f2;
    color: var(--muted);
    font-size: 0.9rem;
    font-style: italic;
    font-weight: 500;
}

.section-heading-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.55rem 0.75rem;
    margin-bottom: 0.45rem;
}

.section-heading-row h3 {
    margin-bottom: 0;
}

.totals-used-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    background: var(--copper-deep);
    color: #fff8f2;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.section-card-totals {
    border: 1px solid rgba(92, 58, 40, 0.22);
    box-shadow: 0 0 0 1px rgba(92, 58, 40, 0.04);
}

.plan-content .section-note.totals-used-callout {
    margin-top: 0;
    padding: 0.65rem 0.85rem;
    border-radius: 10px;
    border-left: 3px solid var(--copper);
    background: var(--accent-soft);
    color: var(--copper-deep);
    font-style: normal;
    font-weight: 500;
}

.accounts-ledger-empty[hidden],
#accountsTableWrap[hidden] {
    display: none !important;
}

.plan-section-nav {
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.plan-readiness {
    margin-top: 0.45rem;
    padding: 0.9rem 1.05rem 1rem;
    border-top: 1px solid var(--plan-rail-border);
    background: rgba(255, 250, 244, 0.42);
}

.plan-readiness-meter {
    height: 6px;
    border-radius: 999px;
    background: rgba(92, 58, 40, 0.12);
    overflow: hidden;
    margin-bottom: 0.55rem;
}

#planReadinessFill {
    display: block;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, #a56b45, #5c3a28);
    border-radius: 999px;
    transition: width 0.25s ease;
}

#planReadinessText {
    margin: 0;
    font-size: 0.78rem;
    color: var(--plan-rail-muted);
    font-weight: 600;
}

.plan-readiness-legend {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin: 0.45rem 0 0;
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--plan-rail-muted);
    line-height: 1.3;
}

.plan-ready-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 0.95rem;
    height: 0.95rem;
    border-radius: 50%;
    background: var(--plan-rail-ready);
    color: #fff;
    font-size: 0.58rem;
    font-weight: 700;
    flex-shrink: 0;
}

.plan-ready-mark::before {
    content: "✓";
}

.scenario-library-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    flex-wrap: wrap;
}

.scenario-library-hint .panel-header p a {
    color: var(--accent);
    font-weight: 600;
}

.projections-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    flex-wrap: wrap;
}

.projections-header-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.projections-cashflow {
    margin-bottom: 1.5rem;
}

.results-story-compact .results-narrative {
    display: none;
}

.plan-content {
    min-width: 0;
}

.plan-action-bar {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px dashed var(--border);
}

.section-pill {
    display: inline-flex;
    align-items: center;
    margin-left: 0.5rem;
    padding: 0.15rem 0.55rem;
    border-radius: 999px;
    background: #fff4e5;
    color: #9a6700;
    font-size: 0.72rem;
    font-weight: 700;
    vertical-align: middle;
}

.results-story[hidden],
#resultsEmpty[hidden] {
    display: none !important;
}

.results-next-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 0 0 1.5rem;
}

.results-narrative {
    margin-bottom: 1.25rem;
}

.annual-detail-feature {
    margin-top: 0.35rem;
    border: 1px solid var(--accent-light);
    border-radius: 16px;
    background:
        linear-gradient(165deg, rgba(255, 252, 248, 0.95) 0%, var(--parchment) 48%, #f3ebe2 100%);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.65) inset,
        0 10px 28px rgba(92, 58, 40, 0.06);
    overflow: hidden;
}

.annual-detail-feature--story {
    margin-top: 0.75rem;
    border-width: 1px;
    border-color: rgba(165, 107, 69, 0.35);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.7) inset,
        0 14px 36px rgba(92, 58, 40, 0.08);
}

.annual-detail-feature--story .annual-detail-feature-head {
    padding: 1.35rem 1.4rem 1.15rem;
    border-bottom: 1px solid rgba(215, 205, 192, 0.9);
    background:
        linear-gradient(120deg, rgba(245, 234, 222, 0.85) 0%, transparent 62%);
}

.annual-detail-feature--compact .annual-detail-feature-head {
    padding: 1.05rem 1.15rem 0.95rem;
    border-bottom: 1px solid rgba(215, 205, 192, 0.85);
}

.annual-detail-feature-head {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem 1.25rem;
}

.annual-detail-feature-copy {
    flex: 1 1 16rem;
    min-width: 0;
}

.annual-detail-eyebrow {
    margin: 0 0 0.35rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #a56b45;
}

.annual-detail-feature-copy h3 {
    margin: 0 0 0.35rem;
    font-family: "Source Serif 4", "Iowan Old Style", "Palatino Linotype", Georgia, serif;
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: var(--copper-deep);
}

.annual-detail-feature--story .annual-detail-feature-copy h3 {
    font-size: 1.5rem;
}

.annual-detail-lede {
    margin: 0;
    max-width: 36rem;
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.45;
}

.annual-detail-feature-tools {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    align-items: center;
}

.annual-detail-disclosure {
    margin: 0;
    padding: 0;
    border: none;
    background: transparent;
}

.annual-detail-disclosure > summary {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.35rem 0.85rem;
    cursor: pointer;
    list-style: none;
    padding: 0.95rem 1.15rem 1.05rem;
    color: var(--ink);
    transition: background 0.15s ease;
}

.annual-detail-feature--story .annual-detail-disclosure > summary {
    padding: 1.05rem 1.4rem 1.15rem;
}

.annual-detail-disclosure > summary::-webkit-details-marker {
    display: none;
}

.annual-detail-disclosure > summary::before {
    content: "";
    flex: 0 0 auto;
    width: 0.55rem;
    height: 0.55rem;
    margin-top: 0.35rem;
    border-right: 2px solid var(--copper);
    border-bottom: 2px solid var(--copper);
    transform: rotate(-45deg);
    transition: transform 0.18s ease;
}

.annual-detail-disclosure[open] > summary::before {
    margin-top: 0.2rem;
    transform: rotate(45deg);
}

.annual-detail-disclosure > summary:hover {
    background: rgba(255, 252, 248, 0.55);
}

.annual-detail-summary-main {
    font-weight: 700;
    color: var(--copper-deep);
}

.annual-detail-cta-close {
    display: none;
}

.annual-detail-disclosure[open] .annual-detail-cta-open {
    display: none;
}

.annual-detail-disclosure[open] .annual-detail-cta-close {
    display: inline;
}

.annual-detail-summary-sub {
    color: var(--muted);
    font-size: 0.88rem;
    font-weight: 500;
}

.annual-detail-disclosure > .table-wrapper,
.annual-detail-disclosure > .panel-subsection {
    margin: 0 1.15rem 1.15rem;
}

.annual-detail-feature--story .annual-detail-disclosure > .table-wrapper,
.annual-detail-feature--story .annual-detail-disclosure > .panel-subsection {
    margin-left: 1.4rem;
    margin-right: 1.4rem;
}

.annual-detail-disclosure > .panel-subsection:last-child {
    margin-bottom: 1.35rem;
}

.annual-detail-disclosure .table-wrapper {
    background: rgba(255, 252, 248, 0.72);
    border: 1px solid rgba(215, 205, 192, 0.95);
    border-radius: 12px;
    padding: 0.35rem;
}

@media (max-width: 720px) {
    .annual-detail-feature-tools {
        width: 100%;
    }

    .annual-detail-feature-tools .btn {
        width: 100%;
    }
}

.projection-action-bar .btn {
    margin-top: 0;
}

.scenario-library-panel {
    border-top: 3px solid #e8ebf4;
}

@media (max-width: 980px) {
    .plan-workspace {
        grid-template-columns: 1fr;
    }

    .plan-nav {
        position: static;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: 0.2rem;
        padding-top: 0.85rem;
    }

    .plan-nav-heading {
        grid-column: 1 / -1;
    }

    .plan-nav-item.tab {
        border-left: none;
        border-bottom: 3px solid transparent;
        padding: 0.7rem 0.85rem;
        border-radius: 8px;
    }

    .plan-nav-item.tab.active {
        border-bottom-color: transparent;
    }

    .plan-readiness {
        grid-column: 1 / -1;
    }
}

.section-card.full {
    grid-column: 1 / -1;
}

.section-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.dashboard-banner {
    background: #f0f7ff;
    border: 1px solid #d6e4ff;
    border-radius: 12px;
    padding: 1rem 1.25rem;
    margin-bottom: 1.25rem;
    color: var(--accent);
}

.dashboard-banner a {
    color: var(--accent);
    font-weight: 600;
}

.dashboard-controls {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
}

.dashboard-select-banner {
    background: var(--accent-soft);
    border: 1px solid var(--accent-light);
    border-radius: 12px;
    padding: 0.75rem 1rem;
    margin-bottom: 1.25rem;
}

.dashboard-select-banner .dashboard-controls {
    margin-bottom: 0;
}

.dashboard-select-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.dashboard-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--muted);
    cursor: pointer;
}

.dashboard-toggle input {
    width: 36px;
    height: 18px;
    accent-color: var(--accent);
}

.dashboard-controls label {
    font-weight: 600;
    color: var(--muted);
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.dashboard-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 1.25rem;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.06);
}

.dashboard-card.full {
    grid-column: 1 / -1;
}

.dashboard-card h3 {
    font-size: 1.05rem;
    margin-bottom: 0.75rem;
}

.chart-wrap {
    position: relative;
    min-height: 260px;
}

.cashflow-card .chart-wrap {
    min-height: 220px;
}

.cashflow-totals {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

.cashflow-total {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.cashflow-total span {
    font-size: 0.8rem;
    color: var(--muted);
    font-weight: 600;
}

.cashflow-total strong {
    font-size: 1.15rem;
    color: var(--ink);
    font-variant-numeric: tabular-nums;
}

.cashflow-scrubber {
    margin-top: 1rem;
}

.cashflow-scrubber-meta {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 0.75rem;
    margin-bottom: 0.4rem;
}

#cashflowYearLabel {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--ink);
}

.cashflow-end-year {
    font-size: 0.8rem;
    color: var(--muted);
    font-weight: 600;
}

#cashflowYearSlider {
    display: block;
    width: 100%;
    min-width: 0;
    accent-color: var(--accent);
    cursor: pointer;
}

#cashflowYearSlider:disabled {
    cursor: not-allowed;
    opacity: 0.5;
}

.dashboard-large .dashboard-grid {
    grid-template-columns: 1fr;
}

.dashboard-large .chart-wrap {
    min-height: 420px;
}

@media (max-width: 980px) {
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
}

.section-note {
    color: var(--muted);
    font-size: 0.9rem;
    margin: -0.5rem 0 1rem;
}

.custom-summary {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    font-size: 0.85rem;
    color: var(--muted);
}

.custom-summary-row {
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
}

.custom-summary-row span {
    font-variant-numeric: tabular-nums;
}

.custom-data-body {
    max-height: 55vh;
    overflow-y: auto;
    padding-right: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.modal-card-scroll {
    max-width: 640px;
    width: 100%;
}

.field-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

label {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    font-size: 0.9rem;
    color: var(--muted);
}

input.is-overridden,
select.is-overridden {
    border-color: #9fb6f5;
    background: #dfe9ff;
    font-weight: 600;
}

input.is-profile-default,
select.is-profile-default {
    font-style: italic;
    color: var(--muted);
}

input.is-overridden,
select.is-overridden {
    font-style: normal;
    color: var(--ink);
}

.plan-panel {
    position: relative;
    padding-left: 3rem;
}

.plan-mode-bar {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2.4rem;
    background: var(--mode-baseline);
    display: flex;
    align-items: center;
    justify-content: center;
}

.plan-mode-bar.scenario {
    background: var(--mode-scenario);
}

.plan-mode-bar span {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    color: #fff8f2;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 600;
}

.plan-info-panel {
    border-left: 6px solid var(--mode-baseline);
}

.plan-info-panel.plan-info-profile {
    background:
        linear-gradient(135deg, var(--mode-baseline-soft) 0%, #f6f4ee 55%, var(--parchment) 100%);
}

.plan-info-panel.plan-info-scenario {
    border-left-color: var(--mode-scenario);
    background:
        linear-gradient(135deg, var(--mode-scenario-soft) 0%, #f8f1ea 55%, var(--parchment) 100%);
}

.toggle {
    flex-direction: row;
    align-items: center;
    gap: 0.6rem;
    font-weight: 600;
    color: var(--ink);
}

.toggle input {
    width: auto;
}

.table-wrapper {
    width: 100%;
    overflow-x: auto;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: #fff;
}

.portfolio-table {
    table-layout: fixed;
    width: 100%;
}

.portfolio-table th {
    white-space: normal;
    line-height: 1.25;
    vertical-align: bottom;
}

.portfolio-table th:nth-child(1),
.portfolio-table td:nth-child(1) {
    width: 48%;
    min-width: 0;
    white-space: normal;
}

.portfolio-table th:nth-child(2),
.portfolio-table td:nth-child(2) {
    width: 28%;
    min-width: 8.5rem;
    text-align: right;
}

.portfolio-table th:nth-child(3),
.portfolio-table td:nth-child(3) {
    width: 24%;
    min-width: 7.25rem;
    text-align: right;
}

.portfolio-table td input {
    width: 100%;
    min-width: 0;
    padding: 0.45rem 0.35rem;
}

.portfolio-table td {
    vertical-align: middle;
}

#accountsTable {
    width: 100%;
    min-width: 44rem;
}

#accountsTable th,
#accountsTable td {
    vertical-align: middle;
}

#accountsTable th:nth-child(1),
#accountsTable td:nth-child(1) {
    min-width: 9.5rem;
}

#accountsTable th:nth-child(2),
#accountsTable td:nth-child(2) {
    min-width: 12rem;
}

#accountsTable th:nth-child(3),
#accountsTable td:nth-child(3) {
    min-width: 7.25rem;
}

#accountsTable th:nth-child(4),
#accountsTable td:nth-child(4) {
    min-width: 6rem;
    text-align: right;
}

#accountsTable th:nth-child(5),
#accountsTable td:nth-child(5) {
    min-width: 4.5rem;
    text-align: right;
}

#accountsTable th.col-rmd,
#accountsTable td.col-rmd {
    width: 3.25rem;
    min-width: 3.25rem;
    max-width: 3.5rem;
    text-align: center;
    padding-left: 0.35rem;
    padding-right: 0.35rem;
}

#accountsTable th.col-rmd .th-tip {
    border-bottom: 1px dotted var(--muted);
    cursor: help;
    font-weight: 700;
}

#accountsTable td.col-rmd input[type="checkbox"] {
    width: auto;
    margin: 0;
}

#accountsTable th.col-remove,
#accountsTable td.col-remove {
    width: 2.5rem;
    min-width: 2.5rem;
    padding-left: 0.25rem;
    padding-right: 0.25rem;
    text-align: center;
}

#accountsTable td input,
#accountsTable td select {
    padding: 0.45rem 0.35rem;
}

.btn-icon {
    padding: 0.2rem 0.4rem;
    min-width: 2rem;
    line-height: 1;
    font-size: 1.2rem;
    font-weight: 500;
}

.column-table td {
    padding: 0.5rem 0.75rem;
}

.column-table td:first-child {
    color: var(--muted);
    font-weight: 600;
    width: 65%;
}

.column-table input[type="number"],
.column-table input[type="text"],
.column-table select {
    width: 100%;
}

.table-wrapper.compact {
    margin-top: 1rem;
}

table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
}

thead {
    background: #f1f3f9;
}

th,
td {
    padding: 0.75rem 0.8rem;
    border-bottom: 1px solid var(--border);
    text-align: left;
    white-space: nowrap;
}

tbody tr:hover {
    background: #f8faff;
}

.action-bar {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.summary-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    margin-bottom: 1.5rem;
}

.summary-card {
    background: #f8f9fd;
    border-radius: 12px;
    padding: 1rem 1.25rem;
    border: 1px solid #eef0f7;
}

.summary-card h4 {
    font-size: 0.9rem;
    color: var(--muted);
    margin-bottom: 0.35rem;
}

.summary-card p {
    font-size: 1.1rem;
    font-weight: 600;
}

.panel-subsection {
    margin-top: 2rem;
}

.panel-subsection h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.text-summary {
    background: #f8f9fd;
    border-radius: 12px;
    padding: 1.25rem;
    border: 1px solid #eef0f7;
    font-size: 0.95rem;
    color: var(--ink);
}

.text-summary h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1rem;
}

.text-summary p {
    margin: 0 0 0.6rem 0;
}

.feature-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.feature-card {
    background: #f8f9fd;
    border: 1px solid #eef0f7;
    padding: 1.25rem;
    border-radius: 14px;
}

.site-footer {
    padding: 2rem 3rem 3rem;
    color: var(--muted);
    font-size: 0.85rem;
}

.empty-state {
    padding: 1rem;
    color: var(--muted);
    font-size: 0.9rem;
}

.modal {
    position: fixed;
    inset: 0;
    background: rgba(18, 24, 38, 0.4);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    z-index: 1000;
}

.modal.active {
    display: flex;
}

.modal-card {
    background: #fff;
    border-radius: 16px;
    padding: 1.5rem;
    width: min(520px, 100%);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.6rem;
    cursor: pointer;
    color: var(--muted);
}

.modal-actions {
    display: flex;
    justify-content: flex-end;
    gap: 0.6rem;
}

.form-error {
    color: var(--danger);
    font-size: 0.88rem;
}

.defaults-list {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.defaults-item {
    background: #f6f7fb;
    border-radius: 10px;
    padding: 0.75rem 0.9rem;
    font-size: 0.9rem;
}

@media print {
    body {
        background: #fff;
    }

    .site-header,
    .main-menu,
    .user-panel,
    .action-bar,
    .btn,
    .panel-header p,
    #scenarioTable,
    #scenarioEmpty,
    .modal {
        display: none !important;
    }

    .panel {
        box-shadow: none;
        padding: 0;
        border-radius: 0;
    }

    .page {
        padding: 0;
    }

    table {
        font-size: 0.75rem;
    }
}

@media (min-width: 960px) {
    .section-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.scenario-profile {
    background-color: #f2f4f7;
    font-weight: 600;
}

.scenario-profile-active-profile {
    background-color: var(--mode-baseline-soft);
    box-shadow: inset 4px 0 0 var(--mode-baseline);
}

.scenario-profile-active-scenario {
    background-color: var(--mode-scenario-soft);
    box-shadow: inset 4px 0 0 var(--mode-scenario);
}

.scenario-active {
    background-color: var(--mode-scenario-soft);
    box-shadow: inset 4px 0 0 var(--mode-scenario);
}

.variation-active {
    background-color: var(--mode-scenario-soft);
    box-shadow: inset 4px 0 0 var(--mode-scenario);
}

#scenarioTable tbody tr.scenario-profile-active-profile:hover {
    background-color: #e2e6d8;
}

#scenarioTable tbody tr.scenario-profile-active-scenario:hover,
#scenarioTable tbody tr.scenario-active:hover {
    background-color: #eddccf;
}

/* —— Home landing —— */
.home-page {
    max-width: 1100px;
}

.home-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    min-height: 42vh;
    color: var(--muted);
}

.home-loading[hidden] {
    display: none !important;
}

.home-loading-mark {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    border: 2px solid var(--accent-light);
    border-top-color: var(--copper);
    animation: home-spin 0.85s linear infinite;
}

@keyframes home-spin {
    to { transform: rotate(360deg); }
}

@keyframes home-fade-up {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.home-state[hidden] {
    display: none !important;
}

.home-hero {
    position: relative;
    padding: 2.75rem 2.5rem 2.35rem;
    border-radius: 20px;
    border: 1px solid rgba(165, 107, 69, 0.28);
    background:
        radial-gradient(900px 320px at 92% -10%, rgba(165, 107, 69, 0.16), transparent 55%),
        radial-gradient(700px 280px at 0% 100%, rgba(92, 58, 40, 0.08), transparent 50%),
        linear-gradient(155deg, #fffcf8 0%, var(--parchment) 48%, #efe6db 100%);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.7) inset,
        0 18px 40px rgba(92, 58, 40, 0.07);
    overflow: hidden;
    animation: home-fade-up 0.55s ease both;
}

.home-hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;
    background: linear-gradient(90deg, #a56b45, var(--copper-deep), transparent 85%);
    opacity: 0.85;
}

.home-hero--compact {
    padding: 2.1rem 2rem 1.85rem;
}

.home-eyebrow {
    margin: 0 0 0.55rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #8a5a3c;
}

.home-title {
    margin: 0 0 0.75rem;
    font-family: "Source Serif 4", "Iowan Old Style", "Palatino Linotype", Georgia, serif;
    font-size: clamp(1.85rem, 3.4vw, 2.55rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.15;
    color: var(--copper-deep);
}

.home-lede {
    margin: 0;
    max-width: 38rem;
    font-size: 1.05rem;
    color: var(--muted);
    line-height: 1.55;
}

.home-plan-summary {
    max-width: 42rem;
    color: var(--ink);
}

.home-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.home-path {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin: 1.75rem 0 0;
    padding: 0;
}

.home-path-step {
    display: flex;
    gap: 0.9rem;
    padding: 1.25rem 1.2rem;
    border-radius: 16px;
    border: 1px solid var(--border);
    background: linear-gradient(180deg, #fffcf8, var(--parchment));
    box-shadow: 0 8px 22px rgba(28, 25, 22, 0.04);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    animation: home-fade-up 0.55s ease both;
}

.home-path-step:nth-child(1) { animation-delay: 0.08s; }
.home-path-step:nth-child(2) { animation-delay: 0.16s; }
.home-path-step:nth-child(3) { animation-delay: 0.24s; }

.home-path-step:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 28px rgba(92, 58, 40, 0.08);
}

.home-path-num {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: linear-gradient(155deg, #8a5a3c, var(--copper-deep));
    color: #fffcf8;
    font-size: 0.9rem;
    font-weight: 700;
}

.home-path-step h3 {
    margin: 0 0 0.3rem;
    font-size: 1.05rem;
    color: var(--copper-deep);
}

.home-path-step p {
    margin: 0;
    font-size: 0.92rem;
    color: var(--muted);
}

.home-checklist {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
    margin: 1.5rem 0 0.25rem;
}

.home-check {
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
    padding: 1.1rem 1.15rem;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: #fffcf8;
}

.home-check.is-done {
    border-color: rgba(95, 107, 74, 0.35);
    background: linear-gradient(135deg, var(--mode-baseline-soft), #fffcf8);
}

.home-check-mark {
    flex: 0 0 auto;
    width: 1.55rem;
    height: 1.55rem;
    border-radius: 50%;
    border: 1.5px solid var(--accent-light);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--mode-baseline);
    background: #fff;
}

.home-check.is-done .home-check-mark {
    border-color: var(--mode-baseline);
    background: var(--mode-baseline);
    color: #fff;
}

.home-check h3 {
    margin: 0 0 0.2rem;
    font-size: 0.98rem;
    color: var(--ink);
}

.home-check p {
    margin: 0;
    font-size: 0.88rem;
    color: var(--muted);
}

.home-metric-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.9rem;
    margin-top: 1.5rem;
}

.home-metric {
    padding: 1.1rem 1.15rem;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: linear-gradient(180deg, #fffcf8, var(--parchment));
    box-shadow: 0 6px 18px rgba(28, 25, 22, 0.04);
    animation: home-fade-up 0.5s ease both;
}

.home-metric:nth-child(1) { animation-delay: 0.06s; }
.home-metric:nth-child(2) { animation-delay: 0.12s; }
.home-metric:nth-child(3) { animation-delay: 0.18s; }
.home-metric:nth-child(4) { animation-delay: 0.24s; }

.home-metric h4 {
    margin: 0 0 0.35rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--muted);
}

.home-metric p {
    margin: 0;
    font-family: "Source Serif 4", Georgia, serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--copper-deep);
}

.home-preview {
    margin-top: 1.35rem;
}

.home-preview[hidden] {
    display: none !important;
}

.home-preview-card {
    padding: 1.25rem 1.35rem 1.1rem;
    background: linear-gradient(165deg, #fffcf8, var(--parchment));
}

.home-preview-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.home-preview-head h3 {
    margin: 0;
    font-size: 1.05rem;
    color: var(--copper-deep);
}

.home-preview-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--copper);
    text-decoration: none;
}

.home-preview-link:hover {
    text-decoration: underline;
}

.home-preview-chart {
    min-height: 220px;
}

.home-error {
    color: var(--danger);
    margin-bottom: 0.75rem;
}

.key-inputs-block {
    margin: 0 0 1.5rem;
    padding: 1.25rem 1.35rem;
    background: linear-gradient(180deg, #fffcf8, var(--parchment));
    border: 1px solid var(--border);
    border-radius: 14px;
}

.key-inputs-block h3 {
    margin: 0 0 0.85rem;
    font-size: 1.05rem;
    color: var(--copper-deep);
}

.key-inputs-block .summary-grid {
    margin-bottom: 0;
}

.projections-chart-grid {
    margin-bottom: 1.5rem;
}

.results-summary-grid {
    margin-bottom: 1.5rem;
}

.summary-card {
    background: linear-gradient(180deg, #fffcf8, var(--parchment));
    border: 1px solid var(--border);
}

.text-summary {
    background: linear-gradient(180deg, #fffcf8, var(--parchment));
    border: 1px solid var(--border);
}

@media (max-width: 900px) {
    .home-path,
    .home-checklist,
    .home-metric-grid {
        grid-template-columns: 1fr;
    }

    .home-hero {
        padding: 2rem 1.35rem 1.85rem;
    }
}

/* —— Public lead-magnet landing (index.php) —— */
.landing-body {
    overflow-x: hidden;
    background:
        radial-gradient(900px 380px at 92% -8%, rgba(92, 58, 40, 0.045), transparent 55%),
        radial-gradient(720px 320px at 6% 18%, rgba(70, 95, 115, 0.06), transparent 50%),
        linear-gradient(180deg, #f6f7f6 0%, #f2f3f1 26%, #efece6 58%, var(--bg) 100%);
}

.landing-header .brand h1 {
    font-size: clamp(1.05rem, 2.2vw, 1.22rem);
}

.landing {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 1.5rem 3rem;
}

.landing-eyebrow {
    margin: 0 0 0.65rem;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #8a5a3c;
}

.landing-muted {
    color: var(--muted);
    margin: 0 0 1.1rem;
    font-size: 0.98rem;
    line-height: 1.55;
}

.landing-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.65rem;
}

.landing-cta-row--center {
    justify-content: center;
}

.btn-lg {
    padding: 0.78rem 1.35rem;
    font-size: 1rem;
}

/* Hero — split copy + product collage */
.landing-hero {
    position: relative;
    margin: 0 0 2.75rem;
    padding: clamp(1.75rem, 4vw, 3rem) clamp(1.25rem, 4vw, 2.5rem) clamp(2.25rem, 5vw, 3.75rem);
    overflow: visible;
    isolation: isolate;
    background:
        radial-gradient(980px 420px at 78% 12%, rgba(165, 107, 69, 0.09), transparent 58%),
        radial-gradient(640px 360px at 8% 88%, rgba(70, 95, 115, 0.08), transparent 55%),
        linear-gradient(165deg, #fbfcfb 0%, #f3f4f2 44%, #e9ebe7 100%);
    border-bottom: 1px solid rgba(215, 205, 192, 0.85);
    animation: home-fade-up 0.6s ease both;
}

.landing-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image:
        linear-gradient(rgba(28, 25, 22, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(28, 25, 22, 0.025) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent 88%);
    pointer-events: none;
}

.landing-hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    height: 3px;
    background: linear-gradient(90deg, #a56b45, var(--copper-deep), transparent 78%);
    opacity: 0.85;
}

.landing-hero-stage {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: clamp(1.5rem, 3.5vw, 3rem);
    align-items: center;
    max-width: 1180px;
    margin: 0 auto;
}

.landing-hero-copy {
    max-width: 34rem;
    animation: home-fade-up 0.7s ease both;
}

.landing-hero-title {
    margin: 0 0 1rem;
    font-family: "Source Serif 4", "Iowan Old Style", "Palatino Linotype", Georgia, serif;
    font-size: clamp(1.85rem, 3.8vw, 2.85rem);
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.12;
    color: var(--ink);
}

.landing-hero-sub {
    margin: 0 0 0.75rem;
    font-size: 1.12rem;
    font-weight: 500;
    color: var(--ink);
    line-height: 1.45;
    max-width: 32rem;
}

.landing-hero-lede {
    margin: 0;
    font-size: 1.05rem;
    color: var(--muted);
    line-height: 1.6;
    max-width: 32rem;
}

.landing-hero .landing-cta-row {
    margin-top: 1.5rem;
}

.landing-hero .btn-ghost {
    background: rgba(255, 252, 248, 0.72);
    border-color: rgba(165, 107, 69, 0.35);
    color: var(--copper-deep);
}

.landing-hero .btn-ghost:hover {
    background: #fff;
    border-color: var(--copper);
    color: var(--copper-deep);
}

.landing-hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 0;
    margin: 1.35rem 0 0;
    padding: 0;
    list-style: none;
    color: var(--muted);
    font-size: 0.86rem;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.landing-hero-trust li {
    display: inline-flex;
    align-items: center;
}

.landing-hero-trust li:not(:last-child)::after {
    content: "";
    display: inline-block;
    width: 1px;
    height: 0.85em;
    margin: 0 0.7rem;
    background: rgba(109, 100, 90, 0.35);
}

.landing-hero-visual {
    position: relative;
    animation: home-fade-up 0.85s ease 0.08s both;
}

.landing-hero-collage {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    grid-template-areas:
        "projections projections"
        "accounts charts";
    gap: 0.85rem 0.9rem;
    align-items: start;
    perspective: 1200px;
    padding: 0.35rem 0.25rem 0.5rem;
}

.landing-hero-shot {
    position: relative;
    display: flex;
    flex-direction: column;
    margin: 0;
    overflow: visible;
    border-radius: 14px;
    border: 1px solid rgba(28, 25, 22, 0.08);
    background: #fff;
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.9) inset,
        0 18px 44px rgba(28, 25, 22, 0.12),
        0 4px 12px rgba(92, 58, 40, 0.06);
    transform: translateY(0) rotate(var(--shot-rot, 0deg));
}

.landing-hero-shot-media {
    display: block;
    overflow: hidden;
    border-radius: 14px 14px 0 0;
    min-height: 0;
    background: #f7f5f2;
}

.landing-hero-shot img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: top left;
}

.landing-hero-shot-cap {
    flex: 0 0 auto;
    margin: 0;
    padding: 0.55rem 0.75rem 0.65rem;
    border-top: 1px solid rgba(165, 107, 69, 0.18);
    border-radius: 0 0 14px 14px;
    background: linear-gradient(180deg, #fffdfb, #f7f1ea);
    color: var(--copper-deep);
    font-size: clamp(0.74rem, 1.1vw, 0.86rem);
    font-weight: 600;
    letter-spacing: 0.005em;
    line-height: 1.35;
}

.landing-hero-shot-cap__abbr {
    display: none;
}

.landing-hero-shot--projections {
    --shot-rot: -1deg;
    grid-area: projections;
    z-index: 1;
    animation: landing-hero-float 8s ease-in-out infinite alternate;
}

.landing-hero-shot--projections .landing-hero-shot-media {
    max-height: clamp(11rem, 28vw, 16.5rem);
}

.landing-hero-shot--projections img {
    width: 100%;
    height: 100%;
    max-height: inherit;
    object-fit: cover;
}

.landing-hero-shot--charts {
    --shot-rot: 1.6deg;
    grid-area: charts;
    z-index: 2;
    margin-top: 0.35rem;
    animation: landing-hero-float 9.5s ease-in-out 0.6s infinite alternate-reverse;
}

.landing-hero-shot--charts .landing-hero-shot-media {
    max-height: clamp(8.5rem, 20vw, 12.5rem);
}

.landing-hero-shot--charts img {
    width: 100%;
    height: 100%;
    max-height: inherit;
    object-fit: cover;
}

.landing-hero-shot--accounts {
    --shot-rot: -1.8deg;
    grid-area: accounts;
    z-index: 3;
    margin-top: 0.15rem;
    animation: landing-hero-float 7.2s ease-in-out 0.3s infinite alternate;
}

.landing-hero-shot--accounts .landing-hero-shot-media {
    max-height: none;
}

.landing-hero-shot--accounts img {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: top left;
}

@keyframes landing-hero-float {
    from { transform: translateY(0) rotate(var(--shot-rot, 0deg)); }
    to { transform: translateY(-10px) rotate(var(--shot-rot, 0deg)); }
}

@media (prefers-reduced-motion: reduce) {
    .landing-hero-shot--projections,
    .landing-hero-shot--charts,
    .landing-hero-shot--accounts {
        animation: none;
    }
}

html:has(.landing-body) {
    scroll-behavior: smooth;
}

#penny-saved {
    scroll-margin-top: calc(var(--header-height) + 0.75rem);
}

.landing-section {
    margin: 0 0 3.25rem;
    animation: home-fade-up 0.55s ease both;
}

.landing-section-head {
    margin-bottom: 1.5rem;
    max-width: 40rem;
}

.landing-section-head--tight {
    margin-bottom: 1rem;
}

.landing-section-head h2,
.landing-section-head h3 {
    margin: 0 0 0.55rem;
    font-family: "Source Serif 4", Georgia, serif;
    font-size: clamp(1.55rem, 2.8vw, 2.05rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--copper-deep);
    line-height: 1.2;
}

.landing-section-head h3 {
    font-size: clamp(1.25rem, 2.2vw, 1.5rem);
}

.landing-section-lede {
    margin: 0;
    color: var(--muted);
    font-size: 1.02rem;
    line-height: 1.55;
}

.landing-section-lede em {
    font-style: italic;
    color: var(--ink);
}

/* Penny Saved interactive stage */
.landing-penny {
    border-radius: 18px;
    border: 1px solid var(--border);
    background: linear-gradient(180deg, #fffcf8, var(--parchment));
    box-shadow: 0 14px 36px rgba(28, 25, 22, 0.05);
    overflow: hidden;
}

.landing-journey-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    padding: 1rem 1.15rem;
    border-bottom: 1px solid var(--border);
    background: rgba(255, 252, 248, 0.85);
}

.landing-journey-chip {
    appearance: none;
    border: 1px solid var(--border);
    background: #fff;
    color: var(--muted);
    font: inherit;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.55rem 0.95rem;
    border-radius: 999px;
    cursor: pointer;
    transition: color 0.16s ease, border-color 0.16s ease, background 0.16s ease, transform 0.16s ease;
}

.landing-journey-chip:hover {
    color: var(--ink);
    border-color: rgba(165, 107, 69, 0.45);
}

.landing-journey-chip.is-active {
    color: #fff8f2;
    border-color: transparent;
    background: linear-gradient(155deg, #8a5a3c, var(--copper-deep));
    box-shadow: 0 2px 10px rgba(74, 46, 32, 0.22);
}

.landing-penny-stage {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 0;
}

.landing-penny-controls {
    padding: 1.5rem 1.5rem 1.75rem;
    border-right: 1px solid var(--border);
}

.landing-penny-controls h3 {
    margin: 0 0 0.4rem;
    font-family: "Source Serif 4", Georgia, serif;
    font-size: 1.35rem;
    color: var(--copper-deep);
}

.landing-penny-outcome {
    padding: 1.5rem 1.5rem 1.75rem;
    background:
        radial-gradient(420px 200px at 100% 0%, rgba(165, 107, 69, 0.12), transparent 60%),
        linear-gradient(165deg, #faf4ed, #f3ebe2);
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100%;
    animation: landing-result-in 0.35s ease both;
}

@keyframes landing-result-in {
    from { opacity: 0.35; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
}

.landing-input-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem 1rem;
    margin: 1rem 0 1.15rem;
}

.landing-input-grid .form-group {
    margin: 0;
}

.landing-input-grid label {
    display: block;
    margin-bottom: 0.3rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--muted);
}

.landing-result-label {
    margin: 0 0 0.35rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
}

.landing-result-big {
    margin: 0 0 0.45rem;
    font-family: "Source Serif 4", Georgia, serif;
    font-size: clamp(2rem, 4vw, 2.65rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.1;
    color: var(--copper-deep);
}

.landing-result-big--sm {
    font-size: clamp(1.45rem, 3vw, 1.85rem);
}

.landing-result-sub {
    margin: 0 0 1rem;
    font-size: 0.92rem;
    color: var(--muted);
}

.landing-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.65rem;
    margin-bottom: 0.85rem;
}

.landing-metric {
    padding: 0.7rem 0.75rem;
    border-radius: 10px;
    border: 1px solid rgba(215, 205, 192, 0.9);
    background: rgba(255, 252, 248, 0.8);
}

.landing-metric-label {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--muted);
    margin-bottom: 0.2rem;
    line-height: 1.3;
}

.landing-metric-value {
    display: block;
    font-family: "Source Serif 4", Georgia, serif;
    font-size: 1.02rem;
    font-weight: 700;
    color: var(--copper);
    font-variant-numeric: tabular-nums;
}

.landing-tease {
    margin: 0;
    font-size: 0.88rem;
    color: var(--muted);
    font-style: italic;
    line-height: 1.45;
}

.landing-custom {
    margin-top: 1.75rem;
    padding: 1.5rem 1.5rem 1.65rem;
    border-radius: 18px;
    border: 1px solid var(--border);
    background: #fffcf8;
    box-shadow: 0 10px 28px rgba(28, 25, 22, 0.04);
}

.landing-calc-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin-bottom: 1.15rem;
}

.landing-calc-tab {
    appearance: none;
    border: none;
    background: transparent;
    color: var(--muted);
    font: inherit;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 0.55rem 0.9rem;
    border-radius: 8px;
    cursor: pointer;
    position: relative;
    transition: color 0.15s ease, background 0.15s ease;
}

.landing-calc-tab:hover {
    color: var(--ink);
    background: var(--accent-soft);
}

.landing-calc-tab.is-active {
    color: var(--copper-deep);
    background: var(--accent-soft);
}

.landing-calc-tab.is-active::after {
    content: "";
    position: absolute;
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.2rem;
    height: 2px;
    border-radius: 1px;
    background: linear-gradient(90deg, #a56b45, var(--copper-deep));
}

.landing-compact-result {
    margin-top: 1.25rem;
    padding-top: 1.15rem;
    border-top: 1px solid var(--border);
}

.landing-compact-result--panel {
    margin-top: 0;
    padding: 1.25rem 1.35rem;
    border: 1px solid var(--border);
    border-radius: 14px;
    border-top: 1px solid var(--border);
    background: linear-gradient(165deg, #fffcf8, var(--parchment));
}

.landing-compare {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.landing-diff {
    margin: 0 0 1rem;
    font-family: "Source Serif 4", Georgia, serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--copper);
}

/* Capabilities */
.landing-section--capabilities {
    padding: 2rem 1.75rem 2.15rem;
    border-radius: 20px;
    border: 1px solid rgba(165, 107, 69, 0.25);
    background:
        radial-gradient(700px 260px at 0% 0%, rgba(165, 107, 69, 0.1), transparent 55%),
        linear-gradient(165deg, #fffcf8 0%, var(--parchment) 100%);
}

.landing-cap-list {
    list-style: none;
    margin: 0 0 1.5rem;
    padding: 0;
    display: grid;
    gap: 0.95rem;
}

.landing-cap-list li {
    position: relative;
    padding: 1.1rem 1.2rem 1.1rem 1.45rem;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: rgba(255, 252, 248, 0.92);
    color: var(--ink);
    font-size: 0.98rem;
    line-height: 1.55;
    border-left: 3px solid var(--copper);
}

.landing-cap-list strong {
    display: block;
    margin-bottom: 0.25rem;
    font-family: "Source Serif 4", Georgia, serif;
    font-size: 1.08rem;
    color: var(--copper-deep);
}

/* Simple retirement preview */
.landing-preview-calc {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 1.25rem;
    align-items: start;
}

.landing-preview-form {
    padding: 1.5rem;
    border-radius: 18px;
    border: 1px solid var(--border);
    background: #fffcf8;
    box-shadow: 0 10px 28px rgba(28, 25, 22, 0.04);
}

.landing-preview-side {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.landing-power-callout {
    padding: 1.35rem 1.4rem;
    border-radius: 14px;
    border: 1px solid rgba(165, 107, 69, 0.35);
    background:
        linear-gradient(155deg, rgba(138, 90, 60, 0.08), transparent 55%),
        linear-gradient(180deg, #fffcf8, #f3ebe2);
}

.landing-power-callout h3 {
    margin: 0 0 0.5rem;
    font-family: "Source Serif 4", Georgia, serif;
    font-size: 1.15rem;
    color: var(--copper-deep);
}

.landing-power-callout p {
    margin: 0 0 1rem;
    font-size: 0.95rem;
    color: var(--muted);
    line-height: 1.55;
}

/* Final CTA */
.landing-final-cta {
    text-align: center;
    padding: clamp(2.2rem, 5vw, 3.25rem) 1.5rem;
    border-radius: 22px;
    border: 1px solid rgba(165, 107, 69, 0.3);
    background:
        radial-gradient(600px 240px at 50% -20%, rgba(165, 107, 69, 0.18), transparent 60%),
        linear-gradient(155deg, #8a5a3c 0%, var(--copper) 48%, var(--copper-deep) 100%);
    color: #fff8f2;
    box-shadow: 0 18px 40px rgba(74, 46, 32, 0.18);
    animation: home-fade-up 0.55s ease both;
}

.landing-final-cta h2 {
    margin: 0 0 0.65rem;
    font-family: "Source Serif 4", Georgia, serif;
    font-size: clamp(1.65rem, 3.2vw, 2.2rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #fff8f2;
}

.landing-final-cta p {
    margin: 0 auto;
    max-width: 34rem;
    font-size: 1.05rem;
    line-height: 1.55;
    color: rgba(255, 248, 242, 0.88);
}

.landing-final-cta .btn-primary {
    background: #fffcf8;
    color: var(--copper-deep);
    box-shadow: none;
}

.landing-final-cta .btn-primary:hover {
    background: #fff;
    color: var(--copper-deep);
}

.landing-final-cta .btn-ghost {
    color: rgba(255, 248, 242, 0.92);
    border: 1px solid rgba(255, 248, 242, 0.35);
}

.landing-final-cta .btn-ghost:hover {
    color: #fff;
    background: rgba(255, 252, 248, 0.1);
}

.landing-footer {
    max-width: 1120px;
    margin: 0 auto;
    padding-top: 0.5rem;
}

.landing-footer p {
    max-width: 48rem;
}

@media (max-width: 980px) {
    .landing-hero-stage {
        grid-template-columns: 1fr;
        gap: 1.75rem;
        min-height: 0;
    }

    .landing-hero-copy {
        max-width: 40rem;
    }

    .landing-hero-visual {
        max-width: 36rem;
        margin: 0 auto;
        width: 100%;
    }

    .landing-hero-shot--projections .landing-hero-shot-media {
        max-height: clamp(10rem, 42vw, 14rem);
    }

    .landing-hero-shot--charts .landing-hero-shot-media {
        max-height: clamp(8rem, 32vw, 11rem);
    }

    .landing-hero-shot--charts,
    .landing-hero-shot--accounts {
        margin-top: 0;
    }
}

@media (max-width: 900px) {
    .landing-penny-stage,
    .landing-preview-calc,
    .landing-compare {
        grid-template-columns: 1fr;
    }

    .landing-penny-controls {
        border-right: none;
        border-bottom: 1px solid var(--border);
    }

    .landing-metrics {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .landing {
        padding: 0 1rem 2.5rem;
    }

    .landing-hero {
        padding: 1.35rem 1rem 2rem;
        margin-bottom: 2.25rem;
    }

    .landing-hero-title {
        font-size: clamp(1.65rem, 7vw, 2.05rem);
    }

    .landing-hero-sub {
        font-size: 1.02rem;
    }

    .landing-hero-lede {
        font-size: 0.98rem;
    }

    .landing-hero .landing-cta-row {
        flex-direction: column;
        align-items: stretch;
    }

    .landing-hero .landing-cta-row .btn {
        width: 100%;
        text-align: center;
    }

    .landing-hero-trust {
        gap: 0.45rem 0;
        font-size: 0.8rem;
    }

    .landing-hero-trust li:not(:last-child)::after {
        margin: 0 0.55rem;
    }

    .landing-hero-visual {
        max-width: none;
    }

    .landing-hero-collage {
        gap: 0.7rem 0.65rem;
        padding: 0.2rem 0.1rem 0.35rem;
    }

    .landing-hero-shot {
        border-radius: 10px;
    }

    .landing-hero-shot-media {
        border-radius: 10px 10px 0 0;
    }

    .landing-hero-shot-cap {
        padding: 0.42rem 0.55rem 0.5rem;
        font-size: 0.68rem;
        line-height: 1.3;
        border-radius: 0 0 10px 10px;
    }

    .landing-hero-shot-cap__full {
        display: none;
    }

    .landing-hero-shot-cap__abbr {
        display: inline;
    }

    .landing-hero-shot--projections {
        --shot-rot: -0.5deg;
    }

    .landing-hero-shot--projections .landing-hero-shot-media {
        max-height: 9.5rem;
    }

    .landing-hero-shot--charts {
        --shot-rot: 1deg;
    }

    .landing-hero-shot--charts .landing-hero-shot-media {
        max-height: 7.75rem;
    }

    .landing-hero-shot--accounts {
        --shot-rot: -1deg;
    }

    .landing-input-grid {
        grid-template-columns: 1fr;
    }

    .landing-journey-chips {
        flex-direction: column;
    }

    .landing-journey-chip {
        width: 100%;
        text-align: center;
        border-radius: 10px;
    }

    .landing-section--capabilities {
        padding: 1.5rem 1.15rem 1.65rem;
    }
}

