:root {
  --felt:        #0d3628;
  --felt-deep:   #082018;
  --felt-raised: #14452f;
  --cream:       #f6f0e4;
  --card:        #fffdf7;
  --ink:         #16211c;
  --ink-soft:    #4a5a52;
  --red:         #c33a2f;
  --gold:        #d9ab4a;
  --line:        rgba(246,240,228,.16);
  --radius:      14px;
  --shadow:      0 18px 40px rgba(0,0,0,.34);
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--felt);
  background-image:
    radial-gradient(ellipse 120% 80% at 50% -10%, var(--felt-raised) 0%, transparent 60%),
    radial-gradient(ellipse 90% 60% at 50% 110%, var(--felt-deep) 0%, transparent 65%);
  color: var(--cream);
  font: 16px/1.6 ui-serif, Georgia, "Iowan Old Style", "Times New Roman", serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.wrap {
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  padding: 48px 16px 64px;
  flex: 1;
}

.mark {
  font-size: 13px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: ui-sans-serif, -apple-system, "Helvetica Neue", sans-serif;
  font-weight: 600;
  margin: 0 0 32px;
}
.mark a { color: inherit; text-decoration: none; }

h1 {
  font-size: clamp(30px, 7vw, 44px);
  line-height: 1.12;
  margin: 0 0 16px;
  font-weight: 600;
  letter-spacing: -.01em;
}

h2 {
  font-size: 19px;
  margin: 36px 0 10px;
  font-weight: 600;
  letter-spacing: -.005em;
}

p { margin: 0 0 16px; color: rgba(246,240,228,.86); }

a { color: var(--gold); }

.lede { font-size: 19px; color: var(--cream); }

.panel {
  background: var(--card);
  color: var(--ink);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  margin: 0 0 28px;
}
.panel p { color: var(--ink-soft); }
.panel h1, .panel h2 { color: var(--ink); }

.challenger {
  font-family: ui-sans-serif, -apple-system, "Helvetica Neue", sans-serif;
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0 0 6px;
  font-weight: 600;
}

.target {
  font-size: clamp(44px, 13vw, 68px);
  line-height: 1;
  font-weight: 600;
  color: var(--red);
  margin: 4px 0 2px;
  font-variant-numeric: tabular-nums;
}

.target-label {
  font-family: ui-sans-serif, -apple-system, sans-serif;
  font-size: 14px;
  color: var(--ink-soft);
  margin: 0 0 20px;
}

.facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0 0;
  padding: 18px 0 0;
  border-top: 1px solid rgba(22,33,28,.12);
}

.fact {
  font-family: ui-sans-serif, -apple-system, sans-serif;
  font-size: 13px;
  color: var(--ink-soft);
  background: rgba(22,33,28,.05);
  border-radius: 999px;
  padding: 5px 12px;
}
.fact b { color: var(--ink); font-weight: 600; }

.cta {
  display: inline-block;
  background: var(--gold);
  color: #2a1e05;
  font-family: ui-sans-serif, -apple-system, sans-serif;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  padding: 14px 26px;
  border-radius: 999px;
  margin-top: 8px;
}
.cta[aria-disabled="true"] { background: rgba(246,240,228,.14); color: rgba(246,240,228,.66); cursor: default; }

.seed {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
  color: rgba(246,240,228,.5);
  word-break: break-all;
  margin-top: 28px;
}

footer {
  border-top: 1px solid var(--line);
  padding: 22px 16px 34px;
  text-align: center;
  font-family: ui-sans-serif, -apple-system, sans-serif;
  font-size: 13px;
  color: rgba(246,240,228,.52);
}
footer a { color: rgba(246,240,228,.72); margin: 0 9px; text-decoration: none; }
footer a:hover { color: var(--gold); }

.prose { max-width: 640px; }
.prose li { margin-bottom: 8px; color: rgba(246,240,228,.86); }
.prose .updated {
  font-family: ui-sans-serif, -apple-system, sans-serif;
  font-size: 13px;
  color: rgba(246,240,228,.5);
}

/* The HTML `hidden` attribute is applied by the UA stylesheet as display:none,
   which ANY author display rule outranks — `.facts { display: flex }` was
   defeating it and rendering an empty flex row plus its border-top as a stray
   divider. Restore hidden's meaning for every element. */
[hidden] { display: none !important; }
