/* ==========================================================================
   PLOPS — token fair launch launchpad on Robinhood Chain
   Deep Forest theme — pine #123328 · cream #F6F2E7 · gold #E3A93C · sage #B9D98A
   ========================================================================== */

:root {
  --bg: #123328;
  --bg-2: #0c261d;
  --surface: #0f2c22;
  --surface-2: #0c261d;
  --surface-3: #0a2019;
  --border: rgba(246, 242, 231, 0.11);
  --border-2: rgba(246, 242, 231, 0.20);
  --text: #f6f2e7;
  --text-muted: rgba(246, 242, 231, 0.60);
  --text-dim: rgba(246, 242, 231, 0.36);
  --accent: #e3a93c;
  --accent-2: #b9d98a;
  --accent-dim: rgba(227, 169, 60, 0.12);
  --accent-glow: rgba(227, 169, 60, 0.30);
  --up: #4ade80;
  --down: #f87171;
  --gold: #e3a93c;
  --on-accent: #0a1f17;
  --radius: 16px;
  --radius-sm: 12px;
  --radius-xs: 8px;
  --font-head: "Fredoka", system-ui, sans-serif;
  --font-body: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, monospace;
  --font-script: "La Belle Aurore", cursive;
  --max-width: 1200px;
}

h1, h2, h3 { font-family: var(--font-head); letter-spacing: -0.02em; }

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  background:
    radial-gradient(1000px 600px at 80% -10%, rgba(227, 169, 60, 0.08), transparent 60%),
    radial-gradient(800px 500px at 0% 0%, rgba(185, 217, 138, 0.05), transparent 55%),
    var(--bg);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--accent); color: var(--on-accent); }

a { color: inherit; text-decoration: none; }

::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--bg-2); }
::-webkit-scrollbar-thumb { background: var(--border-2); border-radius: 6px; }
::-webkit-scrollbar-thumb:hover { background: var(--text-dim); }

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 22px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }

.btn-primary {
  background: var(--accent);
  color: var(--on-accent);
  box-shadow: 0 6px 24px -8px var(--accent-glow);
}
.btn-primary:hover { background: var(--accent-2); box-shadow: 0 8px 30px -6px var(--accent-glow); }

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border-2);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

.btn-block { width: 100%; }
.btn-lg { padding: 15px 28px; font-size: 1.05rem; }
.btn-sm { padding: 8px 14px; font-size: 0.85rem; }
.btn[disabled] { opacity: .5; cursor: not-allowed; }

/* --------------------------------------------------------------------------
   Layout / navbar
   -------------------------------------------------------------------------- */
.wrap { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(18, 51, 40, 0.86);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 1.25rem; letter-spacing: -0.02em; font-family: var(--font-head); }
.plop-mark { flex-shrink: 0; filter: drop-shadow(0 4px 8px rgba(0,0,0,.35)); }
.brand small { color: var(--accent); font-family: var(--font-mono); font-size: .6rem; letter-spacing: .06em; }

/* plops mascot: blink + 3D flight (from v3 design) */
.plop-eye { transform-box: fill-box; transform-origin: 50% 50%; animation: plopBlink 3.8s ease-in-out infinite; }
@keyframes plopBlink { 0%,90%,100% { transform: scaleY(1); } 93% { transform: scaleY(.08); } 96% { transform: scaleY(1); } }
.plop-fly { animation: plopFly 5.6s ease-in-out infinite; transform-style: preserve-3d; will-change: transform; filter: drop-shadow(0 24px 28px rgba(0,0,0,.45)); }
@keyframes plopFly {
  0%,100% { transform: perspective(700px) translateY(0) rotateY(0) rotateZ(0); }
  25% { transform: perspective(700px) translateY(-16px) rotateY(16deg) rotateZ(-3deg); }
  50% { transform: perspective(700px) translateY(-5px) rotateY(0) rotateZ(2.5deg); }
  75% { transform: perspective(700px) translateY(-18px) rotateY(-16deg) rotateZ(-2deg); }
}
.plop-shadow { animation: plopShadow 5.6s ease-in-out infinite; transform-origin: center; }
@keyframes plopShadow { 0%,100% { transform: scaleX(1); opacity:.38; } 25% { transform: scaleX(.72); opacity:.22; } 50% { transform: scaleX(.9); opacity:.32; } 75% { transform: scaleX(.68); opacity:.2; } }
@media (prefers-reduced-motion: reduce) { .plop-eye,.plop-fly,.plop-shadow { animation: none !important; } }
.nav-links { display: flex; gap: 6px; margin-left: 10px; }
.nav-link {
  padding: 8px 14px; border-radius: var(--radius-xs);
  color: var(--text-muted); font-weight: 500; font-size: .95rem;
  transition: color .2s ease, background .2s ease;
}
.nav-link:hover { color: var(--text); background: var(--surface-2); }
.nav-link.active { color: var(--accent); background: var(--accent-dim); }
.nav-spacer { flex: 1; }
.chain-pill {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-mono); font-size: .72rem; font-weight: 600;
  color: var(--accent); background: var(--accent-dim);
  border: 1px solid rgba(227,169,60,.28);
  padding: 6px 12px; border-radius: 999px;
}
.chain-pill .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 8px var(--accent); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .35; } }

.nav-toggle { display: none; background: none; border: 0; color: var(--text); font-size: 1.5rem; cursor: pointer; }

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.hero { padding: 64px 0 40px; }
.hero-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 40px; align-items: center; }
.hero-script { font-family: var(--font-script); color: var(--accent); font-size: 1.7rem; line-height: 1; margin-bottom: 6px; }
.hero-visual { position: relative; height: 340px; display: flex; align-items: center; justify-content: center; }
.hero-glow { position: absolute; width: 320px; height: 320px; border-radius: 50%; background: radial-gradient(circle, rgba(227,169,60,.12) 0%, transparent 65%); pointer-events: none; }
.hero-ring { position: absolute; width: 210px; height: 210px; border-radius: 50%; border: 1px solid rgba(227,169,60,.20); pointer-events: none; }
.hero-visual .plop-fly { position: relative; z-index: 1; }
.hero-visual .plop-shadow { position: absolute; bottom: 30px; width: 130px; height: 20px; border-radius: 50%; background: rgba(0,0,0,.4); filter: blur(9px); }
@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { height: 240px; order: -1; }
  .hero-visual .plop-fly svg { width: 110px; height: 154px; }
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: .78rem; font-weight: 600;
  color: var(--accent); background: var(--accent-dim);
  border: 1px solid rgba(227,169,60,.25); padding: 7px 14px; border-radius: 999px;
  margin-bottom: 22px;
}
.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  line-height: 1.02; letter-spacing: -0.035em; margin: 0 0 18px; font-weight: 700;
}
.hero h1 .grad {
  background: linear-gradient(120deg, var(--accent), var(--accent-2) 70%, #e9f3d3);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.hero p.lead { font-size: 1.2rem; color: var(--text-muted); max-width: 620px; margin: 0 0 30px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-stats { display: flex; gap: 34px; margin-top: 46px; flex-wrap: wrap; }
.hero-stat .num { font-size: 1.9rem; font-weight: 700; letter-spacing: -0.02em; }
.hero-stat .lbl { color: var(--text-dim); font-size: .85rem; font-family: var(--font-mono); text-transform: uppercase; letter-spacing: .08em; }

/* --------------------------------------------------------------------------
   Sections
   -------------------------------------------------------------------------- */
.section { padding: 40px 0; }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 26px; flex-wrap: wrap; }
.section-head h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); margin: 0; letter-spacing: -0.02em; }
.section-head p { color: var(--text-muted); margin: 6px 0 0; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: .74rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; color: var(--accent); margin-bottom: 12px;
}
.eyebrow::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 8px var(--accent); }

/* --------------------------------------------------------------------------
   Filter tabs / search
   -------------------------------------------------------------------------- */
.toolbar { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; margin-bottom: 24px; }
.tabs { display: flex; gap: 6px; background: var(--surface); border: 1px solid var(--border); padding: 5px; border-radius: var(--radius-sm); }
.tab { padding: 8px 16px; border-radius: var(--radius-xs); font-size: .9rem; font-weight: 500; color: var(--text-muted); cursor: pointer; border: 0; background: transparent; transition: all .2s ease; }
.tab.active { background: var(--accent-dim); color: var(--accent); }
.tab:hover:not(.active) { color: var(--text); }
.search {
  flex: 1; min-width: 200px; display: flex; align-items: center; gap: 10px;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 0 14px;
}
.search input { flex: 1; background: none; border: 0; color: var(--text); font-family: var(--font-body); font-size: .95rem; padding: 11px 0; outline: none; }
.search svg { color: var(--text-dim); flex-shrink: 0; }

/* --------------------------------------------------------------------------
   Token grid + card
   -------------------------------------------------------------------------- */
.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 18px; }

.card {
  background: linear-gradient(180deg, var(--surface), var(--bg-2));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  cursor: pointer;
  transition: transform .18s ease, border-color .2s ease, box-shadow .2s ease;
  display: flex; flex-direction: column; gap: 14px;
}
.card:hover { transform: translateY(-4px); border-color: var(--border-2); box-shadow: 0 16px 40px -20px rgba(0,0,0,.8); }

.card-top { display: flex; align-items: center; gap: 12px; }
.token-logo {
  width: 48px; height: 48px; border-radius: 12px; flex-shrink: 0;
  display: grid; place-items: center; font-size: 1.5rem; font-weight: 700;
  color: var(--on-accent);
}
.token-meta { min-width: 0; flex: 1; }
.token-name { font-weight: 700; font-size: 1.05rem; display: flex; align-items: center; gap: 7px; }
.token-ticker { color: var(--text-dim); font-family: var(--font-mono); font-size: .82rem; }
.card-desc { color: var(--text-muted); font-size: .9rem; margin: 0; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

.badge {
  font-family: var(--font-mono); font-size: .66rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em;
  padding: 3px 8px; border-radius: 999px;
}
.badge-live { color: var(--accent); background: var(--accent-dim); border: 1px solid rgba(227,169,60,.32); }
.badge-upcoming { color: var(--accent-2); background: rgba(185,217,138,.1); border: 1px solid rgba(185,217,138,.30); }
.badge-graduated { color: #86d0e8; background: rgba(134,208,232,.1); border: 1px solid rgba(134,208,232,.28); }

.progress { }
.progress-head { display: flex; justify-content: space-between; font-size: .82rem; margin-bottom: 6px; }
.progress-head .pct { color: var(--accent); font-weight: 700; font-family: var(--font-mono); }
.progress-head .lbl { color: var(--text-dim); }
.bar { height: 8px; border-radius: 999px; background: var(--surface-3); overflow: hidden; }
.bar > span { display: block; height: 100%; border-radius: 999px; background: linear-gradient(90deg, var(--accent), var(--accent-2)); }

.card-stats { display: flex; justify-content: space-between; border-top: 1px solid var(--border); padding-top: 12px; }
.card-stat .v { font-weight: 700; font-size: .95rem; }
.card-stat .k { color: var(--text-dim); font-size: .72rem; font-family: var(--font-mono); text-transform: uppercase; letter-spacing: .05em; }
.card-stat.right { text-align: right; }
.chg-up { color: var(--up); }
.chg-down { color: var(--down); }

/* --------------------------------------------------------------------------
   Features strip
   -------------------------------------------------------------------------- */
.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
.feature {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px;
}
.feature .ico { width: 44px; height: 44px; border-radius: 11px; display: grid; place-items: center; font-size: 1.35rem; background: var(--accent-dim); margin-bottom: 14px; }
.feature h3 { margin: 0 0 8px; font-size: 1.1rem; }
.feature p { margin: 0; color: var(--text-muted); font-size: .92rem; }

/* --------------------------------------------------------------------------
   Create form
   -------------------------------------------------------------------------- */
.form-layout { display: grid; grid-template-columns: 1fr 340px; gap: 28px; align-items: start; }
.panel { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; }
.field { margin-bottom: 20px; }
.field label { display: block; font-weight: 600; font-size: .92rem; margin-bottom: 8px; }
.field .hint { color: var(--text-dim); font-size: .8rem; font-weight: 400; margin-left: 6px; }
.field input, .field textarea, .field select {
  width: 100%; background: var(--bg-2); border: 1px solid var(--border-2); border-radius: var(--radius-sm);
  padding: 12px 14px; color: var(--text); font-family: var(--font-body); font-size: .95rem; outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(227,169,60,.14); }
.field textarea { resize: vertical; min-height: 92px; }
.field .err { color: var(--down); font-size: .82rem; margin-top: 6px; display: none; }
.field.invalid input, .field.invalid textarea { border-color: var(--down); }
.field.invalid .err { display: block; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.input-prefix { display: flex; align-items: center; background: var(--bg-2); border: 1px solid var(--border-2); border-radius: var(--radius-sm); }
.input-prefix span { padding: 0 12px; color: var(--text-dim); font-family: var(--font-mono); border-right: 1px solid var(--border-2); }
.input-prefix input { border: 0; box-shadow: none !important; }

.logo-picker { display: flex; align-items: center; gap: 16px; }
.logo-preview { width: 68px; height: 68px; border-radius: 16px; display: grid; place-items: center; font-size: 2rem; font-weight: 800; color: var(--on-accent); flex-shrink: 0; }
.color-swatches { display: flex; gap: 8px; flex-wrap: wrap; }
.swatch { width: 26px; height: 26px; border-radius: 8px; cursor: pointer; border: 2px solid transparent; transition: transform .15s ease; }
.swatch:hover { transform: scale(1.12); }
.swatch.sel { border-color: var(--text); }

/* Preview sidebar (sticky) */
.preview-card { position: sticky; top: 90px; }
.side-note { color: var(--text-dim); font-size: .82rem; margin-top: 14px; line-height: 1.5; }

/* --------------------------------------------------------------------------
   Token detail
   -------------------------------------------------------------------------- */
.detail-layout { display: grid; grid-template-columns: 1fr 360px; gap: 26px; align-items: start; }
.detail-head { display: flex; align-items: center; gap: 18px; margin-bottom: 8px; }
.detail-head .token-logo { width: 64px; height: 64px; border-radius: 16px; font-size: 2rem; }
.detail-head h1 { margin: 0; font-size: 2rem; letter-spacing: -0.02em; }
.detail-sub { display: flex; align-items: center; gap: 12px; color: var(--text-muted); font-family: var(--font-mono); font-size: .88rem; flex-wrap: wrap; }
.copy-addr { cursor: pointer; display: inline-flex; gap: 6px; align-items: center; color: var(--text-dim); }
.copy-addr:hover { color: var(--accent); }

.chart-box { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 18px; margin: 20px 0; }
.chart-box canvas { width: 100%; height: 240px; display: block; }
.chart-price { display: flex; align-items: baseline; gap: 12px; margin-bottom: 6px; }
.chart-price .p { font-size: 1.8rem; font-weight: 700; }

.stat-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin: 18px 0; }
.stat-box { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 14px 16px; }
.stat-box .k { color: var(--text-dim); font-size: .72rem; font-family: var(--font-mono); text-transform: uppercase; letter-spacing: .05em; }
.stat-box .v { font-weight: 700; font-size: 1.15rem; margin-top: 3px; }

.about h3, .trades h3, .holders h3 { font-size: 1.15rem; margin: 0 0 12px; }
.about p { color: var(--text-muted); }
.social-links { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 14px; }
.social-links a { display: inline-flex; align-items: center; gap: 7px; padding: 8px 14px; border: 1px solid var(--border-2); border-radius: var(--radius-sm); font-size: .88rem; color: var(--text-muted); }
.social-links a:hover { border-color: var(--accent); color: var(--accent); }

.trade-list { display: flex; flex-direction: column; }
.trade-row { display: grid; grid-template-columns: 60px 1fr auto auto; gap: 12px; align-items: center; padding: 10px 0; border-bottom: 1px solid var(--border); font-size: .88rem; }
.trade-row:last-child { border-bottom: 0; }
.tag-buy { color: var(--up); font-weight: 700; font-family: var(--font-mono); font-size: .8rem; }
.tag-sell { color: var(--down); font-weight: 700; font-family: var(--font-mono); font-size: .8rem; }
.trade-addr { font-family: var(--font-mono); color: var(--text-muted); }
.trade-time { color: var(--text-dim); font-size: .8rem; }

.holder-row { display: flex; align-items: center; gap: 12px; padding: 9px 0; }
.holder-row .rank { color: var(--text-dim); font-family: var(--font-mono); width: 24px; }
.holder-row .addr { font-family: var(--font-mono); flex: 1; color: var(--text-muted); }
.holder-row .pct { font-weight: 700; }
.holder-bar { height: 5px; background: var(--surface-3); border-radius: 999px; overflow: hidden; margin-top: 4px; }
.holder-bar > span { display: block; height: 100%; background: var(--accent); border-radius: 999px; }

/* Trade widget */
.trade-widget { position: sticky; top: 90px; }
.buysell { display: flex; gap: 6px; background: var(--bg-2); padding: 5px; border-radius: var(--radius-sm); margin-bottom: 18px; }
.buysell button { flex: 1; padding: 11px; border: 0; border-radius: var(--radius-xs); background: transparent; color: var(--text-muted); font-weight: 700; cursor: pointer; font-family: var(--font-body); transition: all .2s ease; }
.buysell button.active.buy { background: var(--accent); color: var(--on-accent); }
.buysell button.active.sell { background: var(--down); color: #fff; }
.amount-input { display: flex; align-items: center; background: var(--bg-2); border: 1px solid var(--border-2); border-radius: var(--radius-sm); padding: 4px 14px; margin-bottom: 12px; }
.amount-input input { flex: 1; background: none; border: 0; color: var(--text); font-size: 1.4rem; font-weight: 700; padding: 12px 0; outline: none; font-family: var(--font-body); }
.amount-input .unit { color: var(--text-dim); font-weight: 700; }
.quick-amts { display: flex; gap: 8px; margin-bottom: 16px; }
.quick-amts button { flex: 1; padding: 8px; background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--radius-xs); color: var(--text-muted); font-size: .82rem; cursor: pointer; font-family: var(--font-mono); }
.quick-amts button:hover { border-color: var(--accent); color: var(--accent); }
.receive-row { display: flex; justify-content: space-between; color: var(--text-muted); font-size: .9rem; margin-bottom: 16px; padding: 12px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.receive-row b { color: var(--text); }

.bonding { margin-top: 18px; }
.bonding .progress-head { font-size: .85rem; }
.bonding-note { color: var(--text-dim); font-size: .8rem; margin-top: 10px; line-height: 1.5; }

/* --------------------------------------------------------------------------
   Toast / modal
   -------------------------------------------------------------------------- */
.toast-wrap { position: fixed; bottom: 24px; right: 24px; z-index: 200; display: flex; flex-direction: column; gap: 10px; }
.toast {
  background: var(--surface-2); border: 1px solid var(--border-2); border-left: 3px solid var(--accent);
  border-radius: var(--radius-sm); padding: 14px 18px; min-width: 240px; max-width: 340px;
  box-shadow: 0 12px 40px -12px rgba(0,0,0,.7);
  animation: toastIn .3s ease;
}
.toast.err { border-left-color: var(--down); }
.toast .t-title { font-weight: 700; font-size: .95rem; }
.toast .t-body { color: var(--text-muted); font-size: .86rem; margin-top: 2px; }
@keyframes toastIn { from { transform: translateX(30px); opacity: 0; } to { transform: translateX(0); opacity: 1; } }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.footer { border-top: 1px solid var(--border); margin-top: 60px; padding: 40px 0 34px; }
.footer-inner { display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; align-items: center; }
.footer .brand { font-size: 1.1rem; }
.footer p { color: var(--text-dim); font-size: .86rem; margin: 8px 0 0; max-width: 420px; }
.footer-links { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-links a { color: var(--text-muted); font-size: .9rem; }
.footer-links a:hover { color: var(--accent); }
.disclaimer { margin-top: 26px; padding-top: 20px; border-top: 1px solid var(--border); color: var(--text-dim); font-size: .78rem; }

/* --------------------------------------------------------------------------
   Empty / misc
   -------------------------------------------------------------------------- */
.empty { text-align: center; padding: 60px 20px; color: var(--text-dim); }
.empty .big { font-size: 2.4rem; margin-bottom: 10px; }
.cta-band {
  background: linear-gradient(120deg, var(--accent-dim), var(--surface));
  border: 1px solid rgba(227,169,60,.24); border-radius: var(--radius);
  padding: 40px; text-align: center; margin-top: 20px;
}
.cta-band h2 { margin: 0 0 10px; font-size: clamp(1.6rem, 3vw, 2.4rem); }
.cta-band p { color: var(--text-muted); margin: 0 0 22px; }

.fade-in { animation: fadeIn .35s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 900px) {
  .form-layout, .detail-layout { grid-template-columns: 1fr; }
  .preview-card, .trade-widget { position: static; }
  .stat-row { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; background: var(--bg-2); border-bottom: 1px solid var(--border); padding: 10px 24px; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .field-row { grid-template-columns: 1fr; }
  .hero-stats { gap: 22px; }
}
