:root {
	--bg: oklch(1 0 0);
	--surface: oklch(1 0 0);
	--text: oklch(0.148 0.004 228.8);
	--text-secondary: oklch(0.56 0.021 213.5);
	--text-tertiary: oklch(0.56 0.021 213.5);
	--border: oklch(0.925 0.005 214.3);
	--accent: oklch(0.218 0.008 223.9);
	--accent-foreground: oklch(0.987 0.002 197.1);
	--accent-strong: color-mix(in oklab, oklch(0.218 0.008 223.9) 80%, oklch(1 0 0) 20%);
	--accent-soft: oklch(0.963 0.002 197.1);
	--ring: oklch(0.723 0.014 214.4);
	--success: #16794e;
	--success-soft: #e7f7f0;
	--error: #d1403a;
	--error-soft: #fdeceb;
	--warning: #8c5908;
	--warning-soft: #fdf1de;
	--warning-border: #f0d19d;
	--shadow: 0 1px 2px rgba(20, 24, 40, 0.04), 0 8px 24px rgba(20, 24, 40, 0.06);
	color-scheme: light;

	/* Categorical chart palette - ported 1:1 from StableColorPalette.swift's
	   `slots`, so a category/account renders the same hue on phone and companion. */
	--chart-1: #2a78d6;
	--chart-2: #008300;
	--chart-3: #e87ba4;
	--chart-4: #eda100;
	--chart-5: #1baf7a;
	--chart-6: #eb6834;
	--chart-7: #4a3aa7;
	--chart-8: #e34948;
	--chart-other: #898781;
}

@media (prefers-color-scheme: dark) {
	:root {
		--bg: oklch(0.148 0.004 228.8);
		--surface: oklch(0.218 0.008 223.9);
		--text: oklch(0.987 0.002 197.1);
		--text-secondary: oklch(0.723 0.014 214.4);
		--text-tertiary: oklch(0.723 0.014 214.4);
		--border: oklch(1 0 0 / 10%);
		--accent: oklch(0.925 0.005 214.3);
		--accent-foreground: oklch(0.218 0.008 223.9);
		--accent-strong: color-mix(in oklab, oklch(0.925 0.005 214.3) 80%, oklch(0.148 0.004 228.8) 20%);
		--accent-soft: oklch(0.275 0.011 216.9);
		--ring: oklch(0.56 0.021 213.5);
		--success: #3ecf8e;
		--success-soft: #123326;
		--error: #ff6b64;
		--error-soft: #3a1a1a;
		--warning: #f0b94e;
		--warning-soft: #2e2410;
		--warning-border: #4d3c17;
		--shadow: 0 1px 2px rgba(0, 0, 0, 0.3), 0 12px 32px rgba(0, 0, 0, 0.35);
		color-scheme: dark;

		--chart-1: #3987e5;
		--chart-2: #008300;
		--chart-3: #d55181;
		--chart-4: #c98500;
		--chart-5: #199e70;
		--chart-6: #d95926;
		--chart-7: #9085e9;
		--chart-8: #e66767;
		--chart-other: #898781;
	}
}

* {
	box-sizing: border-box;
}

body {
	margin: 0;
	background: var(--bg);
	color: var(--text);
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
}
.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;
}

.wrap {
	max-width: 1040px;
	margin: 0 auto;
	padding: 0 24px;
}

/* Wider than the marketing site's .wrap - this is a large-screen dashboard, not a
   landing page, kept as its own class so a future shared page can still use the
   narrower marketing width. */
.dashboard-wrap {
	max-width: 1400px;
	margin: 0 auto;
	padding: 24px 32px 64px;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 14px 28px;
	border-radius: 10px;
	border: 1px solid transparent;
	background: var(--accent);
	color: var(--accent-foreground);
	font-size: 1rem;
	font-weight: 700;
	text-decoration: none;
	cursor: pointer;
	transition: background 0.15s ease, transform 0.1s ease;
}

.btn:hover {
	background: var(--accent-strong);
}

.btn:active {
	transform: translateY(1px);
}

.btn:focus-visible {
	outline: none;
	border-color: var(--ring);
	box-shadow: 0 0 0 3px color-mix(in oklab, var(--ring) 50%, transparent);
}

.btn:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

.pill {
	display: inline-block;
	padding: 2px 10px;
	border-radius: 999px;
	font-size: 0.7rem;
	font-weight: 800;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	white-space: nowrap;
}

.pill--neutral {
	background: var(--accent-soft);
	border: 1px solid var(--accent-strong);
	color: var(--accent-strong);
}

.pill--success {
	background: var(--success-soft);
	border: 1px solid color-mix(in oklab, var(--success) 60%, transparent);
	color: var(--success);
}

.pill--warning {
	background: var(--warning-soft);
	border: 1px solid var(--warning-border);
	color: var(--warning);
}

/*
 * Card/section headers must read at least as prominent as the content beneath
 * them - full-contrast ink at a real heading size, not the marketing site's
 * muted+tiny+caps treatment (see .changelog-group-title). Mirrors the iOS app's
 * .headline treatment for the same card titles ("Net Worth", "Coming Up", etc).
 */
.section-header {
	margin: 0 0 4px;
	font-size: 1.05rem;
	font-weight: 700;
	letter-spacing: -0.01em;
	color: var(--text);
}
._topbar_fintf_1 {
	padding: 20px 0;
	border-bottom: 1px solid var(--border);
}

._inner_fintf_6 {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 10px;
}

._logo_fintf_14 {
	font-weight: 700;
	font-size: 1.05rem;
	letter-spacing: -0.01em;
}

._logoAccent_fintf_20 {
	color: var(--accent);
}

._disclosure_fintf_24 {
	display: flex;
	align-items: center;
	gap: 8px;
	color: var(--text-secondary);
	font-size: 0.85rem;
}
._screen_1oxcs_1 {
	min-height: calc(100vh - 73px);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
}

._panel_1oxcs_9 {
	width: 100%;
	max-width: 420px;
	text-align: center;
}

._eyebrow_1oxcs_15 {
	display: inline-block;
	margin: 0 0 18px;
	padding: 6px 14px;
	border-radius: 999px;
	background: var(--accent-soft);
	color: var(--accent-strong);
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.02em;
}

._title_1oxcs_27 {
	margin: 0 0 12px;
	font-size: clamp(1.6rem, 4vw, 2rem);
	font-weight: 800;
	letter-spacing: -0.02em;
}

._subtitle_1oxcs_34 {
	margin: 0 0 32px;
	color: var(--text-secondary);
	font-size: 1rem;
}

._digits_1oxcs_40 {
	display: flex;
	gap: 10px;
	justify-content: center;
	margin-bottom: 24px;
}

._digit_1oxcs_40 {
	width: 52px;
	height: 64px;
	border-radius: 12px;
	border: 1px solid var(--border);
	background: var(--surface);
	color: var(--text);
	font-size: 1.6rem;
	font-weight: 700;
	text-align: center;
	font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

._digit_1oxcs_40:focus-visible {
	outline: none;
	border-color: var(--ring);
	box-shadow: 0 0 0 3px color-mix(in oklab, var(--ring) 50%, transparent);
}

._error_1oxcs_66 {
	margin: -8px 0 24px;
	padding: 12px 16px;
	border-radius: 10px;
	background: var(--error-soft);
	color: var(--error);
	font-size: 0.88rem;
	font-weight: 600;
}

._spinner_1oxcs_76 {
	width: 40px;
	height: 40px;
	margin: 0 auto 28px;
	border-radius: 50%;
	border: 3px solid var(--border);
	border-top-color: var(--accent);
	animation: _spin_1oxcs_76 0.8s linear infinite;
}

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

._checkmark_1oxcs_92 {
	width: 56px;
	height: 56px;
	margin: 0 auto 24px;
	border-radius: 50%;
	background: var(--success-soft);
	color: var(--success);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.6rem;
}

._debugPanel_1oxcs_105 {
	margin: 0 0 24px;
	padding: 16px;
	border-radius: 12px;
	border: 1px solid var(--border);
	background: var(--surface);
	text-align: left;
}

._debugLabel_1oxcs_114 {
	margin: 0 0 8px;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	color: var(--text-secondary);
}

._debugMessages_1oxcs_123 {
	list-style: none;
	margin: 0 0 10px;
	padding: 0;
	max-height: 140px;
	overflow-y: auto;
	display: flex;
	flex-direction: column;
	gap: 4px;
	font-size: 0.85rem;
	font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

._debugEmpty_1oxcs_136 {
	color: var(--text-tertiary);
	font-style: italic;
}

._debugForm_1oxcs_141 {
	display: flex;
	gap: 8px;
}

._debugInput_1oxcs_146 {
	flex: 1;
	padding: 8px 10px;
	border-radius: 8px;
	border: 1px solid var(--border);
	background: var(--bg);
	color: var(--text);
	font-size: 0.88rem;
}

._debugInput_1oxcs_146:focus-visible {
	outline: none;
	border-color: var(--ring);
	box-shadow: 0 0 0 3px color-mix(in oklab, var(--ring) 50%, transparent);
}

._debugSend_1oxcs_162 {
	padding: 8px 14px;
	border-radius: 8px;
	border: 1px solid var(--border);
	background: var(--accent-soft);
	color: var(--accent-strong);
	font-weight: 700;
	font-size: 0.85rem;
	cursor: pointer;
}

._debugSend_1oxcs_162:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

._resend_1oxcs_178 {
	display: inline-block;
	margin-top: 8px;
	color: var(--text-secondary);
	font-size: 0.88rem;
	font-weight: 600;
	background: none;
	border: none;
	cursor: pointer;
	text-decoration: underline;
}
._card_sp2zk_1 {
	background: var(--surface);
	border-radius: 14px;
	padding: 24px;
	box-shadow: 0 0 0 1px color-mix(in oklab, var(--text) 10%, transparent);
}
._headline_1wjgc_1 {
	margin: 0 0 16px;
	font-size: 2.1rem;
	font-weight: 800;
	letter-spacing: -0.02em;
}

._row_1wjgc_8 {
	display: flex;
	gap: 24px;
}

._stat_1wjgc_13 {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

._statLabel_1wjgc_19 {
	font-size: 0.8rem;
	color: var(--text-secondary);
}

._statValue_1wjgc_24 {
	font-size: 1.05rem;
	font-weight: 700;
}

._assets_1wjgc_29 {
	color: var(--success);
}

._liabilities_1wjgc_33 {
	color: var(--error);
}
._chartWrap_14q62_1 {
	position: relative;
}

._svg_14q62_5 {
	display: block;
	width: 100%;
	height: auto;
	overflow: visible;
}

._point_14q62_12 {
	fill: var(--surface);
	cursor: pointer;
}

._point_14q62_12:focus-visible {
	outline: none;
	stroke: var(--ring);
	stroke-width: 1.6;
}

._tooltip_14q62_23 {
	position: absolute;
	transform: translate(-50%, -100%);
	margin-top: -10px;
	padding: 6px 10px;
	border-radius: 8px;
	background: var(--text);
	color: var(--bg);
	font-size: 0.78rem;
	font-weight: 600;
	white-space: nowrap;
	pointer-events: none;
	box-shadow: var(--shadow);
	z-index: 10;
}

._tooltipSecondary_14q62_39 {
	opacity: 0.7;
	font-weight: 500;
	margin-left: 6px;
}

._barListRow_14q62_45 {
	display: grid;
	grid-template-columns: 120px 1fr auto;
	align-items: center;
	gap: 12px;
	padding: 6px 0;
}

._barListName_14q62_53 {
	font-size: 0.88rem;
	color: var(--text-secondary);
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

._barTrack_14q62_61 {
	position: relative;
	height: 10px;
	border-radius: 5px;
	background: var(--accent-soft);
}

._barFill_14q62_68 {
	position: absolute;
	inset: 0;
	border-radius: 5px;
	transition: width 0.2s ease;
}

._barListValue_14q62_75 {
	font-size: 0.88rem;
	font-weight: 700;
	text-align: right;
	white-space: nowrap;
}

._legend_14q62_82 {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

._legendRow_14q62_88 {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 0.88rem;
}

._legendDot_14q62_95 {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	flex-shrink: 0;
}

._legendName_14q62_102 {
	flex: 1;
	color: var(--text);
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

._legendMeta_14q62_110 {
	display: flex;
	gap: 8px;
	align-items: center;
	color: var(--text-secondary);
}

._legendPercent_14q62_117 {
	min-width: 34px;
	text-align: right;
}

._donutRow_14q62_122 {
	display: flex;
	align-items: center;
	gap: 24px;
}

._donutSvgWrap_14q62_128 {
	position: relative;
	flex-shrink: 0;
	width: 140px;
	height: 140px;
}

._donutCenter_14q62_135 {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
}

._donutCenterValue_14q62_145 {
	font-size: 1.1rem;
	font-weight: 800;
}

._donutCenterLabel_14q62_150 {
	font-size: 0.7rem;
	color: var(--text-secondary);
}
._header_pj04w_1 {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	margin-bottom: 28px;
}

._headerTitle_pj04w_8 {
	margin: 0;
	font-size: 1.6rem;
	font-weight: 800;
	letter-spacing: -0.02em;
}

._headerMeta_pj04w_15 {
	color: var(--text-secondary);
	font-size: 0.88rem;
}

._grid_pj04w_20 {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	align-items: start;
}

._span2_pj04w_27 {
	grid-column: span 2;
}

._span3_pj04w_31 {
	grid-column: span 3;
}

@media (max-width: 1100px) {
	._grid_pj04w_20 {
		grid-template-columns: repeat(2, 1fr);
	}
	._span3_pj04w_31 {
		grid-column: span 2;
	}
}

@media (max-width: 720px) {
	._grid_pj04w_20 {
		grid-template-columns: 1fr;
	}
	._span2_pj04w_27,
	._span3_pj04w_31 {
		grid-column: span 1;
	}
}

._cardHeadRow_pj04w_54 {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	margin-bottom: 16px;
}
._amount_1uvs5_1 {
	font-weight: 700;
}

._income_1uvs5_5 {
	color: var(--success);
}
._toggle_15l3b_1 {
	display: inline-flex;
	border: 1px solid var(--border);
	border-radius: 999px;
	padding: 2px;
}

._toggleBtn_15l3b_8 {
	border: none;
	background: none;
	padding: 5px 14px;
	border-radius: 999px;
	font-size: 0.8rem;
	font-weight: 700;
	color: var(--text-secondary);
	cursor: pointer;
}

._toggleBtnActive_15l3b_19 {
	background: var(--accent);
	color: var(--accent-foreground);
}

._list_15l3b_24 {
	list-style: none;
	margin: 12px 0 0;
	padding: 0;
}

._row_15l3b_30 {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	padding: 10px 0;
	border-top: 1px solid var(--border);
}

._row_15l3b_30:first-child {
	border-top: none;
}

._name_15l3b_42 {
	font-weight: 600;
	font-size: 0.94rem;
}

._due_15l3b_47 {
	color: var(--text-secondary);
	font-size: 0.82rem;
}

._empty_15l3b_52 {
	color: var(--text-secondary);
	font-size: 0.9rem;
	padding: 12px 0 0;
}
._list_1rl3g_1 {
	list-style: none;
	margin: 12px 0 0;
	padding: 0;
}

._row_1rl3g_7 {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	padding: 10px 0;
	border-top: 1px solid var(--border);
}

._row_1rl3g_7:first-child {
	border-top: none;
}

._merchant_1rl3g_19 {
	font-weight: 600;
	font-size: 0.94rem;
}

._date_1rl3g_24 {
	color: var(--text-secondary);
	font-size: 0.82rem;
}

._pending_1rl3g_29 {
	margin-left: 6px;
	color: var(--text-tertiary);
	font-size: 0.75rem;
	font-style: italic;
}
._row_li6w1_1 {
	padding: 10px 0;
	border-top: 1px solid var(--border);
}

._row_li6w1_1:first-child {
	border-top: none;
}

._rowHead_li6w1_10 {
	display: flex;
	justify-content: space-between;
	font-size: 0.9rem;
	margin-bottom: 6px;
}

._name_li6w1_17 {
	font-weight: 600;
}

._amounts_li6w1_21 {
	color: var(--text-secondary);
}

._over_li6w1_25 {
	color: var(--error);
	font-weight: 700;
}

._track_li6w1_30 {
	position: relative;
	height: 8px;
	border-radius: 4px;
	background: var(--accent-soft);
	overflow: hidden;
}

._fill_li6w1_38 {
	position: absolute;
	inset: 0;
	border-radius: 4px;
	background: var(--accent-strong);
}

._fillOver_li6w1_45 {
	background: var(--error);
}
._grid_dux12_1 {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}

@media (max-width: 720px) {
	._grid_dux12_1 {
		grid-template-columns: 1fr;
	}
}

._goal_dux12_13 {
	border: 1px solid var(--border);
	border-radius: 12px;
	padding: 16px;
}

._goalHead_dux12_19 {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 8px;
}

._emoji_dux12_26 {
	font-size: 1.3rem;
}

._name_dux12_30 {
	font-weight: 700;
	font-size: 0.94rem;
	flex: 1;
}

._amounts_dux12_36 {
	font-size: 0.85rem;
	color: var(--text-secondary);
	margin-bottom: 8px;
}

._track_dux12_42 {
	position: relative;
	height: 8px;
	border-radius: 4px;
	background: var(--accent-soft);
	margin-bottom: 8px;
}

._fill_dux12_50 {
	position: absolute;
	inset: 0;
	border-radius: 4px;
	background: var(--accent-strong);
}

._footRow_dux12_57 {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 0.78rem;
	color: var(--text-secondary);
}
