/*
 * Transparency — layout measured from phoenixgoldnetwork.org/transparency at
 * 1440. Framer's version showed template placeholder numbers and partners;
 * here the cards are filled from the chain by assets/js/transparency.js.
 * (Framer's tablet/phone layout overflowed the screen, so those stack.)
 */
.t-wrap {
  max-width: 1150px;
  margin: 80px auto 0;
  padding: 0 20px;
}
.t-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
}
.t-tabs button {
  width: 250px;
  height: 60px;
  border: 0;
  border-radius: 15px;
  background: #1c1c1c;
  color: #ffffff;
  font-size: 16px;
  line-height: 19.2px;
  cursor: pointer;
  transition:
    background 0.25s,
    color 0.25s;
}
.t-tabs button[aria-selected='true'] {
  background: #ffffff;
  color: var(--bg);
  border-radius: 12px;
}
.t-cards {
  display: grid;
  grid-template-columns: repeat(2, 557px);
  justify-content: center;
  gap: 18px;
  margin-top: 68px;
}
.t-card,
.t-soon {
  min-height: 290px;
  padding: 30px 30px 0;
  border-radius: 20px;
  --bd: #333333;
}
.t-card h2,
.t-soon h2 {
  font-size: 30px;
  line-height: 42px;
  font-weight: 800;
  text-align: center;
}
.t-value {
  margin-top: 25px;
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 17px;
}
.t-value b {
  font-size: 34px;
  line-height: 40.8px;
  font-weight: 300;
  font-variant-numeric: tabular-nums;
}
.t-value span {
  font-size: 16px;
  line-height: 22.4px;
  font-weight: 500;
  opacity: 0.6;
}
.t-card ul {
  list-style: none;
  margin: 49px 0 0;
  padding: 0;
  display: grid;
  gap: 20px;
}
.t-card li {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 15px;
  line-height: 21px;
  font-weight: 500;
}
.t-card li svg {
  width: 16px;
  height: 26px;
  flex-shrink: 0;
}
.t-card li b {
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.t-soon {
  max-width: 1132px;
  margin: 68px auto 0;
  display: grid;
  align-content: center;
  gap: 14px;
  padding-bottom: 30px;
  text-align: center;
}
.t-soon p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  line-height: 26px;
}
.t-note {
  margin-top: 18px;
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
}

.t-list {
  max-width: 947px;
  margin: 72px auto 0;
  padding: 0 20px 260px;
}
.t-list > h2 {
  font-size: 30px;
  line-height: 33px;
  font-weight: 600;
  letter-spacing: -1px;
  text-align: center;
}
.t-items {
  max-width: 660px;
  margin: 60px auto 0;
}
.t-item {
  padding: 31px 0 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.t-item:first-child {
  padding-top: 0;
}
.t-item h3 {
  font-size: 18px;
  line-height: 23.4px;
  font-weight: 600;
  letter-spacing: -0.1px;
}
.t-item p {
  margin-top: 11px;
  max-width: 460px;
  font-size: 16px;
  line-height: 24px;
  opacity: 0.8;
}
.t-addr {
  display: inline-block;
  margin-top: 10px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 13px;
  color: var(--gold);
  word-break: break-all;
}
.t-addr:hover {
  text-decoration: underline;
}

@media (max-width: 1199px) {
  .t-cards {
    grid-template-columns: minmax(0, 557px);
  }
  .t-tabs button {
    width: auto;
    flex: 1;
    max-width: 250px;
  }
}
@media (max-width: 809px) {
  .t-wrap {
    margin-top: 40px;
  }
  .t-tabs {
    gap: 6px;
  }
  .t-tabs button {
    height: 48px;
    font-size: 14px;
  }
  .t-cards,
  .t-soon {
    margin-top: 40px;
  }
  .t-card {
    padding: 24px 20px 28px;
    min-height: 0;
  }
  .t-card h2,
  .t-soon h2 {
    font-size: 26px;
    line-height: 36px;
  }
  .t-card ul {
    margin-top: 30px;
  }
  .t-list > h2 {
    font-size: 22px;
    line-height: 28px;
  }
  .t-list {
    padding-bottom: 140px;
  }
}
