:root {
  --navy: #083344;
  --navy-2: #0b4658;
  --aqua: #32bcad;
  --aqua-2: #56d5c7;
  --ice: #f2fbfa;
  --white: #fff;
  --ink: #102f3a;
  --muted: #62777e;
  --line: #d9ece9;
  --danger: #b42318;
  --shadow: 0 24px 70px rgba(8, 51, 68, 0.12);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    "Segoe UI",
    sans-serif;
  color: var(--ink);
  background: var(--ice);
  font-synthesis: none;
}
* {
  box-sizing: border-box;
}
[hidden] {
  display: none !important;
}
body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(
      circle at 85% 0,
      rgba(50, 188, 173, 0.2),
      transparent 28rem
    ),
    var(--ice);
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select,
textarea {
  font: inherit;
}
.wrap {
  width: min(1120px, calc(100% - 40px));
  margin: auto;
}
.nav {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.04em;
}
.brand-mark {
  width: 32px;
  height: 32px;
  border-radius: 10px 10px 10px 3px;
  background: var(--aqua);
  display: grid;
  place-items: center;
  color: var(--navy);
  font-weight: 950;
}
.links {
  display: flex;
  align-items: center;
  gap: 24px;
  font-weight: 650;
  font-size: 14px;
}
.button {
  border: 0;
  border-radius: 12px;
  padding: 12px 18px;
  background: var(--navy);
  color: #fff;
  font-weight: 750;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.button.light {
  background: #fff;
  color: var(--navy);
  box-shadow: 0 7px 24px rgba(8, 51, 68, 0.1);
}
.button.aqua {
  background: var(--aqua);
  color: var(--navy);
}
.button.ghost {
  background: transparent;
  color: var(--navy);
  border: 1px solid var(--line);
}
.button:disabled {
  cursor: wait;
  opacity: 0.62;
}
.button.wide {
  width: 100%;
}
.hero {
  padding: 76px 0 88px;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 64px;
}
.eyebrow {
  display: inline-flex;
  border: 1px solid rgba(50, 188, 173, 0.5);
  background: rgba(255, 255, 255, 0.7);
  padding: 7px 11px;
  border-radius: 999px;
  color: var(--navy-2);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero h1 {
  font-size: clamp(46px, 6vw, 78px);
  line-height: 0.98;
  letter-spacing: -0.07em;
  margin: 22px 0 24px;
  color: var(--navy);
  max-width: 750px;
}
.hero h1 span {
  color: var(--aqua);
}
.hero p {
  font-size: 19px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 620px;
  margin: 0 0 30px;
}
.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.trust {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  margin-top: 30px;
  color: var(--muted);
  font-size: 13px;
}
.trust span:before {
  content: "✓";
  color: var(--aqua);
  font-weight: 900;
  margin-right: 7px;
}
.terminal {
  background: var(--navy);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  padding: 16px;
  box-shadow: var(--shadow);
  transform: rotate(1deg);
}
.terminal-bar {
  display: flex;
  gap: 7px;
  padding: 2px 4px 14px;
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ff7b72;
}
.dot:nth-child(2) {
  background: #f5c451;
}
.dot:nth-child(3) {
  background: var(--aqua);
}
pre {
  margin: 0;
  background: #062b3a;
  color: #d9f7f2;
  border-radius: 14px;
  padding: 24px;
  overflow: auto;
  font:
    13px/1.7 ui-monospace,
    SFMono-Regular,
    Consolas,
    monospace;
}
.code-aqua {
  color: var(--aqua-2);
}
.strip {
  background: var(--navy);
  color: #fff;
  padding: 28px 0;
}
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.stat b {
  display: block;
  font-size: 24px;
  color: var(--aqua);
  margin-bottom: 4px;
}
.stat span {
  color: #c5d8dd;
  font-size: 13px;
}
.section {
  padding: 96px 0;
}
.section-head {
  max-width: 650px;
  margin-bottom: 46px;
}
.section h2 {
  color: var(--navy);
  font-size: clamp(34px, 4vw, 52px);
  letter-spacing: -0.055em;
  line-height: 1.05;
  margin: 0 0 16px;
}
.section-head p,
.muted {
  color: var(--muted);
  line-height: 1.7;
}
.grid3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.card {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 12px 40px rgba(8, 51, 68, 0.05);
}
.icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: #dff7f3;
  color: var(--navy);
  font-size: 19px;
  font-weight: 900;
}
.card h3 {
  font-size: 19px;
  margin: 20px 0 10px;
  color: var(--navy);
}
.card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
  margin: 0;
}
.cta {
  margin: 0 0 80px;
  background: linear-gradient(135deg, var(--navy), #10566b);
  border-radius: 28px;
  padding: 52px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.cta h2 {
  color: #fff;
  margin: 0 0 10px;
}
.cta p {
  color: #bcd2d7;
  margin: 0;
}
.footer {
  border-top: 1px solid var(--line);
  padding: 30px 0;
  color: var(--muted);
  font-size: 13px;
}
.footer .wrap {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.panel {
  width: min(1000px, calc(100% - 40px));
  margin: 38px auto 80px;
}
.panel-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-bottom: 24px;
}
.panel h1 {
  font-size: 38px;
  letter-spacing: -0.05em;
  color: var(--navy);
  margin: 0;
}
.auth-card {
  max-width: 620px;
  margin: 70px auto;
}
.auth-title {
  margin-top: 20px !important;
}
.auth-copy {
  max-width: 500px;
  margin-bottom: 22px;
}
.field {
  display: grid;
  gap: 8px;
  margin: 15px 0;
}
.field label {
  font-size: 13px;
  font-weight: 750;
  color: var(--navy);
}
.field input,
.field select {
  width: 100%;
  border: 1px solid var(--line);
  background: #fff;
  padding: 13px 14px;
  border-radius: 11px;
  outline: none;
}
.field input:focus,
.field select:focus {
  border-color: var(--aqua);
  box-shadow: 0 0 0 3px rgba(50, 188, 173, 0.14);
}
.field label em {
  color: #8aa0a6;
  font-size: 11px;
  font-style: normal;
  font-weight: 550;
}
.field small {
  color: var(--muted);
  font-size: 11px;
}
.alert {
  display: none;
  padding: 12px 14px;
  border-radius: 10px;
  background: #fee4e2;
  color: var(--danger);
  font-size: 13px;
  margin: 14px 0;
}
.alert.success {
  color: #166b47;
  background: #def7ea;
}
.api-key-access {
  border-top: 1px solid var(--line);
  margin-top: 28px;
  padding-top: 20px;
}
.api-key-access summary {
  color: var(--navy-2);
  cursor: pointer;
  font-size: 13px;
  font-weight: 750;
}
.api-key-access > p {
  font-size: 12px;
  margin: 10px 0 2px;
}
.auth-signup {
  color: var(--muted);
  font-size: 12px;
  margin: 22px 0 0;
  text-align: center;
}
.auth-signup a {
  color: #16877c;
  font-weight: 800;
}
.dashboard {
  display: none;
}
.panel-title {
  margin-top: 14px !important;
}
.merchant-line {
  display: flex;
  gap: 9px;
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 13px;
}
.merchant-line strong {
  color: var(--navy-2);
}
.merchant-line span::before {
  content: "·";
  margin-right: 9px;
}
.charge-builder {
  margin-bottom: 18px;
  overflow: hidden;
  padding: 34px;
  position: relative;
}
.charge-builder::before {
  background: linear-gradient(90deg, var(--aqua), #0ea5e9);
  content: "";
  height: 4px;
  inset: 0 0 auto;
  position: absolute;
}
.builder-heading {
  align-items: flex-start;
  display: flex;
  gap: 28px;
  justify-content: space-between;
  margin-bottom: 24px;
}
.builder-heading h2 {
  color: var(--navy);
  font-size: 29px;
  letter-spacing: -0.045em;
  margin: 15px 0 8px;
}
.builder-heading p {
  max-width: 650px;
}
.instant-badge {
  background: #e2f7f3;
  border: 1px solid #c2ebe4;
  border-radius: 999px;
  color: #187f75;
  flex: 0 0 auto;
  font-size: 11px;
  font-weight: 800;
  padding: 8px 11px;
}
.charge-form {
  display: grid;
  gap: 2px 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.full-field {
  grid-column: 1 / -1;
}
.money-input {
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 11px;
  display: flex;
  overflow: hidden;
}
.money-input:focus-within {
  border-color: var(--aqua);
  box-shadow: 0 0 0 3px rgba(50, 188, 173, 0.14);
}
.money-input span {
  color: var(--navy-2);
  font-weight: 800;
  padding-left: 14px;
}
.money-input input {
  border: 0;
  box-shadow: none !important;
  font-size: 17px;
  font-weight: 750;
}
.form-actions {
  align-items: center;
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  margin-top: 10px;
}
.form-alert {
  flex: 1;
  margin: 0;
}
.charge-result {
  align-items: flex-start;
  background: linear-gradient(135deg, #e7f9f6, #f7ffff);
  border: 1px solid #c9eee7;
  border-radius: 18px;
  display: grid;
  gap: 18px;
  grid-template-columns: 48px minmax(0, 1fr);
  margin-top: 28px;
  padding: 24px;
}
.result-check {
  background: var(--aqua);
  border-radius: 15px;
  color: var(--navy);
  display: grid;
  height: 48px;
  place-items: center;
  width: 48px;
}
.result-check .ui-icon {
  height: 24px;
  stroke-width: 2.4;
  width: 24px;
}
.result-content h3 {
  font-size: 25px;
  margin: 13px 0 5px;
}
.result-content > p {
  margin-bottom: 15px;
}
.share-link {
  display: flex;
  gap: 9px;
}
.share-link input,
.embed-box textarea {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: #365860;
  min-width: 0;
  padding: 12px;
}
.share-link input {
  flex: 1;
}
.result-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 12px;
}
.embed-box {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  border-radius: 13px;
  margin-top: 14px;
  padding: 15px;
}
.embed-box label {
  display: block;
  font-size: 12px;
  font-weight: 750;
  margin-bottom: 8px;
}
.embed-box textarea {
  display: block;
  font:
    11px/1.55 ui-monospace,
    SFMono-Regular,
    Consolas,
    monospace;
  margin-bottom: 9px;
  resize: vertical;
  width: 100%;
}
.metrics-grid {
  margin-bottom: 18px;
}
.withdrawal-section {
  margin: 34px 0 18px;
}
.withdrawal-layout {
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
}
.withdrawal-card,
.withdrawal-history {
  min-width: 0;
  padding: 27px;
}
.withdrawal-form {
  display: grid;
  gap: 0 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.withdrawal-fields {
  display: grid;
  gap: 0 14px;
  grid-column: 1 / -1;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.withdrawal-form > .button {
  margin-top: 9px;
}
.withdrawal-history .table th,
.withdrawal-history .table td {
  padding-left: 10px;
  padding-right: 10px;
}
.withdrawal-detail {
  color: var(--muted);
  display: block;
  font-size: 9px;
  margin-top: 6px;
  max-width: 180px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.pill.requested {
  background: #fff2cc;
  color: #8a6400;
}
.pill.processing {
  background: #e0f0ff;
  color: #155b8f;
}
.pill.paid {
  background: #dff7e9;
  color: #187044;
}
.pill.rejected {
  background: #fee4e2;
  color: var(--danger);
}
.integration-section {
  margin: 34px 0 18px;
}
.integration-heading {
  align-items: flex-end;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 20px;
}
.integration-heading h2 {
  color: var(--navy);
  font-size: 30px;
  letter-spacing: -0.045em;
  margin: 13px 0 6px;
}
.integration-heading p {
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
  max-width: 680px;
}
.integration-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.integration-locked {
  background: #e8f6f4;
  border: 1px solid #c9e9e4;
  border-radius: 15px;
  color: #365f66;
  font-size: 13px;
  line-height: 1.55;
  padding: 18px 20px;
}
.credential-card {
  min-width: 0;
  padding: 27px;
}
.credential-heading {
  align-items: center;
  display: flex;
  gap: 14px;
  margin-bottom: 24px;
}
.credential-heading h3 {
  color: var(--navy);
  font-size: 21px;
  letter-spacing: -0.035em;
  margin: 0 0 4px;
}
.credential-heading p {
  color: var(--muted);
  font-size: 12px;
  margin: 0;
}
.credential-heading code,
.webhook-secret-field code {
  background: #e4f4f1;
  border-radius: 5px;
  color: #176f68;
  font-size: 0.92em;
  padding: 2px 5px;
}
.credential-icon {
  align-items: center;
  background: #dff6f2;
  border: 1px solid #c4ebe5;
  border-radius: 13px;
  color: #178278;
  display: flex;
  flex: 0 0 auto;
  height: 44px;
  justify-content: center;
  width: 44px;
}
.credential-icon .ui-icon {
  height: 21px;
  width: 21px;
}
.credential-create {
  align-items: end;
  display: grid;
  gap: 10px;
  grid-template-columns: minmax(0, 1fr) auto;
}
.credential-create .field {
  margin-bottom: 0;
}
.credential-create .button,
#webhook-form > .button {
  min-height: 45px;
}
.credential-reveal {
  background: linear-gradient(135deg, #e2f8f4, #f7fffe);
  border: 1px solid #bfe9e2;
  border-radius: 14px;
  margin: 20px 0;
  padding: 16px;
}
.credential-reveal > div:first-child {
  display: grid;
  gap: 2px;
  margin-bottom: 11px;
}
.credential-reveal strong {
  color: #126c64;
  font-size: 13px;
}
.credential-reveal span {
  color: #5e797e;
  font-size: 11px;
}
.secret-control {
  align-items: stretch;
  display: flex;
  gap: 7px;
  min-width: 0;
}
.secret-control input {
  border: 1px solid var(--line);
  border-radius: 10px;
  color: #244b53;
  flex: 1;
  font:
    11px/1.4 ui-monospace,
    SFMono-Regular,
    Consolas,
    monospace;
  min-width: 0;
  padding: 11px 12px;
}
.button.compact {
  border: 1px solid var(--line);
  box-shadow: none;
  flex: 0 0 auto;
  font-size: 11px;
  min-height: 40px;
  padding: 9px 12px;
}
.button.danger-outline {
  background: #fff;
  border: 1px solid #f0c4c0;
  color: var(--danger);
  font-size: 12px;
  margin-top: 3px;
}
.credential-list-heading {
  align-items: center;
  border-top: 1px solid var(--line);
  color: var(--navy);
  display: flex;
  font-size: 12px;
  font-weight: 800;
  justify-content: space-between;
  margin-top: 22px;
  padding-top: 18px;
}
.credential-list-heading small {
  color: #879da2;
  font-size: 10px;
  font-weight: 600;
}
.api-key-list {
  display: grid;
  gap: 9px;
  margin-top: 11px;
}
.api-key-empty {
  background: #f7fbfb;
  border: 1px dashed #cfe5e2;
  border-radius: 12px;
  color: var(--muted);
  font-size: 12px;
  padding: 17px;
  text-align: center;
}
.api-key-item {
  align-items: center;
  background: #f8fcfb;
  border: 1px solid #dfefec;
  border-radius: 12px;
  display: grid;
  gap: 10px;
  grid-template-columns: minmax(0, 1fr) auto;
  padding: 12px 13px;
}
.api-key-item strong,
.api-key-item code,
.api-key-item small {
  display: block;
}
.api-key-item strong {
  color: var(--navy);
  font-size: 12px;
  margin-bottom: 3px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.api-key-item code {
  color: #3a696e;
  font-size: 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.api-key-item small {
  color: #879da2;
  font-size: 9px;
  margin-top: 4px;
}
.api-key-item .revoke-key {
  background: transparent;
  border: 0;
  color: var(--danger);
  cursor: pointer;
  font-size: 11px;
  font-weight: 750;
  padding: 7px;
}
.webhook-secret-field {
  border-top: 1px solid var(--line);
  margin-top: 22px;
  padding-top: 19px;
}
.environment {
  font-size: 28px;
}
.table-link {
  color: #16877c;
  font-weight: 800;
}
.admin-shell {
  margin: 38px auto 80px;
  width: min(1180px, calc(100% - 40px));
}
.admin-shell h1 {
  color: var(--navy);
  font-size: 38px;
  letter-spacing: -0.05em;
  margin: 0;
}
.admin-metrics {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.admin-metrics .balance {
  font-size: 34px;
}
.admin-metrics .admin-money {
  font-size: 26px;
}
.admin-section {
  margin-top: 34px;
}
.admin-section-head {
  align-items: end;
  display: flex;
  gap: 20px;
  justify-content: space-between;
  margin-bottom: 16px;
}
.admin-section-head h2 {
  color: var(--navy);
  font-size: 29px;
  letter-spacing: -0.04em;
  margin: 12px 0 0;
}
.admin-filter {
  color: var(--navy);
  display: grid;
  font-size: 11px;
  font-weight: 800;
  gap: 6px;
  text-transform: uppercase;
}
.admin-filter select {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  min-width: 170px;
  padding: 10px 12px;
}
.admin-table-card {
  padding: 8px 14px;
}
.admin-table td strong,
.admin-table td small {
  display: block;
}
.admin-table td small {
  color: var(--muted);
  font-size: 9px;
  margin-top: 4px;
  max-width: 220px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.admin-actions {
  display: flex;
  gap: 6px;
}
.admin-action {
  background: #e2f7f3;
  border: 1px solid #c2ebe4;
  border-radius: 8px;
  color: #126c64;
  cursor: pointer;
  font-size: 10px;
  font-weight: 800;
  padding: 7px 9px;
}
.admin-action.danger {
  background: #fff;
  border-color: #f0c4c0;
  color: var(--danger);
}
.admin-mfa-card {
  max-width: 520px;
  text-align: center;
}
.admin-mfa-card form,
.admin-mfa-card .admin-totp-manual {
  text-align: left;
}
.admin-totp-qr {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  display: block;
  height: 256px;
  margin: 22px auto;
  padding: 10px;
  width: 256px;
}
.admin-totp-manual {
  background: #effaf8;
  border: 1px solid #d2efea;
  border-radius: 12px;
  display: grid;
  gap: 7px;
  margin: 0 0 20px;
  padding: 14px 16px;
}
.admin-totp-manual span {
  color: var(--muted);
  font-size: 11px;
}
.admin-totp-manual code {
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  overflow-wrap: anywhere;
}
.admin-recovery-codes {
  background: #082f3e;
  border-radius: 14px;
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 22px 0 14px;
  padding: 20px;
}
.admin-recovery-codes code {
  color: #9cece1;
  font-size: 12px;
  letter-spacing: 0.05em;
}
.admin-recovery-confirm {
  align-items: center;
  color: var(--navy);
  display: flex;
  font-size: 12px;
  font-weight: 700;
  gap: 9px;
  margin: 18px 0;
  text-align: left;
}
.admin-recovery-confirm input {
  height: 18px;
  width: 18px;
}
.admin-access-grid {
  align-items: start;
  display: grid;
  gap: 16px;
  grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
}
.treasury-alert {
  margin-bottom: 16px;
}
.treasury-balances {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 16px;
}
.treasury-balance {
  display: grid;
  gap: 9px;
  padding: 20px;
}
.treasury-balance strong {
  color: var(--navy);
  font-size: 20px;
  letter-spacing: -0.035em;
}
.treasury-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr);
}
.treasury-operation,
.treasury-wallet {
  padding: 25px;
}
.treasury-operation h3,
.treasury-wallet h3 {
  color: var(--navy);
  font-size: 23px;
  margin: 11px 0 8px;
}
.treasury-form-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr 1fr;
}
.treasury-quote {
  background: #f2fbfa;
  border: 1px solid #c4ebe5;
  border-radius: 14px;
  margin-top: 18px;
  padding: 17px;
}
.treasury-quote-line {
  align-items: center;
  display: flex;
  gap: 15px;
  justify-content: space-between;
  padding: 7px 0;
}
.treasury-quote-line span {
  color: var(--muted);
  font-size: 12px;
}
.treasury-quote-line strong {
  color: var(--navy);
  font-size: 15px;
}
.treasury-expiry {
  color: #a06115;
  font-size: 11px;
  font-weight: 800;
  margin: 12px 0;
}
.treasury-wallet code {
  background: #082f3f;
  border-radius: 12px;
  color: #dffaf6;
  display: block;
  font-size: 11px;
  line-height: 1.55;
  margin: 16px 0 12px;
  overflow-wrap: anywhere;
  padding: 15px;
}
.treasury-safety {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 7px;
  margin-top: 20px;
  padding-top: 17px;
}
.treasury-safety strong {
  color: var(--navy);
  font-size: 12px;
}
.treasury-safety span {
  color: var(--muted);
  font-size: 11px;
}
.treasury-safety span::before {
  color: #24a898;
  content: "✓";
  font-weight: 900;
  margin-right: 7px;
}
.treasury-history {
  margin-top: 16px;
}
.admin-dialog {
  background: #fff;
  border: 0;
  border-radius: 20px;
  box-shadow: var(--shadow);
  color: var(--ink);
  max-height: calc(100vh - 40px);
  max-width: calc(100% - 32px);
  overflow: auto;
  padding: 30px;
  width: 560px;
}
.admin-dialog::backdrop {
  background: rgba(8, 51, 68, 0.55);
  backdrop-filter: blur(3px);
}
.admin-dialog h2 {
  color: var(--navy);
  font-size: 28px;
  margin: 15px 0 8px;
}
.dialog-close-form {
  position: absolute;
  right: 18px;
  top: 15px;
}
.dialog-close-form button {
  background: transparent;
  border: 0;
  color: var(--muted);
  cursor: pointer;
  font-size: 28px;
}
.admin-destination {
  background: #f2fbfa;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: #365f66;
  font-size: 12px;
  line-height: 1.6;
  overflow-wrap: anywhere;
  padding: 13px;
}
.admin-action-form textarea {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 11px;
  outline: none;
  padding: 13px 14px;
  resize: vertical;
  width: 100%;
}
.balance {
  font-size: 42px;
  letter-spacing: -0.04em;
  color: var(--navy);
  margin: 8px 0;
}
.toolbar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.table-wrap {
  overflow: auto;
}
.table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.table th,
.table td {
  text-align: left;
  padding: 14px;
  border-bottom: 1px solid var(--line);
  white-space: nowrap;
}
.table th {
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.pill {
  padding: 5px 9px;
  border-radius: 999px;
  background: #edf2f3;
  font-size: 11px;
  font-weight: 800;
}
.pill.completed {
  background: #dff7e9;
  color: #187044;
}
.pill.pending {
  background: #fff2cc;
  color: #8a6400;
}
.checkout {
  width: min(520px, calc(100% - 40px));
  margin: 50px auto 80px;
}
.checkout .card {
  text-align: center;
  padding: 34px;
}
.amount {
  font-size: 45px;
  font-weight: 850;
  letter-spacing: -0.06em;
  color: var(--navy);
  margin: 16px 0 6px;
}
.qr {
  width: 230px;
  height: 230px;
  object-fit: contain;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  margin: 20px auto;
  display: block;
}
.copybox {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}
.copybox input {
  min-width: 0;
  flex: 1;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px;
}
.status-message {
  padding: 11px;
  border-radius: 10px;
  background: #eef7f6;
  font-size: 13px;
  margin: 15px 0;
}
.docs {
  width: min(880px, calc(100% - 40px));
  margin: 44px auto 100px;
}
.docs h1 {
  font-size: 48px;
  letter-spacing: -0.055em;
  color: var(--navy);
}
.docs h2 {
  margin-top: 52px;
  color: var(--navy);
}
.docs p,
.docs li {
  color: var(--muted);
  line-height: 1.75;
}
.docs code {
  background: #dff2ef;
  padding: 2px 5px;
  border-radius: 5px;
}
.docs pre code {
  background: transparent;
  padding: 0;
}
.docs table {
  width: 100%;
  border-collapse: collapse;
}
.docs th,
.docs td {
  text-align: left;
  padding: 12px;
  border-bottom: 1px solid var(--line);
}
@media (max-width: 800px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 45px;
  }
  .terminal {
    transform: none;
  }
  .grid3,
  .stats {
    grid-template-columns: 1fr;
  }
  .links a:not(.button) {
    display: none;
  }
  .cta {
    align-items: flex-start;
    flex-direction: column;
    padding: 34px;
  }
  .footer .wrap {
    flex-direction: column;
  }
  .panel-head {
    align-items: flex-start;
    flex-direction: column;
  }
  .charge-form {
    grid-template-columns: 1fr;
  }
  .full-field {
    grid-column: auto;
  }
  .builder-heading,
  .form-actions {
    align-items: stretch;
    flex-direction: column;
  }
  .instant-badge {
    align-self: flex-start;
  }
  .charge-result {
    grid-template-columns: 1fr;
  }
  .share-link {
    align-items: stretch;
    flex-direction: column;
  }
  .integration-heading {
    align-items: flex-start;
    flex-direction: column;
  }
  .integration-grid {
    grid-template-columns: 1fr;
  }
  .withdrawal-layout {
    grid-template-columns: 1fr;
  }
  .admin-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .treasury-balances {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .treasury-grid {
    grid-template-columns: 1fr;
  }
  .hero h1 {
    font-size: 50px;
  }
}

/* Shared brand and icon system */
.ui-icon {
  width: 17px;
  height: 17px;
  display: block;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.brand {
  color: var(--navy);
}
.brand b {
  color: var(--aqua);
}
.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 0;
  background: transparent;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(8, 51, 68, 0.14));
}
.nav-link,
.secure-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.nav-link .ui-icon,
.secure-label .ui-icon {
  color: var(--aqua);
}
.secure-label {
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}
.button .ui-icon {
  width: 16px;
  height: 16px;
}
.metric-card {
  position: relative;
  overflow: hidden;
}
.metric-card::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  right: -56px;
  top: -65px;
  border-radius: 50%;
  background: rgba(50, 188, 173, 0.08);
}
.metric-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.metric-icon,
.status-icon {
  display: grid;
  place-items: center;
  color: var(--navy);
  background: #dff7f3;
  border: 1px solid #c8eee8;
}
.metric-icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
}
.metric-icon .ui-icon {
  width: 19px;
  height: 19px;
}
.card-title,
.docs-heading {
  display: flex;
  align-items: center;
  gap: 10px;
}
.card-title {
  margin-top: 0;
}
.card-title .ui-icon,
.docs-heading .ui-icon {
  color: var(--aqua);
}
.docs-heading .ui-icon {
  width: 22px;
  height: 22px;
}
.checkout-card {
  position: relative;
  overflow: hidden;
}
.checkout-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--aqua), #0ea5e9);
}
.status-message {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 8px 12px;
  font-weight: 650;
}
.status-icon {
  width: 30px;
  height: 30px;
  border-radius: 10px;
}
.status-icon .ui-icon {
  width: 16px;
  height: 16px;
}
.status-message.completed {
  color: #187044;
  background: #e6f8ee;
}
.status-message.completed .status-icon {
  color: #187044;
  background: #cdefdc;
  border-color: #b6e6ca;
}
.status-message.expired,
.status-message.failed,
.status-message.refunded {
  color: var(--danger);
  background: #feeceb;
}
.powered-by {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}
.powered-by > span {
  margin-left: 4px;
  color: var(--navy);
  font-weight: 800;
  letter-spacing: -0.03em;
}
.powered-by b {
  color: var(--aqua);
}
@media (max-width: 560px) {
  .admin-metrics {
    grid-template-columns: 1fr;
  }
  .admin-section-head {
    align-items: stretch;
    flex-direction: column;
  }
  .admin-dialog {
    padding: 25px 20px;
  }
  .withdrawal-section {
    margin-top: 28px;
  }
  .withdrawal-card,
  .withdrawal-history {
    padding: 21px 18px;
  }
  .withdrawal-form,
  .withdrawal-fields {
    grid-template-columns: 1fr;
  }
  .integration-section {
    margin-top: 28px;
  }
  .integration-heading h2 {
    font-size: 27px;
  }
  .credential-card {
    padding: 21px 18px;
  }
  .credential-create {
    align-items: stretch;
    grid-template-columns: 1fr;
  }
  .secret-control {
    flex-wrap: wrap;
  }
  .secret-control input {
    flex-basis: 100%;
  }
  .credential-reveal .secret-control .button,
  .webhook-secret-field .secret-control .button {
    flex: 1;
  }
  .secure-label {
    font-size: 0;
  }
  .secure-label .ui-icon {
    width: 20px;
    height: 20px;
  }
}

/* Signup */
.signup-shell {
  align-items: center;
  display: grid;
  gap: 72px;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.82fr);
  margin: 42px auto 90px;
  min-height: calc(100vh - 208px);
  width: min(1120px, calc(100% - 40px));
}
.signup-copy h1 {
  color: var(--navy);
  font-size: clamp(48px, 6vw, 76px);
  letter-spacing: -0.07em;
  line-height: 0.98;
  margin: 24px 0;
  max-width: 680px;
}
.signup-copy > p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
  max-width: 650px;
}
.signup-benefits {
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 28px 0;
  padding: 0;
}
.signup-benefits li {
  align-items: center;
  color: #365860;
  display: flex;
  font-size: 13px;
  font-weight: 700;
  gap: 11px;
}
.signup-benefits span {
  color: #238d83;
  font:
    750 9px/1 ui-monospace,
    monospace;
}
.signup-fees {
  background: #082f3b;
  border: 1px solid rgba(50, 188, 173, 0.25);
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(8, 51, 68, 0.12);
  color: #fff;
  max-width: 650px;
  padding: 23px;
}
.signup-plan-summary {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 18px;
  padding-bottom: 18px;
}
.signup-plan-summary > span {
  color: var(--aqua-2);
  display: block;
  font:
    800 9px/1 ui-monospace,
    monospace;
  letter-spacing: 0.09em;
  margin-bottom: 12px;
}
.signup-plan-summary > div {
  align-items: baseline;
  display: flex;
  gap: 13px;
}
.signup-plan-summary strong {
  color: #fff;
  font-size: 25px;
  letter-spacing: -0.045em;
  white-space: nowrap;
}
.signup-plan-summary small {
  color: #9bb9bd;
  font-size: 10px;
  line-height: 1.5;
}
.fees-title {
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  margin-bottom: 9px;
  padding-bottom: 15px;
}
.fees-title span {
  font-size: 13px;
  font-weight: 800;
}
.fees-title strong {
  background: rgba(78, 228, 209, 0.12);
  border: 1px solid rgba(78, 228, 209, 0.2);
  border-radius: 999px;
  color: var(--aqua-2);
  font-size: 9px;
  letter-spacing: 0.06em;
  padding: 6px 8px;
  text-transform: uppercase;
}
.fee-row {
  align-items: baseline;
  display: grid;
  gap: 14px;
  grid-template-columns: 92px 1fr;
  padding: 8px 0;
}
.fee-row b {
  color: var(--aqua-2);
  font-size: 17px;
}
.fee-row span {
  color: #b4cdd1;
  font-size: 12px;
}
.signup-fees small {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #779a9f;
  display: block;
  font-size: 10px;
  line-height: 1.55;
  margin-top: 10px;
  padding-top: 13px;
}
.signup-fees small a {
  color: var(--aqua-2);
  font-weight: 750;
  margin-left: 4px;
}
.signup-card {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 32px 90px rgba(8, 51, 68, 0.14);
  padding: 36px;
}
.signup-card h2 {
  color: var(--navy);
  font-size: 34px;
  letter-spacing: -0.05em;
  margin: 18px 0 6px;
}
.signup-card > div > .muted {
  margin: 0 0 22px;
}
.signup-submit {
  margin-top: 8px;
}
.signup-legal {
  color: #789198;
  font-size: 10px;
  line-height: 1.55;
  margin: 17px 0 0;
  text-align: center;
}
.signup-sent {
  padding: 25px 5px;
  text-align: center;
}
.signup-sent .muted {
  margin: 12px auto 24px;
  max-width: 360px;
}
.signup-sent .muted strong {
  color: var(--navy);
}
.signup-check {
  align-items: center;
  background: #dff7f3;
  border: 1px solid #bde9e2;
  border-radius: 22px;
  color: #16877c;
  display: flex;
  height: 64px;
  justify-content: center;
  margin: 0 auto 24px;
  width: 64px;
}
.signup-check .ui-icon {
  height: 29px;
  stroke-width: 2.4;
  width: 29px;
}
@media (max-width: 900px) {
  .admin-access-grid {
    grid-template-columns: 1fr;
  }
  .signup-shell {
    gap: 45px;
    grid-template-columns: 1fr;
    margin-top: 45px;
  }
  .signup-copy h1 {
    max-width: 700px;
  }
  .signup-card {
    margin: auto;
    max-width: 620px;
    width: 100%;
  }
}
@media (max-width: 560px) {
  .admin-totp-qr {
    height: min(256px, calc(100vw - 84px));
    width: min(256px, calc(100vw - 84px));
  }
  .admin-recovery-codes {
    grid-template-columns: 1fr;
  }
  .treasury-balances,
  .treasury-form-grid {
    grid-template-columns: 1fr;
  }
  .signup-shell {
    width: min(100% - 28px, 1120px);
  }
  .signup-copy h1 {
    font-size: 51px;
  }
  .signup-copy > p {
    font-size: 15px;
  }
  .signup-card {
    padding: 25px 20px;
  }
  .fees-title {
    align-items: flex-start;
    gap: 10px;
  }
  .signup-plan-summary > div {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }
  .fee-row {
    grid-template-columns: 82px 1fr;
  }
}

/* Liquid wallet administration */
.wallet-section-head { align-items: flex-end; }
.wallet-section-head p { margin: 8px 0 0; max-width: 680px; }
.wallet-head-actions,
.wallet-detail-actions,
.wallet-address-actions { display: flex; gap: 9px; }
.button.compact { min-height: 38px; padding: 9px 14px; }
.wallet-aggregate {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 16px;
}
.wallet-aggregate-card {
  min-height: 132px;
  overflow: hidden;
  padding: 20px;
  position: relative;
}
.wallet-aggregate-card::after {
  border: 18px solid rgba(255, 255, 255, .2);
  border-radius: 50%;
  content: "";
  height: 80px;
  position: absolute;
  right: -31px;
  top: -34px;
  width: 80px;
}
.wallet-aggregate-card span,
.wallet-aggregate-card small {
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.wallet-aggregate-card strong {
  display: block;
  font-size: clamp(18px, 2vw, 24px);
  letter-spacing: -.045em;
  margin: 18px 0 5px;
  overflow-wrap: anywhere;
}
.wallet-aggregate-card small { font-size: 9px; opacity: .72; }
.wallet-aggregate-card.depix { background: linear-gradient(145deg, #083746, #0a5561); color: #eafffb; }
.wallet-aggregate-card.usdt { background: linear-gradient(145deg, #159b88, #35c3ae); color: #032f38; }
.wallet-aggregate-card.lbtc { background: linear-gradient(145deg, #e5f8f4, #f9fffe); color: var(--navy); }
.wallet-aggregate-card.neutral { background: linear-gradient(145deg, #fff, #f3fbfa); color: var(--navy); }
.wallet-console {
  display: grid;
  gap: 16px;
  grid-template-columns: 285px minmax(0, 1fr);
}
.wallet-list-panel { min-height: 620px; padding: 12px; }
.wallet-list-title {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding: 10px 9px 13px;
}
.wallet-list-title strong { color: var(--navy); font-size: 13px; }
.wallet-list-title span {
  background: #e5f6f3;
  border-radius: 999px;
  color: #17776c;
  font-size: 10px;
  font-weight: 900;
  min-width: 24px;
  padding: 5px 8px;
  text-align: center;
}
.wallet-list { display: grid; gap: 7px; }
.wallet-list-item {
  align-items: center;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 14px;
  color: var(--ink);
  cursor: pointer;
  display: grid;
  gap: 10px;
  grid-template-columns: 38px minmax(0, 1fr) auto;
  padding: 11px 9px;
  text-align: left;
  transition: background .18s ease, border-color .18s ease, transform .18s ease;
}
.wallet-list-item:hover { background: #f1faf8; transform: translateY(-1px); }
.wallet-list-item.active { background: #e8f8f5; border-color: #c5ece6; }
.wallet-list-icon {
  background: #0b4658;
  border-radius: 12px;
  color: #70e0d3;
  display: grid;
  font-size: 20px;
  height: 38px;
  place-items: center;
  width: 38px;
}
.wallet-list-copy { min-width: 0; }
.wallet-list-copy strong,
.wallet-list-copy small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.wallet-list-copy strong { color: var(--navy); font-size: 12px; }
.wallet-list-copy small { color: var(--muted); font-size: 9px; margin-top: 4px; }
.wallet-list-badge { color: #168276; font-size: 8px; font-weight: 900; text-transform: uppercase; }
.wallet-detail { min-height: 620px; padding: 26px; }
.wallet-empty {
  align-items: center;
  display: flex;
  flex-direction: column;
  height: 560px;
  justify-content: center;
  text-align: center;
}
.wallet-empty-icon {
  background: #e8f8f5;
  border-radius: 22px;
  color: #1d9d8f;
  display: grid;
  font-size: 42px;
  height: 82px;
  margin-bottom: 18px;
  place-items: center;
  width: 82px;
}
.wallet-empty h3 { color: var(--navy); font-size: 23px; margin: 0 0 7px; }
.wallet-empty p { color: var(--muted); font-size: 12px; margin: 0; max-width: 330px; }
.wallet-detail-head,
.wallet-title-line,
.wallet-sync-state { align-items: center; display: flex; }
.wallet-detail-head { justify-content: space-between; }
.wallet-title-line { gap: 9px; }
.wallet-title-line h3 { color: var(--navy); font-size: 26px; letter-spacing: -.04em; margin: 0; }
.wallet-fingerprint { color: var(--muted); font-size: 10px; margin: 6px 0 0; }
.wallet-fingerprint code { color: var(--navy); font-weight: 800; }
.wallet-sync-state {
  background: #f4faf9;
  border: 1px solid var(--line);
  border-radius: 12px;
  gap: 10px;
  margin: 20px 0 12px;
  padding: 11px 13px;
}
.wallet-sync-dot {
  background: #e5a33a;
  border: 4px solid #faeed7;
  border-radius: 50%;
  height: 14px;
  width: 14px;
}
.wallet-sync-state.ready .wallet-sync-dot { background: #28ae9c; border-color: #d9f5f0; }
.wallet-sync-state.error .wallet-sync-dot { background: #c84e43; border-color: #f9dfdd; }
.wallet-sync-state strong,
.wallet-sync-state small { display: block; }
.wallet-sync-state strong { color: var(--navy); font-size: 11px; }
.wallet-sync-state small { color: var(--muted); font-size: 9px; margin-top: 2px; }
.wallet-balances {
  background: #092f3d;
  border-radius: 16px;
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 17px 0;
  overflow: hidden;
}
.wallet-balances > div { background: rgba(255, 255, 255, .025); min-width: 0; padding: 17px; }
.wallet-balances span,
.wallet-balances strong { color: #dffaf6; display: block; }
.wallet-balances span { color: #84b9b3; font-size: 9px; font-weight: 900; }
.wallet-balances strong { font-size: 15px; margin-top: 8px; overflow-wrap: anywhere; }
.wallet-receive-grid {
  align-items: center;
  background: linear-gradient(135deg, #eefaf8, #fbfefd);
  border: 1px solid #d2eee9;
  border-radius: 17px;
  display: grid;
  gap: 20px;
  grid-template-columns: 150px minmax(0, 1fr);
  padding: 18px;
}
.wallet-qr-wrap { background: #fff; border: 1px solid #d5ebe8; border-radius: 14px; padding: 8px; }
.wallet-qr-wrap img { aspect-ratio: 1; display: block; object-fit: contain; width: 100%; }
.wallet-receive-copy h4 { color: var(--navy); font-size: 19px; margin: 8px 0 4px; }
.wallet-receive-copy p { color: var(--muted); font-size: 10px; margin: 0 0 10px; }
.wallet-receive-copy > code {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 9px;
  color: #164b57;
  display: block;
  font-size: 9px;
  line-height: 1.45;
  margin-bottom: 11px;
  overflow-wrap: anywhere;
  padding: 10px;
}
.wallet-meta {
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 20px;
  padding-top: 17px;
}
.wallet-meta > div { border-right: 1px solid var(--line); padding: 0 13px; }
.wallet-meta > div:first-child { padding-left: 0; }
.wallet-meta > div:last-child { border: 0; }
.wallet-meta span,
.wallet-meta strong { display: block; }
.wallet-meta span { color: var(--muted); font-size: 9px; }
.wallet-meta strong { color: var(--navy); font-size: 11px; margin-top: 5px; }
.wallet-records {
  display: grid;
  gap: 16px;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  margin-top: 16px;
}
.wallet-table-title { align-items: center; display: flex; justify-content: space-between; padding: 14px 9px 5px; }
.wallet-table-title h3 { color: var(--navy); font-size: 18px; margin: 6px 0; }
.wallet-table code { color: #176b63; font-size: 10px; }
.wallet-table a { color: #17786d; font-size: 11px; font-weight: 800; }
.wallet-empty-row { color: var(--muted); padding: 34px 12px !important; text-align: center; }
.wallet-dialog { width: 520px; }
.wallet-checkbox {
  align-items: center;
  color: var(--navy);
  display: flex;
  font-size: 12px;
  font-weight: 700;
  gap: 9px;
  margin: 15px 0 19px;
}
.wallet-checkbox input { height: 18px; width: 18px; }
.wallet-seed {
  background: #082f3e;
  border-radius: 16px;
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 20px 0 13px;
  padding: 18px;
}
.wallet-seed span {
  align-items: center;
  color: #dffaf6;
  display: flex;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
  gap: 6px;
}
.wallet-seed small { color: #5da89f; font-size: 8px; min-width: 14px; text-align: right; }
.wallet-recovery-check { margin-top: 19px; }

@media (max-width: 900px) {
  .wallet-aggregate { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .wallet-console { grid-template-columns: 1fr; }
  .wallet-list-panel { min-height: auto; }
  .wallet-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .wallet-records { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .wallet-head-actions { width: 100%; }
  .wallet-head-actions .button { flex: 1; }
  .wallet-aggregate,
  .wallet-list { grid-template-columns: 1fr; }
  .wallet-aggregate-card { min-height: 110px; }
  .wallet-console { display: block; }
  .wallet-list-panel { margin-bottom: 12px; }
  .wallet-detail { min-height: 0; padding: 19px 15px; }
  .wallet-empty { height: 360px; }
  .wallet-detail-head { align-items: flex-start; }
  .wallet-title-line { align-items: flex-start; flex-direction: column; }
  .wallet-balances { grid-template-columns: 1fr; }
  .wallet-receive-grid { grid-template-columns: 1fr; }
  .wallet-qr-wrap { margin: auto; max-width: 220px; width: 100%; }
  .wallet-address-actions { flex-direction: column; }
  .wallet-meta { gap: 17px 0; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .wallet-meta > div:nth-child(2) { border-right: 0; }
  .wallet-meta > div:nth-child(3) { padding-left: 0; }
  .wallet-seed { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
