/* site.css — the one stylesheet for every page of the launch site.
   Palette and chrome are the main site's; prose is set in a face built
   for prose, and the pixel faces are kept for headings and labels. */

  :root{--bg:#0B0E15;--panel:#111725;--panel2:#161D2B;--line:#1E2839;--ink:#E2E9F4;--dim:#93A1B8;
    --amber:#FFC24A;--ember:#FF7A34;--good:#5BD08A;--bad:#FF6A5E;--term:#57D7E8;
    --arcade:"Press Start 2P",monospace;--pix:"Silkscreen",monospace;
    --read:"JetBrains Mono",ui-monospace,"SF Mono",Menlo,Consolas,monospace}
  *{box-sizing:border-box}
  html,body{margin:0;background:var(--bg);color:var(--ink);font-family:var(--read);font-size:15.5px;line-height:1.65}
  a{color:var(--amber)}
  .wrap{max-width:1060px;margin:0 auto;padding:26px 18px 90px}
  h1{font-family:var(--arcade);font-size:18px;line-height:1.6;margin:0 0 10px;color:var(--ink)}
  h2{font-family:var(--arcade);font-size:11px;line-height:1.6;margin:30px 0 12px;color:var(--amber);letter-spacing:.02em}
  h2 small{font-family:var(--read);font-size:13px;color:var(--dim);letter-spacing:0;margin-left:10px;text-transform:none}
  h3{font-family:var(--pix);font-size:15px;margin:12px 0 8px;letter-spacing:.03em}
  .lede{color:var(--dim);max-width:68ch;margin:0 0 22px;font-size:15px}
  .strip{display:grid;grid-template-columns:repeat(auto-fit,minmax(160px,1fr));gap:1px;background:var(--line);
    border:1px solid var(--line);margin-bottom:22px}
  .strip div{background:var(--panel);padding:12px 14px}
  .strip b{display:block;font-family:var(--arcade);font-size:12px;color:var(--amber);margin-bottom:6px;line-height:1.5;word-break:break-word}
  .strip span{color:var(--dim);font-size:12px;text-transform:uppercase;letter-spacing:.08em;font-family:var(--pix)}
  button{font-family:var(--read);font-weight:700;font-size:14px;background:var(--ember);color:#120A04;border:0;
    padding:11px 16px;cursor:pointer;box-shadow:0 4px 0 #A8431A;letter-spacing:.01em}
  button:hover{background:#FFA85C}
  button:active{transform:translateY(4px);box-shadow:0 0 0 #A8431A}
  button.ghost{background:var(--panel2);color:var(--ink);border:1px solid var(--line);box-shadow:0 4px 0 #080B11}
  button.ghost:hover{background:var(--line)}
  button:disabled{opacity:.4;cursor:not-allowed;transform:none}
  input,textarea,select{font-family:var(--read);font-size:15px;background:#0C111B;color:var(--ink);
    border:1px solid var(--line);padding:10px 12px;border-radius:2px}
  input:focus,textarea:focus{outline:2px solid var(--amber);outline-offset:1px;border-color:var(--amber)}
  .card{background:var(--panel);border:1px solid var(--line);padding:18px;margin-bottom:16px}
  .row{display:flex;gap:10px;flex-wrap:wrap;margin-top:12px;align-items:center}
  .hint{color:var(--dim);font-size:13px;margin:6px 0 0;line-height:1.55}
  .hint b{color:var(--amber);font-weight:600}
  .warn{border-left:3px solid var(--amber);padding:12px 14px;background:#171106;color:#F0DDB4;font-size:14px;margin:16px 0;line-height:1.6}
  .warn.bad{border-left-color:var(--bad);background:#1B0D0C;color:#FFC9C4}
  .warn.ok{border-left-color:var(--good);background:#0B1A12;color:#BFEBD1}
  .status{font-size:14px;color:var(--dim);min-height:2.2em;margin-top:12px;word-break:break-all}
  .tag{display:inline-block;font-family:var(--pix);font-size:11px;padding:3px 8px;letter-spacing:.06em;text-transform:uppercase;background:#1B2334;color:var(--dim);vertical-align:middle}
  .tag.pool{background:#16281C;color:var(--good)}
  .tr{display:flex;justify-content:space-between;font-size:14px;padding:5px 0;color:var(--dim);gap:12px;border-bottom:1px dashed #1A2230}
  .tr:last-of-type{border-bottom:0}
  .tr b{color:var(--ink);font-weight:500;text-align:right;word-break:break-all;font-variant-numeric:tabular-nums}
  footer{margin-top:44px;border-top:1px solid var(--line);padding-top:16px;color:var(--dim);font-size:12px}


/* ── header, this site's two adjustments to the shared chrome ──
   The mark is a 400px badge; scaled to 36px with pixelated rendering its
   frame lines drop out and it reads as a broken icon. Smooth scaling keeps
   the badge whole. And the buttons sit on the right at every width: when
   the header wraps on a narrow screen the nav still hugs the right edge. */
header.sm-head .sm-mark img{image-rendering:auto;width:40px;height:40px}
header.sm-head .sm-nav{margin-left:auto;justify-content:flex-end}
@media (max-width:820px){
  header.sm-head .sm-mark img{width:34px;height:34px}
  header.sm-head .sm-nav{flex:1 1 100%;justify-content:flex-end}
}
