/* ═══════════════════════════════════════════════════════════════════════════════════════════════════
   KURV — the site's design system, shared by /, /token and /apply.

   Why this is a file and not three inline blocks. The announcement page inlined its whole stylesheet so
   one failed request could not leave it unreadable, and that reasoning still holds — which is why every
   page still inlines the tokens, the body ground and the header in its own <style>. What is here is the
   other 90%: sections, cards, tables, charts, forms. Three pages that disagree about what a card looks
   like is a worse failure than a page that loses its card styling for one request, and a same-origin
   stylesheet on the same deployment either arrives with the HTML or the HTML did not arrive either.

   The colour tokens mirror brand/kurv-tokens.css. That file stays the source of truth in the repo.
   ═══════════════════════════════════════════════════════════════════════════════════════════════════ */

/* ── layout primitives ────────────────────────────────────────────────────────────────────────── */
*{box-sizing:border-box}
[hidden]{display:none!important}
html{background:var(--void);-webkit-text-size-adjust:100%;scroll-behavior:smooth}
@media(prefers-reduced-motion:reduce){ html{scroll-behavior:auto} }
body{margin:0;background:var(--void);color:var(--paper);font-family:var(--body);
     -webkit-font-smoothing:antialiased;overflow-x:clip}
h1,h2,h3{margin:0;font-family:var(--display);font-weight:800;line-height:.98;letter-spacing:-.02em;
      text-wrap:balance}
p{margin:0;text-wrap:pretty}
img,canvas,svg{display:block;max-width:100%}
a{color:var(--volt)}
:focus-visible{outline:3px solid var(--volt);outline-offset:3px;border-radius:4px}
.vh{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;
    clip-path:inset(50%);white-space:nowrap;border:0}
.wrap{width:100%;max-width:1180px;margin:0 auto;padding:0 var(--gut)}

/* Every scene ships its still first. The script adds .js to <html> before first paint, which is what
   swaps the still for the canvas; with scripting off, or with reduced motion asked for, the still is
   what stays. Both occupy the same box, so nothing moves either way. */
.scene{position:relative}
.scene canvas{display:none}
.js .scene canvas{display:block}
.js .scene .still{display:none}
@media(prefers-reduced-motion:reduce){
  .js .scene canvas{display:none}
  .js .scene .still{display:block}
}

.skip{position:absolute;left:-9999px;top:0;z-index:60;display:inline-flex;align-items:center;
      height:48px;padding:0 18px;background:var(--volt);color:var(--void);font-weight:700;
      text-decoration:none;border-radius:0 0 14px 0}
.skip:focus{left:0}

/* ── header ───────────────────────────────────────────────────────────────────────────────────── */
header{position:fixed;inset:0 0 auto 0;z-index:30;height:var(--head);
       background:linear-gradient(180deg,rgba(5,3,15,.94),rgba(5,3,15,.66) 60%,rgba(5,3,15,0));
       backdrop-filter:blur(8px);-webkit-backdrop-filter:blur(8px)}
.bar{display:flex;align-items:center;gap:6px;height:var(--head)}
.home{display:flex;align-items:center;align-self:stretch;flex:0 0 auto;padding-right:4px}
.home img{width:92px;height:26px}
@media(min-width:900px){ .home img{width:118px;height:33px} }
.push{margin-left:auto}
/* The three page links only appear where there is room for them; the mark and the one button are what a
   360px phone gets, because a squeezed row of five things is what a cheap landing page looks like. */
.nav{display:none;gap:2px}
@media(min-width:760px){ .nav{display:flex} }
.nav a{display:inline-flex;align-items:center;height:44px;padding:0 12px;border-radius:12px;
       color:var(--haze);font-size:13px;font-weight:700;text-decoration:none;white-space:nowrap}
.nav a:hover{color:var(--paper);background:rgb(255 255 255 / .06)}
.nav a[aria-current="page"]{color:var(--volt)}
/* 44px everywhere a finger can land. The X mark is an icon, so the box around it is the target. */
.ico{display:inline-flex;align-items:center;justify-content:center;width:44px;height:44px;
     border-radius:12px;color:var(--haze);text-decoration:none}
.ico:hover{color:var(--paper);background:rgb(255 255 255 / .06)}

/* ── buttons ──────────────────────────────────────────────────────────────────────────────────── */
.btn{appearance:none;-webkit-appearance:none;display:inline-flex;align-items:center;justify-content:center;
     gap:9px;min-height:52px;margin:0;padding:0 22px;border-radius:18px;border:2px solid transparent;
     background:transparent;color:var(--paper);font-family:var(--display);font-weight:800;font-size:15px;
     letter-spacing:-.01em;text-decoration:none;white-space:nowrap;cursor:pointer;
     transition:transform .12s ease,box-shadow .12s ease}
.btn.p{background:var(--volt);color:var(--void);border-color:var(--void);box-shadow:5px 5px 0 var(--void)}
.btn.p:hover{transform:translate(-1px,-1px);box-shadow:7px 7px 0 var(--void)}
.btn.p:active{transform:translate(2px,2px);box-shadow:2px 2px 0 var(--void)}
.btn.s{background:var(--card);color:var(--paper);border-color:var(--rail)}
.btn.s:hover{border-color:var(--line)}
.btn[disabled]{background:var(--card);color:var(--haze);border-color:var(--rail);box-shadow:none;
               transform:none;pointer-events:none}
.btn.sm{min-height:44px;font-size:13px;padding:0 16px}
/* A link that is a link, not a button, but still a 44px target. */
.tlink{display:inline-flex;align-items:center;min-height:44px;font-size:14px;font-weight:700;
       color:var(--volt);text-underline-offset:3px}

/* ── the status strip ─────────────────────────────────────────────────────────────────────────── */
/* Three facts about where KURV actually is, from data/site.json, directly under the header on every
   page. It is the first thing a stranger reads, so it is the first thing that has to be true. */
.strip{border-top:2px solid var(--rail);border-bottom:2px solid var(--rail);background:var(--deck)}
.strip ul{display:flex;flex-wrap:wrap;gap:8px 26px;margin:0;padding:14px 0;list-style:none}
.strip li{display:flex;align-items:center;gap:9px;font-size:12px;line-height:1.3}
.strip .k{color:var(--haze);font-weight:700;letter-spacing:.1em;text-transform:uppercase;font-size:10px}
.strip .v{color:var(--paper);font-weight:700}
.strip i{flex:0 0 auto;width:8px;height:8px;border-radius:999px;background:var(--haze)}
.strip i.soon{background:var(--punch);box-shadow:0 0 0 3px rgb(255 62 165 / .28)}
.strip i.early{background:var(--cool);box-shadow:0 0 0 3px rgb(94 224 255 / .24)}
.strip i.live{background:var(--go);box-shadow:0 0 0 3px rgb(92 242 154 / .24)}

/* ── sections ─────────────────────────────────────────────────────────────────────────────────── */
/* Every in-page link — the nav's, the hero's, the cards' — jumps to a section id, and the header is
   fixed, so without this the heading it lands on is underneath the header. */
section[id],div[id]{scroll-margin-top:calc(var(--head) + 18px)}
.chapter{position:relative;padding:62px 0 68px;border-top:2px solid var(--rail)}
@media(min-width:900px){ .chapter{padding:104px 0 112px} }
/* minmax(0,1fr), not 1fr: a grid item's automatic minimum size is its content, so one wide table
   inside a section would otherwise push the whole page wider than the phone rather than scrolling
   inside its own box. */
.chapter>.wrap{display:grid;grid-template-columns:minmax(0,1fr);gap:30px}
.chapter.split>.wrap{gap:32px}
@media(min-width:900px){
  .chapter.split>.wrap{grid-template-columns:minmax(0,1fr) minmax(0,1.08fr);gap:56px;align-items:center}
  .chapter.split.flip .said{order:2}
}
.num{display:inline-flex;align-items:center;gap:9px;font-size:11px;font-weight:700;letter-spacing:.16em;
     text-transform:uppercase;color:var(--volt);margin-bottom:16px}
.num i{display:block;width:26px;height:2px;background:var(--volt)}
.chapter h2{font-size:clamp(31px,8.6vw,50px)}
@media(min-width:900px){ .chapter h2{font-size:clamp(42px,3.9vw,60px)} }
.said p{margin-top:18px;font-size:clamp(16px,4.2vw,19px);line-height:1.45;color:var(--haze);max-width:32em}
.said p b{color:var(--paper);font-weight:700}
.said .cta{margin-top:26px}
.cta{display:flex;align-items:center;gap:14px;flex-wrap:wrap}
.lede{font-size:clamp(18px,4.8vw,24px);font-weight:500;line-height:1.28;letter-spacing:-.01em;max-width:26em}

/* Every stage is a fixed 4:3 box whatever is inside it, so a canvas, a still and a font swap all
   occupy the same height and nothing on the page can move. */
.stage{position:relative;aspect-ratio:4/3;border-radius:24px;border:2px solid var(--rail);
       background:var(--deck);overflow:hidden;box-shadow:6px 6px 0 var(--void)}
.stage canvas,.stage .still{position:absolute;inset:0;width:100%;height:100%}
.stage .still svg{width:100%;height:100%}
.stage .still .pieces{position:absolute;inset:0}

/* ── the generic card grid ────────────────────────────────────────────────────────────────────── */
.grid{display:grid;gap:14px}
@media(min-width:620px){ .grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:16px} }
/* Six short cards in one column is most of a phone screen each. Two narrow ones read the same and
   cost half the scroll. */
@media(min-width:400px){ .grid.tight{grid-template-columns:repeat(2,minmax(0,1fr));gap:10px} }
.grid.tight .card{padding:15px 14px}
.grid.tight h3{font-size:16px;margin-bottom:7px}
.grid.tight p{font-size:13px}
@media(min-width:1000px){ .grid.three{grid-template-columns:repeat(3,minmax(0,1fr))} }
@media(min-width:1000px){ .grid.four{grid-template-columns:repeat(4,minmax(0,1fr))} }
.card{border:2px solid var(--rail);border-radius:20px;background:var(--deck);padding:20px;
      box-shadow:5px 5px 0 var(--void)}
.card h3{font-size:19px;letter-spacing:-.015em;margin-bottom:9px}
.card p{font-size:14px;line-height:1.45;color:var(--haze)}
.card .tag{display:inline-flex;align-items:center;gap:7px;margin-bottom:12px;font-size:10px;font-weight:700;
           letter-spacing:.14em;text-transform:uppercase;color:var(--volt)}
/* The one card in a grid that is an aside rather than an item. It was transparent, which on this
   ground reads as a card that failed to render rather than as a deliberate note, so it now says so:
   a dashed rule, a lighter ground than its neighbours, and a label that names it as a caveat. */
.card.aside{background:rgb(15 10 46 / .42);border-style:dashed;border-color:var(--line);
            box-shadow:none}
.card.aside .tag{color:var(--haze)}
.card.aside h3{color:var(--haze)}

/* ── the two-column compare (traditional vs KURV) ────────────────────────────────────────────── */
.versus{display:grid;gap:14px}
@media(min-width:860px){ .versus{grid-template-columns:1fr 1fr;gap:18px} }
.lane{border:2px solid var(--rail);border-radius:20px;background:var(--deck);padding:20px 18px;
      box-shadow:5px 5px 0 var(--void)}
.lane.kurv{border-color:var(--volt)}
.lane h3{font-size:12px;font-weight:700;letter-spacing:.14em;text-transform:uppercase;font-family:var(--body);
         color:var(--haze);margin-bottom:16px}
.lane.kurv h3{color:var(--volt)}
.lane ol{margin:0;padding:0;list-style:none;display:grid;gap:10px;counter-reset:step}
.lane li{position:relative;display:flex;align-items:flex-start;gap:12px;padding:12px 13px;border-radius:14px;
         background:var(--card);border:2px solid transparent;font-size:14px;line-height:1.35;color:var(--paper)}
.lane.kurv li{border-color:var(--rail)}
.lane li span{flex:0 0 auto;width:22px;height:22px;border-radius:999px;display:grid;place-content:center;
              background:var(--rail);color:var(--paper);font-size:11px;font-weight:700}
.lane.kurv li span{background:var(--volt);color:var(--void)}
.lane .note{margin-top:14px;font-size:12.5px;line-height:1.45;color:var(--haze)}

/* ── the metric read-outs (Market Floor, Vault Backing, Vault Exit, Vault inventory) ─────────── */
.metrics{display:grid;gap:10px;grid-template-columns:repeat(2,minmax(0,1fr))}
@media(min-width:760px){ .metrics.four{grid-template-columns:repeat(4,minmax(0,1fr))} }
.metric{padding:13px 14px;border-radius:14px;border:2px solid var(--rail);background:var(--card)}
.metric .mk{display:block;font-size:10px;font-weight:700;letter-spacing:.11em;text-transform:uppercase;
            color:var(--haze);margin-bottom:6px}
.metric .mv{font-family:var(--display);font-weight:800;font-size:20px;letter-spacing:-.02em;color:var(--paper)}
.metric.hot .mv{color:var(--volt)}
.metric.cool .mv{color:var(--cool)}
.metric .mn{display:block;margin-top:6px;font-size:11px;line-height:1.35;color:var(--haze)}

/* ── collection cards ─────────────────────────────────────────────────────────────────────────── */
.cards{display:grid;gap:16px}
@media(min-width:640px){ .cards{grid-template-columns:repeat(2,minmax(0,1fr))} }
@media(min-width:1040px){ .cards{grid-template-columns:repeat(3,minmax(0,1fr))} }
.coll{display:flex;flex-direction:column;border:2px solid var(--rail);border-radius:22px;background:var(--deck);
      overflow:hidden;box-shadow:6px 6px 0 var(--void)}
/* A full square of art per card is right in a grid and far too tall in a single mobile column, where
   three of them would be most of the page. */
.coll .art{position:relative;aspect-ratio:16/10;background:var(--card)}
@media(min-width:640px){ .coll .art{aspect-ratio:1} }
.coll .art img{width:100%;height:100%;object-fit:cover}
.coll .badge{position:absolute;left:12px;top:12px;padding:5px 10px;border-radius:999px;border:2px solid var(--cool);
             background:rgb(5 3 15 / .82);color:var(--cool);font-size:10px;font-weight:700;letter-spacing:.1em;
             text-transform:uppercase}
.coll .state{position:absolute;right:12px;top:12px;padding:5px 10px;border-radius:999px;border:2px solid var(--punch);
             background:rgb(5 3 15 / .82);color:var(--punch);font-size:10px;font-weight:700;letter-spacing:.1em;
             text-transform:uppercase}
.coll .body{display:flex;flex-direction:column;flex:1;padding:18px}
.coll h3{font-size:21px;letter-spacing:-.02em}
.coll .by{margin-top:6px;font-size:12px;color:var(--haze)}
.coll .by b{color:var(--paper);font-weight:700}
.coll .blurb{margin-top:12px;font-size:13.5px;line-height:1.45;color:var(--haze)}
.coll dl{display:grid;grid-template-columns:1fr 1fr;gap:1px;margin:16px 0 0;padding:0;
         background:var(--rail);border:1px solid var(--rail);border-radius:14px;overflow:hidden}
.coll dl>div{background:var(--card);padding:10px 11px;min-width:0}
.coll dt{font-size:9.5px;font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:var(--haze)}
.coll dd{margin:4px 0 0;font-family:var(--display);font-weight:800;font-size:14px;letter-spacing:-.01em;
         color:var(--paper);overflow-wrap:anywhere}
.coll dd.none{color:var(--haze)}
.coll .foot{margin-top:16px;padding-top:2px}
.coll .foot .btn{width:100%}
.coll .why{margin-top:12px;font-size:11.5px;line-height:1.4;color:#8a81ad}

/* ── fee explainer ────────────────────────────────────────────────────────────────────────────── */
.feebar{display:flex;height:56px;border-radius:14px;overflow:hidden;border:2px solid var(--rail);
        background:var(--card)}
.feebar span{display:grid;place-content:center;font-family:var(--display);font-weight:800;font-size:13px;
             letter-spacing:-.01em;color:var(--void);padding:0 4px;text-align:center;min-width:0}
.feebar .s-creator{background:var(--volt)}
.feebar .s-vault{background:var(--punch)}
.feebar .s-kurv{background:var(--cool)}
.feekey{display:flex;flex-wrap:wrap;gap:8px 18px;margin-top:14px;font-size:12.5px;color:var(--haze)}
.feekey b{display:inline-flex;align-items:center;gap:7px;color:var(--paper);font-weight:700}
.feekey b::before{content:"";width:11px;height:11px;border-radius:3px;background:var(--rail)}
.feekey .k-creator::before{background:var(--volt)}
.feekey .k-vault::before{background:var(--punch)}
.feekey .k-kurv::before{background:var(--cool)}
.worked{margin-top:20px;border:2px solid var(--rail);border-radius:18px;background:var(--deck);
        overflow:hidden;overflow-x:auto;-webkit-overflow-scrolling:touch}
.worked table{width:100%;border-collapse:collapse;font-size:13.5px}
.worked caption{padding:14px 16px 0;text-align:left;font-size:11px;font-weight:700;letter-spacing:.12em;
                text-transform:uppercase;color:var(--haze)}
.worked th,.worked td{padding:11px 16px;text-align:left;border-top:1px solid var(--rail)}
.worked tr:first-child th,.worked tr:first-child td{border-top:0}
.worked th{font-weight:500;color:var(--haze)}
/* The value column reads as one figure, so it does not wrap — the table scrolls inside its own box
   instead, which is the one place on this site where sideways movement is correct. */
.worked td{font-family:var(--display);font-weight:800;letter-spacing:-.01em;text-align:right;white-space:nowrap}
.worked th{white-space:normal;min-width:7.5em}
/* On a phone the two columns squeeze the labels into three-line stacks — "Additional / marketplace /
   fee" beside a figure with room to spare. Below 560px each row becomes a block instead: the label on
   its own line, the figure under it, nothing wrapped that does not need to be. */
@media(max-width:559px){
  .worked table,.worked tbody,.worked tr,.worked th,.worked td{display:block;width:100%}
  .worked tr{border-top:1px solid var(--rail);padding:11px 16px}
  .worked tr:first-child{border-top:0}
  .worked th,.worked td{padding:0;border:0;text-align:left;min-width:0}
  .worked th{font-size:12.5px}
  .worked td{margin-top:4px;font-size:17px;white-space:normal}
  /* A caption whose table is no longer display:table has no width of its own and collapses to one
     word per line, so it is given one back. */
  .worked caption{display:block;width:100%;padding:14px 16px 6px}
}

/* ── allocation chart ─────────────────────────────────────────────────────────────────────────── */
.alloc{display:flex;height:64px;border-radius:14px;overflow:hidden;border:2px solid var(--rail);
       background:var(--card)}
.alloc span{display:grid;place-content:center;font-family:var(--display);font-weight:800;font-size:14px;
            color:var(--void);min-width:0;padding:0 4px}
.alloc .a-pool{background:var(--volt)}
.alloc .a-project{background:var(--punch)}
.allocrows{display:grid;gap:10px;margin-top:16px}
.allocrow{display:flex;align-items:baseline;gap:12px;font-size:13.5px;line-height:1.4}
.allocrow b{font-family:var(--display);font-weight:800;font-size:15px;min-width:3.4em}
.allocrow .t{color:var(--paper);font-weight:700}
.allocrow .n{color:var(--haze)}
/* The placeholder chart. Every bar is the same width and the same grey because no split has been
   approved; the day one is, a percent lands in data/site.json and the bar takes its real width. */
.sub{margin-top:22px;padding:18px;border:2px dashed var(--rail);border-radius:18px;background:var(--deck)}
.sub h3{font-size:12px;font-family:var(--body);font-weight:700;letter-spacing:.12em;text-transform:uppercase;
        color:var(--punch);margin-bottom:14px}
.subrows{display:grid;gap:9px}
.subrow{display:grid;grid-template-columns:minmax(6.5em,auto) 1fr auto;align-items:center;gap:12px;font-size:13px}
.subrow .t{color:var(--paper)}
.subrow .track{height:12px;border-radius:999px;background:var(--card);border:1px solid var(--rail);overflow:hidden}
.subrow .fill{height:100%;background:repeating-linear-gradient(135deg,var(--rail) 0 7px,transparent 7px 14px);
              width:100%}
.subrow .fill.set{background:var(--punch)}
.subrow .v{color:var(--haze);font-family:var(--display);font-weight:800;font-size:13px}

/* ── token field table ────────────────────────────────────────────────────────────────────────── */
.fields{display:grid;gap:1px;background:var(--rail);border:2px solid var(--rail);border-radius:18px;
        overflow:hidden}
@media(min-width:700px){ .fields{grid-template-columns:1fr 1fr} }
.fields>div{background:var(--deck);padding:15px 17px;min-width:0}
.fields dt{font-size:10px;font-weight:700;letter-spacing:.11em;text-transform:uppercase;color:var(--haze)}
.fields dd{margin:6px 0 0;font-family:var(--display);font-weight:800;font-size:16px;letter-spacing:-.01em;
           overflow-wrap:anywhere}
.fields dd.none{font-family:var(--body);font-weight:500;font-size:14px;color:var(--haze)}
.fields .why{display:block;margin-top:5px;font-family:var(--body);font-weight:400;font-size:11.5px;
             line-height:1.4;color:#8a81ad;letter-spacing:0}
.state-pill{display:inline-flex;align-items:center;gap:9px;padding:0 14px;height:36px;border-radius:999px;
            border:2px solid var(--punch);color:var(--punch);font-size:11px;font-weight:700;
            letter-spacing:.12em;text-transform:uppercase;white-space:nowrap}
.state-pill i{width:7px;height:7px;border-radius:999px;background:var(--punch);
              box-shadow:0 0 0 3px rgb(255 62 165 / .35)}
.states{display:grid;gap:9px;margin-top:18px}
/* A state name is one long unbroken token — CONFIRMING_DEPLOYMENT has nowhere to break — so on a
   narrow screen the row stacks rather than forcing the page wider than the phone. */
.states li{display:grid;gap:8px;padding:12px 14px;border-radius:14px;
           border:2px solid var(--rail);background:var(--card);font-size:13px;line-height:1.4;color:var(--haze)}
@media(min-width:620px){ .states li{grid-template-columns:minmax(0,13em) minmax(0,1fr);gap:14px;align-items:start} }
.states li b{display:block;color:var(--haze);font-family:var(--display);font-size:12px;letter-spacing:.04em;
             overflow-wrap:anywhere}
.states li[data-now="yes"]{border-color:var(--punch)}
.states li[data-now="yes"] b{color:var(--punch)}
.states ul{margin:0;padding:0;list-style:none}

/* ── the waitlist pair ────────────────────────────────────────────────────────────────────────── */
.pair{display:grid;gap:18px;align-items:start}
/* stretch, not start: the form and the list are a pair, and a list twice the height of the form left
   a hole under it the size of the form itself. */
@media(min-width:960px){
  .pair{grid-template-columns:minmax(0,1fr) minmax(0,.86fr);gap:24px;align-items:stretch}
  .recent{display:flex;flex-direction:column}
  .recent ul{flex:1}
}
.join{border:2px solid var(--rail);border-radius:24px;background:var(--deck);padding:22px;
      box-shadow:6px 6px 0 var(--void)}
@media(min-width:600px){ .join{padding:28px} }
.via{margin-bottom:16px;padding:12px 14px;border-radius:14px;border:2px solid var(--punch);
     background:rgb(255 62 165 / .1);font-size:14px;line-height:1.4}
.lbl{display:block;font-size:11px;font-weight:700;letter-spacing:.12em;text-transform:uppercase;
     color:var(--haze);margin-bottom:9px}
.lbl.two{margin-top:20px}
.field{width:100%;min-height:52px;padding:0 15px;border-radius:14px;border:2px solid var(--rail);
       background:var(--card);color:var(--paper);font-family:var(--body);font-size:16px}
/* 5.2:1 on the input's own ground. The old value looked right and was 3.9. */
.field::placeholder{color:#938ab8}
.field:focus-visible{outline:3px solid var(--volt);outline-offset:2px;border-color:var(--line)}
.field[aria-invalid="true"]{border-color:var(--warn)}
.picks{display:grid;gap:10px}
@media(min-width:520px){ .picks{grid-template-columns:1fr 1fr} }
.pick{display:flex;align-items:flex-start;gap:11px;min-height:64px;padding:13px;border-radius:14px;
      border:2px solid var(--rail);background:var(--card);cursor:pointer}
.pick:has(input:checked){border-color:var(--volt)}
/* The box stays a real checkbox rather than a hidden input behind a span, so focus, the space bar and
   every assistive technology keep working without a line of script. */
.pick input{appearance:none;-webkit-appearance:none;margin:0;flex:0 0 auto;width:22px;height:22px;
            border:2px solid var(--line);border-radius:7px;background:var(--deck);display:grid;
            place-content:center;cursor:pointer}
.pick input:checked{background:var(--volt);border-color:var(--volt)}
.pick input:checked::after{content:"";width:10px;height:5px;margin-top:-3px;border:2px solid var(--void);
                           border-top:0;border-right:0;transform:rotate(-45deg)}
.pick input:focus-visible{outline:3px solid var(--volt);outline-offset:2px}
.pick .t{font-size:13px;line-height:1.35;color:var(--haze)}
.pick .t b{display:block;color:var(--paper);font-size:14px;margin-bottom:2px}
/* Bait for anything filling the form by reading the markup. Off the tab order and out of the
   accessibility tree; a person never meets it. */
.hp{position:absolute;left:-9999px;width:1px;height:1px;overflow:hidden}
.go{width:100%;margin-top:22px}
.msg{min-height:20px;margin-top:12px;font-size:13px;line-height:1.4;color:var(--warn)}
.msg.ok{color:var(--go)}
.fine{margin-top:10px;font-size:12px;line-height:1.45;color:#8a81ad}
.done h3{margin:0 0 10px;font-size:24px}
.done>p{color:var(--haze);font-size:14px;line-height:1.45}
.stats{display:grid;grid-template-columns:1fr 1fr;gap:10px;margin:20px 0 16px}
.stat{padding:13px;border-radius:14px;border:2px solid var(--rail);background:var(--card)}
.stat .sk{display:block;font-size:10px;font-weight:700;letter-spacing:.12em;text-transform:uppercase;
          color:var(--haze);margin-bottom:5px}
.stat .sv{font-family:var(--display);font-weight:800;font-size:22px;letter-spacing:-.02em}
.stat.top .sv{color:var(--volt)}
.prize{font-size:13px;line-height:1.45;color:var(--haze)}
.prize b{color:var(--paper)}
.linkrow{display:flex;gap:9px}
.linkrow .field{min-width:0}
.share{width:100%;margin-top:14px}

/* The second box: who has joined, with nobody identified. */
.recent{border:2px solid var(--rail);border-radius:24px;background:var(--deck);padding:20px;
        box-shadow:6px 6px 0 var(--void)}
@media(min-width:600px){ .recent{padding:24px} }
.recent .rhead{display:flex;align-items:baseline;justify-content:space-between;gap:12px;flex-wrap:wrap}
.recent h3{font-size:17px;letter-spacing:-.015em}
.recent .count{font-family:var(--display);font-weight:800;font-size:15px;color:var(--volt);white-space:nowrap}
.recent .rnote{margin-top:8px;font-size:12px;line-height:1.45;color:#8a81ad}
.recent ul{margin:16px 0 0;padding:0;list-style:none;display:grid;gap:8px}
.recent li{display:flex;align-items:center;gap:12px;padding:9px 11px;border-radius:14px;background:var(--card);
           border:2px solid transparent}
.recent li img{flex:0 0 auto;width:38px;height:38px;border-radius:11px;background:var(--deck);
               border:2px solid var(--rail)}
.recent .who{min-width:0;flex:1}
.recent .handle{display:block;font-family:var(--display);font-weight:800;font-size:13.5px;letter-spacing:-.01em;
                white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.recent .side{display:block;margin-top:3px;font-size:11px;color:var(--haze)}
.recent .when{flex:0 0 auto;font-size:11px;color:var(--haze);white-space:nowrap}
.recent .empty{margin-top:16px;font-size:13px;line-height:1.5;color:var(--haze)}
/* The skeleton rows a reader sees for the half-second before the list lands, and for good if the
   request fails. They carry no numbers, so nothing here can be mistaken for data. */
.recent li.ghost{background:var(--card)}
.recent li.ghost img,.recent li.ghost .bar{background:var(--rail);border-color:var(--rail)}
.recent li.ghost .bar{height:11px;border-radius:999px;width:58%}
.recent li.ghost .bar+.bar{margin-top:7px;width:34%;height:9px}

/* ── the four-step how-it-works ───────────────────────────────────────────────────────────────── */
.steps{display:grid;gap:12px;counter-reset:s}
@media(min-width:720px){ .steps{grid-template-columns:repeat(2,minmax(0,1fr))} }
@media(min-width:1060px){ .steps{grid-template-columns:repeat(4,minmax(0,1fr))} }
.step{position:relative;padding:20px 18px;border:2px solid var(--rail);border-radius:20px;background:var(--deck);
      box-shadow:5px 5px 0 var(--void)}
.step .n{display:block;font-family:var(--display);font-weight:800;font-size:13px;color:var(--volt);
         letter-spacing:.06em;margin-bottom:11px}
.step h3{font-size:18px;margin-bottom:8px}
.step p{font-size:13.5px;line-height:1.45;color:var(--haze)}

/* ── final CTA pair ───────────────────────────────────────────────────────────────────────────── */
.paths{display:grid;gap:16px}
@media(min-width:800px){ .paths{grid-template-columns:1fr 1fr;gap:20px} }
.path{padding:26px 22px;border:2px solid var(--rail);border-radius:22px;background:var(--deck);
      box-shadow:6px 6px 0 var(--void);display:flex;flex-direction:column}
.path .tag{font-size:10px;font-weight:700;letter-spacing:.14em;text-transform:uppercase;color:var(--volt);
           margin-bottom:12px}
.path h3{font-size:clamp(23px,5.6vw,30px);letter-spacing:-.025em}
.path p{margin-top:12px;font-size:14.5px;line-height:1.45;color:var(--haze);flex:1}
.path .btn{margin-top:22px;align-self:flex-start}
.tertiary{margin-top:22px;font-size:13px;color:var(--haze)}

/* ── footer, disclaimer ───────────────────────────────────────────────────────────────────────── */
footer{padding:44px 0 56px;border-top:2px solid var(--rail);margin-top:64px}
.fbar{display:flex;align-items:center;flex-wrap:wrap;gap:14px 20px;font-size:12px;color:var(--haze)}
.fbar img{width:88px;height:25px;opacity:.86}
.fbar a{min-height:44px;display:inline-flex;align-items:center;color:var(--haze);text-decoration:none}
.fbar a:hover{color:var(--paper)}
.fspace{margin-left:auto}
/* Discord is not open yet, so this is a label with nothing to tap rather than a link that goes nowhere. It
   keeps the links' 44 px height only so the row keeps one height. */
.dsoon{display:inline-flex;align-items:center;gap:8px;min-height:44px}
.dsoon em{font-style:normal;font-size:10px;font-weight:700;letter-spacing:.12em;text-transform:uppercase;
          color:var(--punch);border:2px solid var(--punch);border-radius:999px;padding:2px 8px;white-space:nowrap}

/* The disclaimer sits just above the footer, in a box of its own so it cannot be read as the copy. */
.disclaimer{margin-top:26px;padding:20px;border:2px solid var(--rail);border-radius:18px;background:var(--deck)}
@media(min-width:600px){ .disclaimer{padding:26px 30px} }
@media(min-width:1240px){ .disclaimer{padding:32px 38px} }
.disclaimer h2{font-size:16px;letter-spacing:.01em;margin-bottom:12px}
.disclaimer p{max-width:72ch;font-size:13px;line-height:1.55;color:var(--haze)}
.disclaimer p+p{margin-top:8px}
.disclaimer b{color:var(--paper)}
/* 44 px to a finger, and not a pixel taller to the eye: the padding is the target, the margin gives it back. */
.disclaimer a{display:inline-block;padding:12px 0;margin:-12px 0;font-weight:700;text-underline-offset:3px}

/* ── inner-page heads (/token, /apply) ────────────────────────────────────────────────────────── */
.phead{padding:52px 0 8px}
@media(min-width:900px){ .phead{padding:72px 0 12px} }
.phead h1{font-size:clamp(38px,10vw,62px);letter-spacing:-.035em}
@media(min-width:900px){ .phead h1{font-size:clamp(54px,5.4vw,82px)} }
.phead .lede{margin-top:20px;color:var(--haze)}
.phead .kicker{display:inline-flex;align-items:center;gap:10px;margin-bottom:18px;font-size:11px;font-weight:700;
               letter-spacing:.16em;text-transform:uppercase;color:var(--volt)}
.back{display:inline-flex;align-items:center;gap:8px;min-height:44px;margin-top:8px;color:var(--haze);
      font-size:13px;font-weight:700;text-decoration:none}
.back:hover{color:var(--paper)}

@media(prefers-reduced-motion:reduce){
  *,*::before,*::after{animation-duration:.001ms!important;animation-iteration-count:1!important;
                       transition-duration:.001ms!important}
  .btn.p:hover{transform:none}
}

/* ── the creator section's layer panel ────────────────────────────────────────────────────────── */
/* Three surfaces a collection can be minted from, two of them honestly marked as being built. */
.surfaces{display:grid;gap:9px;margin-top:22px}
@media(min-width:620px){ .surfaces{grid-template-columns:repeat(3,minmax(0,1fr))} }
.surfaces span{display:block;padding:12px 13px;border-radius:14px;border:2px solid var(--rail);
               background:var(--card);font-size:12px;line-height:1.35;color:var(--haze)}
.surfaces b{display:block;margin-bottom:4px;color:var(--paper);font-size:13px}

.layerpanel{display:grid;gap:12px}
/* The composed piece, for anyone who asked for no motion: the same plates the canvas paints, stacked
   in the same order, built from the manifest rather than from file names written into the page. */
.layerstill{position:absolute;inset:0;display:grid;place-items:center;background:var(--deck)}
.layerstill .plate{position:absolute;width:64%;aspect-ratio:1;border-radius:14px;overflow:hidden}
.layerstill .plate img{position:absolute;inset:0;width:100%;height:100%}
.layerstill .placeholder{max-width:20ch;text-align:center;font-size:13px;line-height:1.5;color:var(--haze)}
.traitrow{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:6px;margin:0;padding:0;
          list-style:none}
@media(min-width:520px){ .traitrow{grid-template-columns:repeat(4,minmax(0,1fr))} }
@media(min-width:1000px){ .traitrow{grid-template-columns:repeat(4,minmax(0,1fr))} }
.traitrow li{padding:8px 10px;border-radius:11px;border:2px solid var(--rail);background:var(--deck);
             min-width:0}
.traitrow .lk{display:block;font-size:9px;font-weight:700;letter-spacing:.11em;text-transform:uppercase;
              color:var(--haze)}
.traitrow .lv{display:block;margin-top:3px;font-family:var(--display);font-weight:800;font-size:12px;
              letter-spacing:-.01em;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.traitrow li.on{border-color:var(--volt)}
.traitrow li.on .lv{color:var(--volt)}

/* ── tap targets ──────────────────────────────────────────────────────────────────────────────── */
/* A link inside a paragraph is a 16px-tall target unless it is given one. The padding is the target;
   the negative margin gives the space back, so the line height of the paragraph does not change. */
.inline{display:inline-block;padding:14px 6px;margin:-14px -6px;font-weight:700;text-underline-offset:3px}
.fbar a{min-width:44px;justify-content:center}
.tlink{padding:0 4px}

/* ── the reel ─────────────────────────────────────────────────────────────────────────────────── */
/* A full-bleed band of collection art above the form, drifting on its own clock. Decoration, and
   marked as such in the markup: it carries no text and nothing depends on reading it. */
.reel{position:relative;overflow:hidden;height:148px;border-top:2px solid var(--rail);
      border-bottom:2px solid var(--rail);background:var(--deck)}
@media(min-width:900px){ .reel{height:196px} }
.reel canvas{position:absolute;inset:0;width:100%;height:100%}
.reel .still{position:absolute;inset:0}
.reelstill{display:flex;align-items:center;gap:16px;height:100%;padding:0 var(--gut)}
.reelstill img{flex:0 0 auto;width:96px;height:96px;border-radius:12px;border:3px solid var(--rail);
               box-shadow:5px 5px 0 var(--void)}
@media(min-width:900px){ .reelstill img{width:132px;height:132px} }
.reelstill img:nth-child(3n+1){border-color:var(--volt)}
/* The band reads as continuous rather than cut off, and the fade is the page's own ground so it
   works at any width without knowing how many tiles fit. */
.reel::before,.reel::after{content:"";position:absolute;top:0;bottom:0;width:72px;z-index:2;
                           pointer-events:none}
@media(min-width:900px){ .reel::before,.reel::after{width:120px} }
/* The fade is the band's own ground, not the page's, so a tile dissolves into the band rather than
   into a different colour — and it holds opaque for its first third so the cut edge never shows. */
.reel::before{left:0;background:linear-gradient(90deg,var(--deck) 0 32%,rgb(15 10 46 / 0))}
.reel::after{right:0;background:linear-gradient(270deg,var(--deck) 0 32%,rgb(15 10 46 / 0))}
