/* =====================================================================
   $STUMPS — playful pastel pump.fun-style landing
   ===================================================================== */

:root {
  --bg: #fff8ec;        /* warm cream */
  --bg-2: #e9f4ee;      /* pale mint wash */
  --bg-3: #ffeef0;      /* pale coral wash */
  --panel: #ffffff;
  --ink: #1f2433;
  --ink-2: #2b2f43;
  --ink-mid: #5a6378;
  --ink-dim: #8b94a8;
  --line: #ecdfd0;
  --line-2: #e5ead2;

  --mint: #4ec9a5;
  --mint-dark: #2da37d;
  --mint-soft: #d4f1e6;
  --coral: #ff6b6b;
  --coral-dark: #e84e4e;
  --coral-soft: #ffd6d6;
  --orange: #f58a1f;
  --yellow: #ffd93d;
  --blue: #3fa9f5;
  --purple: #8b7fd8;

  --apple: #555;
  --nvda-green: #76b900;
  --msft-blue: #00a4ef;

  --r: 22px;
  --r-sm: 14px;
  --r-lg: 32px;

  --shadow-sm: 0 4px 12px rgba(31, 36, 51, 0.08);
  --shadow-md: 0 18px 48px rgba(31, 36, 51, 0.12);
  --shadow-lg: 0 30px 80px rgba(31, 36, 51, 0.15);

  --content-w: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.mint { color: var(--mint); }
.coral { color: var(--coral); }

/* ============================ CONFETTI BG ============================ */
.confetti {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    radial-gradient(3px 3px at 12% 14%, rgba(255, 107, 107, 0.4), transparent 60%),
    radial-gradient(2.5px 2.5px at 88% 8%, rgba(78, 201, 165, 0.45), transparent 60%),
    radial-gradient(3px 3px at 22% 64%, rgba(139, 127, 216, 0.4), transparent 60%),
    radial-gradient(2px 2px at 78% 42%, rgba(63, 169, 245, 0.4), transparent 60%),
    radial-gradient(3px 3px at 8% 88%, rgba(255, 217, 61, 0.45), transparent 60%),
    radial-gradient(2.5px 2.5px at 92% 78%, rgba(245, 138, 31, 0.4), transparent 60%),
    radial-gradient(2px 2px at 48% 20%, rgba(78, 201, 165, 0.35), transparent 60%),
    radial-gradient(2.5px 2.5px at 36% 92%, rgba(255, 107, 107, 0.35), transparent 60%),
    radial-gradient(2px 2px at 64% 8%, rgba(139, 127, 216, 0.35), transparent 60%),
    radial-gradient(3px 3px at 56% 76%, rgba(63, 169, 245, 0.35), transparent 60%),
    radial-gradient(2px 2px at 18% 36%, rgba(255, 217, 61, 0.4), transparent 60%),
    radial-gradient(2.5px 2.5px at 82% 56%, rgba(245, 138, 31, 0.35), transparent 60%);
  background-size: 1600px 1600px;
  background-repeat: repeat;
  animation: drift 60s linear infinite;
}
@keyframes drift {
  from { background-position: 0 0; }
  to   { background-position: 1600px -1600px; }
}

.container {
  max-width: var(--content-w);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* ============================ NAV ============================ */
.nav {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255, 248, 236, 0.85);
  backdrop-filter: blur(14px) saturate(180%);
  -webkit-backdrop-filter: blur(14px) saturate(180%);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.nav.scrolled {
  background: rgba(255, 248, 236, 0.96);
  border-bottom-color: var(--line);
}
.nav-inner {
  max-width: var(--content-w);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
}
.brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: "Fredoka", sans-serif;
  font-weight: 700;
  color: var(--ink);
}
.brand-logo {
  width: 36px; height: 36px;
  border-radius: 10px;
  object-fit: contain;
  background: #fff;
  padding: 2px;
  box-shadow: var(--shadow-sm);
}
.brand-name {
  font-size: 20px;
  letter-spacing: -0.02em;
}
.nav-links { display: flex; gap: 28px; }
.nav-links a {
  font-size: 15px; font-weight: 500; color: var(--ink-mid);
  transition: color 0.15s ease;
}
.nav-links a:hover { color: var(--mint-dark); }
.nav-cta { display: flex; align-items: center; gap: 10px; }

.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  background: #fff;
  border: 2px solid var(--line);
  border-radius: 12px;
  cursor: pointer;
  position: relative;
}
.nav-toggle span {
  position: absolute; left: 10px; right: 10px;
  height: 2.5px; background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease, top 0.25s ease;
}
.nav-toggle span:nth-child(1) { top: 13px; }
.nav-toggle span:nth-child(2) { top: 19px; }
.nav-toggle span:nth-child(3) { top: 25px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { top: 19px; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { top: 19px; transform: rotate(-45deg); }

.nav-mobile {
  display: none;
  background: #fff;
  border-bottom: 1px solid var(--line);
  padding: 16px 20px 22px;
  flex-direction: column;
  gap: 8px;
}
.nav-mobile a {
  padding: 12px 6px;
  font-weight: 600;
  color: var(--ink-2);
  border-bottom: 1px solid var(--line);
}
.nav-mobile a.btn { border-bottom: none; margin-top: 6px; justify-content: center; }
.nav-mobile.open { display: flex; }

/* ============================ BUTTONS ============================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 999px;
  border: 3px solid;
  font-family: "Fredoka", "DM Sans", sans-serif;
  font-weight: 600; font-size: 15px;
  cursor: pointer;
  transition: transform 0.1s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
  letter-spacing: 0.005em;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-lg { padding: 16px 30px; font-size: 17px; }

.btn-mint {
  background: var(--mint);
  color: #fff;
  border-color: var(--mint-dark);
  box-shadow: 0 6px 0 var(--mint-dark);
}
.btn-mint:hover {
  background: var(--mint-dark);
  box-shadow: 0 8px 0 var(--mint-dark);
}
.btn-mint:active { box-shadow: 0 2px 0 var(--mint-dark); }

.btn-coral {
  background: var(--coral);
  color: #fff;
  border-color: var(--coral-dark);
  box-shadow: 0 6px 0 var(--coral-dark);
}
.btn-coral:hover {
  background: var(--coral-dark);
  box-shadow: 0 8px 0 var(--coral-dark);
}
.btn-coral:active { box-shadow: 0 2px 0 var(--coral-dark); }

.btn-outline {
  background: #fff;
  color: var(--ink);
  border-color: var(--ink);
  box-shadow: 0 6px 0 var(--ink);
}
.btn-outline:hover {
  background: var(--bg);
  box-shadow: 0 8px 0 var(--ink);
}
.btn-outline:active { box-shadow: 0 2px 0 var(--ink); }

/* ============================ HERO ============================ */
.hero {
  position: relative;
  padding: 60px 0 80px;
}
.hero-inner {
  max-width: var(--content-w);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.pill {
  display: inline-block;
  font-family: "Fredoka", sans-serif;
  font-weight: 600; font-size: 14px;
  color: var(--mint-dark);
  background: var(--mint-soft);
  border: 2px solid var(--mint);
  padding: 8px 18px;
  border-radius: 999px;
  margin-bottom: 22px;
}

.hero-title {
  font-family: "Fredoka", sans-serif;
  font-weight: 700;
  font-size: clamp(40px, 6.4vw, 76px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 0 0 22px;
  color: var(--ink);
}

.hero-sub {
  font-size: clamp(15px, 1.3vw, 18px);
  color: var(--ink-mid);
  max-width: 560px;
  margin: 0 0 32px;
}
.hero-sub strong { color: var(--ink); font-weight: 700; }

.hero-cta {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin-bottom: 18px;
}
.hero-ca {
  display: inline-flex; align-items: center; gap: 10px; flex-wrap: wrap;
  background: #fff;
  border: 2.5px solid var(--ink);
  border-radius: 999px;
  padding: 8px 8px 8px 16px;
  box-shadow: 0 5px 0 var(--ink);
  margin-bottom: 28px;
  max-width: 100%;
}
.hero-ca-label {
  font-family: "Fredoka", sans-serif;
  font-weight: 700;
  font-size: 12px;
  color: var(--mint-dark);
  background: var(--mint-soft);
  border: 2px solid var(--mint);
  padding: 3px 10px;
  border-radius: 999px;
  letter-spacing: 0.06em;
}
.hero-ca-addr {
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  font-size: 13px;
  color: var(--ink);
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: clamp(120px, 30vw, 360px);
}
.copy-mini {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: "Fredoka", sans-serif;
  font-weight: 600;
  font-size: 12px;
  background: var(--mint);
  color: #fff;
  border: 2px solid var(--mint-dark);
  padding: 5px 12px;
  border-radius: 999px;
  cursor: pointer;
  letter-spacing: 0.04em;
  box-shadow: 0 3px 0 var(--mint-dark);
  transition: transform 0.1s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.copy-mini:hover { transform: translateY(-1px); background: var(--mint-dark); box-shadow: 0 4px 0 var(--mint-dark); }
.copy-mini:active { transform: translateY(1px); box-shadow: 0 1px 0 var(--mint-dark); }
.addr-link {
  font-family: "Fredoka", sans-serif;
  font-weight: 600;
  font-size: 12px;
  color: var(--mint-dark);
  text-decoration: underline;
  text-decoration-color: var(--mint-soft);
}
.addr-link:hover { text-decoration-color: var(--mint-dark); }

.copy-toast {
  position: fixed;
  bottom: 28px; left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--ink);
  color: #fff;
  border: 2.5px solid var(--mint);
  padding: 10px 22px;
  border-radius: 999px;
  font-family: "Fredoka", sans-serif;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 6px 0 var(--mint-dark);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 200;
}
.copy-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.hero-stats {
  display: flex; gap: 36px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}
.stat-num {
  font-family: "Fredoka", sans-serif;
  font-weight: 700;
  font-size: 36px;
  letter-spacing: -0.02em;
  line-height: 1;
}
.stat-lbl {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-dim);
  font-weight: 600;
  margin-top: 4px;
}

.hero-chips {
  display: flex; gap: 10px; flex-wrap: wrap;
}
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff;
  border: 2px solid var(--line);
  border-radius: 999px;
  padding: 9px 16px 9px 9px;
  font-weight: 600; font-size: 14px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.18s ease, border-color 0.18s ease;
}
.chip:hover { transform: translateY(-2px); border-color: var(--mint); }
.chip-mark {
  width: 22px; height: 22px; border-radius: 50%;
  display: inline-block;
}
.chip-mark.apple { background: #ddd; position: relative; }
.chip-mark.apple::after {
  content: ""; position: absolute; inset: 4px;
  background: #000;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M17.5 12.7c0-2.6 2.1-3.8 2.2-3.9-1.2-1.7-3-2-3.7-2-1.6-.2-3.1 1-3.9 1-.8 0-2-1-3.4-1-1.7 0-3.3 1-4.2 2.6-1.8 3.1-.5 7.7 1.3 10.2.8 1.2 1.9 2.6 3.3 2.6 1.3-.1 1.8-.8 3.4-.8s2 .8 3.4.8c1.4 0 2.3-1.3 3.2-2.5.7-.9 1.4-2.7 1.4-2.7-.1-.1-2.7-1-2.7-4.3zM15 4.2c.7-.8 1.2-2 1-3.2-1 .1-2.3.7-3 1.5-.7.8-1.3 2-1.1 3.1 1.2.1 2.4-.6 3.1-1.4z'/%3E%3C/svg%3E") no-repeat center / contain;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M17.5 12.7c0-2.6 2.1-3.8 2.2-3.9-1.2-1.7-3-2-3.7-2-1.6-.2-3.1 1-3.9 1-.8 0-2-1-3.4-1-1.7 0-3.3 1-4.2 2.6-1.8 3.1-.5 7.7 1.3 10.2.8 1.2 1.9 2.6 3.3 2.6 1.3-.1 1.8-.8 3.4-.8s2 .8 3.4.8c1.4 0 2.3-1.3 3.2-2.5.7-.9 1.4-2.7 1.4-2.7-.1-.1-2.7-1-2.7-4.3zM15 4.2c.7-.8 1.2-2 1-3.2-1 .1-2.3.7-3 1.5-.7.8-1.3 2-1.1 3.1 1.2.1 2.4-.6 3.1-1.4z'/%3E%3C/svg%3E") no-repeat center / contain;
}
.chip-mark.nvda { background: var(--nvda-green); }
.chip-mark.msft {
  background: conic-gradient(from 90deg, #f25022 0 25%, #7fba00 25% 50%, #00a4ef 50% 75%, #ffb900 75% 100%);
}

/* Hero art */
.hero-right { display: flex; align-items: center; justify-content: center; position: relative; }
.hero-art {
  width: 320px; height: 320px;
  border-radius: 50%;
  background: #fff;
  padding: 24px;
  border: 4px solid var(--ink);
  box-shadow: 0 14px 0 var(--ink);
  animation: bounce 4s ease-in-out infinite;
  position: relative;
  z-index: 2;
}
.hero-art-glow {
  position: absolute;
  width: 380px; height: 380px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 217, 61, 0.4) 0%, transparent 60%),
    radial-gradient(circle at 30% 30%, rgba(78, 201, 165, 0.3), transparent 60%);
  z-index: 1;
  filter: blur(20px);
  animation: pulse-glow 4s ease-in-out infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0) rotate(-3deg); }
  50% { transform: translateY(-16px) rotate(3deg); }
}
@keyframes pulse-glow {
  0%, 100% { transform: scale(0.95); opacity: 0.7; }
  50% { transform: scale(1.1); opacity: 1; }
}

/* ============================ SECTIONS ============================ */
.section {
  padding: 90px 0;
  position: relative;
}
.section-head { margin-bottom: 48px; }
.section-head.center { text-align: center; max-width: 720px; margin-left: auto; margin-right: auto; }
.eyebrow {
  display: inline-block;
  font-family: "Fredoka", sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--mint-dark);
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}
.h2 {
  font-family: "Fredoka", sans-serif;
  font-size: clamp(32px, 4.4vw, 54px);
  letter-spacing: -0.025em;
  font-weight: 700;
  margin: 0 0 14px;
  line-height: 1.05;
  color: var(--ink);
}
.h2 .mint { color: var(--mint); }
.lead {
  font-size: clamp(15px, 1.2vw, 17px);
  color: var(--ink-mid);
  max-width: 580px;
  margin: 0 0 22px;
}
.lead.center { margin-left: auto; margin-right: auto; }
.lead strong { color: var(--ink); font-weight: 700; }

/* BASKET */
.basket-section { background: var(--bg-2); }
.basket-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.basket-card {
  background: #fff;
  border: 3px solid var(--ink);
  border-radius: var(--r);
  padding: 32px 28px;
  text-align: center;
  box-shadow: 0 8px 0 var(--ink);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.basket-card:hover { transform: translateY(-4px); box-shadow: 0 12px 0 var(--ink); }
.basket-icon {
  width: 72px; height: 72px;
  border-radius: 18px;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  border: 3px solid var(--ink);
  box-shadow: 0 4px 0 var(--ink);
}
.basket-icon.apple-bg { background: #f5f0e8; color: #1f2433; }
.basket-icon.nvda-bg  { background: #e0f5c8; color: var(--nvda-green); }
.basket-icon.msft-bg  { background: #d6ecff; }
.basket-card h3 {
  font-family: "Fredoka", sans-serif;
  font-size: 22px; font-weight: 700;
  margin: 0 0 4px;
  letter-spacing: -0.01em;
}
.basket-card h3 .ticker {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  background: var(--bg);
  border: 2px solid var(--line);
  color: var(--ink-mid);
  padding: 2px 8px;
  border-radius: 999px;
  margin-left: 4px;
  vertical-align: middle;
  letter-spacing: 0.05em;
}
.basket-card p {
  color: var(--ink-mid);
  font-size: 14px;
  margin: 0 0 18px;
}
.basket-foot {
  display: flex; align-items: center; justify-content: center;
  gap: 10px;
}
.alloc {
  background: var(--mint-soft);
  color: var(--mint-dark);
  border: 2px solid var(--mint);
  padding: 5px 12px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
}
.link {
  background: #fff;
  border: 2px solid var(--line);
  padding: 5px 12px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 13px;
  color: var(--ink);
  transition: border-color 0.15s ease, color 0.15s ease;
}
.link:hover { border-color: var(--mint); color: var(--mint-dark); }
.basket-foot-note {
  text-align: center;
  margin-top: 30px;
  color: var(--ink-mid);
  font-size: 14px;
}

/* HOW */
.how-section { background: var(--bg); }
.how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.how-card {
  background: #fff;
  border: 3px solid var(--ink);
  border-radius: var(--r);
  padding: 26px 24px;
  box-shadow: 0 8px 0 var(--ink);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.how-card:hover { transform: translateY(-4px); box-shadow: 0 12px 0 var(--ink); }
.how-n {
  font-family: "Fredoka", sans-serif;
  font-weight: 700;
  font-size: 36px;
  color: var(--mint);
  line-height: 1;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}
.how-card h3 {
  font-family: "Fredoka", sans-serif;
  font-size: 18px; font-weight: 700;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.how-card p { margin: 0; color: var(--ink-mid); font-size: 14px; }
.how-card strong { color: var(--ink); }

/* WHY */
.why-section { background: var(--bg-3); }
.why-card {
  background: #fff;
  border: 3px solid var(--ink);
  border-radius: var(--r-lg);
  padding: 50px;
  box-shadow: 0 12px 0 var(--ink);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.why-list {
  list-style: none; padding: 0; margin: 18px 0 0;
  display: flex; flex-direction: column; gap: 10px;
}
.why-list li {
  display: flex; align-items: center; gap: 12px;
  font-weight: 600; font-size: 15px;
  color: var(--ink);
}
.check {
  width: 22px; height: 22px;
  flex-shrink: 0;
  background: var(--mint);
  border: 2px solid var(--mint-dark);
  border-radius: 50%;
  position: relative;
}
.check::after {
  content: "";
  position: absolute;
  left: 5px; top: 7px;
  width: 8px; height: 4px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}

.orb-mock {
  background: var(--bg);
  border: 3px solid var(--ink);
  border-radius: var(--r);
  padding: 22px;
  box-shadow: 0 8px 0 var(--ink);
  display: flex; flex-direction: column; gap: 12px;
}
.orb-tick {
  background: #fff;
  border: 2px solid var(--line);
  border-radius: 14px;
  padding: 14px 16px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
  font-weight: 600;
  animation: tick-in 1.6s ease-out infinite;
  animation-delay: var(--delay, 0s);
}
@keyframes tick-in {
  0% { transform: translateX(20px); opacity: 0; }
  20%, 80% { transform: translateX(0); opacity: 1; }
  100% { transform: translateX(-20px); opacity: 0; }
}
.orb-time {
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  font-size: 12px;
  color: var(--ink-dim);
}
.orb-stock {
  font-family: "Fredoka", sans-serif;
  font-weight: 700;
  font-size: 14px;
  padding: 4px 10px;
  border-radius: 999px;
}
.orb-stock.apple-c { background: #f5f0e8; color: #1f2433; border: 2px solid #ccc; }
.orb-stock.nvda-c  { background: #e0f5c8; color: var(--nvda-green); border: 2px solid var(--nvda-green); }
.orb-stock.msft-c  { background: #d6ecff; color: var(--msft-blue); border: 2px solid var(--msft-blue); }
.orb-foot {
  text-align: center;
  font-family: "Fredoka", sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: var(--mint-dark);
}

/* LIVE TABLE */
.live-section { background: var(--bg-2); }
.live-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  flex-wrap: wrap; gap: 16px;
}
.live-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff;
  border: 2.5px solid var(--mint);
  padding: 10px 18px; border-radius: 999px;
  font-weight: 600; font-size: 14px;
  box-shadow: var(--shadow-sm);
  color: var(--ink);
}
.live-pill strong { color: var(--mint-dark); }
.live-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--mint);
  animation: pulse-dot 1.6s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(78,201,165,0.55); }
  70%      { box-shadow: 0 0 0 8px rgba(78,201,165,0); }
}

.live-card {
  background: #fff;
  border: 3px solid var(--ink);
  border-radius: var(--r);
  box-shadow: 0 8px 0 var(--ink);
  overflow: hidden;
}
.live-table-wrap { overflow-x: auto; }
.live-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.live-table thead th {
  text-align: left;
  padding: 16px 22px;
  background: var(--bg);
  color: var(--ink);
  font-family: "Fredoka", sans-serif;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-bottom: 2px solid var(--line);
}
.live-table thead th.num { text-align: right; }
.live-table tbody td {
  padding: 14px 22px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
}
.live-table tbody td.num { text-align: right; font-weight: 700; font-variant-numeric: tabular-nums; }
.live-table tbody tr:last-child td { border-bottom: none; }
.live-table tbody tr.fresh { animation: row-flash 1.2s ease; }
@keyframes row-flash {
  0%   { background: var(--mint-soft); }
  100% { background: transparent; }
}
.addr-mini {
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  font-size: 12px; color: var(--ink-mid);
}
.stock-tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 12px; font-weight: 700;
  border: 2px solid;
}
.stock-tag.aapl { background: #f5f0e8; color: #1f2433; border-color: #aaa; }
.stock-tag.nvda { background: #e0f5c8; color: var(--nvda-green); border-color: var(--nvda-green); }
.stock-tag.msft { background: #d6ecff; color: var(--msft-blue); border-color: var(--msft-blue); }
.tx-link {
  color: var(--mint-dark);
  font-weight: 600;
  font-size: 13px;
  text-decoration: underline;
  text-decoration-color: var(--mint-soft);
}
.tx-link:hover { text-decoration-color: var(--mint-dark); }

/* ELIGIBILITY */
.elig-section { background: var(--bg); }
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.elig-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.elig-list li {
  background: #fff;
  border: 3px solid var(--ink);
  border-radius: var(--r-sm);
  padding: 22px 24px;
  box-shadow: 0 6px 0 var(--ink);
  display: flex; align-items: flex-start; gap: 18px;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.elig-list li:hover { transform: translateY(-2px); box-shadow: 0 9px 0 var(--ink); }
.elig-n {
  flex-shrink: 0;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--mint);
  color: #fff;
  border: 3px solid var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-family: "Fredoka", sans-serif;
  font-weight: 700; font-size: 18px;
}
.elig-list li:nth-child(2) .elig-n { background: var(--coral); }
.elig-list li:nth-child(3) .elig-n { background: var(--yellow); color: var(--ink); }
.elig-head {
  font-family: "Fredoka", sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--ink);
}
.elig-cap { color: var(--ink-mid); font-size: 14px; margin-top: 4px; }

/* DOCS */
.docs-section { background: var(--bg-2); }
.docs-body {
  background: #fff;
  border: 3px solid var(--ink);
  border-radius: var(--r);
  padding: 40px 48px;
  box-shadow: 0 8px 0 var(--ink);
  max-width: 880px; margin: 0 auto;
}
.docs-body h3 {
  font-family: "Fredoka", sans-serif;
  font-weight: 700;
  font-size: 20px;
  margin: 26px 0 8px;
  letter-spacing: -0.01em;
}
.docs-body h3:first-child { margin-top: 0; }
.docs-body p { margin: 0; color: var(--ink-mid); font-size: 15px; }
.docs-body strong { color: var(--ink); font-weight: 700; }
.docs-list { padding-left: 20px; margin: 8px 0 0; color: var(--ink-mid); }
.docs-list li { margin-bottom: 6px; font-size: 15px; }
.docs-pill {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  background: var(--bg);
  border: 2px solid var(--line);
  border-radius: 14px;
  padding: 14px 18px;
  margin-top: 12px;
}
.docs-pill .addr { flex: 1 1 240px; cursor: pointer; }
.docs-label {
  font-family: "Fredoka", sans-serif;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--mint-dark);
}
.addr {
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  font-size: 13px;
  color: var(--ink);
  word-break: break-all;
  background: transparent;
  border: none;
  padding: 0;
  border-radius: 0;
}

/* FINAL CTA */
.final-cta { background: var(--bg); padding-bottom: 120px; }
.cta-card {
  background:
    radial-gradient(circle at 10% 0%, var(--mint-soft), transparent 50%),
    radial-gradient(circle at 90% 100%, var(--coral-soft), transparent 50%),
    #fff;
  border: 3px solid var(--ink);
  border-radius: var(--r-lg);
  padding: 56px 40px;
  text-align: center;
  box-shadow: 0 12px 0 var(--ink);
}
.cta-card h2 {
  font-family: "Fredoka", sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: -0.025em;
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 12px;
}
.cta-card p {
  color: var(--ink-mid);
  font-size: 16px;
  margin: 0 0 28px;
}
.cta-buttons {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
}

/* ============================ FOOTER ============================ */
.footer {
  background: var(--bg-2);
  border-top: 3px solid var(--ink);
  padding-top: 40px;
  position: relative; z-index: 2;
}
.footer-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 30px; flex-wrap: wrap;
  padding-bottom: 30px;
}
.footer-brand {
  display: flex; align-items: center; gap: 14px;
  font-family: "Fredoka", sans-serif;
}
.footer-brand .brand-logo { width: 44px; height: 44px; }
.footer-brand .brand-name { font-size: 20px; font-weight: 700; color: var(--ink); }
.footer-tag { font-size: 13px; color: var(--ink-mid); margin-top: 2px; }
.footer-links { display: flex; gap: 24px; }
.footer-links a {
  font-size: 14px; font-weight: 500;
  color: var(--ink-mid);
  transition: color 0.15s ease;
}
.footer-links a:hover { color: var(--mint-dark); }
.footer-base {
  border-top: 1px solid var(--line);
  padding: 18px 0;
  text-align: center;
  font-size: 12px;
  color: var(--ink-dim);
}

/* ============================ RESPONSIVE ============================ */
@media (max-width: 980px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: block; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-right { order: -1; }
  .hero-art { width: 240px; height: 240px; padding: 18px; box-shadow: 0 10px 0 var(--ink); }
  .hero-art-glow { width: 280px; height: 280px; }
  .basket-grid { grid-template-columns: 1fr; }
  .how-grid { grid-template-columns: repeat(2, 1fr); }
  .why-card { grid-template-columns: 1fr; padding: 32px 28px; gap: 28px; }
  .split { grid-template-columns: 1fr; gap: 32px; }
  .section { padding: 64px 0; }
  .docs-body { padding: 28px 24px; }
}
@media (max-width: 580px) {
  .container, .nav-inner, .hero-inner { padding-left: 18px; padding-right: 18px; }
  .hero { padding: 30px 0 50px; }
  .hero-cta .btn { flex: 1; min-width: 0; }
  .hero-stats { gap: 24px; }
  .stat-num { font-size: 28px; }
  .how-grid { grid-template-columns: 1fr; }
  .section { padding: 56px 0; }
  .cta-card { padding: 36px 22px; }
  .cta-buttons .btn { flex: 1; }
  .live-table thead th, .live-table tbody td { padding: 12px 14px; }
  .live-table thead th:nth-child(2),
  .live-table tbody td:nth-child(2) { display: none; }
  .docs-body { padding: 24px 18px; }
  .docs-body h3 { font-size: 17px; }
}
