:root {
  --ink: #07184b;
  --muted: #586984;
  --line-blue: #b8d5ff;
  --blue: #2380ff;
  --blue-dark: #0b55d9;
  --green: #2ab881;
  --red: #ff5454;
  --purple: #7a5bf2;
  --shadow: 0 14px 34px rgba(27, 69, 132, 0.13);
  font-family: "Microsoft YaHei", "PingFang SC", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  position: relative;
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  overflow-x: hidden;
  overflow-y: auto;
  color: var(--ink);
  background: linear-gradient(180deg, #f4f9ff 0%, #ffffff 42%, #f2f8ff 100%);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(132deg, rgba(33, 122, 232, 0.055), transparent 34%),
    repeating-linear-gradient(145deg, transparent 0 18px, rgba(35, 128, 255, 0.024) 18px 20px);
  content: "";
  pointer-events: none;
}

body::after {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  height: 140px;
  background: linear-gradient(180deg, transparent, rgba(226, 241, 255, 0.78));
  content: "";
  pointer-events: none;
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

.page {
  width: calc(100% - 24px);
  min-height: 100vh;
  margin: 0 auto;
  padding: 20px 0 12px;
  display: flex;
  flex-direction: column;
  overflow: visible;
}

.topbar,
.brand,
.top-actions,
.message-button,
.admin-button,
.section-title,
.card-foot,
.drawer-head,
.drawer-actions {
  display: flex;
  align-items: center;
}

.topbar {
  justify-content: flex-start;
  min-height: 86px;
  margin-bottom: 8px;
  flex: 0 0 auto;
}

.brand {
  gap: 20px;
}

.brand-icon {
  width: 94px;
  height: 84px;
  object-fit: contain;
}

.brand-separator {
  width: 1px;
  height: 60px;
  background: rgba(157, 175, 198, 0.42);
}

.brand-text h1 {
  margin: 0;
  color: #07184b;
  font-size: 38px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0;
}

.brand-text p {
  margin-top: 12px;
  color: #68778f;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-logo {
  object-fit: contain;
}

h1,
h2,
h3,
p {
  margin: 0;
}

.brand h1 {
  font-size: 33px;
  line-height: 1.1;
  letter-spacing: 0;
}

.brand p {
  margin-top: 9px;
  color: var(--muted);
  font-size: 18px;
  font-weight: 800;
}

main {
  display: grid;
  grid-template-rows: minmax(255px, 1fr) minmax(310px, 1.08fr) minmax(245px, 0.9fr);
  gap: 12px;
  min-height: calc(100vh - 126px);
  flex: 1;
}

.top-actions {
  gap: 16px;
  color: var(--ink);
  font-weight: 800;
}

.message-button,
.admin-button {
  position: relative;
  gap: 9px;
  min-height: 38px;
  border: 0;
  background: transparent;
  color: inherit;
  font-weight: 800;
}

.message-button strong {
  position: absolute;
  top: -6px;
  right: 19px;
  min-width: 21px;
  height: 21px;
  border-radius: 999px;
  color: #fff;
  background: var(--red);
  font-size: 12px;
  line-height: 21px;
}

.divider {
  width: 1px;
  height: 24px;
  background: #d7e1ef;
}

.bell-icon {
  position: relative;
  width: 18px;
  height: 18px;
  border: 2px solid currentColor;
  border-bottom: 0;
  border-radius: 13px 13px 5px 5px;
}

.bell-icon::before {
  position: absolute;
  left: 5px;
  top: -6px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
  content: "";
}

.bell-icon::after {
  position: absolute;
  left: 5px;
  bottom: -6px;
  width: 8px;
  height: 4px;
  border-radius: 0 0 8px 8px;
  background: currentColor;
  content: "";
}

.user-icon {
  position: relative;
  width: 18px;
  height: 18px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.user-icon::after {
  position: absolute;
  left: -5px;
  top: 15px;
  width: 24px;
  height: 12px;
  border: 2px solid currentColor;
  border-bottom: 0;
  border-radius: 18px 18px 0 0;
  content: "";
}

.chevron {
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.section {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: visible;
  margin-top: 0;
  min-height: 0;
  padding: 16px 18px 14px;
  border: 1px solid var(--line-blue);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 8px 26px rgba(32, 89, 164, 0.08);
}

.section::after {
  position: absolute;
  top: 28px;
  right: 22px;
  width: 44px;
  height: 44px;
  background-image: radial-gradient(currentColor 2px, transparent 2px);
  background-size: 11px 11px;
  color: rgba(35, 128, 255, 0.2);
  content: "";
}

.section-blue {
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.82), rgba(238, 246, 255, 0.72));
}

.section-green {
  border-color: #d2ebe5;
  background: linear-gradient(140deg, rgba(249, 253, 252, 0.9), rgba(242, 250, 248, 0.68));
  padding-left: 14px;
  padding-right: 14px;
}

.section-purple {
  border-color: #e8e5f6;
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.92), rgba(250, 249, 254, 0.7));
}

.section-title {
  position: relative;
  z-index: 1;
  gap: 16px;
  min-height: 36px;
  margin-bottom: 12px;
}

.section-title h2 {
  color: var(--blue);
  font-size: 27px;
  line-height: 1;
}

.section-green .section-title h2 {
  color: #13966f;
}

.section-purple .section-title h2 {
  color: #7a6cc9;
}

.section-title p {
  color: var(--muted);
  font-size: 16px;
  font-weight: 800;
}

.section-title i {
  width: 1px;
  height: 28px;
  background: #cbd9ec;
}

.section-icon {
  position: relative;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border-radius: 50%;
  background: #fff;
  box-shadow: inset 0 0 0 2px rgba(35, 128, 255, 0.15);
}

.section-icon::before,
.section-icon::after {
  position: absolute;
  content: "";
}

.section-icon.stack::before {
  left: 11px;
  top: 12px;
  width: 22px;
  height: 14px;
  background: var(--blue);
  clip-path: polygon(50% 0, 100% 32%, 50% 64%, 0 32%);
}

.section-icon.stack::after {
  left: 12px;
  top: 24px;
  width: 20px;
  height: 9px;
  border: 4px solid var(--blue);
  border-top: 0;
  transform: skewY(-22deg);
}

.section-icon.box::before {
  left: 13px;
  top: 12px;
  width: 20px;
  height: 20px;
  border-radius: 4px;
  background: var(--green);
  box-shadow: inset 0 7px 0 rgba(255, 255, 255, 0.35);
}

.section-icon.gear::before {
  left: 12px;
  top: 12px;
  width: 20px;
  height: 20px;
  border: 6px solid var(--purple);
  border-radius: 50%;
}

.business-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(3, minmax(0, 1fr));
  gap: 16px;
  flex: 1;
  min-height: 0;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  flex: 1;
  min-height: 0;
}

.balance-flow {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 92px minmax(0, 1fr);
  align-items: stretch;
  gap: 18px;
  width: 92%;
  margin: 0 auto;
  flex: 1;
  min-height: 0;
}

.balance-flow > div {
  display: flex;
  min-height: 0;
}

.card {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border: 1px solid #d7e7fb;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
  transform: translateY(0);
  transform-origin: center;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
  will-change: transform;
}

.card:hover {
  z-index: 4;
  border-color: rgba(120, 178, 255, 0.72);
  box-shadow: 0 18px 40px rgba(27, 69, 132, 0.17);
  transform: translateY(-5px);
  animation: card-pop 320ms cubic-bezier(0.2, 0.9, 0.2, 1);
}

.section-purple .card {
  border-color: #e4e2f4;
  box-shadow: 0 8px 18px rgba(92, 75, 151, 0.07);
}

.section-purple .card:hover {
  border-color: rgba(174, 163, 230, 0.7);
  box-shadow: 0 16px 30px rgba(92, 75, 151, 0.11);
}

.card.red:hover {
  border-color: rgba(255, 146, 146, 0.78);
  box-shadow: 0 18px 40px rgba(180, 67, 67, 0.13);
}

.card.green:hover {
  border-color: rgba(92, 204, 171, 0.7);
  box-shadow: 0 18px 40px rgba(42, 141, 111, 0.13);
}

.balance-card:hover {
  transform: translateY(-3px);
  animation: balance-card-pop 300ms cubic-bezier(0.2, 0.9, 0.2, 1);
}

@keyframes card-pop {
  0% {
    transform: translateY(0);
  }

  62% {
    transform: translateY(-7px);
  }

  100% {
    transform: translateY(-5px);
  }
}

@keyframes balance-card-pop {
  0% {
    transform: translateY(0);
  }

  62% {
    transform: translateY(-4px);
  }

  100% {
    transform: translateY(-3px);
  }
}

.business-card {
  display: grid;
  grid-template-columns: minmax(120px, 0.42fr) minmax(170px, 0.58fr);
  min-height: 0;
  height: 100%;
  padding: 18px 20px 14px;
  background: rgba(248, 251, 255, 0.94);
}

.support-card {
  display: grid;
  grid-template-columns: minmax(130px, 0.36fr) minmax(190px, 0.64fr);
  min-height: 0;
  height: 100%;
  padding: 18px 24px 14px;
}

.balance-card {
  display: grid;
  grid-template-columns: 150px minmax(260px, 0.82fr) 190px;
  align-items: center;
  min-height: 0;
  height: 100%;
  width: 100%;
  padding: 22px 48px;
}

.card.red {
  border-color: #ffc9c9;
}

.card.green {
  border-color: #ace4d3;
}

.visual {
  position: relative;
  width: 104px;
  height: 104px;
  align-self: center;
  justify-self: center;
  border-radius: 50%;
  background: linear-gradient(145deg, #eef5ff, #ffffff);
  transform: scale(1);
  transition:
    filter 180ms ease,
    transform 220ms cubic-bezier(0.2, 0.9, 0.2, 1);
}

.card:hover .visual {
  filter: drop-shadow(0 9px 14px rgba(35, 128, 255, 0.1));
  transform: scale(1.055);
}

.card.red:hover .visual {
  filter: drop-shadow(0 9px 14px rgba(255, 84, 84, 0.09));
}

.card.green:hover .visual {
  filter: drop-shadow(0 9px 14px rgba(42, 184, 129, 0.09));
}

.card.purple:hover .visual {
  filter: drop-shadow(0 8px 13px rgba(122, 91, 242, 0.08));
}

.visual::before,
.visual::after {
  position: absolute;
  content: "";
}

.card-content {
  align-self: center;
}

.card h3 {
  font-size: 24px;
  line-height: 1.35;
}

.card p {
  margin-top: 6px;
  color: var(--muted);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.5;
}

.card button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: fit-content;
  min-width: 118px;
  min-height: 34px;
  margin-top: 13px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(145deg, rgba(45, 142, 255, 0.86), rgba(9, 103, 234, 0.86));
  box-shadow: 0 5px 11px rgba(35, 128, 255, 0.14);
  font-size: 15px;
  font-weight: 900;
  transition:
    background 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.red button {
  background: linear-gradient(145deg, rgba(255, 105, 105, 0.86), rgba(243, 63, 63, 0.86));
  box-shadow: 0 5px 11px rgba(255, 84, 84, 0.13);
}

.green button {
  background: linear-gradient(145deg, rgba(46, 195, 139, 0.86), rgba(18, 154, 109, 0.86));
  box-shadow: 0 5px 11px rgba(42, 184, 129, 0.13);
}

.purple button {
  background: linear-gradient(145deg, rgba(154, 135, 238, 0.84), rgba(124, 103, 219, 0.84));
  box-shadow: 0 5px 11px rgba(122, 91, 242, 0.13);
}

.card button:hover {
  background: linear-gradient(145deg, #2d8eff, #0967ea);
  box-shadow: 0 8px 16px rgba(35, 128, 255, 0.22);
  transform: none;
}

.red button:hover {
  background: linear-gradient(145deg, #ff6969, #f33f3f);
  box-shadow: 0 8px 16px rgba(255, 84, 84, 0.2);
}

.green button:hover {
  background: linear-gradient(145deg, #2ec38b, #129a6d);
  box-shadow: 0 8px 16px rgba(42, 184, 129, 0.2);
}

.purple button:hover {
  background: linear-gradient(145deg, #9a87ee, #7c67db);
  box-shadow: 0 8px 16px rgba(122, 91, 242, 0.18);
}

.card-foot {
  grid-column: 1 / -1;
  justify-content: center;
  gap: 34px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 800;
}

.card-foot span,
.balance-list span {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding-left: 20px;
  opacity: 0.86;
  transform: translateY(0);
  transition:
    color 180ms ease,
    opacity 180ms ease,
    transform 180ms ease;
}

.card:hover .card-foot span,
.card:hover .balance-list span {
  color: #24395f;
  opacity: 1;
  transform: none;
}

.card:has(button:hover) .card-foot span,
.card:has(button:hover) .balance-list span {
  transform: translateY(0);
}

.card-foot span::before,
.balance-list span::before {
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  content: "";
}

.blue .card-foot span::before,
.blue .balance-list span::before {
  color: var(--blue);
}

.red .card-foot span::before {
  color: var(--red);
}

.purple .card-foot span::before {
  color: var(--purple);
}

.green .balance-list span::before {
  color: var(--green);
}

.balance-main {
  display: flex;
  min-height: 112px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-right: 26px;
  border-right: 1px solid rgba(225, 232, 242, 0.62);
}

.balance-main h3 {
  min-height: 30px;
}

.balance-card button {
  min-width: 104px;
  min-height: 28px;
  margin-top: 9px;
  padding: 0 14px;
  font-size: 15px;
  box-shadow: 0 3px 7px rgba(35, 128, 255, 0.1);
}

.balance-card.green button {
  box-shadow: 0 3px 7px rgba(42, 184, 129, 0.1);
}

.balance-list {
  display: grid;
  gap: 13px;
  padding-left: 24px;
  color: #2d3e5f;
  font-size: 16px;
  font-weight: 800;
}

.flow-arrow {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
}

.flow-arrow::before {
  position: absolute;
  left: 14px;
  width: 38px;
  height: 18px;
  background-image: radial-gradient(rgba(122, 188, 181, 0.38) 1.35px, transparent 1.35px);
  background-size: 9px 9px;
  content: "";
}

.flow-arrow span {
  position: absolute;
  right: 14px;
  width: 38px;
  height: 28px;
  opacity: 0.52;
  background: linear-gradient(90deg, rgba(172, 220, 213, 0.72), rgba(86, 178, 165, 0.72));
  clip-path: polygon(0 40%, 58% 40%, 58% 22%, 100% 50%, 58% 78%, 58% 60%, 0 60%);
  filter: drop-shadow(0 4px 7px rgba(69, 156, 145, 0.08));
}

.chart::before {
  left: 30px;
  bottom: 22px;
  width: 15px;
  height: 42px;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(#7fb9ff, #1973f2);
  box-shadow: 26px -11px 0 #2f88ff, 52px -28px 0 #61a7ff;
}

.chart::after {
  left: 30px;
  top: 33px;
  width: 58px;
  height: 36px;
  border-left: 5px solid var(--blue);
  border-top: 5px solid var(--blue);
  transform: skewY(-25deg);
}

.clipboard::before,
.warning::before {
  left: 24px;
  top: 16px;
  width: 56px;
  height: 76px;
  border: 6px solid currentColor;
  border-radius: 8px;
  background: #fff;
  color: var(--blue);
}

.warning::before {
  color: var(--red);
}

.clipboard::after,
.warning::after {
  right: 13px;
  bottom: 14px;
  width: 42px;
  height: 34px;
  border-radius: 6px;
  background: linear-gradient(145deg, #6faeff, #1c74ed);
  box-shadow: 0 10px 18px rgba(35, 128, 255, 0.24);
}

.warning::after {
  width: 48px;
  height: 30px;
  border-radius: 6px 12px 6px 6px;
  background: linear-gradient(145deg, #ff7878, #f34444);
  box-shadow: 0 10px 18px rgba(255, 84, 84, 0.22);
}

.handover::before {
  left: 17px;
  top: 20px;
  width: 34px;
  height: 48px;
  border-radius: 16px 16px 8px 8px;
  background: linear-gradient(145deg, #69adff, #0d72f2);
  box-shadow: 54px 0 0 #4a9bff;
}

.handover::after {
  left: 39px;
  bottom: 14px;
  width: 44px;
  height: 36px;
  border-radius: 7px;
  background: linear-gradient(145deg, #6bb2ff, #1b78ed);
  box-shadow: 0 10px 18px rgba(35, 128, 255, 0.24);
}

.package::before,
.settlement::before,
.folder::before,
.tools::before {
  left: 20px;
  top: 30px;
  width: 72px;
  height: 52px;
  border-radius: 9px;
  background: linear-gradient(145deg, #6fb3ff, #1973f2);
  box-shadow: 0 12px 20px rgba(35, 128, 255, 0.24);
}

.package::after {
  right: 11px;
  bottom: 13px;
  width: 42px;
  height: 50px;
  border-radius: 12px 12px 20px 20px;
  background: linear-gradient(145deg, #74b5ff, #146ee8);
  box-shadow: inset 0 0 0 6px rgba(255, 255, 255, 0.3);
}

.settlement::before {
  background: linear-gradient(145deg, #6ee0b5, #159f6f);
  box-shadow: 0 12px 20px rgba(42, 184, 129, 0.22);
}

.settlement::after {
  right: 13px;
  bottom: 12px;
  width: 45px;
  height: 45px;
  border: 6px solid #fff;
  border-radius: 50%;
  background: #39bd89;
}

.folder::before {
  top: 36px;
  background: linear-gradient(145deg, rgba(167, 148, 238, 0.78), rgba(116, 93, 211, 0.78));
  box-shadow: 0 9px 16px rgba(122, 91, 242, 0.13);
}

.folder::after {
  left: 25px;
  top: 28px;
  width: 45px;
  height: 18px;
  border-radius: 7px 7px 0 0;
  background: rgba(188, 178, 239, 0.78);
}

.tools::before {
  top: 42px;
  background: linear-gradient(145deg, rgba(169, 151, 235, 0.76), rgba(120, 99, 211, 0.76));
  box-shadow: 0 9px 16px rgba(122, 91, 242, 0.13);
}

.tools::after {
  left: 40px;
  top: 17px;
  width: 14px;
  height: 58px;
  border-radius: 8px;
  background: rgba(190, 181, 241, 0.76);
  box-shadow: 31px 0 0 rgba(211, 205, 244, 0.76);
  transform: rotate(35deg);
}

.robot::before {
  left: 25px;
  top: 22px;
  width: 60px;
  height: 44px;
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(166, 149, 236, 0.76), rgba(119, 97, 211, 0.76));
  box-shadow: 0 46px 0 -8px rgba(166, 149, 236, 0.72);
}

.robot::after {
  left: 42px;
  top: 39px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 24px 0 0 #fff, 35px 54px 0 7px rgba(119, 97, 211, 0.72);
}

.drawer {
  position: fixed;
  inset: 0;
  z-index: 10;
  display: none;
}

.drawer.open {
  display: block;
}

.drawer-mask {
  position: absolute;
  inset: 0;
  background: rgba(7, 24, 75, 0.34);
}

.drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  display: grid;
  gap: 18px;
  width: min(520px, 100%);
  height: 100%;
  padding: 28px;
  overflow-y: auto;
  background: #fff;
  box-shadow: -18px 0 42px rgba(7, 24, 75, 0.18);
}

.drawer-head {
  justify-content: space-between;
  gap: 20px;
}

.drawer-head p {
  color: var(--blue);
  font-weight: 900;
}

.drawer-head h3 {
  margin-top: 6px;
  font-size: 25px;
}

.close-button {
  position: relative;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 12px;
  background: #f3f7fd;
}

.close-button::before,
.close-button::after {
  position: absolute;
  left: 11px;
  top: 19px;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  content: "";
}

.close-button::before {
  transform: rotate(45deg);
}

.close-button::after {
  transform: rotate(-45deg);
}

.link-list {
  display: grid;
  gap: 13px;
}

.link-row {
  display: grid;
  gap: 8px;
  padding: 13px;
  border: 1px solid #e8eef8;
  border-radius: 8px;
  background: #fbfdff;
}

.link-row.focus {
  border-color: #9ec8ff;
  background: #f4f9ff;
}

.link-row span {
  color: #314465;
  font-weight: 900;
}

.link-row input {
  width: 100%;
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid #d7e4f4;
  border-radius: 8px;
  outline: 0;
}

.drawer-actions {
  justify-content: flex-end;
  gap: 12px;
  margin-top: auto;
}

.ghost-button,
.save-button {
  min-width: 92px;
  min-height: 38px;
  border-radius: 999px;
  font-weight: 900;
}

.ghost-button {
  border: 1px solid #d7e4f4;
  color: var(--ink);
  background: #fff;
}

.save-button {
  border: 0;
  color: #fff;
  background: linear-gradient(145deg, #2d8eff, #0967ea);
}

.toast {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 20;
  padding: 12px 18px;
  border-radius: 8px;
  color: #fff;
  background: #102a5c;
  box-shadow: 0 12px 30px rgba(7, 24, 75, 0.18);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 160ms ease, transform 160ms ease;
  pointer-events: none;
  font-weight: 900;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1180px) {
  .business-grid,
  .support-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .balance-flow {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .flow-arrow {
    display: none;
  }

  .balance-card {
    grid-template-columns: 140px minmax(0, 1fr) 190px;
  }
}

@media (max-width: 760px) {
  .page {
    width: 100%;
    padding: 18px 12px 24px;
  }

  main {
    display: block;
    min-height: auto;
  }

  .section {
    margin-top: 14px;
  }

  .topbar,
  .section-title {
    align-items: flex-start;
    flex-direction: column;
  }

  .topbar {
    gap: 18px;
  }

  .brand h1 {
    font-size: 28px;
  }

  .brand p {
    font-size: 16px;
  }

  .section-title {
    gap: 10px;
  }

  .section-title i {
    display: none;
  }

  .business-grid,
  .support-grid {
    grid-template-columns: 1fr;
  }

  .business-card,
  .support-card,
  .balance-card {
    grid-template-columns: 1fr;
  }

  .visual {
    margin-bottom: 14px;
  }

  .balance-main {
    padding-right: 0;
    border-right: 0;
  }

  .balance-list {
    margin-top: 18px;
    padding-left: 0;
  }

  .card-foot {
    justify-content: flex-start;
    gap: 18px;
    flex-wrap: wrap;
  }
}
