/* Alflora Research — editorial neo-brutalism, zero images */
@font-face {
  font-family: "Soria";
  src: url("/fonts/Soria-Regular.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "Grotesk";
  src: url("/fonts/grotesk.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "Anton";
  src: url("/fonts/anton.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "Instrument";
  src: url("/fonts/instrument-italic.woff2") format("woff2");
  font-style: italic;
  font-display: swap;
}

:root {
  --paper: #f4f1e6;
  --ink: #16130f;
  --red: #e3002b;
  --blue: #0066db;
  --yellow: #ffd900;
  --gray: #6e685c;
  --bd: 3px solid var(--ink);
  --mono: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: "Grotesk", system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.55;
}

a { color: inherit; }

.wrap { max-width: 1280px; margin: 0 auto; padding: 0 32px; }

/* ---------- masthead ---------- */
.masthead {
  border-bottom: var(--bd);
  background: var(--paper);
  position: sticky;
  top: 0;
  z-index: 10;
}
.masthead .wrap {
  display: flex;
  align-items: center;
  gap: 40px;
  padding-top: 18px;
  padding-bottom: 18px;
}
.brand {
  font-family: "Soria", serif;
  font-size: 26px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}
.brand .mark {
  width: 16px;
  height: 22px;
  background: var(--red);
  border: 2px solid var(--ink);
  display: inline-block;
}
.filters {
  display: flex;
  gap: 6px;
  margin-left: auto;
  flex-wrap: wrap;
}
.filters a {
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  text-decoration: none;
  padding: 6px 12px;
  border: 2px solid transparent;
}
.filters a:hover,
.filters a.on {
  border-color: var(--ink);
  background: var(--yellow);
  box-shadow: 3px 3px 0 var(--ink);
}
.ext {
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  text-decoration: none;
  border: 2px solid var(--ink);
  padding: 6px 12px;
  white-space: nowrap;
}
.ext:hover { background: var(--ink); color: var(--paper); }

/* ---------- chips & meta ---------- */
.chips { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.chip {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: 2px solid var(--ink);
  padding: 3px 8px;
  background: var(--paper);
}
.chip.c-red { background: var(--red); color: var(--paper); }
.chip.c-blue { background: var(--blue); color: var(--paper); }
.chip.c-yellow { background: var(--yellow); }
.meta {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--gray);
}

/* ---------- covers (pure CSS, no images) ---------- */
.cover {
  aspect-ratio: 16 / 9.5;
  border: var(--bd);
  box-shadow: 8px 8px 0 var(--ink);
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 24px;
}
.cv-grid {
  background:
    repeating-linear-gradient(0deg, rgba(22, 19, 15, 0.08) 0 1px, transparent 1px 28px),
    repeating-linear-gradient(90deg, rgba(22, 19, 15, 0.08) 0 1px, transparent 1px 28px),
    var(--paper);
}
.cv-ink { background: var(--ink); color: var(--paper); }
.cv-ink .cv-word { color: var(--paper); }
.cv-word {
  font-family: "Soria", serif;
  font-size: clamp(40px, 5.5vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.01em;
}
.cv-word em { font-family: "Instrument", serif; font-style: italic; }
.marker { background: var(--yellow); color: var(--ink); padding: 0 14px; }
.marker.m-blue { background: var(--blue); color: var(--paper); }
.marker.m-red { background: var(--red); color: var(--paper); }
.cv-corner {
  position: absolute;
  top: 14px;
  left: 16px;
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  display: flex;
  align-items: center;
  gap: 8px;
}
.cv-corner::before {
  content: "";
  width: 10px;
  height: 14px;
  background: var(--red);
  border: 2px solid currentColor;
  display: inline-block;
}
.cv-shapes span { position: absolute; display: block; }
.cv-shapes .s1 {
  width: 54px; height: 54px; border-radius: 50%;
  background: var(--yellow); border: 3px solid var(--ink);
  bottom: 18px; right: 22px;
}
.cv-shapes .s2 {
  width: 0; height: 0;
  border-left: 24px solid transparent;
  border-right: 24px solid transparent;
  border-bottom: 42px solid var(--blue);
  top: 20px; right: 60px;
}
.cv-shapes .s3 {
  width: 70px; height: 16px;
  background: var(--red); border: 3px solid var(--ink);
  bottom: 26px; left: 24px;
}

/* ---------- featured ---------- */
.feature {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 56px;
  padding: 56px 0;
  border-bottom: var(--bd);
  align-items: center;
}
.feature .meta { margin: 14px 0 26px; display: block; }
.feature h1 {
  font-family: "Soria", serif;
  font-size: clamp(38px, 4vw, 58px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 22px;
}
.feature h1 a { text-decoration: none; }
.feature h1 a:hover { background: var(--yellow); }
.feature .excerpt { font-size: 18px; max-width: 46ch; margin-bottom: 26px; }
.read {
  font-family: var(--mono);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  text-decoration: none;
  border-bottom: 3px solid var(--red);
  padding-bottom: 3px;
}
.read:hover { background: var(--red); color: var(--paper); }

/* ---------- who we are / what we do ---------- */
.who {
  background: var(--ink);
  color: var(--paper);
  border: var(--bd);
  box-shadow: 10px 10px 0 var(--red);
  margin: 56px 0;
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.who h2 {
  font-family: "Soria", serif;
  font-size: 34px;
  margin-bottom: 18px;
}
.who h2 .dot { color: var(--red); }
.who p { color: #d8d2c2; max-width: 52ch; }
.who p strong { color: var(--paper); }
.who ol { list-style: none; }
.who ol li {
  padding: 10px 0;
  border-bottom: 1px solid #3a352c;
  display: flex;
  gap: 14px;
  align-items: baseline;
}
.who ol li:last-child { border-bottom: 0; }
.who ol li a { text-decoration: none; }
.who ol li a:hover { color: var(--yellow); }
.who .n { font-family: var(--mono); font-size: 12px; letter-spacing: 0.1em; }
.n.c-red { color: #ff5c74; }
.n.c-blue { color: #6aa5ff; }
.n.c-yellow { color: var(--yellow); }
.n.c-paper { color: var(--paper); }

/* ---------- post grid ---------- */
.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  border-bottom: var(--bd);
  padding-bottom: 12px;
  margin-bottom: 40px;
}
.section-head h2 {
  font-family: "Soria", serif;
  font-size: 30px;
}
.posts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  padding-bottom: 72px;
}
.card {
  border: var(--bd);
  background: var(--paper);
  box-shadow: 6px 6px 0 var(--ink);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}
.card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0 var(--ink);
}
.card .cover {
  border: 0;
  border-bottom: var(--bd);
  box-shadow: none;
  aspect-ratio: 16 / 10;
}
.card .cv-word { font-size: clamp(30px, 3vw, 44px); }
.card-body { padding: 22px 22px 18px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.card h3 {
  font-family: "Soria", serif;
  font-size: 24px;
  line-height: 1.15;
}
.card .excerpt {
  font-size: 15px;
  color: #3d382e;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card-foot {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

/* ---------- dossier pages ---------- */
.pagehead { padding: 64px 0 40px; border-bottom: var(--bd); margin-bottom: 48px; }
.pagehead .kicker {
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--kicker-color, var(--red));
  margin-bottom: 14px;
  display: block;
}
.pagehead h1 {
  font-family: "Soria", serif;
  font-size: clamp(44px, 6vw, 72px);
  letter-spacing: -0.01em;
  line-height: 1;
}
.pagehead .lede {
  font-family: "Instrument", serif;
  font-style: italic;
  font-size: 20px;
  color: var(--gray);
  margin-top: 12px;
}
.entry {
  border: var(--bd);
  box-shadow: 6px 6px 0 var(--ink);
  background: var(--paper);
  padding: 28px 32px;
  margin-bottom: 32px;
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 20px;
  scroll-margin-top: 110px;
}
.entry:target { box-shadow: 6px 6px 0 var(--red); }
.entry .num {
  font-family: "Anton", sans-serif;
  font-size: 30px;
  color: var(--kicker-color, var(--ink));
  line-height: 1.1;
}
.entry h2 {
  font-family: "Soria", serif;
  font-size: 27px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.entry p { margin-bottom: 10px; max-width: 75ch; }
.entry p:last-child { margin-bottom: 0; }
.entry code {
  font-family: var(--mono);
  font-size: 0.88em;
  background: #e8e3d3;
  border: 1px solid #c9c2ab;
  padding: 1px 5px;
}
.entry a { text-decoration-color: var(--red); text-decoration-thickness: 2px; }
.tag {
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: 2px solid var(--ink);
  padding: 2px 8px;
  background: var(--yellow);
  vertical-align: middle;
}

/* ---------- blog post (article) ---------- */
.post { max-width: 780px; margin: 0 auto; padding: 72px 32px 96px; }
.post-head { text-align: center; margin-bottom: 48px; }
.post-head .chips { justify-content: center; margin-bottom: 26px; }
.post-head h1 {
  font-family: "Soria", serif;
  font-size: clamp(40px, 5.5vw, 62px);
  line-height: 1.06;
  letter-spacing: -0.01em;
  margin-bottom: 22px;
}
.post-head .sub {
  font-size: 20px;
  color: #3d382e;
  max-width: 56ch;
  margin: 0 auto 26px;
}
.post-head .meta { font-size: 13px; }
.rule { border: 0; border-top: var(--bd); margin: 0 0 48px; }
.post h2 {
  font-family: "Soria", serif;
  font-size: 32px;
  margin: 48px 0 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.post h2::before {
  content: "";
  width: 12px;
  height: 18px;
  background: var(--red);
  border: 2px solid var(--ink);
  flex: none;
}
.post p { font-size: 18px; line-height: 1.7; margin-bottom: 18px; }
.post ul { margin: 0 0 18px 4px; list-style: none; }
.post ul li {
  font-size: 18px;
  line-height: 1.6;
  padding-left: 26px;
  position: relative;
  margin-bottom: 12px;
}
.post ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 10px;
  height: 10px;
  background: var(--yellow);
  border: 2px solid var(--ink);
}
.post code {
  font-family: var(--mono);
  font-size: 0.88em;
  background: #e8e3d3;
  border: 1px solid #c9c2ab;
  padding: 1px 5px;
}
.post .back {
  display: inline-block;
  margin-top: 56px;
  font-family: var(--mono);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  text-decoration: none;
  border: 2px solid var(--ink);
  padding: 8px 16px;
}
.post .back:hover { background: var(--ink); color: var(--paper); }

/* ---------- footer ---------- */
.foot {
  border-top: var(--bd);
  padding: 26px 0;
}
.foot .wrap {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--gray);
}
.foot a { color: var(--ink); text-decoration: none; border-bottom: 2px solid var(--red); }
.foot a:hover { background: var(--red); color: var(--paper); }
.foot .links { display: flex; gap: 18px; flex-wrap: wrap; }

/* ---------- responsive ---------- */
@media (max-width: 960px) {
  .feature { grid-template-columns: 1fr; gap: 32px; }
  .who { grid-template-columns: 1fr; padding: 32px; }
  .posts { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .posts { grid-template-columns: 1fr; }
  .masthead .wrap { gap: 16px; flex-wrap: wrap; }
  .filters { margin-left: 0; }
  .entry { grid-template-columns: 1fr; gap: 8px; }
}

/* ---------- full-text overlay (post pages) ---------- */
.btn-full {
  display: inline-block;
  margin-top: 12px;
  font-family: var(--mono);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border: var(--bd);
  background: var(--ink);
  color: var(--paper);
  padding: 14px 28px;
  cursor: pointer;
  box-shadow: 6px 6px 0 var(--red);
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}
.btn-full:hover { transform: translate(-2px, -2px); box-shadow: 8px 8px 0 var(--red); }

.full-overlay {
  position: fixed;
  inset: 0;
  background: rgba(22, 19, 15, 0.78);
  z-index: 9000;
  display: grid;
  place-items: center;
  padding: 24px;
}
.full-overlay[hidden] { display: none; }
.full-box {
  width: 70%;
  max-height: 86vh;
  overflow-y: auto;
  background: var(--paper);
  border: var(--bd);
  box-shadow: 14px 14px 0 var(--red);
  padding: 56px 64px;
  position: relative;
}
.full-box .post { max-width: none; margin: 0; padding: 0; }
.full-box .post-head { margin-bottom: 32px; }
.full-box .post-head h1 { font-size: clamp(30px, 4vw, 46px); }
.full-close {
  position: sticky;
  top: 0;
  float: right;
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: 2px solid var(--ink);
  background: var(--paper);
  padding: 6px 12px;
  cursor: pointer;
  z-index: 1;
}
.full-close:hover { background: var(--ink); color: var(--paper); }
@media (max-width: 800px) {
  .full-box { width: 100%; max-height: 92vh; padding: 32px 24px; }
}

/* ---------- manifesto button (who band) ---------- */
.who-btn {
  display: inline-block;
  margin-top: 24px;
  font-family: var(--mono);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  background: var(--yellow);
  color: var(--ink);
  border: 3px solid var(--paper);
  padding: 14px 26px;
  text-decoration: none;
  box-shadow: 6px 6px 0 var(--red);
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}
.who-btn:hover { transform: translate(-2px, -2px); box-shadow: 8px 8px 0 var(--red); }

/* ---------- desktop only ---------- */
.mobile-block { display: none; }
@media (max-width: 900px) {
  body > *:not(.mobile-block) { display: none !important; }
  .mobile-block {
    display: grid;
    place-items: center;
    min-height: 100vh;
    padding: 40px 28px;
    text-align: center;
  }
  .mobile-block .mb-box {
    border: var(--bd);
    box-shadow: 10px 10px 0 var(--red);
    padding: 48px 32px;
    background: var(--paper);
  }
  .mobile-block h2 { font-family: "Soria", serif; font-size: 40px; margin-bottom: 16px; }
  .mobile-block h2 span { color: var(--red); }
  .mobile-block p {
    font-family: var(--mono);
    font-size: 13px;
    letter-spacing: 0.06em;
    color: var(--gray);
    max-width: 34ch;
    margin: 0 auto;
  }
}

/* ---------- learn something new ---------- */
.learn { max-width: 900px; margin: 0 auto; padding: 64px 32px 96px; }
.learn-head { text-align: center; margin-bottom: 40px; }
.learn-head .chips { justify-content: center; margin-bottom: 26px; }
.learn-head h1 {
  font-family: "Soria", serif;
  font-size: clamp(40px, 5.5vw, 62px);
  line-height: 1.06;
}
.learn-box {
  border: var(--bd);
  box-shadow: 8px 8px 0 var(--ink);
  background: var(--paper);
  padding: 40px;
}
.learn-box[hidden] { display: none; }
.learn-h2 { font-family: "Soria", serif; font-size: 34px; margin-bottom: 20px; }
.learn-h2 .dot, .learn-head .dot { color: var(--red); }
.learn-rules { list-style: none; margin-bottom: 28px; }
.learn-rules li {
  padding: 12px 0;
  border-bottom: 1px solid #d8d2c2;
  display: flex;
  gap: 16px;
  align-items: baseline;
  font-size: 17px;
}
.learn-rules li:last-child { border-bottom: 0; }
.learn-rules .n { font-family: var(--mono); font-size: 12px; letter-spacing: 0.1em; flex-shrink: 0; }
.learn-rules .n.c-red { color: var(--red); }
.learn-rules .n.c-blue { color: var(--blue); }
.learn-rules .n.c-yellow { color: #b89b00; }
.learn-rules .n.c-paper { color: var(--gray); }

.learn-modes { display: flex; gap: 10px; margin-bottom: 8px; }
.learn-mode {
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: 2px solid var(--ink);
  background: var(--paper);
  padding: 8px 16px;
  cursor: pointer;
}
.learn-mode.on { background: var(--yellow); box-shadow: 3px 3px 0 var(--ink); }
.learn-mode-note { font-family: var(--mono); font-size: 12px; color: var(--gray); margin-bottom: 24px; }

.learn-btn {
  display: inline-block;
  font-family: var(--mono);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: 2px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  padding: 12px 24px;
  cursor: pointer;
  box-shadow: 4px 4px 0 var(--red);
  text-decoration: none;
}
.learn-btn:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 var(--red); }
.learn-btn:disabled { opacity: 0.4; cursor: default; transform: none; }
.learn-btn-ghost { background: var(--paper); color: var(--ink); box-shadow: 4px 4px 0 var(--ink); }
.learn-btn-ghost:hover { box-shadow: 6px 6px 0 var(--ink); }
.learn-btn-danger { background: var(--red); }
.learn-link {
  display: inline-block;
  margin-top: 18px;
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: none;
  border: 0;
  color: var(--gray);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.learn-link:hover { color: var(--red); }

.learn-center { text-align: center; }
.learn-phase-tag {
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gray);
  margin-bottom: 12px;
}
.learn-timer {
  font-family: "Anton", sans-serif;
  font-size: clamp(88px, 14vw, 150px);
  line-height: 1;
  margin: 10px 0 18px;
}
.learn-timer-rec { color: var(--red); display: flex; align-items: center; justify-content: center; gap: 18px; }
.rec-dot {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--red);
  animation: recpulse 1s ease-in-out infinite;
}
@keyframes recpulse { 50% { opacity: 0.25; } }
.learn-note { font-size: 16px; color: #3d382e; margin-bottom: 22px; }
.learn-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.learn-err { font-family: var(--mono); font-size: 13px; color: var(--red); margin-top: 16px; min-height: 18px; }

.learn-topic {
  font-family: "Soria", serif;
  font-size: clamp(30px, 4.5vw, 48px);
  line-height: 1.1;
  margin: 18px 0 28px;
}
#ph-drawn .chips { margin-bottom: 4px; }

.learn-spinner { display: flex; gap: 12px; justify-content: center; margin: 34px 0 22px; }
.learn-spinner span {
  width: 18px; height: 18px; background: var(--ink); border: 2px solid var(--ink);
  animation: learnbounce 0.9s ease-in-out infinite;
}
.learn-spinner span:nth-child(2) { animation-delay: 0.15s; background: var(--red); }
.learn-spinner span:nth-child(3) { animation-delay: 0.3s; background: var(--yellow); }
@keyframes learnbounce { 50% { transform: translateY(-14px); } }

.learn-overall { display: flex; align-items: baseline; gap: 6px; margin: 22px 0 26px; }
.learn-overall span:first-child { font-family: "Anton", sans-serif; font-size: 74px; line-height: 1; }
.learn-overall-of { font-family: var(--mono); font-size: 18px; color: var(--gray); }
.score-row { display: flex; align-items: center; gap: 14px; margin-bottom: 12px; }
.score-label {
  font-family: var(--mono); font-size: 12px; text-transform: uppercase;
  letter-spacing: 0.1em; width: 90px; text-align: right; flex-shrink: 0;
}
.score-bar { flex: 1; height: 20px; border: 2px solid var(--ink); background: #fff; }
.score-bar span { display: block; height: 100%; width: 0; transition: width 0.7s ease; }
.score-bar span.ok { background: var(--yellow); }
.score-bar span.mid { background: var(--blue); }
.score-bar span.bad { background: var(--red); }
.score-val { font-family: var(--mono); font-size: 13px; width: 46px; }
.learn-verdict-text { font-size: 18px; line-height: 1.7; margin-bottom: 28px; }
#recReview audio { width: 100%; margin-bottom: 18px; }

/* homepage banner */
.learn-banner {
  border: var(--bd);
  box-shadow: 8px 8px 0 var(--ink);
  background: var(--yellow);
  padding: 36px 44px;
  margin: 56px 0;
  display: flex;
  align-items: center;
  gap: 36px;
  justify-content: space-between;
}
.learn-banner h2 { font-family: "Soria", serif; font-size: 32px; margin-bottom: 8px; }
.learn-banner p { max-width: 56ch; }
.learn-banner .learn-btn { flex-shrink: 0; }
@media (max-width: 960px) {
  .learn-banner { flex-direction: column; align-items: flex-start; }
}
.learn-banner h2 .dot { color: var(--red); }

/* judge key (BYOK) */
.judge-key { margin-top: 26px; border-top: 1px solid #d8d2c2; padding-top: 18px; text-align: left; }
.judge-key label {
  display: block;
  font-family: var(--mono); font-size: 11px; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--gray); margin-bottom: 10px;
}
.judge-key-row { display: flex; gap: 10px; align-items: center; }
.judge-key-row input {
  flex: 1; border: 2px solid var(--ink); background: #fff;
  padding: 9px 12px; font-family: var(--mono); font-size: 13px;
}
.judge-key-row input:focus { outline: 3px solid var(--yellow); }
.judge-key-row .learn-btn { padding: 9px 18px; box-shadow: 3px 3px 0 var(--ink); }
.judge-key-row .learn-link { margin-top: 0; }
