:root {
  --ink: #101815;
  --muted: #748079;
  --line: rgba(29, 52, 43, .1);
  --paper: #f4f5ef;
  --card: #fbfcf9;
  --deep: #062d23;
  --deep-2: #0b5842;
  --moss: #3f9767;
  --lime: #b8ee67;
  --sun: #f7c653;
  --coral: #ff7163;
  --sky: #52b7e9;
  --purple: #9b88ef;
  --shadow: 0 10px 28px rgba(30, 55, 45, .08);
  --radius: 28px;
  --tg-safe-top: 0px;
  --tg-safe-right: 0px;
  --tg-safe-bottom: 0px;
  --tg-safe-left: 0px;
  --tg-content-safe-top: 0px;
  --tg-content-safe-right: 0px;
  --tg-content-safe-bottom: 0px;
  --tg-content-safe-left: 0px;
  --safe-top: max(env(safe-area-inset-top, 0px), var(--tg-safe-top), var(--tg-content-safe-top));
  --safe-right: max(env(safe-area-inset-right, 0px), var(--tg-safe-right), var(--tg-content-safe-right));
  --safe-bottom: max(env(safe-area-inset-bottom, 0px), var(--tg-safe-bottom), var(--tg-content-safe-bottom));
  --safe-left: max(env(safe-area-inset-left, 0px), var(--tg-safe-left), var(--tg-content-safe-left));
  --app-stable-height: 100svh;
}

* { box-sizing: border-box; }
html { background: var(--paper); overscroll-behavior-y: none; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 80% -5%, rgba(183, 238, 103, .18), transparent 34%),
    radial-gradient(circle at -10% 45%, rgba(79, 183, 232, .1), transparent 28%),
    var(--paper);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
  min-height: var(--app-stable-height);
  overscroll-behavior-y: none;
}

button, input, select, textarea { font: inherit; }
button { color: inherit; touch-action: manipulation; }
button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid rgba(82, 183, 233, .42);
  outline-offset: 2px;
}

.app {
  width: min(100%, 520px);
  min-height: 100vh;
  margin: 0 auto;
  position: relative;
  overflow-x: hidden;
  min-height: var(--app-stable-height);
  padding:
    calc(var(--safe-top) + 18px)
    calc(var(--safe-right) + 18px)
    calc(146px + var(--safe-bottom))
    calc(var(--safe-left) + 18px);
}

.ambient { display: none; }

.app-header, .screen-title, .card-heading, .hero-top, .sheet-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.app-header { margin: 0 2px 24px; }
.app-header h1, .screen-title h2 { font-size: clamp(28px, 8vw, 38px); margin: 2px 0; letter-spacing: -.04em; }
.eyebrow { margin: 0; color: var(--moss); font-size: 11px; font-weight: 800; letter-spacing: .15em; }
.eyebrow.light { color: var(--lime); }
.subtle { margin: 0; color: var(--muted); font-size: 15px; }

.avatar-button {
  width: 56px; height: 56px; border: 0; padding: 0; border-radius: 50%;
  background: linear-gradient(145deg, #fff, #e7eadf); box-shadow: var(--shadow); position: relative;
}
.avatar-button.small { width: 48px; height: 48px; }
.avatar-button img { width: 100%; height: 100%; object-fit: cover; border-radius: inherit; }
.avatar-button span {
  position: absolute; right: -3px; bottom: -2px; min-width: 21px; height: 21px; padding: 0 4px;
  display: grid; place-items: center; border-radius: 50%; background: var(--lime); color: #173320;
  border: 2px solid var(--paper); font-size: 11px; font-weight: 900;
}

.screen { display: none; animation: reveal .2s ease both; }
.screen.active { display: block; }
@keyframes reveal { from { opacity: 0; transform: translateY(4px); } }
.screen-title { margin: 8px 2px 22px; }
.screen-title h2 { margin: 1px 0; }

.hero-card {
  width: 100%; border: 0; border-radius: 36px; padding: 22px;
  color: #fff; text-align: left; background:
    radial-gradient(circle at 8% 0%, rgba(255,255,255,.18), transparent 32%),
    linear-gradient(145deg, #0b1512 0%, var(--deep) 55%, var(--deep-2) 100%);
  box-shadow: 0 24px 54px rgba(6, 45, 35, .28);
  overflow: hidden; position: relative;
}
.status-label { font-size: 11px; color: var(--lime); letter-spacing: .13em; font-weight: 900; }
.shield { font-size: 18px; vertical-align: -2px; }
.quality-badge { padding: 6px 9px; border-radius: 999px; color: rgba(255,255,255,.62); background: rgba(255,255,255,.08); font-size: 9px; font-weight: 800; }
.safe-summary { display: flex; flex-direction: column; align-items: center; padding: 34px 0 18px; }
.safe-summary span { color: rgba(255,255,255,.58); font-size: 13px; }
.safe-summary strong { margin: 4px 0 5px; font-size: clamp(38px, 12vw, 56px); line-height: 1; letter-spacing: -.055em; }
.safe-summary b { color: var(--lime); font-size: 15px; }
.safe-horizon { position: relative; height: 62px; margin: 0 5px 8px; }
.horizon-line {
  position: absolute; left: 0; right: 0; top: 31px; height: 3px;
  overflow: hidden; border-radius: 999px; background: rgba(255,255,255,.12);
}
.horizon-line i {
  display: block; width: var(--horizon-progress, 18%); height: 100%;
  border-radius: inherit; background: linear-gradient(90deg, var(--sun), var(--lime));
  transition: width .3s ease;
}
.horizon-points { position: absolute; inset: 0; display: flex; align-items: center; justify-content: space-between; }
.horizon-points span {
  width: 9px; height: 9px; border: 2px solid rgba(255,255,255,.4);
  border-radius: 50%; background: #244b3f;
}
.hero-hint { text-align: center; color: rgba(255,255,255,.5); font-size: 13px; margin: 5px 0 0; }
.hero-breakdown { border-top: 1px solid rgba(255,255,255,.12); margin-top: 18px; padding-top: 15px; }
.formula-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.formula-grid span { display: block; color: rgba(255,255,255,.5); font-size: 10px; margin-bottom: 4px; }
.formula-grid b { font-size: 14px; }
.formula-note { color: rgba(255,255,255,.58); line-height: 1.45; font-size: 12px; margin: 14px 0 0; }

.quick-actions { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin: 15px 0 18px; }
.quick-actions button {
  border: 1px solid rgba(255,255,255,.7); border-radius: 24px; min-height: 104px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 9px;
  background: var(--card); box-shadow: var(--shadow);
}
.quick-actions b { font-size: 14px; }
.action-icon { width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; font-size: 26px; font-weight: 500; }
.action-icon.expense { color: var(--coral); background: rgba(255,113,99,.13); }
.action-icon.income { color: var(--moss); background: rgba(63,151,103,.13); }
.action-icon.receipt { color: var(--sky); background: rgba(82,183,233,.13); font-size: 20px; }

.card, .menu-list {
  background: var(--card); border: 1px solid rgba(255,255,255,.8); border-radius: var(--radius);
  box-shadow: var(--shadow); margin: 0 0 16px; padding: 19px;
}
.card h3, .journey-card h3, .insight-card h3, .goal-hero h3 { margin: 2px 0 4px; font-size: 20px; letter-spacing: -.025em; }
.card p { color: var(--muted); }
.checkin-card { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 13px; }
.checkin-card p { margin: 0; font-size: 12px; line-height: 1.35; }
.round-icon { width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; font-size: 20px; font-weight: 800; }
.round-icon.success { color: var(--moss); background: rgba(63,151,103,.12); }
.round-icon.sky { color: #087fb8; background: rgba(82,183,233,.14); }
.pill-button, .text-button {
  border: 0; background: rgba(63,151,103,.13); color: #25754b; border-radius: 999px; padding: 9px 13px; font-size: 12px; font-weight: 800;
}
.text-button { padding: 7px 10px; background: transparent; }

.journey-card, .insight-card, .goal-hero, .compass-hero {
  position: relative; overflow: hidden; border-radius: 32px; margin-bottom: 16px;
  color: #fff; background: linear-gradient(145deg, #0a3a2c, #11634a); box-shadow: 0 18px 42px rgba(9,70,51,.2);
}
.journey-card { min-height: 210px; padding: 22px; }
.journey-card img { position: absolute; right: -24px; bottom: -18px; width: 68%; height: 90%; object-fit: contain; opacity: .95; }
.journey-copy { position: relative; z-index: 2; width: 60%; }
.journey-copy p:not(.eyebrow) { color: rgba(255,255,255,.65); font-size: 12px; line-height: 1.4; }
.journey-progress { position: absolute; left: 22px; right: 22px; bottom: 18px; height: 6px; background: rgba(255,255,255,.13); border-radius: 999px; overflow: hidden; }
.journey-progress span { display: block; height: 100%; width: 15%; background: linear-gradient(90deg, var(--lime), var(--sun)); border-radius: inherit; transition: width .4s ease; }

.card-heading { align-items: flex-start; margin-bottom: 16px; }
.card-heading h3 { margin-top: 3px; }
.flow-comparison { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.flow-comparison span, .metric-card span { display: block; color: var(--muted); font-size: 11px; }
.flow-comparison strong { display: block; margin-top: 4px; font-size: 16px; letter-spacing: -.03em; }
.positive { color: var(--moss); }
.negative { color: var(--coral); }
.flow-bars { height: 56px; display: flex; align-items: end; gap: 5px; margin-top: 15px; }
.flow-bars span { flex: 1; min-height: 4px; border-radius: 6px 6px 2px 2px; background: linear-gradient(180deg, var(--lime), var(--moss)); opacity: .8; }

.stack-list { display: grid; gap: 11px; }
.stack-row { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 12px; padding: 12px; border-radius: 18px; background: rgba(25,56,44,.045); }
.stack-row .row-icon { width: 38px; height: 38px; border-radius: 13px; display: grid; place-items: center; background: rgba(247,198,83,.15); color: #b57400; }
.stack-row b { display: block; font-size: 14px; }
.stack-row small { color: var(--muted); }
.empty-state { padding: 18px 4px; color: var(--muted); text-align: center; font-size: 13px; }

.insight-card { display: grid; grid-template-columns: auto 1fr; gap: 14px; padding: 21px; }
.insight-symbol { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 50%; background: var(--lime); color: var(--deep); font-size: 21px; }
.insight-card p:not(.eyebrow) { color: rgba(255,255,255,.65); margin: 4px 0; line-height: 1.45; font-size: 13px; }

.circle-button {
  width: 48px; height: 48px; border: 1px solid rgba(63,151,103,.22); border-radius: 50%;
  background: rgba(63,151,103,.11); color: var(--moss); font-size: 25px;
}
.segment-control { display: grid; grid-template-columns: repeat(3,1fr); background: rgba(25,56,44,.07); border-radius: 15px; padding: 3px; margin-bottom: 12px; }
.segment-control button { border: 0; border-radius: 12px; background: transparent; padding: 9px; font-size: 13px; color: var(--muted); }
.segment-control button.active { background: #fff; color: var(--ink); box-shadow: 0 4px 12px rgba(30,50,40,.08); font-weight: 800; }
.search-field { display: flex; gap: 8px; align-items: center; background: rgba(255,255,255,.7); border-radius: 17px; padding: 11px 14px; margin-bottom: 17px; }
.search-field input { flex: 1; border: 0; outline: 0; background: transparent; }
.date-group { margin: 0 0 18px; }
.date-group h3 { color: var(--muted); font-size: 12px; margin: 0 0 8px 4px; text-transform: uppercase; letter-spacing: .1em; }
.transaction-card { background: var(--card); border-radius: 23px; padding: 8px 14px; box-shadow: var(--shadow); }
.transaction-row { display: grid; grid-template-columns: auto 1fr auto; gap: 12px; align-items: center; padding: 12px 0; border-bottom: 1px solid var(--line); }
.transaction-row:last-child { border-bottom: 0; }
.transaction-icon { width: 41px; height: 41px; border-radius: 14px; display: grid; place-items: center; background: rgba(63,151,103,.1); }
.transaction-row b { display: block; font-size: 14px; }
.transaction-row small { color: var(--muted); }
.transaction-amount { font-weight: 800; font-variant-numeric: tabular-nums; }

.compass-hero { padding: 22px; text-align: center; background: linear-gradient(145deg, #111a17, #184c3c); }
.compass-hero p { margin: 0; color: rgba(255,255,255,.58); }
.compass-hero strong { display: block; margin: 8px 0 2px; font-size: 56px; letter-spacing: -.06em; }
.compass-hero span { color: var(--lime); font-weight: 800; font-size: 13px; }
.score-track { height: 7px; background: rgba(255,255,255,.12); border-radius: 999px; overflow: hidden; margin-top: 18px; }
.score-track i { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--sun), var(--lime)); transition: width .4s ease; }
.metric-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.metric-card strong { display: block; font-size: 23px; margin: 7px 0; letter-spacing: -.04em; }
.metric-card small { color: var(--muted); }
.category-list { display: grid; gap: 13px; }
.category-row { display: grid; grid-template-columns: 1fr auto; gap: 6px 12px; }
.category-row b { font-size: 13px; }
.category-row span { color: var(--muted); font-size: 12px; }
.category-bar { grid-column: 1/-1; height: 7px; background: rgba(21,50,39,.07); border-radius: 999px; overflow: hidden; }
.category-bar i { display: block; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--moss), var(--lime)); }
.forecast-box { padding: 15px; background: rgba(63,151,103,.07); border-radius: 20px; }
.forecast-box strong { font-size: 28px; letter-spacing: -.04em; }
.forecast-box p { margin-bottom: 0; font-size: 12px; line-height: 1.45; }
.recommendation-list { display: grid; gap: 12px; }
.recommendation { padding: 18px; border-radius: 24px; background: #fff; box-shadow: var(--shadow); }
.recommendation span { color: var(--moss); font-size: 11px; font-weight: 900; letter-spacing: .1em; }
.recommendation h3 { margin: 5px 0; font-size: 17px; }
.recommendation p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.45; }

.goal-hero { min-height: 220px; padding: 24px; display: flex; align-items: end; background: linear-gradient(145deg, #082d23, #507f59); }
.goal-hero img { position: absolute; inset: 0 0 0 auto; width: 76%; height: 100%; object-fit: contain; opacity: .82; }
.goal-hero div { position: relative; z-index: 2; width: 58%; }
.goal-hero p { color: var(--lime); font-size: 11px; font-weight: 800; text-transform: uppercase; }
.goal-hero strong { font-size: 34px; }
.goals-list { display: grid; gap: 13px; }
.goal-card { padding: 18px; background: var(--card); border-radius: 25px; box-shadow: var(--shadow); }
.goal-card-top { display: grid; grid-template-columns: auto 1fr auto; gap: 12px; align-items: center; }
.goal-symbol { width: 45px; height: 45px; border-radius: 16px; display: grid; place-items: center; background: rgba(155,136,239,.12); color: #6b54d4; font-size: 20px; }
.goal-card h3 { margin: 0; font-size: 16px; }
.goal-card p { color: var(--muted); margin: 2px 0; font-size: 12px; }
.goal-card progress { width: 100%; margin-top: 13px; accent-color: var(--moss); }
.goal-actions { display: flex; gap: 8px; margin-top: 11px; }
.goal-actions button { border: 0; border-radius: 999px; padding: 8px 12px; color: var(--moss); background: rgba(63,151,103,.1); font-size: 12px; font-weight: 800; }

.profile-summary { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 12px; }
.profile-summary img { width: 56px; height: 56px; border-radius: 50%; }
.profile-summary p { margin: 2px 0; font-size: 12px; }
.menu-list { padding: 7px 15px; }
.menu-list > button {
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 13px;
  width: 100%; padding: 14px 0; border: 0; border-bottom: 1px solid var(--line); background: transparent; text-align: left;
}
.menu-list > button:last-child { border-bottom: 0; }
.menu-list b, .menu-list small { display: block; }
.menu-list small { color: var(--muted); margin-top: 2px; }
.menu-list i { color: var(--muted); font-size: 24px; font-style: normal; }
.menu-icon { width: 43px; height: 43px; display: grid; place-items: center; border-radius: 15px; font-size: 19px; }
.menu-icon.green { color: var(--moss); background: rgba(63,151,103,.12); }
.menu-icon.amber { color: #b57400; background: rgba(247,198,83,.16); }
.menu-icon.blue { color: #087fb8; background: rgba(82,183,233,.14); }
.menu-icon.purple { color: #6b54d4; background: rgba(155,136,239,.13); }
.menu-icon.gray { color: #65716b; background: rgba(101,113,107,.12); }
.privacy-copy { color: var(--muted); font-size: 11px; line-height: 1.5; text-align: center; padding: 4px 25px; }
.sync-status {
  width: max-content; max-width: 100%; margin: 18px auto 4px; padding: 7px 11px;
  border-radius: 999px; color: var(--moss); background: rgba(63,151,103,.1);
  font-size: 11px; font-weight: 800; text-align: center;
}
.sync-status.pending { color: #956100; background: rgba(247,198,83,.16); }
.sync-status.offline { color: #a8463e; background: rgba(255,113,99,.13); }

.tab-bar {
  position: fixed; z-index: 20; bottom: 0; left: 50%; transform: translateX(-50%);
  width: min(100%, 520px); height: calc(82px + var(--safe-bottom)); padding: 14px 15px var(--safe-bottom);
  display: grid; grid-template-columns: repeat(5, 1fr); align-items: center;
  background: #f2f4ef; border-top: 1px solid rgba(30,50,42,.08);
}
.tab-bar button { min-height: 52px; border: 0; background: transparent; color: #8a938e; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px; }
.tab-bar span { font-size: 22px; line-height: 1; }
.tab-bar b { font-size: 10px; }
.tab-bar button.active { color: var(--deep-2); }
.floating-add {
  position: fixed; z-index: 22; left: 50%; right: auto; transform: translateX(-50%);
  bottom: calc(72px + var(--safe-bottom));
  border: 0; border-radius: 999px; padding: 14px 20px; color: #13351f; font-weight: 900;
  background: linear-gradient(100deg, var(--lime), #76b990); box-shadow: 0 15px 32px rgba(63,151,103,.25);
  white-space: nowrap;
}
.floating-add span { font-size: 20px; vertical-align: -1px; }

.sheet {
  width: min(100%, 520px); max-height: 88vh; margin: auto auto 0; border: 0; border-radius: 30px 30px 0 0;
  padding: 0; color: var(--ink); background: #f8f9f5;
}
.sheet::backdrop { background: rgba(4,16,11,.55); }
.sheet[open] { animation: sheet-in .25s ease both; }
@keyframes sheet-in { from { transform: translateY(25px); opacity: 0; } }
.sheet form { padding: 8px 20px calc(20px + var(--safe-bottom)); overflow-y: auto; max-height: 88vh; }
.sheet-grabber { width: 38px; height: 5px; border-radius: 99px; background: #cdd2cc; margin: 1px auto 18px; }
.sheet-header { align-items: flex-start; margin-bottom: 18px; }
.sheet-header h2 { margin: 3px 0; font-size: 27px; letter-spacing: -.04em; }
.close-button { width: 35px; height: 35px; border: 0; border-radius: 50%; background: rgba(20,40,32,.08); font-size: 22px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.form-grid .full { grid-column: 1/-1; }
.field { display: grid; gap: 6px; color: var(--muted); font-size: 12px; font-weight: 700; }
.field input, .field select, .field textarea {
  width: 100%; border: 1px solid rgba(30,55,43,.09); border-radius: 16px; padding: 13px 14px;
  background: #fff; color: var(--ink); outline: none; resize: vertical;
}
.amount-field input { font-size: 34px; font-weight: 800; letter-spacing: -.04em; text-align: center; padding: 16px; }
.choice-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 15px; }
.choice-grid label { cursor: pointer; }
.choice-grid input { position: absolute; opacity: 0; }
.choice-grid span { display: block; padding: 12px; border: 1px solid var(--line); border-radius: 15px; text-align: center; background: #fff; }
.choice-grid input:checked + span { border-color: var(--moss); color: var(--deep-2); background: rgba(63,151,103,.1); font-weight: 800; }
.sheet-actions { display: grid; grid-template-columns: 1fr; gap: 10px; margin-top: 18px; }
.primary-button { border: 0; border-radius: 18px; padding: 15px; background: var(--deep); color: #fff; font-weight: 900; }
.secondary-button { border: 0; border-radius: 18px; padding: 14px; background: rgba(25,55,43,.08); font-weight: 800; }
.danger-button { border: 0; border-radius: 18px; padding: 14px; background: rgba(255,113,99,.12); color: #c33e35; font-weight: 800; }
.sheet-section { margin: 18px 0; }
.sheet-section h3 { margin-bottom: 10px; }
.route-list { display: grid; gap: 10px; }
.route-card { padding: 15px; border-radius: 18px; background: #fff; border: 1px solid var(--line); }
.route-card-top { display: flex; justify-content: space-between; gap: 10px; }
.route-card h4 { margin: 0 0 3px; }
.route-card p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.4; }
.route-card-actions { display: flex; gap: 8px; margin-top: 11px; }
.route-card-actions button { border: 0; border-radius: 999px; padding: 8px 11px; font-size: 11px; font-weight: 800; }

.toast {
  position: fixed; z-index: 40; left: 50%; bottom: calc(142px + var(--safe-bottom)); transform: translate(-50%, 20px);
  width: max-content; max-width: calc(100% - 36px); border-radius: 999px; padding: 11px 16px;
  background: #101815; color: #fff; font-size: 13px; opacity: 0; pointer-events: none; transition: .2s ease;
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }
.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; }

.keyboard-open .tab-bar,
.keyboard-open .floating-add { display: none; }

.is-low-performance *,
.is-low-performance *::before,
.is-low-performance *::after {
  animation-duration: .01ms !important;
  transition-duration: .01ms !important;
}
.is-low-performance .hero-card,
.is-low-performance .journey-card,
.is-low-performance .insight-card,
.is-low-performance .goal-hero,
.is-low-performance .compass-hero { box-shadow: 0 8px 20px rgba(6,45,35,.14); }

@media (min-width: 760px) {
  body { padding: 20px 0; }
  .app { min-height: calc(100vh - 40px); border-radius: 42px; box-shadow: 0 30px 90px rgba(26,48,39,.18); }
  .tab-bar { bottom: 20px; border-radius: 0 0 42px 42px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
}

@media (prefers-color-scheme: dark) {
  :root {
    --ink: #f4f7f3; --muted: #aab4ae; --paper: #07100d; --card: #171d1a;
    --line: rgba(255,255,255,.08); --shadow: 0 16px 40px rgba(0,0,0,.22);
  }
  body { background: radial-gradient(circle at 90% 0%, rgba(86,145,87,.18), transparent 30%), #07100d; }
  .quick-actions button, .transaction-card, .goal-card, .recommendation, .sheet, .field input, .field select, .field textarea, .choice-grid span, .route-card { background: #171d1a; }
  .tab-bar { background: #0e1210; }
  .segment-control button.active { background: #252c28; }
  .search-field { background: rgba(255,255,255,.07); }
}
