/* The Working Dog Draw
   ---------------------------------------------------------------------------
   Direction: dusk field + paperwork. The dark spine is the outdoors — warm
   near-black, brass hardware, field olive. The bone panels inserted into it are
   the bookkeeping: the tally board, the rules, the odds. The product's whole
   claim is that it is honest about numbers, so the numeric surfaces are set in
   mono and treated as records rather than marketing.

   Type: Big Shoulders Display (condensed industrial) for display, Archivo for
   body, JetBrains Mono for anything countable.
   -------------------------------------------------------------------------- */

:root {
  --ink:        #131110;
  --ink-2:      #1C1815;
  --ink-3:      #272119;
  --line-dark:  #342C22;

  --brass:      #C9A24B;
  --brass-hi:   #E3C078;
  --brass-dim:  #8A6E33;

  --bone:       #F1EBE0;
  --bone-2:     #E3D9C8;
  --bone-3:     #D2C5AE;

  --field:      #4C6B2F;
  --field-hi:   #6B8F44;
  --clay:       #B4522E;

  --on-dark:    #EDE6DA;
  --on-dark-mut:#9E9384;
  --on-light:   #221F1B;
  --on-light-mut:#6C6355;

  --display: 'Big Shoulders Display', 'Haettenschweiler', 'Arial Narrow', sans-serif;
  --body:    'Archivo', system-ui, -apple-system, sans-serif;
  --mono:    'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;

  --wrap: 1180px;
  --pad: clamp(1rem, 4vw, 2.5rem);
  --r: 3px;
}

*, *::before, *::after { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--ink);
  color: var(--on-dark);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding-inline: var(--pad); }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--brass); color: var(--ink); padding: .7rem 1.2rem; font-weight: 700;
}
.skip:focus { left: 0; }

:focus-visible { outline: 3px solid var(--brass-hi); outline-offset: 2px; }

/* ---------------------------------------------------------------- type ---- */

h1, h2, h3, .display {
  font-family: var(--display);
  font-weight: 800;
  line-height: .92;
  letter-spacing: .005em;
  text-transform: uppercase;
  margin: 0;
}

.eyebrow {
  font-family: var(--mono);
  font-size: .69rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--brass);
  margin: 0 0 .9rem;
  font-weight: 700;
}

.lede { font-size: 1.08rem; color: var(--on-dark-mut); max-width: 46ch; }

/* ------------------------------------------------------------ masthead ---- */

.masthead {
  position: sticky; top: 0; z-index: 50;
  background: rgba(19,17,16,.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-dark);
}
.masthead-in {
  max-width: var(--wrap); margin: 0 auto; padding: .55rem var(--pad);
  display: flex; align-items: center; gap: 1.4rem;
}

.mark { width: 34px; height: 38px; color: var(--brass); flex: none; }

.brand { display: flex; align-items: center; gap: .6rem; text-decoration: none; flex: none; }
.brand-txt { display: grid; line-height: 1; font-family: var(--display); text-transform: uppercase; }
.brand-txt b { font-size: .93rem; font-weight: 800; letter-spacing: .04em; }
.brand-txt i {
  font-style: normal; font-size: .72rem; font-weight: 700;
  letter-spacing: .42em; color: var(--brass);
}

.nav { display: flex; flex-wrap: wrap; gap: .1rem; margin-left: auto; }
.nav a {
  font-family: var(--display); font-weight: 700; text-transform: uppercase;
  font-size: .84rem; letter-spacing: .07em;
  color: var(--on-dark-mut); text-decoration: none;
  padding: .45rem .5rem; border-bottom: 2px solid transparent;
}
.nav a:hover { color: var(--on-dark); }
.nav a[aria-current="page"] { color: var(--brass); border-bottom-color: var(--brass); }

.masthead-end { display: flex; align-items: center; gap: .5rem; flex: none; }

.entries-pill {
  display: inline-flex; align-items: center; gap: .4rem;
  border: 1px solid var(--brass-dim); border-radius: 100px;
  padding: .34rem .8rem; text-decoration: none;
  font-family: var(--mono); font-size: .72rem; letter-spacing: .04em;
  color: var(--brass); white-space: nowrap;
}
.entries-pill:hover { background: var(--brass); color: var(--ink); }
.entries-pill-n { font-weight: 700; }

.nav-toggle {
  display: none; width: 40px; height: 34px; background: none;
  border: 1px solid var(--line-dark); border-radius: var(--r);
  cursor: pointer; padding: 8px 9px;
}
.nav-toggle span { display: block; height: 2px; background: var(--on-dark); margin: 3px 0; }

/* -------------------------------------------------------------- buttons ---- */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--display); font-weight: 800; text-transform: uppercase;
  font-size: 1.02rem; letter-spacing: .06em;
  padding: .82rem 1.6rem; border: 2px solid transparent; border-radius: var(--r);
  text-decoration: none; cursor: pointer; transition: transform .12s ease, background .15s ease;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--brass); color: var(--ink); }
.btn-primary:hover { background: var(--brass-hi); }
.btn-field { background: var(--field); color: #fff; }
.btn-field:hover { background: var(--field-hi); }
.btn-ghost { border-color: var(--line-dark); color: var(--on-dark); background: transparent; }
.btn-ghost:hover { border-color: var(--brass); color: var(--brass); }
.btn-dark { background: var(--ink); color: var(--on-dark); }
.btn-dark:hover { background: var(--ink-3); }
.btn-block { width: 100%; }
.btn[disabled], .btn.is-disabled { opacity: .45; pointer-events: none; }

/* ----------------------------------------------------------------- hero ---- */

.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(120% 90% at 78% 18%, rgba(201,162,75,.18), transparent 58%),
    linear-gradient(180deg, #1A1512 0%, #131110 78%);
  border-bottom: 1px solid var(--line-dark);
}
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle at 1px 1px, rgba(237,230,218,.05) 1px, transparent 0);
  background-size: 4px 4px;
}
.hero-in {
  position: relative; z-index: 1;
  max-width: var(--wrap); margin: 0 auto; padding: clamp(3rem, 8vw, 5.5rem) var(--pad) clamp(2.5rem, 6vw, 4rem);
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4rem); align-items: center;
}
.hero h1 { font-size: clamp(3.2rem, 8.5vw, 6.4rem); font-weight: 900; letter-spacing: -.005em; }
.hero h1 .hl { color: var(--brass); }
.hero .lede { margin: 1.5rem 0 2rem; font-size: 1.12rem; }
.hero-cta { display: flex; flex-wrap: wrap; gap: .8rem; }

.prize-card {
  background: var(--ink-2); border: 1px solid var(--line-dark);
  border-radius: var(--r); overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,.5);
}
.prize-card-hd {
  background: var(--brass); color: var(--ink);
  font-family: var(--mono); font-size: .68rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase; text-align: center; padding: .5rem;
}
.prize-card-bd { padding: 1.6rem 1.5rem 1.8rem; text-align: center; }
.prize-card-bd .kicker {
  font-family: var(--display); text-transform: uppercase; font-weight: 700;
  font-size: 1rem; letter-spacing: .08em; color: var(--on-dark-mut);
}
.prize-card-bd h2 { font-size: clamp(1.9rem, 3.4vw, 2.6rem); margin: .3rem 0 .1rem; color: var(--brass); }
.prize-card-bd .sub { font-family: var(--display); font-size: 1.15rem; letter-spacing: .05em; color: var(--on-dark); }
.prize-card img { margin: 1.2rem auto 0; max-height: 190px; width: auto; }
.prize-card .retail {
  font-family: var(--mono); font-size: .74rem; color: var(--on-dark-mut);
  margin-top: 1rem; letter-spacing: .05em;
}

/* --------------------------------------------------------------- facts ---- */

.facts {
  background: var(--ink-2); border-bottom: 1px solid var(--line-dark);
}
.facts-in {
  max-width: var(--wrap); margin: 0 auto; padding: 1.1rem var(--pad);
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
}
.fact { display: flex; align-items: center; gap: .75rem; }
.fact svg { width: 26px; height: 26px; color: var(--brass); flex: none; }
.fact b {
  display: block; font-family: var(--display); text-transform: uppercase;
  font-size: 1rem; letter-spacing: .05em; line-height: 1.05;
}
.fact span { font-size: .78rem; color: var(--on-dark-mut); }

/* ------------------------------------------------------- SIGNATURE: board -- */
/* The one-hundred-slot tally sheet. This is the product: fixed slots, visible
   odds, a hard stop. It is set on bone because it is a record, not a banner. */

.board-sec { background: var(--bone); color: var(--on-light); padding: clamp(3rem, 7vw, 5rem) 0; }
.board-sec .eyebrow { color: var(--field); }

.board-hd {
  display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between;
  gap: 1.5rem; margin-bottom: 2rem;
}
.board-hd h2 { font-size: clamp(2.2rem, 5vw, 3.4rem); color: var(--on-light); }
.board-hd p { margin: .7rem 0 0; color: var(--on-light-mut); max-width: 44ch; }

.board-tally { text-align: right; font-family: var(--mono); flex: none; }
.board-tally-n { font-size: clamp(2.6rem, 6vw, 3.6rem); font-weight: 700; line-height: 1; color: var(--on-light); }
.board-tally-n s { text-decoration: none; color: var(--bone-3); }
.board-tally-l { font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--on-light-mut); }

.board {
  display: grid;
  grid-template-columns: repeat(20, 1fr);
  gap: 5px;
  padding: 1.4rem;
  background: #FAF6EE;
  border: 1px solid var(--bone-3);
  border-radius: var(--r);
  box-shadow: inset 0 1px 0 #fff, 0 1px 2px rgba(34,31,27,.06);
}

.slot {
  position: relative;
  aspect-ratio: 1;
  display: grid; place-items: center;
  font-family: var(--mono); font-size: .58rem; font-weight: 700;
  border: 1px solid var(--bone-3);
  border-radius: 2px;
  color: var(--bone-3);
  background: #fff;
}
.slot.is-taken {
  background: var(--ink); border-color: var(--ink); color: var(--brass);
}
.slot.is-amoe { background: var(--field); border-color: var(--field); color: #fff; }
.slot.is-yours {
  background: var(--brass); border-color: var(--brass); color: var(--ink);
  box-shadow: 0 0 0 3px rgba(201,162,75,.35);
}
.slot.is-open:hover { border-color: var(--field); color: var(--field); }

@media (prefers-reduced-motion: no-preference) {
  .board.is-live .slot.is-taken { animation: stamp .32s cubic-bezier(.2,1.3,.4,1) backwards; }
  @keyframes stamp {
    from { transform: scale(1.5); opacity: 0; }
    to   { transform: scale(1);   opacity: 1; }
  }
}

.board-meter { margin-top: 1.5rem; }
.board-meter-track {
  position: relative; height: 12px; background: var(--bone-2);
  border: 1px solid var(--bone-3); border-radius: 100px; overflow: visible;
}
.board-meter-fill {
  height: 100%; background: var(--field); border-radius: 100px;
  border-right: 2px solid var(--bone);
}
.board-meter-min {
  position: absolute; top: -7px; bottom: -7px; width: 2px; background: var(--on-light);
}
.board-meter-min::after {
  content: attr(data-label);
  position: absolute; left: 50%; top: calc(100% + 6px); transform: translateX(-50%);
  font-family: var(--mono); font-size: .64rem; letter-spacing: .1em;
  text-transform: uppercase; color: var(--on-light); white-space: nowrap;
}
.board-meter-ends {
  display: flex; justify-content: space-between; margin-top: .5rem;
  font-family: var(--mono); font-size: .68rem; letter-spacing: .08em;
  text-transform: uppercase; color: var(--on-light-mut);
}

.board-legend {
  display: flex; flex-wrap: wrap; gap: 1.2rem; margin-top: 2.2rem;
  font-family: var(--mono); font-size: .7rem; letter-spacing: .06em;
  text-transform: uppercase; color: var(--on-light-mut);
}
.board-legend span { display: inline-flex; align-items: center; gap: .45rem; }
.board-legend i { width: 12px; height: 12px; border-radius: 2px; border: 1px solid var(--bone-3); background: #fff; }
.board-legend i.k-taken { background: var(--ink); border-color: var(--ink); }
.board-legend i.k-amoe  { background: var(--field); border-color: var(--field); }

.board-foot {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 1.5rem; margin-top: 2.4rem; padding-top: 2rem; border-top: 1px solid var(--bone-3);
}
.odds { font-family: var(--mono); }
.odds b { font-size: 1.6rem; color: var(--on-light); display: block; line-height: 1.1; }
.odds span { font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; color: var(--on-light-mut); }

/* -------------------------------------------------------------- panels ---- */

.sec { padding: clamp(3rem, 7vw, 5rem) 0; }
.sec-light { background: var(--bone); color: var(--on-light); }
.sec-light h2, .sec-light h3 { color: var(--on-light); }
.sec-light .eyebrow { color: var(--field); }
.sec-light p { color: var(--on-light-mut); }

.sec-hd { margin-bottom: 2.4rem; }
.sec-hd h2 { font-size: clamp(2rem, 4.6vw, 3rem); }
.sec-hd p { margin: .8rem 0 0; max-width: 52ch; }

.two-up { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 4vw, 3rem); }

.card {
  background: var(--ink-2); border: 1px solid var(--line-dark);
  border-radius: var(--r); padding: 1.6rem;
}
.sec-light .card { background: #FAF6EE; border-color: var(--bone-3); }

/* vote */
.vote-list { display: grid; gap: .5rem; }
.vote-row {
  display: grid; grid-template-columns: 44px 1fr auto; align-items: center; gap: .9rem;
  padding: .7rem .8rem; border: 1px solid var(--line-dark); border-radius: var(--r);
  background: var(--ink); cursor: pointer;
}
.sec-light .vote-row { background: #fff; border-color: var(--bone-3); }
.vote-row:hover { border-color: var(--brass); }
.vote-row img { width: 44px; height: 44px; object-fit: contain; }
.vote-row b { font-family: var(--display); font-size: 1.05rem; letter-spacing: .04em; text-transform: uppercase; display: block; line-height: 1.1; }
.vote-row span { font-size: .78rem; color: var(--on-light-mut); }
.vote-row input { accent-color: var(--brass); width: 18px; height: 18px; }

.results { display: grid; gap: .8rem; }
.result-row { display: grid; grid-template-columns: 1fr; gap: .3rem; }
.result-top { display: flex; justify-content: space-between; font-family: var(--mono); font-size: .78rem; }
.result-track { height: 10px; background: var(--bone-2); border-radius: 100px; overflow: hidden; }
.sec:not(.sec-light) .result-track { background: var(--ink-3); }
.result-fill { height: 100%; background: var(--field); border-radius: 100px; }
.result-fill.is-lead { background: var(--brass); }

/* steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; counter-reset: step; }
.step { border-top: 2px solid var(--brass); padding-top: 1rem; }
.step-n {
  font-family: var(--mono); font-size: .7rem; letter-spacing: .16em;
  color: var(--brass); font-weight: 700;
}
.step h3 { font-size: 1.25rem; margin: .5rem 0 .4rem; }
.step p { font-size: .9rem; margin: 0; }

/* winners */
.winners { display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: 1rem; }
.winner {
  background: var(--ink-2); border: 1px solid var(--line-dark);
  border-radius: var(--r); overflow: hidden; text-decoration: none; display: block;
  transition: border-color .15s ease;
}
.winner:hover { border-color: var(--brass); }
.winner-img { background: var(--ink-3); padding: 1.2rem; }
.winner-img img { height: 110px; width: auto; margin: 0 auto; }
.winner-bd { padding: 1rem 1.1rem 1.2rem; }
.winner-date { font-family: var(--mono); font-size: .66rem; letter-spacing: .12em; color: var(--on-dark-mut); text-transform: uppercase; }
.winner-who { font-family: var(--display); font-size: 1.3rem; text-transform: uppercase; letter-spacing: .04em; margin: .3rem 0 .1rem; }
.winner-where { font-size: .78rem; color: var(--on-dark-mut); }
.winner-prize { font-size: .86rem; margin: .6rem 0 0; color: var(--on-dark); }
.winner-meta { font-family: var(--mono); font-size: .66rem; color: var(--on-dark-mut); margin-top: .7rem; letter-spacing: .06em; }

/* prizes */
.prize-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.2rem; }
.prize-tile { background: var(--ink-2); border: 1px solid var(--line-dark); border-radius: var(--r); overflow: hidden; }
.sec-light .prize-tile { background: #FAF6EE; border-color: var(--bone-3); }
.prize-tile-img { padding: 1.6rem; background: var(--ink-3); }
.sec-light .prize-tile-img { background: #fff; }
.prize-tile-img img { height: 130px; width: auto; margin: 0 auto; }
.prize-tile-bd { padding: 1.2rem 1.3rem 1.4rem; }
.prize-tile h3 { font-size: 1.2rem; line-height: 1.05; }
.prize-tile .cat {
  font-family: var(--mono); font-size: .64rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--brass); margin-bottom: .5rem;
}
.prize-tile p { font-size: .88rem; margin: .6rem 0 0; }

/* tiers */
.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.tier {
  position: relative; display: block; cursor: pointer;
  background: var(--ink-2); border: 2px solid var(--line-dark);
  border-radius: var(--r); padding: 1.4rem 1.2rem; text-align: center;
}
.tier:hover { border-color: var(--brass-dim); }
.tier input { position: absolute; opacity: 0; }
.tier:has(input:checked) { border-color: var(--brass); background: var(--ink-3); }
.tier input:focus-visible + .tier-in { outline: 3px solid var(--brass-hi); outline-offset: 4px; }
.tier-qty { font-family: var(--display); font-size: 2.4rem; font-weight: 900; line-height: 1; }
.tier-lbl { font-family: var(--display); text-transform: uppercase; letter-spacing: .1em; font-size: .84rem; color: var(--on-dark-mut); }
.tier-price { font-family: var(--mono); font-size: 1.5rem; font-weight: 700; color: var(--brass); margin-top: .8rem; }
.tier-note { font-size: .74rem; color: var(--field-hi); margin-top: .3rem; min-height: 1.2em; }

/* forms */
.field { display: grid; gap: .35rem; margin-bottom: 1rem; }
.field label { font-family: var(--mono); font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; color: var(--on-dark-mut); }
.sec-light .field label { color: var(--on-light-mut); }
.field input, .field textarea, .field select {
  font-family: var(--body); font-size: 1rem; padding: .7rem .8rem;
  background: var(--ink); color: var(--on-dark);
  border: 1px solid var(--line-dark); border-radius: var(--r);
}
.sec-light .field input, .sec-light .field textarea, .sec-light .field select {
  background: #fff; color: var(--on-light); border-color: var(--bone-3);
}
.field input:focus, .field textarea:focus { border-color: var(--brass); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.notice {
  border-left: 3px solid var(--brass); background: var(--ink-2);
  padding: 1rem 1.2rem; border-radius: var(--r); margin: 1.5rem 0;
}
.sec-light .notice { background: #FAF6EE; border-color: var(--field); }
.notice p { margin: 0; font-size: .92rem; }
.notice.is-good { border-left-color: var(--field-hi); }
.notice.is-bad { border-left-color: var(--clay); }

/* AMOE gets equal visual weight to the paid path — it is not fine print. */
.amoe {
  border: 1px dashed var(--bone-3); border-radius: var(--r);
  padding: 1.4rem 1.5rem; margin-top: 1.5rem;
}
.sec:not(.sec-light) .amoe { border-color: var(--line-dark); }
.amoe h3 { font-size: 1.25rem; margin-bottom: .5rem; }
.amoe address { font-family: var(--mono); font-size: .84rem; font-style: normal; white-space: pre-line; margin-top: .8rem; }

/* page header for interior pages */
.page-hd {
  background: linear-gradient(180deg, #1A1512, var(--ink));
  border-bottom: 1px solid var(--line-dark);
  padding: clamp(2.5rem, 6vw, 4rem) 0 clamp(2rem, 4vw, 3rem);
}
.page-hd h1 { font-size: clamp(2.6rem, 7vw, 4.4rem); }
.page-hd p { margin: 1rem 0 0; color: var(--on-dark-mut); max-width: 56ch; font-size: 1.05rem; }

.longform { max-width: 68ch; }
.longform p { margin: 0 0 1.1rem; }
.longform strong { color: var(--on-light); }
.sec:not(.sec-light) .longform strong { color: var(--on-dark); }
.longform em { color: var(--on-light-mut); }

/* faq */
.faq-list { max-width: 76ch; }
.faq-item { border-bottom: 1px solid var(--bone-3); }
.sec:not(.sec-light) .faq-item { border-color: var(--line-dark); }
.faq-item summary {
  cursor: pointer; list-style: none; padding: 1.1rem 0;
  font-family: var(--display); font-size: 1.3rem; text-transform: uppercase;
  letter-spacing: .03em; display: flex; justify-content: space-between; gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; color: var(--brass); font-weight: 700; }
.faq-item[open] summary::after { content: "–"; }
.faq-item p { margin: 0 0 1.2rem; }

/* table of draws */
.draw-list { display: grid; gap: .6rem; }
.draw-row {
  display: grid; grid-template-columns: 90px 64px 1fr auto auto; align-items: center; gap: 1rem;
  padding: .9rem 1.1rem; border: 1px solid var(--bone-3); border-radius: var(--r);
  background: #FAF6EE; text-decoration: none; color: inherit;
}
.draw-row:hover { border-color: var(--field); }
.draw-row img { width: 56px; height: 56px; object-fit: contain; }
.draw-row .n { font-family: var(--mono); font-weight: 700; }
.draw-row .w { font-family: var(--display); text-transform: uppercase; font-size: 1.1rem; letter-spacing: .04em; }
.draw-row .c { font-family: var(--mono); font-size: .72rem; color: var(--on-light-mut); letter-spacing: .06em; }

/* signup band */
.signup-band { background: var(--brass); color: var(--ink); }
.signup-in { display: flex; align-items: center; gap: 1.6rem; padding-block: 2rem; flex-wrap: wrap; }
.signup-mark { color: var(--ink); width: 40px; height: 44px; }
.signup-copy { flex: 1 1 260px; }
.signup-copy h2 { font-size: 1.9rem; }
.signup-copy p { margin: .3rem 0 0; font-size: .92rem; }
.signup-form { display: flex; gap: .5rem; flex: 1 1 320px; }
.signup-form input {
  flex: 1; padding: .8rem 1rem; border: 2px solid var(--ink); border-radius: var(--r);
  font-family: var(--body); font-size: 1rem; background: #fff; color: var(--ink);
}
.signup-form button {
  padding: .8rem 1.5rem; background: var(--ink); color: var(--brass);
  border: 2px solid var(--ink); border-radius: var(--r); cursor: pointer;
  font-family: var(--display); font-weight: 800; text-transform: uppercase;
  font-size: 1rem; letter-spacing: .07em;
}
.signup-form button:hover { background: #000; }

/* footer */
.footer { background: var(--ink-2); border-top: 1px solid var(--line-dark); padding-top: 3rem; }
.footer-in { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 2rem; }
.footer-brand p { font-size: .86rem; color: var(--on-dark-mut); margin: 1rem 0 0; max-width: 30ch; }
.footer-col h3 {
  font-size: .78rem; letter-spacing: .18em; color: var(--brass);
  font-family: var(--mono); font-weight: 700; margin-bottom: .9rem;
}
.footer-col a, .footer-plain {
  display: block; font-size: .88rem; color: var(--on-dark-mut);
  text-decoration: none; padding: .2rem 0;
}
.footer-col a:hover { color: var(--brass); }
.footer-legal {
  margin-top: 2.5rem; padding-block: 1.5rem; border-top: 1px solid var(--line-dark);
}
.amoe-line { font-size: .84rem; color: var(--on-dark); margin: 0 0 .6rem; }
.amoe-line strong { color: var(--brass); }
.copyright { font-size: .78rem; color: var(--on-dark-mut); margin: 0; }
.footer-legal a { color: var(--on-dark-mut); }
.footer-legal a:hover { color: var(--brass); }

/* ------------------------------------------------------------ responsive -- */

@media (max-width: 1080px) {
  .nav a { font-size: .78rem; padding: .4rem .38rem; }
}

@media (max-width: 900px) {
  .hero-in { grid-template-columns: 1fr; }
  .facts-in { grid-template-columns: repeat(2, 1fr); }
  .two-up { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .footer-in { grid-template-columns: 1fr 1fr; }
  .board { grid-template-columns: repeat(10, 1fr); }

  .nav-toggle { display: block; }
  .nav {
    display: none; order: 10; width: 100%; flex-direction: column; gap: 0;
    padding-bottom: .6rem; margin-left: 0;
  }
  .nav.is-open { display: flex; }
  .nav a { border-bottom: 1px solid var(--line-dark); padding: .7rem .2rem; font-size: .95rem; }
  .masthead-in { flex-wrap: wrap; }
  .entries-pill { margin-left: auto; }
}

@media (max-width: 620px) {
  .tiers { grid-template-columns: 1fr; }
  .draw-row { grid-template-columns: 60px 1fr; row-gap: .4rem; }
  .draw-row .c, .draw-row img { display: none; }
  .field-row { grid-template-columns: 1fr; }
  .board { gap: 3px; padding: .9rem; }
  .slot { font-size: 0; }
  .board-hd { flex-direction: column; align-items: flex-start; }
  .board-tally { text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

/* build credit — same treatment on every RedCyfer-built site */
.footer-legal .byline {
  margin: .5rem 0 0; font-size: .78rem; color: var(--on-dark-mut);
  font-family: var(--mono); letter-spacing: .04em;
}
.footer-legal .byline a { color: var(--brass); text-decoration: none; }
.footer-legal .byline a:hover { text-decoration: underline; }
