:root {
  color-scheme: dark;
  --ink: #f7f2e8;
  --muted: #bdb3a4;
  --line: rgba(255,255,255,.14);
  --gold: #d4af37;
  --gold-soft: #f0d98a;
  --obsidian: #090b0f;
  --card: rgba(255,255,255,.07);
  --berry: #7a3e65;
  --blush: #f6dce8;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 18% 12%, rgba(212,175,55,.18), transparent 28rem),
    radial-gradient(circle at 78% 8%, rgba(122,62,101,.2), transparent 22rem),
    linear-gradient(135deg, #07090c, #12161c 48%, #090b0f);
  color: var(--ink);
}
a { color: inherit; }
.page {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 34px 0 58px;
}
.nav {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  margin-bottom: 34px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 760;
  letter-spacing: .02em;
}
.mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, rgba(240,217,138,.95), rgba(145,105,35,.95));
  color: #16100a;
  box-shadow: 0 18px 54px rgba(212,175,55,.22);
}
.navlinks { display: flex; gap: 10px; flex-wrap: wrap; }
.pill, .status-pill {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.07);
  padding: 10px 14px;
  text-decoration: none;
  color: var(--ink);
}
.status-pill.ok { border-color: rgba(54,211,153,.38); color: #9ff2cf; }
.status-pill.warn { border-color: rgba(240,217,138,.4); color: var(--gold-soft); }
.hero {
  display: grid;
  grid-template-columns: 1.03fr .97fr;
  gap: 28px;
  align-items: center;
}
.eyebrow {
  color: var(--gold-soft);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
}
h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 8vw, 92px);
  line-height: .9;
  margin: 14px 0 18px;
  letter-spacing: -.035em;
}
.lead {
  font-size: clamp(18px, 2.5vw, 24px);
  color: rgba(247,242,232,.82);
  line-height: 1.42;
  max-width: 690px;
}
.actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 26px; }
.button {
  min-height: 50px;
  border: 1px solid rgba(212,175,55,.42);
  border-radius: 999px;
  padding: 14px 18px;
  font-weight: 780;
  text-decoration: none;
  background: linear-gradient(145deg, var(--gold-soft), var(--gold));
  color: #120d06;
  box-shadow: 0 18px 54px rgba(212,175,55,.2);
}
.button.secondary {
  background: rgba(255,255,255,.08);
  color: var(--ink);
  box-shadow: none;
}
.glass {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(255,255,255,.12), rgba(255,255,255,.045));
  box-shadow: 0 28px 92px rgba(0,0,0,.38);
  backdrop-filter: blur(20px);
}
.showcase { padding: 16px; }
.showcase img {
  width: 100%;
  display: block;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.12);
}
.caption {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
}
.section { margin-top: 30px; }
.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.card { padding: 20px; }
.label {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.value {
  font-size: 26px;
  font-weight: 820;
  margin-top: 8px;
}
.small { color: var(--muted); line-height: 1.5; }
.meter {
  height: 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.11);
  overflow: hidden;
  margin-top: 12px;
}
.meter > span {
  display: block;
  height: 100%;
  width: var(--w, 80%);
  background: linear-gradient(90deg, var(--gold), var(--gold-soft));
  border-radius: inherit;
}
.coin-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.coin-pair img {
  aspect-ratio: 1;
  object-fit: contain;
  background: radial-gradient(circle, rgba(212,175,55,.16), rgba(255,255,255,.04) 58%, rgba(0,0,0,.2));
}
pre {
  margin: 0;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  color: #efe6d0;
  font-size: 13px;
  line-height: 1.45;
}
.footer {
  margin-top: 34px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}
@media (max-width: 860px) {
  .hero, .grid, .grid.two, .coin-pair { grid-template-columns: 1fr; }
  .nav { align-items: flex-start; flex-direction: column; }
  .page { width: min(100% - 24px, 1180px); padding-top: 22px; }
}
