/* Check AMT Deposit — transaction lookup */

.chk-page {
  max-width: none;
  width: 100%;
}

.chk-intro {
  margin-bottom: 1.1rem;
}

.chk-crumb {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 0.65rem;
  font-size: 0.78rem;
  color: var(--muted);
}

.chk-crumb a:hover { color: var(--brand); }

.chk-crumb i,
.chk-crumb svg {
  width: 13px !important;
  height: 13px !important;
  opacity: 0.5;
}

.chk-crumb strong {
  color: var(--ink-soft);
  font-weight: 600;
}

.chk-intro__row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.chk-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 0.4rem;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid color-mix(in srgb, var(--brand) 20%, #fff);
}

.chk-kicker i,
.chk-kicker svg {
  width: 13px !important;
  height: 13px !important;
}

.chk-intro .page-title {
  margin: 0 0 0.25rem;
  font-size: clamp(1.4rem, 2.2vw, 1.85rem);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.chk-intro p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.chk-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.6rem 0.95rem;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.84rem;
  font-weight: 600;
  box-shadow: 0 6px 16px rgba(17, 24, 39, 0.04);
  transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.chk-link:hover {
  color: var(--brand);
  border-color: color-mix(in srgb, var(--brand) 30%, var(--line));
  transform: translateY(-1px);
}

.chk-link i,
.chk-link svg {
  width: 15px !important;
  height: 15px !important;
  color: var(--brand);
}

.chk-card {
  padding: 1.35rem 1.3rem 1.4rem;
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 16px 40px rgba(17, 24, 39, 0.06);
}

.chk-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.2rem;
  padding-bottom: 1rem;
  border-bottom: 1px dashed var(--line);
}

.chk-card__head h2 {
  margin: 0 0 0.25rem;
  font-family: "Syne", sans-serif !important;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.chk-card__head p {
  margin: 0;
  font-size: 0.86rem;
  color: var(--muted);
}

.chk-net {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand-deep);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border: 1px solid color-mix(in srgb, var(--brand) 18%, #fff);
  flex-shrink: 0;
}

.chk-net i,
.chk-net svg {
  width: 13px !important;
  height: 13px !important;
}

.chk-field label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--ink-soft);
}

.chk-input {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 54px;
  padding: 0.2rem 0.45rem 0.2rem 0.9rem;
  border-radius: 14px;
  border: 1px solid #e5e7eb;
  background: #f9fafb;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.chk-input:focus-within {
  background: #fff;
  border-color: color-mix(in srgb, var(--brand) 50%, #e5e7eb);
  box-shadow: 0 0 0 4px rgba(0, 166, 126, 0.1);
}

.chk-input__lead {
  width: 16px !important;
  height: 16px !important;
  color: #9ca3af;
  flex-shrink: 0;
}

.chk-input:focus-within .chk-input__lead {
  color: var(--brand);
}

.chk-input input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink);
  font-family: "Poppins", sans-serif !important;
  letter-spacing: 0.01em;
}

.chk-input input::placeholder {
  color: #9ca3af;
  font-weight: 500;
}

.chk-paste {
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 10px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--muted);
  display: grid;
  place-items: center;
  cursor: pointer;
  flex-shrink: 0;
}

.chk-paste:hover {
  color: var(--brand);
  border-color: color-mix(in srgb, var(--brand) 30%, var(--line));
}

.chk-paste i,
.chk-paste svg {
  width: 15px !important;
  height: 15px !important;
}

.chk-submit {
  width: 100%;
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 52px;
  border: 0;
  border-radius: 14px;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  background: linear-gradient(135deg, var(--brand-mid), var(--brand-deep));
  box-shadow: 0 12px 26px rgba(0, 166, 126, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.chk-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 32px rgba(0, 166, 126, 0.34);
}

.chk-submit i,
.chk-submit svg {
  width: 17px !important;
  height: 17px !important;
}

.chk-result {
  margin-top: 1.2rem;
  padding: 1rem 1.05rem;
  border-radius: 14px;
  background: linear-gradient(180deg, #e8f8f2, #f9fafb);
  border: 1px solid color-mix(in srgb, var(--brand) 22%, var(--line));
}

.chk-result__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.9rem;
}

.chk-status {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: #fff;
  color: var(--brand-deep);
  font-size: 0.78rem;
  font-weight: 700;
  border: 1px solid color-mix(in srgb, var(--brand) 20%, #fff);
}

.chk-status i,
.chk-status svg {
  width: 14px !important;
  height: 14px !important;
  color: var(--brand);
}

.chk-status.is-pending {
  color: #b8954f;
  border-color: #fde68a;
}

.chk-status.is-pending i,
.chk-status.is-pending svg {
  color: #d97706;
}

.chk-result__top small {
  font-size: 0.76rem;
  color: var(--muted);
}

.chk-result__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.7rem;
}

.chk-result__grid > div {
  padding: 0.7rem 0.8rem;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--line);
}

.chk-result__grid small {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.2rem;
}

.chk-result__grid strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
  word-break: break-all;
  line-height: 1.35;
}

@media (max-width: 575.98px) {
  .chk-result__grid {
    grid-template-columns: 1fr;
  }
}
