/* Shortprint, the landing page, in the same grammar as the league site: a dark masthead, Big
   Shoulders for anything that names a thing, IBM Plex Sans Condensed for anything counted,
   Newsreader for the sentences, paper on a warm tint and never cream on white. The league site's
   tokens are network.css's; this is a separate Worker, so it carries its own copy. */
@import url('https://fonts.googleapis.com/css2?family=Big+Shoulders+Display:wght@400;600;700&family=IBM+Plex+Sans+Condensed:wght@400;500;600;700&family=Newsreader:ital,opsz,wght@0,6..72,400;1,6..72,400&display=swap');
:root {
  --pg: #ffffff; --ink: #151412; --ink2: #4a463c; --ink3: #6b655e; --hair: #e4e2dc; --hair2: #cfcbc2;
  --nav: #1c1c1a; --net: #bf1e2e; --gold: #c9a94e; --tint: #f6f5f1;
  --disp: "Big Shoulders Display", "Arial Narrow", Impact, sans-serif;
  --sans: "IBM Plex Sans Condensed", "Arial Narrow", sans-serif;
  --serif: Newsreader, Georgia, serif;
  --num: "IBM Plex Sans Condensed", sans-serif;
  --foil: linear-gradient(135deg, #f5c542, #ff6a8a 35%, #52b7ff 70%, #6fe08c);
}
* { box-sizing: border-box; }
html { color-scheme: light; -webkit-text-size-adjust: 100%; }
body { margin: 0; background: var(--pg); color: var(--ink); font-family: var(--sans); font-size: 15px; line-height: 1.45; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
.wrap { max-width: 1140px; margin: 0 auto; padding: 0 20px; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* the masthead: here the wordmark is the big one */
.masthead { background: var(--nav); color: #fff; }
.masthead .wrap { display: flex; align-items: center; gap: 18px; min-height: 62px; flex-wrap: wrap; }
.wordmark { display: flex; align-items: baseline; gap: 10px; }
.wordmark-text { font: 700 32px/1 var(--disp); letter-spacing: .05em; text-transform: uppercase; color: #fff; }
.masthead .tagline { font: 600 10.5px/1.3 var(--sans); letter-spacing: .18em; text-transform: uppercase; color: var(--gold); }
.masthead-mail { margin-left: auto; display: inline-flex; align-items: center; min-height: 44px; font: 600 12px/1 var(--sans); letter-spacing: .08em; text-transform: uppercase; color: #fff; border-bottom: 1px solid rgba(255,255,255,.4); }
@media (max-width: 760px) {
  .masthead .wrap { flex-wrap: nowrap; gap: 10px; min-height: 56px; }
  .masthead .tagline { display: none; }
  .wordmark-text { font-size: 26px; }
  .masthead-mail { font-size: 10.5px; letter-spacing: .06em; }
}
.serial { font: 700 11px/1 var(--num); letter-spacing: .06em; padding: 3px 5px; border-radius: 2px; }
.serial.foil { background: var(--foil); color: #151412; }

/* the buttons: red is the one thing to press */
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 46px; padding: 0 18px; font: 700 12.5px/1 var(--sans); letter-spacing: .1em; text-transform: uppercase; border: 1px solid var(--ink); background: var(--pg); color: var(--ink); border-radius: 3px; }
.button.go { background: var(--net); border-color: var(--net); color: #fff; }
.button.ghost { background: transparent; }

/* the hero */
.kicker { font: 700 11px/1.3 var(--sans); letter-spacing: .14em; text-transform: uppercase; color: var(--ink); margin: 0 0 8px; display: flex; align-items: center; gap: 8px; }
.reg { width: 12px; height: 12px; flex: none; border-radius: 50%; border: 1.5px solid currentColor; position: relative; }
.reg::before, .reg::after { content: ""; position: absolute; background: currentColor; }
.reg::before { left: 50%; top: -3px; bottom: -3px; width: 1.5px; transform: translateX(-50%); }
.reg::after { top: 50%; left: -3px; right: -3px; height: 1.5px; transform: translateY(-50%); }
.hero { padding: 34px 0 8px; }
.hero h1 { font: 700 clamp(40px, 8vw, 76px)/.92 var(--disp); text-transform: uppercase; letter-spacing: .01em; margin: 0 0 14px; text-wrap: balance; }
/* red is the button and nothing else, here as on the league site: the emphasis is printed, not coloured */
.hero h1 em { font-style: normal; text-decoration: underline; text-decoration-thickness: 7px; text-underline-offset: 6px; }
.lede { font: 400 18px/1.5 var(--serif); color: var(--ink2); margin: 0 0 20px; max-width: 60ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 0 0 6px; }

/* the three screens */
.screens { background: var(--tint); border-top: 1px solid var(--hair); border-bottom: 1px solid var(--hair); margin-top: 30px; padding: 26px 0 30px; }
.screens .wrap { display: grid; gap: 24px; grid-template-columns: 1fr; }
@media (min-width: 800px) { .screens .wrap { grid-template-columns: repeat(3, 1fr); gap: 26px; } }
.screen { margin: 0; }
.screen .shot { display: block; width: 100%; height: auto; border: 1px solid var(--hair2); box-shadow: 0 10px 24px -14px rgba(21,20,18,.5); background: var(--pg); }
.screen figcaption { font: 400 14.5px/1.45 var(--serif); color: var(--ink2); margin-top: 10px; }
.screen figcaption b { font-family: var(--sans); font-weight: 700; color: var(--ink); }

/* the pillars */
.pillars { padding: 34px 0 8px; }
.pillars .wrap { display: grid; gap: 24px; grid-template-columns: 1fr; }
@media (min-width: 760px) { .pillars .wrap { grid-template-columns: repeat(3, 1fr); gap: 30px; } }
.pillar { border-top: 3px solid var(--ink); padding-top: 10px; }
.pillar .num { font: 600 11px/1 var(--num); letter-spacing: .16em; color: var(--ink3); }
.pillar h3 { font: 600 24px/1 var(--disp); letter-spacing: .04em; text-transform: uppercase; margin: 8px 0 8px; }
.pillar p { font: 400 15.5px/1.5 var(--serif); color: var(--ink2); margin: 0; }

/* for commissioners */
.commissioners { margin-top: 34px; padding: 30px 0 36px; background: var(--tint); border-top: 1px solid var(--hair); }
.commissioners h2 { font: 700 clamp(28px, 4.4vw, 44px)/.98 var(--disp); text-transform: uppercase; letter-spacing: .01em; margin: 0 0 16px; }
.two-col { display: grid; gap: 24px; grid-template-columns: 1fr; }
@media (min-width: 820px) { .two-col { grid-template-columns: 1.15fr 1fr; gap: 40px; } }
.two-col p { font: 400 16.5px/1.5 var(--serif); color: var(--ink2); margin: 0 0 14px; }
.checklist { list-style: none; margin: 0; padding: 0; }
.checklist li { display: flex; gap: 10px; align-items: baseline; padding: 10px 0; border-bottom: 1px solid var(--hair2); font: 500 14.5px/1.4 var(--sans); }
.checklist li .bx { width: 12px; height: 12px; flex: none; border: 1.5px solid var(--ink); align-self: center; }
.pilot { margin-top: 26px; border: 1px solid var(--hair2); background: var(--pg); padding: 18px; }
.pilot-head { font: 700 10.5px/1 var(--sans); letter-spacing: .18em; text-transform: uppercase; color: var(--ink3); margin: 0 0 10px; }
.pilot p { font: 400 15.5px/1.5 var(--serif); color: var(--ink2); margin: 0 0 12px; max-width: 62ch; }
.pilot p:last-child { margin: 0; }

/* the colophon */
.colophon { background: var(--nav); color: rgba(255,255,255,.7); padding: 26px 0 40px; font: 500 12px/1.6 var(--sans); }
.colophon .wordmark-text.small { font-size: 22px; margin: 0 0 6px; }
.colophon p { margin: 0 0 8px; }
.colophon a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.colophon .fine { color: rgba(255,255,255,.55); max-width: 76ch; }
.mono { font-family: var(--num); }
