/* =========================================================
   pumplings — tokens
========================================================= */
:root{
  --mint:#C8F5D4;
  --cream:#FFF6E8;
  --shell-green:#3DBA6A;
  --shell-green-dark:#2E8B57;
  --yolk:#FFD56A;
  --ink:#1A1A1A;
  --pink:#FFB6D9;
  --blue:#7EC8FF;
  --purple:#C9A6FF;
  --red:#FF6B6B;
  --white:#FFFFFF;

  --font-ui:'Fredoka', system-ui, sans-serif;
  --font-mono:'JetBrains Mono', ui-monospace, monospace;

  --line:3px;
  --line-thin:2px;
  --radius-lg:28px;
  --radius-md:18px;
  --radius-sm:10px;

  --shadow-hard:4px 4px 0 var(--ink);
  --shadow-hard-sm:2px 2px 0 var(--ink);

  color-scheme: light;
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  background:var(--cream);
  color:var(--ink);
  font-family:var(--font-ui);
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
h1,h2,h3,h4{ margin:0; font-weight:600; }
p{ margin:0; }
a{ color:inherit; text-decoration:none; }
button{ font-family:inherit; cursor:pointer; }
.mono{ font-family:var(--font-mono); }
img,svg{ display:block; }
section{ position:relative; padding:64px 20px; max-width:1180px; margin:0 auto; }

.section-head{ text-align:center; margin-bottom:36px; }
.section-head h2{ font-size:clamp(26px,4vw,40px); }
.section-head p{ margin-top:8px; color:#5a5a5a; font-size:15px; }

/* =========================================================
   Buttons / chips
========================================================= */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:14px 26px; border-radius:999px; border:var(--line) solid var(--ink);
  font-family:var(--font-ui); font-weight:600; font-size:15px;
  box-shadow:var(--shadow-hard); background:var(--white);
  transition:transform .12s ease, box-shadow .12s ease;
  white-space:nowrap;
}
.btn:hover{ transform:translate(-2px,-2px); box-shadow:6px 6px 0 var(--ink); }
.btn:active{ transform:translate(0,0); box-shadow:1px 1px 0 var(--ink); }
.btn-primary{ background:var(--shell-green); }
.btn-ghost{ background:var(--cream); }
.btn-sm{ padding:10px 18px; font-size:13px; }

.chip{
  border:var(--line-thin) solid var(--ink); background:var(--white);
  border-radius:999px; padding:8px 16px; font-size:13px; font-weight:600;
  box-shadow:var(--shadow-hard-sm);
}
.chip.active{ background:var(--yolk); }

/* =========================================================
   Top bar
========================================================= */
.topbar{
  position:sticky; top:0; z-index:60;
  background:rgba(255,246,232,.88); backdrop-filter:blur(6px);
  border-bottom:var(--line) solid var(--ink);
}
.topbar-inner{
  max-width:1180px; margin:0 auto; padding:12px 20px;
  display:flex; align-items:center; gap:18px;
}
.brand{ display:flex; align-items:center; gap:8px; font-weight:700; font-size:18px; }
.brand-logo{
  width:32px; height:32px; border-radius:50%; object-fit:cover;
  border:var(--line-thin) solid var(--ink); flex:none; background:var(--mint);
}
.topnav{ display:none; gap:18px; font-size:14px; font-weight:600; }
.topbar-ticker{ display:none; margin-left:auto; font-size:12px; color:#4a4a4a; gap:6px; }
.topbar-ticker span{ white-space:nowrap; }
.topbar-ticker .dot{ opacity:.4; margin:0 2px; }
.topbar-ticker b{ color:var(--ink); }
.sound-toggle{
  margin-left:auto; width:34px; height:34px; border-radius:50%;
  border:var(--line-thin) solid var(--ink); background:var(--white);
  display:flex; align-items:center; justify-content:center; flex:none;
}
.sound-toggle[aria-pressed="true"] .icon-mute{ display:none; }
.sound-toggle[aria-pressed="true"] .icon-sound{ display:block !important; }

@media(min-width:760px){
  .topnav{ display:flex; }
  .topbar-ticker{ display:flex; }
  .sound-toggle{ margin-left:0; }
}

/* =========================================================
   Hero
========================================================= */
.hero{
  max-width:none; padding:0; min-height:88vh;
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,.5), transparent 40%),
    var(--mint);
  border-bottom:var(--line) solid var(--ink);
  overflow:hidden;
  text-align:center;
}
.hero-field{
  position:absolute; inset:0; pointer-events:none;
}
.hero-field .pml-wrap{ position:absolute; pointer-events:none; }
.hero-content{ position:relative; z-index:2; padding:0 20px; max-width:640px; }
.hero-title{
  font-size:clamp(52px,12vw,110px); letter-spacing:-2px; line-height:.95;
  text-shadow:5px 5px 0 rgba(255,255,255,.6);
}
.hero-sub{ font-size:clamp(18px,3vw,24px); margin-top:14px; font-weight:600; }
.hero-sub2{ font-size:14px; margin-top:6px; color:#3d3d3d; }
.hero-ctas{ display:flex; gap:14px; justify-content:center; margin-top:28px; flex-wrap:wrap; }
.hero-ticker{
  margin-top:30px; display:inline-block; padding:8px 18px;
  background:var(--white); border:var(--line-thin) solid var(--ink);
  border-radius:999px; font-size:12px; box-shadow:var(--shadow-hard-sm);
}
.hero-scroll-hint{
  position:absolute; bottom:16px; left:50%; transform:translateX(-50%);
  font-size:11px; letter-spacing:2px; text-transform:uppercase; opacity:.5;
  animation:bounce-hint 2s ease-in-out infinite;
}
@keyframes bounce-hint{ 0%,100%{transform:translate(-50%,0);} 50%{transform:translate(-50%,6px);} }

/* =========================================================
   Pumpling character (SVG wrapper)
========================================================= */
.pml{ display:block; overflow:visible; }
.pml-wrap{ display:inline-block; position:relative; }
.pml-wrap.idle .pml{ animation:pml-bob 2.6s ease-in-out infinite; }
.pml-wrap.idle:nth-child(2n) .pml{ animation-duration:3.1s; animation-delay:.3s; }
.pml-wrap.idle:nth-child(3n) .pml{ animation-duration:2.3s; animation-delay:.6s; }
.pml-wrap.idle:nth-child(5n) .pml{ animation-duration:2.9s; animation-delay:.15s; }
@keyframes pml-bob{
  0%,100%{ transform:translateY(0) rotate(0deg); }
  50%{ transform:translateY(-7%) rotate(-2deg); }
}
.pml-eye{ animation:pml-blink 5.5s ease-in-out infinite; transform-origin:center; transform-box:fill-box; }
.pml-wrap:nth-child(3n) .pml-eye{ animation-delay:1.2s; }
.pml-wrap:nth-child(4n) .pml-eye{ animation-delay:2.4s; }
@keyframes pml-blink{ 0%,92%,100%{ transform:scaleY(1);} 95%{ transform:scaleY(.1);} }
.pml-clickable{ cursor:pointer; }
.pml-clickable:hover .pml{ transform:translateY(-6%) scale(1.04); }

.pml-badge{
  position:absolute; top:-6px; right:-6px; width:14px; height:14px; border-radius:50%;
  border:var(--line-thin) solid var(--ink); background:var(--yolk);
}
.pml-badge.state-selling{ background:var(--red); }
.pml-badge.state-compounding{ background:var(--purple); }
.pml-badge.state-funding{ background:var(--blue); }
.pml-badge.state-buying{ background:var(--shell-green); }

/* =========================================================
   Hatch stage
========================================================= */
.hatch-stage{ background:var(--cream); }
.stage-grid{
  display:grid; grid-template-columns:1fr; gap:18px;
}
@media(min-width:940px){
  .stage-grid{ grid-template-columns:1.15fr .85fr 1fr; align-items:stretch; }
}
.stage-panel{
  background:var(--white); border:var(--line) solid var(--ink); border-radius:var(--radius-lg);
  box-shadow:var(--shadow-hard); padding:20px; display:flex; flex-direction:column;
}
.panel-title{ font-size:18px; }
.panel-copy{ font-size:13px; color:#666; margin-top:4px; margin-bottom:14px; }

/* outbox */
.callout-form textarea{
  width:100%; resize:none; border:var(--line-thin) solid var(--ink); border-radius:var(--radius-sm);
  padding:10px 12px; font-family:var(--font-ui); font-size:14px; background:var(--cream);
}
.callout-form textarea:focus{ outline:2px solid var(--shell-green); }
.callout-row{ display:flex; align-items:center; justify-content:space-between; margin-top:8px; }
.callout-count{ font-size:11px; color:#888; }

.queue-lane{
  margin-top:16px; display:flex; flex-direction:column; gap:8px;
  min-height:120px; max-height:260px; overflow-y:auto; padding-right:2px;
}
.queue-egg-row{
  display:flex; align-items:center; gap:10px; background:var(--cream);
  border:var(--line-thin) solid var(--ink); border-radius:999px; padding:6px 12px 6px 6px;
  transition:transform .4s ease, opacity .4s ease;
}
.queue-egg-row .egg-pos{ font-size:11px; font-weight:700; width:16px; text-align:center; }
.queue-egg-row .egg-icon{ flex:none; }
.queue-egg-row .egg-text{ font-size:12px; flex:1; overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }
.queue-egg-row.next{ background:var(--yolk); }
.queue-egg-row.leaving{ opacity:0; transform:translateX(40px) scale(.7); }
.queue-egg-row.entering{ animation:egg-enter .4s ease; }
@keyframes egg-enter{ from{ opacity:0; transform:translateY(-10px);} to{ opacity:1; transform:none; } }
.queue-empty{ font-size:12px; color:#999; text-align:center; padding:20px 0; }

/* vault */
.jar-wrap{ display:flex; justify-content:center; position:relative; }
.jar-svg{ width:120px; height:150px; }
.jar-svg-lg{ width:160px; height:200px; }
.jar-outline, .jar-outline-top{ stroke:var(--ink); stroke-width:3; }
.jar-lid{ stroke:var(--ink); stroke-width:4; stroke-linecap:round; }
#jar-fill, #jar-fill-2{ transition:y .5s ease, height .5s ease; }
#jar-fill-shine{ transition:y .5s ease, height .5s ease; }
.jar-droplets{ position:absolute; inset:0; pointer-events:none; }
.droplet{
  position:absolute; width:6px; height:8px; border-radius:50% 50% 50% 0; background:var(--shell-green-dark);
  transform:rotate(45deg); animation:drop-fall 1s ease-in forwards;
}
@keyframes drop-fall{ from{ transform:translateY(0) rotate(45deg); opacity:1;} to{ transform:translateY(60px) rotate(45deg); opacity:0;} }
.vault-stats{ text-align:center; margin-top:12px; font-size:13px; }
.vault-status{ margin-top:4px; font-size:11px; color:#888; text-transform:lowercase; }
.vault-status.ready{ color:var(--shell-green-dark); font-weight:700; }

/* market */
.price-wrap{ position:relative; background:var(--ink); border-radius:var(--radius-sm); overflow:hidden; }
.price-svg{ width:100%; height:110px; display:block; }
#price-line{ stroke:var(--shell-green); stroke-width:2; }
#price-dot{ fill:var(--yolk); stroke:var(--ink); stroke-width:1; }
.birth-stamp{
  position:absolute; top:10px; right:10px; background:var(--yolk); border:var(--line-thin) solid var(--ink);
  border-radius:8px; padding:4px 8px; text-align:center; box-shadow:var(--shadow-hard-sm);
  animation:stamp-pop .4s ease;
}
@keyframes stamp-pop{ from{ transform:scale(0) rotate(-8deg); opacity:0;} to{ transform:scale(1) rotate(-4deg); opacity:1;} }
.birth-label{ display:block; font-size:9px; font-weight:700; letter-spacing:1px; }
.birth-value{ display:block; font-size:12px; font-weight:700; }
.price-now{ display:flex; justify-content:space-between; margin-top:10px; font-size:16px; font-weight:700; }
.price-delta{ font-size:12px; }
.price-delta.up{ color:var(--shell-green-dark); }
.price-delta.down{ color:#c94848; }

/* hatch overlay */
.hatch-overlay{
  position:fixed; inset:0; z-index:80; pointer-events:none;
  display:flex; align-items:center; justify-content:center; opacity:0;
}
.hatch-overlay.active{ opacity:1; }
.hatch-character{ position:relative; }
.hatch-character.shaking .pml{ animation:hatch-shake .12s linear infinite; }
@keyframes hatch-shake{ 0%{transform:rotate(-4deg);} 50%{transform:rotate(4deg);} 100%{transform:rotate(-4deg);} }
.hatch-character.popped .pml{ animation:hatch-pop .5s cubic-bezier(.34,1.56,.64,1); }
@keyframes hatch-pop{ 0%{ transform:scale(.3) translateY(30%); opacity:0;} 60%{ transform:scale(1.1) translateY(-6%); opacity:1;} 100%{ transform:scale(1) translateY(0);} }
.hatch-puff{
  position:absolute; left:50%; top:50%; width:10px; height:10px; border-radius:50%;
  background:var(--yolk); opacity:0; transform:translate(-50%,-50%);
}
.hatch-puff.burst{ animation:puff-burst .6s ease-out forwards; }
@keyframes puff-burst{ 0%{ opacity:1; transform:translate(-50%,-50%) scale(.3);} 100%{ opacity:0; transform:translate(-50%,-50%) scale(6);} }

.population-strip-wrap{ margin-top:28px; }
.strip-label{ font-size:12px; color:#888; margin-bottom:8px; }
.population-strip{
  display:flex; gap:14px; overflow-x:auto; padding:8px 4px 14px;
  scroll-snap-type:x proximity;
}
.population-strip .pml-wrap{ scroll-snap-align:start; }
.strip-empty{ font-size:12px; color:#999; }
.pop-strip-enter{ animation:strip-walk-in .6s ease; }
@keyframes strip-walk-in{ from{ opacity:0; transform:translateX(40px) scale(.6);} to{ opacity:1; transform:none;} }

/* =========================================================
   Tek section (sticky cards)
========================================================= */
.tek{ background:var(--mint); border-top:var(--line) solid var(--ink); border-bottom:var(--line) solid var(--ink); }
.tek-stack{ display:flex; flex-direction:column; gap:24px; }
.tek-card{ position:sticky; top:70px; }
.tek-card[data-card="1"]{ top:70px; }
.tek-card[data-card="2"]{ top:96px; }
.tek-card[data-card="3"]{ top:122px; }
.tek-card[data-card="4"]{ top:148px; }
.tek-card-inner{
  background:var(--white); border:var(--line) solid var(--ink); border-radius:var(--radius-lg);
  box-shadow:var(--shadow-hard); padding:24px; display:grid; gap:20px; grid-template-columns:1fr;
  opacity:.55; transform:scale(.97); transition:opacity .35s ease, transform .35s ease;
}
.tek-card.in-view .tek-card-inner{ opacity:1; transform:scale(1); }
@media(min-width:760px){ .tek-card-inner{ grid-template-columns:220px 1fr; align-items:center; } }
.tek-scene{
  position:relative; height:140px; border-radius:var(--radius-md); background:var(--cream);
  border:var(--line-thin) solid var(--ink); display:flex; align-items:center; justify-content:center; gap:10px;
  overflow:hidden;
}
.tek-num{ font-size:12px; color:#888; }
.tek-text h3{ font-size:19px; margin-top:4px; }
.tek-text p{ margin-top:8px; font-size:13px; color:#555; line-height:1.5; }

.tek-egg{ width:22px; height:28px; border-radius:50% 50% 45% 45%; background:var(--white); border:var(--line-thin) solid var(--ink); }
.tek-egg-active{ background:var(--yolk); animation:tek-egg-pulse 1.4s ease-in-out infinite; }
.tek-card.in-view .tek-egg-active{ animation-play-state:running; }
@keyframes tek-egg-pulse{ 0%,100%{ transform:scale(1);} 50%{ transform:scale(1.15);} }
.tek-arrow{ font-size:20px; opacity:.5; }

.tek-jar-mini{ width:34px; height:44px; border:var(--line-thin) solid var(--ink); border-radius:6px; overflow:hidden; background:var(--white); display:flex; align-items:flex-end; }
.tek-jar-fill{ width:100%; height:20%; background:var(--shell-green); animation:tek-jar-fill 2s ease-in-out infinite; }
@keyframes tek-jar-fill{ 0%{ height:10%;} 80%{ height:90%;} 100%{ height:10%;} }
.tek-price-stamp{ font-size:11px; background:var(--yolk); border:var(--line-thin) solid var(--ink); border-radius:6px; padding:3px 8px; }

.tek-line-up{ width:80%; height:2px; background:linear-gradient(90deg, var(--red), var(--shell-green)); position:relative; }
.tek-line-up::after{ content:""; position:absolute; right:0; top:-3px; width:8px; height:8px; border-radius:50%; background:var(--shell-green-dark); }
.tek-buy-tag, .tek-sell-tag{ position:absolute; font-size:10px; font-weight:700; padding:2px 6px; border-radius:6px; border:var(--line-thin) solid var(--ink); }
.tek-buy-tag{ left:14px; bottom:20px; background:var(--shell-green); }
.tek-sell-tag{ right:14px; top:20px; background:var(--red); color:var(--white); }

.tek-split-left, .tek-split-right{ font-size:10px; font-weight:700; padding:6px 10px; border-radius:8px; border:var(--line-thin) solid var(--ink); }
.tek-split-left{ background:var(--purple); }
.tek-split-right{ background:var(--blue); }

/* =========================================================
   Population grid
========================================================= */
.population{ background:var(--cream); }
.pop-filters{ display:flex; gap:8px; justify-content:center; margin-bottom:24px; flex-wrap:wrap; }
.pop-grid{
  display:grid; grid-template-columns:repeat(2,1fr); gap:14px;
}
@media(min-width:600px){ .pop-grid{ grid-template-columns:repeat(3,1fr); } }
@media(min-width:900px){ .pop-grid{ grid-template-columns:repeat(4,1fr); } }
.pop-card{
  background:var(--white); border:var(--line) solid var(--ink); border-radius:var(--radius-md);
  padding:14px 10px; text-align:center; cursor:pointer; box-shadow:var(--shadow-hard-sm);
  transition:transform .15s ease, box-shadow .15s ease;
  display:flex; flex-direction:column; align-items:center; gap:6px;
}
.pop-card:hover{ transform:translate(-2px,-2px); box-shadow:4px 4px 0 var(--ink); }
.pop-card.hidden-filter{ display:none; }
.pop-card-id{ font-size:11px; font-weight:700; }
.pop-card-state{ font-size:9px; text-transform:uppercase; letter-spacing:.5px; padding:2px 8px; border-radius:999px; border:1.5px solid var(--ink); }
.pop-card-state.state-buying{ background:var(--shell-green); }
.pop-card-state.state-selling{ background:var(--red); color:var(--white); }
.pop-card-state.state-compounding{ background:var(--purple); }
.pop-card-state.state-funding{ background:var(--blue); }
.pop-card-pnl{ font-size:11px; font-weight:700; }
.pop-card-pnl.up{ color:var(--shell-green-dark); }
.pop-card-pnl.down{ color:#c94848; }
.pop-card-hover{ font-size:9px; color:#999; opacity:0; transition:opacity .15s; }
.pop-card:hover .pop-card-hover{ opacity:1; }

/* =========================================================
   Vault + Queue tape
========================================================= */
.vault-queue{ background:var(--white); border-top:var(--line) solid var(--ink); }
.vq-grid{ display:grid; grid-template-columns:1fr; gap:18px; }
@media(min-width:900px){ .vq-grid{ grid-template-columns:.8fr 1.1fr 1fr; } }
.vq-panel{
  background:var(--cream); border:var(--line) solid var(--ink); border-radius:var(--radius-lg);
  padding:20px; box-shadow:var(--shadow-hard);
}
.vq-jar-wrap{ display:flex; justify-content:center; margin-bottom:14px; }
.vq-stats{ display:flex; flex-direction:column; gap:8px; font-size:12px; }
.vq-stat{ display:flex; justify-content:space-between; background:var(--white); border:var(--line-thin) solid var(--ink); border-radius:8px; padding:6px 10px; }
.vq-stat-label{ color:#777; }

.queue-tape{ list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:8px; max-height:340px; overflow-y:auto; }
.queue-tape li{
  background:var(--white); border:var(--line-thin) solid var(--ink); border-radius:10px;
  padding:8px 10px; font-size:12px; display:flex; gap:8px; align-items:center;
}
.queue-tape .qt-pos{ font-weight:700; font-family:var(--font-mono); width:20px; }
.queue-tape .qt-text{ flex:1; overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }
.queue-tape .qt-wait{ font-size:9px; color:#999; }

.activity-feed{ display:flex; flex-direction:column; gap:8px; max-height:340px; overflow-y:auto; }
.activity-feed .af-row{ font-size:11px; font-family:var(--font-mono); border-left:3px solid var(--shell-green); padding-left:8px; opacity:.9; }
.activity-feed .af-row.sell{ border-color:var(--red); }
.activity-feed .af-row.fund{ border-color:var(--blue); }
.activity-feed .af-row.compound{ border-color:var(--purple); }
.activity-feed .af-time{ color:#999; margin-right:6px; }

/* =========================================================
   Footer
========================================================= */
.footer{ text-align:center; padding:50px 20px 60px; background:var(--ink); color:var(--cream); }
.footer-line{ font-size:15px; font-weight:600; }
.footer-meta{ margin-top:14px; font-size:12px; opacity:.7; display:flex; justify-content:center; gap:8px; }

/* =========================================================
   Toasts
========================================================= */
.toast-container{
  position:fixed; bottom:16px; left:50%; transform:translateX(-50%); z-index:90;
  display:flex; flex-direction:column; gap:8px; align-items:center; pointer-events:none;
  width:100%; padding:0 16px;
}
.toast{
  background:var(--ink); color:var(--white); font-family:var(--font-mono); font-size:12px;
  padding:9px 16px; border-radius:999px; box-shadow:var(--shadow-hard-sm);
  animation:toast-in .3s ease, toast-out .3s ease 3.7s forwards;
  max-width:92vw; white-space:nowrap; overflow:hidden; text-overflow:ellipsis;
}
@keyframes toast-in{ from{ opacity:0; transform:translateY(10px);} to{ opacity:1; transform:none;} }
@keyframes toast-out{ to{ opacity:0; transform:translateY(-6px); } }

/* =========================================================
   Dossier modal
========================================================= */
.dossier-overlay{
  position:fixed; inset:0; background:rgba(26,26,26,.55); z-index:100;
  display:flex; align-items:flex-end; justify-content:center;
  opacity:0; pointer-events:none; transition:opacity .25s ease;
}
.dossier-overlay.open{ opacity:1; pointer-events:auto; }
@media(min-width:760px){ .dossier-overlay{ align-items:center; } }
.dossier-panel{
  background:var(--cream); border:var(--line) solid var(--ink); border-radius:24px 24px 0 0;
  width:100%; max-width:440px; max-height:88vh; overflow-y:auto; padding:24px;
  transform:translateY(30px); transition:transform .25s ease; position:relative;
  box-shadow:0 -4px 0 var(--ink);
}
.dossier-overlay.open .dossier-panel{ transform:translateY(0); }
@media(min-width:760px){ .dossier-panel{ border-radius:24px; box-shadow:var(--shadow-hard); } }
.dossier-close{
  position:absolute; top:14px; right:14px; width:30px; height:30px; border-radius:50%;
  border:var(--line-thin) solid var(--ink); background:var(--white);
}
.dossier-top{ display:flex; align-items:center; gap:14px; margin-bottom:10px; }
.dossier-heading h3{ font-size:18px; }
.dossier-state-badge{
  display:inline-block; margin-top:4px; font-size:10px; text-transform:uppercase; letter-spacing:.5px;
  padding:3px 10px; border-radius:999px; border:1.5px solid var(--ink); background:var(--shell-green);
}
.dossier-callout{ font-size:13px; font-style:italic; color:#555; background:var(--white); border:var(--line-thin) solid var(--ink); border-radius:10px; padding:10px 12px; margin-top:6px; }
.dossier-stats{ display:grid; grid-template-columns:repeat(3,1fr); gap:8px; margin-top:16px; }
.dossier-stats div{ background:var(--white); border:var(--line-thin) solid var(--ink); border-radius:10px; padding:8px; text-align:center; }
.dossier-stats span{ display:block; font-size:9px; color:#888; }
.dossier-stats b{ font-size:12px; }
.dossier-split{ margin-top:16px; }
.split-bar{ height:10px; border-radius:999px; overflow:hidden; display:flex; border:1.5px solid var(--ink); }
.split-strategy{ background:var(--purple); }
.split-vault{ background:var(--blue); }
.split-labels{ display:flex; justify-content:space-between; font-size:10px; color:#777; margin-top:6px; }
.dossier-tape-title{ font-size:12px; margin-top:18px; color:#888; text-transform:uppercase; letter-spacing:.5px; }
.dossier-tape{ list-style:none; margin:8px 0 0; padding:0; display:flex; flex-direction:column; gap:6px; }
.dossier-tape li{
  font-family:var(--font-mono); font-size:10.5px; background:var(--white); border:1.5px solid var(--ink);
  border-radius:8px; padding:6px 8px; display:flex; justify-content:space-between; gap:8px;
}
.dossier-tape .tape-sig{ color:#999; }

/* =========================================================
   Reduced motion
========================================================= */
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  .pml-wrap.idle .pml, .pml-eye, .hero-scroll-hint, .hatch-character.shaking .pml,
  .hatch-character.popped .pml, .hatch-puff.burst, .tek-egg-active, .tek-jar-fill,
  .droplet, .pop-strip-enter, .toast, .birth-stamp{
    animation:none !important;
  }
  #jar-fill, #jar-fill-2, #jar-fill-shine{ transition:none; }
  .btn, .pop-card, .dossier-panel, .dossier-overlay, .tek-card-inner{ transition:none; }
}
