:root {
  --bg: #16120c;
  --ink: #f6efe2;
  --muted: #c4b89a;
  --lime: #e8c56a;
  --hot: #c9a227;
  --cyan: #d4b56a;
  --gold: #f0d78c;
  --comic: #f3e6c0;
  --paper: #1c1812;
  --black: #0e0b07;
  --chrome: #f4e4b8;
  --steel: #b08d3e;
  --assay: #8f3d3d;
  --display: "Bangers", "Impact", system-ui, sans-serif;
  --comic-font: "Comic Neue", "Comic Sans MS", cursive;
  --sans: "Rubik", system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background:
    radial-gradient(circle at 18% 8%, rgba(240,215,140,0.16), transparent 32%),
    radial-gradient(circle at 86% 16%, rgba(201,162,39,0.14), transparent 36%),
    linear-gradient(180deg, #1c1610 0%, #120e08 100%);
  color: var(--ink);
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  background-image: radial-gradient(#fff 0.8px, transparent 0.9px);
  background-size: 8px 8px;
  z-index: 0;
}

a { color: inherit; text-decoration: none; }

.ticker {
  position: relative;
  z-index: 2;
  background: repeating-linear-gradient(-45deg, #1a140c 0 14px, #e0c878 14px 28px);
  color: #111;
  overflow: hidden;
  white-space: nowrap;
  font-family: var(--display);
  font-size: 18px;
  letter-spacing: 0.08em;
  padding: 9px 0;
  border-bottom: 2px solid #c9a227;
}

.ticker-track {
  display: inline-flex;
  gap: 28px;
  animation: marquee 18s linear infinite;
}

.ticker-track span {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  background: #16120c;
  color: var(--chrome);
  padding: 2px 0;
}

.dot {
  width: 8px;
  height: 10px;
  border-radius: 50%;
  background: #e0c878;
  display: inline-block;
  box-shadow: 0 0 0 3px #6a5a32;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.nav, .hero, .section, .footer, .disclaimer, main {
  position: relative;
  z-index: 1;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1180px;
  margin: 0 auto;
  padding: 18px 22px 6px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--comic-font);
  font-weight: 700;
  color: #e0c878;
}

.brand-mark {
  background: linear-gradient(180deg, #fff4c8 0%, #e0c878 48%, #b08d3e 100%);
  color: #2a220e;
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: 0.04em;
  padding: 4px 12px 0;
  border: 2px solid #f4e4b8;
  box-shadow: 4px 4px 0 #3a2a10;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: 0.04em;
}

.nav-links a:not(.btn):hover { color: var(--chrome); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  padding: 12px 18px 10px;
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: 0.04em;
  border: 2px solid #ead9a8;
  cursor: pointer;
  text-transform: uppercase;
  transition: transform 0.12s ease;
}

.btn:hover { transform: translateY(-1px); }

.btn-dark {
  background: linear-gradient(180deg, #3a2e14, #1c160c);
  color: #f6efe2;
  box-shadow: 4px 4px 0 #0e0b07;
}

.btn-ghost {
  background: linear-gradient(180deg, #fff4c8, #e0c878);
  color: #2a220e;
  box-shadow: 4px 4px 0 #3a2a10;
}

.hero {
  max-width: 1180px;
  margin: 0 auto;
  padding: 28px 22px 70px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: center;
}

.price-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #1c1812;
  color: var(--chrome);
  border: 1px solid #b08d3e;
  border-radius: 999px;
  padding: 7px 12px;
  font-family: var(--display);
  font-size: 16px;
  letter-spacing: 0.05em;
  margin-bottom: 18px;
  box-shadow: none;
}

.price-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e0c878;
  box-shadow: 0 0 0 4px rgba(224,200,120,0.22);
}

h1 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(54px, 8vw, 92px);
  line-height: 0.86;
  letter-spacing: 0.02em;
  text-shadow: 3px 4px 0 #0e0b07;
}

h1 em {
  font-style: normal;
  color: #e8c56a;
  display: block;
  text-shadow: 3px 4px 0 #0e0b07;
}

.lede {
  margin-top: 18px;
  max-width: 540px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.45;
  font-family: var(--comic-font);
  font-weight: 700;
}

.lede em { color: var(--gold); font-style: normal; }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.contract {
  margin-top: 14px;
  font-size: 13px;
  color: var(--steel);
  word-break: break-all;
  font-family: var(--comic-font);
}

.stage {
  position: relative;
  min-height: 460px;
  display: grid;
  place-items: center;
}

.bar-wrap {
  width: min(460px, 100%);
  animation: float 5.5s ease-in-out infinite;
  filter: drop-shadow(0 28px 24px rgba(0,0,0,0.35));
}

.bar-wrap .ingot {
  width: 100%;
  height: auto;
  display: block;
  overflow: visible;
}

@keyframes float {
  0%, 100% { transform: rotate(-11deg) translateY(0); }
  50% { transform: rotate(-8deg) translateY(-10px); }
}

.chip {
  position: absolute;
  background: var(--gold);
  color: #111;
  border: 2px solid #ead9a8;
  border-radius: 8px;
  padding: 8px 10px;
  font-family: var(--display);
  font-size: 18px;
  box-shadow: 4px 4px 0 #3a3224;
  z-index: 2;
}

.chip-ag { top: 0; right: 4%; width: auto; text-align: center; background: #f4e4b8; }
.chip-ag b { display: block; font-size: 28px; line-height: 0.9; }
.chip-ag small { display: block; font-size: 14px; }
.chip-melt {
  top: 8%;
  left: 0;
  background: #f0d78c;
  max-width: 170px;
  line-height: 1.05;
  font-size: 16px;
}
.chip-melt small { display: block; font-size: 14px; font-weight: 400; margin-top: 2px; }
.chip-wen { bottom: 2%; left: -2%; right: auto; background: #e0c878; line-height: 1.05; }

.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 10px 22px 78px;
}

h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(42px, 7vw, 72px);
  letter-spacing: 0.03em;
  margin-bottom: 22px;
  color: var(--chrome);
  text-shadow: 3px 3px 0 #0e0b07;
}

.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.card {
  background: var(--paper);
  border: 1px solid #6a5a32;
  border-radius: 8px;
  padding: 18px 16px 22px;
  min-height: 210px;
  box-shadow: 6px 8px 0 #0e0b07;
}

.card:nth-child(2) { box-shadow: 6px 8px 0 #3a3224; }
.card:nth-child(3) { box-shadow: 6px 8px 0 #2a2418; }
.card.invert {
  background: linear-gradient(180deg, #f0d78c, #c9a227);
  color: #111;
  box-shadow: 6px 8px 0 #0e0b07;
}

.tag {
  display: inline-block;
  font-family: var(--display);
  font-size: 16px;
  letter-spacing: 0.06em;
  background: #3a3224;
  color: var(--chrome);
  padding: 4px 8px;
  margin-bottom: 14px;
  border: 1px solid #8a7438;
}

.card.invert .tag { background: #16120c; color: #ead9a8; }

.card p {
  font-size: 16px;
  line-height: 1.4;
  font-family: var(--comic-font);
  font-weight: 700;
  color: #e0c878;
}

.card.invert p { color: #111; }

.closer {
  margin-top: 28px;
  font-family: var(--display);
  font-size: 32px;
  color: var(--chrome);
  max-width: 760px;
}

.steps { display: grid; gap: 16px; }

.step {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 14px;
  align-items: start;
  background: #1c1812;
  border: 1px solid #6a5a32;
  border-radius: 8px;
  padding: 20px 22px;
  box-shadow: 6px 8px 0 #0e0b07;
}

.step:nth-child(2),
.step:nth-child(3) { border-color: #6a5a32; transform: none; }

.num {
  font-family: var(--display);
  font-size: 52px;
  color: var(--lime);
  line-height: 0.9;
}

.step h3 {
  font-size: 30px;
  font-family: var(--display);
  font-weight: 400;
  margin-bottom: 4px;
}

.step p {
  color: var(--muted);
  line-height: 1.5;
  max-width: 720px;
  font-family: var(--comic-font);
  font-weight: 700;
}

.callout {
  margin-top: 22px;
  background: #2a2418;
  color: var(--ink);
  border: 1px solid #8a7438;
  border-radius: 10px;
  padding: 28px 30px;
  box-shadow: 8px 8px 0 #0e0b07;
}

.callout h3 {
  font-family: var(--display);
  font-size: 40px;
  font-weight: 400;
  margin-bottom: 8px;
}

.callout p { max-width: 760px; line-height: 1.5; font-family: var(--comic-font); font-weight: 700; }
.callout em { color: var(--gold); font-style: normal; }

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.stat {
  background: #f3e6c0;
  color: #111;
  border: 1px solid #b08d3e;
  border-radius: 8px;
  padding: 18px;
  box-shadow: 5px 6px 0 #0e0b07;
}

.stat:nth-child(2) { background: #e0c878; }
.stat:nth-child(3) { background: #d4b56a; }

.stat b {
  display: block;
  font-family: var(--display);
  font-size: 42px;
  font-weight: 400;
}

.stat span { font-family: var(--comic-font); font-weight: 700; }

.silver-copy {
  max-width: 760px;
  font-size: 22px;
  line-height: 1.45;
  color: var(--muted);
  font-family: var(--comic-font);
  font-weight: 700;
}

.silver-copy + .silver-copy { margin-top: 14px; }

.faq { display: grid; gap: 10px; }

.faq details {
  background: #1c1812;
  border: 1px solid #6a5a32;
  border-radius: 8px;
  padding: 14px 16px;
  box-shadow: 4px 5px 0 #0e0b07;
}

.faq details:nth-child(even) { box-shadow: 4px 5px 0 #2a2418; }

.faq summary {
  cursor: pointer;
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: 0.03em;
  list-style: none;
}

.faq summary::-webkit-details-marker { display: none; }

.faq p {
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.5;
  font-family: var(--comic-font);
  font-weight: 700;
}

.footer {
  border-top: 2px solid #8a7438;
  padding: 22px;
  max-width: 1180px;
  margin: 0 auto 30px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-family: var(--display);
  font-size: 20px;
}

.disclaimer {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 22px 40px;
  color: #b08d3e;
  font-size: 13px;
  line-height: 1.6;
}

.mobile-buy { display: none; }

.boom {
  display: inline-block;
  background: #e0c878;
  color: #111;
  font-family: var(--display);
  padding: 2px 8px 0;
  border: 2px solid #f4e4b8;
  box-shadow: 3px 3px 0 #0e0b07;
}

.win {
  background: #1a1610;
  border: 1px solid #b08d3e;
  margin-bottom: 28px;
  box-shadow: 8px 8px 0 #0e0b07;
}

.win-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(90deg, #6a5a32, #2a2418);
  color: #f4e4b8;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 12px;
  letter-spacing: 0.16em;
  padding: 8px 10px;
  border-bottom: 1px solid #b08d3e;
}

.win-x {
  width: 22px;
  height: 18px;
  border: 1px solid #b08d3e;
  display: grid;
  place-items: center;
  font-size: 14px;
  line-height: 1;
}

.win-kicker {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  color: #b08d3e;
  margin-bottom: 8px;
}

.win-title {
  font-family: var(--display);
  color: #eef2f6;
  text-shadow: none;
  transform: none;
  margin-bottom: 12px;
  font-size: clamp(32px, 5vw, 52px);
}

.win-lede {
  font-family: var(--comic-font);
  font-weight: 700;
  color: #e0c878;
  max-width: 820px;
  line-height: 1.5;
  margin-bottom: 22px;
}

.win-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid #6a5a32;
}

.win-stats > div {
  padding: 16px 18px;
  border-right: 1px solid #6a5a32;
}

.win-stats small { color: #b08d3e; }

.win-stats b { color: #f4e4b8; }

.win-stats span { color: #c4b89a; }

.win-stats > div:last-child { border-right: 0; }

.win-stats small {
  display: block;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.16em;
}

.win-stats b {
  display: block;
  font-family: var(--display);
  font-size: 42px;
  line-height: 1;
  margin: 6px 0 4px;
}

.win-stats span {
  font-family: var(--comic-font);
  font-weight: 700;
  font-size: 14px;
}

.win-body { padding: 28px 26px 32px; }

.meter {
  margin-top: 22px;
  height: 28px;
  border: 2px solid #e0c878;
  background: #0b0d11;
  position: relative;
  overflow: hidden;
}

.meter-fill {
  height: 100%;
  width: 0;
  background: repeating-linear-gradient(90deg, #ead9a8 0 10px, #c4b89a 10px 12px);
  transition: width 0.08s linear;
}

.meter span {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 12px;
  color: #111;
  font-weight: 600;
  mix-blend-mode: multiply;
}

.meter-cap {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 11px;
  color: #b08d3e;
}

.win-steps {
  margin-top: 22px;
  border: 1px solid #6a5a32;
  list-style: none;
}

.win-steps li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid #6a5a32;
  font-family: var(--comic-font);
  font-weight: 700;
  color: #e0c878;
  line-height: 1.45;
}

.win-steps li:last-child { border-bottom: 0; }

.win-steps b {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  color: #f4e4b8;
}

.split-bar {
  display: grid;
  grid-template-columns: 82fr 10fr 5fr 3fr;
  height: 44px;
  border: 2px solid #e8e2d4;
  margin: 8px 0 20px;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 12px;
  font-weight: 600;
}

.split-bar span {
  display: grid;
  place-items: center;
  color: #111;
}

.s82 { background: #f4e4b8; }
.s10 { background: #d4b56a; }
.s5 { background: #b08d3e; }
.s3 { background: #6a5a32; color: #f4e4b8; }

.split-list {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.split-list li {
  font-family: var(--comic-font);
  font-weight: 700;
  color: #e0c878;
}

.split-list b {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  color: #f4e4b8;
  margin-right: 8px;
}

.split-list em {
  color: #b08d3e;
  font-style: normal;
  font-size: 14px;
}

.win-note {
  font-family: var(--comic-font);
  font-weight: 700;
  color: #c4b89a;
  line-height: 1.5;
  max-width: 860px;
}

@media (max-width: 980px) {
  .hero, .cards, .stats, .win-stats { grid-template-columns: 1fr; }
  .win-stats > div { border-right: 0; border-bottom: 1px solid #6a5a32; }
  .win-stats > div:last-child { border-bottom: 0; }
  .split-bar { grid-template-columns: 1fr; height: auto; }
  .split-bar span { padding: 8px; }
  .nav-links { display: none; }
  .mobile-buy { display: inline-flex; }
  .stage { min-height: 340px; }
  .bar-wrap { width: 250px; }
  .step { grid-template-columns: 48px 1fr; }
  .footer { flex-direction: column; }
  h1 { text-shadow: 3px 3px 0 #0e0b07; }
}
