*, *::before, *::after {
  box-sizing: border-box;
}

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

:root {
  --kiwi: #8BC34A;
  --kiwi-soft: #AED581;
  --yellow: #FFEB3B;
  --orange: #FF9800;
  --cream: #FFF8E1;
  --pale: #F0F4C3;
  --deep-green: #1B5E20;
  --ink-green: #0D3B0F;
  --ink: #2D2A26;
  --white: #FFFFFF;
  --rail-w: 280px;
  --display: Impact, "Arial Black", sans-serif;
  --body: "Inter", system-ui, -apple-system, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --mono: "Roboto Mono", SFMono-Regular, Consolas, "Liberation Mono", "Courier New", monospace;
  --step-display: clamp(3rem, 8vw, 6rem);
  --step-h1: clamp(2rem, 5vw, 3.5rem);
  --step-h2: clamp(1.5rem, 3.5vw, 2.5rem);
  --step-h3: clamp(1.25rem, 2.5vw, 1.75rem);
  --shadow-md: 8px 8px 0 rgba(45, 42, 38, .85);
}

body {
  margin: 0;
  margin-left: var(--rail-w);
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.6;
  background-color: var(--deep-green);
  color: var(--cream);
  min-height: 100vh;
  background-image:
    linear-gradient(rgba(139, 195, 74, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139, 195, 74, .05) 1px, transparent 1px);
  background-size: 28px 28px;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--kiwi);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

h1, h2, h3, h4 {
  line-height: 1.2;
  color: var(--cream);
}

h1 {
  font: 800 var(--step-h1)/1.1 var(--display);
  text-transform: uppercase;
}

h2 {
  font: 800 var(--step-h2)/1.2 var(--display);
  text-transform: uppercase;
}

h3 {
  font: 700 var(--step-h3)/1.3 var(--display);
  text-transform: uppercase;
}

#main-content {
  position: relative;
  z-index: 2;
  min-height: 55vh;
}

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: -80px;
  left: 16px;
  z-index: 1000;
  background: var(--yellow);
  color: var(--ink);
  padding: 10px 18px;
  font: 800 .85rem/1 var(--body);
  text-transform: uppercase;
  letter-spacing: .1em;
  border: 3px solid var(--ink);
  box-shadow: 5px 5px 0 rgba(45, 42, 38, .85);
  text-decoration: none;
}

.skip-link:focus-visible {
  top: 12px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: var(--rail-w);
  z-index: 400;
  display: flex;
  flex-direction: column;
  background: var(--ink-green);
  border-right: 4px solid var(--kiwi);
  box-shadow: 8px 0 24px rgba(0, 0, 0, .35);
}

.header-bar {
  padding: 26px 18px 16px;
  position: relative;
  z-index: 3;
}

.brand-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 0;
}

.brand-mark {
  flex: 0 0 auto;
  display: block;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  position: relative;
  background:
    radial-gradient(circle at 50% 42%, var(--pale) 0 22%, var(--kiwi) 23% 55%, var(--kiwi-soft) 56% 100%);
  border: 3px solid var(--ink);
  box-shadow: 3px 3px 0 rgba(45, 42, 38, .9);
}

.brand-mark::before {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--ink);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow:
    0 -9px 0 var(--ink),
    0 9px 0 var(--ink),
    9px 0 0 var(--ink),
    -9px 0 0 var(--ink),
    6px -6px 0 var(--ink),
    -6px 6px 0 var(--ink),
    6px 6px 0 var(--ink),
    -6px -6px 0 var(--ink);
}

.brand-mark--mini {
  width: 34px;
  height: 34px;
}

.brand-mark--mini::before {
  width: 3px;
  height: 3px;
  box-shadow:
    0 -6px 0 var(--ink),
    0 6px 0 var(--ink),
    6px 0 0 var(--ink),
    -6px 0 0 var(--ink),
    4px -4px 0 var(--ink),
    -4px 4px 0 var(--ink),
    4px 4px 0 var(--ink),
    -4px -4px 0 var(--ink);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  min-width: 0;
}

.brand-name {
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--yellow);
  letter-spacing: .02em;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand-sub {
  font-family: var(--mono);
  font-size: .66rem;
  color: var(--kiwi);
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-top: 3px;
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 3px solid var(--ink);
  background: var(--yellow);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  box-shadow: 3px 3px 0 rgba(45, 42, 38, .9);
  padding: 0;
}

.nav-toggle-line {
  display: block;
  width: 20px;
  height: 3px;
  background: var(--ink);
  transition: transform .2s;
}

.quick-strip {
  display: flex;
  gap: 8px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.quick-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: 64px;
  padding: 8px 10px;
  background: var(--cream);
  border: 2px solid var(--ink);
  box-shadow: 3px 3px 0 rgba(45, 42, 38, .9);
  color: var(--ink);
  font-family: var(--mono);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform .16s, box-shadow .16s;
}

.quick-pill::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--kiwi);
  box-shadow: inset -1px -1px 0 rgba(0, 0, 0, .25);
}

.quick-pill--live::before {
  background: var(--orange);
}

.quick-pill--save::before {
  background: var(--yellow);
  border: 1px solid var(--ink);
}

.quick-pill--revisit::before {
  background: var(--kiwi);
}

.quick-pill:hover {
  color: var(--ink);
  transform: translate(-1px, -1px);
  box-shadow: 5px 5px 0 var(--ink);
}

.quick-pill-label {
  display: inline;
}

.site-nav {
  flex: 1;
  position: relative;
  min-height: 0;
}

.nav-trackline {
  position: absolute;
  top: 14px;
  bottom: 70px;
  left: 39px;
  width: 4px;
  border-radius: 2px;
  background: repeating-linear-gradient(to bottom, var(--yellow) 0 10px, transparent 10px 18px);
  opacity: .8;
}

.nav-list {
  position: relative;
  z-index: 2;
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.nav-item {
  margin: 0;
  padding: 0;
}

.nav-link {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 18px 10px 24px;
  text-decoration: none;
  color: var(--cream);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .04em;
  transition: color .18s, background .18s;
}

.nav-link:hover {
  color: var(--yellow);
  background: rgba(255, 235, 59, .08);
}

.nav-index {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 3px solid var(--yellow);
  background: var(--ink-green);
  color: var(--yellow);
  font: 800 .68rem/1 var(--mono);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 3px rgba(139, 195, 74, .12);
  transition: background .2s, color .2s, transform .2s;
}

.nav-link:hover .nav-index {
  background: var(--yellow);
  color: var(--ink);
  transform: scale(1.06);
}

.nav-text {
  flex: 1 1 auto;
}

.nav-foot {
  position: absolute;
  bottom: 18px;
  left: 0;
  right: 0;
  text-align: center;
  font-family: var(--mono);
  font-size: .62rem;
  letter-spacing: .2em;
  color: rgba(255, 248, 225, .55);
  text-transform: uppercase;
  padding: 0 12px;
}

.nav-msg {
  margin: 0;
}

.nav-link[aria-current="page"] {
  background: rgba(139, 195, 74, .18);
  color: var(--kiwi);
}

.nav-link[aria-current="page"]::after {
  content: "";
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  animation: pulse 2s infinite;
}

.nav-link[aria-current="page"] .nav-index {
  background: var(--kiwi);
  border-color: var(--kiwi);
  color: var(--ink-green);
  box-shadow: 0 0 0 5px rgba(139, 195, 74, .25);
}

@media (min-width: 768px) and (max-width: 1199px) {
  :root {
    --rail-w: 88px;
  }

  .header-bar {
    padding: 22px 12px 12px;
  }

  .brand-copy {
    display: none;
  }

  .brand-lockup {
    justify-content: center;
  }

  .brand-mark {
    width: 44px;
    height: 44px;
  }

  .quick-strip {
    display: none;
  }

  .nav-list {
    margin-top: 18px;
    gap: 8px;
  }

  .nav-link {
    padding-left: 27px;
  }

  .nav-trackline {
    left: 42px;
  }

  .nav-text,
  .nav-foot {
    display: none;
  }

  .nav-link[aria-current="page"]::after {
    display: none;
  }
}

@media (max-width: 767px) {
  :root {
    --rail-w: 88px;
  }

  body {
    margin-left: 0;
    padding-top: 64px;
  }

  .site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: auto;
    width: auto;
    height: 64px;
    flex-direction: row;
    align-items: center;
    border-right: none;
    border-bottom: 4px solid var(--kiwi);
    box-shadow: 0 6px 18px rgba(0, 0, 0, .3);
  }

  .header-bar {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 0 14px;
    min-width: 0;
  }

  .brand-block {
    flex: 1;
    min-width: 0;
  }

  .brand-copy {
    display: flex;
  }

  .brand-name {
    font-size: 1rem;
  }

  .brand-sub {
    display: none;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand-lockup {
    justify-content: flex-start;
    gap: 10px;
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .quick-strip {
    display: flex;
    margin: 0;
    gap: 6px;
    flex-wrap: nowrap;
  }

  .quick-pill {
    width: 34px;
    height: 34px;
    min-width: 0;
    padding: 0;
    font-size: 0;
    color: transparent;
  }

  .quick-pill-label {
    display: none;
  }

  .quick-pill::before {
    width: 8px;
    height: 8px;
    margin: 0;
    box-shadow: none;
  }

  .quick-pill:hover {
    transform: none;
    box-shadow: 3px 3px 0 rgba(45, 42, 38, .9);
  }

  .site-nav {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: min(78vw, 300px);
    z-index: 390;
    background: var(--ink-green);
    border-right: 4px solid var(--yellow);
    box-shadow: 24px 0 40px rgba(0, 0, 0, .5);
    padding-top: 84px;
    overflow-y: auto;
    transform: translateX(-105%);
    visibility: hidden;
    transition: transform .28s ease, visibility 0s linear .28s;
  }

  .site-nav[data-open] {
    transform: translateX(0);
    visibility: visible;
    transition-delay: 0s;
  }

  .nav-trackline {
    top: 96px;
    bottom: 90px;
    left: 39px;
  }

  .nav-list {
    margin-top: 0;
  }

  .nav-link {
    padding-left: 24px;
  }

  .nav-text,
  .nav-foot {
    display: block;
  }

  .nav-link[aria-current="page"]::after {
    display: none;
  }
}

@media (max-width: 400px) {
  .quick-strip {
    display: none;
  }

  .brand-name {
    font-size: .9rem;
  }
}

.site-footer {
  position: relative;
  z-index: 2;
  background: var(--ink-green);
  color: var(--cream);
  border-top: 4px solid var(--kiwi);
}

.footer-slash {
  height: 12px;
  background: repeating-linear-gradient(135deg, var(--yellow) 0 10px, var(--kiwi) 10px 20px, transparent 20px 30px);
  opacity: .9;
}

.footer-shell {
  width: min(100%, 1280px);
  margin: 0 auto;
  padding: 52px 24px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr 1fr;
  gap: clamp(22px, 4vw, 44px);
}

.footer-column {
  min-width: 0;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.footer-brand-name {
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--yellow);
  text-transform: uppercase;
  letter-spacing: .03em;
}

.footer-trust {
  font-size: .9rem;
  line-height: 1.7;
  color: rgba(255, 248, 225, .78);
  max-width: 34ch;
  margin: 0;
}

.footer-heading {
  margin: 0 0 14px;
  font-family: var(--mono);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--orange);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-heading::before {
  content: "";
  width: 18px;
  height: 4px;
  background: var(--kiwi);
  display: inline-block;
}

.footer-links,
.footer-contact,
.footer-legal {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a,
.footer-legal a {
  color: rgba(255, 248, 225, .86);
  text-decoration: none;
  font-size: .92rem;
  padding: 2px 0 2px 12px;
  border-left: 2px solid rgba(139, 195, 74, .5);
  transition: border-color .18s, color .18s, padding-left .18s;
}

.footer-links a:hover,
.footer-legal a:hover {
  color: var(--yellow);
  border-left-color: var(--yellow);
  padding-left: 16px;
}

.footer-links a[aria-current="page"],
.footer-legal a[aria-current="page"] {
  color: var(--kiwi);
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: .88rem;
  color: rgba(255, 248, 225, .86);
  padding: 2px 0;
}

.contact-tag {
  flex: 0 0 auto;
  display: inline-block;
  background: rgba(139, 195, 74, .15);
  color: var(--kiwi);
  border: 1px solid rgba(139, 195, 74, .4);
  padding: 1px 7px;
  font-family: var(--mono);
  font-size: .65rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.footer-support {
  font-size: .82rem;
  color: rgba(255, 248, 225, .7);
  margin: 16px 0 0;
  border-top: 1px dashed rgba(255, 248, 225, .25);
  padding-top: 12px;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  align-items: center;
  justify-content: space-between;
  margin-top: 44px;
  border-top: 1px solid rgba(255, 248, 225, .18);
  padding: 18px 0 24px;
  font-family: var(--mono);
  font-size: .74rem;
  letter-spacing: .08em;
  color: rgba(255, 248, 225, .68);
}

.footer-copyright,
.footer-icp {
  margin: 0;
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-mast {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-mast {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

.content-wrap {
  width: min(100%, 1180px);
  margin-inline: auto;
  padding-inline: clamp(18px, 4vw, 48px);
}

.section-block {
  position: relative;
  padding-block: clamp(48px, 8vh, 96px);
}

.section-head {
  max-width: 64ch;
  margin-bottom: clamp(24px, 4vw, 40px);
}

.section-kicker {
  margin: 0;
  font-family: var(--mono);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--orange);
}

.section-title {
  margin: 8px 0 10px;
}

.section-note {
  margin: 0;
  color: rgba(255, 248, 225, .78);
  max-width: 58ch;
}

.panel {
  background: var(--cream);
  border: 4px solid var(--ink);
  box-shadow: var(--shadow-md);
  color: var(--ink);
  padding: clamp(18px, 3vw, 32px);
  position: relative;
}

.panel h1,
.panel h2,
.panel h3,
.panel h4 {
  color: var(--ink);
}

.panel--pale {
  background: var(--pale);
  border-color: var(--deep-green);
  box-shadow: 10px 10px 0 var(--deep-green);
}

.panel--dark {
  background: var(--ink-green);
  border-color: var(--kiwi);
  box-shadow: 10px 10px 0 rgba(0, 0, 0, .35);
  color: var(--cream);
}

.panel--dark h2,
.panel--dark h3,
.panel--dark h4 {
  color: var(--cream);
}

.panel--dark .section-note {
  color: rgba(255, 248, 225, .78);
}

.grid {
  display: grid;
  gap: clamp(18px, 3vw, 32px);
  grid-template-columns: 1fr;
}

.grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grid--sidebar {
  grid-template-columns: 1.6fr 1fr;
}

@media (min-width: 768px) and (max-width: 1100px) {
  .grid--3,
  .grid--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid--sidebar {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .grid--2,
  .grid--3,
  .grid--4,
  .grid--sidebar {
    grid-template-columns: 1fr;
  }
}

.run-card {
  display: flex;
  flex-direction: column;
  background: var(--cream);
  border: 4px solid var(--ink);
  box-shadow: var(--shadow-md);
  color: var(--ink);
  overflow: hidden;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
}

.run-card:hover {
  transform: translate(-2px, -4px);
  box-shadow: 14px 16px 0 var(--deep-green);
}

.card-media {
  position: relative;
  aspect-ratio: 16 / 10;
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 235, 59, .25) 0 12%, transparent 26%),
    linear-gradient(135deg, var(--kiwi), var(--ink-green));
  border-bottom: 4px solid var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(115deg, rgba(255, 235, 59, .16) 0 2px, transparent 2px 14px);
  pointer-events: none;
}

.card-body {
  padding: 18px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.card-title {
  margin: 0;
  font-family: var(--display);
  font-size: 1.2rem;
  line-height: 1.25;
  color: var(--ink);
  text-transform: uppercase;
}

.card-meta {
  font-family: var(--mono);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--orange);
}

.card-desc {
  margin: 0;
  font-size: .9rem;
  color: rgba(45, 42, 38, .82);
}

.stat-block {
  background: var(--ink-green);
  border: 4px solid var(--kiwi);
  box-shadow: 8px 8px 0 rgba(0, 0, 0, .35);
  padding: 20px;
  color: var(--cream);
}

.stat-value {
  margin: 0;
  font-family: var(--mono);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  line-height: 1;
  color: var(--yellow);
  font-variant-numeric: tabular-nums;
}

.stat-caption {
  margin: 8px 0 2px;
  font-size: .74rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 248, 225, .72);
}

.stat-trend {
  font-family: var(--mono);
  font-size: .74rem;
  color: var(--kiwi);
}

.data-line {
  font-family: var(--mono);
  font-size: .85rem;
  color: var(--cream);
  border-left: 4px solid var(--orange);
  padding-left: 12px;
  margin: 4px 0;
  font-variant-numeric: tabular-nums;
}

.exhibit {
  position: relative;
  background: var(--cream);
  border: 4px solid var(--ink);
  box-shadow: var(--shadow-md);
  color: var(--ink);
  padding: 24px;
}

.exhibit--dark {
  background: var(--ink-green);
  color: var(--cream);
  border-color: var(--kiwi);
  box-shadow: 10px 10px 0 rgba(139, 195, 74, .2);
}

.exhibit-label {
  position: absolute;
  top: -16px;
  left: 16px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--yellow);
  border: 3px solid var(--ink);
  box-shadow: 3px 3px 0 var(--ink);
  padding: 5px 12px;
  font-family: var(--mono);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink);
  white-space: nowrap;
}

.exhibit-label::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 50%;
}

.tags-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--yellow);
  border: 2px solid var(--ink);
  padding: 5px 10px;
  font-family: var(--mono);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink);
}

.tag::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 24px;
  background: var(--cream);
  color: var(--ink);
  border: 3px solid var(--ink);
  box-shadow: 5px 5px 0 rgba(45, 42, 38, .9);
  font: 800 .85rem/1 var(--body);
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s, box-shadow .18s, background .18s;
}

.btn:hover {
  color: var(--ink);
  background: var(--pale);
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 rgba(45, 42, 38, .9);
}

.btn:active {
  transform: translate(1px, 1px);
  box-shadow: 3px 3px 0 rgba(45, 42, 38, .9);
}

.btn--primary {
  background: var(--kiwi);
  color: var(--ink-green);
}

.btn--primary:hover {
  background: var(--kiwi-soft);
  color: var(--ink-green);
}

.btn--orange {
  background: var(--orange);
  color: var(--ink);
}

.btn--orange:hover {
  background: #FFB74D;
  color: var(--ink);
}

.btn--outline {
  background: transparent;
  color: var(--cream);
  border-color: var(--cream);
  box-shadow: 5px 5px 0 rgba(255, 248, 225, .2);
}

.btn--outline:hover {
  background: rgba(255, 248, 225, .1);
  color: var(--yellow);
  box-shadow: 7px 7px 0 rgba(255, 248, 225, .25);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  font-family: var(--mono);
  font-size: .74rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.crumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
}

.crumb + .crumb::before {
  content: "/";
  color: var(--kiwi);
  font-weight: 700;
}

.crumb a {
  color: rgba(255, 248, 225, .8);
  text-decoration: none;
  border-bottom: 1px solid rgba(139, 195, 74, .6);
}

.crumb a:hover {
  color: var(--yellow);
  border-color: var(--yellow);
}

.crumb [aria-current="page"] {
  color: var(--yellow);
  border-bottom: 2px solid var(--orange);
}

.slash-band {
  height: 32px;
  position: relative;
  overflow: hidden;
}

.slash-band--thick {
  height: 48px;
}

.slash-band::before {
  content: "";
  position: absolute;
  top: 0;
  left: -5%;
  width: 110%;
  height: 100%;
  background: linear-gradient(100deg, var(--yellow) 0 22%, var(--kiwi) 22% 46%, transparent 46%);
  transform: skewX(-6deg);
}

.slash-band--reverse::before {
  background: linear-gradient(100deg, transparent 0 40%, var(--kiwi) 40% 68%, var(--yellow) 68%);
  transform: skewX(6deg);
}

.speed-lines {
  position: relative;
}

.speed-lines::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    repeating-linear-gradient(115deg, rgba(255, 235, 59, .1) 0 2px, transparent 2px 18px),
    repeating-linear-gradient(65deg, rgba(139, 195, 74, .07) 0 1px, transparent 1px 12px);
}

.speed-lines > * {
  position: relative;
  z-index: 1;
}

.pulse-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 0 rgba(255, 152, 0, .6);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 152, 0, .55);
  }

  70% {
    box-shadow: 0 0 0 12px rgba(255, 152, 0, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 152, 0, 0);
  }
}

.progress-rail {
  position: fixed;
  top: 0;
  left: var(--rail-w);
  right: 0;
  height: 4px;
  z-index: 900;
  pointer-events: none;
}

.progress-rail::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 248, 225, .18);
}

.progress-fill {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--kiwi), var(--yellow));
  transform-origin: 0 50%;
  transform: scaleX(0);
}

@media (max-width: 1199px) {
  .progress-rail {
    left: 88px;
  }
}

@media (max-width: 767px) {
  .progress-rail {
    left: 0;
  }
}

.back-top {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 800;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--ink);
  border: 3px solid var(--ink);
  box-shadow: 5px 5px 0 rgba(45, 42, 38, .9);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: opacity .25s, transform .25s, box-shadow .25s;
  padding: 0;
}

.back-top[data-visible] {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-top:hover {
  transform: translateY(-2px);
  box-shadow: 7px 9px 0 rgba(45, 42, 38, .9);
}

.back-top > span {
  display: block;
  width: 12px;
  height: 12px;
  border-left: 3px solid currentColor;
  border-top: 3px solid currentColor;
  transform: rotate(45deg) translate(2px, 3px);
}

[data-reveal] {
  transition: opacity .6s ease, transform .6s ease;
}

[data-reveal][data-reveal-ready] {
  opacity: 0;
  transform: translateY(28px);
}

[data-reveal][data-revealed] {
  opacity: 1;
  transform: none;
}

:focus-visible {
  outline: 4px solid var(--yellow);
  outline-offset: 2px;
  border-radius: 2px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  [data-reveal],
  [data-reveal][data-reveal-ready] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
