/* ============================================================
   baskIT — light editorial design system (Robinhood Chain)
   Fraunces serif display + Manrope sans, warm paper, neon-green
   accents, crisp white bordered cards, ruled tables.
   ============================================================ */

/* ============ TOKENS ============ */
:root {
  --bg:        #faf8f2;   /* warm paper */
  --bg-2:      #ffffff;
  --card:      #ffffff;
  --ink:       #17180f;
  --text:      #17180f;
  --muted:     #5d5f52;
  --muted-2:   #8b8d7f;

  --hair:      rgba(23,24,15,0.10);
  --hair-2:    rgba(23,24,15,0.18);
  --border:    rgba(23,24,15,0.14);

  --glass:     #ffffff;         /* solid card */
  --glass-2:   rgba(23,24,15,0.035);
  --glass-3:   rgba(23,24,15,0.06);

  --accent:      #ccff00;       /* neon fill */
  --accent-2:    #c2f200;
  --accent-dim:  #b6e800;
  --accent-ink:  #1c2400;       /* dark text on neon */
  --accent-text: #3f6a00;       /* readable green text on paper */
  --accent-soft: #eef8c9;       /* pale green fill */
  --accent-glow: rgba(160,204,0,0.30);

  --gold:   #d99a1f;
  --purple: #8a6bef;
  --blue:   #2f95df;
  --danger: #b42318;

  --radius:    12px;
  --radius-lg: 16px;
  --radius-xl: 22px;
  --maxw:      1120px;

  --shadow:    0 1px 2px rgba(23,24,15,0.04), 0 10px 26px -16px rgba(23,24,15,0.16);
  --shadow-lg: 0 2px 8px rgba(23,24,15,0.05), 0 30px 70px -34px rgba(23,24,15,0.24);

  --display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font:    'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --mono:    'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  color: var(--text);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  background:
    radial-gradient(1100px 640px at 50% -300px, rgba(204,255,0,0.20), transparent 60%),
    radial-gradient(700px 460px at 92% 0%, rgba(204,255,0,0.10), transparent 58%),
    var(--bg);
  background-attachment: fixed;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
::selection { background: var(--accent); color: var(--accent-ink); }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 26px; }
.container-narrow { max-width: 820px; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font); font-weight: 700; font-size: 15px; line-height: 1;
  padding: 13px 22px; border-radius: 999px; border: 1.5px solid transparent;
  cursor: pointer; letter-spacing: -0.01em; white-space: nowrap;
  transition: transform .16s ease, background .2s ease, border-color .2s ease, color .2s ease, box-shadow .25s ease;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--accent); color: var(--accent-ink); border-color: var(--ink); }
.btn-primary:hover { background: var(--accent-2); box-shadow: 4px 4px 0 var(--ink); transform: translate(-1px,-1px); }
.btn-outline { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn-outline:hover { background: var(--ink); color: var(--bg); }
.btn-ghost { background: var(--bg-2); color: var(--ink); border-color: var(--border); }
.btn-ghost:hover { border-color: var(--ink); }
.btn-lg { padding: 16px 30px; font-size: 16px; }
.btn-sm { padding: 9px 16px; font-size: 13px; }

/* ============ NAV ============ */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250,248,242,0.78);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, background .3s ease;
}
.nav.scrolled { border-bottom-color: var(--hair); background: rgba(250,248,242,0.92); }
.nav-inner { max-width: var(--maxw); margin: 0 auto; padding: 14px 26px; display: flex; align-items: center; gap: 26px; }
.brand { display: flex; align-items: center; gap: 9px; font-family: var(--display); font-weight: 600; font-size: 23px; letter-spacing: -0.02em; }
.brand-logo { width: 26px; height: 26px; display: block; }
.brand-name { color: var(--ink); }
.nav-links { display: flex; gap: 28px; margin-left: 16px; }
.nav-links a { color: var(--muted); font-size: 15px; font-weight: 600; transition: color .2s; }
.nav-links a:hover { color: var(--ink); }
.nav-cta { margin-left: auto; display: flex; align-items: center; gap: 12px; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: .25s; }

/* ============ HERO (centered editorial) ============ */
.hero { position: relative; overflow: hidden; }
.hero-glow {
  position: absolute; top: -320px; left: 50%; transform: translateX(-50%);
  width: 1100px; height: 760px;
  background: radial-gradient(closest-side, rgba(204,255,0,0.28), transparent 70%);
  pointer-events: none; z-index: 0;
}
.hero-inner {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: 70px 0 84px; position: relative; z-index: 1; gap: 46px;
}
.hero-copy { display: flex; flex-direction: column; align-items: center; max-width: 820px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600;
  color: var(--accent-text); margin-bottom: 24px; padding: 7px 15px; border-radius: 999px;
  border: 1.5px solid var(--border); background: var(--bg-2);
}
.eyebrow::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--accent-text); }
.hero-title {
  font-family: var(--display); font-weight: 500; font-optical-sizing: auto;
  font-size: clamp(48px, 8vw, 104px); line-height: 0.98; letter-spacing: -0.025em;
  margin-bottom: 24px;
}
.hero-title .accent { color: var(--accent-text); font-style: italic; font-weight: 400; }
.hero-sub { font-size: 19px; color: var(--muted); max-width: 560px; margin: 0 auto 32px; line-height: 1.55; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.hero-actions.center { justify-content: center; }
.hero-ca {
  display: inline-flex; align-items: center; gap: 12px; margin-top: 28px;
  padding: 7px 7px 7px 16px; border-radius: 999px; max-width: 100%;
  background: var(--bg-2); border: 1.5px solid var(--border);
}
.hero-ca-tag { font-family: var(--mono); font-size: 12px; font-weight: 600; letter-spacing: 0.02em; color: var(--accent-text); flex-shrink: 0; }
.hero-ca-value { font-family: var(--mono); font-size: 12px; color: var(--muted); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.hero-ca-copy { flex-shrink: 0; font-size: 11px; font-weight: 700; padding: 6px 12px; border-radius: 999px; border: 1.5px solid var(--border); background: transparent; color: var(--muted); cursor: pointer; transition: .15s; }
.hero-ca-copy:not([disabled]):hover { color: var(--ink); border-color: var(--ink); }
.hero-ca-copy[disabled] { opacity: .5; cursor: not-allowed; }
.badge.live { position: relative; }

.hero-meta { display: flex; gap: 48px; margin-top: 44px; justify-content: center; flex-wrap: wrap; }
.meta-item { display: flex; flex-direction: column; gap: 4px; }
.meta-item strong { font-family: var(--display); font-size: 32px; font-weight: 500; color: var(--ink); letter-spacing: -0.02em; }
.meta-item span { font-size: 13px; color: var(--muted-2); font-weight: 500; }

/* Preview card */
.preview-card {
  position: relative; border-radius: var(--radius-xl); padding: 26px; text-align: left;
  width: 100%; max-width: 460px; background: var(--card);
  border: 1.5px solid var(--ink); box-shadow: var(--shadow-lg);
}
.preview-top { display: flex; justify-content: space-between; margin-bottom: 20px; }
.badge {
  font-size: 10px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase;
  background: var(--accent); color: var(--accent-ink); padding: 5px 10px; border-radius: 7px;
  border: 1.5px solid var(--ink);
}
.badge-outline { background: transparent; color: var(--muted); border-color: var(--border); }
.preview-head { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.avatar { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; background: var(--accent); color: var(--accent-ink); font-family: var(--display); font-weight: 600; font-size: 20px; border: 1.5px solid var(--ink); }
.preview-author { font-weight: 700; font-size: 15px; }
.preview-handle { font-size: 12px; color: var(--muted-2); }
.preview-name { font-family: var(--display); font-size: 30px; font-weight: 500; letter-spacing: -0.02em; margin-bottom: 6px; }
.preview-desc { font-size: 14px; color: var(--muted); margin-bottom: 20px; }
.preview-stats { display: flex; gap: 30px; margin-bottom: 20px; }
.preview-stats .k { display: block; font-size: 11px; color: var(--muted-2); text-transform: uppercase; letter-spacing: 0.07em; font-weight: 600; }
.preview-stats .v { display: block; font-size: 17px; font-weight: 500; margin-top: 4px; font-family: var(--display); }
.preview-actions { display: flex; gap: 10px; margin-bottom: 22px; }
.preview-actions .btn { flex: 1; }
.preview-comp { border-top: 1.5px solid var(--hair); padding-top: 18px; }
.comp-label { font-size: 11px; color: var(--muted-2); text-transform: uppercase; letter-spacing: 0.07em; font-weight: 600; }
.comp-row { display: flex; align-items: center; gap: 11px; margin-top: 13px; font-size: 13px; font-weight: 600; }
.dot { width: 24px; height: 24px; border-radius: 7px; display: grid; place-items: center; background: var(--glass-2); border: 1.5px solid var(--border); font-size: 11px; font-weight: 700; color: var(--muted); flex-shrink: 0; }
.comp-row .bar { flex: 1; height: 7px; background: var(--glass-2); border-radius: 4px; overflow: hidden; }
.comp-row .bar i { display: block; height: 100%; background: var(--accent); border-radius: 4px; }
.comp-row .pct { color: var(--muted); min-width: 36px; text-align: right; font-variant-numeric: tabular-nums; }

/* Ticker */
.ticker { border-top: 1.5px solid var(--ink); border-bottom: 1.5px solid var(--ink); overflow: hidden; padding: 14px 0; background: var(--ink); }
.ticker-track { display: flex; white-space: nowrap; animation: scroll 30s linear infinite; }
.ticker-track span { font-family: var(--mono); font-size: 12px; font-weight: 500; letter-spacing: 0.14em; color: var(--bg); }
@keyframes scroll { to { transform: translateX(-50%); } }

/* ============ SECTIONS ============ */
.section { padding: 96px 0; position: relative; }
.section-alt { background: var(--bg-2); border-top: 1.5px solid var(--hair); border-bottom: 1.5px solid var(--hair); }
.kicker { display: flex; justify-content: center; align-items: center; gap: 9px; font-family: var(--mono); font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent-text); margin-bottom: 18px; }
.kicker::before, .kicker::after { content: ''; width: 24px; height: 1.5px; background: var(--accent-text); opacity: .5; }
.section-title { font-family: var(--display); font-size: clamp(34px, 5vw, 60px); font-weight: 500; letter-spacing: -0.02em; line-height: 1.02; text-align: center; }
.section-lead { font-size: 18px; color: var(--muted); max-width: 640px; margin: 18px auto 0; line-height: 1.55; text-align: center; }

/* Split (two sides) — keep side heading left */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 48px; }
.split-card { position: relative; border-radius: var(--radius-lg); padding: 34px; background: var(--card); border: 1.5px solid var(--border); transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease; }
.split-card:hover { border-color: var(--ink); transform: translateY(-4px); box-shadow: var(--shadow); }
.split-tag { font-family: var(--mono); font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent-text); }
.split-card h3 { font-family: var(--display); font-size: 28px; font-weight: 500; letter-spacing: -0.02em; margin: 12px 0 10px; }
.split-card > p { color: var(--muted); font-size: 15px; margin-bottom: 24px; line-height: 1.55; }
.picker { background: var(--glass-2); border: 1.5px solid var(--border); border-radius: var(--radius); padding: 20px; margin-bottom: 24px; }
.picker-label { font-size: 12px; color: var(--muted-2); text-transform: uppercase; letter-spacing: 0.07em; font-weight: 600; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 15px; }
.chip { font-size: 13px; font-weight: 600; padding: 8px 13px; border-radius: 999px; border: 1.5px solid var(--border); color: var(--muted); background: var(--bg-2); transition: .2s; }
.chip.on { border-color: var(--accent-text); color: var(--accent-text); background: var(--accent-soft); }
.discover-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.discover-item { display: flex; align-items: center; gap: 12px; padding: 13px 15px; background: var(--bg-2); border: 1.5px solid var(--border); border-radius: 12px; transition: border-color .2s; }
.discover-item:hover { border-color: var(--ink); }
.discover-item .dot { width: 32px; height: 32px; border-radius: 9px; font-size: 13px; }
.discover-item div { flex: 1; display: flex; flex-direction: column; }
.discover-item strong { font-size: 14px; font-weight: 700; }
.discover-item em { font-size: 12px; color: var(--muted-2); font-style: normal; }
.discover-item a { font-size: 13px; font-weight: 700; color: var(--accent-text); }

/* Features */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 52px; }
.feature { border-radius: var(--radius-lg); padding: 30px; background: var(--card); border: 1.5px solid var(--border); transition: border-color .2s, transform .2s, box-shadow .2s; }
.feature:hover { border-color: var(--ink); transform: translateY(-4px); box-shadow: var(--shadow); }
.feature-ic { display: inline-grid; place-items: center; width: 50px; height: 50px; border-radius: 13px; background: var(--accent-soft); color: var(--accent-text); font-size: 22px; margin-bottom: 20px; border: 1.5px solid var(--border); }
.feature h4 { font-family: var(--display); font-size: 21px; font-weight: 500; margin-bottom: 9px; letter-spacing: -0.01em; }
.feature p { font-size: 14px; color: var(--muted); line-height: 1.55; }

/* ============ MARQUEE ============ */
.marquee { border-top: 1.5px solid var(--ink); border-bottom: 1.5px solid var(--ink); background: var(--accent); overflow: hidden; padding: 16px 0; }
.marquee-track { display: flex; white-space: nowrap; animation: scroll 24s linear infinite; width: max-content; }
.marquee-track span { font-family: var(--display); font-style: italic; font-size: 22px; font-weight: 500; letter-spacing: -0.01em; color: var(--accent-ink); padding: 0 6px; }
.marquee-track .sep { opacity: .5; padding: 0 20px; font-style: normal; }
.marquee.dark { background: var(--ink); }
.marquee.dark .marquee-track span { color: var(--bg); }
.marquee.dark .marquee-track .sep { color: var(--accent); opacity: 1; }

/* ============ MEME CARD PACK ============ */
.pack-section { position: relative; overflow: hidden; }
.pack-head { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 10px; }
.pack-head > div { max-width: 720px; }
.punch { font-family: var(--display); font-size: clamp(38px, 6vw, 68px); font-weight: 500; letter-spacing: -0.02em; line-height: 1.0; margin-top: 6px; }
.punch .accent { color: var(--accent-text); font-style: italic; font-weight: 400; }
.coin-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 15px; margin-top: 48px; }
.coin-card {
  position: relative; border-radius: 16px; padding: 20px 18px; overflow: hidden;
  display: flex; flex-direction: column; gap: 22px; min-height: 128px;
  background: var(--card); border: 1.5px solid var(--border);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.coin-card::before { content: ''; position: absolute; inset: 0 0 auto 0; height: 60%; opacity: .12; pointer-events: none; background: radial-gradient(120% 100% at 50% 0%, var(--rar, var(--accent-text)), transparent 70%); }
.coin-card:hover { transform: translateY(-5px); border-color: var(--rar, var(--ink)); box-shadow: var(--shadow); }
.rarity-legendary { --rar: var(--gold); }
.rarity-epic { --rar: var(--purple); }
.rarity-rare { --rar: var(--blue); }
.coin-top { display: flex; align-items: center; justify-content: space-between; gap: 8px; position: relative; z-index: 1; }
.coin-tick { font-family: var(--mono); font-size: 12px; font-weight: 600; color: var(--muted); }
.coin-rarity { font-size: 9px; font-weight: 800; letter-spacing: 0.09em; padding: 3px 7px; border-radius: 6px; color: #fff; background: var(--rar, var(--accent-text)); text-transform: uppercase; flex-shrink: 0; }
.coin-name { font-family: var(--display); font-size: 24px; font-weight: 500; letter-spacing: -0.01em; position: relative; z-index: 1; margin-top: auto; }
.pack-note { margin-top: 30px; font-size: 14px; color: var(--muted); text-align: center; }

/* ============ BASKET BUILDER ============ */
.builder-wrap { display: grid; grid-template-columns: 1fr 0.92fr; gap: 24px; margin-top: 48px; align-items: start; text-align: left; }
.builder-card {
  position: relative; border-radius: var(--radius-xl); padding: 30px;
  background: var(--card); border: 1.5px solid var(--ink); box-shadow: var(--shadow-lg);
}
.builder-card h3 { font-family: var(--display); font-size: 23px; font-weight: 500; letter-spacing: -0.01em; margin-bottom: 6px; }
.builder-card .builder-hint { font-size: 13px; color: var(--muted); margin-bottom: 20px; line-height: 1.5; }
.ca-row { display: flex; gap: 10px; }
.ca-input {
  flex: 1; min-width: 0; font-family: var(--mono); font-size: 14px; color: var(--ink);
  background: var(--bg-2); border: 1.5px solid var(--border); border-radius: 11px; padding: 13px 15px;
  transition: border-color .2s;
}
.ca-input::placeholder { color: var(--muted-2); }
.ca-input:focus { outline: none; border-color: var(--ink); }
.ca-input.err { border-color: var(--danger); }
.ca-row .btn { flex-shrink: 0; }
.btn[disabled] { opacity: .45; cursor: not-allowed; }
.btn[disabled]:hover { box-shadow: none; transform: none; background: var(--accent); }

.lookup-result { margin-top: 18px; min-height: 4px; }
.lookup-card { border: 1.5px solid var(--border); border-radius: 13px; padding: 16px 18px; background: var(--bg-2); display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.lookup-card .lk-avatar { width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center; background: var(--accent-soft); border: 1.5px solid var(--border); font-family: var(--display); font-weight: 600; font-size: 16px; color: var(--accent-text); flex-shrink: 0; }
.lookup-card .lk-info { flex: 1; min-width: 120px; display: flex; flex-direction: column; gap: 2px; }
.lookup-card .lk-name { font-weight: 700; font-size: 15px; }
.lookup-card .lk-sub { font-family: var(--mono); font-size: 12px; color: var(--muted-2); }
.lk-status { font-size: 11px; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; padding: 5px 10px; border-radius: 999px; }
.lk-status.ok { color: var(--accent-ink); background: var(--accent); border: 1.5px solid var(--ink); }
.lk-status.no { color: var(--danger); background: #fdeceb; border: 1.5px solid rgba(180,35,24,0.3); }
.lk-status.pending { color: var(--muted); background: var(--glass-2); border: 1.5px solid var(--border); }
.lookup-card .btn { width: 100%; margin-top: 6px; }
.lookup-msg { font-size: 13px; padding: 12px 15px; border-radius: 12px; }
.lookup-msg.error { color: var(--danger); background: #fdeceb; border: 1.5px solid rgba(180,35,24,0.25); }
.lookup-msg.info { color: var(--muted); background: var(--bg-2); border: 1.5px solid var(--border); }
.spinner { display: inline-block; width: 14px; height: 14px; border: 2px solid rgba(23,24,15,0.18); border-top-color: var(--accent-text); border-radius: 50%; animation: spin .7s linear infinite; vertical-align: -2px; }
@keyframes spin { to { transform: rotate(360deg); } }

.basket-panel { border-radius: var(--radius-xl); padding: 28px; background: var(--bg-2); border: 1.5px solid var(--border); }
.basket-panel h3 { font-family: var(--display); font-size: 21px; font-weight: 500; margin-bottom: 4px; }
.basket-panel .bp-sub { font-size: 13px; color: var(--muted-2); margin-bottom: 20px; }
.basket-items { display: flex; flex-direction: column; gap: 10px; min-height: 60px; }
.basket-empty { font-size: 14px; color: var(--muted-2); text-align: center; padding: 26px 0; border: 1.5px dashed var(--border); border-radius: 13px; }
.basket-item { display: flex; align-items: center; gap: 12px; padding: 12px 14px; background: var(--card); border: 1.5px solid var(--border); border-radius: 12px; }
.basket-item .bi-avatar { width: 30px; height: 30px; border-radius: 8px; display: grid; place-items: center; background: var(--accent-soft); border: 1.5px solid var(--border); font-family: var(--display); font-weight: 600; font-size: 12px; color: var(--accent-text); flex-shrink: 0; }
.basket-item .bi-info { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.basket-item .bi-name { font-size: 14px; font-weight: 700; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.basket-item .bi-tick { font-family: var(--mono); font-size: 11px; color: var(--muted-2); }
.basket-item .bi-weight { font-family: var(--display); font-size: 15px; font-weight: 600; color: var(--accent-text); }
.basket-item .bi-remove { background: none; border: 0; color: var(--muted-2); cursor: pointer; font-size: 18px; line-height: 1; padding: 2px 6px; border-radius: 6px; transition: .15s; }
.basket-item .bi-remove:hover { color: var(--danger); background: #fdeceb; }
.basket-foot-row { display: flex; justify-content: space-between; align-items: center; margin-top: 18px; padding-top: 16px; border-top: 1.5px solid var(--hair); font-size: 13px; color: var(--muted); }
.bp-form { display: flex; flex-direction: column; gap: 8px; margin-top: 16px; }
.bp-form .ca-input { font-family: var(--font); font-size: 14px; }
.basket-panel .btn { width: 100%; margin-top: 16px; }
.builder-disclaimer { font-size: 12px; color: var(--muted-2); margin-top: 14px; line-height: 1.5; }

/* ============ HOW IT WORKS ============ */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 52px; }
.step { border-radius: var(--radius-lg); padding: 28px; background: var(--card); border: 1.5px solid var(--border); position: relative; transition: border-color .2s, transform .2s, box-shadow .2s; }
.step:hover { border-color: var(--ink); transform: translateY(-4px); box-shadow: var(--shadow); }
.step-num { font-family: var(--display); font-size: 15px; font-weight: 600; color: var(--accent-ink); background: var(--accent); width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center; margin-bottom: 20px; border: 1.5px solid var(--ink); }
.step h4 { font-family: var(--display); font-size: 20px; font-weight: 500; margin-bottom: 9px; }
.step p { font-size: 14px; color: var(--muted); line-height: 1.55; }

/* ============ EXPLORE BASKETS ============ */
.basket-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 52px; text-align: left; }
.basket { border-radius: var(--radius-lg); padding: 24px; background: var(--card); border: 1.5px solid var(--border); display: flex; flex-direction: column; gap: 10px; transition: border-color .2s, transform .2s, box-shadow .2s; }
.basket:hover { border-color: var(--ink); transform: translateY(-4px); box-shadow: var(--shadow); }
.basket-head { display: flex; justify-content: space-between; align-items: center; }
.basket-net { font-size: 12px; color: var(--muted-2); font-weight: 500; }
.basket h3 { font-family: var(--display); font-size: 22px; font-weight: 500; letter-spacing: -0.01em; }
.basket > p { font-size: 13px; color: var(--muted-2); }
.mini-comp { display: flex; gap: 3px; height: 8px; margin: 8px 0; }
.mini-comp i { display: block; height: 100%; background: var(--accent); border-radius: 3px; }
.mini-comp i:nth-child(even) { opacity: .5; }
.basket-foot { display: flex; justify-content: space-between; font-size: 13px; color: var(--muted); margin-top: auto; padding-top: 8px; }
.basket-foot .up { color: var(--accent-text); font-weight: 700; }
.basket-soon { border-style: dashed; justify-content: center; }
.basket-soon:hover { transform: none; border-color: var(--ink); }
.basket-chips { display: flex; flex-wrap: wrap; gap: 6px; margin: 4px 0; }
.bchip { font-family: var(--mono); font-size: 11px; font-weight: 600; color: var(--muted); padding: 5px 9px; border-radius: 999px; border: 1.5px solid var(--border); background: var(--bg-2); }
.basket-community { background: var(--accent-soft); border-color: var(--accent-text); justify-content: space-between; }
.basket-community:hover { border-color: var(--ink); }

/* ============ COMMUNITY VOTING ============ */
.vote-gate { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-top: 40px; padding: 20px 24px; border-radius: var(--radius-lg); background: var(--card); border: 1.5px solid var(--ink); box-shadow: var(--shadow); text-align: left; }
.vg-left { display: flex; flex-direction: column; gap: 4px; }
.vg-badge { font-family: var(--mono); font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent-text); }
.vg-text { font-size: 14px; color: var(--muted); }
.vg-text.ok { color: var(--ink); }
.vg-text.no { color: var(--danger); }
.vote-meta { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; margin: 22px 0 18px; font-size: 13px; color: var(--muted); }
.vote-meta b { font-family: var(--mono); color: var(--accent-text); }
.vote-legend { display: flex; align-items: center; gap: 4px; color: var(--muted-2); }
.vote-legend i { display: inline-block; width: 9px; height: 9px; border-radius: 50%; margin: 0 3px; border: 1px solid var(--border); }
.vote-legend i.in { background: var(--accent); }
.vote-legend i.out { background: var(--glass-3); }
.vote-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 14px; text-align: left; }
.vote-card { position: relative; border-radius: 15px; padding: 18px; background: var(--card); border: 1.5px solid var(--border); display: flex; flex-direction: column; gap: 14px; transition: border-color .2s, transform .2s, opacity .2s; }
.vote-card.in { border-color: var(--accent-text); background: var(--accent-soft); }
.vote-card.out { opacity: 0.66; }
.vote-card:hover { transform: translateY(-3px); border-color: var(--ink); }
.vc-top { display: flex; align-items: center; justify-content: space-between; }
.vc-tick { font-family: var(--mono); font-size: 12px; font-weight: 600; color: var(--muted); }
.vc-rank { font-family: var(--display); font-size: 13px; font-weight: 600; color: var(--muted-2); }
.vc-name { font-family: var(--display); font-size: 19px; font-weight: 500; letter-spacing: -0.01em; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.vc-like { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-top: auto; }
.vc-btn { display: inline-flex; align-items: center; gap: 7px; font-family: var(--font); font-size: 13px; font-weight: 700; padding: 8px 13px; border-radius: 999px; border: 1.5px solid var(--border); background: var(--bg-2); color: var(--ink); cursor: pointer; transition: .15s; }
.vc-btn:hover:not([disabled]) { border-color: var(--ink); }
.vc-btn.liked { background: var(--accent); color: var(--accent-ink); border-color: var(--ink); }
.vc-btn[disabled] { opacity: 0.5; cursor: not-allowed; }
.vc-votes { font-family: var(--mono); font-size: 13px; font-weight: 600; color: var(--muted); }
.vc-votes b { color: var(--accent-text); }

/* ============ TOKEN ============ */
.token-wrap { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 52px; align-items: center; }
.token-copy { text-align: left; }
.token-copy .kicker { justify-content: flex-start; }
.token-copy .kicker::after { display: none; }
.token-copy .section-title { text-align: left; }
.token-points { list-style: none; margin: 28px 0; display: flex; flex-direction: column; gap: 13px; }
.token-points li { font-size: 15px; color: var(--text); display: flex; gap: 11px; line-height: 1.5; }
.token-points li span { color: var(--accent-text); }
.token-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.token-card { position: relative; border-radius: var(--radius-xl); padding: 30px; background: var(--card); border: 1.5px solid var(--ink); box-shadow: var(--shadow-lg); }
.token-card-top { display: flex; justify-content: space-between; margin-bottom: 24px; }
.token-symbol { margin-bottom: 24px; }
.token-tick { display: block; font-family: var(--display); font-size: 46px; font-weight: 600; letter-spacing: -0.02em; color: var(--ink); }
.token-full { font-family: var(--mono); font-size: 12px; color: var(--muted-2); letter-spacing: 0.04em; }
.token-facts { display: flex; flex-direction: column; }
.token-facts > div { display: flex; justify-content: space-between; align-items: center; padding: 14px 0; border-top: 1.5px solid var(--hair); }
.token-facts dt { font-family: var(--mono); font-size: 12px; color: var(--muted-2); text-transform: uppercase; letter-spacing: 0.05em; }
.token-facts dd { font-size: 14px; font-weight: 600; display: flex; align-items: center; gap: 8px; }
.mono { font-family: var(--mono); }
.copy { font-size: 11px; font-weight: 700; padding: 4px 9px; border-radius: 7px; background: var(--bg-2); border: 1.5px solid var(--border); color: var(--muted); cursor: pointer; transition: .15s; }
.copy:hover { color: var(--ink); border-color: var(--ink); }
.token-explorer { display: inline-block; margin-top: 20px; font-size: 14px; font-weight: 700; color: var(--accent-text); }

/* Notice */
.notice { display: flex; align-items: center; gap: 14px; margin-top: 40px; background: var(--accent-soft); border: 1.5px solid var(--accent-text); border-radius: var(--radius); padding: 18px 22px; }
.notice-ic { width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center; background: var(--accent); color: var(--accent-ink); font-weight: 800; flex-shrink: 0; border: 1.5px solid var(--ink); }
.notice p { font-size: 14px; color: var(--muted); }

/* FAQ */
.faq { margin-top: 44px; display: flex; flex-direction: column; gap: 10px; text-align: left; }
.faq-item { border-radius: var(--radius); padding: 4px 24px; background: var(--card); border: 1.5px solid var(--border); transition: border-color .2s; }
.faq-item[open] { border-color: var(--ink); }
.faq-item summary { list-style: none; cursor: pointer; padding: 20px 0; font-family: var(--display); font-size: 19px; font-weight: 500; display: flex; justify-content: space-between; align-items: center; letter-spacing: -0.01em; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; color: var(--accent-text); font-size: 26px; font-weight: 300; line-height: 1; transition: transform .25s; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { font-size: 15px; color: var(--muted); padding-bottom: 22px; max-width: 92%; line-height: 1.6; }
.faq-foot { margin-top: 28px; font-size: 15px; color: var(--muted); text-align: center; }
.faq-foot a { color: var(--accent-text); font-weight: 700; }

/* Powered */
.powered { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 40px; }
.powered-item { border-radius: var(--radius); padding: 26px; background: var(--card); border: 1.5px solid var(--border); }
.powered-item strong { display: block; font-family: var(--display); font-size: 20px; font-weight: 500; }
.powered-item span { font-size: 13px; color: var(--muted-2); }

/* Stats band */
.stats-band { background: var(--bg-2); border-top: 1.5px solid var(--hair); border-bottom: 1.5px solid var(--hair); }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; text-align: center; }
.stat { padding: 22px; }
.stat-num { font-family: var(--display); font-size: clamp(52px, 7vw, 88px); font-weight: 500; letter-spacing: -0.02em; color: var(--ink); line-height: 1; }
.stat-num .suffix { font-size: .55em; color: var(--accent-text); }
.stat-label { font-family: var(--mono); font-size: 12px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted-2); margin-top: 14px; }

/* CTA */
.cta { text-align: center; }
.cta-inner { text-align: center; display: flex; flex-direction: column; align-items: center; }
.cta .section-lead { margin-left: auto; margin-right: auto; }
.cta .hero-actions { margin-top: 32px; }

/* Footer */
.footer { border-top: 1.5px solid var(--ink); background: var(--bg-2); padding-top: 60px; }
.footer-inner { display: grid; grid-template-columns: 1.4fr 2fr; gap: 44px; padding-bottom: 44px; }
.footer-brand p { color: var(--muted-2); font-size: 14px; margin-top: 16px; max-width: 290px; line-height: 1.55; }
.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.footer-cols h5 { font-family: var(--mono); font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted-2); margin-bottom: 15px; }
.footer-cols a { display: block; font-size: 14px; color: var(--muted); padding: 5px 0; transition: color .2s; font-weight: 500; }
.footer-cols a:hover { color: var(--accent-text); }
.footer-bottom { border-top: 1.5px solid var(--hair); padding: 24px 0; }
.footer-bottom .container { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.footer-bottom span { font-size: 12px; color: var(--muted-2); letter-spacing: 0.02em; }

/* Toast */
.toast { position: fixed; bottom: 28px; left: 50%; transform: translateX(-50%) translateY(20px); background: var(--ink); color: var(--bg); font-weight: 700; font-size: 14px; padding: 13px 22px; border-radius: 999px; opacity: 0; pointer-events: none; transition: opacity .25s ease, transform .25s ease; z-index: 200; box-shadow: var(--shadow-lg); }
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ============ INVEST MODAL ============ */
.modal-overlay { position: fixed; inset: 0; z-index: 300; display: grid; place-items: center; padding: 20px; background: rgba(23,24,15,0.35); backdrop-filter: blur(5px); }
.modal-overlay[hidden] { display: none; }
.modal { position: relative; width: 100%; max-width: 460px; border-radius: var(--radius-xl); padding: 32px; background: var(--card); border: 1.5px solid var(--ink); box-shadow: var(--shadow-lg); max-height: 90vh; overflow-y: auto; }
.modal-close { position: absolute; top: 18px; right: 18px; background: var(--bg-2); border: 1.5px solid var(--border); color: var(--muted); width: 32px; height: 32px; border-radius: 9px; font-size: 20px; line-height: 1; cursor: pointer; transition: .15s; }
.modal-close:hover { color: var(--ink); border-color: var(--ink); }
.modal-title { font-family: var(--display); font-size: 28px; font-weight: 500; letter-spacing: -0.02em; margin: 6px 0 4px; }
.modal-sub { font-family: var(--mono); font-size: 12px; color: var(--muted-2); margin-bottom: 18px; }
.modal-tabs { display: flex; gap: 6px; background: var(--glass-2); border: 1.5px solid var(--border); border-radius: 12px; padding: 4px; margin-bottom: 20px; }
.modal-tab { flex: 1; font-family: var(--font); font-size: 14px; font-weight: 700; padding: 9px; border-radius: 9px; border: 0; background: transparent; color: var(--muted); cursor: pointer; transition: .15s; }
.modal-tab.active { background: var(--accent); color: var(--accent-ink); }
.im-balance { font-size: 13px; color: var(--muted); margin-bottom: 16px; }
.im-balance b { font-family: var(--display); color: var(--ink); font-size: 16px; }
.im-label { display: block; font-size: 12px; color: var(--muted-2); text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 8px; font-weight: 600; }
.im-amount-row { display: flex; gap: 10px; margin-bottom: 18px; }
.im-amount-row .ca-input { flex: 1; }
.im-preview { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; min-height: 4px; }
.im-preview .im-row { display: flex; justify-content: space-between; align-items: center; font-size: 13px; padding: 11px 13px; background: var(--bg-2); border: 1.5px solid var(--border); border-radius: 10px; }
.im-preview .im-row .sym { font-weight: 700; }
.im-preview .im-row .amt { font-family: var(--mono); color: var(--muted); }
.im-preview .im-row .amt b { color: var(--accent-text); }
.im-preview .im-msg { font-size: 13px; color: var(--muted); padding: 10px 0; }
.im-preview .im-msg.pending { color: #9a6b00; }
.modal .btn { width: 100%; }
.im-note { font-size: 12px; color: var(--muted-2); margin-top: 14px; line-height: 1.5; text-align: center; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .ticker-track, .marquee-track { animation: none; }
  * { scroll-behavior: auto; }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 960px) {
  .token-wrap { grid-template-columns: 1fr; gap: 40px; }
  .token-copy .kicker { justify-content: center; }
  .token-copy .section-title, .token-copy { text-align: center; }
  .feature-grid { grid-template-columns: 1fr; }
  .basket-grid { grid-template-columns: repeat(2, 1fr); }
  .powered { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .coin-grid { grid-template-columns: repeat(3, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .marquee-track span { font-size: 18px; }
  .section { padding: 72px 0; }
  .builder-wrap { grid-template-columns: 1fr; }
  .vote-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--bg); backdrop-filter: none; border-bottom: 1.5px solid var(--hair); padding: 18px 26px; gap: 16px; }
  .nav-toggle { display: flex; }
}
@media (max-width: 620px) {
  .hero-meta { gap: 30px; }
  .basket-grid { grid-template-columns: 1fr; }
  .powered { grid-template-columns: 1fr; }
  .section { padding: 58px 0; }
  .coin-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; gap: 8px; }
  .marquee-track span { font-size: 15px; }
  .split-card, .feature, .step { padding: 26px; }
  .container { padding: 0 20px; }
  .vote-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
