:root {
  color-scheme: dark;
  --bg: #070707;
  --panel: #101010;
  --panel-2: #141414;
  --panel-3: #1b1b1b;
  --line: #252525;
  --line-soft: rgba(255, 255, 255, 0.08);
  --text: #f2f2f2;
  --muted: rgba(255, 255, 255, 0.68);
  --subtle: rgba(255, 255, 255, 0.45);
  --accent: #88ff6a;
  --accent-strong: #6fe956;
  --danger: #ff4a4a;
  --warning: #ffca57;
  --shadow: 0 20px 80px rgba(0, 0, 0, 0.42);
  --page-pad: clamp(16px, 3.6vw, 72px);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

button {
  border: 0;
}

.app-shell {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  background:
    radial-gradient(circle at top right, rgba(136, 255, 106, 0.07), transparent 28rem),
    var(--bg);
}

.announcement {
  position: relative;
  display: flex;
  min-height: 43px;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #1c1c1c;
  background: rgba(255, 255, 255, 0.035);
  padding: 9px 54px 9px var(--page-pad);
}

.announcement p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.35;
  text-align: center;
}

.announcement a:hover {
  color: var(--accent);
}

.announcement__close {
  position: absolute;
  right: var(--page-pad);
  top: 50%;
  transform: translateY(-50%);
}

.nav {
  border-bottom: 1px solid #1c1c1c;
  background: rgba(10, 10, 10, 0.92);
}

.nav__inner {
  display: flex;
  min-height: 78px;
  align-items: center;
  gap: 30px;
  padding: 0 var(--page-pad);
}

.nav__brand {
  display: inline-flex;
  min-width: max-content;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}

.nav__brand img,
.nav__profile img,
.user-avatar,
.coin-card img {
  display: block;
  object-fit: cover;
}

.nav__brand img {
  border-radius: 8px;
}

.nav__links {
  display: flex;
  align-self: stretch;
  align-items: stretch;
  gap: 22px;
}

.nav__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 15px;
  font-weight: 600;
  transition: color 0.15s ease;
}

.nav__link:hover,
.nav__link--active {
  color: #fff;
}

.nav__link--active::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--accent);
  content: "";
}

.nav__link--active .mask-icon {
  background: var(--accent);
}

.nav__actions {
  display: flex;
  margin-left: auto;
  align-items: center;
  gap: 14px;
}

.nav__social,
.icon-button {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  background: transparent;
  color: rgba(255, 255, 255, 0.76);
  cursor: pointer;
  transition:
    background 0.15s ease,
    color 0.15s ease,
    border-color 0.15s ease;
}

.nav__social:hover,
.icon-button:hover {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.sound-button {
  border-color: #2a2a2a;
  background: #151515;
}

.sound-button__mark {
  position: relative;
  width: 16px;
  height: 14px;
  border-left: 8px solid currentColor;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}

.sound-button__mark::after {
  position: absolute;
  top: -8px;
  left: 6px;
  width: 7px;
  height: 16px;
  border-right: 2px solid currentColor;
  border-radius: 50%;
  content: "";
}

.sound-button[aria-pressed="false"] .sound-button__mark::before {
  position: absolute;
  top: -8px;
  left: 8px;
  width: 2px;
  height: 20px;
  background: currentColor;
  transform: rotate(35deg);
  content: "";
}

.nav__profile {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.78);
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
}

.nav__profile img,
.user-avatar {
  width: 37px;
  height: 37px;
  border: 1px solid #303030;
  border-radius: 999px;
  background: #1d1d1d;
}

.nav__menu {
  display: none;
  margin-left: auto;
}

.mask-icon {
  display: inline-block;
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
  background: currentColor;
  mask: var(--icon) center / contain no-repeat;
  -webkit-mask: var(--icon) center / contain no-repeat;
}

.mask-icon--large {
  width: 23px;
  height: 23px;
}

.scroll-area {
  min-height: 0;
  flex: 1;
  overflow: auto;
  scrollbar-color: var(--accent) #111;
  scrollbar-width: thin;
}

.scroll-area::-webkit-scrollbar {
  width: 10px;
}

.scroll-area::-webkit-scrollbar-track {
  background: #111;
}

.scroll-area::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: var(--accent);
}

.main {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  padding: 36px var(--page-pad) 60px;
}

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  padding-bottom: 32px;
}

.hero__bars {
  position: absolute;
  inset: 0 0 auto;
  display: grid;
  height: 220px;
  grid-template-columns: repeat(16, minmax(76px, 1fr));
  align-items: end;
  opacity: 0.52;
  pointer-events: none;
}

.hero__bars span {
  display: block;
  height: 78px;
  background: linear-gradient(180deg, rgba(30, 123, 23, 0.04), rgba(62, 194, 45, 0.45));
}

.hero__bars span:nth-child(2),
.hero__bars span:nth-child(8),
.hero__bars span:nth-child(14) {
  height: 110px;
}

.hero__bars span:nth-child(3),
.hero__bars span:nth-child(9),
.hero__bars span:nth-child(15) {
  height: 142px;
}

.hero__bars span:nth-child(4),
.hero__bars span:nth-child(10) {
  height: 190px;
}

.hero__bars span:nth-child(5),
.hero__bars span:nth-child(11),
.hero__bars span:nth-child(16) {
  height: 122px;
}

.hero__content {
  position: relative;
  z-index: 1;
}

.page-title {
  margin-bottom: 34px;
}

.page-title h1 {
  margin: 0;
  font-size: clamp(22px, 1.8vw, 28px);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.15;
}

.page-title p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: clamp(15px, 1.3vw, 18px);
  font-weight: 600;
}

.kpi-grid {
  display: grid;
  min-height: 112px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid #1d1d1d;
  border-radius: 8px;
  background: rgba(15, 15, 15, 0.93);
}

.kpi-card,
.support-card {
  min-width: 0;
  padding: 18px;
}

.kpi-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid #1d1d1d;
}

.kpi-card__label {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.67);
  font-size: 14px;
  font-weight: 600;
}

.kpi-card strong {
  margin-top: 20px;
  color: #fff;
  font-size: 27px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
}

.support-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--accent);
  color: #071006;
}

.support-card h2 {
  margin: 0;
  font-size: 17px;
  line-height: 1.2;
}

.support-card p {
  margin: 4px 0 14px;
  font-size: 14px;
  font-weight: 600;
  opacity: 0.82;
}

.dark-button,
.primary-button,
.secondary-button,
.ghost-button,
.back-button,
.danger-button {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 8px;
  padding: 8px 14px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  transition:
    transform 0.12s ease,
    background 0.15s ease,
    border-color 0.15s ease,
    color 0.15s ease,
    opacity 0.15s ease;
}

.dark-button {
  align-self: flex-start;
  background: #070707;
  color: #fff;
}

.primary-button {
  background: var(--accent);
  color: #061006;
}

.primary-button:hover,
.dark-button:hover {
  transform: translateY(-1px);
}

.primary-button:disabled,
.secondary-button:disabled,
.dark-button:disabled {
  cursor: not-allowed;
  opacity: 0.5;
  transform: none;
}

.secondary-button,
.back-button {
  border: 1px solid #2d2d2d;
  background: #151515;
  color: #fff;
}

.ghost-button {
  border: 1px solid transparent;
  background: transparent;
  color: var(--muted);
}

.danger-button {
  border: 1px solid rgba(255, 74, 74, 0.3);
  background: rgba(255, 74, 74, 0.1);
  color: #ff9a9a;
}

.workspace {
  padding-top: 60px;
}

.workspace__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.tabs {
  display: inline-flex;
  min-width: 0;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: #111;
  padding: 4px;
}

.tab {
  min-height: 38px;
  border-radius: 6px;
  background: transparent;
  color: rgba(255, 255, 255, 0.58);
  cursor: pointer;
  padding: 0 14px;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.tab span {
  color: var(--accent);
}

.tab--active {
  background: #232323;
  color: #fff;
}

.search-box,
.user-search {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #252525;
  border-radius: 8px;
  background: #101010;
  color: rgba(255, 255, 255, 0.5);
}

.search-box {
  width: min(100%, 340px);
  height: 42px;
  padding: 0 13px;
}

.search-box input,
.user-search input,
.amount-input {
  min-width: 0;
  flex: 1;
  border: 0;
  outline: 0;
  background: transparent;
  color: #fff;
}

.search-box input::placeholder,
.user-search input::placeholder,
.amount-input::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.panel {
  display: block;
}

.panel[hidden] {
  display: none !important;
}

.panel__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.panel__header h2,
.deal-builder h2,
.detail-title h2,
.step-card h3,
.chat-card h3 {
  margin: 0;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.25;
}

.panel__header p,
.deal-builder p,
.field-block p,
.detail-title p,
.step-card p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.deal-list-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.deal-table-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid #202020;
  border-radius: 8px;
  background: rgba(15, 15, 15, 0.88);
}

.deal-table-card__title {
  border-bottom: 1px solid #1e1e1e;
  padding: 17px 20px;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
}

.deal-table-card__title span {
  margin-left: 5px;
  color: var(--subtle);
}

.table-wrap {
  min-height: 460px;
  max-height: 560px;
  overflow: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

th,
td {
  padding: 14px 16px;
  border-bottom: 1px solid #181818;
  text-align: left;
  vertical-align: middle;
}

th {
  position: sticky;
  top: 0;
  z-index: 1;
  background: #101010;
  color: rgba(255, 255, 255, 0.48);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

td {
  color: rgba(255, 255, 255, 0.76);
}

tbody tr {
  cursor: pointer;
  transition: background 0.15s ease;
}

tbody tr:hover {
  background: rgba(255, 255, 255, 0.035);
}

.empty-row td {
  height: 190px;
  color: rgba(255, 255, 255, 0.42);
  text-align: center;
}

.party-cell,
.coin-cell,
.search-result__main {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 10px;
}

.party-cell__text,
.coin-cell__text,
.search-result__text {
  min-width: 0;
}

.party-cell strong,
.coin-cell strong,
.search-result strong {
  display: block;
  overflow: hidden;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.party-cell span,
.coin-cell span,
.search-result span {
  display: block;
  overflow: hidden;
  margin-top: 2px;
  color: var(--subtle);
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.coin-cell img,
.coin-card img {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: #202020;
}

.status-pill {
  display: inline-flex;
  min-width: 92px;
  min-height: 28px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(136, 255, 106, 0.22);
  border-radius: 999px;
  background: rgba(136, 255, 106, 0.09);
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
}

.status-pill--cancelled {
  border-color: rgba(255, 74, 74, 0.25);
  background: rgba(255, 74, 74, 0.08);
  color: #ff8989;
}

.status-pill--pending {
  border-color: rgba(255, 202, 87, 0.25);
  background: rgba(255, 202, 87, 0.08);
  color: #ffda88;
}

.view-button {
  display: inline-flex;
  min-width: 66px;
  min-height: 30px;
  align-items: center;
  justify-content: center;
  border: 1px solid #2a2a2a;
  border-radius: 8px;
  background: #151515;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

.deal-builder,
.detail-shell {
  overflow: hidden;
  border: 1px solid #202020;
  border-radius: 8px;
  background: #101010;
  box-shadow: var(--shadow);
}

.deal-builder__head,
.detail-top,
.chat-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid #202020;
  padding: 18px 20px;
}

.deal-builder__head {
  justify-content: flex-start;
}

.field-block {
  padding: 24px 20px 18px;
}

.field-block--bordered {
  border-top: 1px solid #202020;
}

.field-block label,
.amount-label {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 800;
}

.coin-grid {
  display: grid;
  margin-top: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-height: 238px;
  overflow: auto;
  padding-right: 6px;
  scrollbar-color: var(--accent) #111;
  scrollbar-width: thin;
}

.coin-grid::-webkit-scrollbar {
  width: 8px;
}

.coin-grid::-webkit-scrollbar-track {
  background: #111;
  border-radius: 999px;
}

.coin-grid::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 999px;
}

.coin-search {
  margin-top: 14px;
  min-height: 43px;
  padding: 0 13px;
}

.coin-grid__empty {
  grid-column: 1 / -1;
  margin-top: 0;
}

.coin-card {
  display: flex;
  min-height: 88px;
  align-items: center;
  gap: 13px;
  border: 1px solid #242424;
  border-radius: 8px;
  background: #151515;
  color: #fff;
  cursor: pointer;
  padding: 14px;
  text-align: left;
  transition:
    border-color 0.15s ease,
    background 0.15s ease,
    transform 0.15s ease;
}

.coin-card:hover,
.coin-card--selected {
  border-color: rgba(136, 255, 106, 0.55);
  background: #1d1d1d;
  transform: translateY(-1px);
}

.coin-card strong {
  display: block;
  font-size: 14px;
  line-height: 1.2;
}

.coin-card span {
  display: block;
  margin-top: 3px;
  color: var(--subtle);
  font-size: 12px;
}

.builder-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  border-top: 1px solid #202020;
  padding: 16px 20px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
  font-weight: 700;
}

#selectedNewUserLabel {
  margin-left: auto;
  color: rgba(136, 255, 106, 0.88);
}

.detail-top {
  align-items: flex-start;
}

.detail-title {
  min-width: 0;
  flex: 1;
}

.detail-title__row {
  display: flex;
  min-width: 0;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.deal-id {
  overflow: hidden;
  max-width: 360px;
  border: 1px solid #2b2b2b;
  border-radius: 999px;
  background: #151515;
  color: rgba(255, 255, 255, 0.62);
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.detail-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.detail-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 420px);
  gap: 22px;
  padding: 22px;
}

.step-card,
.chat-card,
.summary-card {
  min-width: 0;
  border: 1px solid #202020;
  border-radius: 8px;
  background: #141414;
}

.step-card {
  padding: 22px;
}

.step-heading {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.step-index {
  display: inline-flex;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(136, 255, 106, 0.3);
  border-radius: 999px;
  background: rgba(136, 255, 106, 0.1);
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
}

.user-search-row {
  display: grid;
  margin-top: 22px;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.user-search {
  min-height: 43px;
  padding: 0 13px;
}

.search-state {
  margin-top: 12px;
  border: 1px solid rgba(255, 202, 87, 0.18);
  border-radius: 8px;
  background: rgba(255, 202, 87, 0.06);
  color: rgba(255, 255, 255, 0.66);
  padding: 12px;
  font-size: 13px;
  font-weight: 650;
}

.search-results {
  display: grid;
  margin-top: 14px;
  gap: 8px;
}

.search-results--scroll {
  max-height: 360px;
  overflow: auto;
  padding-right: 6px;
  scrollbar-color: var(--accent) #111;
  scrollbar-width: thin;
}

.search-results--scroll::-webkit-scrollbar,
.table-wrap::-webkit-scrollbar,
.chat-messages::-webkit-scrollbar {
  width: 8px;
}

.search-results--scroll::-webkit-scrollbar-track,
.table-wrap::-webkit-scrollbar-track,
.chat-messages::-webkit-scrollbar-track {
  background: #111;
  border-radius: 999px;
}

.search-results--scroll::-webkit-scrollbar-thumb,
.table-wrap::-webkit-scrollbar-thumb,
.chat-messages::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 999px;
}

.search-result {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid #242424;
  border-radius: 8px;
  background: #101010;
  padding: 12px;
}

.search-result--selected {
  border-color: rgba(136, 255, 106, 0.58);
  background: rgba(136, 255, 106, 0.06);
}

.search-state--selected {
  border-color: rgba(136, 255, 106, 0.24);
  background: rgba(136, 255, 106, 0.07);
  color: rgba(255, 255, 255, 0.78);
}

.summary-card {
  margin-top: 18px;
  padding: 16px;
}

.summary-card h4 {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  text-transform: uppercase;
}

.summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid #202020;
  padding: 11px 0;
  color: var(--muted);
  font-size: 13px;
}

.summary-row:first-of-type {
  border-top: 0;
}

.summary-row strong {
  color: #fff;
  font-weight: 800;
  text-align: right;
}

.amount-box {
  display: grid;
  margin-top: 18px;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.amount-input-wrap {
  display: flex;
  min-height: 42px;
  align-items: center;
  border: 1px solid #252525;
  border-radius: 8px;
  background: #101010;
  padding: 0 13px;
}

.amount-input-wrap span {
  color: var(--subtle);
  font-weight: 800;
}

.chat-card {
  display: flex;
  min-height: 520px;
  flex-direction: column;
}

.chat-top {
  padding: 16px;
}

.chat-top h3 {
  font-size: 17px;
}

.chat-messages {
  display: flex;
  min-height: 0;
  flex: 1;
  flex-direction: column;
  gap: 10px;
  overflow: auto;
  padding: 18px 16px;
}

.chat-day {
  align-self: center;
  border-radius: 999px;
  background: #101010;
  color: var(--subtle);
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 800;
}

.message {
  max-width: 86%;
  border: 1px solid #242424;
  border-radius: 8px;
  background: #101010;
  padding: 10px 12px;
}

.message--system {
  align-self: center;
  border-color: rgba(136, 255, 106, 0.18);
  background: rgba(136, 255, 106, 0.06);
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 800;
  text-align: center;
}

.message--mine {
  align-self: flex-end;
  border-color: rgba(136, 255, 106, 0.26);
  background: rgba(136, 255, 106, 0.08);
}

.message__author {
  margin-bottom: 4px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
}

.message__text {
  color: #fff;
  font-size: 13px;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.message__time {
  margin-top: 6px;
  color: var(--subtle);
  font-size: 11px;
  text-align: right;
}

.chat-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 40px;
  gap: 10px;
  border-top: 1px solid #202020;
  padding: 14px;
}

.chat-form input {
  min-width: 0;
  min-height: 40px;
  border: 1px solid #252525;
  border-radius: 8px;
  outline: 0;
  background: #0f0f0f;
  color: #fff;
  padding: 0 13px;
}

.chat-form button {
  width: 40px;
  min-height: 40px;
  border-radius: 8px;
  background: var(--accent);
  color: #071006;
  cursor: pointer;
}

.hero {
  display: none;
}

.main {
  padding-top: 20px;
  padding-bottom: 48px;
}

.workspace {
  padding-top: 0;
}

textarea {
  font: inherit;
}

.deal-workbench {
  display: grid;
  grid-template-columns: minmax(360px, 0.48fr) minmax(0, 1fr);
  align-items: stretch;
  gap: 24px;
}

.deal-table-card--side,
.deal-builder--official,
.detail-shell--official {
  display: flex;
  min-height: 560px;
  height: min(760px, calc(100vh - 210px));
  flex-direction: column;
}

.deal-table-card--side {
  box-shadow: none;
}

.table-wrap--side {
  min-height: 0;
  max-height: none;
  flex: 1;
}

.deal-table-card--side th,
.deal-table-card--side td {
  padding: 14px 12px;
}

.deal-table-card--side th {
  background: #191919;
}

.deal-table-card--side tbody tr {
  background: transparent;
}

.deal-table-card--side tbody tr:hover,
.deal-table-card--side tbody tr.deal-row--active {
  background: #222;
}

.deal-table-card--side .party-cell__text span,
.deal-table-card--side .coin-cell__text {
  display: none;
}

.deal-table-card--side .coin-cell img {
  width: 24px;
  height: 24px;
}

.deal-table-card--side .user-avatar {
  width: 32px;
  height: 32px;
}

.table-status {
  display: inline-flex;
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
  font-weight: 750;
  white-space: nowrap;
}

.table-status--ok {
  color: var(--accent);
}

.table-status--danger {
  color: #ff8d8d;
}

.deal-table-card__chat,
.deal-table-card__footer {
  border-top: 1px solid #202020;
  background: #202020;
  color: rgba(255, 255, 255, 0.56);
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}

.deal-table-card__chat {
  display: inline-flex;
  min-height: 39px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
}

.deal-table-card__chat span {
  color: var(--accent);
  font-size: 12px;
}

.deal-table-card__invite {
  display: grid;
  gap: 9px;
  border-top: 1px solid #202020;
  background: #141414;
  padding: 14px 16px;
}

.deal-table-card__invite strong {
  color: #fff;
  font-size: 13px;
  font-weight: 850;
}

.deal-table-card__invite input {
  min-width: 0;
  border: 1px solid #2b2b2b;
  border-radius: 8px;
  background: #0e0e0e;
  color: rgba(255, 255, 255, 0.72);
  padding: 9px 10px;
  font-size: 12px;
  font-weight: 700;
}

.deal-table-card__invite button {
  min-height: 35px;
  border-radius: 8px;
  background: #242424;
  color: var(--accent);
  cursor: pointer;
  font-weight: 850;
}

.deal-table-card__footer {
  padding: 12px 16px;
}

.deal-table-card__footer button {
  background: transparent;
  color: var(--accent);
  cursor: pointer;
  font-weight: 800;
}

.deal-builder--official,
.detail-shell--official {
  box-shadow: none;
}

.deal-builder__scroll,
.detail-scroll {
  min-height: 0;
  flex: 1;
  overflow-y: auto;
  scrollbar-color: var(--accent) #111;
  scrollbar-width: thin;
}

.deal-builder__scroll::-webkit-scrollbar,
.detail-scroll::-webkit-scrollbar {
  width: 8px;
}

.deal-builder__scroll::-webkit-scrollbar-track,
.detail-scroll::-webkit-scrollbar-track {
  background: #111;
}

.deal-builder__scroll::-webkit-scrollbar-thumb,
.detail-scroll::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: var(--accent);
}

.field-block--coin {
  min-height: 0;
  padding: 58px clamp(28px, 5vw, 84px) 36px;
  overflow: hidden;
}

.field-block--coin > label {
  color: #fff;
  font-size: 22px;
  font-weight: 800;
}

.field-block--coin p {
  margin-top: 10px;
  font-size: 15px;
}

.field-block--coin .coin-search {
  display: none;
}

.coin-grid {
  max-width: 860px;
  max-height: min(470px, calc(100vh - 430px));
  margin: 34px auto 0;
  grid-template-columns: repeat(4, minmax(116px, 1fr));
  gap: 42px 48px;
  overflow-y: auto;
  padding: 0 8px 2px 0;
}

.coin-card {
  min-height: 150px;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  border-color: transparent;
  background: transparent;
  padding: 16px 12px;
  text-align: center;
}

.coin-card:hover,
.coin-card--selected {
  border-color: transparent;
  background: #222;
}

.coin-card .coin-card__icon {
  width: 72px;
  height: 72px;
  border-radius: 20px;
}

.coin-card__label {
  margin: 0;
  color: #fff;
}

.coin-card__label strong {
  font-size: 14px;
}

.coin-card__label small {
  display: block;
  margin-top: 4px;
  color: var(--subtle);
  font-size: 12px;
  font-weight: 800;
}

.coin-card:last-child:nth-child(4n + 1) {
  grid-column: 2;
}

.builder-footer--official {
  justify-content: flex-end;
  min-height: 78px;
  background: #141414;
}

.builder-footer--official .primary-button,
.detail-footer--official .primary-button {
  min-width: 112px;
}

.detail-top--official {
  align-items: center;
  min-height: 65px;
  padding: 14px 22px;
}

.deal-heading {
  display: flex;
  min-width: 0;
  align-items: baseline;
  gap: 8px;
  color: var(--subtle);
  font-size: 13px;
  font-weight: 800;
}

.deal-heading strong {
  overflow: hidden;
  color: #fff;
  font-size: 17px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.official-step {
  min-height: 100%;
  padding: 30px 32px;
}

.official-step h2 {
  margin: 0;
  color: #fff;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.2;
}

.official-step p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 650;
  line-height: 1.45;
}

.official-step--user {
  max-width: 680px;
  margin: 44px auto 0;
}

.official-search-row {
  display: grid;
  margin-top: 32px;
  grid-template-columns: minmax(0, 1fr) 132px;
  gap: 12px;
}

.official-search-row .primary-button {
  min-height: 43px;
  font-size: 15px;
}

.selected-user-card {
  display: flex;
  width: min(100%, 626px);
  align-items: center;
  gap: 14px;
  border: 1px solid #2b2b2b;
  border-radius: 8px;
  background: #1a1a1a;
  margin: 30px auto 0;
  padding: 16px 18px;
}

.selected-user-card span,
.selected-user-card small {
  display: block;
  color: var(--subtle);
  font-size: 12px;
  font-weight: 750;
}

.selected-user-card strong {
  display: block;
  margin-top: 2px;
  color: #fff;
  font-size: 15px;
}

.deal-invite-card {
  display: grid;
  width: min(100%, 626px);
  gap: 14px;
  margin: 18px auto 0;
  border: 1px solid #2b2b2b;
  border-radius: 8px;
  background: #1a1a1a;
  padding: 16px 18px;
}

.deal-invite-card strong,
.deal-invite-card span {
  display: block;
}

.deal-invite-card strong {
  color: #fff;
  font-size: 15px;
}

.deal-invite-card span {
  margin-top: 4px;
  color: var(--subtle);
  font-size: 13px;
  font-weight: 750;
}

.deal-invite-input {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.deal-invite-input input {
  min-width: 0;
  border: 1px solid #2b2b2b;
  border-radius: 8px;
  background: #111;
  color: rgba(255, 255, 255, 0.78);
  padding: 0 13px;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
}

.search-results--official {
  width: min(100%, 626px);
  max-height: 300px;
  margin: 16px auto 0;
  overflow-y: auto;
}

.search-results--official .search-result {
  border-color: #232323;
  background: #1d1d1d;
  padding: 14px 16px;
}

.search-results--official .search-result--selected {
  border-color: transparent;
  background: #222;
  box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.025);
}

.result-check {
  display: inline-flex;
  width: 23px;
  height: 23px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--accent);
  color: #071006;
  cursor: pointer;
  font-size: 13px;
  font-weight: 900;
}

.result-check--muted {
  opacity: 0.72;
}

.search-state--compact {
  width: min(100%, 626px);
  margin-left: auto;
  margin-right: auto;
}

.deal-category-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.deal-category {
  min-height: 41px;
  border: 1px solid #333;
  border-radius: 8px;
  background: #181818;
  color: rgba(255, 255, 255, 0.78);
  cursor: pointer;
  padding: 0 16px;
  font-size: 14px;
  font-weight: 800;
}

.deal-category--active {
  border-color: var(--accent);
  background: rgba(136, 255, 106, 0.12);
  color: #fff;
}

.deal-category:disabled {
  cursor: not-allowed;
  opacity: 0.58;
}

.deal-description-label {
  display: block;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  font-weight: 750;
}

.deal-description {
  display: block;
  width: 100%;
  min-height: 150px;
  margin-top: 8px;
  resize: vertical;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 8px;
  outline: 0;
  background: #202020;
  color: #fff;
  padding: 14px;
  font-size: 15px;
  line-height: 1.45;
}

.deal-description:focus {
  border-color: #fff;
}

.confirm-button {
  display: flex;
  min-width: 120px;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(136, 255, 106, 0.65);
  border-radius: 12px;
  background: #f5f5f5;
  box-shadow: 0 0 22px rgba(136, 255, 106, 0.38);
  color: #202020;
  cursor: pointer;
  margin: 36px auto 0;
  padding: 0 24px;
  font-weight: 850;
}

.confirm-button--done {
  background: var(--accent);
  color: #071006;
}

.confirm-button:disabled {
  cursor: not-allowed;
  box-shadow: none;
  opacity: 0.6;
}

.official-step--roles,
.official-step--amount,
.official-step--fee {
  position: relative;
}

.role-grid {
  position: relative;
  display: grid;
  max-width: 650px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 52px;
  margin: 40px auto 0;
}

.role-grid::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: #222;
  content: "";
}

.role-party {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 28px;
}

.role-card {
  display: grid;
  width: 170px;
  min-height: 158px;
  place-items: center;
  border-radius: 8px;
  background: #1b1b1b;
  padding: 18px;
}

.role-avatar {
  width: 78px;
  height: 78px;
  border-radius: 999px;
  object-fit: cover;
}

.role-card strong {
  margin-top: 12px;
  color: #fff;
  font-size: 18px;
}

.role-choice-row {
  display: flex;
  gap: 12px;
}

.role-choice {
  min-width: 120px;
  min-height: 42px;
  border-radius: 8px;
  background: #777;
  color: #111;
  cursor: pointer;
  padding: 0 14px;
  font-weight: 850;
}

.role-choice--active {
  background: var(--accent);
  color: #071006;
}

.role-choice-row--locked .role-choice {
  cursor: default;
  opacity: 0.55;
}

.role-choice-row--locked .role-choice--active {
  opacity: 0.75;
}

.step-hint,
.step-top-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 14px;
  font-weight: 800;
}

.step-top-note {
  position: absolute;
  top: 34px;
  right: 36px;
  margin: 0;
}

.amount-stage {
  width: min(100%, 620px);
  margin: 50px auto 0;
}

.amount-title,
.amount-stage h3 {
  display: block;
  margin: 0 0 12px;
  color: #fff;
  font-size: 21px;
  font-weight: 850;
}

.amount-stage h3 {
  margin-top: 34px;
  color: rgba(255, 255, 255, 0.56);
}

.amount-confirm-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 132px;
  gap: 12px;
}

.amount-input-wrap--official {
  min-height: 44px;
  background: #1b1b1b;
}

.amount-input-wrap--muted {
  opacity: 0.62;
}

.fee-card {
  width: min(100%, 610px);
  margin: 46px auto 0;
  border-radius: 8px;
  background: #181818;
  padding: 32px 36px;
}

.fee-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}

.fee-card h3 {
  margin: 0;
  font-size: 22px;
}

.fee-card__head span {
  color: rgba(255, 255, 255, 0.55);
  font-weight: 800;
}

.fee-card__head strong {
  color: var(--accent);
}

.fee-options {
  display: grid;
  border-top: 1px solid #2a2a2a;
}

.fee-option-head {
  display: grid;
  min-height: 34px;
  grid-template-columns: minmax(0, 1fr) 42px 42px;
  align-items: center;
  color: rgba(255, 255, 255, 0.48);
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.fee-option {
  display: grid;
  min-height: 82px;
  grid-template-columns: minmax(0, 1fr) 42px 42px;
  align-items: center;
  gap: 18px;
  border-bottom: 1px solid #2a2a2a;
  background: transparent;
  color: rgba(255, 255, 255, 0.78);
  cursor: pointer;
  padding: 16px 0;
  text-align: left;
}

.fee-option strong,
.fee-option small {
  display: block;
}

.fee-option strong {
  color: #fff;
  font-size: 15px;
}

.fee-option small {
  margin-top: 6px;
  color: var(--subtle);
  font-size: 14px;
}

.fee-dot {
  display: inline-flex;
  width: 23px;
  height: 23px;
  place-self: center;
  border-radius: 999px;
  background: #444;
}

.fee-dot--muted {
  opacity: 0.32;
}

.fee-option .result-check {
  place-self: center;
}

.detail-footer--official {
  display: grid;
  min-height: 84px;
  grid-template-columns: minmax(110px, auto) minmax(0, 1fr) minmax(110px, auto);
  align-items: center;
  gap: 16px;
  border-top: 1px solid #202020;
  background: #141414;
  padding: 16px 32px;
}

.footer-note,
.confirm-status {
  color: rgba(255, 255, 255, 0.54);
  font-size: 14px;
  font-weight: 750;
  text-align: center;
}

.confirm-status small {
  display: block;
  margin-top: 6px;
}

.dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 6px;
  border-radius: 999px;
  background: #555;
  vertical-align: -1px;
}

.dot--ok {
  background: var(--accent);
}

.scam-warning {
  border: 1px solid rgba(255, 92, 92, 0.28);
  border-radius: 8px;
  background: rgba(255, 74, 74, 0.12);
  color: #ff7373;
  margin-bottom: 18px;
  padding: 14px 16px;
  font-size: 14px;
  font-weight: 850;
}

.deposit-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.exchange-rate {
  display: grid;
  min-width: 250px;
  align-content: start;
  justify-items: end;
  gap: 6px;
  color: var(--subtle);
  font-size: 14px;
  font-weight: 750;
}

.exchange-rate strong {
  color: #fff;
  font-size: 15px;
}

.deposit-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.9fr);
  gap: 24px;
  margin-top: 34px;
}

.deposit-card,
.payment-release-card,
.payment-received-card,
.deposit-status-row {
  border: 1px solid #222;
  border-radius: 8px;
  background: #181818;
}

.deposit-card {
  padding: 24px;
}

.deposit-card h3,
.payment-release-card h3,
.payment-received-card h3 {
  margin: 0 0 18px;
  color: #fff;
  font-size: 17px;
}

.summary-mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.summary-mini-grid label {
  display: grid;
  gap: 7px;
  color: var(--subtle);
  font-size: 13px;
  font-weight: 750;
}

.summary-mini-grid strong {
  display: flex;
  min-height: 32px;
  align-items: center;
  gap: 8px;
  border-radius: 5px;
  background: #292929;
  color: #fff;
  padding: 6px 10px;
  font-size: 14px;
}

.summary-mini-grid img {
  width: 18px;
  height: 18px;
  border-radius: 4px;
}

.summary-mini-grid small {
  margin-left: auto;
  color: var(--subtle);
}

.summary-mini-grid__wide {
  grid-column: 1 / -1;
}

.deposit-card--address {
  display: grid;
  justify-items: center;
  gap: 14px;
}

.deposit-card--address p {
  margin: -8px 0 0;
  max-width: 380px;
  text-align: center;
}

.deposit-card--address label {
  justify-self: start;
  color: var(--subtle);
  font-size: 13px;
  font-weight: 800;
}

.copy-dot {
  width: 10px;
  height: 10px;
  border-radius: 3px;
  background: #555;
  cursor: pointer;
  vertical-align: 0;
}

.qr-box {
  display: grid;
  width: 136px;
  height: 136px;
  place-items: center;
  border: 8px solid #fff;
  background:
    linear-gradient(90deg, #000 12px, transparent 12px) 0 0 / 24px 24px,
    linear-gradient(#000 12px, transparent 12px) 0 0 / 24px 24px,
    #fff;
}

.qr-box span {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: #111;
}

.deposit-card code {
  max-width: 100%;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.deposit-card code small {
  color: var(--subtle);
}

.deposit-status-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 18px;
  margin-top: 28px;
  padding: 24px 28px;
}

.deposit-status-row > span {
  color: var(--subtle);
  font-weight: 750;
}

.deposit-status-row strong {
  color: #fff;
}

.payment-release-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 196px;
  align-items: center;
  gap: 22px;
  margin-top: 34px;
  padding: 24px 26px;
}

.payment-release-card p {
  line-height: 1.55;
}

.release-button {
  min-height: 44px;
  font-size: 15px;
}

.payment-received-card {
  margin-top: 34px;
  padding: 24px 26px;
}

.payment-received-card p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.payment-received-card span {
  display: inline-block;
  width: 66px;
  color: var(--subtle);
}

.payment-received-card a {
  color: var(--accent);
  font-weight: 850;
}

.released-banner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 190px;
  align-items: center;
  gap: 20px;
  margin-top: 34px;
  border: 1px solid rgba(136, 255, 106, 0.12);
  border-radius: 8px;
  background: rgba(136, 255, 106, 0.08);
  padding: 28px;
}

.released-banner h3 {
  margin: 0 0 8px;
  color: #fff;
}

.released-banner p {
  margin: 0;
  color: var(--subtle);
}

.thanks-card h3 {
  display: flex;
  align-items: center;
  gap: 16px;
}

.modal-scrim {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.78);
}

.release-modal {
  width: min(480px, calc(100% - 32px));
  border: 1px solid #2d2d2d;
  border-radius: 12px;
  background: #191919;
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.62);
  padding: 28px;
}

.release-modal h3 {
  margin: 0 0 18px;
  font-size: 20px;
}

.modal-check {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  align-items: start;
  gap: 12px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
  line-height: 1.45;
}

.modal-check input {
  width: 18px;
  height: 18px;
  accent-color: var(--accent);
}

.modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 26px;
}

.deal-table-card--chat {
  background: #101010;
}

.deal-table-card--chat .chat-top {
  justify-content: flex-start;
  min-height: 65px;
}

.chat-back {
  width: 25px;
  height: 25px;
  background: #222;
}

.deal-table-card--chat .chat-messages {
  min-height: 0;
  flex: 1;
  align-items: stretch;
}

.timeline-line {
  align-self: center;
  max-width: 78%;
  color: rgba(255, 255, 255, 0.32);
  font-size: 13px;
  font-weight: 750;
  line-height: 1.35;
  text-align: center;
}

.timeline-line--green {
  color: var(--accent);
}

.chat-form--official {
  grid-template-columns: 34px minmax(0, 1fr) 44px;
  border-top-color: #262626;
  background: #242424;
}

.chat-form--official input {
  background: #2b2b2b;
}

.chat-form--official .chat-upload {
  background: transparent;
  color: rgba(255, 255, 255, 0.65);
  font-size: 24px;
}

.chat-form--official .chat-send {
  width: 44px;
  border-radius: 10px;
  background: #4f9b40;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 18px var(--page-pad);
  color: rgba(255, 255, 255, 0.48);
  font-size: 14px;
  font-weight: 600;
}

.footer nav {
  display: flex;
  gap: 22px;
}

.footer a:hover {
  color: #fff;
}

.toast-region {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 20;
  display: grid;
  width: min(360px, calc(100vw - 32px));
  gap: 10px;
}

.toast {
  border: 1px solid #252525;
  border-left: 4px solid var(--accent);
  border-radius: 8px;
  background: #141414;
  box-shadow: var(--shadow);
  color: #fff;
  padding: 12px 14px;
  font-size: 13px;
  font-weight: 700;
}

@media (max-width: 1180px) {
  .kpi-grid,
  .deal-list-grid,
  .detail-body {
    grid-template-columns: 1fr;
  }

  .support-card {
    min-height: 112px;
  }

  .table-wrap {
    min-height: 300px;
  }

  .chat-card {
    min-height: 420px;
  }
}

@media (max-width: 820px) {
  body {
    overflow: auto;
  }

  .app-shell {
    min-height: auto;
  }

  .nav__inner {
    min-height: 68px;
    gap: 14px;
  }

  .nav__links,
  .nav__actions {
    display: none;
  }

  .nav__menu {
    display: inline-flex;
  }

  .scroll-area {
    overflow: visible;
  }

  .main {
    padding-top: 28px;
  }

  .workspace {
    padding-top: 40px;
  }

  .workspace__top,
  .panel__header,
  .builder-footer,
  .footer,
  .detail-top {
    align-items: stretch;
    flex-direction: column;
  }

  .tabs,
  .search-box {
    width: 100%;
  }

  .tabs {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
  }

  .tab {
    min-width: 0;
    padding: 0 8px;
    white-space: normal;
  }

  .coin-grid {
    grid-template-columns: 1fr;
  }

  .user-search-row,
  .amount-box,
  .amount-confirm-row,
  .deposit-grid,
  .deposit-status-row,
  .payment-release-card,
  .released-banner {
    grid-template-columns: 1fr;
  }

  .role-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .role-grid::before {
    display: none;
  }

  .step-top-note {
    position: static;
    justify-content: flex-start;
    margin-bottom: 18px;
  }

  .fee-card {
    padding: 22px;
  }

  .modal-actions {
    flex-wrap: wrap;
  }

  th:nth-child(3),
  td:nth-child(3) {
    display: none;
  }

  .announcement {
    padding-left: 16px;
    padding-right: 46px;
  }

  .announcement__close {
    right: 10px;
  }
}

@media (max-width: 560px) {
  .hero__bars {
    grid-template-columns: repeat(8, minmax(54px, 1fr));
  }

  .kpi-card,
  .support-card,
  .step-card,
  .field-block,
  .detail-body {
    padding: 16px;
  }

  th,
  td {
    padding: 12px 10px;
  }

  th:nth-child(4),
  td:nth-child(4) {
    display: none;
  }

  .deal-id {
    max-width: 100%;
  }

  .coin-grid {
    max-height: 330px;
  }
}
