/* ============================================================================
   M-F1 WALLET DASHBOARD — built to docs/design/mf/ mockups. Inherits the site
   dress tokens (threshold.css). Mobile-first; desktop adds the left sidebar.
   ========================================================================= */

.dash {
  --card-radius: 14px;
  --line: rgba(138, 111, 58, 0.34);
  --line-soft: rgba(138, 111, 58, 0.18);
  --panel: #12100b;
  --panel-2: #171309;
  --blue: #3d7fd6;
  --blue-deep: #14273d;
  --green: #4fae6b;
  --green-deep: #123322;
  --purple: #8b6fd0;
  --purple-deep: #241a3d;
  --ok: #6fcf7f;
  --bad: #e0664f;
  color: var(--parchment);
  background:
    radial-gradient(1200px 700px at 78% -8%, rgba(90, 66, 24, 0.22), transparent 60%),
    var(--stone-void);
  min-height: 100vh;
}

/* ---------- shell ---------- */
.dash-shell {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 1560px;
  margin: 0 auto;
  gap: 0;
}
@media (min-width: 1080px) {
  .dash-shell {
    grid-template-columns: 250px 1fr;
    gap: 18px;
    padding: 14px;
  }
}

/* ---------- sidebar ---------- */
.dash-side {
  display: none;
}
@media (min-width: 1080px) {
  .dash-side {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: sticky;
    top: 14px;
    height: fit-content;
  }
}
.side-logo {
  display: block;
  width: 100%;
  max-width: 220px;
  margin: 6px auto 4px;
}
.side-nav {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 8px;
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(24, 20, 12, 0.7), rgba(12, 10, 8, 0.6));
}
.side-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 13px;
  border-radius: 9px;
  color: var(--parchment);
  text-decoration: none;
  font-family: var(--text);
  font-size: 1.02rem;
  opacity: 0.82;
  transition: background var(--wake), opacity var(--wake);
}
.side-nav a svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  opacity: 0.9;
}
.side-nav a:hover {
  opacity: 1;
  background: rgba(138, 111, 58, 0.1);
}
.side-nav a.active {
  opacity: 1;
  color: var(--flame-core);
  background: linear-gradient(180deg, rgba(217, 168, 78, 0.16), rgba(217, 168, 78, 0.06));
  border: 1px solid rgba(217, 168, 78, 0.4);
}
.side-nav a.soon {
  opacity: 0.5;
}
.side-nav a.soon::after {
  content: "soon";
  margin-left: auto;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-aged);
  border: 1px solid var(--line-soft);
  border-radius: 6px;
  padding: 1px 6px;
}
.side-promo {
  border: 1px solid rgba(217, 168, 78, 0.34);
  border-radius: 12px;
  padding: 16px;
  text-align: center;
  background: linear-gradient(180deg, rgba(30, 24, 14, 0.8), rgba(14, 11, 8, 0.7));
}
.side-promo h4 {
  font-family: var(--display);
  color: var(--gold-burnished);
  letter-spacing: var(--track-display);
  margin: 0 0 8px;
  font-size: 1rem;
}
.side-promo p {
  margin: 0 0 12px;
  font-size: 0.86rem;
  opacity: 0.82;
  line-height: 1.5;
}
.side-crests {
  display: flex;
  justify-content: center;
  gap: 12px;
}
.side-crests img {
  width: 34px;
  height: 34px;
}
.side-social {
  display: flex;
  justify-content: center;
  gap: 16px;
  opacity: 0.7;
}
.side-social a {
  color: var(--gold-burnished);
}
.side-social svg {
  width: 20px;
  height: 20px;
}

/* ---------- main ---------- */
.dash-main {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 1080px) {
  .dash-main {
    padding: 0;
  }
}

.sec-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  letter-spacing: var(--track-display);
  color: var(--gold-burnished);
  font-size: 1.02rem;
  margin: 2px 0;
}
/* S-PROFILE-1 — the honest all-zero empty state; a subtle gold card, one guiding line to the Mint. */
.empty-mint {
  margin: 10px 0 4px;
  padding: 0.85rem 1.1rem;
  border: 1px solid var(--gold-aged);
  border-radius: 2px;
  background: linear-gradient(180deg, rgba(36, 30, 21, 0.4), rgba(11, 10, 8, 0.4));
  color: var(--gold-burnished);
  font-family: var(--text);
  font-size: 0.95rem;
  text-align: center;
}
.empty-mint a {
  color: var(--gold-burnished);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.empty-mint a:hover {
  color: var(--flame-core);
}
.sec-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
  background: linear-gradient(180deg, #2b6fb0, #17456f);
  color: #eaf2ff;
  font-family: var(--text);
  font-size: 0.86rem;
  font-weight: 600;
}

/* ---------- wallet bar ---------- */
.wallet-bar {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--card-radius);
  background:
    linear-gradient(90deg, rgba(12, 10, 8, 0.92) 42%, rgba(12, 10, 8, 0.45) 100%),
    url("../assets/brand/mf/header_citadel.jpg?v=mf1") right center / cover no-repeat,
    var(--panel);
  overflow: hidden;
}
.wallet-bar .wb-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  letter-spacing: var(--track-display);
  color: var(--gold-burnished);
}
.addr-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: rgba(0, 0, 0, 0.35);
  font-family: var(--text);
  font-size: 0.95rem;
}
.addr-chip .copy {
  cursor: pointer;
  opacity: 0.7;
  background: none;
  border: 0;
  color: var(--gold-burnished);
  padding: 0;
}
.addr-chip .copy:hover {
  opacity: 1;
}
.net-warn {
  color: var(--bad);
  font-size: 0.86rem;
  line-height: 1.25;
}
.net-warn b {
  display: block;
}
.net-warn .switch {
  color: var(--flame-core);
  cursor: pointer;
  text-decoration: underline;
  background: none;
  border: 0;
  padding: 0;
  font: inherit;
}
.net-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.35);
  font-size: 0.86rem;
}
.net-chip.ok {
  color: var(--ok);
}
.wb-spacer {
  flex: 1 1 auto;
}

/* ---------- buttons ---------- */
.btn-g {
  font-family: var(--text);
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.3);
  color: var(--parchment);
  border-radius: 9px;
  padding: 10px 16px;
  cursor: pointer;
  transition: background var(--wake), border-color var(--wake), opacity var(--wake);
  font-size: 0.95rem;
}
.btn-g:hover:not(:disabled) {
  border-color: var(--gold-burnished);
  background: rgba(217, 168, 78, 0.1);
}
.btn-g:disabled {
  opacity: 0.4;
  cursor: default;
}
.btn-p {
  border: 1px solid rgba(217, 168, 78, 0.6);
  background: linear-gradient(180deg, rgba(217, 168, 78, 0.24), rgba(180, 118, 43, 0.16));
  color: var(--flame-core);
  font-weight: 600;
}
.btn-purple {
  border-color: rgba(139, 111, 208, 0.6);
  background: linear-gradient(180deg, rgba(139, 111, 208, 0.3), rgba(70, 52, 120, 0.2));
  color: #d9ccff;
}
.btn-green {
  border-color: rgba(79, 174, 107, 0.6);
  background: linear-gradient(180deg, rgba(79, 174, 107, 0.28), rgba(18, 51, 34, 0.3));
  color: #cdeecf;
}
.btn-block {
  width: 100%;
  text-align: center;
}

/* ---------- balance cards ---------- */
.cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 560px) {
  .cards {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1240px) {
  .cards {
    grid-template-columns: repeat(4, 1fr);
  }
}
.bcard {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--card-radius);
  padding: 18px;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
  transition: opacity var(--wake);
}
@media (max-width: 559px) {
  .bcard {
    min-height: auto;
  }
}
.bcard.dim {
  opacity: 0.5;
}
.b-liquid {
  border-color: rgba(61, 127, 214, 0.4);
  background: linear-gradient(180deg, rgba(20, 39, 61, 0.6), rgba(10, 16, 24, 0.7));
}
.b-vesting {
  border-color: rgba(217, 168, 78, 0.42);
  background: linear-gradient(180deg, rgba(40, 30, 12, 0.6), rgba(16, 12, 7, 0.7));
}
.b-staked {
  border-color: rgba(79, 174, 107, 0.42);
  background: linear-gradient(180deg, rgba(18, 51, 34, 0.55), rgba(9, 18, 12, 0.7));
}
.b-rewards {
  border-color: rgba(139, 111, 208, 0.42);
  background: linear-gradient(180deg, rgba(36, 26, 61, 0.55), rgba(14, 10, 20, 0.7));
}
.bcard-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.bcard-icon {
  width: 62px;
  height: 62px;
  flex: 0 0 62px;
}
.bcard-title {
  font-family: var(--display);
  letter-spacing: 0.08em;
  font-size: 1.18rem;
  line-height: 1.1;
}
.b-liquid .bcard-title {
  color: #7fb4ff;
}
.b-vesting .bcard-title {
  color: var(--gold-burnished);
}
.b-staked .bcard-title {
  color: #7fd79a;
}
.b-rewards .bcard-title {
  color: #bda9ff;
}
.bcard-sub {
  font-size: 0.8rem;
  opacity: 0.72;
  margin-top: 3px;
}
.big-num {
  font-family: var(--display);
  font-size: 2.3rem;
  line-height: 1;
  color: #fff;
  margin: 6px 0 2px;
  word-break: break-word;
}
.big-num .u {
  font-size: 0.9rem;
  color: var(--gold-burnished);
  margin-left: 6px;
}
.stat-label {
  font-size: 0.78rem;
  opacity: 0.72;
}
.stat-line {
  margin: 8px 0 2px;
}
.stat-line .v {
  font-family: var(--display);
  font-size: 1.32rem;
  color: #fff;
}
.stat-line .u {
  font-size: 0.78rem;
  color: var(--gold-burnished);
  margin-left: 4px;
}
.bar {
  height: 9px;
  border-radius: 5px;
  background: rgba(0, 0, 0, 0.4);
  overflow: hidden;
  margin: 8px 0 4px;
  border: 1px solid var(--line-soft);
}
.bar > i {
  display: block;
  height: 100%;
  border-radius: 5px;
}
.b-vesting .bar > i {
  background: linear-gradient(90deg, #b4762b, var(--gold-burnished));
}
.b-staked .bar > i {
  background: linear-gradient(90deg, #1f5c46, #4fae6b);
}
.bar-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
}
.card-actions {
  margin-top: auto;
  display: flex;
  gap: 8px;
  padding-top: 12px;
}
.card-actions .btn-g {
  flex: 1;
}
.note {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.76rem;
  color: var(--gold-aged);
  margin-top: 10px;
}
.note.pre {
  color: var(--flame-halo);
}
.hair {
  height: 1px;
  background: var(--line-soft);
  margin: 12px 0;
}
.desk-status {
  font-size: 0.82rem;
  margin-top: 10px;
}
.desk-status .dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 6px;
}
.desk-status.funded .dot {
  background: var(--ok);
}
.desk-status.empty .dot {
  background: var(--bad);
}
.notlive {
  margin: auto 0;
  text-align: center;
  font-size: 0.9rem;
  color: var(--gold-aged);
  line-height: 1.5;
  padding: 20px 6px;
}
.notlive b {
  color: var(--gold-burnished);
  display: block;
  margin-bottom: 6px;
  font-family: var(--display);
  letter-spacing: 0.06em;
}

/* ---------- runway + panels row ---------- */
.mid-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 1080px) {
  .mid-row {
    grid-template-columns: 1fr 1fr;
  }
}
.panel-box {
  border: 1px solid var(--line);
  border-radius: var(--card-radius);
  padding: 18px;
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
}
.runway-body {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.runway-dial {
  width: 118px;
  height: 118px;
  flex: 0 0 118px;
  filter: drop-shadow(0 0 12px rgba(79, 174, 107, 0.25));
}
.runway-text {
  flex: 1;
  min-width: 160px;
}
.runway-days {
  font-family: var(--display);
  font-size: 2.1rem;
  color: var(--ok);
  line-height: 1;
  margin-top: 4px;
}
.runway-aside {
  font-size: 0.8rem;
  opacity: 0.7;
  line-height: 1.5;
  max-width: 150px;
}
.runway-foot {
  font-size: 0.72rem;
  color: var(--gold-aged);
  margin-top: 10px;
}

/* ---------- placeholder (M-F2/M-F3) ---------- */
.soon-panel {
  border: 1px dashed var(--line);
  border-radius: var(--card-radius);
  padding: 22px;
  text-align: center;
  color: var(--gold-aged);
  background: rgba(12, 10, 8, 0.5);
}
.soon-panel h3 {
  font-family: var(--display);
  color: var(--gold-burnished);
  letter-spacing: var(--track-display);
  margin: 0 0 6px;
}

/* ---------- transaction feed ---------- */
.txtable {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.txtable th {
  text-align: left;
  color: var(--gold-aged);
  font-family: var(--text);
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 8px 10px;
  border-bottom: 1px solid var(--line-soft);
  font-size: 0.8rem;
}
.txtable td {
  padding: 11px 10px;
  border-bottom: 1px solid var(--line-soft);
  vertical-align: middle;
}
.txtable .type {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.txtable .type .ic {
  width: 20px;
  height: 20px;
}
.tx-status {
  color: var(--ok);
}
.txlink {
  color: var(--blue);
  text-decoration: none;
}
.txlink:hover {
  text-decoration: underline;
}
.tx-wrap {
  overflow-x: auto;
}
.viewall {
  display: block;
  text-align: center;
  color: var(--blue);
  text-decoration: none;
  margin-top: 12px;
  font-size: 0.9rem;
}

/* ---------- M-F4 defect 1: minimum-purchase note ---------- */
.buy-min {
  color: var(--bad);
  font-size: 0.82rem;
  margin: 2px 0 8px;
  min-height: 1em;
}
.spinner {
  width: 40px;
  height: 40px;
  margin: 6px auto 12px;
  border: 3px solid rgba(217, 168, 78, 0.25);
  border-top-color: var(--gold-burnished);
  border-radius: 50%;
  animation: dashspin 0.9s linear infinite;
}
@keyframes dashspin {
  to {
    transform: rotate(360deg);
  }
}
.state-center {
  text-align: center;
}
.fail-msg {
  font-size: 0.86rem;
  line-height: 1.5;
  margin-bottom: 12px;
}

/* ---------- POL banner ---------- */
.pol-banner {
  display: none;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border: 1px solid rgba(217, 168, 78, 0.5);
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(50, 38, 14, 0.7), rgba(24, 18, 8, 0.6));
  color: var(--flame-core);
  font-size: 0.9rem;
  line-height: 1.45;
}
.pol-banner.show {
  display: flex;
}
.pol-banner a {
  color: var(--flame-halo);
}

/* ---------- pending / toast overlays ---------- */
.dash-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(4, 3, 2, 0.72);
  backdrop-filter: blur(3px);
}
.dash-overlay.show {
  display: flex;
}
.overlay-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 26px 30px;
  background: var(--panel);
  text-align: center;
  max-width: 420px;
  width: 90%;
}
.overlay-card h3 {
  font-family: var(--display);
  color: var(--gold-burnished);
  letter-spacing: var(--track-display);
  margin: 0 0 8px;
}
.overlay-card.fail {
  border-color: rgba(224, 102, 79, 0.6);
}
.overlay-card.fail h3 {
  color: var(--bad);
}
.overlay-actions {
  display: flex;
  gap: 10px;
  margin-top: 16px;
  justify-content: center;
}
.raw-line {
  font-size: 0.78rem;
  color: var(--gold-aged);
  margin-top: 6px;
  word-break: break-all;
}

/* ---------- footer ---------- */
.dash-foot {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  padding: 16px 4px 30px;
  color: var(--gold-aged);
  font-size: 0.86rem;
}
.dash-foot .lotus {
  color: var(--gold-burnished);
}
.dash-foot .foot-help {
  margin-left: auto;
  color: var(--gold-burnished);
  text-decoration: none;
}

/* ---------- mobile header (logo + citadel) ---------- */
.mob-head {
  position: relative;
  padding: 18px 14px;
  background:
    linear-gradient(90deg, rgba(10, 9, 7, 0.7), rgba(10, 9, 7, 0.2) 60%, transparent),
    url("../assets/brand/mf/header_citadel.jpg?v=mf1") center / cover no-repeat;
  border-bottom: 1px solid var(--line);
}
.mob-head img {
  max-width: 210px;
}
@media (min-width: 1080px) {
  .mob-head {
    display: none;
  }
}

/* ---------- BUY DYC (M-F2) ---------- */
.buy-round {
  display: inline-block;
  margin-left: 10px;
  padding: 3px 10px;
  border-radius: 14px;
  font-family: var(--text);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  vertical-align: middle;
}
.buy-round.presale { border: 1px solid rgba(61, 127, 214, 0.6); color: #7fb4ff; background: rgba(20, 39, 61, 0.5); }
.buy-round.public { border: 1px solid rgba(217, 168, 78, 0.6); color: var(--gold-burnished); background: rgba(40, 30, 12, 0.5); }
.buy-ok { color: var(--ok); font-size: 0.9rem; margin-bottom: 12px; }
.buy-reg { padding: 6px 2px; }
.buy-reg-title { font-family: var(--display); color: var(--gold-burnished); letter-spacing: 0.06em; font-size: 1.05rem; margin-bottom: 8px; }
.buy-reg p { font-size: 0.9rem; opacity: 0.82; line-height: 1.55; margin: 0 0 14px; }
.buy-reg .btn-g { margin-right: 8px; margin-bottom: 8px; }
.buy-calc { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin: 4px 0 4px; }
.buy-calc .txt { flex: 1; min-width: 150px; font-size: 1.2rem; }
.buy-out { font-size: 0.95rem; opacity: 0.85; }
.buy-out b { color: #fff; font-family: var(--display); font-size: 1.1rem; }
.split-preview { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 14px 0; }
.split { border: 1px solid var(--line-soft); border-radius: 10px; padding: 12px; }
.split.liq { border-color: rgba(61, 127, 214, 0.45); background: rgba(20, 39, 61, 0.4); }
.split.ves { border-color: rgba(217, 168, 78, 0.45); background: rgba(40, 30, 12, 0.4); }
.split .sl { font-size: 0.78rem; opacity: 0.8; letter-spacing: 0.04em; }
.split .sv { font-family: var(--display); font-size: 1.4rem; color: #fff; margin: 2px 0; }
.split .su { font-size: 0.72rem; color: var(--gold-aged); }
.buy-narrate { font-size: 0.8rem; color: var(--gold-aged); line-height: 1.5; margin-top: 10px; }

/* ============================================================
   M-F3 — THE PROCEEDS REPORT (public page, wallet-free)
   ============================================================ */
body.report { background: radial-gradient(120% 90% at 50% -10%, rgba(40,30,12,.35), transparent 60%), var(--stone-void); }
.rep-wrap { max-width: 1120px; margin: 0 auto; padding: 26px 16px 60px; }
.rep-head { text-align: center; margin: 8px 0 26px; }
.rep-logo { height: 52px; width: auto; opacity: .96; margin-bottom: 12px; }
.rep-head h1 {
  font-family: var(--display); letter-spacing: var(--track-display);
  color: var(--gold-burnished); font-size: 1.9rem; margin: 0 0 10px; font-weight: 600;
}
.rep-promise {
  max-width: 660px; margin: 0 auto; color: var(--parchment);
  font-size: .98rem; line-height: 1.6;
}
.rep-promise b { color: var(--flame-core); }
.rep-netrow { display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: 16px; flex-wrap: wrap; }
.rep-updated { color: var(--gold-aged); font-size: .8rem; }

.rep-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 900px) { .rep-grid { grid-template-columns: 1fr 1fr; } }
.rep-chip { margin-left: auto; }

.rep-figrow {
  display: flex; align-items: baseline; justify-content: space-between; gap: 12px;
  padding: 9px 0; border-bottom: 1px solid var(--line-soft); font-size: .92rem;
}
.rep-figrow:last-child { border-bottom: none; }
.rep-figrow > span { color: var(--gold-aged); }
.rep-figrow > b { color: var(--parchment); font-variant-numeric: tabular-nums; text-align: right; }

.rep-big { margin: 14px 0 6px; padding: 14px; border-radius: 10px;
  background: linear-gradient(180deg, rgba(40,30,12,.5), rgba(20,15,6,.35)); border: 1px solid var(--line); }
.rep-biglabel { display: block; color: var(--gold-aged); font-size: .78rem; letter-spacing: .06em; text-transform: uppercase; }
.rep-bigval { display: block; font-family: var(--display); color: var(--flame-core); font-size: 1.5rem; margin-top: 4px; font-variant-numeric: tabular-nums; }
.rep-bigval em { font-style: normal; color: var(--gold-aged); font-size: .9rem; }

.rep-round { margin: 6px 0; }
.rep-bar { height: 8px; border-radius: 5px; background: rgba(255,255,255,.06); overflow: hidden; margin: 6px 0 3px; }
.rep-bar > span { display: block; height: 100%; background: linear-gradient(90deg, var(--gold-burnished), var(--flame-core)); border-radius: 5px; }
.rep-barpct { font-size: .76rem; color: var(--gold-aged); }
.rep-raised { margin-top: 8px; }
.rep-note { margin-top: 12px; font-size: .8rem; color: var(--gold-aged); line-height: 1.5; }
.rep-src { font-size: .68rem; color: var(--blue); border: 1px solid rgba(61,127,214,.4); border-radius: 4px; padding: 1px 5px; margin-left: 4px; white-space: nowrap; }
.rep-verifyrow { margin-top: 12px; }
.rep-verify { color: var(--gold-burnished); font-size: .82rem; text-decoration: none; border-bottom: 1px dotted var(--gold-aged); }
.rep-verify:hover { color: var(--flame-core); }

.rep-foot { margin-top: 28px; text-align: center; }
.rep-foot p { max-width: 720px; margin: 0 auto 16px; color: var(--gold-aged); font-size: .84rem; line-height: 1.6; }
.rep-back { color: var(--gold-burnished); text-decoration: none; font-family: var(--display); letter-spacing: .06em; font-size: .9rem; }
.rep-back:hover { color: var(--flame-core); }
