:root{
  --cream:#f7ecd0;
  --paper:#fff8e3;
  --ink:#14110e;
  --muted:#594d3a;
  --red:#d61f1f;
  --orange:#e8763a;
  --yellow:#f5b800;
  --green:#18b978;
  --purple:#6f49d8;
  --dark:#11100d;
  --title:'Bagel Fat One',cursive;
  --bowlby:'Bowlby One',cursive;
  --serif:'Bevan',serif;
  --hand:'Caveat',cursive;
  --print:'Architects Daughter',cursive;
  --body:'Inter',system-ui,sans-serif;
}
*{box-sizing:border-box}
html,body{margin:0;padding:0;color:var(--ink)}

/* ===== Issue 03 cover ===== */
.cover{
  position:relative;
  width:100%;
  aspect-ratio:1023 / 1537;
  overflow:hidden;
  background:#0a0908;
  cursor:pointer;
  border:2px solid #000;
  border-radius:3px;
}
.cover-scene{
  position:absolute;
  inset:0;
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center center;
  z-index:0;
}
.cover-masthead{
  position:absolute;
  top:0;
  left:0;
  right:0;
  z-index:5;
  height:clamp(92px,15.5vh,168px);
  pointer-events:none;
}
.cover-masthead::before{
  content:"";
  position:absolute;
  left:0;
  right:0;
  top:42.5%;
  height:23.2%;
  transform:translateY(-50%);
  background:#aa1315;
  z-index:1;
}
.cover-ribbon{
  position:absolute;
  left:50%;
  top:50%;
  transform:translate(-50%,-50%);
  height:152%;
  width:auto;
  max-width:none;
  z-index:2;
}
.cover-issue,
.cover-date{
  position:absolute;
  top:42.5%;
  transform:translateY(-50%);
  z-index:3;
  pointer-events:auto;
}
.cover-issue{left:clamp(12px,3.5vw,36px)}
.cover-issue .issue-trigger{border-left:0;padding-left:0}
.cover-issue .main-issue{font-size:9px}
.cover-issue .main-issue b{font-size:16px}
.cover-date{
  right:clamp(12px,3.5vw,36px);
  text-align:right;
  color:#fff;
  font-family:var(--serif);
  font-size:clamp(7px,1vw,9px);
  letter-spacing:1.5px;
  line-height:1.05;
  text-transform:uppercase;
  text-shadow:2px 2px 0 #000;
}
.cover-date b{
  display:block;
  margin-top:2px;
  font-family:var(--bowlby);
  font-size:clamp(11px,1.6vw,16px);
  letter-spacing:1px;
}
.cover-title{
  position:absolute;
  left:clamp(16px,4.5vw,46px);
  bottom:3.5%;
  width:min(47%,400px);
  z-index:4;
  pointer-events:none;
  filter:drop-shadow(0 8px 16px rgba(0,0,0,.6));
}
.cover .issue-select{cursor:auto}
.cover-app{
  position:absolute;
  right:clamp(16px,4.5vw,46px);
  bottom:5.5%;
  transform:rotate(-1.2deg);
  z-index:4;
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 20px;
  border:2.5px solid #000;
  border-radius:10px;
  background:var(--orange);
  color:#fff;
  box-shadow:3px 4px 0 #000;
  text-decoration:none;
  font-family:var(--bowlby);
  font-size:clamp(13px,1.6vw,16px);
  letter-spacing:.5px;
  text-transform:uppercase;
  text-shadow:1.5px 1.5px 0 rgba(0,0,0,.35);
}
.cover-app .ico{display:inline-flex}
.cover-app .ico svg{width:18px;height:18px}
.cover-app:hover{transform:rotate(-1.2deg) translateY(-2px);box-shadow:3px 6px 0 #000}
.whatsnew{scroll-margin-top:96px}
@media (max-width:720px){
  .cover-title{width:min(62%,320px);bottom:4%}
  .cover-app{bottom:5%}
}
@media (max-width:560px){
  /* The cover CTA keeps a 13px floor and fixed padding, so as the cover shrinks the button stays
     the same physical size and ends up sitting on top of the title art. The page already carries a
     full "Open app" call to action further down, so drop it here rather than shrink it to a size
     nobody can tap. */
  .cover-app{display:none}
  /* With the button gone the title can use the width it was always fighting for. */
  .cover-title{width:min(78%,320px);bottom:4.5%}
  /* These flank the masthead logo, which scales with the viewport while their type does not —
     the clamp floors (7px / 11px) stop shrinking long before the logo does, so they end up
     printed across its letters. Tie them to the viewport instead. */
  .cover-issue .main-issue{font-size:1.6vw}
  .cover-issue .main-issue b{font-size:2.7vw}
  .cover-issue .caret{width:9px;height:6px}
  .cover-date{font-size:1.6vw;letter-spacing:.8px}
  .cover-date b{font-size:2.7vw}
}
body{
  min-height:100vh;
  background:#14110e;
  background-image:radial-gradient(rgba(255,255,255,.04) 1px, transparent 1.5px);
  background-size:5px 5px;
  font-family:var(--body);
  padding:20px 10px 40px;
}
.edition-frame{
  width:min(1052px, calc(100vw - 20px));
  max-width:1052px;
  margin:0 auto;
  background:var(--cream);
  padding:14px;
  border-radius:5px;
  box-shadow:0 30px 80px rgba(0,0,0,.6), 0 8px 20px rgba(0,0,0,.4);
  position:relative;
}
.edition-poster{
  position:relative;
  display:flex;
  flex-direction:column;
  gap:6px;
}
a{color:inherit}
.topbar{
  position:sticky;
  top:0;
  z-index:20;
  display:flex;
  align-items:center;
  gap:18px;
  padding:14px clamp(16px,4vw,42px);
  background:var(--red);
  color:#fff;
  border-bottom:4px solid #000;
  box-shadow:0 8px 0 rgba(0,0,0,.14);
}
.brand{
  display:inline-flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
  flex:0 0 auto;
}
.brand-mark{
  width:54px;
  height:54px;
  display:grid;
  place-items:center;
  border:3px solid #000;
  border-radius:50%;
  background:var(--paper);
  box-shadow:3px 3px 0 #000;
  overflow:hidden;
  transform:rotate(-4deg);
}
.brand-mark img{width:86%;height:86%;object-fit:contain}
.brand-word{
  font-family:var(--bowlby);
  font-size:34px;
  letter-spacing:1px;
  line-height:.9;
  text-transform:uppercase;
  text-shadow:3px 3px 0 #000;
  transform:skewX(-6deg);
}
.issue-select{position:relative;z-index:30}
.issue-trigger{
  display:inline-flex;
  align-items:center;
  gap:8px;
  cursor:pointer;
  background:transparent;
  border:0;
  border-left:3px solid #000;
  color:#fff;
  margin:0;
  padding:0 0 0 14px;
}
.main-issue{
  font-family:var(--serif);
  font-size:11px;
  line-height:1.05;
  letter-spacing:1.5px;
  text-transform:uppercase;
  text-shadow:2px 2px 0 #000;
}
.main-issue b{
  display:block;
  margin-top:2px;
  font-family:var(--bowlby);
  font-size:20px;
  letter-spacing:1px;
}
.caret{
  width:20px;
  height:14px;
  filter:drop-shadow(1px 1px 0 #000);
  transition:transform .18s;
}
.issue-select.open .caret{transform:rotate(180deg)}
.issue-menu{
  position:absolute;
  top:calc(100% + 14px);
  left:-6px;
  min-width:390px;
  margin:0;
  padding:9px;
  list-style:none;
  background:var(--cream);
  border:4px solid #000;
  border-radius:8px;
  box-shadow:7px 8px 0 #000;
  opacity:0;
  visibility:hidden;
  transform:translateY(-8px) rotate(-.6deg);
  transition:opacity .16s, transform .16s;
}
.issue-select.open .issue-menu{
  opacity:1;
  visibility:visible;
  transform:translateY(0) rotate(-.6deg);
}
.issue-menu a{
  display:flex;
  align-items:baseline;
  gap:10px;
  padding:14px 16px;
  border-radius:6px;
  font-family:var(--body);
  font-weight:800;
  font-size:18px;
  color:var(--ink);
  text-decoration:none;
  line-height:1.2;
}
.issue-menu a b{
  font-family:var(--bowlby);
  font-weight:400;
  font-size:19px;
  letter-spacing:.5px;
  color:var(--red);
}
.issue-menu a:hover{background:#fff8e3}
.issue-menu a.cur{background:var(--yellow)}
.issue-menu a.cur b{color:#000}
.issue-menu a.all{
  justify-content:space-between;
  background:var(--red);
  color:#fff;
  font-family:var(--bowlby);
  letter-spacing:.8px;
  text-transform:uppercase;
  text-shadow:1.5px 1.5px 0 #000;
}
.issue-menu a.all svg{width:27px;height:20px;color:#fff}
.issue-menu .sep{height:2px;background:#000;opacity:.18;margin:7px 5px}
.top-actions{
  margin-left:auto;
  display:flex;
  align-items:center;
  gap:10px;
}
.top-actions a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:38px;
  padding:8px 13px;
  border:2.5px solid #000;
  border-radius:8px;
  background:var(--paper);
  color:var(--ink);
  box-shadow:3px 3px 0 #000;
  font-family:var(--bowlby);
  font-size:13px;
  letter-spacing:.4px;
  text-transform:uppercase;
  text-decoration:none;
}
main{
  width:100%;
  margin:0 auto;
  padding:clamp(34px,5vw,64px) clamp(16px,3.2vw,40px) 52px;
  border:2px solid #000;
  border-radius:3px;
  overflow:hidden;
  background:var(--cream);
  background-image:radial-gradient(rgba(20,17,14,.08) 1px, transparent 1.5px);
  background-size:4px 4px;
}
.hero{
  display:block;
  max-width:760px;
}
.hero-copy{
  padding:16px 0;
}
.brand-tagline{
  margin:16px 0 -4px;
  color:var(--red);
  font-family:var(--hand);
  font-size:clamp(25px,3vw,38px);
  font-weight:700;
  line-height:1;
  transform:rotate(-1.5deg);
}
.eyebrow,.kicker{
  display:inline-block;
  background:#000;
  color:var(--yellow);
  border-radius:4px;
  padding:6px 11px 5px;
  font-family:var(--serif);
  font-size:11px;
  letter-spacing:2.4px;
  text-transform:uppercase;
}
h1,h2,h3,p{margin-top:0}
h1{
  margin:18px 0 16px;
  font-family:var(--bowlby);
  font-size:clamp(48px,6.4vw,84px);
  line-height:.88;
  letter-spacing:1px;
  text-transform:uppercase;
  text-shadow:5px 5px 0 var(--red);
  transform:skewX(-3deg);
}
.lede{
  max-width:620px;
  margin:0;
  color:#312a20;
  font-size:18px;
  line-height:1.58;
  font-weight:800;
}
.tag-row{
  display:flex;
  flex-wrap:wrap;
  gap:9px;
  margin-top:24px;
}
.tag-row span{
  padding:7px 11px;
  border:2.5px solid #000;
  border-radius:6px;
  background:var(--paper);
  box-shadow:2px 2px 0 #000;
  font-family:var(--serif);
  font-size:10px;
  letter-spacing:1.3px;
  text-transform:uppercase;
}
.chart-board{
  margin:0;
  border:4px solid #000;
  border-radius:8px;
  background:var(--paper);
  box-shadow:12px 14px 0 rgba(0,0,0,.86);
  overflow:hidden;
  transform:rotate(.6deg);
}
.chart-head{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  padding:12px 14px;
  background:var(--dark);
  color:#fff;
  border-bottom:4px solid #000;
  font-family:var(--bowlby);
  font-size:14px;
  letter-spacing:.6px;
  text-transform:uppercase;
}
.status{
  color:#000;
  background:var(--yellow);
  border:2px solid #000;
  border-radius:999px;
  padding:4px 9px;
  box-shadow:2px 2px 0 #000;
}
.chart-canvas{
  position:relative;
  min-height:420px;
}
.chart-svg{
  display:block;
  width:100%;
  height:auto;
}
.svg-label{
  font-family:Inter,system-ui,sans-serif;
  font-size:17px;
  font-weight:800;
  fill:#14110e;
}
.svg-label.green{fill:#0b6b47}
.svg-label.red{fill:#b01919}
.svg-label.purple{fill:#5630b4}
.badge-stack{
  position:absolute;
  left:16px;
  top:18px;
  display:flex;
  flex-wrap:wrap;
  gap:7px;
  width:min(360px, calc(100% - 32px));
}
.badge-stack span{
  padding:6px 9px;
  border:2px solid #000;
  border-radius:999px;
  background:#fff;
  box-shadow:2px 2px 0 rgba(0,0,0,.85);
  font-family:var(--body);
  font-size:12px;
  font-weight:900;
}
.create-trade{
  position:absolute;
  right:16px;
  bottom:16px;
  border:3px solid #000;
  border-radius:8px;
  background:var(--orange);
  color:#fff;
  padding:12px 18px;
  box-shadow:4px 4px 0 #000;
  font-family:var(--bowlby);
  font-size:16px;
  letter-spacing:.6px;
  text-transform:uppercase;
  text-shadow:1.5px 1.5px 0 rgba(0,0,0,.3);
}
.section{
  padding:56px 0 0;
}
.section-head{
  display:flex;
  align-items:flex-end;
  gap:16px;
  margin-bottom:20px;
}
.section-head h2{
  margin:0;
  font-family:var(--bowlby);
  font-size:clamp(32px,5vw,52px);
  line-height:.95;
  letter-spacing:.8px;
  text-transform:uppercase;
  text-shadow:3px 3px 0 var(--yellow);
}
.feature-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:16px;
}
.whatsnew-grid{
  grid-template-columns:repeat(3, minmax(0,1fr));
}
.whatsnew-grid .feature-panel{min-height:0}
.ship-stats{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin:0 0 20px;
}
.ship-stats span{
  padding:8px 15px;
  border:3px solid #000;
  border-radius:999px;
  background:#fff;
  box-shadow:3px 4px 0 rgba(0,0,0,.78);
  color:var(--muted);
  font-family:var(--body);
  font-size:13px;
  font-weight:900;
  letter-spacing:.4px;
  text-transform:uppercase;
}
.ship-stats span b{
  margin-right:7px;
  color:var(--ink);
  font-family:var(--bowlby);
  font-weight:400;
}
.also-panel{margin-top:16px}
.baseline-grid{
  display:grid;
  grid-template-columns:minmax(0,1.35fr) minmax(320px,.65fr);
  gap:18px;
  align-items:stretch;
}
.screenshot-panel{
  margin:0;
  overflow:hidden;
  border:3px solid #000;
  border-radius:8px;
  background:var(--paper);
  box-shadow:6px 7px 0 rgba(0,0,0,.78);
}
.screenshot-panel img{
  display:block;
  width:100%;
  height:auto;
}
.baseline-notes{
  padding:20px;
  border:3px solid #000;
  border-radius:8px;
  background:#fff;
  box-shadow:6px 7px 0 rgba(0,0,0,.78);
}
.baseline-notes h3{
  margin:0 0 10px;
  font-family:var(--bowlby);
  font-size:21px;
  line-height:1;
  letter-spacing:.4px;
  text-transform:uppercase;
}
.baseline-notes h3 + ul{margin-bottom:20px}
.baseline-notes ul{
  margin:0;
  padding-left:19px;
  color:#2b251c;
  font-size:14px;
  line-height:1.52;
  font-weight:800;
}
.baseline-notes li + li{margin-top:7px}
.feature-panel,.copy-panel,.acceptance{
  border:3px solid #000;
  border-radius:8px;
  background:var(--paper);
  box-shadow:5px 6px 0 rgba(0,0,0,.78);
}
.feature-panel{
  position:relative;
  padding:18px 16px 16px;
  min-height:284px;
}
.panel-no{
  display:inline-grid;
  place-items:center;
  width:34px;
  height:34px;
  margin-bottom:12px;
  border:2.5px solid #000;
  border-radius:50%;
  background:var(--red);
  color:#fff;
  box-shadow:2px 2px 0 #000;
  font-family:var(--bowlby);
  font-size:13px;
}
.feature-panel h3,.acceptance h3{
  margin:0 0 10px;
  font-family:var(--bowlby);
  font-size:22px;
  line-height:1;
  letter-spacing:.4px;
  text-transform:uppercase;
}
.feature-panel p,.copy-panel p{
  margin:0 0 14px;
  color:var(--muted);
  font-size:14px;
  line-height:1.5;
  font-weight:750;
}
.feature-panel ul,.acceptance ul,.copy-panel ol{
  margin:0;
  padding-left:19px;
  color:#2b251c;
  font-size:13px;
  line-height:1.52;
  font-weight:800;
}
.feature-panel li + li,.acceptance li + li,.copy-panel li + li{margin-top:6px}
.two-col{
  display:grid;
  grid-template-columns:minmax(0,.9fr) minmax(320px,1.1fr);
  gap:18px;
  align-items:start;
}
.two-col .section-head{
  grid-column:1/-1;
  margin-bottom:2px;
}
.copy-panel,.acceptance{
  padding:20px;
}
.copy-panel p{
  font-size:16px;
  margin-bottom:16px;
}
.copy-panel ol,.acceptance ul{
  font-size:15px;
}
.references{
  padding-bottom:16px;
}
.reference-list{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:12px;
}
.reference-list a{
  min-height:86px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:14px 12px;
  border:3px solid #000;
  border-radius:8px;
  background:#fff;
  box-shadow:4px 5px 0 rgba(0,0,0,.76);
  color:var(--ink);
  font-family:var(--body);
  font-size:14px;
  font-weight:900;
  line-height:1.25;
  text-decoration:none;
}
.reference-list a:hover{
  transform:translate(-1px,-2px) rotate(-.4deg);
}
.page-footer{
  display:flex;
  justify-content:space-between;
  gap:18px;
  width:min(1180px, calc(100vw - 32px));
  margin:0 auto;
  padding:20px 0 30px;
  border-top:4px solid #000;
  color:var(--muted);
  font-family:var(--serif);
  font-size:11px;
  letter-spacing:1.8px;
  text-transform:uppercase;
}
@media (max-width:1060px){
  .hero{grid-template-columns:1fr;min-height:auto}
  .chart-board{transform:none}
  .feature-grid{grid-template-columns:repeat(2, minmax(0,1fr))}
  .baseline-grid{grid-template-columns:1fr}
  .reference-list{grid-template-columns:repeat(2, minmax(0,1fr))}
}
@media (max-width:720px){
  .topbar{position:relative;align-items:flex-start;flex-wrap:wrap;padding:12px 14px}
  .brand-word{font-size:30px}
  .brand-mark{width:48px;height:48px}
  .issue-select{margin-left:auto}
  .issue-menu{right:0;left:auto;min-width:min(340px, calc(100vw - 28px))}
  .issue-menu a,.issue-menu a b{font-size:16px}
  .top-actions{width:100%;margin-left:0}
  .top-actions a{flex:1}
  main{width:min(100vw - 24px, 1180px);padding-top:28px}
  h1{font-size:clamp(40px,15.5vw,64px);text-shadow:4px 4px 0 var(--red)}
  .lede{font-size:16px}
  .chart-canvas{min-height:0}
  .badge-stack{position:static;padding:12px 12px 0;width:auto}
  .create-trade{position:static;margin:12px;width:calc(100% - 24px)}
  .section-head{display:block}
  .section-head h2{margin-top:12px}
  .feature-grid,.two-col,.reference-list{grid-template-columns:1fr}
  .feature-panel{min-height:0}
  .page-footer{display:block}
  .page-footer span{display:block}
  .page-footer span + span{margin-top:8px}
}

/* ===== What's-new lede, showcase note, closing CTA ===== */
.section-lede{
  max-width:640px;
  margin:-4px 0 24px;
  color:#312a20;
  font-size:17px;
  line-height:1.55;
  font-weight:800;
}
.showcase-note{
  margin:18px 0 0;
  color:var(--red);
  font-family:var(--hand);
  font-size:23px;
  font-weight:700;
  line-height:1.15;
  transform:rotate(-1deg);
}
.cta-section{display:flex;justify-content:center}
.cta-card{
  width:100%;
  text-align:center;
  border:3px solid #000;
  border-radius:10px;
  background:var(--ink);
  color:#fff;
  box-shadow:8px 10px 0 rgba(0,0,0,.5);
  padding:clamp(30px,5vw,54px) clamp(20px,4vw,44px);
}
.cta-card h2{
  margin:0 0 12px;
  font-family:var(--bowlby);
  font-size:clamp(26px,4.4vw,44px);
  line-height:1;
  letter-spacing:.6px;
  text-transform:uppercase;
  text-shadow:3px 3px 0 var(--red);
}
.cta-card p{
  max-width:560px;
  margin:0 auto 22px;
  color:#e9e0cd;
  font-size:16px;
  line-height:1.55;
  font-weight:700;
}
.cta-actions{display:flex;flex-wrap:wrap;gap:12px;justify-content:center}
.cta-btn{
  display:inline-flex;
  align-items:center;
  min-height:48px;
  padding:12px 22px;
  border:3px solid #000;
  border-radius:9px;
  box-shadow:4px 4px 0 #000;
  font-family:var(--bowlby);
  font-size:15px;
  letter-spacing:.5px;
  text-transform:uppercase;
  text-decoration:none;
}
.cta-btn.orange{background:var(--orange);color:#fff;text-shadow:1.5px 1.5px 0 rgba(0,0,0,.3)}
.cta-btn.paper{background:var(--paper);color:var(--ink)}
.cta-btn:hover{transform:translateY(-2px);box-shadow:4px 6px 0 #000}

/* ===== Contact ===== */
.contact-section{display:flex;justify-content:center;padding-top:16px}
.contact-card{
  width:100%;
  text-align:center;
  border:3px solid #000;
  border-radius:10px;
  background:var(--paper);
  color:var(--ink);
  box-shadow:6px 8px 0 rgba(0,0,0,.35);
  padding:clamp(20px,3.5vw,34px) clamp(18px,4vw,40px);
}
.contact-kicker{
  display:block;
  margin-bottom:10px;
  font-family:var(--bowlby);
  font-size:13px;
  letter-spacing:1px;
  text-transform:uppercase;
  color:var(--red);
}
.contact-email{
  display:inline-block;
  font-family:var(--bowlby);
  font-size:clamp(17px,3vw,26px);
  letter-spacing:.4px;
  color:var(--ink);
  text-decoration:none;
  border-bottom:3px solid var(--orange);
  padding-bottom:2px;
  word-break:break-word;
}
.contact-email:hover{color:var(--orange)}
/* Issue 02 carried these in its own shell scoped to body.edition-2, so nothing here inherited them. */
.contact-socials{
  display:flex;
  justify-content:center;
  gap:12px;
  margin-top:clamp(14px,2.5vw,20px);
}
.contact-socials .soc{
  display:grid;
  place-items:center;
  width:44px;
  height:44px;
  border:3px solid #000;
  border-radius:50%;
  background:var(--paper);
  color:var(--ink);
  box-shadow:3px 4px 0 #000;
  transform:rotate(-2deg);
  transition:transform .16s, box-shadow .16s, background .16s;
}
.contact-socials .soc svg{width:20px;height:20px;fill:currentColor}
.contact-socials .soc:hover{
  transform:rotate(-2deg) translateY(-2px);
  box-shadow:3px 6px 0 #000;
  background:var(--yellow);
}

/* ===== Field-guide legend (real chart) ===== */
.legend-shot{
  max-width:820px;
  margin:0 auto;
  border:3px solid #000;
  border-radius:8px;
  overflow:hidden;
  background:var(--paper);
  box-shadow:6px 7px 0 rgba(0,0,0,.78);
  transform:rotate(-.4deg);
}
.legend-shot img{
  display:block;
  width:100%;
  height:auto;
  border-bottom:3px solid #000;
}
.legend-caption{
  padding:14px 16px 15px;
  background:#fff;
  color:#2b251c;
  font-size:14px;
  line-height:1.5;
  font-weight:800;
}

/* ===== Claim status (internal review markers) ===== */
.panel-status{
  position:absolute;
  top:16px;
  right:16px;
  z-index:2;
  display:grid;
  place-items:center;
  width:28px;
  height:28px;
  border:2.5px solid #000;
  border-radius:7px;
  box-shadow:2px 2px 0 #000;
  font-family:var(--bowlby);
  font-size:16px;
  line-height:1;
}
.panel-status.done{background:var(--green);color:#fff}
.panel-status.todo{background:#fff;color:var(--red)}

/* ===== Coming next — Issue 04 teaser ===== */
.next-issue{padding-top:16px}
.next-card{
  display:flex;
  align-items:center;
  gap:16px;
  padding:22px clamp(18px,3vw,30px);
  border:3px dashed #000;
  border-radius:10px;
  background:var(--paper);
  box-shadow:5px 6px 0 rgba(0,0,0,.5);
  text-decoration:none;
  color:var(--ink);
  transition:transform .12s ease, box-shadow .12s ease;
}
.next-card:hover{transform:translate(-1px,-2px);box-shadow:6px 8px 0 rgba(0,0,0,.55)}
.next-kicker{
  font-family:var(--serif);
  font-size:11px;
  letter-spacing:2px;
  text-transform:uppercase;
  color:var(--muted);
  flex:0 0 auto;
}
.next-title{
  font-family:var(--bowlby);
  font-size:clamp(18px,2.6vw,26px);
  line-height:1;
  letter-spacing:.4px;
  text-transform:uppercase;
  text-shadow:2px 2px 0 var(--yellow);
}
.next-go{margin-left:auto;display:inline-flex;color:var(--red)}
.next-go svg{width:26px;height:18px}
@media (max-width:560px){
  .next-card{flex-wrap:wrap;gap:8px}
  .next-go{margin-left:0}
}
