.fd-page-banner {
  background:
    radial-gradient(circle at top left, rgba(25, 215, 195, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(16, 24, 35, 0.96), rgba(9, 16, 23, 0.96));
  border-bottom: 1px solid var(--border-strong);
}

.fd-page-banner .inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: var(--space-8) 24px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: var(--space-6);
  align-items: stretch;
}

.fd-page-banner__copy,
.fd-page-banner__card {
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow-md);
}

.fd-page-banner__copy {
  padding: var(--space-8);
}

.fd-page-kicker {
  display: inline-flex;
  margin-bottom: var(--space-4);
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(25, 215, 195, 0.08);
  color: var(--accent);
  letter-spacing: 0.18em;
}

.fd-page-banner__copy .subtitle_1 {
  margin-bottom: var(--space-4);
}

.fd-page-banner__desc {
  max-width: 680px;
  color: var(--text-secondary);
  line-height: 1.8;
}

.fd-page-banner__card {
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  justify-content: space-between;
}

.fd-page-banner__meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-4);
}

.fd-page-banner__meta li {
  padding: var(--space-4);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.fd-page-banner__meta .label {
  display: block;
  margin-bottom: 6px;
  color: var(--text-tertiary);
}

.fd-page-banner__meta strong {
  color: var(--text-primary);
}

.fd-ops-page .inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: var(--space-8) 24px var(--space-12);
}

.fd-ops-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) 320px;
  gap: var(--space-6);
  align-items: start;
}

.fd-ops-main {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.fd-ops-side {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  position: sticky;
  top: 108px;
}

.fd-section-card,
.fd-panel {
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(17, 26, 35, 0.96), rgba(11, 18, 27, 0.96));
  box-shadow: var(--shadow-md);
}

.fd-section-card {
  padding: var(--space-6);
}

.fd-panel {
  padding: var(--space-5);
}

.fd-stage-card {
  position: relative;
  overflow: hidden;
}

.fd-stage-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(25, 215, 195, 0.22), rgba(88, 166, 255, 0.04));
}

.fd-section-title {
  margin-bottom: var(--space-4);
}

.fd-stage-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-4);
  margin-bottom: var(--space-5);
}

.fd-stage-head--stacked {
  flex-direction: column;
  align-items: flex-start;
}

.fd-stage-head > div {
  min-width: 0;
}

.fd-stage-head h3 {
  margin-bottom: 8px;
}

.fd-stage-head p:last-child {
  max-width: 360px;
  color: var(--text-secondary);
  line-height: 1.75;
}

.fd-stage-head--stacked .fd-stage-head__desc,
.fd-stage-head--stacked p:last-child {
  max-width: 780px;
}

.fd-stage-head__eyebrow {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(25, 215, 195, 0.08);
  color: var(--accent);
  letter-spacing: 0.18em;
  font-size: 12px;
}

.fd-note-list,
.fd-panel-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fd-note-list p,
.fd-panel-list li,
.fd-panel p {
  color: var(--text-secondary);
  line-height: 1.75;
}

.fd-note-list span {
  margin-right: 8px;
  color: var(--accent);
}

.fd-panel .label {
  display: inline-flex;
  margin-bottom: var(--space-3);
  color: var(--accent);
  letter-spacing: 0.16em;
}

.fd-panel h3 {
  margin-bottom: var(--space-3);
  color: var(--text-primary);
}

.fd-panel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-3);
}

.fd-panel-grid li {
  padding: var(--space-4);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.fd-panel-grid .value {
  display: block;
  margin-top: 6px;
  color: var(--text-primary);
}

.fd-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-3);
}

.fd-stat-grid li {
  padding: var(--space-4);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.03);
}

.fd-stat-grid .label {
  display: block;
  margin-bottom: 6px;
  color: var(--text-tertiary);
}

.fd-stat-grid .value {
  color: var(--text-primary);
}

.fd-inline-code {
  word-break: break-all;
  font-family: "Roboto Mono", monospace;
  color: var(--text-primary);
}

.fd-action-stack {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
}

.fd-form-grid-2,
.fd-form-grid-1,
.fd-form-grid-token {
  display: grid;
  gap: var(--space-5);
}

.fd-form-grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.fd-form-grid-1 {
  grid-template-columns: minmax(0, 1fr);
}

.fd-form-grid-token {
  grid-template-columns: minmax(0, 1fr);
}

.fd-section-card h3.body_2,
.fd-section-card .subtitle_3 {
  color: var(--text-primary);
}

.fd-section-card .subtitle_3 {
  margin-bottom: var(--space-2);
}

.fd-section-card .select_box,
.fd-section-card .token_box {
  margin-top: 0;
}

.fd-section-card .select_box {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-5);
}

.fd-section-card .token_box {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-5);
}

.fd-token-summary {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(280px, 0.9fr);
  align-items: start;
}

.fd-section-card .box {
  width: 100%;
}

.fd-section-card .input_box,
.fd-section-card .upload_wrap,
.fd-section-card .token_box,
.fd-section-card .select_box {
  margin: 0;
}

.fd-section-card .input_box .box,
.fd-section-card .upload_wrap .box {
  display: grid;
  gap: var(--space-3);
  width: 100%;
}

.fd-input-stack {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.fd-section-card .select_wrap,
.fd-section-card input:not([type=checkbox]),
.fd-section-card .upload_label {
  min-height: var(--input-height);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
}

.fd-section-card input:not([type=checkbox]) {
  padding: 0 16px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-primary);
}

.fd-section-card input:not([type=checkbox])::placeholder {
  color: var(--text-tertiary);
}

.fd-section-card input[readonly] {
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-secondary);
}

.fd-section-card .select_list {
  position: relative;
}

.fd-section-card .select_wrap {
  border-color: var(--border-default);
}

.fd-section-card .select_wrap button {
  width: 100%;
  min-height: var(--input-height);
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: var(--text-primary);
}

.fd-section-card .select_wrap button img {
  width: 18px;
  height: 18px;
}

.fd-section-card .select_wrap.default button .select {
  color: var(--text-tertiary);
}

.fd-section-card .select_wrap.on {
  border-color: var(--border-strong);
  box-shadow: 0 0 0 3px rgba(25, 215, 195, 0.10);
}

.fd-section-card .select_list > ul {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  z-index: 30;
  display: none;
  padding: 8px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-default);
  background: rgba(10, 16, 23, 0.98);
  box-shadow: var(--shadow-md);
}

.fd-section-card .select_list > ul.on {
  display: block;
}

.fd-section-card .select_list > ul li + li {
  margin-top: 4px;
}

.fd-section-card .select_list > ul button {
  width: 100%;
  min-height: 44px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 12px;
  color: var(--text-primary);
}

.fd-section-card .select_list > ul button:hover {
  background: rgba(255, 255, 255, 0.05);
}

.fd-favorite-row {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
  align-items: center;
}

.fd-favorite-row select {
  flex: 1;
  min-width: 280px;
  min-height: 52px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-default);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-primary);
  padding: 0 18px;
}

.fd-radio-group {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
}

.fd-radio-chip {
  min-width: 160px;
  padding: 14px 16px;
  display: flex;
  gap: 10px;
  align-items: center;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-default);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-primary);
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.fd-radio-chip input {
  accent-color: var(--accent);
}

.fd-radio-chip:hover {
  transform: translateY(-1px);
  border-color: rgba(25, 215, 195, 0.24);
}

.fd-radio-chip:has(input:checked) {
  border-color: rgba(25, 215, 195, 0.28);
  background: linear-gradient(135deg, rgba(25, 215, 195, 0.12), rgba(88, 166, 255, 0.10));
  box-shadow: inset 0 0 0 1px rgba(25, 215, 195, 0.08);
}

.fd-mode-inline-box {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.fd-inline-radio-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 12px 0 0;
}

.fd-inline-radio {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 22px;
  color: var(--text-secondary);
  cursor: pointer;
}

.fd-inline-radio input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.fd-inline-radio .indicator {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.02);
  position: relative;
  flex-shrink: 0;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.fd-inline-radio .indicator::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 999px;
  background: transparent;
  transition: background 0.2s ease;
}

.fd-inline-radio:hover .indicator {
  border-color: rgba(25, 215, 195, 0.42);
  transform: scale(1.03);
}

.fd-inline-radio:has(input:checked) {
  color: var(--text-primary);
}

.fd-inline-radio:has(input:checked) .indicator {
  border-color: rgba(25, 215, 195, 0.75);
  background: rgba(25, 215, 195, 0.12);
}

.fd-inline-radio:has(input:checked) .indicator::after {
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
}

.fd-upload-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  flex-wrap: wrap;
  margin-bottom: var(--space-4);
}

.fd-upload-actions {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
  align-items: center;
}

.fd-section-card .upload_wrap .upload_box {
  width: 100%;
  box-sizing: border-box;
}

.fd-section-card .upload_wrap .box > * {
  width: 100%;
  box-sizing: border-box;
}

.fd-section-card .upload_label {
  min-height: 220px;
  width: 100%;
  box-sizing: border-box;
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--text-secondary);
  background:
    radial-gradient(circle at top center, rgba(25, 215, 195, 0.08), transparent 38%),
    rgba(255, 255, 255, 0.03);
  border-style: dashed;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.fd-section-card .upload_wrap {
  width: 100%;
}

.fd-section-card .upload_label svg {
  opacity: 0.7;
}

.fd-section-card .upload_label:hover,
.fd-section-card .upload_label.move {
  transform: translateY(-1px);
  border-color: rgba(25, 215, 195, 0.36);
  background:
    radial-gradient(circle at top center, rgba(25, 215, 195, 0.12), transparent 38%),
    rgba(255, 255, 255, 0.05);
}

.fd-section-card .upload_label.on {
  border-color: rgba(25, 215, 195, 0.32);
  background:
    radial-gradient(circle at top center, rgba(25, 215, 195, 0.12), transparent 38%),
    rgba(25, 215, 195, 0.06);
}

.fd-check-upload {
  width: 100%;
}

.fd-check-upload__label {
  min-height: 168px !important;
}

.fd-cta-row,
.fd-section-card > .button_wrap {
  display: flex;
  justify-content: flex-end;
  margin-top: var(--space-2);
}

.fd-section-card .text_wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.fd-section-card .text_wrap p {
  color: var(--text-secondary);
  line-height: 1.75;
}

.fd-section-card .text_wrap .color_theme {
  color: var(--accent);
}

.fd-inline-help--compact {
  margin-top: var(--space-3);
}

.fd-section-card .table_wrap {
  border-radius: var(--radius-md);
  border: 1px solid var(--border-default);
  background: rgba(255, 255, 255, 0.02);
  overflow: hidden;
}

.fd-section-card .table th,
.fd-section-card .table td {
  color: var(--text-primary);
}

.fd-section-card .table tbody td {
  border-color: rgba(255, 255, 255, 0.06);
}

.fd-section-card .table tbody tr:nth-child(odd) {
  background: rgba(255, 255, 255, 0.02);
}

.fd-section-card .table td.payment_address,
.fd-section-card .table td.tx_hash {
  word-break: break-all;
}

.fd-section-card .table .fee_meta_row td {
  color: var(--text-secondary);
}

.fd-ops-page .button_112,
.fd-ops-page .button_160,
.fd-ops-page .button_180 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid var(--border-default);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-primary);
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.fd-ops-page .button_112:hover,
.fd-ops-page .button_160:hover,
.fd-ops-page .button_180:hover {
  transform: translateY(-1px);
  border-color: var(--border-strong);
}

.fd-ops-page .button_112.on,
.fd-ops-page .button_160.on,
.fd-ops-page .button_180.on,
.fd-ops-page .button_160.payment_btn:not(:disabled),
.fd-ops-page .button_112#check_upload_btn:not(:disabled) {
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #081019;
  border-color: transparent;
}

.fd-ops-page .button_112:disabled,
.fd-ops-page .button_160:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.fd-ops-page .modal .inner {
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(17, 26, 35, 0.98), rgba(8, 14, 22, 0.98));
  box-shadow: var(--shadow-md);
}

.fd-ops-page .airdrop_modal {
  max-width: 760px;
}

.fd-ops-page .airdrop_modal .info {
  gap: 16px;
  align-items: flex-start;
}

.fd-ops-page .airdrop_modal .info .body_2 {
  line-height: 1.8;
}

.fd-ops-page #InfoTable thead th:nth-of-type(1),
.fd-ops-page #InfoTable tbody td:nth-of-type(1) {
  width: 12%;
}

.fd-ops-page #InfoTable thead th:nth-of-type(2),
.fd-ops-page #InfoTable tbody td:nth-of-type(2) {
  width: 58%;
}

.fd-ops-page #InfoTable thead th:nth-of-type(3),
.fd-ops-page #InfoTable tbody td:nth-of-type(3) {
  width: 30%;
}

.fd-ops-page #InfoTable tbody td:nth-of-type(2) {
  word-break: break-all;
  font-family: "Roboto Mono", monospace;
  font-size: 13px;
}

.fd-ops-page #InfoTable tbody td:nth-of-type(3) {
  text-align: right;
  white-space: nowrap;
}

.fd-ops-page .issue_stat_card {
  border: 1px solid var(--border-default);
  background: rgba(255, 255, 255, 0.03);
}

.fd-ops-page .issue_stat_card .label {
  color: var(--text-tertiary);
}

.fd-ops-page .issue_stat_card strong {
  color: var(--text-primary);
}

.fd-ops-page .table_wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
}

.fd-ops-page .table thead th,
.fd-ops-page .table tbody td {
  color: var(--text-primary);
}

.fd-ops-page .table tbody td {
  border-color: rgba(255, 255, 255, 0.06);
}

.fd-ops-page .table tbody tr:nth-child(odd) {
  background: rgba(255, 255, 255, 0.02);
}

.fd-check-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.fd-check-setup-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-4);
  align-items: start;
}

.fd-check-setup-grid .box h3 {
  margin-bottom: 14px;
}

.fd-check-toggle-box {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.fd-check-form-copy {
  margin: 0;
  max-width: 760px;
  line-height: 1.85;
}

.fd-native-select,
.fd-file-input {
  width: 100%;
  min-height: 58px;
  padding: 0 18px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-primary);
}

.fd-file-input {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
}

.fd-file-picker {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: var(--space-3);
  align-items: center;
  min-height: 58px;
  padding: 12px 14px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.fd-file-picker__trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 104px;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(25, 215, 195, 0.24);
  background: linear-gradient(135deg, rgba(25, 215, 195, 0.18), rgba(88, 166, 255, 0.14));
  color: #081019;
  cursor: pointer;
}

.fd-file-picker__meta {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.fd-file-picker__meta strong,
.fd-file-picker__meta span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.fd-check-actions {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: var(--space-3);
  flex-wrap: wrap;
}

.fd-check-actions__group {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
}

.fd-check-toolbar {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-4);
  margin-bottom: 0;
  padding-top: var(--space-1);
}

.fd-check-toolbar__actions {
  justify-content: flex-start;
  width: 100%;
}

.fd-check-toggles {
  display: flex;
  gap: var(--space-6);
  flex-wrap: wrap;
  padding-top: 8px;
}

.fd-check-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text-secondary);
}

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

.fd-check-actions--compact .button_112,
.fd-check-actions--compact a.button_112 {
  min-width: 154px;
  min-height: 46px;
  padding: 0 18px;
  font-size: 14px;
  line-height: 1;
  align-self: center;
  flex: 0 0 auto;
}

.fd-check-actions--compact a.button_112 {
  text-align: center;
}

.fd-check-upload-wrap .fd-upload-head {
  align-items: flex-start;
  margin-bottom: var(--space-2);
}

.fd-check-upload-wrap .fd-upload-head > p {
  max-width: 640px;
  margin: 0;
}

.fd-check-upload-wrap .fd-check-actions {
  justify-content: flex-start;
}

.fd-check-upload-wrap .upload_box,
.fd-check-upload-wrap .upload_label {
  width: 100%;
  max-width: 100%;
}

.fd-check-upload-wrap .upload_box {
  min-height: 236px;
}

.fd-check-upload-wrap {
  margin-top: 0;
  padding: var(--space-4);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
  overflow: hidden;
}

.fd-check-upload-wrap .upload_label {
  min-height: 236px;
  padding: var(--space-5);
}

.fd-check-upload-wrap .box,
.fd-airdrop-upload-wrap .box {
  width: 100%;
  box-sizing: border-box;
}

.fd-airdrop-upload-wrap {
  padding: var(--space-4);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
  overflow: hidden;
}

.fd-airdrop-upload-wrap .fd-upload-head {
  margin-bottom: var(--space-4);
}

.fd-airdrop-upload-wrap .box,
.fd-airdrop-upload-box-row {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
}

.fd-airdrop-upload-wrap .upload_box,
.fd-airdrop-upload-box {
  display: block !important;
  min-height: 0;
  width: 100% !important;
  max-width: none !important;
  min-width: 0;
  flex: none !important;
}

.fd-airdrop-upload-wrap .upload_label,
.fd-airdrop-upload-label {
  min-height: 212px;
  padding: var(--space-5);
  width: 100% !important;
  max-width: none !important;
  min-width: 0;
}

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

.fd-ops-page #InfoTable {
  width: 100%;
  table-layout: fixed;
}

.fd-check-summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-3);
}

.fd-check-summary li {
  padding: var(--space-4);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.fd-check-summary .label {
  display: block;
  margin-bottom: 8px;
  color: var(--text-tertiary);
}

.fd-check-summary .value {
  color: var(--text-primary);
  font-size: 1.25rem;
}

.fd-check-highlight {
  border-color: rgba(25, 215, 195, 0.22) !important;
  background: rgba(25, 215, 195, 0.06) !important;
}

.fd-check-table-wrap {
  overflow: auto;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.fd-check-table {
  width: 100%;
  border-collapse: collapse;
}

.fd-check-table th,
.fd-check-table td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  text-align: left;
  color: var(--text-secondary);
  vertical-align: top;
  line-height: 1.6;
}

.fd-check-table th {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.04);
}

.fd-check-table tbody tr:last-child td {
  border-bottom: 0;
}

.fd-check-message {
  padding: var(--space-4);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-secondary);
}

.fd-check-message.is-error {
  border-color: rgba(255, 112, 112, 0.25);
  background: rgba(255, 112, 112, 0.08);
  color: #ffc0c0;
}

.fd-check-message.is-success {
  border-color: rgba(25, 215, 195, 0.22);
  background: rgba(25, 215, 195, 0.08);
}

.fd-check-empty {
  color: var(--text-tertiary);
  text-align: center;
  padding: var(--space-5);
}

@media screen and (max-width: 1180px) {
  .fd-page-banner .inner,
  .fd-ops-shell {
    grid-template-columns: minmax(0, 1fr);
  }

  .fd-ops-side {
    position: static;
  }
}

@media screen and (max-width: 860px) {
  .fd-page-banner .inner,
  .fd-ops-page .inner {
    padding-left: 16px;
    padding-right: 16px;
  }

  .fd-section-card,
  .fd-panel,
  .fd-page-banner__copy,
  .fd-page-banner__card {
    padding: var(--space-5);
  }

  .fd-section-card .select_box,
  .fd-section-card .token_box,
  .fd-form-grid-2,
  .fd-check-setup-grid,
  .fd-form-grid-token,
  .fd-stat-grid,
  .fd-check-summary,
  .fd-page-banner__meta,
  .fd-panel-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .fd-stage-head,
  .fd-check-actions,
  .fd-check-actions__group,
  .fd-file-picker {
    grid-template-columns: minmax(0, 1fr);
    display: grid;
  }

  .fd-stage-head {
    align-items: flex-start;
  }

  .fd-check-form-copy {
    max-width: none;
  }

  .fd-check-upload-wrap .fd-check-actions {
    justify-content: stretch;
  }

  .fd-check-toolbar {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
  }

  .fd-check-toolbar__actions {
    justify-content: stretch;
  }

  .fd-check-toolbar__actions .button_112,
  .fd-check-toolbar__actions a.button_112 {
    width: 100%;
    min-width: 0;
  }

  .fd-check-actions__group {
    width: 100%;
  }

  .fd-file-picker__trigger {
    width: 100%;
  }

  .fd-page-banner__copy .subtitle_1 {
    font-size: 34px;
  }
}
