:root {
  --bg: #09090b;
  --panel: #121218;
  --panel-2: #1b1b24;
  --text: #f6f3ee;
  --muted: #b9b2a8;
  --orange: #ff6a00;
  --yellow: #ffd166;
  --blue: #3b82f6;
  --red: #ef233c;
  --line: rgba(255,255,255,.12);
  --shadow: 0 24px 80px rgba(0,0,0,.38);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
}

a { color: inherit; }
.wrap { width: min(1120px, calc(100% - 32px)); margin-inline: auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(9, 9, 11, .78);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  text-decoration: none;
  letter-spacing: -.02em;
}
.logo-mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--orange), var(--red));
  color: #111;
  box-shadow: 0 10px 30px rgba(255, 106, 0, .35);
}
.nav-links { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; justify-content: flex-end; }
.nav-links a {
  color: var(--muted);
  font-weight: 700;
  font-size: .9rem;
  text-decoration: none;
}
.nav-links a:hover { color: var(--text); }
.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  border-radius: 10px;
  padding: 8px 10px;
  font-size: 1.2rem;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 690px;
  display: grid;
  align-items: center;
  border-bottom: 1px solid var(--line);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 22% 20%, rgba(255,106,0,.28), transparent 30%),
    radial-gradient(circle at 75% 30%, rgba(59,130,246,.22), transparent 34%),
    linear-gradient(135deg, rgba(255,255,255,.05), transparent 45%),
    repeating-linear-gradient(-8deg, rgba(255,255,255,.035) 0 2px, transparent 2px 20px),
    #09090b;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: auto -10% -28% -10%;
  height: 340px;
  background: radial-gradient(ellipse at center, rgba(255,255,255,.16), transparent 65%);
  filter: blur(20px);
  transform: rotate(-2deg);
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) 380px;
  gap: 42px;
  align-items: center;
  padding: 92px 0;
}
.kicker, .section-kicker {
  color: var(--yellow);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .82rem;
}
.hero h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(3.5rem, 8vw, 7.6rem);
  line-height: .86;
  letter-spacing: -.08em;
  text-transform: uppercase;
  text-shadow: 0 8px 0 rgba(0,0,0,.35), 0 0 34px rgba(255,106,0,.18);
}
.hero-text {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  margin: 28px 0;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 13px 20px;
  font-weight: 900;
  text-decoration: none;
  border: 1px solid transparent;
}
.button.primary {
  background: linear-gradient(135deg, var(--orange), var(--red));
  color: #111;
  box-shadow: 0 16px 42px rgba(255, 106, 0, .28);
}
.button.ghost { border-color: var(--line); color: var(--text); background: rgba(255,255,255,.04); }
.button.big { padding: 16px 24px; }

.race-card {
  background: linear-gradient(180deg, rgba(255,255,255,.11), rgba(255,255,255,.04));
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--shadow);
  transform: rotate(2deg);
}
.race-card .badge {
  display: inline-flex;
  background: var(--yellow);
  color: #111;
  border-radius: 999px;
  padding: 6px 10px;
  font-weight: 1000;
  font-size: .78rem;
  text-transform: uppercase;
}
.race-card h2 {
  font-size: 2.2rem;
  line-height: 1;
  margin: 22px 0;
}
.race-card h2 span { color: var(--orange); }
.race-card ul { margin: 0; padding-left: 20px; color: var(--muted); font-weight: 700; }

.split-section { padding: 88px 0; display: grid; grid-template-columns: .9fr 1.1fr; gap: 48px; }
.split-section h2, .wrap > h2, .section-head h2, .submit-card h2 {
  font-size: clamp(2.1rem, 4vw, 4rem);
  line-height: .95;
  letter-spacing: -.05em;
  margin: 0 0 18px;
}
.split-section p { color: var(--muted); font-size: 1.1rem; }
.feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.feature-grid article, .media-strip article {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 20px;
}
.feature-grid strong { display: block; color: var(--text); font-size: 1.25rem; margin-bottom: 6px; }
.feature-grid span { color: var(--muted); }


.marquee {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  border-top: 1px solid rgba(255,255,255,.06);
  background: linear-gradient(90deg, rgba(239,35,60,.18), rgba(255,106,0,.18));
}
.marquee-track {
  display: flex;
  gap: 18px;
  width: max-content;
  padding: 12px 0;
  animation: crawl 25s linear infinite;
}
.marquee-track span {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  padding: 7px 12px;
  color: var(--text);
  font-weight: 1000;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .78rem;
  background: rgba(0,0,0,.22);
}
@keyframes crawl {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.burn-book { padding: 88px 0; }
.section-head.stacked { display: block; max-width: 820px; margin-bottom: 28px; }
.section-head.stacked p:last-child { color: var(--muted); font-size: 1.1rem; }
.burn-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.burn-grid article {
  background:
    radial-gradient(circle at top right, rgba(255,106,0,.16), transparent 38%),
    var(--panel);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 20px;
  min-height: 210px;
}
.burn-grid article span {
  color: var(--orange);
  font-weight: 1000;
}
.burn-grid h3 {
  margin: 10px 0 8px;
  font-size: 1.45rem;
  line-height: 1.05;
}
.burn-grid p { color: var(--muted); margin-bottom: 0; }

.comparison {
  background: linear-gradient(180deg, var(--panel), #0d0d12);
  border-block: 1px solid var(--line);
  padding: 72px 0;
}
.compare-grid { display: grid; grid-template-columns: 1fr auto 1fr; gap: 24px; align-items: stretch; }
.machine {
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 26px;
  min-height: 330px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.025)),
    var(--panel-2);
}
.machine.blaster { box-shadow: inset 0 0 0 1px rgba(255,106,0,.22); }
.machine.warrior { box-shadow: inset 0 0 0 1px rgba(59,130,246,.22); }
.machine-tag {
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 10px;
  color: var(--yellow);
  font-weight: 900;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .1em;
}
.machine h2 { font-size: clamp(1.8rem, 3vw, 3rem); line-height: .98; letter-spacing: -.04em; }
.machine p, .machine dd { color: var(--muted); }
dl { display: grid; gap: 12px; margin-top: 22px; }
dl div { display: flex; justify-content: space-between; gap: 12px; border-top: 1px solid var(--line); padding-top: 12px; }
dt { font-weight: 900; }
dd { margin: 0; text-align: right; }
.versus {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  align-self: center;
  border-radius: 50%;
  font-weight: 1000;
  background: var(--text);
  color: #111;
  box-shadow: var(--shadow);
}

#rules { padding: 88px 0; }
.rules-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 28px; }
.rule { background: var(--panel); border: 1px solid var(--line); border-radius: 18px; padding: 18px; }
.rule span { color: var(--orange); font-weight: 1000; }
.rule p { margin-bottom: 0; color: var(--muted); }

.leaderboard-section { padding: 74px 0; background: var(--panel); border-block: 1px solid var(--line); }
.section-head { display: flex; justify-content: space-between; gap: 24px; align-items: end; margin-bottom: 24px; }
.section-head p { color: var(--muted); }
code { color: var(--yellow); }
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 20px; }
table { width: 100%; border-collapse: collapse; min-width: 780px; background: #0f0f15; }
th, td { padding: 16px; text-align: left; border-bottom: 1px solid var(--line); }
th { color: var(--yellow); font-size: .85rem; text-transform: uppercase; letter-spacing: .1em; }
td { color: var(--muted); font-weight: 700; }
td a { color: var(--text); font-weight: 900; }

.media-strip { padding: 74px 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.media-strip h3 { margin-top: 0; font-size: 1.45rem; }
.media-strip p { color: var(--muted); }

.submit-section { padding: 76px 0; }
.submit-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background:
    radial-gradient(circle at top right, rgba(255,106,0,.25), transparent 36%),
    var(--panel);
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 34px;
}
.submit-card p { color: var(--muted); max-width: 680px; }

.footer { padding: 34px 0; border-top: 1px solid var(--line); color: var(--muted); }
.footer-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 24px; align-items: start; }
.fine-print { font-size: .88rem; }

@media (max-width: 860px) {
  .nav-toggle { display: inline-flex; }
  .nav-links {
    position: absolute;
    inset: 72px 16px auto 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 14px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 10px; }
  .hero-grid, .split-section, .compare-grid, .media-strip, .footer-grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero-grid { padding: 64px 0; }
  .race-card { transform: none; }
  .feature-grid, .rules-grid, .burn-grid { grid-template-columns: 1fr; }
  .versus { justify-self: center; }
  .section-head, .submit-card { align-items: start; flex-direction: column; }
}

.text-link {
  display: inline-flex;
  margin-top: 8px;
  color: var(--yellow);
  font-weight: 1000;
  text-decoration: none;
}
.text-link:hover { text-decoration: underline; }

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 20% 20%, rgba(255,106,0,.28), transparent 30%),
    radial-gradient(circle at 82% 28%, rgba(239,35,60,.18), transparent 34%),
    repeating-linear-gradient(-8deg, rgba(255,255,255,.035) 0 2px, transparent 2px 20px),
    #09090b;
}
.page-hero.compact { padding: 74px 0; }
.page-hero h1 {
  max-width: 920px;
  margin: 0;
  font-size: clamp(3rem, 7vw, 6.4rem);
  line-height: .88;
  letter-spacing: -.07em;
  text-transform: uppercase;
}
.page-hero p:not(.kicker) {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}
.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 36px;
  align-items: center;
}
.stamp-card {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.06);
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow);
  transform: rotate(2deg);
}
.stamp-card span,
.form-stamp {
  display: inline-flex;
  border: 2px solid var(--red);
  color: var(--red);
  border-radius: 10px;
  padding: 7px 10px;
  text-transform: uppercase;
  font-weight: 1000;
  letter-spacing: .12em;
  transform: rotate(-3deg);
}
.stamp-card strong { display: block; margin-top: 20px; font-size: 1.2rem; }
.stamp-card p { color: var(--muted); margin-bottom: 0; }

.paperwork-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) .75fr;
  gap: 24px;
  align-items: start;
  padding: 72px 0;
}
.paper-form,
.report-output,
.tool-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 18px 56px rgba(0,0,0,.22);
}
.form-titlebar {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 18px;
  margin-bottom: 20px;
}
.form-titlebar h2,
.report-output h2,
.tool-card h2 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.8rem);
  line-height: .95;
  letter-spacing: -.045em;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 16px;
}
label {
  display: grid;
  gap: 7px;
  color: var(--text);
  font-weight: 900;
}
input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #0e0e14;
  color: var(--text);
  padding: 12px 13px;
  font: inherit;
  outline: none;
}
input:focus,
select:focus,
textarea:focus { border-color: rgba(255,209,102,.6); box-shadow: 0 0 0 3px rgba(255,209,102,.12); }
fieldset {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px;
  margin: 16px 0;
}
legend { color: var(--yellow); font-weight: 1000; padding: 0 8px; }
.check {
  display: flex;
  align-items: start;
  gap: 10px;
  color: var(--muted);
  font-weight: 800;
  margin: 10px 0;
}
.check input { width: auto; margin-top: 5px; }
.form-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 18px; }
button.button { cursor: pointer; font: inherit; }
.report-output { position: sticky; top: 92px; }
.report-output p,
.tool-card p { color: var(--muted); }
.report-output ul { color: var(--muted); padding-left: 20px; }
.report-number {
  display: inline-flex;
  background: var(--yellow);
  color: #111;
  border-radius: 999px;
  padding: 6px 10px;
  font-weight: 1000;
  margin-bottom: 14px;
}
.severity {
  height: 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  overflow: hidden;
  border: 1px solid var(--line);
  margin: 10px 0 16px;
}
.severity > span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--orange), var(--red));
}

.dumb-grid {
  padding: 72px 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.tool-card.double { grid-column: span 2; }
.generator-box,
.mini-result {
  border: 1px dashed rgba(255,209,102,.45);
  background: rgba(255,209,102,.08);
  border-radius: 18px;
  padding: 18px;
  margin: 18px 0;
  color: var(--text);
  font-size: 1.15rem;
  font-weight: 1000;
}
.tool-card label { margin: 12px 0; }
.bingo-card {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 18px;
}
.bingo-card span,
.sticker-grid span {
  display: grid;
  place-items: center;
  min-height: 70px;
  text-align: center;
  border: 1px solid var(--line);
  background: #0e0e14;
  border-radius: 14px;
  padding: 10px;
  font-weight: 1000;
  color: var(--text);
}
.bingo-card span:nth-child(9) {
  background: linear-gradient(135deg, var(--orange), var(--red));
  color: #111;
}
.sticker-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 18px;
}
.sticker-grid span {
  min-height: 86px;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.roast-list {
  color: var(--muted);
  font-weight: 750;
  padding-left: 20px;
}
.roast-list li { margin: 8px 0; }

@media (max-width: 860px) {
  .page-hero-grid,
  .paperwork-layout,
  .form-grid,
  .dumb-grid { grid-template-columns: 1fr; }
  .stamp-card { transform: none; }
  .report-output { position: static; }
  .tool-card.double { grid-column: span 1; }
  .bingo-card,
  .sticker-grid { grid-template-columns: repeat(2, 1fr); }
}

@media print {
  .site-header,
  .page-hero,
  .paper-form,
  .footer,
  .button { display: none !important; }
  body { background: white; color: black; }
  .wrap { width: 100%; }
  .paperwork-layout { display: block; padding: 0; }
  .report-output {
    position: static;
    border: 3px solid black;
    color: black;
    background: white;
    box-shadow: none;
  }
  .report-output p,
  .report-output ul { color: black; }
}


.small-button { margin-top: 14px; width: max-content; }
.excuse-lab {
  padding: 72px 0 28px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 18px;
  align-items: start;
}
.excuse-control-panel,
.excuse-output-card { min-height: 100%; }
.form-grid.two-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.tool-card select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 14px;
  background: #0b0b10;
  color: var(--text);
  outline: none;
  font: inherit;
}
.tool-card input[type="range"] {
  width: 100%;
  accent-color: var(--orange);
}
.generator-box.huge {
  font-size: 1.35rem;
  line-height: 1.45;
  min-height: 190px;
  display: grid;
  align-items: center;
}
.excuse-pack-section { padding: 34px 0 72px; }
.excuse-pack-grid .button { margin-top: 16px; }
.mini-submit { margin-bottom: 72px; }

@media (max-width: 860px) {
  .excuse-lab,
  .form-grid.two-col { grid-template-columns: 1fr; }
  .generator-box.huge { min-height: auto; }
}


.weston-section {
  border-top: 1px solid var(--line);
}

.weston-hero {
  background:
    radial-gradient(circle at 20% 20%, rgba(59,130,246,.22), transparent 30%),
    radial-gradient(circle at 80% 20%, rgba(255,106,0,.20), transparent 32%),
    #0b0b10;
}

.weston-card {
  border-color: rgba(255, 209, 102, .42);
  box-shadow: 0 24px 80px rgba(255, 106, 0, .12);
}

.weston-lab {
  align-items: stretch;
}

.creator-credit {
  margin: 0;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}


.hulme-preview { padding: 30px 0 74px; }
.hulme-preview-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 1px solid rgba(255, 209, 102, .28);
  border-radius: 28px;
  padding: 30px;
  background:
    radial-gradient(circle at top left, rgba(255,106,0,.22), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.025)),
    var(--panel);
  box-shadow: var(--shadow);
}
.hulme-preview-card h2 { margin: 0; font-size: clamp(2rem, 4vw, 3.5rem); line-height: .94; letter-spacing: -.05em; }
.hulme-preview-card p { color: var(--muted); max-width: 760px; }
.hulme-hero {
  background:
    radial-gradient(circle at 18% 20%, rgba(255,106,0,.30), transparent 30%),
    radial-gradient(circle at 80% 18%, rgba(255,209,102,.18), transparent 32%),
    repeating-linear-gradient(-8deg, rgba(255,255,255,.035) 0 2px, transparent 2px 20px),
    #09090b;
}
.hulme-card {
  border-color: rgba(255, 209, 102, .44);
  box-shadow: 0 24px 80px rgba(255, 106, 0, .15);
}
.hulme-lab { align-items: stretch; }
.hulme-grid-section {
  padding: 28px 0 72px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.hulme-submit { margin-bottom: 72px; }
@media (max-width: 860px) {
  .hulme-preview-card { flex-direction: column; align-items: start; }
  .hulme-grid-section { grid-template-columns: 1fr; }
}
