/* ============================================================
   ROBIN ARROW / $ARROW — style.css
   Palette: acid lime #CCFF00, near-black ink, graphite, soft gray, white
   ============================================================ */

:root {
  --lime: #CCFF00;
  --lime-bright: #D9FF33;
  --lime-deep: #A8D400;
  --lime-dim: #8FB800;
  --ink: #131811;
  --ink-2: #1B211A;
  --graphite: #242B23;
  --graphite-2: #2E362C;
  --gray: #5B635A;
  --gray-soft: #8A938A;
  --gray-light: #C9D0C6;
  --white: #FFFFFF;
  --paper: #F5F8EC;

  --radius: 20px;
  --radius-sm: 12px;
  --border: 3px solid var(--ink);
  --shadow: 8px 8px 0 var(--ink);
  --shadow-sm: 5px 5px 0 var(--ink);
  --font-display: "Space Grotesk", "Segoe UI", system-ui, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, sans-serif;
  --ease: cubic-bezier(.22, .9, .3, 1.15);
  --header-h: 76px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); }

body {
  font-family: var(--font-body);
  background: var(--lime);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .btn, .brand-name, .ticker-chip, .stat-label, .rw-label,
.tok-label, .addr-label, .section-kicker, .holder-label {
  font-family: var(--font-display);
}

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

::selection { background: var(--ink); color: var(--lime); }

/* ============ Buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 14px;
  border: var(--border);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .04em;
  text-decoration: none;
  cursor: pointer;
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow-sm);
  transition: transform .15s var(--ease), box-shadow .15s var(--ease), background .2s;
  white-space: nowrap;
}
.btn:hover { transform: translate(-2px, -2px); box-shadow: 7px 7px 0 var(--ink); }
.btn:active { transform: translate(3px, 3px); box-shadow: 2px 2px 0 var(--ink); }

.btn-dark { background: var(--ink); color: var(--lime); }
.btn-dark:hover { background: var(--ink-2); }
.btn-lime { background: var(--lime); color: var(--ink); }
.btn-lime:hover { background: var(--lime-bright); }
.btn-ghost { background: transparent; }
.btn-outline { background: transparent; }

.btn-sm { padding: 10px 18px; font-size: 13px; box-shadow: 4px 4px 0 var(--ink); }
.btn-lg { padding: 17px 34px; font-size: 17px; }
.btn[disabled] { opacity: .55; cursor: not-allowed; transform: none !important; }

.btn.is-claimed {
  background: var(--graphite); color: var(--lime);
  border-color: var(--lime); box-shadow: 5px 5px 0 rgba(204,255,0,.25);
}

.icon-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border-radius: 14px;
  border: var(--border); background: var(--white); color: var(--ink);
  box-shadow: var(--shadow-sm); cursor: pointer;
  transition: transform .15s var(--ease), box-shadow .15s var(--ease);
}
.icon-btn svg { width: 22px; height: 22px; }
.icon-btn:hover { transform: translate(-2px,-2px) rotate(-4deg); box-shadow: 7px 7px 0 var(--ink); }
.icon-btn:active { transform: translate(3px,3px); box-shadow: 2px 2px 0 var(--ink); }

.chip-btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 8px 14px; border-radius: 10px;
  border: 2px solid currentColor; background: transparent;
  color: inherit; font-family: var(--font-display); font-weight: 700;
  font-size: 12px; letter-spacing: .06em; cursor: pointer;
  transition: transform .12s var(--ease), background .2s, color .2s;
}
.chip-btn svg { width: 15px; height: 15px; }
.chip-btn:hover { transform: translateY(-2px); }
.chip-btn:active { transform: translateY(1px); }
.chip-btn.copied { background: var(--lime); color: var(--ink); border-color: var(--lime); }

/* ============ Header ============ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--header-h);
  background: transparent;
  transition: background .3s, box-shadow .3s;
}
.site-header.scrolled {
  background: var(--ink);
  box-shadow: 0 3px 0 rgba(19,24,17,.2);
}
.header-inner {
  display: flex; align-items: center; gap: 28px; height: var(--header-h);
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: inherit; }
.brand-mark {
  display: flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: 13px;
  background: var(--ink); border: var(--border);
  box-shadow: 4px 4px 0 rgba(19,24,17,.35);
  transition: transform .2s var(--ease);
}
.brand:hover .brand-mark { transform: rotate(-8deg) scale(1.05); }
.brand-arrow { width: 30px; height: 17px; color: var(--lime); transform: rotate(-45deg); }
.brand-name { font-weight: 700; font-size: 17px; letter-spacing: .05em; color: var(--ink); transition: color .3s; }
.site-header.scrolled .brand-name { color: var(--lime); }
.site-header.scrolled .brand-mark { background: var(--lime); border-color: var(--lime); }
.site-header.scrolled .brand-arrow { color: var(--ink); }

.main-nav { display: flex; gap: 26px; margin-left: auto; }
.main-nav a {
  font-family: var(--font-display); font-weight: 600; font-size: 15px;
  text-decoration: none; color: var(--ink); position: relative; padding: 4px 2px;
  transition: color .3s;
}
.main-nav a::after {
  content: ""; position: absolute; left: 0; bottom: -2px;
  width: 100%; height: 3px; border-radius: 2px;
  background: var(--ink); transform: scaleX(0); transform-origin: left;
  transition: transform .25s var(--ease), background .3s;
}
.main-nav a:hover::after { transform: scaleX(1); }
.main-nav .nav-game {
  padding: 4px 12px; background: var(--ink); color: var(--lime);
  border-radius: 999px;
}
.main-nav .nav-game::after { display: none; }
.main-nav .nav-game:hover { transform: rotate(-3deg); }
.site-header.scrolled .main-nav .nav-game { background: var(--lime); color: var(--ink) !important; }
.site-header.scrolled .main-nav a { color: var(--white); }
.site-header.scrolled .main-nav a::after { background: var(--lime); }
.site-header.scrolled .main-nav a:hover { color: var(--lime); }

.header-actions { display: flex; gap: 12px; }
.site-header.scrolled .btn-outline { color: var(--lime); border-color: var(--lime); box-shadow: 4px 4px 0 rgba(204,255,0,.25); }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  width: 46px; height: 46px; align-items: center; justify-content: center;
  background: var(--ink); border: var(--border); border-radius: 12px; cursor: pointer;
  margin-left: auto;
}
.nav-toggle span { display: block; width: 20px; height: 3px; border-radius: 2px; background: var(--lime); transition: transform .2s, opacity .2s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ============ Hero ============ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  padding: calc(var(--header-h) + 40px) 0 0;
  overflow: hidden;
}
.arrow-field { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.arrow-field .fa {
  position: absolute; color: var(--ink);
  will-change: transform;
  animation: drift var(--dur, 30s) ease-in-out var(--delay, 0s) infinite alternate;
}
.arrow-field .fa svg { width: 100%; height: 100%; display: block; }
@keyframes drift {
  from { transform: translate(0, 0) rotate(var(--rot, 0deg)); }
  to   { transform: translate(var(--dx, 40px), var(--dy, -30px)) rotate(calc(var(--rot, 0deg) + var(--spin, 20deg))); }
}

.hero-inner {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: center;
  flex: 1;
}
.hero-copy {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; max-width: 840px;
}
.hero-title {
  font-size: clamp(58px, 10vw, 128px);
  line-height: .94; letter-spacing: -.015em; font-weight: 700;
}
.t-outline {
  color: transparent;
  -webkit-text-stroke: 3px var(--ink);
  text-stroke: 3px var(--ink);
}
.hero-tagline {
  margin-top: 26px;
  font-family: var(--font-display);
  font-size: clamp(20px, 2.6vw, 28px); font-weight: 600;
}
.hero-sub { margin-top: 14px; max-width: 520px; font-size: 17px; color: var(--ink-2); }
.hero-actions {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 16px; margin-top: 36px;
}
.hero-ticker {
  margin-top: 40px;
  font-family: var(--font-display); font-weight: 600;
  font-size: 12px; letter-spacing: .3em; color: var(--ink-2); opacity: .75;
}

.emblem-wrap {
  width: clamp(120px, 16vw, 180px);
  margin-bottom: 20px;
  display: flex; align-items: center; justify-content: center;
  animation: bob 5s ease-in-out infinite;
  will-change: transform;
}
.emblem-arrow {
  width: 100%; aspect-ratio: 260 / 120;
  color: var(--ink);
  transform: rotate(-45deg);
  filter: drop-shadow(7px 8px 0 rgba(19,24,17,.18));
}

/* contract address pill */
.ca-pill {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 14px 20px; border-radius: 14px;
  border: var(--border); background: var(--white); color: var(--ink);
  box-shadow: var(--shadow-sm); cursor: pointer;
  font-family: var(--font-display);
  transition: transform .15s var(--ease), box-shadow .15s var(--ease), background .2s;
}
.ca-pill:hover { transform: translate(-2px, -2px); box-shadow: 7px 7px 0 var(--ink); }
.ca-pill:active { transform: translate(3px, 3px); box-shadow: 2px 2px 0 var(--ink); }
.ca-pill svg { width: 17px; height: 17px; }
.ca-label {
  padding: 3px 9px; border-radius: 8px;
  background: var(--ink); color: var(--lime);
  font-weight: 700; font-size: 12px; letter-spacing: .08em;
}
.ca-addr { font-family: "Consolas", "SF Mono", monospace; font-size: 15px; font-weight: 600; }
.ca-pill.copied { background: var(--ink); color: var(--lime); }
.ca-pill.copied .ca-label { background: var(--lime); color: var(--ink); }
@keyframes bob {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-18px) rotate(2deg); }
}

.hero-marquee {
  position: relative; z-index: 1;
  margin-top: 48px; padding: 14px 0;
  background: var(--ink); color: var(--lime);
  border-top: var(--border); border-bottom: var(--border);
  overflow: hidden; white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  font-family: var(--font-display); font-weight: 700; font-size: 16px; letter-spacing: .14em;
  animation: marquee 22s linear infinite;
  will-change: transform;
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-33.333%); } }

/* ============ Sections ============ */
.section { padding: 110px 0; position: relative; }
.section-dark {
  background: var(--ink); color: var(--white);
  border-top: var(--border); border-bottom: var(--border);
}
.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head-sub { margin-top: 110px; }
.section-kicker {
  display: inline-block; padding: 6px 14px; margin-bottom: 16px;
  border-radius: 999px; font-size: 12px; font-weight: 700; letter-spacing: .18em;
  background: var(--ink); color: var(--lime);
}
.section-dark .section-kicker { background: var(--lime); color: var(--ink); }
.section-head h2 {
  font-size: clamp(34px, 5vw, 56px); line-height: 1.02; letter-spacing: -.01em; font-weight: 700;
}
.section-lead { margin-top: 16px; font-size: 17px; color: var(--gray); }
.section-dark .section-lead { color: var(--gray-light); }

/* ============ Holder section ============ */
.holder-card {
  background: var(--graphite);
  border: 3px solid var(--lime);
  border-radius: var(--radius);
  box-shadow: 10px 10px 0 rgba(204,255,0,.16);
  padding: 36px;
  transition: box-shadow .4s;
}
.holder-card.pulse { animation: cardPulse 1.1s var(--ease); }
@keyframes cardPulse {
  0% { box-shadow: 10px 10px 0 rgba(204,255,0,.16); }
  30% { box-shadow: 0 0 0 10px rgba(204,255,0,.28), 10px 10px 0 rgba(204,255,0,.3); }
  100% { box-shadow: 10px 10px 0 rgba(204,255,0,.16); }
}

.pass-track {
  display: flex; align-items: center; gap: 18px;
  padding-bottom: 30px; margin-bottom: 30px;
  border-bottom: 2px dashed var(--graphite-2);
}
.pass-chip {
  padding: 10px 16px; border-radius: 12px;
  background: var(--ink-2); border: 2px solid var(--graphite-2);
  font-family: var(--font-display); font-weight: 600; font-size: 14px;
  color: var(--gray-soft); transition: color .3s, border-color .3s, background .3s;
  white-space: nowrap;
}
.pass-chip-active { color: var(--ink); background: var(--lime); border-color: var(--lime); }
.pass-lane { position: relative; flex: 1; height: 34px; }
.pass-line {
  position: absolute; top: 50%; left: 0; right: 0; height: 0;
  border-top: 3px dashed var(--graphite-2);
}
.pass-arrow {
  position: absolute; top: 50%; left: 0;
  width: 56px; height: 26px; margin-top: -13px;
  color: var(--lime);
  transition: left 1.4s var(--ease);
  filter: drop-shadow(3px 4px 0 rgba(0,0,0,.4));
  z-index: 1;
}
.pass-arrow.fly { left: calc(100% - 56px); }

.holder-empty { text-align: center; padding: 30px 0 36px; }
.empty-arrow {
  width: 130px; height: 62px; color: var(--lime);
  transform: rotate(-45deg);
  animation: bob 4s ease-in-out infinite;
  filter: drop-shadow(6px 7px 0 rgba(0,0,0,.4));
}
.holder-empty p {
  margin-top: 22px; font-family: var(--font-display);
  font-size: 24px; font-weight: 600; color: var(--gray-light);
}

.holder-body { display: grid; grid-template-columns: 1.1fr 1fr; gap: 36px; align-items: center; }
.holder-label { font-size: 12px; font-weight: 700; letter-spacing: .16em; color: var(--gray-soft); }
.holder-address-row { display: flex; align-items: center; gap: 14px; margin-top: 10px; flex-wrap: wrap; }
.holder-address {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(20px, 2.6vw, 30px); color: var(--lime);
  transition: opacity .35s, transform .35s;
}
.holder-address.swap-out { opacity: 0; transform: translateY(-10px); }
.holder-card .chip-btn { color: var(--gray-light); }
.holder-status {
  display: inline-flex; align-items: center; gap: 10px; margin-top: 18px;
  font-family: var(--font-display); font-weight: 700; font-size: 14px; letter-spacing: .1em;
}
.status-dot {
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--gray); transition: background .3s;
}
.status-dot.active { background: var(--lime); box-shadow: 0 0 0 0 rgba(204,255,0,.5); animation: dotPulse 2s infinite; }
@keyframes dotPulse {
  0% { box-shadow: 0 0 0 0 rgba(204,255,0,.5); }
  70% { box-shadow: 0 0 0 10px rgba(204,255,0,0); }
  100% { box-shadow: 0 0 0 0 rgba(204,255,0,0); }
}

.holder-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.holder-stats.holder-stats-2 { grid-template-columns: repeat(2, 1fr); }
.stat {
  background: var(--ink-2); border: 2px solid var(--graphite-2);
  border-radius: var(--radius-sm); padding: 18px 16px;
  transition: transform .2s var(--ease), border-color .2s;
}
.stat:hover { transform: translateY(-4px); border-color: var(--lime); }
.stat-value { font-family: var(--font-display); font-weight: 700; font-size: 22px; color: var(--white); }
.stat-value small { font-size: 13px; color: var(--gray-soft); }
.stat-label { margin-top: 6px; font-size: 11px; font-weight: 600; letter-spacing: .12em; color: var(--gray-soft); }

.holder-foot {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  margin-top: 32px; padding-top: 28px; border-top: 2px dashed var(--graphite-2);
  flex-wrap: wrap;
}
.holder-note { font-size: 16px; color: var(--gray-light); }
.holder-note strong { color: var(--lime); }

/* ============ Steps ============ */
.steps-wrap { position: relative; }
.steps-path {
  position: absolute; top: 96px; left: 6%; width: 88%; height: 60px;
  color: var(--ink); opacity: .8; z-index: 0;
}
.steps-path path { animation: dashFlow 1.6s linear infinite; }
@keyframes dashFlow { to { stroke-dashoffset: -26; } }

.steps { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.step-card {
  background: var(--white); border: var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 34px 28px; position: relative;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.step-card:hover { transform: translate(-3px, -5px) rotate(-.5deg); box-shadow: 12px 13px 0 var(--ink); }
.step-num {
  position: absolute; top: -20px; right: 22px;
  width: 44px; height: 44px; display: flex; align-items: center; justify-content: center;
  background: var(--ink); color: var(--lime); border-radius: 13px;
  font-family: var(--font-display); font-weight: 700; font-size: 20px;
  border: var(--border); box-shadow: 3px 3px 0 rgba(19,24,17,.3);
}
.step-icon {
  width: 84px; height: 84px; border-radius: 18px;
  background: var(--lime); border: var(--border);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
}
.step-icon svg { width: 52px; height: 26px; color: var(--ink); transform: rotate(-45deg); transition: transform .3s var(--ease); }
.step-card:hover .step-icon svg { transform: rotate(-45deg) translateX(5px) scale(1.08); }
.step-icon-hold { background: var(--ink); }
.step-icon-hold svg { color: var(--lime); transform: rotate(0deg); }
.step-card:hover .step-icon-hold svg { transform: translateX(5px) scale(1.08); }
.step-icon-out { background: var(--paper); }
.step-icon-out svg { transform: rotate(45deg); }
.step-card:hover .step-icon-out svg { transform: rotate(45deg) translateX(5px) scale(1.08); }
.step-card h3 { font-size: 21px; font-weight: 700; letter-spacing: .01em; }
.step-card p { margin-top: 10px; font-size: 15px; color: var(--gray); }

/* ============ Rules ============ */
.rules-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.rule-card {
  text-align: left; background: var(--white);
  border: var(--border); border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm); padding: 20px 22px; cursor: pointer;
  font-family: var(--font-body);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.rule-card:hover { transform: translate(-2px, -2px); box-shadow: 7px 7px 0 var(--ink); }
.rule-title {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  font-family: var(--font-display); font-weight: 700; font-size: 17px; color: var(--ink);
}
.rule-plus {
  position: relative; flex: 0 0 30px; height: 30px;
  background: var(--lime); border: 2px solid var(--ink); border-radius: 9px;
  transition: transform .25s var(--ease), background .25s;
}
.rule-plus::before, .rule-plus::after {
  content: ""; position: absolute; top: 50%; left: 50%;
  width: 12px; height: 3px; border-radius: 2px; background: var(--ink);
  transform: translate(-50%, -50%);
}
.rule-plus::after { transform: translate(-50%, -50%) rotate(90deg); transition: transform .25s var(--ease); }
.rule-card[aria-expanded="true"] .rule-plus { transform: rotate(180deg); background: var(--ink); }
.rule-card[aria-expanded="true"] .rule-plus::before,
.rule-card[aria-expanded="true"] .rule-plus::after { background: var(--lime); }
.rule-card[aria-expanded="true"] .rule-plus::after { transform: translate(-50%, -50%) rotate(0deg); }
.rule-body {
  display: block; overflow: hidden; max-height: 0; opacity: 0;
  font-size: 15px; color: var(--gray);
  transition: max-height .35s var(--ease), opacity .3s, margin-top .3s;
}
.rule-card[aria-expanded="true"] .rule-body { max-height: 140px; opacity: 1; margin-top: 12px; }

/* ============ Rewards ============ */
.fee-split {
  background: var(--graphite); border: 2px solid var(--graphite-2);
  border-radius: var(--radius); padding: 34px; margin-bottom: 30px;
}
.fee-bar {
  display: flex; height: 74px; border-radius: 14px; overflow: hidden;
  border: 3px solid var(--lime);
}
.fee-seg {
  display: flex; align-items: center; justify-content: center;
  width: 0; transition: width 1.2s var(--ease);
}
.fee-split.animated .fee-seg { width: var(--w); }
.fee-seg-holder { background: var(--lime); color: var(--ink); }
.fee-seg-all { background: var(--ink-2); color: var(--lime); }
.fee-pct { font-family: var(--font-display); font-weight: 700; font-size: clamp(18px, 3vw, 30px); }
.fee-legend { display: flex; gap: 32px; margin-top: 20px; flex-wrap: wrap; }
.fee-key { display: flex; align-items: center; gap: 10px; font-size: 15px; color: var(--gray-light); }
.fee-swatch { width: 18px; height: 18px; border-radius: 6px; border: 2px solid var(--lime); }
.sw-holder { background: var(--lime); }
.sw-all { background: var(--ink-2); }
.fee-note { margin-top: 18px; font-size: 14px; color: var(--gray-soft); }
.fee-note.highlight { color: var(--lime); }

.rewards-panel {
  background: var(--graphite); border: 3px solid var(--lime);
  border-radius: var(--radius); box-shadow: 10px 10px 0 rgba(204,255,0,.16);
  padding: 36px;
}
.rewards-disconnected { text-align: center; padding: 26px 0; }
.rw-arrow {
  width: 110px; height: 52px; color: var(--gray); transform: rotate(-45deg);
  margin-bottom: 18px;
}
.rewards-disconnected p { max-width: 420px; margin: 0 auto 24px; color: var(--gray-light); font-size: 16px; }

.rw-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.rw-stat {
  background: var(--ink-2); border: 2px solid var(--graphite-2);
  border-radius: var(--radius-sm); padding: 22px 18px;
  transition: transform .2s var(--ease), border-color .2s;
}
.rw-stat:hover { transform: translateY(-4px); border-color: var(--lime); }
.rw-stat-total { background: var(--lime); border-color: var(--lime); }
.rw-stat-total .rw-value, .rw-stat-total .rw-value small, .rw-stat-total .rw-label { color: var(--ink); }
.rw-value { font-family: var(--font-display); font-weight: 700; font-size: 24px; color: var(--white); }
.rw-value small { font-size: 13px; color: var(--gray-soft); }
.rw-label { margin-top: 8px; font-size: 11px; font-weight: 600; letter-spacing: .12em; color: var(--gray-soft); }
.rw-actions { display: flex; align-items: center; gap: 22px; margin-top: 30px; flex-wrap: wrap; }
.rw-wallet { font-family: var(--font-display); font-size: 14px; color: var(--gray-soft); }

/* ============ Tokenomics ============ */
.tok-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.tok-card {
  background: var(--white); border: var(--border); border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm); padding: 24px 22px;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s;
}
.tok-card:hover { transform: translate(-2px, -3px); box-shadow: 7px 8px 0 var(--ink); background: var(--paper); }
.tok-card-wide { grid-column: span 2; }
.tok-label { font-size: 11px; font-weight: 700; letter-spacing: .16em; color: var(--gray); }
.tok-value { margin-top: 8px; font-family: var(--font-display); font-weight: 700; font-size: 20px; }
.tok-value-big { font-size: clamp(28px, 3.6vw, 42px); }
.tok-value small { font-size: 15px; color: var(--gray); }

/* ============ Reveal on scroll ============ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }

/* ============ Responsive ============ */
@media (max-width: 1024px) {
  .steps-path { display: none; }
  .rw-grid { grid-template-columns: repeat(2, 1fr); }
  .tok-grid { grid-template-columns: repeat(2, 1fr); }
  .holder-body { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  .main-nav, .header-actions { display: none; }
  .nav-toggle { display: flex; }
  .site-header.menu-open { background: var(--ink); }
  .main-nav.open {
    display: flex; flex-direction: column; gap: 6px;
    position: fixed; top: var(--header-h); left: 0; right: 0;
    background: var(--ink); padding: 18px 24px 26px;
    border-bottom: var(--border);
  }
  .main-nav.open a { color: var(--white); font-size: 20px; padding: 10px 0; }
  .header-actions.open {
    display: flex; position: fixed; top: calc(var(--header-h) + 322px);
    left: 0; right: 0; background: var(--ink); padding: 0 24px 26px;
    border-bottom: 3px solid var(--lime);
  }
  .emblem-wrap { width: 110px; margin-bottom: 14px; }
  .hero-ticker { margin-top: 30px; letter-spacing: .2em; }
  .steps { grid-template-columns: 1fr; }
  .rules-grid { grid-template-columns: 1fr; }
  .holder-stats { grid-template-columns: 1fr 1fr; }
  .section { padding: 80px 0; }
  .section-head-sub { margin-top: 80px; }
  .pass-track { gap: 10px; }
  .pass-chip { font-size: 11px; padding: 8px 10px; }
}
@media (max-width: 560px) {
  .rw-grid { grid-template-columns: 1fr; }
  .tok-grid { grid-template-columns: 1fr; }
  .tok-card-wide { grid-column: span 1; }
  .holder-card, .rewards-panel, .contract-card, .fee-split { padding: 24px 18px; }
  .holder-stats { grid-template-columns: 1fr; }
  .hero-actions .btn-lg { width: 100%; }
  .ca-pill { width: 100%; justify-content: center; }
  .pass-chip:first-child { display: none; }
}

/* ============ Reduced motion ============ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001s !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001s !important;
  }
  .arrow-field .fa, .emblem-wrap, .marquee-track, .steps-path path { animation: none !important; }
  .reveal { opacity: 1; transform: none; }
  .fee-split .fee-seg { width: var(--w); }
}

/* ============================================================
   On-chain integration UI (GMGN button, data badge, wallet states)
   ============================================================ */

/* GMGN button — icon + label, matches the outline button system */
.btn-gmgn { display: inline-flex; align-items: center; gap: 8px; }
.btn-gmgn .gmgn-ico { width: 18px; height: 18px; }
.btn-gmgn.btn-lg .gmgn-ico { width: 22px; height: 22px; }

/* Disabled affordance (pre-launch): flat, muted, non-interactive */
.btn.is-disabled,
.btn.is-disabled:hover,
.btn.is-disabled:active {
  cursor: not-allowed;
  opacity: .45;
  transform: none;
  box-shadow: 3px 3px 0 rgba(19, 24, 17, .35);
  filter: grayscale(.4);
  pointer-events: auto; /* keep it focus/hover-able to show the title, click is prevented in JS */
}
.btn.is-disabled { position: relative; }

/* Data-source badge in the hero ticker */
.data-badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: .08em;
  background: rgba(19, 24, 17, .12);
  color: var(--ink);
}
.data-badge.is-live {
  background: var(--lime);
  color: var(--ink);
  box-shadow: 0 0 0 2px var(--ink) inset;
}

/* Empty contract-address pill (pre-launch) */
.ca-pill.is-empty { cursor: default; opacity: .7; }
.ca-pill.is-empty:hover { transform: none; box-shadow: var(--shadow-sm); }

/* Connected wallet button gets a subtle lime tick */
.btn.is-connected { background: var(--lime); color: var(--ink); }

/* Wallet status / error line under the claim button */
.rw-wallet.rw-error { color: #E23B3B; font-weight: 700; }

@media (prefers-reduced-motion: reduce) {
  .btn.is-disabled { filter: grayscale(.4); }
}

/* LIVE tag on the on-chain fees card */
.live-tag {
  display: inline-block;
  margin-left: 6px;
  padding: 1px 7px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  vertical-align: middle;
  background: var(--lime);
  color: var(--ink);
  box-shadow: 0 0 0 2px var(--ink) inset;
}

/* Demo-data note in the connected rewards panel */
.rw-demo-note {
  margin: 0 0 14px;
  padding: 8px 12px;
  border: 2px dashed var(--ink);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  opacity: .8;
  background: rgba(19, 24, 17, .05);
}

/* DEMO banner on the holder card (shown only when not reading real chain data) */
.holder-demo-banner {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 16px;
  padding: 9px 14px;
  border: 2px dashed var(--lime);
  border-radius: 10px;
  background: rgba(204, 255, 0, .08);
  color: var(--lime);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .02em;
}
.holder-demo-banner .hdb-dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 3px rgba(204, 255, 0, .25);
  flex: none;
}
