@charset "UTF-8";
:root {
  /* Shared palette with the landing page (.lp) for visual continuity. */
  --bg: #fafaf9; /* warm off-white, matches .lp background */
  --card: #ffffff;
  --border: #e2e8f0; /* slate-200 */
  --text: #0f172a; /* slate-900 */
  --muted: #64748b; /* slate-500 */
  --accent: #0f172a; /* primary actions use the same dark slate as the landing */
  --link: #2563eb; /* keep blue for hyperlink-style "click here" text */
  --ok: #16a34a;
  --bad: #dc2626;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: "Signika Negative", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 14px;
  line-height: 1.4;
}

a {
  color: var(--link);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

.app {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.app__nav {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 22px 40px;
  background: var(--bg); /* matches .lp nav — no card strip */
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 10;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}
.app__brand {
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.01em;
  color: var(--text);
}
.app__nav-links {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 28px;
}
.app__nav-links a, .app__nav-links .app__nav-signout {
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
}
.app__nav-links a.active, .app__nav-links .app__nav-signout.active {
  color: var(--text);
  font-weight: 600;
}
.app__nav-links a:hover, .app__nav-links .app__nav-signout:hover {
  color: var(--text);
  text-decoration: none;
}
.app__main {
  padding: 28px;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
}

.loading, .error, .muted {
  color: var(--muted);
  padding: 16px;
}

.error {
  color: var(--bad);
}

.kpi-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 20px;
}

.kpi {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.kpi span {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.kpi strong {
  font-size: 22px;
  font-weight: 600;
}
.kpi--balance strong {
  font-size: 26px;
  color: var(--accent);
}

.ok {
  color: var(--ok);
}

.bad {
  color: var(--bad);
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 18px 20px;
  margin-bottom: 20px;
}
.card header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.card header h2 {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
}

.dashboard__actions {
  display: flex;
  gap: 8px;
  align-items: center;
}

.dashboard__export {
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  padding: 6px 10px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: #fff;
}
.dashboard__export:hover {
  color: var(--text);
  background: #f3f4f6;
}

.dashboard__wipe {
  font-size: 13px;
  color: #dc2626;
  cursor: pointer;
  padding: 6px 10px;
  border: 1px solid #fecaca;
  border-radius: 6px;
  background: #fff;
}
.dashboard__wipe:hover:not(:disabled) {
  background: #fef2f2;
}
.dashboard__wipe:disabled {
  opacity: 0.6;
  cursor: default;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
table th {
  text-align: left;
  font-weight: 600;
  color: var(--muted);
  padding: 8px 10px;
  border-bottom: 1px solid var(--border);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
table td {
  padding: 10px;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}
table tbody tr:hover {
  background: #f9fafb;
}
table .num {
  text-align: right;
  font-variant-numeric: tabular-nums;
}
table .mono {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
}

.accounts-table td strong {
  font-weight: 600;
}

.breadcrumb {
  margin-bottom: 8px;
}

.account-header {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 20px;
}
.account-header h1 {
  margin: 0;
  font-size: 26px;
}
.account-header .mono {
  color: var(--muted);
}

.pill {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.pill--credit {
  background: #ecfdf5;
  color: var(--ok);
}
.pill--debit {
  background: #fef2f2;
  color: var(--bad);
}

.transfers__filters {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
}
.transfers__filters input[type=search] {
  flex: 1;
  padding: 8px 10px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 13px;
}
.transfers__filters select {
  padding: 8px 12px;
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 6px;
  cursor: pointer;
  font-size: 13px;
}
.transfers__summary {
  color: var(--muted);
  font-size: 12px;
  margin-bottom: 8px;
}

.transfers__totals {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  align-items: center;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 18px;
  margin-bottom: 12px;
}
.transfers__totals > span {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
}
.transfers__totals-label {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.transfers__totals strong {
  font-size: 18px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}
.transfers__totals strong.ok  { color: var(--ok); }
.transfers__totals strong.bad { color: var(--bad); }

.transfers-page__filters {
  margin-bottom: 14px;
}
.transfers-page__filters label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
}
.transfers-page__filters select {
  padding: 6px 10px;
  border: 1px solid var(--border);
  border-radius: 6px;
}

.table-wrap {
  overflow-x: auto;
}

.transfers-table th.sortable {
  cursor: pointer;
  user-select: none;
  white-space: nowrap;
}
.transfers-table th.sortable:hover {
  color: var(--text);
}
.transfers-table th.sortable--active {
  color: var(--text);
}

.transfers-table .remarks {
  color: var(--muted);
  max-width: 400px;
  word-break: break-word;
}
.transfers-table .from-account {
  font-weight: 500;
  white-space: nowrap;
}
.transfers-table .balance-cell {
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.transfers-table .counterparty {
  max-width: 280px;
  word-break: break-word;
}
.transfers-table .counterparty__name {
  font-weight: 500;
}
.transfers-table .counterparty__dir {
  color: var(--muted);
  font-weight: 400;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-right: 2px;
}
.transfers-table .counterparty__meta {
  color: var(--muted);
  font-size: 11px;
  margin-top: 2px;
}

.pagination {
  display: flex;
  gap: 6px;
  align-items: center;
  justify-content: center;
  padding: 14px 0 4px;
}
.pagination button {
  padding: 6px 12px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 6px;
  cursor: pointer;
  font-size: 12px;
}
.pagination button:disabled {
  opacity: 0.4;
  cursor: default;
}
.pagination span {
  color: var(--muted);
  font-size: 12px;
  padding: 0 10px;
}

.line-chart, .bar-chart {
  position: relative;
}
.line-chart svg, .bar-chart svg {
  width: 100%;
  height: auto;
  display: block;
}
.line-chart__tooltip, .bar-chart__tooltip {
  position: absolute;
  top: 8px;
  right: 12px;
  background: rgba(17, 24, 39, 0.92);
  color: #fff;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 12px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  pointer-events: none;
}
.line-chart__tooltip strong, .bar-chart__tooltip strong {
  font-weight: 600;
}
.line-chart__tooltip .ok, .bar-chart__tooltip .ok {
  color: #86efac;
}
.line-chart__tooltip .bad, .bar-chart__tooltip .bad {
  color: #fca5a5;
}

.chart-empty {
  color: var(--muted);
  padding: 40px;
  text-align: center;
}

.years-page h2 {
  margin: 0 0 4px;
}
.years-page > p.muted {
  margin: 0 0 12px;
}

.years-legend {
  flex-wrap: wrap;
  row-gap: 6px;
  margin: 0 0 20px;
}

.years-page__list {
  margin: 0 0 20px;
  font-size: 14px;
}
.years-page__list-label {
  color: var(--muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 11px;
  margin-bottom: 8px;
}
.years-page__row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 3px 0;
}
.years-page__year-link {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font: inherit;
  color: var(--link);
  font-weight: 700;
  cursor: pointer;
  min-width: 48px;
  text-align: left;
  flex-shrink: 0;
}
.years-page__year-link:hover {
  text-decoration: underline;
}
.years-page__row-banks {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 14px;
}
.years-page__bank {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
}
.years-page__bank i {
  width: 9px;
  height: 9px;
  border-radius: 2px;
  display: inline-block;
  flex-shrink: 0;
}

.year-block__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 10px;
}
.year-block__head h3 {
  margin: 0;
  font-size: 18px;
}
.year-block__delta {
  margin-left: 10px;
  font-size: 12px;
}
.year-block__pct {
  font-weight: 600;
}
.year-block__pct.ok {
  color: #16a34a;
}
.year-block__pct.bad {
  color: #dc2626;
}

.chart-legend {
  display: flex;
  gap: 16px;
  margin-top: 8px;
  font-size: 12px;
  color: var(--muted);
}
.chart-legend span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.chart-legend i {
  width: 10px;
  height: 10px;
  border-radius: 2px;
  display: inline-block;
}

.counterparty-table td:first-child {
  max-width: 400px;
  word-break: break-word;
}

.upload-pdf {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}
.upload-pdf__pick, .upload-pdf__submit {
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text);
}
.upload-pdf__pick:disabled, .upload-pdf__submit:disabled {
  opacity: 0.5;
  cursor: default;
}
.upload-pdf__submit {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.upload-pdf__submit:hover:not(:disabled) {
  filter: brightness(1.05);
}
.upload-pdf__name {
  color: var(--muted);
  font-size: 13px;
  flex: 1;
  min-width: 160px;
  word-break: break-word;
}
.upload-pdf__err {
  flex-basis: 100%;
  background: #fef2f2;
  color: var(--bad);
  border: 1px solid #fecaca;
  padding: 8px 10px;
  border-radius: 6px;
  font-size: 13px;
}
.upload-pdf__ok {
  flex-basis: 100%;
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
  padding: 8px 10px;
  border-radius: 6px;
  font-size: 13px;
}

.app__nav-user {
  color: var(--muted);
  font-size: 13px;
}

.app__nav-signout {
  color: var(--muted);
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
}
.app__nav-signout:hover {
  color: var(--text);
}

.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: var(--bg); /* matches landing + dashboard */
}

.auth-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  width: 100%;
  max-width: 440px;
  box-shadow: 0 10px 30px rgba(17, 24, 39, 0.06);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.auth-card h1 {
  margin: 0;
  font-size: 24px;
}
.auth-card label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.auth-card input {
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  color: var(--text);
}
.auth-card button[type=submit] {
  margin-top: 4px;
  padding: 10px 14px;
  background: var(--accent);
  color: #fff;
  border: 0;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}
.auth-card button[type=submit]:disabled {
  opacity: 0.6;
  cursor: default;
}

.auth-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.auth-error {
  background: #fef2f2;
  color: var(--bad);
  border: 1px solid #fecaca;
  padding: 8px 10px;
  border-radius: 6px;
  font-size: 13px;
}

.auth-switch {
  text-align: center;
  color: var(--muted);
  font-size: 13px;
  margin: 8px 0 0;
}

.landing {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: #fff;
  color: var(--text);
}
.landing__nav {
  display: flex;
  align-items: center;
  padding: 18px 32px;
  border-bottom: 1px solid var(--border);
}
.landing__brand {
  font-weight: 700;
  font-size: 20px;
}
.landing__nav-links {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 16px;
}
.landing__nav-links a {
  color: var(--muted);
  font-weight: 500;
}
.landing__cta {
  background: var(--accent);
  color: #fff !important;
  padding: 8px 14px;
  border-radius: 8px;
  font-weight: 600;
}
.landing__cta:hover {
  text-decoration: none;
  filter: brightness(1.05);
}
.landing__cta--big {
  padding: 12px 22px;
  font-size: 16px;
}
.landing__ghost {
  padding: 12px 22px;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text) !important;
  font-weight: 500;
}
.landing__ghost:hover {
  background: #f9fafb;
  text-decoration: none;
}
.landing__hero {
  max-width: 720px;
  margin: 80px auto 40px;
  padding: 0 24px;
  text-align: center;
}
.landing__hero h1 {
  font-size: 48px;
  margin: 12px 0 20px;
  letter-spacing: -0.02em;
}
.landing__tag {
  display: inline-block;
  background: #ecfdf5;
  color: var(--ok);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0;
}
.landing__sub {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0 auto 32px;
  max-width: 600px;
}
.landing__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.landing__fineprint {
  color: var(--muted);
  font-size: 13px;
  margin-top: 20px;
}
.landing__banks {
  max-width: 900px;
  margin: 8px auto 40px;
  padding: 0 24px;
  text-align: center;
}
.landing__banks-label {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 14px;
}
.landing__bank-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  justify-content: center;
}
.landing__bank-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  background: #fff;
}
.landing__bank-chip i {
  width: 10px;
  height: 10px;
  border-radius: 3px;
  display: inline-block;
}
.landing__trust {
  max-width: 1080px;
  margin: 40px auto 8px;
  padding: 0 24px;
}
.landing__trust-card {
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  border-radius: 12px;
  padding: 28px 32px;
}
.landing__trust-card h2 {
  margin: 0 0 8px;
  font-size: 22px;
  color: #065f46;
  letter-spacing: -0.01em;
}
.landing__trust-card p {
  margin: 0;
  color: #065f46;
  line-height: 1.6;
  font-size: 15px;
}
.landing__trust-card p strong {
  color: #064e3b;
}
.landing__features {
  max-width: 1080px;
  margin: 40px auto 80px;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.landing__feature {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  background: #fff;
}
.landing__feature h3 {
  margin: 0 0 10px;
  font-size: 16px;
}
.landing__feature p {
  color: var(--muted);
  margin: 0;
  line-height: 1.55;
  font-size: 14px;
}
.landing__cta-row {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 100px;
  padding: 56px 24px;
  border-top: 1px solid var(--border);
}
.landing__cta-row h2 {
  font-size: 28px;
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}
.landing__cta-row p {
  color: var(--muted);
  font-size: 16px;
  margin: 0 0 24px;
}
.landing__footer {
  margin-top: auto;
  padding: 20px 32px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 900px) {
  .kpi-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .app__main {
    padding: 16px;
  }
  .landing__features {
    grid-template-columns: 1fr;
  }
  .landing__hero h1 {
    font-size: 36px;
  }
  .auth-row {
    grid-template-columns: 1fr;
  }
}
/* =========================================================================
   Landing page (.lp) — fresh design
   ========================================================================= */
.lp {
  min-height: 100vh;
  background: #fafaf9;
  color: #0f172a;
  font-family: "Signika Negative", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
.lp__nav {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 22px 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.lp__brand {
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.01em;
  color: #0f172a;
}
.lp__brand:hover {
  text-decoration: none;
}
.lp__nav-links {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 28px;
}
.lp__nav-links a {
  color: #64748b;
  font-size: 14px;
  font-weight: 500;
}
.lp__nav-links a:hover {
  color: #0f172a;
  text-decoration: none;
}
.lp__nav-links .lp__nav-cta {
  color: #0f172a;
  font-weight: 600;
}
.lp {
  /* ---------------- Hero ---------------- */
}
.lp__hero {
  max-width: 1200px;
  margin: 24px auto 0;
  padding: 60px 40px 120px;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 56px;
  align-items: center;
}
.lp__hero-text h1 {
  font-size: 64px;
  line-height: 1.02;
  letter-spacing: -0.035em;
  font-weight: 700;
  margin: 0 0 24px;
}
.lp__hero-accent {
  background: linear-gradient(120deg, #2563eb 0%, #7c3aed 50%, #10b981 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lp__hero-sub {
  font-size: 17px;
  line-height: 1.6;
  color: #475569;
  max-width: 480px;
  margin: 0 0 32px;
}
.lp__hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.lp__btn {
  display: inline-flex;
  align-items: center;
  padding: 12px 22px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: transform 0.05s ease, background 0.15s ease;
}
.lp__btn:hover {
  text-decoration: none;
}
.lp__btn:active {
  transform: translateY(1px);
}
.lp__btn--primary {
  background: #0f172a;
  color: #fff;
}
.lp__btn--primary:hover {
  background: #1e293b;
}
.lp__btn--ghost {
  background: transparent;
  color: #0f172a;
  border: 1px solid #e2e8f0;
}
.lp__btn--ghost:hover {
  background: #fff;
}
.lp__btn--big {
  padding: 16px 30px;
  font-size: 16px;
}
.lp {
  /* Hero chart preview card */
}
.lp__hero-preview {
  perspective: 1200px;
}
.lp__hero-card {
  background: #0f172a;
  color: #fff;
  border-radius: 18px;
  padding: 22px 22px 18px;
  box-shadow: 0 24px 60px -20px rgba(15, 23, 42, 0.35), 0 2px 6px rgba(15, 23, 42, 0.15);
  transform: rotate(0.4deg);
}
.lp__hero-card-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 12px;
}
.lp__hero-card-head > span:first-child {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.lp__hero-card-sub {
  color: #4ade80;
  font-size: 13px;
  font-weight: 600;
}
.lp__hero-card-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
  margin-top: 14px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
}
.lp__hero-card-legend span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.lp__hero-card-legend i {
  width: 8px;
  height: 8px;
  border-radius: 2px;
  display: inline-block;
}
.lp .hero-chart {
  width: 100%;
  height: auto;
  display: block;
}
.lp {
  /* ---------------- Eyebrows ---------------- */
}
.lp__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 11px;
  font-weight: 700;
  color: #64748b;
  margin: 0 0 14px;
}
.lp {
  /* ---------------- Banks ---------------- */
}
.lp__banks {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 40px;
  border-top: 1px solid #e2e8f0;
}
.lp__banks h2 {
  font-size: 36px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 32px;
  max-width: 720px;
}
.lp__bank-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 12px;
}
.lp__bank {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 18px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.lp__bank:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px -10px rgba(15, 23, 42, 0.18);
}
.lp__bank-swatch {
  width: 36px;
  height: 36px;
  border-radius: 10px;
}
.lp__bank-name {
  font-size: 13px;
  font-weight: 600;
  color: #0f172a;
}
.lp__banks-note {
  color: #64748b;
  font-size: 15px;
  line-height: 1.6;
  margin: 32px 0 0;
  max-width: 720px;
}
.lp {
  /* ---------------- How it works (centered) ---------------- */
}
.lp__steps {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 40px;
  border-top: 1px solid #e2e8f0;
  text-align: center;
}
.lp__steps .lp__eyebrow {
  text-align: center;
}
.lp__step-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 980px;
}
.lp__step-list li {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.lp__step-list li h3 {
  margin: 14px 0 8px;
  font-size: 20px;
  letter-spacing: -0.01em;
}
.lp__step-list li p {
  margin: 0;
  color: #475569;
  font-size: 15px;
  line-height: 1.6;
  max-width: 280px;
}
.lp__step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #0f172a;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 17px;
}
.lp {
  /* ---------------- Privacy (centered) ---------------- */
}
.lp__privacy {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 40px;
  border-top: 1px solid #e2e8f0;
  display: flex;
  justify-content: center;
}
.lp__privacy-card {
  background: #0f172a;
  color: #fff;
  border-radius: 20px;
  padding: 56px 56px;
  max-width: 760px;
  text-align: center;
}
.lp__privacy-card h2 {
  font-size: 36px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 0 20px;
  font-weight: 700;
}
.lp__privacy-card p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  line-height: 1.65;
  margin: 0 auto 14px;
  max-width: 600px;
}
.lp__privacy-card p strong {
  color: #fff;
}
.lp__privacy-sub {
  font-size: 15px !important;
  color: rgba(255, 255, 255, 0.6) !important;
}
.lp {
  /* ---------------- A few more things (centered) ---------------- */
}
.lp__more {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 40px;
  border-top: 1px solid #e2e8f0;
  text-align: center;
}
.lp__more .lp__eyebrow {
  text-align: center;
}
.lp__more-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: 1080px;
  margin: 0 auto;
}
.lp__more-grid > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.lp__more-grid h3 {
  font-size: 17px;
  letter-spacing: -0.005em;
  margin: 0 0 6px;
}
.lp__more-grid p {
  color: #64748b;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  max-width: 220px;
}
.lp {
  /* ---------------- Final CTA ---------------- */
}
.lp__final {
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 40px;
  text-align: center;
  border-top: 1px solid #e2e8f0;
}
.lp__final h2 {
  font-size: 40px;
  letter-spacing: -0.025em;
  margin: 0 0 28px;
}
.lp {
  /* ---------------- Bank-list blurb (small, near footer) ---------------- */
}
.lp__banks-blurb {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 40px 40px;
}
.lp__banks-blurb p {
  color: #64748b;
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
  text-align: center;
}
.lp__banks-blurb-bank {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #0f172a;
  font-weight: 600;
  white-space: nowrap;
}
.lp__banks-blurb-bank i {
  width: 8px;
  height: 8px;
  border-radius: 2px;
  display: inline-block;
}
.lp {
  /* ---------------- Footer ---------------- */
}
.lp__footer {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 40px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: #94a3b8;
  font-size: 13px;
  border-top: 1px solid #e2e8f0;
}
.lp__footer-brand {
  font-weight: 600;
  color: #0f172a;
}
.lp__footer-socials {
  display: flex;
  gap: 6px;
}
.lp__footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  color: #64748b;
}
.lp__footer-socials a:hover {
  color: #0f172a;
  background: #f1f5f9;
  text-decoration: none;
}

@media (max-width: 900px) {
  .lp__nav {
    padding: 18px 20px;
    gap: 16px;
  }
  .lp__nav-links {
    gap: 16px;
  }
  .lp__nav-links a {
    font-size: 13px;
  }
  .lp__hero {
    grid-template-columns: 1fr;
    padding: 20px 20px 50px;
    gap: 36px;
    text-align: center;
  }
  .lp__hero-text h1 {
    font-size: 44px;
  }
  .lp__hero-sub {
    margin-left: auto;
    margin-right: auto;
  }
  .lp__hero-actions {
    justify-content: center;
  }
  .lp__banks, .lp__steps, .lp__privacy, .lp__more, .lp__final {
    padding-left: 20px;
    padding-right: 20px;
  }
  .lp__banks h2, .lp__final h2, .lp__privacy-card h2 {
    font-size: 28px;
  }
  .lp__bank-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .lp__step-list {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .lp__more-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .lp__privacy-card {
    padding: 32px 24px;
  }
}

