@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;450;500;550;600;650;700&family=Manrope:wght@400;500;600;650;700;750;800&display=swap");
:root {
  --bg: #f7f8fa;
  --surface: #fff;
  --text: #20242d;
  --muted: #707786;
  --line: #e9ebef;
  --blue: #365cff;
  --pale: #eaf0ff;
  --green: #168063;
  --sidebar: #111318;
  --ring-1: #2a78d6;
  --ring-2: #eb6834;
  --ring-3: #1baf7a;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --shadow-sm: 0 1px 2px rgba(20, 24, 34, 0.06);
  --shadow-md: 0 8px 24px rgba(20, 24, 34, 0.08);
  --shadow-lg: 0 24px 60px rgba(20, 24, 34, 0.12);
  color-scheme: light;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  -webkit-font-smoothing: antialiased;
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
a,
input,
select,
textarea {
  -webkit-tap-highlight-color: transparent;
}
button,
a {
  transition:
    background 0.18s,
    color 0.18s,
    box-shadow 0.18s;
}
button {
  cursor: pointer;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  color: inherit;
}
svg {
  flex-shrink: 0;
  vertical-align: middle;
}
button:focus-visible,
a:focus-visible,
select:focus-visible,
input:focus-visible,
textarea:focus-visible,
tr:focus-visible {
  outline: 3px solid #879aff;
  outline-offset: 3px;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2,
h3,
.balance-value {
  font-family: "Manrope", sans-serif;
}
h2 {
  font-size: 16px;
  font-weight: 750;
  letter-spacing: -0.4px;
}
h3 {
  font-size: 18px;
}
small {
  font-size: 11px;
  color: var(--muted);
}
.app-shell {
  display: flex;
  min-height: 100vh;
}
.sidebar {
  background: var(--sidebar);
  color: #969aa5;
  width: 234px;
  position: fixed;
  inset: 0 auto 0 0;
  padding: 34px 18px 16px;
  display: flex;
  flex-direction: column;
  overflow: auto;
  z-index: 20;
}
.wordmark {
  display: flex;
  gap: 9px;
  align-items: center;
  color: #fff;
  font-family: Manrope, sans-serif;
  font-size: 25px;
  font-weight: 750;
  letter-spacing: -1px;
}
.wordmark svg {
  width: 34px;
  height: 34px;
  color: #708aff;
}
.brand-dot {
  color: #708aff;
}
.sidebar .wordmark {
  margin: 0 9px 49px;
}
.nav-caption {
  font-size: 9px;
  letter-spacing: 1.5px;
  color: #656a77;
  padding: 0 15px;
  margin-bottom: 15px;
  font-weight: 600;
}
.nav-item {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 12px 15px;
  margin: 4px 0;
  border-radius: 7px;
  font-size: 12px;
  font-weight: 500;
}
.nav-item.active {
  color: #fff;
  background: #292e43;
  box-shadow: inset 3px 0 #6a81ff;
}
.nav-item.active svg {
  color: #92a4ff;
}
.nav-item:hover {
  background: #21252f;
  color: white;
}
.nav-count {
  margin-left: auto;
  font-size: 10px;
  background: #3f4558;
  padding: 1px 5px;
  border-radius: 4px;
}
.sidebar-bottom {
  margin-top: auto;
  padding-top: 35px;
  flex-shrink: 0;
}
.sidebar,
.staff-nav {
  scrollbar-width: thin;
  scrollbar-color: #3a4053 transparent;
}
.sidebar::-webkit-scrollbar,
.staff-nav::-webkit-scrollbar {
  width: 6px;
}
.sidebar::-webkit-scrollbar-track,
.staff-nav::-webkit-scrollbar-track {
  background: transparent;
}
.sidebar::-webkit-scrollbar-thumb,
.staff-nav::-webkit-scrollbar-thumb {
  background: #3a4053;
  border-radius: 10px;
}
.sidebar::-webkit-scrollbar-thumb:hover,
.staff-nav::-webkit-scrollbar-thumb:hover {
  background: #4a5268;
}
.demo-card {
  background: #1a1d25;
  border: 1px solid #292d38;
  border-radius: 9px;
  padding: 16px 13px;
  color: #d3d5dc;
  font-size: 11px;
}
.demo-dot {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 100%;
  background: #899fff;
  margin-right: 5px;
}
.demo-card p {
  color: #797f8e;
  font-size: 10px;
  margin: 9px 0 15px;
}
.demo-card a {
  font-size: 10px;
  color: #acb8e9;
  display: flex;
  justify-content: space-between;
}
.profile {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 0;
  border-top: 1px solid #282b32;
  background: none;
  width: 100%;
  text-align: left;
  padding: 20px 4px 0;
  margin-top: 20px;
  font-size: 11px;
  color: #e2e3e7;
}
.profile small {
  display: block;
  margin-top: 4px;
  font-size: 10px;
}
.profile > svg {
  margin-left: auto;
}
.avatar {
  background: #d4d9ce;
  color: #404a3b;
  border: 0;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 650;
  flex-shrink: 0;
  overflow: hidden;
}
.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.avatar.small {
  width: 30px;
  height: 30px;
  font-size: 10px;
}
.avatar.large {
  width: 76px;
  height: 76px;
  font-size: 26px;
  background: var(--pale);
  color: var(--blue);
}
.profile-header {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin: 20px 0 18px;
}
.profile-avatar-wrap {
  position: relative;
  flex-shrink: 0;
}
.profile-avatar-wrap .avatar-photo-badge {
  position: absolute;
  right: -2px;
  bottom: -2px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--surface);
  padding: 0;
  cursor: pointer;
}
.profile-header h3 {
  margin: 2px 0 0;
  font-size: 19px;
  letter-spacing: -0.3px;
}
.profile-header p {
  margin: 3px 0 10px;
  color: var(--muted);
  font-size: 12px;
}
.profile-banner {
  background: var(--pale);
  border-radius: 10px;
  padding: 13px 16px;
  font-size: 11px;
  color: #4d64a1;
  margin-bottom: 18px;
}
.profile-menu {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.profile-menu-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  text-decoration: none;
  color: var(--text);
  cursor: pointer;
  font-size: 13px;
  font-weight: 550;
  width: 100%;
  text-align: left;
  transition: border-color 0.2s;
}
.profile-menu-item:hover {
  border-color: var(--blue);
}
.profile-menu-item .menu-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--pale);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.profile-menu-item .menu-chevron {
  margin-left: auto;
  color: var(--muted);
}
.main-shell {
  margin-left: 234px;
  width: calc(100% - 234px);
}
.topbar {
  height: 78px;
  border-bottom: 1px solid var(--line);
  background: var(--surface);
  padding: 0 42px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.workspace-picker {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 12px;
}
.workspace-picker > svg {
  color: var(--muted);
  width: 17px;
}
.workspace-picker select {
  border: 0;
  background: transparent;
  color: var(--text);
  font-size: 12px;
  max-width: 190px;
}
.top-actions {
  display: flex;
  align-items: center;
  gap: 21px;
}
.search-trigger {
  background: none;
  border: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #9296a0;
  font-size: 11px;
}
.search-trigger kbd {
  background: var(--bg);
  border: 1px solid var(--line);
  padding: 2px 4px;
  border-radius: 3px;
  font-size: 9px;
  margin-left: 18px;
}
.top-divider {
  height: 22px;
  width: 1px;
  background: var(--line);
}
.icon-button {
  background: none;
  border: 0;
  padding: 3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
}
.notification {
  position: relative;
}
.notification i {
  position: absolute;
  top: 1px;
  right: 3px;
  width: 4px;
  height: 4px;
  background: var(--blue);
  border-radius: 50%;
  border: 1px solid var(--surface);
}
main {
  max-width: 1530px;
  margin: auto;
  padding: 36px 42px 20px;
}
.eyebrow {
  font-size: 9px;
  color: #969ca7;
  letter-spacing: 1.6px;
  font-weight: 600;
  margin-bottom: 11px;
}
.page-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 29px;
  gap: 20px;
}
.page-heading h1 {
  font-size: 28px;
  letter-spacing: -1.2px;
  font-weight: 750;
}
.page-heading p {
  font-size: 12px;
  color: var(--muted);
  margin-top: 9px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 15px;
  min-height: 39px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 7px;
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
}
.button:hover {
  background: var(--pale);
  border-color: #bcc9fc;
}
.button.primary {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
  box-shadow: 0 3px 5px #365cff15;
}
.button.primary:hover {
  background: #254bdc;
}
.heading-actions {
  display: flex;
  gap: 8px;
}
.dashboard-top {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 22px;
}
.panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.balance-panel {
  background: #141923;
  border: 1px solid #252d40;
  border-radius: var(--radius);
  color: white;
  padding: 25px 26px 0;
  position: relative;
  overflow: hidden;
}
.balance-panel:after {
  content: "";
  pointer-events: none;
  position: absolute;
  width: 200px;
  height: 230px;
  right: -75px;
  top: -100px;
  border: 40px solid #253457;
  transform: rotate(30deg);
  opacity: 0.22;
  border-radius: 50px;
}
.section-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
  color: #b5bac8;
}
.currency-tag {
  border: 1px solid #363c4a;
  border-radius: 5px;
  padding: 5px 7px;
  color: #d9dce4;
  display: flex;
  gap: 8px;
  font-size: 9px;
}
.balance-value {
  font-size: 42px;
  font-weight: 600;
  letter-spacing: -1.7px;
  margin: 16px 0 12px;
  font-variant-numeric: tabular-nums;
}
.balance-value > span {
  color: #9097a8;
  font-weight: 400;
}
.balance-note {
  display: flex;
  gap: 13px;
  font-size: 9px;
  color: #8c95a6;
}
.balance-note .positive {
  color: #83cbb9;
  display: flex;
  align-items: center;
  gap: 5px;
}
.balance-actions {
  display: flex;
  gap: 8px;
  margin: 27px 0 24px;
}
.balance-actions .button {
  font-size: 10px;
  padding: 9px 12px;
  min-height: 34px;
  background: #242a38;
  color: #e6e8ed;
  border-color: #333a49;
}
.balance-actions .primary {
  background: #365cff;
  border-color: #365cff;
}
.balance-bottom {
  border-top: 1px solid #2b3140;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  font-size: 9px;
  color: #919bad;
}
.balance-bottom a {
  color: #c7cedd;
  display: flex;
  gap: 9px;
}
.cashflow {
  padding: 24px 25px 14px;
}
.panel-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.panel-heading a,
.section-heading a {
  display: flex;
  gap: 6px;
  align-items: center;
  color: var(--muted);
  font-size: 10px;
}
.panel-heading select {
  font-size: 9px;
  color: var(--muted);
  padding: 6px 8px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: var(--surface);
}
.cashflow-totals {
  display: flex;
  gap: 32px;
  margin-top: 20px;
}
.cashflow-totals > div > span {
  color: var(--muted);
  font-size: 9px;
}
.cashflow-totals strong {
  display: block;
  font-size: 19px;
  letter-spacing: -0.6px;
  margin-top: 7px;
  font-variant-numeric: tabular-nums;
}
.legend {
  display: inline-block;
  height: 6px;
  width: 6px;
  border-radius: 2px;
  margin-right: 5px;
}
.legend.blue {
  background: #5a77fc;
}
.legend.light {
  background: #c9d3f7;
}
.chart-unit {
  margin-left: auto;
  font-size: 9px;
  color: var(--muted);
  align-self: end;
}
.bar-chart {
  height: 97px;
  position: relative;
  margin: 20px 35px 0 0;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 7px;
  background: repeating-linear-gradient(
    to top,
    transparent 0,
    transparent 47px,
    var(--line) 48px,
    var(--line) 49px
  );
  border-bottom: 1px solid var(--line);
}
.bar-group {
  display: flex;
  align-items: end;
  height: 100%;
  gap: 3px;
  width: 30px;
  z-index: 1;
}
.bar {
  width: 48%;
  min-height: 2px;
  border-radius: 3px 3px 0 0;
}
.bar.in {
  background: #6280f7;
}
.bar.out {
  background: #cfdbff;
}
.chart-grid {
  position: absolute;
  right: -40px;
  inset-block: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-size: 8px;
  color: #989dab;
  max-width: 38px;
}
.chart-labels {
  display: flex;
  justify-content: space-between;
  margin: 8px 30px 0 0;
  font-size: 8px;
  color: #999eaa;
}
.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 28px 0 15px;
}
.count {
  font-size: 10px;
  color: #9298a5;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 2px 5px;
  margin-left: 6px;
}
.account-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.account-card {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 18px 20px;
  border-radius: 9px;
  transition:
    transform 0.2s,
    border-color 0.2s;
}
.account-card:hover {
  border-color: #adbdfb;
  transform: translateY(-2px);
}
.account-card-top {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 600;
}
.account-card-top small {
  display: block;
  font-size: 8px;
  font-weight: 400;
  margin-top: 5px;
  letter-spacing: 0.2px;
}
.account-card-top > svg {
  margin-left: auto;
  color: #8b93a1;
  width: 13px;
}
.account-icon,
.pocket-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: #edf2ff;
  color: #6780c5;
  flex-shrink: 0;
}
.account-icon.lilac {
  background: #f1edfa;
  color: #9282bd;
}
.account-icon.sand {
  background: #f6f1e7;
  color: #ab9160;
}
.account-card > strong {
  display: block;
  font-size: 23px;
  letter-spacing: -0.7px;
  margin: 20px 0 5px;
  font-weight: 550;
  font-variant-numeric: tabular-nums;
}
.account-status {
  color: var(--muted);
  font-size: 9px;
}
.dashboard-bottom {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 22px;
  margin-top: 25px;
}
.activity > .panel-heading {
  padding: 22px 22px 18px;
}
.table-scroll {
  overflow: auto;
}
.transactions {
  border-collapse: collapse;
  width: 100%;
  white-space: nowrap;
  font-size: 10px;
}
.transactions th {
  font-weight: 400;
  text-align: left;
  color: var(--muted);
  background: #fcfcfd;
  border-block: 1px solid var(--line);
  font-size: 9px;
  padding: 11px 13px;
}
.transactions td {
  padding: 14px 13px;
  border-bottom: 1px solid var(--line);
}
.transactions tr:last-child td {
  border-bottom: 0;
}
.transactions td:first-child,
.transactions th:first-child {
  padding-left: 22px;
}
.transactions tbody tr {
  cursor: pointer;
}
.transactions tbody tr:hover {
  background: var(--bg);
}
.transactions small {
  display: block;
  margin-top: 4px;
  font-size: 8px;
}
.transaction-name {
  display: flex;
  align-items: center;
  gap: 10px;
}
.transaction-name strong {
  font-size: 10px;
  font-weight: 550;
}
.merchant {
  width: 32px;
  height: 32px;
  background: #f0f1f4;
  color: #454954;
  border: 1px solid #e8eaef;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}
.merchant.mint {
  background: #eaf5ef;
  color: #247659;
  border-color: #e1ede7;
}
.align-right {
  text-align: right !important;
}
.amount {
  font-weight: 600;
  font-size: 11px;
  font-variant-numeric: tabular-nums;
}
.positive {
  color: var(--green);
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 8px;
  border-radius: 4px;
  padding: 4px 6px;
  white-space: nowrap;
}
.pill i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: currentColor;
}
.pill.green {
  background: #edf7f1;
  color: #438b66;
}
.pill.amber {
  background: #fff6e8;
  color: #b28538;
}
.pill.red {
  background: #ffeded;
  color: #b95151;
}
.right-stack {
  display: flex;
  flex-direction: column;
  gap: 19px;
}
.pockets,
.upcoming {
  padding: 22px;
}
.pocket-item {
  display: flex;
  text-align: left;
  gap: 12px;
  width: 100%;
  border: 0;
  background: none;
  padding: 20px 0 0;
}
.pocket-icon {
  width: 34px;
  height: 34px;
}
.pocket-icon.green {
  background: #ecf5f0;
  color: #67927f;
}
.pocket-icon.orange {
  background: #fff4e2;
  color: #b99250;
}
.pocket-body {
  flex: 1;
  min-width: 0;
}
.pocket-body > strong {
  font-weight: 550;
  font-size: 10px;
  display: block;
  margin-bottom: 7px;
}
.pocket-body > span {
  display: block;
  font-size: 10px;
}
.pocket-body small {
  font-size: 9px;
}
.progress {
  height: 4px;
  background: #eef0f5;
  border-radius: 8px;
  overflow: hidden;
  margin-top: 10px;
  display: block;
}
.progress i {
  height: 100%;
  background: #7993f5;
  display: block;
  border-radius: 8px;
}
.text-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: none;
  color: var(--muted);
  border: 0;
  font-size: 10px;
  padding: 15px 0 0;
  width: 100%;
  margin-top: 17px;
  border-top: 1px solid var(--line);
}
.upcoming-row {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: 17px;
  font-size: 10px;
}
.upcoming-row > strong {
  margin-left: auto;
  font-weight: 550;
}
.upcoming-row > span > strong {
  font-weight: 550;
}
.upcoming-row small {
  display: block;
  font-size: 8px;
  margin-top: 4px;
}
.date-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  width: 34px;
  height: 38px;
  font-size: 13px;
  font-weight: 550;
  background: var(--bg);
}
.date-box small {
  font-size: 7px;
  text-transform: uppercase;
  font-weight: 400;
  margin: 4px 0 2px;
}
.app-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  color: #959ba6;
  font-size: 9px;
  gap: 10px;
}
.app-footer span {
  display: flex;
  align-items: center;
  gap: 5px;
}
.app-footer .demo-dot {
  background: #8c97af;
}
.mobile-nav {
  display: none;
}
.business-label {
  margin-top: 25px;
}
.empty {
  padding: 50px 25px;
  text-align: center;
  color: var(--muted);
  line-height: 1.8;
}
.content-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.padded {
  padding: 25px;
}
.muted {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}
.toolbar {
  display: flex;
  gap: 12px;
  align-items: center;
  margin: 20px 0;
}
.toolbar input {
  flex: 1;
}
.field,
input:not([type="checkbox"]),
textarea,
form select,
.toolbar select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--surface);
  color: var(--text);
  padding: 11px 12px;
  font-size: 12px;
}
label {
  display: block;
  font-size: 11px;
  font-weight: 550;
  margin: 17px 0 7px;
}
.checkbox-row {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 12px;
  font-weight: 450;
  margin: var(--space-3) 0;
}
.checkbox-row input[type="checkbox"] {
  width: auto;
  margin: 0;
}
form .button {
  margin-top: 20px;
}
form p {
  line-height: 1.6;
}
textarea {
  min-height: 85px;
  resize: vertical;
}
dialog {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 15px;
  padding: 32px;
  max-width: 520px;
  width: calc(100% - 30px);
  max-height: 88vh;
  box-shadow: 0 20px 100px #0003;
}
dialog::backdrop {
  background: #10162480;
  backdrop-filter: blur(4px);
}
dialog h2 {
  font-size: 23px;
  margin-bottom: 10px;
}
dialog p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}
.close {
  position: absolute;
  right: 15px;
  top: 12px;
  font-size: 25px;
}
.detail-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  gap: 18px;
  font-size: 12px;
}
.timeline {
  padding: 8px 0 0 20px;
  list-style: none;
}
.timeline li {
  position: relative;
  border-left: 1px solid var(--line);
  padding: 0 0 23px 20px;
  font-size: 12px;
}
.timeline li:before {
  content: "";
  position: absolute;
  left: -5px;
  top: 2px;
  width: 9px;
  height: 9px;
  background: var(--blue);
  border: 2px solid var(--surface);
  border-radius: 50%;
}
.timeline small {
  display: block;
  margin: 5px 0;
}
.timeline p {
  font-size: 10px;
}
#toast {
  position: fixed;
  bottom: 25px;
  left: 50%;
  transform: translate(-50%, 20px);
  z-index: 100;
  background: #202632;
  color: #fff;
  padding: 14px 22px;
  border-radius: 9px;
  font-size: 12px;
  max-width: 90%;
  opacity: 0;
  pointer-events: none;
  transition: 0.2s;
}
#toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}
.error {
  color: #bd4545;
  background: #fff0f0;
  border-radius: 6px;
  padding: 12px;
  margin: 12px 0;
  font-size: 12px;
}
.virtual-card {
  max-width: 410px;
  aspect-ratio: 1.65;
  background: linear-gradient(120deg, #252b39, #111318);
  padding: 27px;
  border-radius: 14px;
  color: white;
  position: relative;
  overflow: hidden;
  margin: 20px 0;
}
.virtual-card:after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border: 35px solid #365cff;
  opacity: 0.13;
  border-radius: 45px;
  right: -60px;
  top: -50px;
  transform: rotate(35deg);
}
.virtual-card .wordmark {
  font-size: 19px;
}
.card-number {
  font-size: 21px;
  letter-spacing: 4px;
  margin-top: 35px;
}
.card-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 23px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.auth-wrap {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.auth-brand {
  background: #111318;
  color: white;
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}
.auth-sky {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.sky-sun,
.sky-moon {
  position: absolute;
  top: 110px;
  right: 55px;
  width: 92px;
  color: #708aff;
  opacity: 0.35;
}
.sky-sun svg,
.sky-moon svg {
  width: 100%;
  height: auto;
  display: block;
}
.sky-sun {
  display: none;
}
.auth-sky.is-day .sky-sun {
  display: block;
}
.auth-sky.is-day .sky-moon {
  display: none;
}
.sky-dove {
  position: absolute;
  left: -60px;
  width: 44px;
  color: #708aff;
  opacity: 0;
  animation: dove-pass linear infinite;
}
.sky-dove svg {
  width: 100%;
  height: auto;
  display: block;
}
.sky-dove.d1 {
  top: 95px;
  width: 44px;
  animation-duration: 26s;
  animation-delay: 0s;
}
.sky-dove.d2 {
  top: 175px;
  width: 34px;
  animation-duration: 32s;
  animation-delay: 9s;
}
.sky-dove.d3 {
  top: 240px;
  width: 28px;
  animation-duration: 22s;
  animation-delay: 17s;
}
@keyframes dove-pass {
  0% {
    transform: translateX(0);
    opacity: 0;
  }
  8% {
    opacity: 0.4;
  }
  92% {
    opacity: 0.4;
  }
  100% {
    transform: translateX(65vw);
    opacity: 0;
  }
}
.auth-brand h1 {
  font-size: 56px;
  letter-spacing: -3px;
  line-height: 1.1;
  max-width: 500px;
}
.auth-brand p {
  color: #8e98ac;
  margin-top: 25px;
  max-width: 340px;
  line-height: 1.7;
}
.auth-form {
  padding: 60px;
  max-width: 520px;
  margin: auto;
  width: 100%;
}
.auth-form h1 {
  font-size: 29px;
  margin: 10px 0;
}
.auth-form .button {
  width: 100%;
}
.auth-links {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  margin-top: 20px;
  color: var(--blue);
}
.demo-login {
  border-top: 1px solid var(--line);
  margin-top: 25px;
  padding-top: 20px;
}
.public-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px 6%;
  background: #111318;
  color: white;
  gap: 20px;
}
.public-nav {
  display: flex;
  gap: 27px;
  align-items: center;
  font-size: 12px;
}
.public-hero {
  background: #111318;
  color: white;
  padding: 65px 6% 80px;
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 70px;
  align-items: center;
}
.public-hero h1 {
  font-size: clamp(42px, 5.5vw, 80px);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -4px;
}
.public-hero p {
  color: #a6afbf;
  line-height: 1.8;
  font-size: 15px;
  margin: 27px 0;
  max-width: 440px;
}
.public-hero .eyebrow {
  color: #91a3e8;
}
.hero-preview {
  border: 1px solid #3d4558;
  border-radius: 14px;
  padding: 25px;
  background: #202632;
  box-shadow: 0 30px 70px #0003;
  transform: perspective(1400px) rotateY(-8deg);
}
.hero-preview h2 {
  color: white;
}
.preview-total {
  font-size: 38px;
  margin: 28px 0;
}
.hero-preview .detail-row {
  border-color: #394050;
  color: #c8cfdd;
}
.public-section {
  padding: 75px 6%;
  max-width: 1400px;
  margin: auto;
}
.public-section h2 {
  font-size: 35px;
  letter-spacing: -1.5px;
  margin-bottom: 25px;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}
.feature-grid a {
  padding: 25px;
  border-top: 1px solid #cfd3dc;
}
.feature-grid h3 {
  margin: 20px 0 10px;
}
.feature-grid p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.8;
}
.public-footer {
  background: #111318;
  color: #9ba3b2;
  padding: 45px 6%;
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  font-size: 11px;
}
.public-footer .wordmark {
  width: 100%;
  margin-bottom: 10px;
}
.prose {
  max-width: 780px;
  line-height: 1.9;
  min-height: 65vh;
}
.prose h1 {
  font-size: 44px;
  letter-spacing: -2px;
  margin-bottom: 22px;
}
.prose h2 {
  font-size: 23px;
  margin-top: 30px;
  margin-bottom: 12px;
}
.segmented {
  display: inline-flex;
  padding: 4px;
  background: #2b3243;
  border-radius: 7px;
  margin-bottom: 25px;
}
.segmented button {
  border: 0;
  color: #aab3c6;
  background: none;
  padding: 7px 20px;
  border-radius: 4px;
  font-size: 11px;
}
.segmented button.active {
  background: #4b5c82;
  color: #fff;
}
.support-message {
  padding: 14px;
  border-radius: 8px;
  background: var(--bg);
  margin: 10px 0;
  font-size: 12px;
  line-height: 1.7;
}
.support-message.assistant {
  background: var(--pale);
}
.metric-value {
  font-size: 30px;
  font-weight: 600;
  letter-spacing: -1px;
  margin: 20px 0;
}
.portfolio-ring {
  display: flex;
  align-items: center;
  gap: var(--space-7);
  flex-wrap: wrap;
}
.ring-chart {
  position: relative;
  flex-shrink: 0;
  width: 200px;
  height: 200px;
}
.ring-chart svg {
  overflow: visible;
}
.ring-arc {
  animation: ring-shine 3.2s ease-in-out infinite;
}
.ring-arc.arc-1 {
  color: var(--ring-1);
  stroke: var(--ring-1);
  animation-delay: 0s;
}
.ring-arc.arc-2 {
  color: var(--ring-2);
  stroke: var(--ring-2);
  animation-delay: 0.3s;
}
.ring-arc.arc-3 {
  color: var(--ring-3);
  stroke: var(--ring-3);
  animation-delay: 0.6s;
}
.ring-track {
  stroke: var(--line);
}
.ring-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  pointer-events: none;
}
.ring-center span {
  font-size: 9px;
  letter-spacing: 1.2px;
  color: var(--muted);
  margin-bottom: 6px;
}
.ring-center strong {
  font-size: 24px;
  font-weight: 650;
  letter-spacing: -0.7px;
}
.ring-legend {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 220px;
}
.ring-legend-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.ring-swatch {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.ring-legend-row span {
  flex: 1;
  font-size: 12px;
  color: var(--muted);
}
.ring-legend-row strong {
  font-size: 13px;
}
.ring-legend-row small {
  color: var(--muted);
  font-weight: 400;
  margin-left: 4px;
}
@keyframes ring-shine {
  0%,
  100% {
    filter: drop-shadow(0 0 2px currentColor);
  }
  50% {
    filter: drop-shadow(0 0 7px currentColor);
  }
}
@media (prefers-reduced-motion: reduce) {
  .ring-arc {
    animation: none;
    filter: drop-shadow(0 0 4px currentColor) !important;
  }
}
.inline-actions {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
  margin-top: 15px;
}
.large-progress {
  height: 6px;
  margin: 20px 0;
}
.notice {
  background: var(--pale);
  border: 1px solid #dce5ff;
  padding: 15px 18px;
  border-radius: 8px;
  color: #4d64a1;
  font-size: 11px;
  line-height: 1.7;
  margin: 18px 0;
}
.list-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.list-row:last-child {
  border-bottom: 0;
}
.list-row > div {
  flex: 1;
}
.list-row small {
  display: block;
  margin-top: 6px;
}
.list-row strong {
  font-size: 13px;
}
.theme-dark {
  --bg: #171b23;
  --surface: #202630;
  --text: #e1e6ef;
  --muted: #9aa5b7;
  --line: #303948;
  --pale: #293c62;
  --green: #77c9a7;
  --ring-1: #3987e5;
  --ring-2: #d95926;
  --ring-3: #199e70;
  color-scheme: dark;
}
.theme-dark .transactions th {
  background: #1d232d;
}
.theme-dark .merchant {
  background: #303744;
  border-color: #414955;
  color: #ddd;
}
.theme-dark .progress {
  background: #384354;
}
.theme-dark .notice {
  border-color: #40537d;
  color: #b9caff;
}
.theme-dark .pill.green {
  background: #264738;
  color: #9cdabb;
}
.theme-dark .pill.amber {
  background: #4c3f28;
  color: #e5c487;
}
.theme-dark .pill.red {
  background: #512e32;
  color: #ffa8a8;
}
.theme-dark .error {
  background: #4b252c;
  color: #ffb0ba;
}
/* Public marketing site */
.theme-dark .bank-disclosure {
  background: #182130;
  color: #9aa8c2;
}
.theme-dark .bank-header {
  background: #111318;
  border-bottom-color: #262e3d;
  color: #e7ebf3;
}
.theme-dark .bank-menu-panel {
  background: #181e28;
  border-color: #2b3444;
  box-shadow: 0 30px 50px #00000055;
}
.theme-dark .bank-menu-panel > div:first-child {
  background: #202834;
}
.theme-dark .bank-menu-panel p {
  color: #98a3b8;
}
.theme-dark .bank-mobile-menu > div {
  background: #181e28;
  border-color: #2b3444;
  box-shadow: 0 20px 50px #00000055;
}
.theme-dark .bank-mobile-menu a:hover {
  background: #232c3c;
}
.theme-dark .bank-product,
.theme-dark .testimonial-card {
  background: #181e28;
  border-color: #2a3241;
}
.theme-dark .mini-account {
  background: #202834;
  border-color: #2a3241;
}
.theme-dark .route-visual > span {
  background: #202834;
  border-color: #2a3241;
  color: #aeb9d0;
}
.theme-dark .bank-global {
  background: #161c26;
}
.theme-dark .bank-fx-panel {
  background: #181e28;
  border-color: #2a3241;
  box-shadow: 0 15px 45px #00000030;
}
.theme-dark .bank-money-input {
  border-color: #2a3241;
}
.theme-dark .bank-money-input input,
.theme-dark .bank-money-input output {
  color: #e7ebf3 !important;
}
.theme-dark .bank-money-input select {
  background: #202834 !important;
  color: #c3ccdd !important;
}
.theme-dark .fx-label {
  background: #202834;
  color: #9db0e0;
}
.theme-dark .premium-home .confidence-stat strong {
  color: #e7ebf3;
}
.theme-dark .premium-home .confidence-stat span {
  color: #9aa5b7;
}
.theme-dark .bank-final-cta {
  background: #111318;
}
.theme-dark .bank-final-cta small {
  color: #8994a8;
}
.theme-dark .people-disclosure {
  color: #8994a8;
}
@media (min-width: 1500px) {
  main {
    padding-top: 45px;
  }
  .dashboard-top {
    grid-template-columns: 1fr 1.15fr;
  }
  .balance-panel {
    padding: 30px 30px 0;
  }
  .balance-value {
    font-size: 48px;
  }
  .bar-chart {
    height: 120px;
  }
  .balance-actions {
    margin-top: 32px;
  }
  .dashboard-bottom {
    grid-template-columns: 1.7fr 1fr;
  }
  .transactions td {
    padding-block: 18px;
  }
}
@media (max-width: 1150px) {
  .sidebar {
    width: 205px;
    padding-inline: 12px;
  }
  .sidebar .wordmark {
    font-size: 23px;
    margin-left: 7px;
  }
  .main-shell {
    margin-left: 205px;
    width: calc(100% - 205px);
  }
  main {
    padding: 30px 25px 20px;
  }
  .topbar {
    padding-inline: 25px;
  }
  .dashboard-bottom {
    grid-template-columns: 1.3fr 1fr;
  }
  .transactions td,
  .transactions th {
    padding-inline: 9px;
  }
  .transactions td:nth-child(2),
  .transactions th:nth-child(2) {
    display: none;
  }
  .balance-panel {
    padding-inline: 21px;
  }
  .account-card {
    padding: 16px 14px;
  }
  .account-card-top {
    gap: 7px;
  }
  .cashflow-totals {
    gap: 18px;
  }
  .pockets,
  .upcoming {
    padding: 18px;
  }
  .search-trigger span,
  .search-trigger kbd {
    display: none;
  }
}
@media (max-width: 900px) {
  .sidebar {
    width: 75px;
    padding: 28px 10px;
  }
  .sidebar .wordmark {
    margin: 0 9px 40px;
  }
  .sidebar .wordmark > span,
  .nav-caption,
  .nav-item > span,
  .nav-count,
  .sidebar-bottom {
    display: none;
  }
  .nav-item {
    padding: 13px 16px;
  }
  .main-shell {
    margin-left: 75px;
    width: calc(100% - 75px);
  }
  .dashboard-bottom {
    grid-template-columns: 1fr;
  }
  .right-stack {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .account-grid {
    gap: 10px;
  }
  .account-card-top {
    font-size: 9px;
  }
  .account-icon {
    width: 28px;
    height: 28px;
  }
  .account-card > strong {
    font-size: 21px;
  }
  .public-hero {
    gap: 25px;
  }
  .public-nav > a:nth-child(-n + 3) {
    display: none;
  }
  .feature-grid {
    grid-template-columns: 1fr 1fr;
  }
  .auth-brand {
    padding: 35px;
  }
  .auth-brand h1 {
    font-size: 43px;
  }
  .auth-form {
    padding: 30px;
  }
}
@media (max-width: 650px) {
  .sidebar {
    display: none;
  }
  .main-shell {
    margin-left: 0;
    width: 100%;
  }
  .topbar {
    height: 65px;
    padding: 0 19px;
  }
  .top-actions {
    gap: 14px;
  }
  .top-divider,
  .search-trigger {
    display: none;
  }
  .workspace-picker select {
    font-size: 11px;
    max-width: 150px;
  }
  main {
    padding: 27px 18px 90px;
  }
  .page-heading {
    align-items: start;
    margin-bottom: 24px;
  }
  .page-heading h1 {
    font-size: 25px;
    letter-spacing: -1px;
  }
  .eyebrow {
    font-size: 8px;
  }
  .page-heading p {
    font-size: 10px;
    max-width: 215px;
    line-height: 1.6;
  }
  .heading-actions .button {
    padding: 9px;
    font-size: 10px;
  }
  .heading-actions .button svg {
    display: none;
  }
  .dashboard-top {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .balance-panel {
    padding-top: 23px;
  }
  .balance-value {
    font-size: 42px;
  }
  .balance-note {
    font-size: 10px;
  }
  .balance-actions .button {
    font-size: 11px;
    padding: 10px 15px;
  }
  .balance-bottom {
    font-size: 10px;
  }
  .cashflow {
    padding: 22px;
  }
  .bar-chart {
    height: 105px;
  }
  .account-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .account-card {
    position: relative;
    padding: 18px;
  }
  .account-card-top {
    font-size: 12px;
    padding-right: 100px;
  }
  .account-card-top > svg {
    display: none;
  }
  .account-card-top small {
    font-size: 9px;
  }
  .account-card > strong {
    position: absolute;
    right: 18px;
    top: 17px;
    margin: 0;
    font-size: 20px;
  }
  .account-status {
    position: absolute;
    right: 18px;
    bottom: 18px;
    font-size: 8px;
  }
  .account-icon {
    width: 34px;
    height: 34px;
  }
  .right-stack {
    display: flex;
  }
  .dashboard-bottom {
    gap: 16px;
    margin-top: 20px;
  }
  .transactions td:first-child,
  .transactions th:first-child {
    padding-left: 16px;
  }
  .transactions td {
    padding-block: 16px;
  }
  .transactions td:last-child,
  .transactions th:last-child {
    display: none;
  }
  .transactions .pill {
    font-size: 7px;
  }
  .transaction-name {
    gap: 7px;
  }
  .merchant {
    width: 28px;
    height: 28px;
  }
  .app-footer {
    flex-direction: column;
    align-items: start;
    line-height: 1.8;
  }
  .mobile-nav {
    position: fixed;
    display: flex;
    bottom: 0;
    left: 0;
    right: 0;
    height: 65px;
    background: var(--surface);
    border-top: 1px solid var(--line);
    justify-content: space-around;
    z-index: 30;
    padding-bottom: env(safe-area-inset-bottom);
  }
  .mobile-nav a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding: 10px 15px;
    color: var(--muted);
    font-size: 9px;
  }
  .mobile-nav a.active {
    color: var(--blue);
  }
  .content-grid {
    grid-template-columns: 1fr;
  }
  .toolbar {
    flex-wrap: wrap;
  }
  .auth-wrap {
    display: block;
  }
  .auth-brand {
    padding: 25px;
  }
  .auth-brand h1,
  .auth-brand p,
  .auth-brand > small,
  .auth-sky {
    display: none;
  }
  .auth-form {
    padding: 40px 25px;
  }
  .public-header {
    padding: 20px;
  }
  .public-header .wordmark {
    font-size: 22px;
  }
  .public-nav {
    gap: 10px;
  }
  .public-nav > a {
    display: none;
  }
  .public-hero {
    display: block;
    padding: 45px 24px;
  }
  .public-hero h1 {
    font-size: 51px;
    letter-spacing: -3px;
  }
  .public-hero p {
    font-size: 13px;
  }
  .hero-preview {
    margin-top: 45px;
    transform: none;
  }
  .public-section {
    padding: 45px 24px;
  }
  .public-section h2 {
    font-size: 29px;
  }
  .feature-grid {
    gap: 10px;
  }
  .feature-grid a {
    padding: 20px 10px;
  }
  .feature-grid h3 {
    font-size: 16px;
  }
  .public-footer {
    padding: 30px 24px;
  }
  .prose h1 {
    font-size: 37px;
  }
  .staff-nav {
    gap: 12px;
  }
  .staff-nav .wordmark {
    width: 100%;
  }
  .toolbar input {
    min-width: 180px;
  }
  .button {
    white-space: normal;
  }
  .virtual-card {
    padding: 22px;
  }
  .card-number {
    font-size: 18px;
  }
  .card-bottom {
    font-size: 8px;
  }
  .list-row {
    flex-wrap: wrap;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    scroll-behavior: auto !important;
  }
  .sky-dove {
    animation: none !important;
    opacity: 0.4 !important;
    left: 20% !important;
    transform: none !important;
  }
}
.mobile-nav button {
  border: 0;
  background: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 10px 15px;
  color: var(--muted);
  font-size: 9px;
}
.mobile-menu {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 22px;
}
.mobile-menu a {
  padding: 15px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 7px;
  font-size: 12px;
}
.skip-link {
  position: fixed;
  top: -100px;
  left: 20px;
  z-index: 1000;
  background: var(--blue);
  color: white;
  padding: 15px;
  border-radius: 5px;
}
.skip-link:focus {
  top: 10px;
}
.currency-tag {
  background: transparent;
}
.currency-tag:hover {
  background: #30394d;
}
/* Keep activity filters usable when the table is narrower than a desktop page. */
.toolbar input {
  width: auto;
  min-width: 200px;
  flex: 1 1 240px;
}
.toolbar select {
  width: auto;
  min-width: 150px;
  flex: 0 0 auto;
}
.eyebrow,
.app-footer,
.chart-labels,
.chart-grid,
.chart-unit {
  color: #656e7e;
}
.nav-caption {
  color: #9098a8;
}
.theme-dark .eyebrow,
.theme-dark .app-footer,
.theme-dark .chart-labels,
.theme-dark .chart-grid,
.theme-dark .chart-unit {
  color: #a0abbd;
}
@media (max-width: 650px) {
  .toolbar input {
    flex-basis: 100%;
    min-width: 0;
  }
  .toolbar select {
    flex: 1;
    min-width: 0;
  }
}
/* International banking identity */
.bank-disclosure {
  background: #edf1f7;
  padding: 9px 4.5%;
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  color: #657085;
  letter-spacing: 0.1px;
}
.bank-disclosure a {
  display: flex;
  gap: 8px;
  align-items: center;
}
.bank-header {
  height: 91px;
  padding: 0 4.5%;
  display: flex;
  align-items: center;
  gap: 35px;
  background: #fff;
  border-bottom: 1px solid #edf0f4;
  position: relative;
  z-index: 40;
  color: #18202c;
}
.bank-wordmark {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: Manrope, sans-serif;
  font-weight: 800;
  font-size: 28px;
  letter-spacing: -1.5px;
}
.bank-wordmark svg {
  width: 35px;
  height: 35px;
  color: #365cff;
}
.bank-nav {
  display: flex;
  align-items: center;
  gap: 29px;
  font-size: 12px;
  margin: auto;
}
.bank-nav > a:hover,
.bank-signin:hover {
  color: #365cff;
}
.bank-header-actions {
  display: flex;
  gap: 24px;
  align-items: center;
}
.bank-signin {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 12px;
  font-weight: 600;
}
.bank-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  border-radius: 5px;
  padding: 15px 22px;
  font-size: 12px;
  font-weight: 600;
  border: 1px solid transparent;
  min-height: 46px;
  transition:
    transform 0.2s,
    background 0.2s;
  cursor: pointer;
}
.bank-button:hover {
  transform: translateY(-2px);
}
.bank-button.cobalt {
  background: #365cff;
  color: white;
  box-shadow: 0 5px 16px #365cff16;
}
.bank-button.cobalt:hover {
  background: #244be8;
}
.bank-button.dark {
  background: #18202c;
  color: white;
}
.bank-button.outline {
  border-color: #b9c2d3;
  background: transparent;
  color: #1a2330;
}
.bank-header .bank-button {
  font-size: 10px;
  padding: 12px 17px;
  min-height: 39px;
}
.bank-menu summary {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  list-style: none;
}
.bank-menu summary::-webkit-details-marker,
.bank-mobile-menu summary::-webkit-details-marker {
  display: none;
}
.bank-menu-panel {
  position: absolute;
  left: 4.5%;
  right: 4.5%;
  top: 82px;
  padding: 35px;
  background: white;
  border: 1px solid #e6eaf1;
  box-shadow: 0 30px 50px #11131822;
  border-radius: 10px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 35px;
}
.bank-menu-panel > div:first-child {
  background: #f0f3f9;
  padding: 25px;
  border-radius: 7px;
}
.bank-menu-panel small {
  letter-spacing: 1.4px;
  font-size: 9px;
}
.bank-menu-panel h3 {
  font-size: 26px;
  line-height: 1.3;
  margin: 18px 0;
}
.bank-menu-panel p {
  font-size: 12px;
  line-height: 1.8;
  color: #707786;
  margin-bottom: 20px;
}
.bank-menu-panel > div > a {
  color: #365cff;
  font-size: 11px;
  display: flex;
  gap: 10px;
}
.menu-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px 20px;
}
.menu-links > a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px;
  border-radius: 5px;
  font-size: 12px;
}
.menu-links > a svg {
  color: #7788a5;
}
.menu-links > a:hover {
  background: #eaf0ff;
}
.bank-mobile-menu {
  display: none;
}
.premium-home {
  max-width: none;
  padding: 0;
  margin: 0;
  background: #fff;
  color: #1b2430;
}
.bank-hero {
  max-width: 1560px;
  padding: 46px 4.5% 45px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  min-height: 635px;
  align-items: center;
}
.hero-story {
  padding: 18px 0 28px;
  position: relative;
  z-index: 1;
}
.bank-eyebrow {
  font-size: 9px;
  line-height: 1.7;
  font-weight: 600;
  letter-spacing: 1.8px;
  color: #707b8c;
  display: block;
}
.hero-story .bank-eyebrow {
  display: flex;
  gap: 9px;
  align-items: center;
  margin-bottom: 24px;
}
.hero-story .bank-eyebrow > span {
  width: 5px;
  height: 5px;
  background: #365cff;
  border-radius: 50%;
}
.hero-story h1 {
  font-size: clamp(45px, 4.7vw, 72px);
  letter-spacing: -3.8px;
  line-height: 1.1;
  font-weight: 500;
  max-width: 630px;
}
.hero-story h1 em {
  font-style: normal;
  color: #6d788b;
}
.hero-story > p {
  max-width: 365px;
  color: #6c7585;
  font-size: 15px;
  line-height: 1.85;
  margin: 26px 0 29px;
}
.hero-ctas {
  display: flex;
  gap: 24px;
  align-items: center;
}
.bank-text-link {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 11px;
  font-weight: 600;
}
.hero-assurance {
  margin-top: 36px;
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 10px;
  color: #526175;
}
.hero-assurance > svg {
  color: #5b7590;
}
.hero-assurance small {
  display: block;
  font-size: 9px;
  font-weight: 400;
  color: #7d8694;
  margin-top: 5px;
}
.hero-gallery {
  height: 555px;
  border-radius: 9px;
  overflow: hidden;
  position: relative;
  background: #d7d7ce;
}
.hero-slides,
.hero-slide {
  position: absolute;
  inset: 0;
}
.hero-slide {
  margin: 0;
  opacity: 0;
  transition: opacity 0.75s ease;
  pointer-events: none;
}
.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
}
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-slide:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    #1113181a 0,
    transparent 25%,
    transparent 40%,
    #111318a8 100%
  );
}
.hero-slide figcaption {
  position: absolute;
  left: 30px;
  bottom: 79px;
  z-index: 2;
  color: #fff;
}
.hero-slide figcaption span {
  font-size: 8px;
  letter-spacing: 2px;
  color: #e0e5ee;
  display: block;
  margin-bottom: 15px;
}
.hero-slide figcaption strong {
  font-family: Manrope, sans-serif;
  font-size: 29px;
  font-weight: 450;
  letter-spacing: -1px;
  line-height: 1.25;
}
.hero-gallery-top {
  position: absolute;
  top: 25px;
  left: 28px;
  right: 27px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  font-size: 8px;
  letter-spacing: 1.5px;
  z-index: 3;
}
.hero-gallery-top > span:last-child {
  width: 32px;
  height: 32px;
  border: 1px solid #ffffff66;
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.hero-gallery-controls {
  position: absolute;
  z-index: 4;
  bottom: 22px;
  left: 29px;
  right: 25px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.slider-dots {
  display: flex;
  gap: 6px;
  margin-right: auto;
}
.slider-dots button {
  border: 0;
  background: transparent;
  padding: 9px 0;
}
.slider-dots span {
  display: block;
  background: #ffffff66;
  width: 25px;
  height: 2px;
}
.slider-dots .active span {
  background: #fff;
  width: 48px;
}
.hero-gallery-controls > button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: 30px;
  min-height: 30px;
  background: #ffffff15;
  border: 1px solid #ffffff55;
  color: #fff;
  border-radius: 4px;
  font-size: 16px;
}
.hero-gallery-controls > button[data-slider-play] {
  font-size: 9px;
  padding: 0 9px;
  margin-right: 8px;
}
.hero-gallery-controls > button:hover {
  background: #ffffff33;
}
.bank-trustbar {
  border-block: 1px solid #e9edf2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 23px 4.5%;
  max-width: 1560px;
  margin: auto;
  font-size: 10px;
  color: #586375;
}
.bank-trustbar > span {
  font-size: 8px;
  letter-spacing: 1.4px;
  color: #8c93a0;
}
.bank-trustbar > div,
.bank-trustbar > a {
  display: flex;
  gap: 10px;
  align-items: center;
}
.bank-trustbar > div svg {
  color: #617797;
}
.bank-trustbar > a {
  font-size: 9px;
  color: #7c8594;
}
.bank-confidence {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-7);
  max-width: 1100px;
  margin: var(--space-6) auto;
  padding: 0 4.5%;
}
.confidence-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-1);
  text-align: center;
}
.confidence-stat strong {
  font-family: "Manrope", sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.5px;
}
.confidence-stat span {
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.2px;
  max-width: 140px;
}
.bank-products {
  max-width: 1560px;
  margin: auto;
  padding: 83px 4.5% 80px;
}
.bank-section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  margin-bottom: 36px;
}
.bank-section-heading h2,
.bank-global h2,
.bank-security h2,
.bank-fees-callout h2 {
  font-size: 39px;
  font-weight: 500;
  letter-spacing: -1.8px;
  line-height: 1.2;
  margin-top: 15px;
}
.bank-section-heading > p {
  font-size: 12px;
  line-height: 1.8;
  color: #727e8e;
  max-width: 330px;
  padding-bottom: 4px;
}
.bank-product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.bank-product {
  padding: 25px;
  border: 1px solid #e5e9ef;
  border-radius: 8px;
  background: #f8f9fb;
  transition:
    transform 0.25s,
    border-color 0.25s,
    box-shadow 0.25s;
}
.bank-product:hover {
  transform: translateY(-4px);
  border-color: #bac8eb;
  box-shadow: var(--shadow-md);
}
.product-top {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 8px;
  color: #9aa4b3;
  letter-spacing: 1px;
}
.product-top > span {
  color: #657185;
}
.product-top > svg {
  margin-left: auto;
  color: #7a8ba6;
}
.product-visual {
  height: 180px;
  margin: 20px 0 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.mini-account {
  width: 240px;
  padding: 19px;
  border: 1px solid #e0e5ee;
  background: white;
  border-radius: 10px;
  box-shadow: 0 10px 25px #455a7820;
  transform: rotate(-5deg);
}
.mini-account > span {
  font-size: 8px;
  color: #8590a2;
  display: flex;
  justify-content: space-between;
}
.mini-account strong {
  display: block;
  font-size: 24px;
  font-weight: 450;
  letter-spacing: -1px;
  margin: 16px 0;
}
.mini-account small {
  font-size: 7px;
  color: #73819a;
}
.mini-account small svg {
  color: #6483d1;
  margin-right: 4px;
}
.mini-business {
  background: #232d3d;
  padding: 25px;
  border-radius: 9px;
  width: 240px;
  transform: rotate(4deg);
  box-shadow: 0 10px 25px #455a7820;
}
.mini-business > span {
  font-size: 7px;
  letter-spacing: 1px;
  color: #9eaabe;
}
.mini-business > div {
  display: flex;
  gap: 8px;
  align-items: end;
  height: 65px;
  margin: 17px 0;
}
.mini-business i {
  width: 24px;
  height: 20%;
  border-radius: 3px 3px 0 0;
  background: #6c87d1;
}
.mini-business i:nth-child(2) {
  height: 35%;
}
.mini-business i:nth-child(3) {
  height: 50%;
}
.mini-business i:nth-child(4) {
  height: 40%;
}
.mini-business i:nth-child(5) {
  height: 70%;
}
.mini-business i:nth-child(6) {
  height: 95%;
  background: #9eb2eb;
}
.mini-business small {
  font-size: 8px;
  color: #bac5d7;
}
.route-visual {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  justify-content: center;
}
.route-visual > span {
  width: 65px;
  height: 65px;
  display: grid;
  place-items: center;
  border: 1px solid #d9e1ef;
  background: #fff;
  border-radius: 50%;
  font-size: 16px;
  color: #576f9d;
  box-shadow: 0 5px 15px #455a7810;
}
.route-visual > i {
  border-top: 1px dashed #a8b7d3;
  width: 20px;
}
.route-visual > svg {
  color: #6581b5;
}
.route-caption {
  font-size: 9px;
  color: #8490a1;
  margin-top: 25px;
}
.bank-product h3 {
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -0.7px;
}
.bank-product p {
  font-size: 12px;
  color: #7a8493;
  line-height: 1.8;
  margin: 15px 0 27px;
  max-width: 290px;
}
.product-link {
  font-size: 10px;
  font-weight: 550;
  display: flex;
  align-items: center;
  gap: 9px;
}
.bank-people {
  max-width: 1560px;
  margin: auto;
  padding: 10px 4.5% 90px;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: center;
}
.people-photo {
  position: relative;
  margin: 0;
  border-radius: 9px;
  overflow: hidden;
  aspect-ratio: 900 / 640;
}
.people-slide {
  position: absolute;
  inset: 0;
  display: block;
  opacity: 0;
  animation: people-fade 18s infinite;
}
.people-slide:nth-child(1) {
  animation-delay: 0s;
}
.people-slide:nth-child(2) {
  animation-delay: 6s;
}
.people-slide:nth-child(3) {
  animation-delay: 12s;
}
.people-slide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
@keyframes people-fade {
  0%,
  100% {
    opacity: 0;
  }
  4% {
    opacity: 1;
  }
  30% {
    opacity: 1;
  }
  36% {
    opacity: 0;
  }
}
.people-copy > p {
  font-size: 13px;
  color: #727f91;
  line-height: 1.9;
  margin: 18px 0 30px;
  max-width: 420px;
}
.testimonial-grid {
  display: grid;
  gap: 14px;
}
.testimonial-card {
  margin: 0;
  padding: 22px;
  border: 1px solid #e5e9ef;
  border-radius: 8px;
  background: #f8f9fb;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 16px;
  transition:
    transform 0.25s,
    border-color 0.25s,
    box-shadow 0.25s;
}
.testimonial-card:hover {
  transform: translateY(-3px);
  border-color: #bac8eb;
  box-shadow: var(--shadow-md);
}
.testimonial-card .avatar {
  grid-row: span 2;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 700;
}
.testimonial-card blockquote {
  margin: 0;
  font-size: 13px;
  line-height: 1.65;
  color: #333c4b;
}
.testimonial-card figcaption {
  font-size: 10px;
  color: #8891a1;
}
.testimonial-card figcaption strong {
  color: #48536b;
  font-weight: 600;
  margin-right: 6px;
}
.people-disclosure {
  display: block;
  margin-top: 18px;
  font-size: 9px;
  color: #8b96a7;
}
.bank-global {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 95px;
  padding: 75px 8%;
  align-items: center;
  background: #f1f4f8;
}
.bank-global-copy > p {
  font-size: 13px;
  color: #727f91;
  line-height: 1.9;
  margin: 24px 0;
  max-width: 385px;
}
.rate-disclaimer {
  font-size: 9px;
  line-height: 1.8;
  color: #7f8a9b;
  max-width: 340px;
  margin-top: 20px;
}
.bank-fx-panel {
  background: white;
  border: 1px solid #e1e7f0;
  border-radius: 10px;
  padding: 27px;
  box-shadow: 0 15px 45px #63748e12;
  max-width: 470px;
}
.bank-fx-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  font-size: 10px;
  padding-bottom: 22px;
  border-bottom: 1px solid #edf0f5;
}
.bank-fx-title > span:first-child {
  display: flex;
  gap: 8px;
  align-items: center;
}
.fx-label {
  font-size: 7px;
  letter-spacing: 0.8px;
  background: #edf3ff;
  color: #6b81b6;
  padding: 5px 6px;
  border-radius: 4px;
}
.bank-money-input {
  border: 1px solid #dfe5ef;
  display: flex;
  align-items: center;
  border-radius: 6px;
  padding: 13px 15px;
  margin-top: 7px;
}
.bank-money-input input,
.bank-money-input output {
  border: 0 !important;
  padding: 0 !important;
  font-size: 26px !important;
  font-weight: 500;
  background: transparent !important;
  color: #233047 !important;
  min-width: 0;
  flex: 1;
}
.bank-money-input select {
  width: 74px !important;
  border: 0 !important;
  padding: 4px !important;
  color: #4d607f !important;
  background: #f2f5fa !important;
  font-size: 12px !important;
}
.bank-fx-panel label {
  font-size: 9px;
  color: #6c7b92;
  font-weight: 400;
  margin-top: 20px;
}
.fx-switch {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 17px 2px;
  color: #7990b5;
  font-size: 9px;
}
.bank-fx-panel .bank-button {
  width: 100%;
  margin-top: 24px;
}
.bank-fx-panel form > p {
  font-size: 9px;
  color: #8b96a7;
  line-height: 1.6;
  margin-top: 14px;
}
.bank-security {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 90px;
  padding: 85px 8%;
  background: #18212e;
  color: white;
}
.bank-security .bank-eyebrow {
  color: #90a0b8;
}
.security-lead > p {
  font-size: 13px;
  line-height: 1.8;
  max-width: 300px;
  color: #9eaabc;
  margin: 22px 0 27px;
}
.security-lead > a {
  font-size: 11px;
  display: flex;
  gap: 15px;
  color: #d1ddf4;
}
.security-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 38px;
}
.security-grid article {
  transition:
    transform 0.25s,
    box-shadow 0.25s;
  border-radius: var(--radius-sm);
  padding: var(--space-2);
  margin: calc(var(--space-2) * -1);
}
.security-grid article:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.security-grid article > svg {
  color: #90a9da;
}
.security-grid h3 {
  font-size: 15px;
  margin: 16px 0 10px;
  letter-spacing: -0.3px;
}
.security-grid p {
  font-size: 11px;
  color: #94a1b6;
  line-height: 1.9;
  max-width: 225px;
}
.bank-fees-callout {
  padding: 65px 8%;
  display: flex;
  gap: 55px;
  align-items: center;
  border-bottom: 1px solid #e9edf4;
}
.bank-fees-callout > div {
  flex: 1;
}
.bank-fees-callout > p {
  max-width: 360px;
  font-size: 12px;
  line-height: 1.9;
  color: #748195;
}
.bank-fees-callout h2 {
  font-size: 32px;
}
.bank-final-cta {
  text-align: center;
  padding: 80px 20px 85px;
  background: #f7f9fc;
}
.bank-final-cta h2 {
  font-size: 49px;
  line-height: 1.13;
  font-weight: 500;
  letter-spacing: -2.5px;
  margin: 20px 0 27px;
}
.bank-final-cta small {
  display: block;
  color: #8e97a7;
  font-size: 9px;
  margin-top: 20px;
}
.bank-footer {
  background: #101722;
  color: #a0acbd;
  padding: 48px 4.5% 25px;
}
.bank-footer-top {
  display: flex;
  align-items: center;
  gap: 55px;
  padding-bottom: 37px;
  border-bottom: 1px solid #283142;
}
.bank-footer .bank-wordmark {
  color: white;
  font-size: 27px;
}
.bank-footer-top > p {
  font-size: 12px;
}
.bank-footer-top > a:last-child {
  margin-left: auto;
  color: #dce4f1;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 18px;
}
.bank-footer-columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding: 40px 0;
}
.bank-footer-columns > div {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.bank-footer-columns span {
  font-size: 8px;
  letter-spacing: 1.5px;
  color: #6f819d;
  margin-bottom: 7px;
}
.bank-footer-columns a {
  font-size: 11px;
}
.bank-footer-columns a:hover {
  color: white;
}
.bank-footer-legal {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #283142;
  padding: 23px 0;
  font-size: 9px;
  color: #788aa4;
}
.bank-footer-legal > div {
  display: flex;
  gap: 25px;
}
.bank-fineprint {
  font-size: 9px;
  line-height: 1.8;
  color: #75839b;
  max-width: 1060px;
}
.premium-public {
  max-width: 1280px;
  padding: 70px 5%;
  min-height: 70vh;
}
.premium-public h1 {
  font-size: 46px;
  font-weight: 500;
  letter-spacing: -2px;
  margin: 17px 0;
}
.premium-public-intro {
  font-size: 15px;
  line-height: 1.8;
  color: var(--muted);
  max-width: 650px;
  margin-bottom: 35px;
}
.fee-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
}
.fee-table th {
  text-align: left;
  padding: 17px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 500;
  border-bottom: 1px solid var(--line);
}
.fee-table td {
  padding: 21px 17px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.fee-table strong {
  display: block;
  font-size: 13px;
  margin-bottom: 6px;
}
.fee-table small {
  display: block;
  line-height: 1.6;
  max-width: 360px;
}
.bank-hero .hero-story {
  animation: hero-enter 0.65s ease both;
}
.hero-story .bank-eyebrow {
  animation: hero-enter 0.55s ease both;
}
.hero-story h1 {
  animation: hero-enter 0.55s ease both;
  animation-delay: 0.08s;
}
.hero-story > p {
  animation: hero-enter 0.55s ease both;
  animation-delay: 0.14s;
}
.hero-story .hero-ctas {
  animation: hero-enter 0.55s ease both;
  animation-delay: 0.2s;
}
.hero-story .hero-assurance {
  animation: hero-enter 0.55s ease both;
  animation-delay: 0.26s;
}
.hero-gallery {
  animation: hero-enter 0.85s ease both;
}
@keyframes hero-enter {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.reveal {
  opacity: 0;
}
.reveal.in-view {
  animation: rise-in 0.5s ease both;
}
@media (min-width: 1500px) {
  .bank-hero {
    gap: 65px;
    padding-top: 65px;
    padding-bottom: 65px;
  }
  .hero-gallery {
    height: 620px;
  }
  .hero-story h1 {
    font-size: 76px;
  }
  .hero-story > p {
    font-size: 17px;
    max-width: 400px;
  }
  .bank-nav {
    font-size: 13px;
    gap: 35px;
  }
}
@media (max-width: 1150px) {
  .bank-header {
    gap: 22px;
  }
  .bank-nav {
    gap: 17px;
    font-size: 10px;
  }
  .bank-header-actions {
    gap: 15px;
  }
  .bank-header .bank-button {
    font-size: 9px;
    padding: 12px;
  }
  .bank-wordmark {
    font-size: 25px;
  }
  .bank-hero {
    gap: 25px;
    min-height: 570px;
  }
  .hero-gallery {
    height: 500px;
  }
  .hero-story h1 {
    font-size: 51px;
    letter-spacing: -2.8px;
  }
  .hero-story > p {
    font-size: 13px;
  }
  .hero-ctas {
    gap: 15px;
  }
  .hero-ctas .bank-button {
    padding: 14px 16px;
    font-size: 10px;
  }
  .bank-trustbar > span {
    display: none;
  }
  .bank-people {
    gap: 40px;
    padding-inline: 5%;
  }
  .bank-global,
  .bank-security {
    gap: 45px;
    padding-inline: 5%;
  }
  .bank-fees-callout {
    gap: 30px;
    padding-inline: 5%;
  }
  .bank-fees-callout > p {
    max-width: 270px;
  }
  .bank-product {
    padding: 20px;
  }
  .bank-product h3 {
    font-size: 18px;
  }
  .mini-account,
  .mini-business {
    width: 210px;
  }
  .bank-section-heading h2 {
    font-size: 33px;
  }
}
@media (max-width: 850px) {
  .bank-nav,
  .bank-header-actions > .bank-button {
    display: none;
  }
  .bank-header-actions {
    margin-left: auto;
  }
  .bank-mobile-menu {
    display: block;
  }
  .bank-mobile-menu summary {
    list-style: none;
    cursor: pointer;
    padding: 5px;
  }
  .bank-mobile-menu > div {
    position: absolute;
    right: 20px;
    top: 75px;
    width: 300px;
    max-height: 75vh;
    overflow: auto;
    background: white;
    border: 1px solid #e0e5ee;
    border-radius: 8px;
    box-shadow: 0 20px 50px #11131822;
    padding: 15px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
  }
  .bank-mobile-menu a {
    padding: 10px;
    font-size: 11px;
    border-radius: 4px;
  }
  .bank-mobile-menu a:hover {
    background: #edf2ff;
  }
  .bank-header {
    height: 76px;
  }
  .bank-hero {
    padding-top: 32px;
    gap: 25px;
  }
  .hero-story h1 {
    font-size: 43px;
    letter-spacing: -2px;
  }
  .hero-gallery {
    height: 475px;
  }
  .hero-ctas {
    align-items: start;
    flex-direction: column;
    gap: 18px;
  }
  .hero-assurance {
    margin-top: 25px;
    font-size: 9px;
  }
  .hero-assurance small {
    font-size: 8px;
  }
  .hero-slide figcaption {
    left: 22px;
  }
  .hero-slide figcaption strong {
    font-size: 23px;
  }
  .bank-trustbar {
    font-size: 9px;
    gap: 12px;
  }
  .bank-trustbar > a {
    display: none;
  }
  .bank-products {
    padding-block: 55px;
  }
  .bank-product-grid {
    gap: 12px;
  }
  .bank-product {
    padding: 17px;
  }
  .product-top {
    gap: 6px;
    font-size: 7px;
  }
  .product-top svg {
    width: 14px;
  }
  .mini-account,
  .mini-business {
    width: 170px;
  }
  .bank-product p {
    font-size: 10px;
  }
  .bank-product h3 {
    font-size: 16px;
  }
  .product-link {
    font-size: 9px;
    gap: 4px;
  }
  .route-visual > span {
    width: 50px;
    height: 50px;
    font-size: 13px;
  }
  .route-visual {
    gap: 5px;
  }
  .route-visual > i {
    width: 10px;
  }
  .bank-section-heading > p {
    display: none;
  }
  .bank-people {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-block-end: 60px;
  }
  .people-photo img {
    aspect-ratio: 900 / 420;
  }
  .people-copy h2 {
    font-size: 33px;
  }
  .testimonial-grid {
    gap: 12px;
  }
  .bank-global {
    gap: 25px;
  }
  .bank-global h2,
  .bank-security h2 {
    font-size: 33px;
  }
  .bank-fx-panel {
    padding: 20px;
  }
  .bank-fx-title {
    font-size: 9px;
  }
  .fx-label {
    display: none;
  }
  .bank-security {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .security-lead > p {
    max-width: 500px;
  }
  .security-grid {
    gap: 25px;
  }
  .security-grid p {
    max-width: none;
  }
  .bank-fees-callout {
    flex-wrap: wrap;
    gap: 20px;
  }
  .bank-fees-callout > p {
    max-width: 50%;
  }
  .bank-fees-callout .bank-button {
    margin-left: auto;
  }
  .bank-footer-top {
    gap: 25px;
  }
  .bank-footer-top > p {
    display: none;
  }
}
@media (max-width: 600px) {
  .bank-disclosure {
    padding: 8px 20px;
    font-size: 8px;
  }
  .bank-disclosure > a {
    font-size: 8px;
  }
  .bank-header {
    padding: 0 20px;
  }
  .bank-wordmark {
    font-size: 25px;
  }
  .bank-signin {
    font-size: 11px;
  }
  .bank-hero {
    grid-template-columns: 1fr;
    padding: 35px 20px 25px;
    gap: 25px;
  }
  .hero-story {
    padding: 0;
  }
  .hero-story .bank-eyebrow {
    font-size: 8px;
    letter-spacing: 1.2px;
    margin-bottom: 20px;
  }
  .hero-story h1 {
    font-size: 49px;
    line-height: 1.08;
    max-width: 470px;
    letter-spacing: -2.8px;
  }
  .hero-story > p {
    font-size: 13px;
    line-height: 1.8;
    margin: 22px 0;
    max-width: 340px;
  }
  .hero-ctas {
    flex-direction: row;
    align-items: center;
    gap: 17px;
  }
  .hero-ctas .bank-button {
    font-size: 10px;
    gap: 8px;
    padding: 14px 13px;
  }
  .bank-text-link {
    font-size: 9px;
    gap: 5px;
  }
  .hero-assurance {
    margin-top: 25px;
    font-size: 9px;
  }
  .hero-gallery {
    height: 400px;
  }
  .hero-slide figcaption strong {
    font-size: 29px;
  }
  .hero-slide figcaption {
    bottom: 70px;
  }
  .bank-trustbar {
    padding: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    font-size: 9px;
    gap: 18px;
  }
  .bank-trustbar > div:last-of-type {
    grid-column: 1/-1;
  }
  .bank-products {
    padding: 48px 20px;
  }
  .bank-section-heading h2 {
    font-size: 31px;
    letter-spacing: -1.4px;
  }
  .bank-eyebrow {
    font-size: 8px;
    letter-spacing: 1.4px;
  }
  .bank-product-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .bank-product {
    padding: 24px;
  }
  .bank-product h3 {
    font-size: 23px;
  }
  .product-top {
    font-size: 9px;
  }
  .product-top svg {
    width: 20px;
  }
  .product-visual {
    height: 170px;
    margin: 20px 0;
  }
  .mini-account,
  .mini-business {
    width: 245px;
  }
  .bank-product p {
    font-size: 12px;
    max-width: none;
  }
  .product-link {
    font-size: 11px;
  }
  .route-visual > span {
    width: 70px;
    height: 70px;
    font-size: 18px;
  }
  .route-visual {
    gap: 15px;
  }
  .route-visual > i {
    width: 22px;
  }
  .bank-people {
    padding: 0 20px 50px;
  }
  .people-copy h2 {
    font-size: 31px;
    letter-spacing: -1.4px;
  }
  .people-copy > p {
    max-width: none;
  }
  .testimonial-card {
    grid-template-columns: 1fr;
    padding: 18px;
  }
  .testimonial-card .avatar {
    grid-row: auto;
    margin-bottom: 6px;
  }
  .bank-global {
    grid-template-columns: 1fr;
    padding: 50px 20px;
    gap: 30px;
  }
  .bank-global h2,
  .bank-security h2 {
    font-size: 36px;
  }
  .bank-global-copy > p {
    font-size: 13px;
  }
  .bank-fx-panel {
    padding: 24px;
    max-width: none;
  }
  .bank-security {
    padding: 50px 24px;
    gap: 35px;
  }
  .security-grid {
    gap: 30px 20px;
  }
  .security-grid h3 {
    font-size: 14px;
  }
  .security-grid p {
    font-size: 11px;
  }
  .bank-fees-callout {
    display: block;
    padding: 45px 24px;
  }
  .bank-fees-callout > p {
    max-width: none;
    margin: 22px 0;
    font-size: 12px;
  }
  .bank-fees-callout .bank-button {
    margin: 0;
  }
  .bank-final-cta {
    padding: 55px 20px;
  }
  .bank-final-cta h2 {
    font-size: 38px;
    letter-spacing: -1.7px;
  }
  .bank-footer {
    padding: 35px 24px 25px;
  }
  .bank-footer-top .bank-wordmark {
    font-size: 24px;
  }
  .bank-footer-top > a:last-child {
    font-size: 11px;
    gap: 7px;
  }
  .bank-footer-columns {
    grid-template-columns: 1fr 1fr;
    gap: 35px 22px;
  }
  .bank-footer-columns a {
    font-size: 11px;
  }
  .bank-footer-columns span {
    font-size: 8px;
  }
  .bank-footer-legal {
    flex-direction: column;
    gap: 20px;
  }
  .bank-fineprint {
    font-size: 8px;
  }
  .premium-public {
    padding: 45px 20px;
  }
  .premium-public h1 {
    font-size: 37px;
  }
  .premium-public-intro {
    font-size: 13px;
  }
  .fee-table {
    min-width: 650px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-story,
  .hero-gallery,
  .hero-story .bank-eyebrow,
  .hero-story h1,
  .hero-story > p,
  .hero-story .hero-ctas,
  .hero-story .hero-assurance,
  .reveal,
  .reveal.in-view {
    animation: none !important;
    opacity: 1 !important;
  }
  .hero-slide {
    transition: none !important;
  }
  .people-slide {
    animation: none !important;
    opacity: 0 !important;
  }
  .people-slide:first-child {
    opacity: 1 !important;
  }
  .bank-button:hover,
  .bank-product:hover,
  .security-grid article:hover {
    transform: none;
  }
}
/* International banking workspace */
.sidebar {
  overflow-y: auto;
}
.sidebar nav {
  flex-shrink: 0;
}
.control-main {
  max-width: 1440px;
  margin: auto;
  padding: 40px;
}
.control-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 24px 0 40px;
}
.control-tabs a {
  padding: 10px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
}
.control-grid,
.location-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin: 24px 0;
}
.control-main section {
  scroll-margin-top: 24px;
}
.control-main form,
.chat-panel form,
#rail-form,
#exchange-form {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}
.control-main textarea,
.chat-panel textarea {
  width: 100%;
  min-height: 90px;
  border: 1px solid var(--border);
  padding: 12px;
  font: inherit;
  border-radius: 8px;
  background: var(--surface);
  color: inherit;
}
.form-feedback {
  color: #a33535;
  line-height: 1.5;
}
.control-main .panel h2,
.chat-panel h2 {
  margin-bottom: 14px;
}
.config-preview {
  white-space: pre-wrap;
  padding: 20px;
}
.chat-heading {
  display: flex;
  justify-content: space-between;
  gap: 15px;
}
.chat-log {
  max-height: 430px;
  min-height: 160px;
  overflow: auto;
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.chat-message {
  max-width: 85%;
  background: #eef1f6;
  padding: 16px 20px;
  border-radius: 14px;
  align-self: flex-start;
}
.chat-message.staff {
  background: #e7f1ff;
  align-self: flex-end;
}
.chat-message p {
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  margin: 8px 0;
}
.chat-message time,
.chat-message small {
  font-size: 11px;
  color: #697386;
}
.credit-score {
  font-size: 110px;
  letter-spacing: -7px;
  font-weight: 500;
  margin: 35px 0;
}
.score-track {
  height: 9px;
  border-radius: 9px;
  background: linear-gradient(90deg, #d8a36b, #e6d898, #8cbaab, #4d8b83);
}
.score-panel {
  text-align: center;
}
.receipt-row {
  flex-wrap: wrap;
}
.more-international {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}
.location-card[hidden] {
  display: none;
}
.location-card h2 {
  margin: 18px 0;
}
.location-card p {
  margin: 16px 0;
}
.theme-dark .chat-message {
  background: #242c39;
}
.theme-dark .chat-message.staff {
  background: #22364d;
}
.fee-table small {
  display: block;
  margin-top: 7px;
}
.control-main .notice {
  margin: 20px 0;
}
.panel + .panel {
  margin-top: 22px;
}
@media (max-width: 700px) {
  .control-main {
    padding: 24px 18px;
  }
  .control-grid,
  .location-grid {
    grid-template-columns: 1fr;
  }
  .chat-heading {
    display: block;
  }
  .chat-message {
    max-width: 95%;
  }
  .receipt-row > div {
    width: 100%;
  }
  .credit-score {
    font-size: 84px;
  }
}
.account-editor{border-bottom:1px solid var(--border);padding:16px 0}.account-editor summary{cursor:pointer;line-height:1.6}.account-editor .panel{border:0;padding:20px 0;box-shadow:none}.detail-row strong{overflow-wrap:anywhere;max-width:70%}
.premium-home .confidence-stat strong{color:#1a2230}.premium-home .confidence-stat span{color:#657084}
/* Consistent administration sidebar. */
.staff-nav{position:fixed;inset:0 auto 0 0;width:242px;overflow-y:auto;display:flex;flex-direction:column;align-items:stretch;flex-wrap:nowrap;gap:4px;padding:27px 16px;z-index:40;background:#111318;color:#ccd1db;border-right:1px solid #252c3b}.staff-nav .wordmark{display:flex;align-items:center;gap:8px;font-size:22px;flex-wrap:wrap;margin:0 0 20px;padding:0 8px;flex-shrink:0;color:#ccd1db}.staff-nav>a:not(.wordmark){flex-shrink:0}.staff-nav .wordmark small{width:100%;font-size:9px;letter-spacing:.18em;color:#8e9bb1}.staff-nav .wordmark .brand-dove{width:20px;height:16px;color:#7c8fb8}.staff-nav>a:not(.wordmark){padding:10px 13px;font-size:12px;border-radius:7px;color:#aebbd0;line-height:1.3}.staff-nav>a:hover,.staff-nav>a.active{background:#233451;color:white}.staff-nav .icon-button{margin-top:16px;flex-shrink:0;color:#b9c6db}.admin-nav-caption{font-size:9px;letter-spacing:.16em;color:#718198;padding:22px 13px 8px}.admin-environment{font-size:10px;line-height:1.6;padding:18px 12px;margin-top:16px;border-top:1px solid #2b3445;color:#9caec8;flex-shrink:0}.staff-layout,.staff-nav~.control-main{margin-left:242px;width:calc(100% - 242px);max-width:none;padding:40px;min-width:0}.control-main>.control-tabs{display:none}.admin-menu-toggle{display:none}.staff-layout .page-heading{flex-wrap:wrap}.staff-nav~.control-main>.button{display:none}@media(max-width:1100px){.staff-nav~.control-main .control-grid{grid-template-columns:1fr}.staff-layout,.staff-nav~.control-main{padding:28px}}@media(max-width:700px){.staff-nav{transform:translateX(-100%);transition:transform .2s ease;width:242px;padding-top:75px}.admin-menu-open .staff-nav{transform:translateX(0);box-shadow:20px 0 80px #0005}.admin-menu-toggle{display:flex;position:fixed;top:12px;left:14px;z-index:45;background:#fff;color:#162338;box-shadow:0 2px 12px #0001}.staff-layout,.staff-nav~.control-main{margin-left:0;width:100%;padding:82px 18px 24px}}
.receipt-brand{display:flex;align-items:center;gap:13px;margin:22px 0;padding:17px 18px;border:1px solid var(--border);border-radius:12px;background:var(--surface)}.receipt-brand img{flex-shrink:0}.receipt-brand strong{display:block;font-size:14px;font-weight:600}.receipt-brand small{display:block;margin-top:4px;font-size:11px;color:var(--muted)}
