:root {
  --paper: #f4f4f0;
  --ink: #110e08;
  --buy: #ccff00;
  --muted: #686861;
  --rule: #110e08;
  --rule-soft: #c7c7bf;
  --positive: #577600;
  --sans: "Hanken Grotesk", Arial, sans-serif;
  --mono: "Spline Sans Mono", monospace;
}

* { box-sizing: border-box; }
html { background: var(--paper); color: var(--ink); font-family: var(--mono); }
body { min-width: 320px; min-height: 100vh; margin: 0; background: var(--paper); }
a { color: inherit; text-decoration: none; }

.roadmap-header {
  min-height: 62px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 0 32px;
  border-bottom: 1px solid var(--rule);
}
.wordmark { justify-self: start; font-family: var(--sans); font-size: 15px; font-weight: 900; }
.chain-label { color: var(--muted); font-size: 9px; }
.home-link { justify-self: end; color: var(--muted); font-size: 9px; }
.wordmark:hover, .home-link:hover { color: var(--positive); }
a:focus-visible { outline: 3px solid var(--buy); outline-offset: 3px; }

main { width: min(100%, 1504px); margin: 0 auto; padding: 0 32px 48px; }
.roadmap { padding-top: 66px; }
.roadmap-intro {
  min-height: 238px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
  padding-bottom: 34px;
  border-bottom: 1px solid var(--rule);
}
.roadmap-intro p { margin: 0 0 16px; color: var(--muted); font-size: 9px; }
.roadmap-intro h1 {
  margin: 0;
  font-family: var(--sans);
  font-size: 78px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: .82;
}
.button-mark { width: 132px; margin: 0; text-align: center; }
.button-mark img { width: 112px; height: 112px; display: block; margin: 0 auto 10px; border: 1px solid var(--ink); border-radius: 50%; }
.button-mark figcaption { color: var(--muted); font-size: 8px; }

.pressure { margin-top: 28px; border: 1px solid var(--ink); background: var(--ink); color: var(--paper); }
.pressure-header {
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 18px;
  border-bottom: 1px solid #4a4944;
}
.pressure-header h2 { margin: 0; font-family: var(--sans); font-size: 13px; font-weight: 900; }
.pressure-header p { display: flex; align-items: center; gap: 9px; margin: 0; color: #a9a9a2; font-size: 8px; }
.pressure-header p i { width: 7px; height: 7px; display: block; border-radius: 50%; background: var(--buy); box-shadow: 0 0 0 3px rgb(204 255 0 / 18%); }
.pressure.is-partial .pressure-header p i { background: #ff6a5b; box-shadow: none; }

.pressure-metrics { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); }
.pressure-metrics a {
  min-width: 0;
  min-height: 142px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px;
  border-right: 1px solid #4a4944;
}
.pressure-metrics a:last-child { border-right: 0; }
.pressure-metrics a:hover { background: #1c1a16; }
.pressure-metrics span, .pressure-metrics small { color: #a9a9a2; font-size: 8px; font-weight: 400; }
.pressure-metrics strong {
  overflow-wrap: anywhere;
  color: var(--buy);
  font-family: var(--sans);
  font-size: 42px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: .9;
}
.pressure-metrics small { display: flex; justify-content: space-between; gap: 12px; }
.pressure-metrics small b { color: var(--buy); font-weight: 400; }

.pressure-progress { padding: 15px 18px 13px; border-top: 1px solid #4a4944; }
.pressure-progress-labels { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 9px; color: #aaa9a2; font-size: 8px; }
.pressure-progress-labels strong { color: var(--paper); font-weight: 500; }
.pressure-track {
  --pressure-progress: 25.9%;
  position: relative;
  height: 38px;
  border: 1px solid #5e5d57;
  background: #24221e;
}
.pressure-fill { width: var(--pressure-progress); height: 100%; background: var(--buy); transition: width 650ms cubic-bezier(.2,.75,.2,1); }
.pressure-marker {
  position: absolute;
  top: 50%;
  left: var(--pressure-progress);
  min-width: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 6px 8px;
  border: 2px solid var(--paper);
  background: var(--ink);
  color: var(--paper);
  transform: translate(-50%, -50%);
  transition: left 650ms cubic-bezier(.2,.75,.2,1);
}
.pressure-marker b { color: var(--buy); font-family: var(--sans); font-size: 11px; }
.pressure-marker small { font-size: 7px; }
.pressure-progress > p { margin: 9px 0 0; color: #8c8b84; font-size: 7px; text-align: right; }

.phase-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); margin-top: 28px; border: 1px solid var(--ink); }
.phase { min-width: 0; min-height: 454px; padding: 24px; border-right: 1px solid var(--ink); }
.phase:last-child { border-right: 0; }
.phase header { min-height: 104px; display: grid; grid-template-columns: 1fr auto; align-content: start; gap: 8px 18px; padding-bottom: 22px; border-bottom: 1px solid currentColor; }
.phase header span { font-size: 9px; }
.phase header strong { grid-column: 1 / -1; font-family: var(--sans); font-size: 34px; font-weight: 900; line-height: .92; }
.phase header em { grid-column: 2; grid-row: 1; justify-self: end; font-size: 8px; font-style: normal; }
.phase ul { display: grid; gap: 0; margin: 14px 0 0; padding: 0; list-style: none; }
.phase li { min-height: 42px; display: flex; align-items: center; gap: 12px; border-bottom: 1px solid rgb(17 14 8 / 18%); font-size: 12px; }
.phase li:last-child { border-bottom: 0; }
.phase li i { width: 16px; height: 16px; flex: 0 0 16px; position: relative; display: block; border: 1px solid currentColor; }
.phase li.is-done i::after { content: ""; position: absolute; width: 7px; height: 4px; left: 3px; top: 3px; border-left: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(-45deg); }

.phase-complete { background: var(--buy); color: var(--ink); }
.phase-next { background: var(--ink); color: var(--paper); }
.phase-next header { border-color: #5c5a54; }
.phase-next header em { color: var(--buy); }
.phase-next li { border-color: #3b3934; }
.phase-next li i { border-color: var(--buy); }
.phase-horizon { background: var(--paper); color: var(--ink); }
.phase-horizon header em { color: var(--muted); }
.phase-horizon li { color: #393833; }

.final-button {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  padding: 14px 18px;
  border: 1px solid var(--ink);
  border-top: 0;
  font-size: 9px;
}
.final-button span { padding: 7px 9px; background: var(--ink); color: var(--buy); font-weight: 700; }
.final-button strong { font-weight: 500; }
.final-button i { width: 4px; height: 4px; border-radius: 50%; background: var(--ink); }
.no-script { margin: 0; padding: 12px 20px; border-top: 1px solid var(--ink); background: var(--buy); font-size: 9px; text-align: center; }

@media (max-width: 980px) {
  .roadmap-intro h1 { font-size: 66px; }
  .pressure-metrics { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pressure-metrics a:nth-child(2) { border-right: 0; }
  .pressure-metrics a:nth-child(-n + 2) { border-bottom: 1px solid #4a4944; }
  .phase { padding: 20px; }
  .phase header strong { font-size: 28px; }
  .phase li { font-size: 10px; }
}

@media (max-width: 720px) {
  .roadmap-header { min-height: 54px; grid-template-columns: 1fr auto; gap: 12px; padding: 0 18px; }
  .chain-label { display: none; }
  main { padding: 0 18px 30px; }
  .roadmap { padding-top: 42px; }
  .roadmap-intro { min-height: 0; align-items: flex-end; gap: 20px; padding-bottom: 26px; }
  .roadmap-intro h1 { font-size: 48px; }
  .roadmap-intro p { margin-bottom: 12px; font-size: 7px; }
  .button-mark { width: 78px; }
  .button-mark img { width: 70px; height: 70px; margin-bottom: 7px; }
  .button-mark figcaption { font-size: 6px; }
  .pressure { margin-top: 18px; }
  .pressure-header { min-height: 62px; align-items: flex-start; flex-direction: column; justify-content: center; gap: 7px; }
  .pressure-metrics a { min-height: 118px; padding: 14px; }
  .pressure-metrics strong { font-size: 30px; }
  .pressure-marker { min-width: 64px; }
  .phase-grid { grid-template-columns: 1fr; margin-top: 18px; }
  .phase { min-height: 0; padding: 20px; border-right: 0; border-bottom: 1px solid var(--ink); }
  .phase:last-child { border-bottom: 0; }
  .phase header { min-height: 84px; }
  .phase header strong { font-size: 30px; }
  .phase li { min-height: 40px; font-size: 11px; }
  .final-button { justify-content: flex-start; }
}

@media (max-width: 420px) {
  .wordmark { font-size: 13px; }
  .home-link { font-size: 7px; }
  .roadmap-intro h1 { font-size: 42px; }
  .pressure-metrics strong { font-size: 27px; }
  .pressure-progress-labels { font-size: 7px; }
}

@media (prefers-reduced-motion: reduce) {
  .pressure-fill, .pressure-marker { transition: none; }
}
