/* ==========================================================================
   HOME PAGE  (design lane)

   Linked only on /. The home page is one page rather than one of seventy-one,
   so it gets its own stylesheet instead of sharing the entity pages'
   restraint. Lifted from design/drafts/home-b3.html when that draft was
   chosen; the draft stays as the reference.
   ========================================================================== */

/* ==========================================================================
   HOME, DIRECTION B: the vault

   The page is the mark at page scale. The hi-vis band is the top edge of
   the page, the ink square is the page itself, and the V is cut out of it
   as a window. Behind the window the names stream past in their register
   voices, in four colours on ink. Nothing else on the site is this loud;
   the mark earns it because the mark is the brand.

   Colours beyond the accent, all measured against ink:
     paper 16.0   hi-vis 14.5   cyan 11.6   coral 9.1   on-dark-muted 9.2
   ========================================================================== */
:root {
  --cyan:  #7FD8FF;
  --coral: #FF9B85;
  --band:  14px;
}
html { background: var(--ink); color: var(--paper); }
body { --focus: 3px solid var(--action); }
body::before { content: ""; display: block; height: var(--band); background: var(--action); transform-origin: left; }
.site-header { color: var(--paper); border-bottom-color: var(--paper); }
.site-footer { margin-top: 0; border-top: 1px solid var(--dark-rule); }
.home h1, .home h2, .home h3 { text-wrap: balance; }
.home p { text-wrap: pretty; }
.home { overflow-x: clip; }
.page a { text-decoration-color: var(--action); }
.page a:hover { background: var(--action); color: var(--ink); }

.btn {
  display: inline-block;
  padding: 0.95rem 1.4rem;
  border: 2px solid var(--action);
  background: var(--action);
  color: var(--ink);
  font: 500 var(--size-label) / 1 var(--font-ui);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
}
.btn:hover { background: var(--action-hover); border-color: var(--action-hover); }
.btn--paper { background: transparent; border-color: var(--paper); color: var(--paper); }
.page .btn--paper:hover { background: var(--paper); color: var(--ink); border-color: var(--paper); }

/* ---- 1. the vault ----------------------------------------------------------- */
.vault {
  display: grid;
  gap: 2rem 3rem;
  padding-block: clamp(1.5rem, 3vw, 3rem) clamp(2.5rem, 5vw, 4rem);
  min-height: calc(100svh - var(--band) - 4rem);
  align-content: center;
}
@media (min-width: 1024px) {
  .vault { grid-template-columns: minmax(0, 6fr) minmax(0, 6fr); align-items: center; }
}
.vee-wrap { position: relative; }
.vee {
  position: relative;
  width: min(100%, 76vh);
  aspect-ratio: 8.8 / 12;
  margin-inline: auto;
  overflow: hidden;
  clip-path: url(#vee-clip);
  background: var(--dark-raised);
}
@media (min-width: 1024px) { .vee { width: min(100%, 80vh); margin-inline: 0; } }
.rows {
  position: absolute;
  inset: -2% 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.row {
  display: flex;
  white-space: nowrap;
  line-height: 1.05;
  font-size: clamp(2rem, 1.2rem + 3.6vw, 4.6rem);
  color: var(--row-color, var(--paper));
}
.row__track {
  display: inline-flex;
  gap: 0.55em;
  padding-right: 0.55em;
  flex: none;
  will-change: transform;
}
.row__track span::after { content: "\00b7"; margin-left: 0.55em; opacity: 0.45; }
.row[data-register="catchy"] { font-family: var(--font-display); font-weight: 800; text-transform: uppercase; letter-spacing: 0.03em; font-size: clamp(1.7rem, 1rem + 3.1vw, 4rem); }
.row[data-register="professional"] { font-family: var(--font-text); font-weight: 500; font-variation-settings: "opsz" 144, "SOFT" 0, "WONK" 0; }
.row[data-register="funny"] { font-family: var(--font-text); font-weight: 900; font-variation-settings: "opsz" 9, "SOFT" 100, "WONK" 1; }
.row[data-register="modern"] { font-family: var(--font-display); font-weight: 300; text-transform: uppercase; letter-spacing: 0.16em; font-size: clamp(1.6rem, 1rem + 2.8vw, 3.6rem); }
.row[data-register="short"] { font-family: var(--font-display); font-weight: 800; font-stretch: 75%; text-transform: uppercase; font-size: clamp(2.6rem, 1.4rem + 4.8vw, 6rem); }
.row[data-register="luxury"] { font-family: var(--font-text); font-style: italic; font-weight: 300; font-variation-settings: "opsz" 144, "SOFT" 0, "WONK" 0; }
.row[data-register="family"] { font-family: var(--font-text); font-weight: 600; font-variation-settings: "opsz" 72, "SOFT" 100, "WONK" 0; }
.row[data-register="local"] { font-family: var(--font-display); font-weight: 700; font-stretch: 75%; text-transform: uppercase; letter-spacing: 0.09em; }
.row[data-register="trust"] { font-family: var(--font-text); font-weight: 700; font-variation-settings: "opsz" 9, "SOFT" 0, "WONK" 0; }
.row[data-register="wordplay"] { font-family: var(--font-text); font-style: italic; font-weight: 500; font-variation-settings: "opsz" 48, "SOFT" 30, "WONK" 1; }

@media (prefers-reduced-motion: no-preference) {
  body::before { animation: band 700ms cubic-bezier(0.2, 0.7, 0.2, 1) both; }
  @keyframes band { from { transform: scaleX(0); } }
  .row__track { animation: slide var(--dur, 48s) linear infinite; animation-direction: var(--dir, normal); }
  .vee.is-paused .row__track, .vee:hover .row__track, .vee:focus-within .row__track { animation-play-state: paused; }
  @keyframes slide { to { transform: translateX(-100%); } }
}
.vee__caption p { margin: 0; max-width: 24rem; }
.vee__caption button { white-space: nowrap; }
.vee__caption {
  margin: 0.9rem 0 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem 1rem;
  font: 500 var(--size-label) / 1.3 var(--font-ui);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--on-dark-muted);
}
.vee__caption button {
  background: transparent;
  border: 1px solid var(--on-dark-muted);
  color: var(--paper);
  padding: 0.5rem 0.7rem;
  font: inherit;
  cursor: pointer;
}
.vee__caption button:hover { border-color: var(--paper); }

.vault__copy h1 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-stretch: 75%;
  font-size: clamp(3rem, 1.2rem + 7vw, 8rem);
  line-height: 0.88;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  max-width: 10ch;
}
.vault__copy h1 em { font-style: normal; color: var(--action); }
.vault__count {
  margin: 1.25rem 0 0;
  font: 500 var(--size-label) / 1.4 var(--font-ui);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan);
}
.vault__copy p:not(.vault__count):not(.vault__actions) {
  margin: 1rem 0 0;
  max-width: 34rem;
  font-size: clamp(1.05rem, 1rem + 0.4vw, 1.25rem);
  line-height: 1.5;
  color: var(--on-dark-muted);
  font-variation-settings: "opsz" 24, "SOFT" 30, "WONK" 0;
}
.vault__copy p strong { color: var(--paper); font-weight: 600; }
.vault__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin: 1.6rem 0 0; }

/* ---- 2. ten voices ----------------------------------------------------------- */
.voices {
  padding-block: clamp(2.5rem, 5vw, 4.5rem);
  border-top: 1px solid var(--dark-rule);
}
.voices h2 {
  margin: 0 0 1.25rem;
  font: 500 var(--size-label) / 1.4 var(--font-ui);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--on-dark-muted);
}
.voices ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.2em 0.6em;
  font-size: clamp(2.2rem, 1.2rem + 4.4vw, 6rem);
  line-height: 1.05;
}
.voices a { text-decoration: none; padding: 0 0.12em; margin: 0 -0.12em; color: var(--c, var(--paper)); }
.page .voices a:hover { background: var(--c, var(--paper)); color: var(--ink); }
.voices [data-register="catchy"] { font-family: var(--font-display); font-weight: 800; text-transform: uppercase; letter-spacing: 0.03em; font-size: 0.85em; --c: var(--action); }
.voices [data-register="professional"] { font-family: var(--font-text); font-weight: 500; font-variation-settings: "opsz" 144, "SOFT" 0, "WONK" 0; }
.voices [data-register="funny"] { font-family: var(--font-text); font-weight: 900; font-variation-settings: "opsz" 9, "SOFT" 100, "WONK" 1; --c: var(--coral); }
.voices [data-register="modern"] { font-family: var(--font-display); font-weight: 300; text-transform: uppercase; letter-spacing: 0.16em; font-size: 0.78em; --c: var(--cyan); }
.voices [data-register="short"] { font-family: var(--font-display); font-weight: 800; font-stretch: 75%; text-transform: uppercase; font-size: 1.2em; }
.voices [data-register="luxury"] { font-family: var(--font-text); font-style: italic; font-weight: 300; font-variation-settings: "opsz" 144, "SOFT" 0, "WONK" 0; font-size: 1.1em; --c: var(--action); }
.voices [data-register="family"] { font-family: var(--font-text); font-weight: 600; font-variation-settings: "opsz" 72, "SOFT" 100, "WONK" 0; --c: var(--coral); }
.voices [data-register="local"] { font-family: var(--font-display); font-weight: 700; font-stretch: 75%; text-transform: uppercase; letter-spacing: 0.09em; font-size: 0.9em; --c: var(--cyan); }
.voices [data-register="trust"] { font-family: var(--font-text); font-weight: 700; font-variation-settings: "opsz" 9, "SOFT" 0, "WONK" 0; }
.voices [data-register="wordplay"] { font-family: var(--font-text); font-style: italic; font-weight: 500; font-variation-settings: "opsz" 48, "SOFT" 30, "WONK" 1; --c: var(--action); }
.voices__foot { margin: 1.25rem 0 0; max-width: 40rem; color: var(--on-dark-muted); }
.voices__foot a { color: var(--paper); }

/* ---- 3. trades, on the band ------------------------------------------------- */
.trades {
  background: var(--action);
  color: var(--ink);
  --focus: 3px solid var(--ink);
  padding-block: clamp(2.5rem, 5vw, 4.5rem);
}
.trades h2 {
  margin: 0 0 1.5rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-stretch: 75%;
  font-size: clamp(2rem, 1.2rem + 3vw, 4rem);
  line-height: 0.95;
  text-transform: uppercase;
  max-width: 18ch;
}
.trades ul { list-style: none; margin: 0; padding: 0; border-top: 3px solid var(--ink); }
.trades li { border-bottom: 1px solid var(--ink); }
.trades a {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.25rem 2rem;
  padding: 0.6rem 0.2em;
  margin-inline: -0.2em;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 800;
  font-stretch: 75%;
  font-size: clamp(3rem, 1.2rem + 8vw, 9rem);
  line-height: 0.95;
  text-transform: uppercase;
  color: var(--ink);
}
.page .trades a:hover { background: var(--ink); color: var(--action); }
.trades__count { font: 500 clamp(0.8rem, 0.7rem + 0.5vw, 1.1rem) / 1 var(--font-ui); letter-spacing: 0.12em; white-space: nowrap; }
/* nowrap matches .index__count. Without it the count broke to "275 /
   NAMES" beside any trade whose name takes two lines, which only
   happens in the multi column layout with long labels like General
   Contractor and Real Estate Investment. */
.trades__shop { margin: 1.25rem 0 0; max-width: 42rem; font-family: var(--font-ui); font-size: var(--size-small); line-height: 1.6; }
.trades__shop a { color: var(--ink); text-decoration-color: var(--ink); }
.page .trades__shop a:hover { background: var(--ink); color: var(--action); }
.trades--many ul { columns: 20rem; column-gap: 3rem; border-top: 0; }
.trades--many li { break-inside: avoid; }
.trades--many a { font-size: 1.4rem; padding: 0.4rem 0.2em; flex-wrap: nowrap; }
.trades--many a > span:first-child { min-width: 0; }
.trades--many .trades__count { font-size: 0.72rem; }
.draft-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
  padding: 0.5rem 0.75rem;
  border: 1px dashed var(--ink);
  font: 500 var(--size-label) / 1.3 var(--font-ui);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ---- 4. the promise ----------------------------------------------------------- */
.promise {
  padding-block: clamp(3rem, 6vw, 6rem);
  display: grid;
  gap: 2rem 4rem;
}
@media (min-width: 1024px) { .promise { grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); } }
.promise h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-stretch: 75%;
  font-size: clamp(3rem, 1.2rem + 7.4vw, 9rem);
  line-height: 0.88;
  text-transform: uppercase;
  max-width: 9ch;
}
.promise h2 em { font-style: normal; color: var(--coral); }
.promise__intro { margin: 1.25rem 0 0; max-width: 34rem; color: var(--on-dark-muted); font-size: 1.05rem; }
.checks { list-style: none; margin: 0; padding: 0; counter-reset: check; }
.checks li {
  counter-increment: check;
  display: grid;
  grid-template-columns: 3.2rem minmax(0, 1fr);
  gap: 0 1rem;
  padding: 1rem 0;
  border-top: 1px solid var(--dark-rule);
}
.checks li::before { grid-row: 1 / span 2; content: "0" counter(check); font: 500 var(--size-label) / 2 var(--font-ui); letter-spacing: 0.14em; color: var(--cyan); }
.checks strong { display: block; grid-column: 2; text-wrap: balance; font-family: var(--font-display); font-weight: 700; font-size: 1.35rem; line-height: 1.15; }
.checks p { grid-column: 2; margin: 0.25rem 0 0; color: var(--on-dark-muted); }
.guides { margin: 1.5rem 0 0; padding: 0; list-style: none; }
.guides li { padding: 0.9rem 0; border-top: 1px solid var(--dark-rule); }
.guides a { display: inline-block; max-width: 100%; text-wrap: balance; font-family: var(--font-display); font-weight: 700; font-size: clamp(1.3rem, 1.1rem + 0.9vw, 1.9rem); line-height: 1.15; text-decoration-thickness: 3px; }
.guides p { margin: 0.35rem 0 0; color: var(--on-dark-muted); }

/* ---- specimen sheet, spliced from home-c ---- */
.btn {
  display: inline-block;
  padding: 0.85rem 1.25rem;
  border: 2px solid var(--ink);
  background: var(--action);
  color: var(--ink);
  font: 500 var(--size-label) / 1 var(--font-ui);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
}
.btn:hover { background: var(--action-hover); }
.btn--quiet { background: transparent; }
.btn--quiet:hover { background: var(--paper-deep); }
.page .btn:hover { color: var(--ink); }
/* ---- 1. the sheet ---------------------------------------------------------- */
.spec {
  display: grid;
  gap: 2rem 4rem;
  padding-block: clamp(1.5rem, 3vw, 3rem) clamp(2.5rem, 5vw, 4rem);
}
.spec { grid-template-columns: 22rem minmax(0, 1fr); }
.spec { grid-template-columns: 26rem minmax(0, 1fr); gap: 2rem 5rem; }
.spec__aside { align-self: start; }
.spec__aside { position: sticky; top: 1.5rem; }
.spec__kicker {
  margin: 0;
  font: 500 var(--size-label) / 1.4 var(--font-ui);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--on-dark-muted);
}
.spec__count {
  display: block;
  margin: 0.5rem 0 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-stretch: 75%;
  font-size: clamp(6rem, 3rem + 14vw, 13rem);
  line-height: 0.82;
  letter-spacing: -0.03em;
}
.spec__count::after {
  content: "";
  display: block;
  width: 100%;
  height: 0.55rem;
  margin-top: 0.6rem;
  background: var(--action);
  transform-origin: left;
}
.spec h1 {
  margin: 1rem 0 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-stretch: 75%;
  font-size: clamp(1.7rem, 1.2rem + 1.6vw, 2.5rem);
  line-height: 0.95;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  max-width: 16ch;
}
.spec__lede {
  margin: 1rem 0 0;
  max-width: 24rem;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--on-dark-muted);
}
.index {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  border-top: 3px solid var(--ink);
}
.index li { border-bottom: 1px solid var(--rule); }
.index a {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.7rem 0.2em;
  margin-inline: -0.2em;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 800;
  font-stretch: 75%;
  font-size: 1.9rem;
  line-height: 1;
  text-transform: uppercase;
}
/* --muted and --ink-2 are PAPER-side tokens, for dark text on light ground.
   On the near-black sheet they measured 2.72 and 1.61 to 1 against a 4.5
   floor. --on-dark-muted is the dark-side token this design already has, and
   the siblings at the same size, .sheet__label and .voice__head, were using
   it already. Hierarchy comes from size and face, not from going unreadable. */
.index__count { font: 500 var(--size-label) / 1 var(--font-ui); letter-spacing: 0.1em; color: var(--on-dark-muted); white-space: nowrap; }
.index a:hover .index__count { color: var(--ink); }
.index__shop {
  margin: 0.9rem 0 0;
  font-family: var(--font-ui);
  font-size: 0.82rem;
  line-height: 1.55;
  color: var(--muted);
}
.index--many { columns: 2; column-gap: 2rem; border-top: 0; }
.index--many li { break-inside: avoid; border-bottom-color: var(--rule); }
.index--many a { font-size: 0.95rem; padding: 0.35rem 0.1em; margin-inline: 0; }
.index--many .index__count { font-size: 0.62rem; }
.index--many { max-height: 60vh; overflow: auto; columns: 1; padding-right: 0.5rem; }
.spec__actions { display: flex; flex-wrap: wrap; gap: 0.6rem; margin: 1.5rem 0 0; }
.draft-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  padding: 0.45rem 0.6rem;
  border: 1px dashed var(--muted);
  font: 500 0.66rem / 1.3 var(--font-ui);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}
.sheet { min-width: 0; }
.sheet__label {
  margin: 0;
  padding: 0.5rem 0;
  font: 500 var(--size-label) / 1.4 var(--font-ui);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--on-dark-muted);
  border-bottom: 3px solid var(--on-dark);
}
.sheet__label + .voice { border-top: 0; }
.voice {
  position: relative;
  padding: 0.9rem 0 1.1rem;
  border-top: 1px solid var(--dark-rule);
  container-type: inline-size;
}
.voice__head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 1.25rem;
  margin: 0 0 0.35rem;
  font: 500 var(--size-label) / 1.4 var(--font-ui);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--on-dark-muted);
}
.voice__head strong { font-weight: 500; color: var(--on-dark); padding: 0 0.25em; margin-left: -0.25em; }
/* The lime hover needs ink ON it. The label keeps --on-dark from the rule
   above, and near-white on #C4F500 measures 1.11 to 1, so the category
   vanished the moment you hovered the row. */
.voice:hover .voice__head strong, .voice:focus-within .voice__head strong { background: var(--action); color: var(--ink); }
.voice__head a { color: var(--on-dark); text-decoration-color: var(--action); }
.voice__head button {
  margin-left: auto;
  padding: 0.35rem 0.55rem;
  border: 1px solid var(--dark-rule);
  background: transparent;
  color: var(--on-dark);
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  cursor: pointer;
}
.voice__head button:hover { border-color: var(--on-dark); }
.voice__stage { position: relative; overflow: hidden; }
.voice__name {
  display: block;
  margin: 0;
  /* Must contain the glyph box, not just the line box. The stage clips
     (overflow: hidden) so the roll animation works, so anything taller than
     the line box is cut: at 1.02 every row lost its descenders and italic
     Fraunces lost most of a g. Measured glyph box is 1.21 to 1.24 of the
     font size, so this carries headroom. */
  line-height: 1.28;
  text-decoration: none;
  text-wrap: balance;
  color: var(--on-dark);
}
.voice__name[hidden] { display: none; }
.voice__name.is-ghost { position: absolute; inset: 0; }
/* Restores the colour too. This rule cancelled the global hover BACKGROUND
   but not its color: var(--ink), so the name went near-black on the
   near-black sheet, 1.00 to 1, and disappeared on hover. */
.page .voice__name:hover { background: transparent; color: var(--on-dark); text-decoration: underline; text-decoration-color: var(--action); text-decoration-thickness: 0.08em; text-underline-offset: 0.08em; }
.spec__count::after { animation: rule 700ms cubic-bezier(0.2, 0.7, 0.2, 1) both; }
@media (prefers-reduced-motion: no-preference) {
  /* The keyframes these two animations name. Without them the rules are inert,
     the outgoing and incoming names both stay painted, and the swap reads as
     slow and doubled. */
  @keyframes roll-in { from { transform: translateY(70%); opacity: 0; } }
  @keyframes roll-out { to { transform: translateY(-70%); opacity: 0; } }
  @keyframes rule { from { transform: scaleX(0); } }
}
.voice__name.is-in { animation: roll-in 420ms cubic-bezier(0.2, 0.7, 0.2, 1) both; }
.voice__name.is-out { animation: roll-out 320ms ease-in both; }
[data-register="catchy"] .voice__name { font-family: var(--font-display); font-weight: 800; font-stretch: 100%; text-transform: uppercase; letter-spacing: 0.03em; }
[data-register="professional"] .voice__name { font-family: var(--font-text); font-weight: 500; font-variation-settings: "opsz" 144, "SOFT" 0, "WONK" 0; }
[data-register="funny"] .voice__name { font-family: var(--font-text); font-weight: 900; font-variation-settings: "opsz" 9, "SOFT" 100, "WONK" 1; }
[data-register="modern"] .voice__name { font-family: var(--font-display); font-weight: 300; font-stretch: 100%; text-transform: uppercase; letter-spacing: 0.16em; }
[data-register="short"] .voice__name { font-family: var(--font-display); font-weight: 800; font-stretch: 75%; text-transform: uppercase; }
[data-register="luxury"] .voice__name { font-family: var(--font-text); font-style: italic; font-weight: 300; font-variation-settings: "opsz" 144, "SOFT" 0, "WONK" 0; letter-spacing: 0.02em; }
[data-register="family"] .voice__name { font-family: var(--font-text); font-weight: 600; font-variation-settings: "opsz" 72, "SOFT" 100, "WONK" 0; }
[data-register="local"] .voice__name { font-family: var(--font-display); font-weight: 700; font-stretch: 75%; text-transform: uppercase; letter-spacing: 0.09em; }
[data-register="trust"] .voice__name { font-family: var(--font-text); font-weight: 700; font-variation-settings: "opsz" 9, "SOFT" 0, "WONK" 0; }
[data-register="wordplay"] .voice__name { font-family: var(--font-text); font-style: italic; font-weight: 500; font-variation-settings: "opsz" 48, "SOFT" 30, "WONK" 1; }
[data-register^="lane"] .voice__name { font-family: var(--font-display); font-weight: 600; font-stretch: 92%; letter-spacing: -0.005em; }
.sheet__label--lanes { margin-top: 2.5rem; }
.sheet__foot { margin: 1.5rem 0 0; max-width: 40rem; color: var(--on-dark-muted); text-wrap: balance; }
@media (min-width: 1024px) {
  .spec { grid-template-columns: 22rem minmax(0, 1fr); }
}
@media (min-width: 1280px) {
  .spec { grid-template-columns: 26rem minmax(0, 1fr); gap: 2rem 5rem; }
}
@media (min-width: 1024px) {
  .spec__aside { position: sticky; top: 1.5rem; }
}
@media (min-width: 1024px) { .index--many { max-height: 60vh; overflow: auto; columns: 1; padding-right: 0.5rem; } }
