:root {
  --background: #050705;
  --surface: #0a0e0b;
  --surface-2: #101510;
  --surface-3: #141b14;
  --gold: #d4a64b;
  --gold-light: #ffe0a0;
  --green: #69e35c;
  --green-bright: #19ef83;
  --text: #f5f1e6;
  --muted: #aeada4;
  --quiet: #74786e;
  --line: rgba(213, 169, 75, .26);
  --line-soft: rgba(255, 255, 255, .09);
  --shadow: 0 26px 70px rgba(0, 0, 0, .34);
  --display: "Cinzel", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--text);
  font-family: var(--sans);
  background:
    radial-gradient(circle at 12% 3%, rgba(213, 166, 75, .15), transparent 29rem),
    radial-gradient(circle at 88% 12%, rgba(67, 194, 83, .11), transparent 25rem),
    var(--background);
}

body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  content: "";
  pointer-events: none;
  background-image:
    linear-gradient(rgba(213, 166, 75, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(213, 166, 75, .035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, #000, transparent 78%);
}

a { color: inherit; text-decoration: none; }
button { font: inherit; }
img { max-width: 100%; display: block; }

.container {
  width: min(1280px, calc(100% - 52px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(213, 166, 75, .18);
  background: rgba(4, 6, 5, .83);
  backdrop-filter: blur(18px);
}

.nav {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  text-transform: uppercase;
}

.brand img {
  width: 56px;
  height: 56px;
  filter: drop-shadow(0 0 19px rgba(213, 166, 75, .18));
}

.brand strong {
  display: block;
  font-family: var(--display);
  font-size: 17px;
  letter-spacing: .075em;
}

.brand small {
  display: block;
  margin-top: 4px;
  color: var(--green);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .2em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
  text-transform: uppercase;
  letter-spacing: .075em;
}

.nav-links > a:not(.button) { padding: 13px 12px; transition: color .2s; }
.nav-links > a:not(.button):hover { color: var(--gold-light); }
.menu-toggle { display: none; }

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 51px;
  padding: 0 21px;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  color: var(--text);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, .035);
  transition: transform .2s, border-color .2s, box-shadow .2s;
}

.button:hover {
  transform: translateY(-2px);
  border-color: var(--gold);
  box-shadow: 0 13px 27px rgba(0, 0, 0, .2);
}

.button-gold {
  border-color: transparent;
  color: #171105;
  background: linear-gradient(118deg, #ba8933, var(--gold-light) 55%, #ca993e);
}

.button-green {
  border-color: transparent;
  color: #041309;
  background: linear-gradient(118deg, #5fca51, var(--green-bright));
}

.button-outline { border-color: rgba(213, 166, 75, .38); }

.hero {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 42px;
  align-items: center;
  min-height: calc(100vh - 86px);
  padding: 52px 0 48px;
}

.status-line {
  display: flex;
  gap: 11px;
  align-items: center;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.pulse, .secure-dot {
  display: inline-block;
  width: 9px;
  height: 9px;
  border-radius: 100%;
  background: var(--green);
  box-shadow: 0 0 16px var(--green);
  animation: pulse 1.55s ease-in-out infinite;
}

.mode-badge {
  padding: 7px 10px;
  border: 1px solid rgba(213, 166, 75, .42);
  border-radius: 999px;
  color: var(--gold-light);
  background: rgba(213, 166, 75, .08);
}

.mode-badge.live {
  color: var(--green);
  border-color: rgba(105, 227, 92, .42);
  background: rgba(105, 227, 92, .08);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .19em;
  text-transform: uppercase;
}

h1, h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -.045em;
  line-height: .98;
}

h1 { font-size: clamp(52px, 6vw, 84px); }
h1 span, .cta-panel h2 span {
  color: transparent;
  background: linear-gradient(105deg, #fff3cc, var(--gold), var(--green));
  background-clip: text;
}

.lede {
  max-width: 520px;
  margin: 24px 0 31px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.lede strong { color: var(--gold-light); }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.journey {
  display: flex;
  gap: 9px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 34px;
  color: var(--quiet);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.journey i {
  width: 17px;
  height: 1px;
  background: var(--gold);
}

.vault-stage { position: relative; }

.vault-image {
  position: relative;
  overflow: hidden;
  margin: 0;
  min-height: 560px;
  border: 1px solid rgba(213, 166, 75, .43);
  border-radius: 25px;
  background: #030403;
  box-shadow: var(--shadow), 0 0 80px rgba(213, 166, 75, .08);
}

.vault-image::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 34%, rgba(0, 0, 0, .52) 100%);
}

.vault-image img {
  width: 100%;
  height: 560px;
  object-fit: cover;
}

.vault-state {
  position: absolute;
  z-index: 1;
  top: 20px;
  right: 20px;
  width: 212px;
  padding: 16px;
  border: 1px solid rgba(105, 227, 92, .33);
  border-radius: 12px;
  background: rgba(4, 8, 5, .74);
  backdrop-filter: blur(10px);
}

.vault-state span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--green);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.vault-state strong {
  display: block;
  margin: 14px 0 9px;
  font-size: 27px;
}

.vault-state small {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
}

.contract-card {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 22px;
  left: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 15px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(5, 7, 5, .86);
  backdrop-filter: blur(12px);
}

.contract-card small {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.contract-card strong {
  display: block;
  overflow: hidden;
  max-width: 380px;
  color: var(--gold-light);
  font-family: ui-monospace, Consolas, monospace;
  font-size: 14px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.copy-button {
  padding: 10px 15px;
  border: 1px solid rgba(213, 166, 75, .38);
  border-radius: 7px;
  color: var(--text);
  background: rgba(213, 166, 75, .1);
  cursor: pointer;
}

.copy-button:disabled { opacity: .42; cursor: not-allowed; }

.reserve-bar {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(213, 166, 75, .045), rgba(105, 227, 92, .04));
}

.metrics {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.metrics article {
  min-height: 120px;
  padding: 24px 20px;
  border-right: 1px solid var(--line-soft);
}

.metrics article:last-child { border: 0; }
.metrics small {
  display: block;
  margin-bottom: 11px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.metrics strong { display: block; margin-bottom: 8px; font-size: clamp(20px, 1.8vw, 25px); }
.metrics span { color: var(--muted); font-size: 12px; font-weight: 600; }
.metrics .positive { color: var(--green); }

.ticker {
  overflow: hidden;
  border-bottom: 1px solid rgba(213, 166, 75, .12);
}

.ticker div {
  display: flex;
  width: max-content;
  gap: 52px;
  padding: 16px 0;
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .18em;
  text-transform: uppercase;
  animation: ticker 28s linear infinite;
}

.section { padding: 82px 0; }
.section-heading { max-width: 730px; margin-bottom: 34px; }
.section-heading h2 { margin-bottom: 18px; font-size: clamp(38px, 4.3vw, 58px); }
.section-heading > p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.dashboard {
  display: grid;
  grid-template-columns: 1fr .82fr 1fr;
  gap: 16px;
}

.panel {
  min-height: 386px;
  padding: 23px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: linear-gradient(150deg, rgba(255, 255, 255, .05), transparent 34%), var(--surface);
}

.panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 19px;
}

.panel-title h3 {
  margin: 0;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.chip {
  padding: 6px 8px;
  border-radius: 999px;
  color: var(--green);
  background: rgba(105, 227, 92, .09);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.chip.pending {
  color: var(--gold-light);
  background: rgba(213, 166, 75, .11);
}

.asset-row {
  display: grid;
  grid-template-columns: 40px 1fr auto;
  align-items: center;
  gap: 11px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line-soft);
}

.asset-row:last-child { border: 0; }
.asset-row b, .asset-row small { display: block; }
.asset-row b { margin-bottom: 4px; font-size: 13px; }
.asset-row small { color: var(--muted); font-size: 11px; }
.asset-row strong { font-size: 13px; }

.coin {
  display: grid;
  place-items: center;
  width: 39px;
  height: 39px;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 100%;
  color: #d0d4cc;
  font-size: 12px;
  font-weight: 800;
}

.coin.gold { color: var(--gold-light); border-color: rgba(213, 166, 75, .42); }
.coin.green { color: var(--green); border-color: rgba(105, 227, 92, .42); }
.coin.blue { color: #74b7ff; border-color: rgba(116, 183, 255, .42); }
.coin.orange { color: #f2a84b; border-color: rgba(242, 168, 75, .42); }

.donut {
  display: grid;
  place-items: center;
  width: 190px;
  height: 190px;
  margin: 26px auto 28px;
  border-radius: 50%;
  background: conic-gradient(var(--gold) 0 58.17%, var(--green) 58.17% 89.35%, #f2a84b 89.35% 96.35%, #8d9189 96.35% 100%);
}

.donut span {
  display: grid;
  place-items: center;
  width: 126px;
  height: 126px;
  border-radius: inherit;
  color: var(--gold-light);
  font-family: var(--display);
  font-size: 20px;
  font-weight: 700;
  background: var(--surface);
}

.allocation-key p {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 9px 0;
  color: var(--muted);
  font-size: 12px;
}

.allocation-key b { margin-left: auto; color: var(--text); }
.allocation-key i { width: 8px; height: 8px; border-radius: 50%; }
.allocation-key .sol { background: var(--green); }
.allocation-key .ixr { background: var(--gold); }
.allocation-key .btc { background: #f2a84b; }
.allocation-key .stable { background: #8d9189; }

.wallet-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line-soft);
  color: var(--muted);
  font-size: 12px;
}

.wallet-row code {
  overflow: hidden;
  max-width: 142px;
  color: var(--gold-light);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.notice {
  margin: 18px 0 0;
  color: var(--quiet);
  font-size: 11px;
  line-height: 1.55;
}

.secondary-dashboard {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: 16px;
  margin-top: 16px;
}

.secondary-dashboard .panel { min-height: 0; }

.activity-row {
  display: grid;
  grid-template-columns: 1fr auto 64px;
  align-items: center;
  gap: 16px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line-soft);
  color: var(--muted);
  font-size: 13px;
}

.activity-row:last-child { border: 0; }
.activity-row b { color: var(--green); font-size: 13px; }
.activity-row small { color: var(--quiet); text-align: right; }

.holder-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 11px;
  margin-bottom: 19px;
}

.holder-summary div {
  min-height: 72px;
  padding: 14px 12px;
  border: 1px solid var(--line-soft);
  border-radius: 10px;
  background: rgba(255, 255, 255, .02);
}

.holder-summary small {
  display: block;
  margin-bottom: 9px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.holder-summary strong { font-size: 15px; }
.green-text { color: var(--green); }

.holder-table-head, .holder-row {
  display: grid;
  grid-template-columns: 1fr 112px 72px;
  gap: 12px;
  align-items: center;
}

.holder-table-head {
  padding: 0 0 9px;
  color: var(--quiet);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .09em;
  text-align: right;
  text-transform: uppercase;
}

.holder-table-head span:first-child { text-align: left; }

.holder-row {
  padding: 11px 0;
  border-top: 1px solid var(--line-soft);
  font-size: 12px;
}

.holder-wallet {
  display: flex;
  gap: 10px;
  align-items: center;
}

.holder-rank {
  display: grid;
  place-items: center;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  color: var(--gold-light);
  background: rgba(213, 166, 75, .1);
  font-weight: 700;
}

.holder-wallet b, .holder-wallet code { display: block; }
.holder-wallet b { margin-bottom: 3px; font-size: 12px; }
.holder-wallet code { color: var(--quiet); font-size: 11px; }
.holder-amount, .holder-share { text-align: right; }
.holder-amount { color: var(--text); font-weight: 700; }
.holder-share { color: var(--green); }

.live-intel {
  margin-top: 44px;
  padding-top: 39px;
  border-top: 1px solid rgba(213, 166, 75, .16);
}

.intel-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 24px;
}

.intel-card {
  min-height: 138px;
  padding: 21px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background:
    linear-gradient(150deg, rgba(105, 227, 92, .05), transparent 42%),
    rgba(255, 255, 255, .025);
}

.intel-card small {
  display: block;
  margin-bottom: 16px;
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.intel-card strong {
  display: block;
  margin-bottom: 9px;
  font-size: 19px;
  line-height: 1.2;
}

.intel-card span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.holdings-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 16px;
}

.share-row, .holding-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 13px 0;
  border-top: 1px solid var(--line-soft);
  color: var(--muted);
  font-size: 13px;
}

.share-row b, .holding-row b {
  color: var(--text);
}

.ecosystem {
  border-top: 1px solid rgba(213, 166, 75, .15);
  border-bottom: 1px solid rgba(213, 166, 75, .15);
  background: rgba(255, 255, 255, .018);
}

.ecosystem-grid {
  display: grid;
  grid-template-columns: .92fr 1fr 1fr;
  gap: 17px;
  align-items: stretch;
}

.ecosystem-grid h2 { font-size: clamp(33px, 3.5vw, 45px); }

.destination {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
}

.destination > span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
}

.destination h3 { margin: 19px 0 13px; font-size: 23px; }
.destination p {
  min-height: 97px;
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.destination.analytics { border-color: rgba(105, 227, 92, .28); }
.text-link {
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.analytics-shell {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 27px;
  align-items: center;
}

.compact { margin: 0; }
.compact .button { margin-top: 28px; }
.terminal {
  overflow: hidden;
  padding: 49px 29px 27px;
  border: 1px solid rgba(105, 227, 92, .28);
  border-radius: 17px;
  background:
    linear-gradient(90deg, #f15b45 0 11px, transparent 11px 18px, #e9bd48 18px 29px, transparent 29px 36px, #54cd67 36px 47px, transparent 47px) 24px 19px / 47px 11px no-repeat,
    #030604;
  box-shadow: inset 0 1px rgba(255, 255, 255, .06);
}

.terminal p {
  display: grid;
  grid-template-columns: 185px 1fr;
  gap: 18px;
  margin: 0;
  padding: 13px 0;
  border-bottom: 1px solid rgba(105, 227, 92, .09);
  font-family: ui-monospace, Consolas, monospace;
  font-size: 13px;
}

.terminal p:last-child { border: 0; }
.terminal b { color: var(--green); }
.terminal span { color: var(--muted); }
.terminal .ready span { color: var(--gold-light); }

.cards, .tiers, .phases {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.info-card {
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
}

.info-card small, .phases small {
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.info-card h3 { margin: 15px 0 9px; font-size: 23px; }
.info-card p, .phases p, .tiers p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.tiers {
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 15px;
}

.tiers article {
  padding: 19px;
  border: 1px solid var(--line-soft);
  border-radius: 13px;
  background: rgba(255, 255, 255, .022);
}

.tiers b, .tiers strong { display: block; }
.tiers b { margin-bottom: 9px; font-size: 17px; }
.tiers strong {
  margin-bottom: 11px;
  color: var(--green);
  font-size: 12px;
  letter-spacing: .1em;
}

.phases { grid-template-columns: repeat(4, 1fr); }
.phases article {
  padding: 26px 22px;
  border-top: 2px solid var(--gold);
  background: linear-gradient(180deg, rgba(213, 166, 75, .075), rgba(255, 255, 255, .025));
}
.phases h3 { margin: 16px 0 11px; }

.cta-panel {
  display: grid;
  grid-template-columns: 1fr .86fr;
  align-items: center;
  gap: 40px;
  margin-bottom: 84px;
  padding: clamp(30px, 5vw, 52px);
  border: 1px solid rgba(213, 166, 75, .4);
  border-radius: 22px;
  background:
    radial-gradient(circle at 12% 50%, rgba(213, 166, 75, .11), transparent 50%),
    var(--surface);
}

.cta-panel h2 { margin-bottom: 20px; font-size: clamp(35px, 4vw, 52px); }
.compliance {
  max-width: 570px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

.cta-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.site-footer {
  border-top: 1px solid rgba(213, 166, 75, .16);
  padding: 31px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  gap: 25px;
}

.footer-brand img { width: 46px; height: 46px; }
.footer-brand strong { font-size: 14px; }
.footer-grid p {
  margin: 0;
  color: var(--quiet);
  font-size: 12px;
  line-height: 1.6;
}
.footer-links { display: flex; gap: 19px; color: var(--muted); font-size: 12px; }

.toast {
  position: fixed;
  z-index: 30;
  right: 22px;
  bottom: 22px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 9px;
  color: var(--text);
  background: var(--surface-3);
  box-shadow: var(--shadow);
  transform: translateY(25px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s, transform .22s;
}

.toast.visible { transform: translateY(0); opacity: 1; }

@keyframes pulse {
  0%, 100% { opacity: .55; transform: scale(.9); }
  50% { opacity: 1; transform: scale(1.15); }
}

@keyframes ticker {
  to { transform: translateX(-50%); }
}

@media (max-width: 1100px) {
  .nav-links > a:not(.button) { display: none; }
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 65px; }
  .hero-copy { max-width: 670px; }
  .vault-image, .vault-image img { min-height: 0; height: min(64vw, 560px); }
  .metrics { grid-template-columns: repeat(3, 1fr); }
  .metrics article:nth-child(3) { border-right: 0; }
  .dashboard, .secondary-dashboard, .intel-grid, .holdings-grid, .ecosystem-grid, .analytics-shell, .cta-panel { grid-template-columns: 1fr; }
  .panel { min-height: 0; }
  .ecosystem-grid > div { margin-bottom: 16px; }
}

@media (max-width: 700px) {
  .container { width: min(100% - 34px, 1280px); }
  .nav { min-height: 76px; }
  .brand img { width: 49px; height: 49px; }
  .brand strong { font-size: 14px; }
  .nav > .nav-links { display: none; }
  .nav > .nav-links.open {
    position: absolute;
    top: 76px;
    right: 17px;
    left: 17px;
    display: grid;
    padding: 13px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--surface-2);
  }
  .nav-links.open > a:not(.button) { display: block; }
  .menu-toggle {
    display: block;
    padding: 11px 13px;
    border: 1px solid var(--line);
    border-radius: 7px;
    color: var(--text);
    background: transparent;
    font-size: 12px;
    text-transform: uppercase;
  }
  .hero { gap: 32px; padding: 43px 0 34px; }
  .status-line { flex-wrap: wrap; margin-bottom: 23px; }
  h1 { font-size: clamp(43px, 15vw, 55px); }
  .lede { font-size: 15px; margin: 21px 0 27px; }
  .hero-actions .button { width: 100%; }
  .vault-image img, .vault-image { height: 440px; }
  .vault-state { top: 13px; right: 13px; width: 190px; }
  .contract-card { right: 13px; bottom: 13px; left: 13px; }
  .contract-card strong { max-width: 200px; font-size: 12px; }
  .metrics { grid-template-columns: 1fr 1fr; }
  .metrics article { min-height: 106px; padding: 20px 14px; }
  .metrics article:nth-child(3) { border-right: 1px solid var(--line-soft); }
  .metrics article:nth-child(2n) { border-right: 0; }
  .section { padding: 59px 0; }
  .section-heading h2 { font-size: 37px; }
  .asset-row { grid-template-columns: 39px 1fr; }
  .asset-row strong { grid-column: 2; margin-top: -7px; color: var(--gold-light); }
  .activity-row { grid-template-columns: 1fr auto; }
  .activity-row small { grid-column: 2; }
  .holder-summary { grid-template-columns: 1fr; }
  .holder-table-head, .holder-row { grid-template-columns: 1fr 88px 55px; gap: 7px; }
  .terminal { padding: 45px 18px 17px; }
  .terminal p { grid-template-columns: 1fr; gap: 6px; }
  .cards, .tiers, .phases { grid-template-columns: 1fr; }
  .cta-panel { margin-bottom: 55px; padding: 27px 20px; }
  .cta-links { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}
