/* Shared stylesheet for static /cards/* landing pages.
   Deliberately a small subset of index.html's design tokens — these pages
   don't load the SPA's JS/CSS bundle at all, so this is the complete style
   surface for them, not an override layer. Keep colors in sync with
   index.html's :root block if the brand palette ever changes. */

:root{
  --bg:#060a0f;--bg2:#0c1219;--bg3:#111820;--bg4:#1a2330;
  --border:#1e2d3d;--border2:#253545;
  --accent:#00d4aa;--accent5:#8b5cf6;
  --text:#e2e8f0;--text2:#94a3b8;--text3:#64748b;
  --mono:'DM Mono',monospace;--sans:'Plus Jakarta Sans','Inter',sans-serif;
}
*{box-sizing:border-box}
html{background:var(--bg)}
body{
  background:var(--bg);color:var(--text);font-family:var(--sans);
  font-size:16px;line-height:1.6;margin:0;-webkit-font-smoothing:antialiased;
}
.skip-link{position:absolute;left:-9999px;top:0;background:var(--accent);color:#04110d;padding:8px 14px;border-radius:6px;font-weight:700;z-index:100}
.skip-link:focus{left:12px;top:12px}

.site-header{
  display:flex;align-items:center;justify-content:space-between;
  padding:18px 24px;border-bottom:1px solid var(--border);
  max-width:820px;margin:0 auto;
}
.brand{color:var(--text);text-decoration:none;font-weight:700;font-size:16px}
.brand-cta{color:var(--accent);text-decoration:none;font-weight:600;font-size:14px}
.brand-cta:hover{text-decoration:underline}

main{max-width:820px;margin:0 auto;padding:0 24px 64px}

.hero{padding:48px 0 32px;border-bottom:1px solid var(--border)}
.eyebrow{font-family:var(--mono);font-size:12px;letter-spacing:1px;text-transform:uppercase;color:var(--accent);margin:0 0 12px}
.hero h1{font-size:clamp(26px,4vw,38px);line-height:1.25;margin:0 0 16px;font-weight:800}
.hero-total{color:var(--accent)}
.hero-sub{color:var(--text2);font-size:16px;max-width:640px;margin:0 0 20px}
.hero-facts{display:flex;flex-wrap:wrap;gap:10px}
.fact{font-family:var(--mono);font-size:12px;color:var(--text2);border:1px solid var(--border2);border-radius:6px;padding:6px 10px}

.checklist-section{padding:36px 0}
.checklist-section h2{font-size:20px;margin:0 0 20px}
.checklist{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:12px}
.cl-item{border:1px solid var(--border);border-radius:10px;background:var(--bg2);padding:16px}
.cl-row{display:flex;gap:14px;align-items:flex-start}
.cl-check{
  flex:0 0 auto;width:26px;height:26px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  font-family:var(--mono);font-size:12px;font-weight:700;
  background:var(--bg3);border:1px solid var(--border2);color:var(--text2);
}
.cl-main{flex:1;min-width:0}
.cl-name-row{display:flex;justify-content:space-between;gap:12px;flex-wrap:wrap}
.cl-name{font-weight:700;font-size:15px}
.cl-amt{font-family:var(--mono);color:var(--accent);font-weight:700;font-size:14px;white-space:nowrap}
.cl-meta{font-size:12px;color:var(--text3);margin-top:2px}
.cl-hack{
  margin-top:10px;padding:10px 12px;border-radius:6px;
  background:rgba(139,92,246,0.07);border:1px dashed rgba(139,92,246,0.35);
  font-size:13px;color:var(--text2);line-height:1.55;
}
.cl-hack-label{font-family:var(--mono);font-size:10px;font-weight:700;letter-spacing:0.5px;text-transform:uppercase;color:var(--accent5);margin-right:6px}
.cl-article-link{display:inline-block;margin-top:10px;font-size:13px;color:var(--accent);text-decoration:none}
.cl-article-link:hover{text-decoration:underline}

.cta-section{
  padding:36px;margin:16px 0;border-radius:14px;text-align:center;
  background:linear-gradient(160deg,rgba(0,212,170,0.10),rgba(14,165,233,0.06));
  border:1px solid rgba(0,212,170,0.25);
}
.cta-section h2{margin:0 0 10px;font-size:22px}
.cta-section p{color:var(--text2);max-width:520px;margin:0 auto 22px}
.cta-button{
  display:inline-block;background:var(--accent);color:#04110d;
  font-weight:700;text-decoration:none;padding:14px 26px;border-radius:8px;font-size:15px;
}
.cta-button:hover{opacity:0.9}

.other-cards{padding:24px 0}
.other-cards h2{font-size:16px;color:var(--text2);margin:0 0 14px}
.other-cards-grid{display:flex;flex-wrap:wrap;gap:10px}
.other-card-link{
  font-size:13px;color:var(--text2);text-decoration:none;
  border:1px solid var(--border);border-radius:8px;padding:8px 12px;
}
.other-card-link:hover{color:var(--accent);border-color:var(--accent)}

.site-footer{
  max-width:820px;margin:0 auto;padding:24px;display:flex;gap:20px;
  border-top:1px solid var(--border);
}
.site-footer a{color:var(--text3);text-decoration:none;font-size:13px}
.site-footer a:hover{color:var(--text2)}
