html.site-gate-pending body { visibility: hidden; }
html.site-gate-open body,
html.site-gate-closed body { visibility: visible; }

:root {
  --bg: #050505;
  --panel: rgba(18, 12, 7, 0.88);
  --panel-2: rgba(26, 18, 10, 0.88);
  --surface: rgba(255, 168, 40, 0.09);
  --surface-strong: rgba(255, 173, 51, 0.14);
  --border: rgba(255, 184, 86, 0.22);
  --border-strong: rgba(255, 200, 104, 0.34);
  --gold: #ffb026;
  --gold-strong: #ffd36b;
  --orange: #ff7a00;
  --orange-deep: #e55200;
  --ink: #fff5df;
  --muted: #d0ba96;
  --soft: #8d7350;
  --green: #2fd38d;
  --red: #ff7d69;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.45);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --max: 1220px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(255, 125, 20, 0.22), transparent 24%),
    radial-gradient(circle at 85% 10%, rgba(255, 196, 95, 0.15), transparent 20%),
    radial-gradient(circle at 50% 100%, rgba(255, 136, 0, 0.12), transparent 30%),
    linear-gradient(180deg, #0a0907 0%, #050505 50%, #090603 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input { font: inherit; }
[hidden] { display: none !important; }

.topbar, main, .footer {
  position: relative;
  z-index: 1;
}

.shell {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  background: rgba(5, 5, 5, 0.72);
  border-bottom: 1px solid rgba(255, 179, 76, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 78px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-badge {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid rgba(255, 188, 92, 0.35);
  box-shadow: 0 10px 30px rgba(255, 125, 20, 0.18);
  flex: 0 0 auto;
}

.brand-meta {
  display: grid;
  gap: 2px;
}

.eyebrow {
  color: var(--gold-strong);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 700;
}

.brand h1 {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.nav-links {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 15px;
  overflow: visible;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 206, 125, 0.14);
  background: linear-gradient(180deg, rgba(22, 13, 8, 0.92), rgba(10, 7, 4, 0.94));
  box-shadow: inset 0 1px 0 rgba(255, 214, 145, 0.08), 0 22px 48px rgba(0, 0, 0, 0.24);
  position: relative;
  isolation: isolate;
  backdrop-filter: blur(14px);
}

.nav-links::before,
.nav-links::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.nav-links::before {
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 235, 200, 0.06), rgba(255, 174, 82, 0.02));
  z-index: -1;
}

.nav-links::after {
  left: 16px;
  right: 16px;
  top: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 223, 170, 0.38), transparent);
  opacity: 0.7;
}

.nav-links a {
  color: inherit;
}

.nav-home-link,
.nav-parent {
  min-height: 52px;
  padding: 0 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid transparent;
  color: var(--muted);
  background: transparent;
  transition: color 0.22s ease, background 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
  position: relative;
  letter-spacing: 0.01em;
  font-weight: 600;
}

.nav-home-link::after,
.nav-parent::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 8px;
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(255, 221, 166, 0.8), transparent);
  opacity: 0;
  transform: scaleX(0.42);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.nav-home-link:hover,
.nav-home-link:focus-visible,
.nav-parent:hover,
.nav-parent:focus-visible,
.nav-home-link.is-current,
.nav-group.is-open > .nav-parent,
.nav-parent.is-current {
  color: var(--ink);
  background: linear-gradient(180deg, rgba(255, 199, 112, 0.13), rgba(255, 142, 38, 0.08));
  border-color: rgba(255, 210, 133, 0.22);
  box-shadow: inset 0 1px 0 rgba(255, 239, 211, 0.12), 0 12px 28px rgba(255, 137, 24, 0.14);
  transform: translateY(-1px) scale(1.01);
}

.nav-home-link:hover::after,
.nav-home-link:focus-visible::after,
.nav-home-link.is-current::after,
.nav-parent:hover::after,
.nav-parent:focus-visible::after,
.nav-group.is-open > .nav-parent::after,
.nav-parent.is-current::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-parent {
  appearance: none;
  cursor: pointer;
}

.nav-group {
  position: relative;
}

.nav-group::before {
  content: "";
  position: absolute;
  left: -12px;
  right: -12px;
  top: 100%;
  height: 18px;
}

.nav-group:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -5px;
  width: 1px;
  height: 24px;
  transform: translateY(-50%);
  background: linear-gradient(180deg, transparent, rgba(255, 211, 146, 0.18), transparent);
  pointer-events: none;
}

.nav-caret {
  width: 8px;
  height: 8px;
  border-right: 1.8px solid currentColor;
  border-bottom: 1.8px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transition: transform 0.22s ease;
}

.nav-group:hover > .nav-parent .nav-caret,
.nav-group:focus-within > .nav-parent .nav-caret,
.nav-group.is-open > .nav-parent .nav-caret {
  transform: rotate(225deg) translateY(-1px);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 236px;
  display: grid;
  gap: 8px;
  padding: 16px;
  border-radius: 26px;
  border: 1px solid rgba(255, 206, 125, 0.18);
  background: radial-gradient(circle at top, rgba(255, 189, 96, 0.14), transparent 58%), linear-gradient(180deg, rgba(20, 12, 7, 0.98), rgba(8, 5, 3, 0.98));
  box-shadow: inset 0 1px 0 rgba(255, 239, 211, 0.08), 0 28px 64px rgba(0, 0, 0, 0.46);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px) scale(0.98);
  transition: opacity 0.22s ease, transform 0.22s ease;
  backdrop-filter: blur(16px);
}

.nav-dropdown::before {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  top: 10px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 228, 184, 0.46), transparent);
  pointer-events: none;
}

.nav-dropdown a {
  padding: 13px 16px;
  border-radius: 18px;
  border: 1px solid transparent;
  background: linear-gradient(180deg, rgba(255, 188, 92, 0.04), rgba(255, 188, 92, 0.02));
  transition: background 0.22s ease, border-color 0.22s ease, color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
  position: relative;
  overflow: hidden;
}

.nav-dropdown a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 3px;
  height: 0;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 214, 143, 0.9), rgba(255, 145, 31, 0.82));
  transform: translateY(-50%);
  transition: height 0.22s ease;
}

.nav-dropdown a:hover,
.nav-dropdown a:focus-visible,
.nav-dropdown a.is-current {
  color: var(--ink);
  background: linear-gradient(180deg, rgba(255, 198, 108, 0.12), rgba(255, 143, 28, 0.06));
  border-color: rgba(255, 205, 122, 0.18);
  box-shadow: 0 12px 24px rgba(255, 129, 19, 0.08);
  transform: translateX(3px);
}

.nav-dropdown a:hover::before,
.nav-dropdown a:focus-visible::before,
.nav-dropdown a.is-current::before {
  height: 24px;
}

.nav-group:hover > .nav-dropdown,
.nav-group:focus-within > .nav-dropdown,
.nav-group.is-open > .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
}

.nav-wallet-shell {
  position: relative;
  display: inline-flex;
}

.nav-wallet-shell.is-connected::after {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  width: min(340px, calc(100vw - 32px));
  height: 14px;
  z-index: 34;
}

.nav-wallet {
  width: 48px;
  height: 48px;
  padding: 0;
  border-radius: 18px;
  border: 1px solid rgba(255, 208, 126, 0.22);
  background: radial-gradient(circle at 28% 20%, rgba(255, 236, 196, 0.18), transparent 36%), linear-gradient(180deg, rgba(255, 194, 104, 0.2), rgba(255, 117, 24, 0.13));
  box-shadow: inset 0 1px 0 rgba(255, 230, 180, 0.18), 0 14px 30px rgba(255, 124, 12, 0.18);
  color: var(--gold-strong);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font: inherit;
  cursor: pointer;
  transition: width 0.22s ease, padding 0.22s ease, transform 0.22s ease, border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease, color 0.22s ease;
  position: relative;
  overflow: hidden;
  touch-action: pan-y;
  --swipe-progress: 0px;
}

.nav-wallet::before,
.nav-wallet::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.nav-wallet::before {
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 55%);
}

.nav-wallet::after {
  width: 18px;
  height: 18px;
  top: 6px;
  right: 6px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 246, 220, 0.46), transparent 70%);
  opacity: 0.7;
}

.nav-wallet svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  position: relative;
  z-index: 1;
}

.nav-wallet-label {
  display: none;
  position: relative;
  z-index: 1;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.nav-wallet-swipe {
  display: none;
  position: relative;
  z-index: 1;
}

.nav-wallet-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: min(340px, calc(100vw - 32px));
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(78, 255, 166, 0.25);
  background: linear-gradient(180deg, rgba(10, 30, 20, 0.97), rgba(5, 14, 10, 0.97));
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.42), 0 0 34px rgba(47, 211, 141, 0.13);
  display: grid;
  gap: 10px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.18s ease, transform 0.18s ease;
  z-index: 35;
}

.nav-wallet-shell.is-connected:hover .nav-wallet-dropdown,
.nav-wallet-shell.is-connected:focus-within .nav-wallet-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.wallet-dropdown-kicker {
  color: rgba(189, 255, 222, 0.76);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nav-wallet-dropdown code {
  color: #e9fff5;
  white-space: normal;
  overflow-wrap: anywhere;
  font-size: 13px;
  line-height: 1.45;
}

.wallet-dropdown-disconnect {
  min-height: 40px;
  border: 1px solid rgba(255, 138, 120, 0.34);
  border-radius: 13px;
  color: #ffe0dc;
  background: linear-gradient(180deg, rgba(255, 104, 80, 0.18), rgba(150, 26, 20, 0.16));
  cursor: pointer;
  font-weight: 800;
}

.wallet-dropdown-disconnect:hover,
.wallet-dropdown-disconnect:focus-visible {
  border-color: rgba(255, 170, 154, 0.55);
  box-shadow: 0 12px 26px rgba(255, 88, 63, 0.18);
}

.nav-wallet-inline-error {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  max-width: 280px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 148, 148, 0.28);
  background: rgba(43, 9, 9, 0.92);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.32);
  color: #ffd6d6;
  font-size: 12px;
  line-height: 1.45;
  z-index: 30;
}

.nav-wallet-inline-error[hidden] {
  display: none !important;
}

.nav-wallet:hover,
.nav-wallet:focus-visible {
  width: auto;
  min-width: 48px;
  padding: 0 16px;
  color: #fff3cf;
  border-color: rgba(255, 223, 163, 0.36);
  background: radial-gradient(circle at 26% 18%, rgba(255, 245, 217, 0.22), transparent 34%), linear-gradient(180deg, rgba(255, 196, 105, 0.3), rgba(255, 118, 24, 0.2));
  box-shadow: 0 20px 42px rgba(255, 124, 12, 0.24);
  transform: translateY(-2px) scale(1.02);
}

.nav-wallet.is-connected {
  width: auto;
  min-width: 48px;
  padding: 0 16px;
  color: #f3fff9;
  border-color: rgba(98, 255, 177, 0.48);
  background: radial-gradient(circle at 24% 18%, rgba(220, 255, 238, 0.28), transparent 36%), linear-gradient(180deg, rgba(47, 211, 141, 0.42), rgba(15, 128, 74, 0.34));
  box-shadow: inset 0 1px 0 rgba(230, 255, 241, 0.2), 0 20px 46px rgba(47, 211, 141, 0.24);
  transform: translateY(-2px) scale(1.02);
}

.nav-wallet:hover .nav-wallet-label,
.nav-wallet:focus-visible .nav-wallet-label,
.nav-wallet.is-connected .nav-wallet-label {
  display: inline-flex;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border-radius: 14px;
  border: 1px solid rgba(255, 208, 129, 0.18);
  background: linear-gradient(180deg, rgba(255, 204, 129, 0.08), rgba(255, 144, 35, 0.05));
  color: var(--ink);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-direction: column;
  box-shadow: inset 0 1px 0 rgba(255, 236, 198, 0.08), 0 12px 28px rgba(0, 0, 0, 0.2);
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.menu-toggle:hover,
.menu-toggle:focus-visible,
.menu-toggle.is-open {
  border-color: rgba(255, 224, 167, 0.28);
  background: linear-gradient(180deg, rgba(255, 204, 129, 0.12), rgba(255, 144, 35, 0.08));
  box-shadow: inset 0 1px 0 rgba(255, 236, 198, 0.1), 0 16px 32px rgba(0, 0, 0, 0.24);
  transform: translateY(-1px);
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.menu-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-buy-now {
  display: none !important;
}

body.menu-open, body.modal-open { overflow: hidden; }

.pill, .button, .ghost, .wallet-copy, .tab, .data-mode-chip {
  border: 1px solid transparent;
  border-radius: 999px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.button, .ghost, .wallet-copy {
  padding: 12px 18px;
  min-height: 48px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 600;
}

.button {
  color: #150b02;
  background: linear-gradient(135deg, var(--gold-strong), var(--orange));
  box-shadow: 0 12px 30px rgba(255, 132, 0, 0.22);
}

.button:hover, .ghost:hover, .pill:hover, .wallet-copy:hover, .tab:hover {
  transform: translateY(-1px);
}

.ghost {
  color: var(--ink);
  background: rgba(255, 186, 84, 0.06);
  border-color: rgba(255, 186, 84, 0.18);
}

.pill {
  color: var(--gold-strong);
  background: rgba(255, 190, 92, 0.1);
  border-color: rgba(255, 190, 92, 0.12);
  min-height: 38px;
  padding: 8px 14px;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
}

main { padding: 26px 0 80px; position: relative; z-index: 1; }
section { padding: 30px 0; }

.section-band {
  position: relative;
  padding: 38px;
  margin-top: 22px;
  border-radius: 34px;
  overflow: hidden;
  border: 1px solid rgba(255, 189, 92, 0.08);
}

.section-band::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255,255,255,0.03), transparent 26%);
}

.section-band-hero {
  padding: 42px;
  background: radial-gradient(circle at 18% 18%, rgba(255, 180, 74, 0.08), transparent 28%), linear-gradient(180deg, rgba(17, 12, 7, 0.86), rgba(9, 7, 5, 0.92));
}

.section-band-ember {
  background: radial-gradient(circle at 82% 18%, rgba(255, 138, 26, 0.12), transparent 24%), linear-gradient(180deg, rgba(22, 14, 8, 0.92), rgba(14, 10, 7, 0.88));
}

.section-band-charcoal {
  background: radial-gradient(circle at 14% 16%, rgba(255, 188, 92, 0.08), transparent 24%), linear-gradient(180deg, rgba(12, 12, 12, 0.96), rgba(8, 8, 8, 0.9));
}

.section-band-gold {
  background: radial-gradient(circle at 75% 12%, rgba(255, 211, 107, 0.11), transparent 22%), linear-gradient(180deg, rgba(27, 17, 9, 0.95), rgba(18, 12, 7, 0.9));
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 32px;
  align-items: center;
  padding-top: 36px;
}

.hero-copy {
  display: grid;
  gap: 18px;
}

.hero-tape {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: -4px;
}

.hero-tape span {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 200, 112, 0.16);
  background: linear-gradient(180deg, rgba(255, 201, 114, 0.08), rgba(255, 124, 18, 0.04));
  color: #f1c678;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-copy h2, .section-head h3, .brand h1, .hero-card h3, .card h4, .feature-card h4, .mini-panel h4, .timeline-step h4, summary {
  margin: 0;
  letter-spacing: -0.06em;
  background: linear-gradient(180deg, #fff2d4 0%, #f7b14f 48%, #8d4c18 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-copy h2 {
  font-size: clamp(42px, 7vw, 76px);
  line-height: 0.96;
  max-width: 10ch;
  white-space: pre-line;
}

.hero-copy p, .section-head p, .card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.hero-copy p { font-size: 18px; max-width: 62ch; }
.hero-actions, .hero-points, .status-strip, .status-bar { display: flex; flex-wrap: wrap; gap: 12px; }
.status-strip { padding-top: 4px; }

.hero-slider {
  position: relative;
  display: grid;
  max-width: 62ch;
}

.hero-slider-track {
  position: relative;
  min-height: 210px;
  padding-bottom: 44px;
}

.hero-quote {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 12px;
  padding: 26px 24px 24px 28px;
  border: 1px solid rgba(247, 177, 79, 0.14);
  border-left: 4px solid rgba(247, 177, 79, 0.72);
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(255, 176, 74, 0.12), transparent 36%),
    linear-gradient(180deg, rgba(255, 206, 120, 0.11), rgba(255, 140, 40, 0.04));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03), 0 18px 48px rgba(0,0,0,0.18);
  opacity: 0;
  pointer-events: none;
  transform: translate(0, 0);
  transition: opacity 900ms ease-in-out;
}

.hero-quote.is-active {
  opacity: 1;
  pointer-events: auto;
}

.hero-quote-kicker {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #f0bb69;
}

.hero-quote-mark {
  position: absolute;
  top: 10px;
  right: 18px;
  font-size: 88px;
  line-height: 1;
  font-weight: 800;
  color: rgba(255, 211, 138, 0.12);
  pointer-events: none;
}

.hero-quote p {
  margin: 0;
  width: 100%;
  max-width: 100%;
  font-size: clamp(24px, 2.5vw, 34px);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.04em;
  color: #fff2d6;
  text-align: center;
  white-space: normal;
  overflow-wrap: anywhere;
}

.hero-slider-controls {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  z-index: 2;
}

.hero-slider-dots {
  display: flex;
  gap: 10px;
  align-items: center;
}

.hero-dot {
  width: 30px;
  height: 12px;
  border-radius: 999px;
  border: 0;
  background: rgba(255, 210, 132, 0.25);
  box-shadow: inset 0 0 0 1px rgba(255, 205, 120, 0.12);
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.hero-dot.is-active {
  background: linear-gradient(180deg, #ffd68c 0%, #f79e34 100%);
  transform: scale(1.02);
  box-shadow: 0 0 18px rgba(247, 147, 26, 0.35);
}

.status-chip, .data-mode-chip {
  border: 1px solid rgba(255, 185, 84, 0.14);
  background: rgba(255, 185, 84, 0.05);
  color: var(--muted);
  font-size: 14px;
  padding: 10px 14px;
}
.status-chip strong { color: var(--ink); }
.data-mode-chip { width: fit-content; }

.hero-card {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  border: 1px solid rgba(255, 189, 92, 0.18);
  background: linear-gradient(180deg, rgba(255, 174, 64, 0.08), rgba(18, 12, 7, 0.7));
  box-shadow: var(--shadow);
  min-height: 540px;
}
.hero-card-scene {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 32px;
  background:
    radial-gradient(circle at 74% 16%, rgba(255, 197, 100, 0.18), transparent 22%),
    radial-gradient(circle at 28% 64%, rgba(247, 147, 26, 0.14), transparent 26%),
    linear-gradient(180deg, rgba(14, 10, 6, 0.96), rgba(18, 12, 7, 0.76));
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  opacity: 0.72;
}
.hero-orb-one {
  width: 220px;
  height: 220px;
  top: 44px;
  right: 28px;
  background: radial-gradient(circle, rgba(255, 216, 136, 0.26) 0%, rgba(247, 147, 26, 0.18) 46%, transparent 70%);
}
.hero-orb-two {
  width: 280px;
  height: 280px;
  bottom: 42px;
  left: 26px;
  background: radial-gradient(circle, rgba(247, 147, 26, 0.18) 0%, rgba(125, 67, 20, 0.12) 44%, transparent 72%);
}
.hero-art {
  position: absolute;
  inset: auto;
  object-fit: contain;
}
.hero-art-front {
  right: 6px;
  bottom: 14px;
  width: clamp(260px, 34vw, 430px);
  max-height: calc(100% - 72px);
  filter: drop-shadow(0 24px 42px rgba(0, 0, 0, 0.28));
}

.treasury-visual-panel {
  padding: 10px;
  overflow: hidden;
}

.treasury-art {
  display: block;
  width: 100%;
  min-height: 280px;
  max-height: 420px;
  object-fit: contain;
  object-position: center bottom;
  border-radius: 24px;
  border: 1px solid rgba(255, 189, 92, 0.12);
}
.hero-overlay {
  position: absolute;
  inset: auto 18px 18px 18px;
  padding: 18px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(18,12,7,0.45), rgba(12,8,4,0.88));
  border: 1px solid rgba(255, 188, 92, 0.16);
  display: grid;
  gap: 10px;
}
.hero-loop { font-size: 24px; letter-spacing: -0.04em; }

.section-head {
  display: grid;
  gap: 10px;
  margin-bottom: 22px;
  max-width: 66ch;
  position: relative;
  z-index: 1;
}
.section-head h3 { font-size: clamp(28px, 4vw, 44px); line-height: 1.05; }
.section-head p { font-size: 17px; }

.section-visual {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 24px;
  align-items: center;
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
}

.section-visual-left .section-jack-panel {
  order: -1;
}

.section-visual-compact {
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.72fr);
}

.section-visual .section-head {
  margin-bottom: 0;
}

.section-jack-panel {
  position: relative;
  min-height: 300px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 22px 18px 0;
  border-radius: 28px;
  border: 1px solid rgba(255, 189, 92, 0.12);
  background:
    radial-gradient(circle at 72% 18%, rgba(255, 194, 96, 0.16), transparent 24%),
    radial-gradient(circle at 18% 72%, rgba(247, 147, 26, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(18, 12, 7, 0.38));
  overflow: hidden;
}

.section-jack-panel::after {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: -18px;
  height: 64px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(247, 147, 26, 0.24) 0%, rgba(247, 147, 26, 0.08) 44%, transparent 72%);
  filter: blur(18px);
  pointer-events: none;
}

.section-jack-panel-compact {
  min-height: 260px;
}

.section-jack-panel-story {
  width: min(100%, 420px);
  max-width: 420px;
  min-height: 320px;
  justify-self: end;
}

.section-jack-art {
  position: relative;
  z-index: 1;
  display: block;
  width: min(100%, 460px);
  max-width: min(100%, 460px);
  max-height: 360px;
  height: auto;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 20px 38px rgba(0, 0, 0, 0.34));
}

.section-jack-art-console {
  max-width: min(100%, 500px);
  max-height: 330px;
}

.section-jack-art-story {
  max-width: min(100%, 390px);
  max-height: 335px;
}

#roadmap .section-jack-panel {
  min-height: 260px;
  align-items: center;
  padding-top: 12px;
}

#roadmap .section-jack-art {
  width: min(100%, 360px);
  max-width: min(100%, 360px);
  max-height: 300px;
  object-position: center center;
}

.section-disclaimer {
  margin-top: 10px;
  color: var(--soft);
  font-size: 13px !important;
  line-height: 1.7;
}

.grid-3, .grid-2, .wallet-layout, .calc-layout, .lock-layout, .faq-grid, .split, .dashboard-grid, .kpi-grid, .timeline {
  display: grid;
  gap: 18px;
}
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.wallet-layout, .calc-layout, .lock-layout, .faq-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.dashboard-grid { grid-template-columns: 1.1fr 0.9fr; }
.dashboard-grid > .mini-panel:only-child { grid-column: 1 / -1; }
.kpi-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.split { grid-template-columns: repeat(2, minmax(0, 1fr)); }

#stakingHighlights,
.lock-layout {
  align-items: start;
}

#stakingHighlights > .card,
.lock-layout > .card {
  display: grid;
  align-content: start;
  gap: 18px;
}

.card, .feature-card, .mini-panel, .timeline-step {
  background: linear-gradient(180deg, var(--panel), var(--panel-2));
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}
.card { padding: 22px; min-width: 0; }
.feature-card, .mini-panel, .timeline-step { padding: 20px; }
.card h4, .card h5, .feature-card h4, .mini-panel h4, .timeline-step h4 { margin: 0; letter-spacing: -0.04em; }

.feature-card { display: grid; gap: 14px; align-content: start; position: relative; }
.card-body { position: relative; z-index: 1; display: grid; gap: 12px; }
.tax-card-head { display: grid; grid-template-columns: auto 1fr; gap: 14px; align-items: start; }
.tax-step-icon { background: linear-gradient(135deg, rgba(255, 179, 59, 0.18), rgba(255, 111, 61, 0.16)); color: var(--gold-strong); }
.tax-card-title-stack { display: grid; gap: 8px; min-width: 0; }
.tax-card-title-row {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  max-width: 100%;
}
.tax-card-title-row h4 { min-width: 0; }
.info-callout {
  position: relative;
  display: inline-grid;
  flex: 0 0 auto;
  align-items: center;
  justify-items: center;
}
.info-dot {
  width: 24px; height: 24px; border-radius: 999px; display: grid; place-items: center; font-size: 12px; font-weight: 800;
  border: 1px solid rgba(255, 188, 92, 0.25);
  background: rgba(255, 188, 92, 0.14); color: var(--gold-strong);
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0,0,0,0.18);
}
.info-callout-text {
  position: absolute;
  top: 50%;
  left: calc(100% + 10px);
  z-index: 40;
  width: min(340px, calc(100vw - 72px));
  padding: 13px 40px 13px 14px;
  border-radius: 16px;
  background: rgba(18, 12, 7, 0.98);
  border: 1px solid rgba(255, 188, 92, 0.24);
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
  box-shadow: 0 18px 42px rgba(0,0,0,0.42);
  opacity: 0;
  visibility: hidden;
  transform: translate(6px, -50%) scale(0.98);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
  pointer-events: none;
}
.info-callout-text::before {
  content: '';
  position: absolute;
  left: -7px;
  top: 50%;
  width: 12px;
  height: 12px;
  transform: translateY(-50%) rotate(45deg);
  background: rgba(18, 12, 7, 0.98);
  border-left: 1px solid rgba(255, 188, 92, 0.24);
  border-bottom: 1px solid rgba(255, 188, 92, 0.24);
}
.info-callout-close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 24px;
  height: 24px;
  border: 1px solid rgba(255, 188, 92, 0.24);
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255, 188, 92, 0.12);
  color: var(--cream);
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
}
.info-callout-copy { position: relative; z-index: 1; display: block; }
.info-callout.is-open .info-callout-text {
  opacity: 1;
  visibility: visible;
  transform: translate(0, -50%) scale(1);
  pointer-events: auto;
}
.tax-chart-wrap { display: grid; grid-template-columns: 120px 1fr; gap: 16px; align-items: center; }
.tax-pie {
  --tax-pie: conic-gradient(rgba(255,255,255,0.08) 0 100%);
  width: 120px; height: 120px; border-radius: 50%;
  background: var(--tax-pie);
  position: relative;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.06), 0 10px 24px rgba(0,0,0,0.22);
}
.tax-pie::after {
  content: ""; position: absolute; inset: 18px; border-radius: 50%;
  background: linear-gradient(180deg, rgba(15, 11, 8, 0.96), rgba(25, 18, 11, 0.96));
  border: 1px solid rgba(255,255,255,0.05);
}
.tax-legend { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.tax-legend li {
  display: grid; grid-template-columns: auto 1fr auto; gap: 10px; align-items: center;
  color: var(--muted); font-size: 13px;
}
.tax-legend strong { color: var(--ink); }
.tax-legend-swatch {
  --swatch: #fff;
  width: 12px; height: 12px; border-radius: 999px; background: var(--swatch);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.08);
}
.feature-icon {
  width: 46px; height: 46px; border-radius: 16px; display: grid; place-items: center;
  font-size: 13px; font-weight: 700; color: var(--gold-strong);
  background: linear-gradient(135deg, rgba(255, 188, 92, 0.12), rgba(255, 122, 0, 0.18));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.1);
}

.brand-token {
  display: inline-block;
  font-weight: 800;
  letter-spacing: -0.03em;
  background: linear-gradient(180deg, #fff2d4 0%, #f7b14f 46%, #8d4c18 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  white-space: nowrap;
}
.brand-symbol,
.brand-btcb,
.brand-bnb,
.brand-bitcoin {
  background-image: linear-gradient(180deg, #ffe2a2 0%, #f7931a 48%, #7a4314 100%);
}
.token-amount {
  display: inline-flex;
  align-items: baseline;
  gap: 0.18em;
  white-space: nowrap;
  max-width: 100%;
}

.brand-btcb .brand-b,
.brand-bnb .brand-b {
  color: transparent;
  background: linear-gradient(180deg, #ffd38a 0%, #f7931a 46%, #8d4c18 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.brand-btcb .brand-rest,
.brand-bnb .brand-rest,
.brand-btcb .brand-dollar,
.brand-bnb .brand-dollar,
.brand-bitcoin {
  color: transparent;
  background: linear-gradient(180deg, #ffe2a2 0%, #f7931a 46%, #7a4314 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.feature-list, .metric-list, .wallet-list, .lock-list, .faq-stack, .treasury-events, .wallet-box, .activity-list, .allocation-bars {
  list-style: none; padding: 0; margin: 0; display: grid; gap: 12px;
}
.wallet-list li, .lock-list li, .feature-list li, .ready-list li, .waiting-list li {
  color: var(--muted); display: flex; align-items: flex-start; gap: 10px; line-height: 1.6; min-width: 0;
}
.wallet-list li > span:not(.dot),
.lock-list li > span:not(.dot),
.feature-list li > span:not(.dot),
.ready-list li > span:not(.dot),
.waiting-list li > span:not(.dot) {
  min-width: 0;
  overflow-wrap: anywhere;
}
.dot {
  width: 8px; height: 8px; border-radius: 50%; background: linear-gradient(135deg, var(--gold-strong), var(--orange));
  margin-top: 9px; flex: 0 0 auto;
}
.wallet-value, .highlight { color: var(--ink); overflow-wrap: anywhere; word-break: break-word; }
.highlight { font-weight: 700; font-variant-numeric: tabular-nums; }

.live-board-shell { display: grid; gap: 18px; }
.live-board-top { display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; }
.tabs {
  display: inline-flex; flex-wrap: wrap; gap: 10px; background: rgba(255, 188, 92, 0.06);
  border: 1px solid rgba(255, 188, 92, 0.12); padding: 8px; border-radius: 999px; width: fit-content;
}
.tab {
  border: 0; background: transparent; color: var(--muted); padding: 10px 16px; cursor: pointer; min-height: 42px; font-weight: 600;
}
.tab.active {
  color: #170d03; background: linear-gradient(135deg, var(--gold-strong), var(--orange));
  box-shadow: 0 8px 24px rgba(255, 124, 0, 0.18);
}
.panel { display: none; gap: 16px; }
.panel.active { display: grid; }

.scoreboard-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1.08fr);
  gap: 24px;
  align-items: center;
}
.scoreboard-pie-wrap {
  position: relative;
  min-height: 360px;
  display: grid;
  place-items: center;
  overflow: visible;
}
.scoreboard-chart-frame {
  position: relative;
  width: min(360px, 100%);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  overflow: visible;
}
.scoreboard-pie {
  width: 184px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--scoreboard-pie, conic-gradient(rgba(255,255,255,0.1) 0 100%));
  border: 1px solid rgba(255, 211, 107, 0.2);
  box-shadow: 0 0 0 12px rgba(255, 177, 59, 0.05), 0 22px 58px rgba(0,0,0,0.34);
  position: relative;
  z-index: 1;
}
.scoreboard-pie::after {
  content: "";
  position: absolute;
  inset: 27%;
  border-radius: inherit;
  background: radial-gradient(circle, rgba(22, 14, 5, 0.96), rgba(11, 8, 6, 0.94));
  border: 1px solid rgba(255, 211, 107, 0.18);
}
.scoreboard-pie-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
  z-index: 2;
}
.scoreboard-leader {
  fill: none;
  stroke: rgba(255, 211, 107, 0.86);
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}
.scoreboard-leader-dot {
  fill: var(--gold-strong);
  filter: drop-shadow(0 0 5px rgba(255, 177, 59, 0.9));
}
.scoreboard-label {
  fill: var(--ink);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  paint-order: stroke;
  stroke: rgba(9, 6, 4, 0.78);
  stroke-width: 3px;
  stroke-linejoin: round;
}

.kpi-card {
  padding: 18px; border-radius: 22px; background: rgba(255, 188, 92, 0.04);
  border: 1px solid rgba(255, 189, 92, 0.1); display: grid; gap: 8px;
}
.kpi-card .label, .fine, .mini small, .wallet-meta span:last-child, .allocation-label, .allocation-meta { color: var(--soft); font-size: 12px; line-height: 1.5; }
.kpi-card .value, .big-number, .mini .num {
  font-size: 28px; font-weight: 800; letter-spacing: -0.05em; font-variant-numeric: tabular-nums;
}
.big-number { font-size: 34px; }

.metric-list li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, auto);
  align-items: start;
  justify-content: initial;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 189, 92, 0.1); color: var(--muted);
  min-width: 0;
}
.metric-list li:last-child { border-bottom: 0; padding-bottom: 0; }
.metric-label { min-width: 0; overflow-wrap: anywhere; }
.metric-list strong {
  color: var(--ink);
  min-width: 0;
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: normal;
}
.metric-value-stack {
  display: grid;
  gap: 6px;
  justify-items: end;
  text-align: right;
  min-width: 0;
  max-width: 100%;
}
.metric-sublist { display: grid; gap: 4px; color: var(--soft); font-size: 12px; line-height: 1.5; min-width: 0; }
.metric-sublist span { min-width: 0; overflow-wrap: anywhere; }

/* Home live-board card fit: keep live values inside cards as balances grow/shrink. */
.live-board-shell,
.live-board-shell * {
  box-sizing: border-box;
}
.live-board-shell,
.panel.active,
.scoreboard-layout,
.metric-list,
.metric-list li,
.metric-value-stack,
.metric-sublist,
.kpi-card {
  min-width: 0;
  max-width: 100%;
}
.kpi-card {
  overflow: hidden;
}
.kpi-card .value,
.metric-list strong {
  font-size: clamp(20px, 2.15vw, 28px);
  line-height: 1.08;
  letter-spacing: -0.045em;
  overflow-wrap: anywhere;
  word-break: normal;
}
.metric-list strong {
  display: block;
  max-width: 100%;
}
.metric-value-stack .token-amount,
.metric-sublist .token-amount,
.kpi-card .token-amount {
  max-width: 100%;
  vertical-align: baseline;
}
.metric-sublist {
  width: 100%;
}
.metric-sublist span {
  max-width: 100%;
}

.live-board-shell .brand-token,
.live-board-shell .token-amount .brand-token,
.kpi-card .brand-token,
.metric-list .brand-token {
  display: inline-block !important;
  width: auto !important;
  max-width: max-content;
}
.kpi-card .value .token-amount,
.kpi-card .fine .token-amount {
  display: inline-flex !important;
  width: auto !important;
  max-width: 100%;
}
.kpi-card .fine {
  min-width: 0;
  max-width: 100%;
  overflow-wrap: anywhere;
}

@media (max-width: 760px) {
  .metric-list li {
    grid-template-columns: minmax(0, 1fr);
    gap: 7px;
  }
  .metric-value-stack {
    justify-items: start;
    text-align: left;
    width: 100%;
  }
  .metric-list strong {
    font-size: clamp(18px, 6.2vw, 24px);
    letter-spacing: -0.035em;
  }
}
@media (max-width: 420px) {
  .kpi-card,
  .metric-list li {
    padding-left: 0;
    padding-right: 0;
  }
  .live-board-shell .card-body,
  .live-board-shell .panel,
  .live-board-shell .panel.active {
    min-width: 0;
    max-width: 100%;
  }
  .metric-list strong,
  .metric-sublist,
  .kpi-card .value,
  .kpi-card .fine {
    max-width: 100%;
  }
  .metric-sublist {
    font-size: 11px;
  }
}


.allocation-row { display: grid; gap: 8px; }
.allocation-track {
  height: 12px; border-radius: 999px; overflow: hidden; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.04);
}
.allocation-fill { height: 100%; border-radius: inherit; }
.allocation-fill.treasury { background: linear-gradient(90deg, #ffd36b, #ff7a00); }
.allocation-fill.burn { background: linear-gradient(90deg, #ff9866, #ff5b2d); }
.allocation-fill.support { background: linear-gradient(90deg, #ffe9b8, #c59648); }
.allocation-fill.wallet { background: linear-gradient(90deg, #9dd6ff, #4d84ff); }

.activity-item, .treasury-event, .wallet-row {
  display: grid; gap: 12px; border: 1px solid rgba(255, 189, 92, 0.1); border-radius: 18px; padding: 14px; background: rgba(255, 190, 92, 0.03);
}
.activity-item { grid-template-columns: auto 1fr auto; align-items: center; }
.type-buy, .type-sell, .type-tax, .type-treasury {
  width: 42px; height: 42px; border-radius: 14px; display: grid; place-items: center; font-size: 13px; font-weight: 700;
}
.type-buy { background: rgba(47, 211, 141, 0.12); color: #93ffca; }
.type-sell { background: rgba(255, 125, 105, 0.12); color: #ffc2b7; }
.type-tax, .type-treasury { background: rgba(255, 188, 92, 0.12); color: var(--gold-strong); }

.wallet-row { grid-template-columns: 1fr auto auto; align-items: center; }
.wallet-copy {
  border: 1px solid rgba(255, 190, 92, 0.15); background: rgba(255, 189, 92, 0.05); color: var(--gold-strong); padding: 10px 14px; min-height: 42px;
}
.wallet-copy:disabled { opacity: 0.55; cursor: not-allowed; }
.wallet-link {
  display: inline-flex; align-items: center; justify-content: center; min-height: 42px; padding: 10px 14px; border-radius: 999px;
  border: 1px solid rgba(255, 190, 92, 0.15); background: rgba(255, 189, 92, 0.05); color: var(--ink); font-weight: 600;
}
.gradient-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 190, 92, 0.18);
  background: linear-gradient(135deg, rgba(255, 211, 107, 0.16), rgba(255, 122, 0, 0.12));
  color: #fff3d9;
  font-weight: 700;
  box-shadow: 0 12px 26px rgba(255, 120, 0, 0.12);
}
.gradient-link:hover { transform: translateY(-1px); border-color: rgba(255, 200, 104, 0.34); }
.footer-link {
  display: inline;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: linear-gradient(180deg, #fff2d4 0%, #f7b14f 46%, #8d4c18 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  box-shadow: none;
  font-weight: 700;
}
.footer-link:hover { opacity: 0.92; }
.wallet-meta { display: grid; gap: 4px; min-width: 0; }
.wallet-address { word-break: break-all; }

.calc-box, .connect-box { display: grid; gap: 18px; }
.field { display: grid; gap: 8px; }
label {
  color: var(--gold-strong); font-size: 13px; text-transform: uppercase; letter-spacing: 0.14em; font-weight: 700;
}
.input {
  width: 100%; border-radius: 16px; border: 1px solid rgba(255, 190, 92, 0.16); background: rgba(255, 186, 84, 0.05);
  padding: 14px 16px; color: var(--ink); outline: none; min-height: 50px;
}
.input:focus {
  border-color: rgba(255, 189, 92, 0.4); box-shadow: 0 0 0 4px rgba(255, 187, 89, 0.08);
}
.range { width: 100%; accent-color: var(--gold); }
.formula {
  padding: 16px; border-radius: 18px; background: rgba(255, 188, 92, 0.04); border: 1px dashed rgba(255, 188, 92, 0.18);
  color: var(--muted); font-size: 14px; line-height: 1.7;
}
.mini {
  border: 1px solid rgba(255, 190, 92, 0.1); border-radius: 18px; padding: 16px; background: rgba(255, 186, 84, 0.03); display: grid; gap: 8px;
}

.wallet-state {
  border: 1px solid rgba(255, 189, 92, 0.12); border-radius: 20px; padding: 16px; background: rgba(255, 190, 92, 0.04);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px;
}
.tag {
  display: inline-flex; align-items: center; gap: 8px; border-radius: 999px; padding: 8px 12px;
  background: rgba(47, 211, 141, 0.08); color: #b6ffd8; border: 1px solid rgba(47, 211, 141, 0.14); font-size: 13px; font-weight: 700;
}
.tag.pending {
  color: var(--gold-strong); background: rgba(255, 188, 92, 0.08); border-color: rgba(255, 188, 92, 0.14);
}

.timeline { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.timeline-step { display: grid; gap: 10px; position: relative; }
.timeline-step .step-num { color: var(--gold-strong); font-weight: 800; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; }

.roadmap-map {
  --road-progress: 0%;
  position: relative;
  display: grid;
  gap: clamp(26px, 5vw, 54px);
  padding: clamp(24px, 5vw, 52px) 0;
  isolation: isolate;
}
.roadmap-map::before,
.roadmap-map::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 26px;
  bottom: 26px;
  width: 14px;
  transform: translateX(-50%);
  border-radius: 999px;
  pointer-events: none;
}
.roadmap-map::before {
  background: repeating-linear-gradient(180deg, rgba(255, 238, 201, 0.12) 0 18px, rgba(255, 143, 28, 0.05) 18px 34px);
  box-shadow: inset 0 0 0 1px rgba(255, 204, 120, 0.12), 0 0 42px rgba(0, 0, 0, 0.45);
}
.roadmap-map::after {
  background: linear-gradient(180deg, #fff4bf 0%, #ffd36b 18%, #ffb12f 42%, #f5821f 68%, rgba(255, 235, 178, 0.16) 100%);
  opacity: 0.86;
  clip-path: inset(0 0 26% 0 round 999px);
  filter: drop-shadow(0 0 22px rgba(255, 196, 73, 0.36));
}
.roadmap-checkpoint {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 72px minmax(0, 1fr);
  align-items: center;
  z-index: 1;
}
.roadmap-checkpoint.side-left .roadmap-card { grid-column: 1; }
.roadmap-checkpoint.side-right .roadmap-card { grid-column: 3; }
.roadmap-bend {
  position: absolute;
  left: 50%;
  top: calc(50% + 18px);
  width: clamp(130px, 18vw, 230px);
  height: clamp(78px, 9vw, 122px);
  border: 10px solid rgba(255, 190, 78, 0.26);
  border-left: 0;
  border-bottom: 0;
  border-radius: 0 44px 0 0;
  pointer-events: none;
  z-index: -1;
  filter: drop-shadow(0 0 18px rgba(255, 154, 40, 0.14));
}
.roadmap-checkpoint.side-right .roadmap-bend {
  left: auto;
  right: 50%;
  border-right: 0;
  border-left: 10px solid rgba(255, 190, 78, 0.22);
  border-radius: 44px 0 0 0;
}
.roadmap-checkpoint:last-child .roadmap-bend { display: none; }
.roadmap-bend::after {
  content: "";
  position: absolute;
  inset: -10px;
  border: inherit;
  border-left: inherit;
  border-right: inherit;
  border-bottom: 0;
  border-radius: inherit;
  border-color: rgba(255, 215, 112, 0.34);
  clip-path: inset(0 calc(100% - var(--road-progress)) 0 0);
}
.roadmap-road-node {
  grid-column: 2;
  grid-row: 1;
  display: grid;
  place-items: center;
  position: relative;
  min-height: 100%;
}
.roadmap-road-node::before {
  content: "";
  position: absolute;
  width: clamp(42px, 5vw, 62px);
  height: 6px;
  background: linear-gradient(90deg, rgba(255, 211, 107, 0.55), rgba(255, 122, 0, 0.16));
  border-radius: 999px;
  top: 50%;
}
.side-left .roadmap-road-node::before { right: 50%; }
.side-right .roadmap-road-node::before { left: 50%; transform: scaleX(-1); }
.roadmap-node-dot {
  width: 28px;
  aspect-ratio: 1;
  border-radius: 999px;
  border: 4px solid rgba(255, 239, 206, 0.92);
  background: radial-gradient(circle at 35% 28%, #fff7d7, #ffd36b 38%, #ff7a00 76%);
  box-shadow: 0 0 0 9px rgba(255, 177, 64, 0.14), 0 0 36px rgba(255, 137, 28, 0.34);
}
.roadmap-checkpoint.is-partial .roadmap-node-dot { filter: saturate(calc(0.45 + (var(--road-progress) / 100) * 0.75)); }
.roadmap-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: start;
  padding: clamp(18px, 3vw, 26px);
  border: 1px solid rgba(255, 206, 125, 0.18);
  border-radius: 34px;
  background:
    radial-gradient(circle at 16% 14%, rgba(255, 210, 112, 0.10), transparent 36%),
    linear-gradient(180deg, rgba(21, 14, 9, 0.94), rgba(8, 6, 4, 0.94));
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 241, 214, 0.07);
  overflow: hidden;
}
.roadmap-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--road-progress);
  max-width: 100%;
  background: linear-gradient(90deg, rgba(255, 235, 170, 0.14), rgba(255, 196, 73, 0.11), rgba(255, 122, 0, 0.07));
  pointer-events: none;
}
.roadmap-card-copy,
.roadmap-avatar-wrap,
.roadmap-points { position: relative; z-index: 1; }
.roadmap-kicker {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  color: var(--gold-strong);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.roadmap-card h4 {
  margin: 0;
  font-size: clamp(26px, 4.2vw, 48px);
  line-height: 0.94;
  letter-spacing: -0.07em;
  background: linear-gradient(180deg, #fff2d4 0%, #f7b14f 48%, #8d4c18 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.roadmap-title-line { margin: 8px 0 0; color: var(--ink); font-weight: 800; }
.roadmap-status {
  display: inline-flex;
  width: fit-content;
  margin-top: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 211, 130, 0.18);
  background: rgba(255, 188, 92, 0.08);
  color: var(--gold-strong);
  font-size: 12px;
  font-weight: 800;
}
.roadmap-avatar-wrap {
  --roadmap-avatar-size: clamp(88px, 10vw, 120px);
  --roadmap-avatar-padding: clamp(8px, 1.15vw, 13px);
  position: relative;
  width: var(--roadmap-avatar-size);
}
.roadmap-avatar {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 999px;
  border: 3px solid rgba(255, 223, 169, 0.32);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.36), inset 0 1px 0 rgba(255, 242, 214, 0.16);
}
.roadmap-avatar img {
  width: 100%;
  height: 100%;
  padding: var(--roadmap-avatar-padding);
  box-sizing: border-box;
  object-fit: contain;
  object-position: center center;
}
.roadmap-avatar-grey { filter: grayscale(1) brightness(0.62) contrast(1.08); opacity: 0.84; }
.roadmap-avatar-colour {
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--road-progress);
  overflow: hidden;
}
.roadmap-avatar-colour img {
  width: var(--roadmap-avatar-size);
  max-width: none;
  filter: saturate(1.12) contrast(1.04);
}
.roadmap-complete-tick {
  position: absolute;
  right: -6px;
  top: -8px;
  display: grid;
  place-items: center;
  width: 34px;
  aspect-ratio: 1;
  border-radius: 999px;
  background: linear-gradient(180deg, #9affbd, #18b95f);
  color: #052b13;
  border: 2px solid rgba(234, 255, 240, 0.95);
  font-size: 22px;
  font-weight: 1000;
  box-shadow: 0 10px 24px rgba(24, 185, 95, 0.32);
}
.roadmap-hat-stamp {
  position: absolute;
  left: -18px;
  bottom: -14px;
  width: 68px;
  aspect-ratio: 1;
  transform: rotate(-12deg);
  border: 2px solid rgba(255, 223, 134, 0.88);
  border-radius: 999px;
  background:
    url('../assets/roadmap-passport-stamp.png') center / 86% auto no-repeat,
    radial-gradient(circle at 42% 35%, rgba(255, 246, 202, 0.96), rgba(255, 196, 73, 0.82) 48%, rgba(116, 62, 14, 0.72));
  box-shadow: inset 0 0 0 1px rgba(255, 249, 226, 0.32), 0 0 18px rgba(255, 188, 76, 0.28), 0 12px 22px rgba(0,0,0,0.32);
}
.roadmap-hat-stamp::before,
.roadmap-hat-stamp::after,
.roadmap-hat-stamp span { display: none; }
.roadmap-points {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.roadmap-list {
  padding: 14px;
  border-radius: 22px;
  background: rgba(0, 0, 0, 0.16);
  border: 1px solid rgba(255, 206, 125, 0.11);
}
.roadmap-list strong {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-strong);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 11px;
}
.roadmap-list ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.roadmap-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px;
  color: var(--muted);
  line-height: 1.55;
  font-size: 13px;
}
.roadmap-actions {
  grid-column: 1 / -1;
  display: flex;
  justify-content: flex-start;
  margin-top: -2px;
}
.roadmap-small-cta {
  min-height: 0;
  padding: 9px 13px;
  font-size: 12px;
}
.roadmap-small-cta .ticker-gradient { filter: brightness(1.08); }
.roadmap-list-todo { opacity: 0.86; }
.roadmap-list-todo .dot { background: #8b8b8b; box-shadow: none; }
@media (max-width: 980px) {
  .roadmap-map::before,
  .roadmap-map::after { left: 24px; transform: none; }
  .roadmap-checkpoint { grid-template-columns: 48px minmax(0, 1fr); }
  .roadmap-checkpoint.side-left .roadmap-card,
  .roadmap-checkpoint.side-right .roadmap-card { grid-column: 2; }
  .roadmap-road-node { grid-column: 1; }
  .roadmap-road-node::before { left: 50%; right: auto; width: 36px; }
  .roadmap-bend { display: none; }
  .side-right .roadmap-road-node::before { transform: none; }
}
@media (max-width: 680px) {
  .roadmap-card { grid-template-columns: 1fr; }
  .roadmap-avatar-wrap { --roadmap-avatar-size: 104px; --roadmap-avatar-padding: 9px; }
  .roadmap-points { grid-template-columns: 1fr; }
}

details {
  border: 1px solid rgba(255, 189, 92, 0.12); border-radius: 18px; padding: 0 18px; background: rgba(255, 189, 92, 0.03);
}
summary {
  list-style: none; cursor: pointer; padding: 18px 0; font-weight: 700; display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.faq-question-text {
  display: block;
  flex: 1 1 auto;
  min-width: 0;
  overflow-wrap: normal;
}
.faq-question-text .brand-token {
  white-space: normal;
}
.faq-toggle {
  flex: 0 0 auto;
  margin-left: 12px;
}
summary::-webkit-details-marker { display: none; }
details p { padding: 0 0 18px; }

.footer { padding: 10px 0 40px; color: var(--soft); font-size: 14px; }
.footer-line {
  border-top: 1px solid rgba(255, 189, 92, 0.08); padding-top: 20px; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 18px;
}
.footer-left,
.footer-right {
  display: grid;
  gap: 12px;
}
.footer-disclaimer {
  max-width: 78ch;
  line-height: 1.7;
}
.footer-disclaimer .footer-link {
  white-space: nowrap;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.footer-social-icon {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  color: #ffe2a1;
  border: 1px solid rgba(255, 198, 96, 0.26);
  background: radial-gradient(circle at 35% 20%, rgba(255, 244, 188, 0.22), rgba(255, 184, 58, 0.12) 42%, rgba(74, 38, 12, 0.42) 100%);
  box-shadow: 0 10px 24px rgba(255, 143, 28, 0.14), inset 0 0 16px rgba(255, 220, 132, 0.08);
}
.footer-social-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  filter: drop-shadow(0 0 8px rgba(255, 197, 84, 0.24));
}
.footer-social-icon:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 220, 138, 0.5);
  color: #fff4cf;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.footer-version {
  display: inline-flex;
  align-items: center;
  margin-left: 8px;
  padding: 2px 7px;
  border: 1px solid rgba(255, 189, 92, 0.18);
  border-radius: 999px;
  color: var(--gold-soft);
  background: rgba(255, 189, 92, 0.07);
  font-size: 11px;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.page-hero,
.doc-page-card {
  max-width: 920px;
  min-width: 0;
}

.page-hero *,
.doc-page-card *,
.bitcoin-paper-shell * {
  max-width: 100%;
}

.page-hero p,
.doc-page-card p,
.doc-page-card li,
.doc-page-card strong,
.doc-actions a,
.bitcoin-paper-shell p,
.bitcoin-paper-shell h2,
.bitcoin-paper-shell h3,
.bitcoin-paper-shell h4,
.bitcoin-paper-chip,
.bitcoin-paper-page-note {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.doc-page-card {
  display: grid;
  gap: 18px;
}

.doc-section {
  display: grid;
  gap: 12px;
}

.doc-section h4,
.doc-section h5 {
  margin: 0;
}

.doc-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.mining-socials {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.9rem;
}

.mining-socials span {
  color: var(--gold);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.mining-socials a {
  color: var(--ink);
  text-decoration: none;
  border: 1px solid rgba(255, 186, 84, 0.18);
  border-radius: 999px;
  padding: 6px 10px;
  background: rgba(255, 186, 84, 0.06);
}

.mining-socials a:hover {
  border-color: rgba(255, 186, 84, 0.42);
  background: rgba(255, 186, 84, 0.12);
}

.bitcoin-paper-shell {
  max-width: 1200px;
}

.bitcoin-paper-lead {
  max-width: 72ch;
}

.bitcoin-paper-viewer {
  display: grid;
  gap: 22px;
}

.bitcoin-paper-topbar {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}

.bitcoin-paper-status {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.bitcoin-paper-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 189, 92, 0.16);
  background: linear-gradient(180deg, rgba(255, 189, 92, 0.12), rgba(255, 189, 92, 0.05));
  color: #fff0d2;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.bitcoin-paper-stage {
  position: relative;
  padding: clamp(14px, 2vw, 24px);
  border-radius: 34px;
  border: 1px solid rgba(255, 189, 92, 0.16);
  background:
    radial-gradient(circle at top left, rgba(255, 191, 92, 0.1), transparent 34%),
    radial-gradient(circle at bottom right, rgba(255, 122, 0, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(15, 10, 6, 0.98), rgba(8, 6, 4, 0.98));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.bitcoin-paper-glow {
  position: absolute;
  inset: auto -10% -35% auto;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(255, 164, 58, 0.18), rgba(255, 164, 58, 0));
  pointer-events: none;
}

.bitcoin-paper-reading-room {
  position: relative;
  display: grid;
  grid-template-columns: minmax(220px, 270px) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.bitcoin-paper-outline {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 16px;
  padding: 20px;
  border-radius: 26px;
  border: 1px solid rgba(255, 189, 92, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 214, 143, 0.08), rgba(255, 214, 143, 0.02)),
    rgba(12, 9, 6, 0.9);
  box-shadow: inset 0 1px 0 rgba(255, 239, 210, 0.08);
}

.bitcoin-paper-outline-head {
  display: grid;
  gap: 8px;
}

.bitcoin-paper-outline-head h4,
.bitcoin-paper-page-header h4,
.bitcoin-paper-meta h4,
.bitcoin-paper-loading-card h4,
.bitcoin-paper-error-card h4 {
  margin: 0;
}

.bitcoin-paper-outline-head p,
.bitcoin-paper-topbar .section-head p,
.bitcoin-paper-meta p,
.bitcoin-paper-loading-card p,
.bitcoin-paper-error-card p {
  margin: 0;
}

.bitcoin-paper-frame {
  position: relative;
  min-height: 780px;
  border-radius: 28px;
  border: 1px solid rgba(255, 189, 92, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 190, 92, 0.06), rgba(255, 190, 92, 0.01)),
    rgba(10, 7, 5, 0.94);
  padding: clamp(14px, 2vw, 24px);
  box-shadow:
    inset 0 1px 0 rgba(255, 241, 214, 0.08),
    0 20px 60px rgba(0, 0, 0, 0.28);
}

.bitcoin-paper-frame.is-rendering {
  opacity: 0.88;
}

.bitcoin-paper-frame.has-error .bitcoin-paper-page-surface {
  opacity: 0.3;
}

.bitcoin-paper-progress {
  overflow: hidden;
  height: 6px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: rgba(255, 204, 112, 0.08);
}

.bitcoin-paper-progress span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #f3b64f 0%, #f7931a 48%, #ffe8bb 100%);
  box-shadow: 0 0 18px rgba(247, 147, 26, 0.28);
  transition: width 220ms ease;
}

.bitcoin-paper-page-surface {
  position: relative;
  display: grid;
  gap: 20px;
  min-height: 700px;
  padding: clamp(24px, 3vw, 42px);
  border-radius: 24px;
  border: 1px solid rgba(122, 77, 31, 0.22);
  background:
    linear-gradient(180deg, rgba(255, 252, 247, 0.98), rgba(244, 235, 217, 0.98)),
    #f6efdf;
  color: #2f2113;
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.28),
    inset 0 0 0 1px rgba(255, 255, 255, 0.42);
  isolation: isolate;
}

.bitcoin-paper-page-surface::before,
.bitcoin-paper-page-surface::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.bitcoin-paper-page-surface::before {
  inset: 18px;
  border-radius: 18px;
  border: 1px solid rgba(133, 92, 44, 0.1);
}

.bitcoin-paper-page-surface::after {
  inset: 0;
  background: radial-gradient(circle at top, rgba(255, 255, 255, 0.16), transparent 42%);
}

.bitcoin-paper-page-meta,
.bitcoin-paper-page-header,
.bitcoin-paper-text {
  position: relative;
  z-index: 1;
}

.bitcoin-paper-page-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.bitcoin-paper-page-meta .bitcoin-paper-chip {
  color: #553519;
  border-color: rgba(122, 77, 31, 0.14);
  background: rgba(247, 147, 26, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22);
  font-size: 12px;
}

.bitcoin-paper-page-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  align-items: end;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(122, 77, 31, 0.16);
}

.bitcoin-paper-page-header h4 {
  color: #2f2113;
  font-size: clamp(24px, 3vw, 34px);
}

.bitcoin-paper-outline-head h4 {
  color: #fff0d2;
  font-size: 20px;
}

.bitcoin-paper-meta h4 {
  font-size: 21px;
}

.bitcoin-paper-page-header .eyebrow {
  display: inline-block;
  color: #9a6323;
  letter-spacing: 0.14em;
}

.bitcoin-paper-outline .eyebrow,
.bitcoin-paper-loading-card .eyebrow,
.bitcoin-paper-error-card .eyebrow {
  color: #ffcf7c;
}

.bitcoin-paper-outline-head p {
  color: rgba(255, 240, 210, 0.76);
}

.bitcoin-paper-outline-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.bitcoin-paper-outline-stat {
  display: grid;
  gap: 4px;
  padding: 12px 10px;
  border-radius: 16px;
  border: 1px solid rgba(255, 189, 92, 0.1);
  background: linear-gradient(180deg, rgba(255, 210, 132, 0.08), rgba(255, 210, 132, 0.02));
  text-align: center;
}

.bitcoin-paper-outline-stat strong {
  color: #fff5e3;
  font-size: 14px;
  letter-spacing: 0.05em;
}

.bitcoin-paper-outline-stat span {
  color: rgba(255, 240, 210, 0.72);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.bitcoin-paper-page-counter {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(122, 77, 31, 0.12);
  background: rgba(122, 77, 31, 0.06);
  color: #6e4618;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 12px;
  font-variant-numeric: tabular-nums;
}

.bitcoin-paper-text {
  margin: 0;
  white-space: pre-wrap;
  font-family: "Georgia", "Times New Roman", serif;
  font-size: clamp(14px, 1.5vw, 17px);
  line-height: 1.82;
  color: #2e2113;
  overflow-wrap: anywhere;
  hyphens: auto;
  text-wrap: pretty;
}

.bitcoin-paper-page-body {
  position: relative;
  padding: clamp(18px, 2vw, 24px);
  border-radius: 20px;
  border: 1px solid rgba(122, 77, 31, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.45), rgba(255, 255, 255, 0.18)),
    repeating-linear-gradient(180deg, rgba(104, 74, 37, 0.035) 0px, rgba(104, 74, 37, 0.035) 1px, transparent 1px, transparent 34px);
}

.bitcoin-paper-page-body::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.34), transparent 32%),
    radial-gradient(circle at bottom right, rgba(247, 147, 26, 0.06), transparent 38%);
}

.bitcoin-paper-page-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid rgba(122, 77, 31, 0.14);
}

.bitcoin-paper-page-note {
  color: #8e6332;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bitcoin-paper-text::selection {
  background: rgba(247, 147, 26, 0.24);
}

.bitcoin-paper-loading,
.bitcoin-paper-error {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  padding: 24px;
  text-align: center;
}

.bitcoin-paper-loading[hidden],
.bitcoin-paper-error[hidden] {
  display: none;
}

.bitcoin-paper-loading-card,
.bitcoin-paper-error-card {
  max-width: 520px;
  display: grid;
  gap: 12px;
  padding: 22px;
  border-radius: 22px;
  border: 1px solid rgba(255, 189, 92, 0.14);
  background: rgba(19, 13, 8, 0.92);
  color: #fff0d2;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.26);
}

.bitcoin-paper-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.bitcoin-paper-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.bitcoin-paper-btn {
  min-width: 148px;
  font-family: inherit;
}

.bitcoin-paper-btn:disabled {
  opacity: 0.55;
  cursor: default;
}

.bitcoin-paper-page-jump {
  display: grid;
  gap: 10px;
}

.bitcoin-paper-page-dot {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  width: 100%;
  min-height: 64px;
  padding: 12px 14px;
  border-radius: 18px;
  border: 1px solid rgba(255, 189, 92, 0.12);
  background: rgba(255, 189, 92, 0.04);
  color: #fff0d2;
  text-align: left;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.bitcoin-paper-page-dot:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 200, 104, 0.34);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
}

.bitcoin-paper-page-dot.is-active {
  border-color: rgba(255, 200, 104, 0.42);
  background: linear-gradient(135deg, rgba(255, 211, 107, 0.18), rgba(255, 122, 0, 0.12));
}

.bitcoin-paper-page-dot-number {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255, 246, 229, 0.08);
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.bitcoin-paper-page-dot-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.bitcoin-paper-page-dot.is-active .bitcoin-paper-page-dot-number,
.bitcoin-paper-page-dot.is-active .bitcoin-paper-page-dot-label {
  color: #fff8eb;
}

.bitcoin-paper-page-dot.is-active .bitcoin-paper-page-dot-number,
.bitcoin-paper-page-dot:hover .bitcoin-paper-page-dot-number {
  background: rgba(255, 244, 218, 0.14);
}

.bitcoin-paper-meta {
  display: grid;
  gap: 12px;
}

.bitcoin-paper-meta .gradient-link {
  width: fit-content;
}

.bitcoin-paper-meta .doc-actions {
  margin-top: 4px;
}

.bitcoin-paper-page-dot:focus-visible,
.bitcoin-paper-btn:focus-visible {
  outline: 2px solid rgba(255, 214, 143, 0.78);
  outline-offset: 3px;
}

.bitcoin-paper-page-surface,
.bitcoin-paper-outline,
.bitcoin-paper-frame {
  box-sizing: border-box;
  overflow: hidden;
}

@media (max-width: 980px) {
  .bitcoin-paper-reading-room {
    grid-template-columns: 1fr;
  }

  .bitcoin-paper-outline {
    position: relative;
    top: auto;
  }

  .bitcoin-paper-outline-stats,
  .bitcoin-paper-page-jump {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bitcoin-paper-frame {
    min-height: 560px;
  }

  .bitcoin-paper-page-surface {
    min-height: 560px;
  }
}

@media (max-width: 860px) {
  .bitcoin-paper-controls,
  .bitcoin-paper-topbar,
  .bitcoin-paper-page-header {
    align-items: stretch;
  }

  .bitcoin-paper-nav,
  .bitcoin-paper-status {
    width: 100%;
  }

  .bitcoin-paper-btn {
    flex: 1 1 auto;
  }
}

@media (max-width: 640px) {
  .bitcoin-paper-stage,
  .bitcoin-paper-frame,
  .bitcoin-paper-outline {
    border-radius: 22px;
  }

  .bitcoin-paper-page-surface {
    min-height: auto;
    padding: 18px;
    border-radius: 18px;
  }

  .bitcoin-paper-page-surface::before {
    inset: 12px;
    border-radius: 14px;
  }

  .bitcoin-paper-outline-stats,
  .bitcoin-paper-page-jump {
    grid-template-columns: 1fr;
  }

  .bitcoin-paper-page-dot {
    grid-template-columns: 36px minmax(0, 1fr);
    padding: 10px 12px;
  }

  .bitcoin-paper-page-dot-number {
    width: 36px;
    height: 36px;
  }

  .bitcoin-paper-page-body {
    padding: 14px;
  }

  .bitcoin-paper-page-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .bitcoin-paper-text {
    font-size: 14px;
    line-height: 1.72;
  }
}

@media (min-width: 1280px) {
  .bitcoin-paper-shell {
    max-width: 1240px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bitcoin-paper-progress span,
  .bitcoin-paper-page-dot {
    transition: none;
  }

  .bitcoin-paper-page-dot:hover {
    transform: none;
  }
}

.external-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
}

.external-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 3, 3, 0.76);
  backdrop-filter: blur(8px);
}

.external-modal-card {
  position: relative;
  width: min(calc(100% - 32px), 620px);
  margin: min(14vh, 120px) auto 0;
  padding: 24px;
  border-radius: 28px;
  border: 1px solid rgba(255, 189, 92, 0.18);
  background: linear-gradient(180deg, rgba(20, 13, 8, 0.98), rgba(10, 8, 5, 0.98));
  box-shadow: var(--shadow);
  display: grid;
  gap: 14px;
}

.external-modal-card h3,
.external-modal-card p {
  margin: 0;
}

.external-destination {
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 189, 92, 0.14);
  background: rgba(255, 189, 92, 0.05);
  color: #fff0d2;
  word-break: break-all;
}

.external-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}
.hide-mobile { display: inline-flex; }

@media (max-width: 1180px) {
  .hero, .grid-3, .grid-2, .wallet-layout, .calc-layout, .lock-layout, .faq-grid, .split, .dashboard-grid, .timeline { grid-template-columns: 1fr; }
  .kpi-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .tax-chart-wrap { grid-template-columns: 1fr; }
  .tax-pie { margin-inline: auto; }
  .section-visual,
  .section-visual-compact { grid-template-columns: 1fr; }
  .section-visual-left .section-jack-panel { order: initial; }
}

@media (max-width: 860px) {
  .nav {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    align-items: center;
    gap: 16px;
    min-height: 92px;
    padding: 12px 0;
  }
  .brand {
    gap: 14px;
  }
  .brand-badge {
    width: 44px;
    height: 44px;
  }
  .brand h1 {
    font-size: 21px;
  }
  .menu-toggle { display: inline-flex; }
  .nav-links {
    order: 4;
    grid-column: 1 / -1;
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    margin-top: 14px;
    padding: 18px;
    border-radius: 28px;
    background: radial-gradient(circle at top, rgba(255, 186, 90, 0.11), transparent 56%), linear-gradient(180deg, rgba(16, 10, 6, 0.98), rgba(8, 5, 3, 0.98));
    border: 1px solid rgba(255, 206, 125, 0.14);
    box-shadow: inset 0 1px 0 rgba(255, 236, 198, 0.06), 0 24px 56px rgba(0, 0, 0, 0.42);
  }
  .nav-links.is-open { display: flex; }
  .nav-links::after {
    left: 22px;
    right: 22px;
  }
  .nav-home-link,
  .nav-parent {
    width: 100%;
    justify-content: space-between;
    padding: 0 16px;
    min-height: 52px;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(255, 189, 92, 0.05), rgba(255, 141, 24, 0.02));
    border-color: rgba(255, 205, 122, 0.1);
  }
  .nav-group {
    width: 100%;
  }
  .nav-group::after {
    display: none;
  }
  .nav-dropdown {
    position: static;
    min-width: 0;
    display: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    margin-top: 10px;
    padding: 10px;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(255, 168, 71, 0.08), rgba(255, 168, 71, 0.03));
    box-shadow: inset 0 1px 0 rgba(255, 236, 198, 0.04);
  }
  .nav-group:hover > .nav-dropdown,
  .nav-group:focus-within > .nav-dropdown {
    transform: none;
  }
  .nav-group.is-open > .nav-dropdown {
    display: grid;
  }
  .nav-dropdown a {
    padding: 13px 14px;
    border-radius: 16px;
    background: rgba(255, 189, 92, 0.05);
    border: 1px solid rgba(255, 205, 122, 0.08);
  }
  .nav-actions {
    order: 5;
    grid-column: 1 / -1;
    width: 100%;
    display: none;
  }
  .nav-links.is-open ~ .nav-actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }
  .nav-wallet-shell {
    order: 1;
    width: 100%;
    display: flex;
  }
  .nav-wallet-shell .nav-wallet-dropdown {
    display: none;
  }
  .nav-wallet-inline-error {
    position: static;
    width: 100%;
    max-width: none;
    margin-top: 10px;
    order: 2;
  }
  .nav-wallet {
    display: inline-flex !important;
    order: 1;
    width: 100%;
    min-height: 52px;
    height: auto;
    padding: 0 16px;
    border-radius: 20px;
    justify-content: flex-start;
    gap: 12px;
  }
  .nav-wallet.is-connected {
    min-height: 60px;
    flex-wrap: wrap;
    row-gap: 4px;
  }
  .nav-wallet.is-connected::before {
    background: linear-gradient(90deg, rgba(231, 255, 243, 0.22) 0, rgba(231, 255, 243, 0.22) var(--swipe-progress), rgba(255, 255, 255, 0.07) var(--swipe-progress));
  }
  .nav-wallet.is-swiping {
    transform: translateY(-1px) scale(0.995);
  }
  .nav-wallet.is-connected .nav-wallet-label {
    font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
    font-size: 13px;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .nav-wallet.is-connected .nav-wallet-swipe {
    display: flex;
    flex: 1 0 100%;
    margin-left: 32px;
    color: rgba(225, 255, 239, 0.78);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }
  .nav-wallet.is-connected .nav-wallet-swipe span {
    animation: swipeNudge 1.35s ease-in-out infinite;
  }
  @keyframes swipeNudge {
    0%, 100% { transform: translateX(0); opacity: 0.68; }
    50% { transform: translateX(14px); opacity: 1; }
  }
  .nav-wallet:hover,
  .nav-wallet:focus-visible,
  .nav-wallet.is-connected {
    width: 100%;
    transform: translateY(-1px);
  }
  .nav-wallet-label {
    display: inline-flex;
  }
  .hide-mobile { display: none !important; }
  .nav-buy-now {
    display: inline-flex !important;
    width: 100%;
    min-height: 52px;
    border-radius: 20px;
    order: 3;
  }
  .hero-copy p { font-size: 16px; }
  .hero-tape span { letter-spacing: 0.1em; }
  .hero-slider-track { min-height: 190px; }
  .hero-quote p { font-size: 22px; max-width: 100%; }
  .section-band { padding: 28px 22px; }
  .action-grid,
  .mining-status-grid { grid-template-columns: 1fr; }
  .action-row > * { flex-basis: 100%; }
}

@media (max-width: 640px) {
  .shell { width: min(calc(100% - 22px), var(--max)); }
  main { padding-top: 14px; }
  .card, .feature-card, .mini-panel, .timeline-step {
    padding: 18px;
    border-radius: 22px;
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
  }
  .grid-2,
  .grid-3,
  .wallet-layout,
  .dashboard-grid,
  .kpi-grid,
  .panel.active {
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
  }
  .scoreboard-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
  }
  .scoreboard-pie-wrap {
    min-height: 330px;
    max-width: 100%;
    overflow: visible;
  }
  .scoreboard-chart-frame {
    width: min(330px, 100%);
  }
  .scoreboard-pie {
    width: 154px;
  }
  .scoreboard-label {
    font-size: 10px;
    stroke-width: 3.4px;
  }
  .big-number,
  .kpi-card .value,
  .mini .num {
    max-width: 100%;
    font-size: clamp(24px, 8.6vw, 34px);
    line-height: 1.12;
    letter-spacing: -0.045em;
    overflow-wrap: normal;
    word-break: normal;
  }
  .big-number .token-amount {
    display: inline-flex !important;
    align-items: baseline;
    white-space: nowrap;
    width: auto;
  }
  .big-number .brand-token {
    display: inline-block !important;
    white-space: nowrap;
  }
  .hero-card { min-height: 360px; }
  .hero-art-front { width: min(74vw, 320px); right: 0; bottom: 0; }
  .hero-slider-track { min-height: 210px; }
  .hero-quote { padding: 18px 16px 18px 18px; }
  .hero-quote p { font-size: 22px; }
  .info-callout {
    width: auto;
  }
  .info-callout-text {
    position: absolute;
    top: 50%;
    left: auto;
    right: calc(100% + 8px);
    width: min(260px, calc(100vw - 86px));
    max-height: none;
    margin-top: 0;
    padding: 12px 36px 12px 12px;
    border-width: 1px;
    overflow: visible;
    transform: translate(-6px, -50%) scale(0.98);
  }
  .info-callout-text::before {
    left: auto;
    right: -7px;
    border-left: 0;
    border-bottom: 0;
    border-right: 1px solid rgba(255, 188, 92, 0.24);
    border-top: 1px solid rgba(255, 188, 92, 0.24);
  }
  .info-callout.is-open .info-callout-text {
    max-height: none;
    margin-top: 0;
    padding: 12px 36px 12px 12px;
    border-width: 1px;
    transform: translate(0, -50%) scale(1);
  }
  .hero-quote-mark { font-size: 72px; top: 8px; right: 12px; }
  .hero-slider-controls { bottom: 12px; }
  .hero-overlay { inset: auto 12px 12px 12px; }
  .section-band,
  .section-band-hero { padding: 22px 16px; border-radius: 26px; }
  .section-visual { gap: 16px; }
  .section-jack-panel,
  .section-jack-panel-compact { min-height: 220px; padding: 18px 12px 0; }
  .section-jack-panel-story { max-width: 100%; min-height: 220px; }
  .section-jack-art,
  .section-jack-art-console { max-width: 100%; max-height: 280px; }
  .section-jack-art-story { max-width: 100%; max-height: 280px; }
  .button, .ghost { width: 100%; }
  .nav { grid-template-columns: minmax(0, 1fr) auto; }
  .menu-toggle { order: 2; }
  .nav-actions {
    order: 4;
    width: 100%;
  }
  .nav-actions > * { flex: 1; }
  .wallet-row, .activity-item, .wallet-state, .footer-line { grid-template-columns: 1fr; display: grid; justify-content: initial; }
  .footer-left,
  .footer-links {
    width: 100%;
    justify-content: center;
    justify-items: center;
    text-align: center;
  }
  .footer-right {
    justify-items: center;
    text-align: center;
  }
  #footerRight {
    display: grid;
    justify-items: center;
    gap: 8px;
    width: 100%;
    line-height: 1.5;
  }
  .footer-version {
    margin-left: 0;
  }
  .tabs { width: 100%; border-radius: 22px; }
  .tab { flex: 1 1 calc(50% - 10px); }
  .kpi-grid { grid-template-columns: 1fr; }
  .metric-list li {
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
  }
  .metric-value-stack {
    justify-items: start;
    text-align: left;
  }
  .metric-list strong,
  .metric-sublist {
    text-align: left;
  }
}


@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}




/* Airdrop notice */
.nav-airdrop-link {
  color: #fff4cf;
  border-color: rgba(255, 213, 116, 0.42);
  background: radial-gradient(circle at 24% 12%, rgba(255, 247, 199, 0.24), transparent 38%), linear-gradient(180deg, rgba(255, 190, 77, 0.22), rgba(255, 119, 20, 0.12));
  box-shadow: inset 0 1px 0 rgba(255, 246, 216, 0.22), 0 0 22px rgba(255, 181, 53, 0.28), 0 14px 34px rgba(255, 126, 20, 0.16);
  overflow: hidden;
}
.nav-airdrop-link::before {
  content: "";
  position: absolute;
  inset: -45% -35%;
  background: conic-gradient(from 120deg, transparent, rgba(255, 236, 176, 0.34), transparent 32%);
  opacity: 0.72;
  animation: airdropNavGlow 4.8s linear infinite;
}
.nav-airdrop-link::after {
  background: linear-gradient(90deg, transparent, rgba(255, 246, 192, 0.95), transparent);
  opacity: 1;
  transform: scaleX(1);
}
.nav-airdrop-link:hover,
.nav-airdrop-link:focus-visible,
.nav-airdrop-link.is-current {
  color: #fff8df;
  border-color: rgba(255, 227, 148, 0.62);
  background: radial-gradient(circle at 26% 12%, rgba(255, 250, 216, 0.34), transparent 42%), linear-gradient(180deg, rgba(255, 205, 93, 0.28), rgba(255, 127, 22, 0.18));
  box-shadow: inset 0 1px 0 rgba(255, 248, 220, 0.3), 0 0 34px rgba(255, 194, 64, 0.42), 0 16px 36px rgba(255, 126, 20, 0.22);
}
@keyframes airdropNavGlow {
  to { transform: rotate(360deg); }
}
.section-band-airdrop {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border-color: rgba(255, 164, 54, 0.26);
  background:
    radial-gradient(ellipse at 16% 18%, rgba(255, 126, 22, 0.16), transparent 46%),
    radial-gradient(ellipse at 86% 24%, rgba(255, 91, 18, 0.14), transparent 48%),
    linear-gradient(180deg, rgba(28, 14, 6, 0.97), rgba(12, 7, 4, 0.95));
  box-shadow: inset 0 1px 0 rgba(255, 181, 84, 0.1), 0 26px 70px rgba(0, 0, 0, 0.28), 0 0 58px rgba(255, 111, 18, 0.12);
}
.section-band-airdrop::before {
  content: "";
  position: absolute;
  inset: -70% -42%;
  z-index: 0;
  pointer-events: none;
  background:
    conic-gradient(from 80deg, rgba(255, 117, 24, 0.1) 0 18%, rgba(255, 169, 61, 0.2) 30%, rgba(255, 98, 18, 0.12) 44%, rgba(255, 141, 34, 0.18) 60%, rgba(255, 89, 18, 0.1) 78%, rgba(255, 117, 24, 0.1) 100%),
    radial-gradient(ellipse at center, rgba(255, 117, 24, 0.13), transparent 62%);
  opacity: 0.72;
  filter: blur(16px);
  animation: airdropNavGlow 16s linear infinite;
}
.section-band-airdrop > * {
  position: relative;
  z-index: 1;
}
.airdrop-hero-card {
  position: relative;
  display: grid;
  gap: 24px;
  isolation: isolate;
}
.airdrop-glow {
  position: absolute;
  inset: -30% -18% auto auto;
  width: 360px;
  height: 360px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 214, 112, 0.22), transparent 68%);
  filter: blur(4px);
  z-index: -1;
}
.airdrop-copy {
  max-width: 78ch;
}
.airdrop-copy h3 {
  max-width: 820px;
}
.airdrop-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.airdrop-card {
  position: relative;
  display: grid;
  gap: 10px;
  background: linear-gradient(180deg, rgba(255, 199, 102, 0.075), rgba(255, 145, 31, 0.035));
  border-color: rgba(255, 207, 125, 0.14);
}
.airdrop-card-primary {
  box-shadow: inset 0 1px 0 rgba(255, 239, 204, 0.12), 0 16px 34px rgba(255, 145, 31, 0.12);
}
.airdrop-kicker {
  color: var(--gold-strong);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.airdrop-card strong {
  color: var(--ink);
  font-size: clamp(20px, 2.5vw, 30px);
  letter-spacing: -0.05em;
}
.airdrop-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}
.airdrop-contract {
  display: inline;
  color: #fff4d6;
  font: 700 0.92em/1.4 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.airdrop-notice {
  border: 1px solid rgba(255, 211, 130, 0.18);
  border-radius: 24px;
  padding: 18px 20px;
  background: rgba(255, 188, 92, 0.055);
  color: var(--muted);
  line-height: 1.7;
}
.airdrop-notice strong {
  color: var(--gold-strong);
}
@media (max-width: 1180px) {
  .airdrop-card-grid { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  .nav-airdrop-link {
    justify-content: center;
    min-height: 56px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .nav-airdrop-link::before,
  .section-band-airdrop::before { animation: none; }
}

/* Token pages */
.token-page-shell { padding: 32px 0 76px; }
.jack-claim-cta-wrap {
  display: block;
  width: 100%;
  margin: 18px 0 22px;
}
.jack-claim-cta-wrap-top {
  margin: 0 0 24px;
}
.jack-claim-cta {
  width: 100%;
  min-height: clamp(62px, 7vw, 78px);
  padding: 16px 24px;
  font-size: clamp(18px, 3.2vw, 30px);
  font-weight: 900;
  letter-spacing: -0.035em;
  text-align: center;
  text-transform: none;
  border-radius: 26px;
}
.jack-claim-cta .ticker-gradient {
  position: relative;
  z-index: 1;
}
.jack-claim-cta::before {
  inset: -190% -125%;
  background:
    radial-gradient(circle at center, rgba(255, 220, 128, 0.18), transparent 56%),
    conic-gradient(from 120deg, transparent 0 8%, rgba(255, 241, 198, 0.4) 18%, rgba(255, 181, 61, 0.24) 34%, transparent 52% 100%);
  opacity: 0.9;
  filter: blur(16px);
  transform-origin: center;
}
.jack-claim-cta::after {
  left: 24px;
  right: 24px;
  bottom: 10px;
}
@media (max-width: 640px) {
  .jack-claim-cta {
    min-height: 64px;
    padding: 15px 18px;
    border-radius: 22px;
    font-size: clamp(17px, 5vw, 22px);
  }
}
.token-hero { position: relative; overflow: hidden; display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr); gap: 28px; align-items: stretch; }
.token-hero::before { content: ""; position: absolute; inset: -35% -18% auto auto; width: 520px; height: 520px; border-radius: 999px; background: radial-gradient(circle, rgba(255, 184, 72, 0.22), transparent 68%); filter: blur(6px); pointer-events: none; }
.token-title { margin: 0; font-size: clamp(46px, 8vw, 92px); line-height: 0.92; letter-spacing: -0.08em; }
.token-gradient, .ticker-gradient { background: linear-gradient(180deg, #fff7d7 0%, #ffd36b 36%, #ff7a00 70%, #f6b34d 100%); -webkit-background-clip: text; background-clip: text; color: transparent; text-shadow: 0 22px 55px rgba(255, 122, 0, 0.12); }
.button .ticker-gradient { background: linear-gradient(180deg, #2a1604 0%, #5c2600 54%, #120802 100%); -webkit-background-clip: text; background-clip: text; color: transparent; text-shadow: none; filter: drop-shadow(0 1px 0 rgba(255, 246, 214, 0.32)); }
.token-inline-icon-link { display: inline-flex; align-items: center; justify-content: center; width: 22px; height: 22px; margin-left: 6px; border-radius: 999px; color: #170d03; background: linear-gradient(135deg, #ffd36b, #ff7a00); font-weight: 900; font-size: 13px; text-decoration: none; box-shadow: 0 8px 18px rgba(255, 122, 0, 0.18); vertical-align: middle; }
.token-inline-icon-link:hover { transform: translateY(-1px); filter: brightness(1.08); }
.token-lede { margin: 22px 0 0; color: var(--muted); font-size: clamp(18px, 2vw, 22px); line-height: 1.75; max-width: 74ch; }
.token-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; align-items: center; }
.token-status { width: 100%; margin: 4px 0 0; color: var(--muted); font-size: 13px; line-height: 1.5; }
.token-status.ok { color: #93f0b7; }
.token-status.err { color: #ff9a86; }
.token-visual-card { position: relative; z-index: 1; display: grid; gap: 16px; align-content: center; justify-items: center; min-height: 360px; padding: 28px; border-radius: 36px; border: 1px solid rgba(255, 206, 125, 0.22); background: radial-gradient(circle at top, rgba(255, 211, 112, 0.16), transparent 55%), linear-gradient(180deg, rgba(24, 14, 8, 0.92), rgba(8, 5, 3, 0.95)); box-shadow: var(--shadow); }
.token-logo-large { width: min(260px, 70vw); aspect-ratio: 1; object-fit: contain; border-radius: 999px; padding: 14px; background: rgba(255, 214, 139, 0.07); border: 1px solid rgba(255, 211, 130, 0.18); box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34); }
.token-logo-fallback { width: min(260px, 70vw); aspect-ratio: 1; display: grid; place-items: center; border-radius: 999px; background: radial-gradient(circle at 38% 22%, rgba(255, 242, 188, 0.34), transparent 30%), linear-gradient(135deg, rgba(255, 211, 107, 0.24), rgba(255, 111, 0, 0.12)); border: 1px solid rgba(255, 211, 130, 0.2); font-size: clamp(42px, 8vw, 72px); font-weight: 900; letter-spacing: -0.12em; }
.token-contract-line { width: 100%; display: grid; gap: 7px; color: var(--muted); font-size: 13px; }
.token-contract-line code { color: #fff4d6; overflow-wrap: anywhere; word-break: break-word; }
.token-section-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr); gap: 22px; margin-top: 22px; }
.token-section-grid > article:only-child { grid-column: 1 / -1; }
.token-copy-card, .token-stat-card, .token-wallet-card, .token-tax-card { border: 1px solid rgba(255, 206, 125, 0.16); border-radius: 28px; background: linear-gradient(180deg, rgba(255, 190, 92, 0.065), rgba(255, 133, 31, 0.028)); padding: 24px; box-shadow: inset 0 1px 0 rgba(255, 239, 211, 0.06); }
.token-copy-card p, .token-tax-card p, .token-wallet-card p { color: var(--muted); line-height: 1.75; margin: 10px 0 0; }
.token-page h3 { margin: 0 0 12px; font-size: clamp(28px, 4vw, 46px); letter-spacing: -0.06em; }
.token-page h4 { margin: 0; color: var(--ink); font-size: 18px; letter-spacing: -0.03em; }
.token-stat-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; margin-top: 22px; }
.token-stat-card { min-height: 132px; display: grid; align-content: space-between; gap: 10px; }
.token-stat-label, .token-wallet-label, .token-tax-label { color: var(--gold-strong); text-transform: uppercase; letter-spacing: 0.14em; font-size: 11px; font-weight: 800; }
.token-stat-value { font-size: clamp(22px, 2.8vw, 34px); font-weight: 900; letter-spacing: -0.06em; overflow-wrap: anywhere; }
.token-stat-note { color: var(--muted); font-size: 13px; line-height: 1.45; }
.token-stat-note.small { display: block; margin-top: 8px; font-size: 12px; color: rgba(255, 245, 223, 0.52); }
.tokenomics-list { display: grid; gap: 12px; margin: 16px 0 0; padding: 0; list-style: none; }
.tokenomics-list li { display: grid; grid-template-columns: minmax(140px, 0.38fr) minmax(0, 1fr); gap: 14px; padding: 14px 0; border-top: 1px solid rgba(255, 206, 125, 0.1); color: var(--muted); line-height: 1.55; }
.tokenomics-list strong { color: var(--ink); }
.token-wallet-grid, .token-tax-grid { display: grid; gap: 14px; margin-top: 16px; }
.token-wallet-row { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 12px; align-items: center; padding: 16px; border-radius: 20px; border: 1px solid rgba(255, 206, 125, 0.12); background: rgba(0,0,0,0.16); }
.token-wallet-row code { color: #fff4d6; overflow-wrap: anywhere; word-break: break-word; }
.token-wallet-amount { color: var(--ink); font-weight: 900; text-align: right; }
.token-tax-card strong { color: var(--ink); }
.token-note-band { margin-top: 22px; border-radius: 28px; border: 1px solid rgba(255, 211, 130, 0.18); padding: 20px 22px; background: rgba(255, 188, 92, 0.055); color: var(--muted); line-height: 1.75; }
.token-note-band strong { color: var(--gold-strong); }
.button[disabled], .ghost[disabled] { opacity: 0.48; cursor: not-allowed; filter: grayscale(0.3); }
.mining-input-wrap { display: grid; grid-template-columns: minmax(120px, 1fr) auto; gap: 8px; align-items: center; min-width: min(100%, 280px); padding: 10px 12px; border: 1px solid rgba(255, 211, 130, 0.16); border-radius: 18px; background: rgba(255, 186, 84, 0.055); }
.mining-input-wrap span { grid-column: 1 / -1; color: var(--muted); font-size: 12px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.mining-input-wrap input { width: 100%; min-height: 42px; border: 1px solid rgba(255, 211, 130, 0.16); border-radius: 14px; padding: 10px 12px; color: var(--ink); background: rgba(10, 7, 4, 0.46); outline: none; }
.mining-input-wrap input:focus { border-color: rgba(255, 211, 130, 0.46); box-shadow: 0 0 0 4px rgba(255, 187, 89, 0.08); }
.ghost.tiny { min-height: 42px; padding: 8px 12px; font-size: 13px; }
@media (max-width: 980px) { .token-hero, .token-section-grid { grid-template-columns: 1fr; } .token-stat-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 640px) { .token-stat-grid { grid-template-columns: 1fr; } .tokenomics-list li, .token-wallet-row { grid-template-columns: 1fr; } .token-wallet-amount { text-align: left; } .token-actions .button, .token-actions .ghost { width: 100%; justify-content: center; } }

/* Jack Faucet */
.jack-faucet-card {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 22px;
  margin: 28px 0;
  padding: 28px;
  border: 1px solid rgba(247, 177, 79, 0.28);
  border-radius: 30px;
  background:
    radial-gradient(circle at 15% 10%, rgba(247, 177, 79, 0.20), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025));
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  overflow: hidden;
}
.jack-faucet-copy h3 {
  margin: 8px 0 12px;
  font-size: clamp(2rem, 5vw, 4.8rem);
  line-height: 0.92;
  letter-spacing: -0.07em;
}
.jack-faucet-copy p { color: var(--muted); max-width: 760px; }
.faucet-status {
  min-height: 1.4em;
  margin: 16px 0;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 16px;
  background: rgba(7, 9, 14, 0.46);
  color: var(--muted);
}
.faucet-status.ok { color: #9cffc2; border-color: rgba(156, 255, 194, 0.28); }
.faucet-status.warn { color: #ffd166; border-color: rgba(255, 209, 102, 0.32); }
.faucet-status.err { color: #ff8b8b; border-color: rgba(255, 139, 139, 0.32); }
.faucet-actions { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.faucet-actions.compact { margin-top: 12px; }
.jack-faucet-stats { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; min-width: 0; }
.faucet-mini {
  min-width: 0;
  padding: 15px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(8, 10, 16, 0.58);
}
.faucet-mini.wide, .faucet-contract-link { grid-column: 1 / -1; }
.faucet-mini span { display: block; color: var(--muted); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.14em; }
.faucet-mini strong { display: block; margin-top: 8px; font-size: clamp(1.1rem, 4vw, 1.8rem); line-height: 1; overflow-wrap: anywhere; }
.faucet-contract-link {
  display: block;
  padding: 13px 15px;
  border-radius: 16px;
  border: 1px solid rgba(247, 177, 79, 0.26);
  color: #ffd59a;
  background: rgba(247, 177, 79, 0.08);
  text-decoration: none;
  overflow-wrap: anywhere;
}
.jack-faucet-lp {
  margin-top: 18px;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(156, 255, 194, 0.25);
  background: linear-gradient(145deg, rgba(24, 190, 112, 0.14), rgba(247, 177, 79, 0.08));
}
.jack-faucet-lp h4 { margin: 0 0 8px; }
@media (max-width: 760px) {
  .jack-faucet-card { grid-template-columns: 1fr; padding: 18px; border-radius: 24px; max-width: 100%; }
  .jack-faucet-stats { grid-template-columns: 1fr; }
  .faucet-actions .button, .faucet-actions .ghost { width: 100%; justify-content: center; text-align: center; }
}


/* Branded 404 page */
.not-found-page {
  min-height: 100vh;
}

.nav-links-lite {
  justify-content: center;
}

.not-found-main {
  padding-top: 34px;
}

.not-found-hero {
  min-height: min(680px, calc(100vh - 180px));
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 32px;
  align-items: center;
  overflow: hidden;
}

.not-found-copy {
  display: grid;
  gap: 18px;
}

.not-found-copy h2 {
  margin: 0;
  font-size: clamp(46px, 8vw, 96px);
  line-height: 0.9;
  letter-spacing: -0.075em;
  max-width: 9ch;
}

.not-found-lede {
  margin: 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.55;
  max-width: 62ch;
}

.not-found-quote {
  margin: 4px 0 2px;
  padding: 20px 22px;
  border-radius: 22px;
  border: 1px solid rgba(255, 194, 92, 0.22);
  background: linear-gradient(135deg, rgba(255, 194, 92, 0.12), rgba(255, 255, 255, 0.035));
  color: var(--cream);
  font-size: clamp(18px, 2.4vw, 26px);
  font-weight: 800;
  line-height: 1.28;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}


@media (max-width: 860px) {
  .not-found-hero {
    grid-template-columns: 1fr;
    padding: 28px;
  }

  .not-found-copy h2 {
    max-width: 11ch;
  }

  .nav-links-lite {
    display: none;
  }
}


/* Mining page preview gate */
.mining-home-teaser {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 440px);
  align-items: center;
}

.mining-teaser-card,
.mining-coming-card,
.mining-preview-shell .card {
  position: relative;
  overflow: hidden;
}

.mining-teaser-card::before,
.mining-coming-card::before,
.mining-preview-shell .card::before {
  content: "";
  position: absolute;
  inset: -60% auto auto -20%;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 177, 59, 0.18), transparent 68%);
  pointer-events: none;
}

.mining-page-hero {
  min-height: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 28px;
  align-items: stretch;
}

.mining-page-hero .hero-copy,
.mining-page-hero .hero-card {
  min-width: 0;
}

.mining-coming-card {
  padding: 28px;
}

.mining-quote-board {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.mining-quote {
  border: 1px solid rgba(255, 211, 107, 0.16);
  background: rgba(255, 179, 59, 0.07);
  border-radius: 16px;
  padding: 14px 16px;
  color: var(--muted);
  font-weight: 700;
}

.mining-preview-shell[hidden],
.mining-public-shell[hidden] {
  display: none !important;
}

.mining-preview-shell {
  display: grid;
  gap: 24px;
}

.mining-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.mining-control-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 18px;
  align-items: stretch;
}

.mining-placeholder-ui {
  display: grid;
  gap: 12px;
}

.mining-meter {
  height: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255, 211, 107, 0.15);
}

.mining-meter span {
  display: block;
  height: 100%;
  width: var(--meter, 38%);
  border-radius: inherit;
  background: linear-gradient(90deg, var(--orange), var(--gold-strong));
  box-shadow: 0 0 24px rgba(255, 177, 59, 0.28);
}

.mining-preview-note {
  border-color: rgba(47, 211, 141, 0.22);
  background: rgba(47, 211, 141, 0.08);
}

.mining-locked-note {
  margin-top: 18px;
}

@media (max-width: 900px) {
  .mining-home-teaser,
  .mining-page-hero,
  .mining-control-panel {
    grid-template-columns: 1fr;
  }
  .mining-preview-grid {
    grid-template-columns: 1fr;
  }
}


/* $JACK claim reminder wizard */
.jack-reminder-trigger { border-color: rgba(255, 214, 111, .55); }
.jack-reminder-open { overflow: hidden; }
.jack-reminder-modal[hidden] { display: none; }
.jack-reminder-modal { position: fixed; inset: 0; z-index: 1000; display: grid; place-items: center; padding: 18px; }
.jack-reminder-backdrop { position: absolute; inset: 0; background: rgba(0, 0, 0, .72); backdrop-filter: blur(8px); }
.jack-reminder-panel { position: relative; width: min(680px, 100%); max-height: min(88vh, 760px); overflow: auto; background: linear-gradient(145deg, rgba(36, 23, 12, .98), rgba(11, 8, 5, .98)); border: 1px solid rgba(255, 206, 92, .36); box-shadow: 0 24px 80px rgba(0,0,0,.48); border-radius: 26px; padding: clamp(20px, 4vw, 34px); color: var(--cream, #fff4df); }
.jack-reminder-close { position: absolute; right: 16px; top: 14px; width: 36px; height: 36px; border-radius: 999px; border: 1px solid rgba(255,255,255,.16); background: rgba(255,255,255,.06); color: inherit; font-size: 24px; cursor: pointer; }
.jack-reminder-panel h3 { margin: 8px 42px 10px 0; font-size: clamp(1.45rem, 4vw, 2.15rem); }
.jack-reminder-privacy { color: rgba(255,244,223,.78); line-height: 1.6; }
.jack-reminder-privacy.small { font-size: .9rem; }
.jack-reminder-options { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin-top: 20px; }
.jack-reminder-option { text-align: left; border: 1px solid rgba(255, 206, 92, .26); border-radius: 18px; padding: 16px; background: rgba(255,255,255,.055); color: inherit; cursor: pointer; transition: transform .18s ease, border-color .18s ease, background .18s ease; }
.jack-reminder-option:hover { transform: translateY(-2px); border-color: rgba(255, 206, 92, .62); background: rgba(255, 198, 79, .1); }
.jack-reminder-option strong { display: block; color: #ffd66d; font-size: 1.05rem; margin-bottom: 6px; }
.jack-reminder-option span { display: block; color: rgba(255,244,223,.74); line-height: 1.45; }
.jack-reminder-field { display: grid; gap: 8px; margin: 16px 0 8px; }
.jack-reminder-field span { color: #ffd66d; font-weight: 800; }
.jack-reminder-field input { width: 100%; border-radius: 14px; border: 1px solid rgba(255, 206, 92, .32); background: rgba(0,0,0,.24); color: #fff4df; padding: 13px 14px; font: inherit; }
.jack-reminder-status { min-height: 1.4em; margin: 16px 0 0; color: rgba(255,244,223,.76); }
.jack-reminder-status.ok { color: #8ff0b3; }
.jack-reminder-status.warn { color: #ffd66d; }
.jack-reminder-status.err { color: #ff9b91; }
@media (max-width: 640px) { .jack-reminder-options { grid-template-columns: 1fr; } .jack-reminder-panel { border-radius: 20px; } }

.copy-address {
  appearance: none; border: 0; padding: 0 2px; margin: 0; background: transparent; color: inherit; font: inherit; cursor: pointer; text-decoration: underline; text-decoration-style: dotted; text-underline-offset: 3px; overflow-wrap: anywhere; word-break: break-word;
}
.copy-address:hover { color: var(--gold-strong); filter: brightness(1.08); }
.copy-address::after { content: "⧉"; display: inline-grid; place-items: center; width: 1.45em; height: 1.45em; margin-left: 7px; border: 1px solid rgba(255, 211, 107, 0.42); border-radius: 999px; color: var(--gold-strong); font-size: 0.78em; line-height: 1; vertical-align: 0.08em; background: rgba(255, 211, 107, 0.08); box-shadow: 0 0 18px rgba(255, 211, 107, 0.12); }
.copy-address.copied::after { content: "✓"; color: #8fe6b8; border-color: rgba(143, 230, 184, 0.52); background: rgba(143, 230, 184, 0.1); }
.faucet-mini strong, .token-stat-value { background: linear-gradient(180deg, #fff7d7 0%, #ffd36b 38%, #ff7a00 78%, #f6b34d 100%); -webkit-background-clip: text; background-clip: text; color: transparent; text-shadow: 0 22px 55px rgba(255, 122, 0, 0.12); }
.faucet-timer-card { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: end; column-gap: 12px; }
.faucet-timer-card span { grid-column: 1 / -1; }
.faucet-timer-card strong { min-width: 0; }
.faucet-reminder-card-button { justify-self: end; min-height: 38px; padding: 9px 13px; white-space: nowrap; }

/* Referral rewards */
.referrals-shell { padding-top: clamp(34px, 6vw, 76px); }
.referrals-hero { align-items: stretch; }
.referrals-hero::before { content: none !important; display: none !important; background: transparent !important; filter: none !important; }
.referral-safety { color: #ffd36b; font-weight: 800; }
.wallet-mini-line { color: var(--muted); line-height: 1.55; }
.wallet-mini-line code { color: var(--gold-strong); }
.referrals-card, .referral-tool-card { border-color: rgba(255, 211, 107, 0.28); }
.referral-tier-list { list-style: none; display: grid; gap: 12px; padding: 0; margin: 18px 0; }
.referral-tier-list li { display: flex; justify-content: space-between; gap: 14px; align-items: center; padding: 14px 16px; border: 1px solid rgba(255, 211, 107, 0.22); border-radius: 16px; background: rgba(255, 211, 107, 0.07); }
.referral-tier-list strong { color: var(--gold-strong); font-size: 1.05rem; }
.referral-tier-list span { font-weight: 800; }
.referral-grid { margin-top: 22px; }
.referral-tool-card { display: grid; align-content: start; gap: 12px; }
.referral-label { color: var(--gold-strong); font-weight: 800; }
.referral-input { width: 100%; border-radius: 16px; border: 1px solid rgba(255, 211, 107, 0.28); background: rgba(0,0,0,.28); color: var(--ink); padding: 14px 16px; box-shadow: inset 0 1px 0 rgba(255,255,255,.04); }
.referral-input:focus { outline: 2px solid rgba(255, 211, 107, 0.42); outline-offset: 2px; }
.referral-status { min-height: 1.5em; color: var(--muted); }
.referral-status[data-tone="ok"] { color: #8ff0b3; }
.referral-status[data-tone="warn"] { color: #ffd36b; }
.referral-wide-card { grid-column: 1 / -1; }
.reward-snapshot-card { display: grid; gap: 16px; align-content: start; background: transparent !important; background-image: none !important; border: 0 !important; box-shadow: none !important; backdrop-filter: none !important; }
.reward-snapshot-card::before,
.reward-snapshot-card::after { content: none !important; display: none !important; background: transparent !important; background-image: none !important; box-shadow: none !important; }
.referral-stat-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin-top: 4px; }
.referral-stat-card { display: grid; align-content: center; gap: 7px; min-height: 98px; border: 1px solid rgba(255, 211, 107, 0.22); border-radius: 18px; padding: 14px; background: linear-gradient(180deg, rgba(255, 211, 107, .18), rgba(231, 112, 48, .075) 42%, rgba(0,0,0,.28)); box-shadow: inset 0 1px 0 rgba(255,255,255,.055); }
.referral-stat-card.ready { border-color: rgba(255, 211, 107, .42); box-shadow: 0 0 28px rgba(255, 211, 107, .08), inset 0 1px 0 rgba(255,255,255,.065); }
.referral-stat-card strong { display: block; color: var(--gold-strong); font-size: clamp(1.25rem, 3vw, 1.8rem); letter-spacing: -0.04em; line-height: 1.05; word-break: keep-all; }
.referral-stat-card span { color: var(--muted); font-weight: 900; text-transform: uppercase; font-size: .68rem; letter-spacing: .11em; line-height: 1.1; }
.referral-stat-card .ticker-gradient { color: transparent; text-transform: none; letter-spacing: inherit; font-size: inherit; }
.reward-ready-button { width: 100%; justify-content: center; margin-top: 2px; }
.referral-step-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; margin: 18px 0 12px; }
.referral-step-grid div,
.referral-tier-grid div { border: 1px solid rgba(255, 211, 107, .18); border-radius: 18px; background: rgba(0,0,0,.2); padding: 14px; box-shadow: inset 0 1px 0 rgba(255,255,255,.045); }
.referral-step-grid strong { display: inline-grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; margin-bottom: 10px; background: linear-gradient(180deg, #fff1a6, #f59b2d); color: #130c05; font-weight: 1000; }
.referral-step-grid span { display: block; color: var(--ink); font-weight: 800; line-height: 1.35; }
.referral-tier-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
.referral-tier-grid strong { display: block; color: var(--gold-strong); font-size: 1.05rem; margin-bottom: 5px; }
.referral-tier-grid span { color: var(--ink); font-weight: 900; }
.referral-explain-list { display: grid; gap: 10px; margin: 0; padding-left: 1.2rem; color: var(--muted); }
.referral-explain-list li { padding-left: 4px; line-height: 1.55; }
.referral-explain-list strong { color: var(--ink); }
.referral-card-heading-row { display: flex; justify-content: space-between; gap: 16px; align-items: flex-start; }
.referral-list { display: grid; gap: 10px; }
.referral-table { display: grid; gap: 8px; width: 100%; }
.referral-row { display: grid; grid-template-columns: minmax(126px, 1.25fr) repeat(3, minmax(88px, .75fr)); gap: 10px; align-items: center; padding: 12px 14px; border: 1px solid rgba(255, 211, 107, .14); border-radius: 14px; background: rgba(0,0,0,.18); color: var(--muted); }
.referral-head { color: var(--gold-strong); font-weight: 900; text-transform: uppercase; font-size: .72rem; letter-spacing: .12em; background: rgba(255, 211, 107, .08); }
.referral-pill { justify-self: start; border-radius: 999px; padding: 5px 10px; font-weight: 900; font-size: .78rem; border: 1px solid rgba(255, 211, 107, .22); }
.referral-pill.claimed { color: #8ff0b3; border-color: rgba(143, 240, 179, .35); }
.referral-pill.unclaimed { color: #ffd36b; }
.referral-show-more { justify-self: start; margin-top: 4px; }
@media (max-width: 900px) { .referral-step-grid, .referral-tier-grid { grid-template-columns: 1fr; } }
@media (max-width: 720px) { .referral-tier-list li { flex-direction: column; align-items: flex-start; } .referral-tool-card .faucet-actions { align-items: stretch; } }
@media (max-width: 720px) { .referral-stat-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; } .referral-stat-card { min-height: 88px; padding: 12px; } .referral-card-heading-row { flex-direction: column; } .referral-row { grid-template-columns: 1fr; gap: 6px; } .referral-head { display: none; } }

.inline-official-link { display: inline; min-height: 0; padding: 0; border: 0; border-radius: 0; background: none; box-shadow: none; color: #ffd36b; font-weight: 800; text-decoration: underline; text-decoration-thickness: 1px; text-decoration-style: dotted; text-underline-offset: 3px; }
.inline-official-link:hover { transform: none; border-color: transparent; color: #fff3d9; }
@media (max-width: 760px) { .faucet-timer-card { grid-template-columns: 1fr; } .faucet-reminder-card-button { justify-self: stretch; width: 100%; margin-top: 10px; } }

.mining-contract-grid .card { min-height: 220px; }
.contract-code { display: block; margin: 12px 0; padding: 12px; border-radius: 12px; background: rgba(0,0,0,0.28); border: 1px solid rgba(255, 210, 133, 0.18); color: var(--gold-strong); font-size: 13px; overflow-wrap: anywhere; }
.stat-value { margin: 8px 0 10px; font-size: clamp(28px, 5vw, 48px); line-height: 1; font-weight: 900; color: var(--gold-strong); letter-spacing: -0.05em; }
.small-link { display: inline-flex; margin-top: 6px; padding: 10px 14px; font-size: 13px; }


.mining-simple-hero { align-items: center; }
.mining-vault-card { padding: 0; overflow: hidden; }
.mining-vault-card img { width: 100%; min-height: 420px; object-fit: cover; object-position: center; }
.mining-vault-caption { padding: 20px; display: grid; gap: 10px; background: linear-gradient(180deg, rgba(15,10,6,0.82), rgba(7,5,3,0.95)); }
.mining-vault-caption strong { font-size: 22px; color: var(--gold-strong); }
.compact-head { max-width: 820px; }
.mining-stat-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.mining-stat-card { min-height: 245px; display: flex; flex-direction: column; justify-content: space-between; }
.mining-stat-card h4 { margin-bottom: 10px; }
.status-word { color: var(--red); }
.mining-action-panel { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; align-items: stretch; }
.mining-action-panel .button, .mining-action-panel .ghost { width: 100%; justify-content: center; min-height: 58px; }
.mining-action-panel [disabled] { opacity: 0.48; cursor: not-allowed; filter: grayscale(0.2); }
.mining-action-note { margin-top: 14px; text-align: center; }
.mining-ledger-card { display: grid; gap: 0; padding: 0; overflow: hidden; }
.ledger-row { display: grid; grid-template-columns: minmax(150px, 0.8fr) minmax(0, 1.2fr); gap: 18px; align-items: center; padding: 18px 22px; border-bottom: 1px solid rgba(255, 210, 133, 0.14); }
.ledger-row:last-child { border-bottom: 0; }
.ledger-row span { color: var(--muted); }
.ledger-row strong { text-align: right; overflow-wrap: anywhere; }
.contract-code { display: inline-block; margin: 0; padding: 8px 10px; border-radius: 10px; background: rgba(0,0,0,0.28); border: 1px solid rgba(255, 210, 133, 0.18); color: var(--gold-strong); font-size: 13px; overflow-wrap: anywhere; }
.stat-value { margin: 8px 0 10px; font-size: clamp(28px, 5vw, 48px); line-height: 1; font-weight: 900; color: var(--gold-strong); letter-spacing: -0.05em; overflow-wrap: anywhere; }
@media (max-width: 900px) {
  .mining-stat-grid, .mining-action-panel { grid-template-columns: 1fr; }
  .mining-vault-card img { min-height: 280px; }
  .ledger-row { grid-template-columns: 1fr; gap: 8px; }
  .ledger-row strong { text-align: left; }
}
