:root {
  --bg: #050505;
  --surface: #0e0e0e;
  --text: #fff;
  --muted: #929292;
  --line: #252525;
  --accent: #c0202a;
  --kick: #53fc18;
  font-family: "Barlow Semi Condensed", sans-serif;
  color: var(--text);
  background: var(--bg);
}

* { box-sizing: border-box; }
body { min-width: 320px; margin: 0; background: var(--bg); }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

.dashboard-header {
  display: flex;
  justify-content: space-between;
  width: min(100% - 32px, 1440px);
  min-height: 72px;
  margin: 0 auto;
  border: 1px solid var(--line);
  border-top: 0;
  background: rgba(7, 7, 7, 0.94);
}

.brand,
.account { display: flex; align-items: center; }
.brand { padding: 0 24px; font-size: 24px; font-weight: 700; }
.brand span { color: var(--accent); }
.account { font-family: "IBM Plex Mono", monospace; font-size: 10px; text-transform: uppercase; }
.account span { padding: 0 18px; color: var(--muted); }
.account button {
  align-self: stretch;
  padding: 0 18px;
  border: 0;
  border-left: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  cursor: pointer;
}
.account button:hover { background: var(--accent); }

main { width: min(100% - 32px, 1440px); margin: 38px auto 80px; }
.titlebar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  min-height: 190px;
  padding: 38px 40px;
  border: 1px solid var(--line);
  background: var(--surface);
}
.kicker { color: var(--accent); font-family: "IBM Plex Mono", monospace; font-size: 11px; letter-spacing: .12em; }
h1 { margin: 8px 0 0; font-size: clamp(3rem, 7vw, 6rem); font-weight: 600; line-height: .82; text-transform: uppercase; }
.titlebar a { padding-bottom: 4px; border-bottom: 1px solid var(--accent); font-family: "IBM Plex Mono", monospace; font-size: 10px; text-transform: uppercase; }

.stats { display: grid; grid-template-columns: repeat(2, 1fr); border-right: 1px solid var(--line); border-left: 1px solid var(--line); }
.stats article { min-height: 150px; padding: 28px 40px; border-bottom: 1px solid var(--line); }
.stats article + article { border-left: 1px solid var(--line); }
.stats span { display: block; color: var(--muted); font-family: "IBM Plex Mono", monospace; font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.stats strong { display: block; margin-top: 20px; font-size: 48px; font-weight: 600; line-height: 1; }

.shop-rail { display: flex; align-items: center; justify-content: space-between; min-height: 92px; padding: 0 40px; border: 1px solid var(--line); border-top: 0; }
.shop-rail h2 { margin: 0; font-size: 24px; font-weight: 600; text-transform: uppercase; }
.shop-rail a { padding-bottom: 4px; border-bottom: 1px solid var(--accent); color: var(--text); font-family: "IBM Plex Mono", monospace; font-size: 10px; text-transform: uppercase; }
.dashboard-status { margin: 16px 0 0; color: var(--muted); font-family: "IBM Plex Mono", monospace; font-size: 11px; }

@media (max-width: 640px) {
  .dashboard-header,
  main { width: 100%; }
  .dashboard-header { border-inline: 0; }
  main { margin-top: 16px; }
  .titlebar { min-height: 150px; padding: 28px 18px; border-inline: 0; }
  .stats { grid-template-columns: 1fr; border-inline: 0; }
  .stats article { min-height: 120px; padding: 24px 18px; }
  .stats article + article { border-left: 0; }
  .shop-rail { padding-inline: 18px; border-inline: 0; }
  .account span { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; }
}
