@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wdth,wght@12..96,75..100,500..800&family=IBM+Plex+Mono:wght@500;600&family=Manrope:wght@400;500;600;700&display=swap');

:root {
  --warren: #f4f8f5;
  --burrow: #17362d;
  --meadow: #2d6f91;
  --clover: #b9e769;
  --carrot: #f57452;
  --fence: #c9d7d0;
  --white: #ffffff;
  --muted: #567068;
  --soft-blue: #eaf4f8;
  --soft-carrot: #fff0eb;
  --shadow: 0 18px 55px rgba(23, 54, 45, 0.1);
  --content: 1180px;
  --round: 24px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--warren);
  color: var(--burrow);
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 0.2em;
}

button,
input,
textarea,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--carrot);
  outline-offset: 4px;
}

.hop-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-160%);
  border-radius: 999px;
  background: var(--white);
  color: var(--burrow);
  padding: 10px 16px;
  font-weight: 800;
  box-shadow: var(--shadow);
  transition: transform 180ms ease;
}

.hop-link:focus {
  transform: translateY(0);
}

.age-ribbon {
  background: var(--burrow);
  color: rgba(255, 255, 255, 0.78);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
}

.age-ribbon__inner {
  width: min(var(--content), calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 34px;
  text-align: center;
}

.age-ribbon__mark {
  display: inline-grid;
  width: 24px;
  height: 24px;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid var(--carrot);
  border-radius: 50%;
  color: var(--white);
  font-weight: 700;
  letter-spacing: -0.06em;
}

.warren-head {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(201, 215, 208, 0.75);
  background: rgba(244, 248, 245, 0.92);
  backdrop-filter: blur(14px);
}

.warren-head.is-scrolled {
  box-shadow: 0 10px 35px rgba(23, 54, 45, 0.08);
}

.warren-head__row {
  width: min(var(--content), calc(100% - 40px));
  min-height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand-burrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--burrow);
  text-decoration: none;
}

.brand-burrow__mark {
  width: 42px;
  height: 42px;
}

.brand-burrow__word {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.22rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.brand-burrow__word span {
  color: var(--meadow);
}

.field-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.field-nav a {
  position: relative;
  color: var(--burrow);
  font-size: 0.84rem;
  font-weight: 700;
  text-decoration: none;
}

.field-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 3px;
  transform: scaleX(0);
  border-radius: 999px;
  background: var(--carrot);
  content: "";
  transition: transform 180ms ease;
}

.field-nav a:hover::after,
.field-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.field-nav__safety {
  border: 1px solid var(--burrow);
  border-radius: 999px;
  padding: 9px 15px;
}

.field-nav__safety::after {
  display: none;
}

.burrow-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--fence);
  border-radius: 50%;
  background: var(--white);
  color: var(--burrow);
  cursor: pointer;
}

.burrow-toggle span,
.burrow-toggle::before,
.burrow-toggle::after {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 99px;
  background: currentColor;
  content: "";
  transition: transform 180ms ease, opacity 180ms ease;
}

.burrow-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.burrow-toggle[aria-expanded="true"]::before {
  transform: translateY(6px) rotate(45deg);
}

.burrow-toggle[aria-expanded="true"]::after {
  transform: translateY(-6px) rotate(-45deg);
}

.main-field {
  overflow: clip;
}

.route-hero {
  position: relative;
  padding: clamp(72px, 8vw, 132px) 0 clamp(80px, 9vw, 142px);
}

.route-hero::before {
  position: absolute;
  top: 48px;
  right: -140px;
  width: 460px;
  height: 460px;
  border: 1px dashed rgba(45, 111, 145, 0.22);
  border-radius: 48% 52% 60% 40%;
  content: "";
  transform: rotate(18deg);
}

.route-hero__grid {
  position: relative;
  width: min(var(--content), calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.72fr);
  align-items: center;
  gap: clamp(52px, 8vw, 112px);
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  color: var(--meadow);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.kicker::before {
  width: 34px;
  height: 2px;
  background: var(--carrot);
  content: "";
}

.route-hero h1 {
  max-width: 780px;
  margin: 0;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: clamp(3.4rem, 7vw, 6.7rem);
  font-weight: 800;
  letter-spacing: -0.048em;
  line-height: 0.94;
}

.route-hero h1 em {
  display: inline-block;
  margin-left: 0.05em;
  color: var(--carrot);
  font-style: normal;
}

.route-hero__lead {
  max-width: 650px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.3vw, 1.16rem);
}

.route-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 32px;
}

.carrot-button,
.outline-button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 22px;
  font-size: 0.87rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.carrot-button {
  background: var(--carrot);
  color: var(--burrow);
  box-shadow: 0 10px 24px rgba(245, 116, 82, 0.25);
}

.outline-button {
  border: 1px solid var(--burrow);
  background: transparent;
}

.carrot-button:hover,
.outline-button:hover {
  transform: translateY(-2px);
}

.route-hero__note {
  max-width: 670px;
  margin: 28px 0 0;
  padding-left: 17px;
  border-left: 3px solid var(--clover);
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.6;
}

.trail-board {
  position: relative;
  min-height: 490px;
  overflow: hidden;
  border-radius: 44px 44px 140px 44px;
  background: var(--burrow);
  color: var(--white);
  box-shadow: var(--shadow);
}

.trail-board::before {
  position: absolute;
  inset: 42px 38px 44px 54px;
  border: 3px dotted rgba(185, 231, 105, 0.5);
  border-left-color: transparent;
  border-radius: 48% 52% 45% 55%;
  content: "";
  transform: rotate(-10deg);
}

.trail-board::after {
  position: absolute;
  right: -45px;
  bottom: -55px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: var(--clover);
  content: "";
}

.trail-board__top {
  position: relative;
  z-index: 2;
  padding: 40px 42px;
}

.trail-board__label {
  margin: 0 0 18px;
  color: var(--clover);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trail-board h2 {
  max-width: 290px;
  margin: 0;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: clamp(2rem, 3vw, 3rem);
  letter-spacing: -0.035em;
  line-height: 1.04;
}

.trail-board__checks {
  position: relative;
  z-index: 2;
  width: 82%;
  margin: 50px 0 0 auto;
  padding: 0 40px 34px;
  display: grid;
  gap: 10px;
}

.trail-board__checks span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.84rem;
  font-weight: 700;
}

.trail-board__checks span::before {
  display: inline-grid;
  width: 22px;
  height: 22px;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--clover);
  color: var(--burrow);
  content: "✓";
  font-size: 0.72rem;
  font-weight: 900;
}

.rabbit-pin {
  position: absolute;
  right: 44px;
  bottom: 42px;
  z-index: 3;
  width: 62px;
  height: 62px;
  border: 8px solid var(--clover);
  border-radius: 50%;
  background: var(--white);
}

.rabbit-pin::before,
.rabbit-pin::after {
  position: absolute;
  top: -29px;
  width: 17px;
  height: 34px;
  border: 7px solid var(--clover);
  border-radius: 50% 50% 20% 20%;
  background: var(--white);
  content: "";
}

.rabbit-pin::before {
  left: 5px;
  transform: rotate(-12deg);
}

.rabbit-pin::after {
  right: 5px;
  transform: rotate(12deg);
}

.reward-hero {
  position: relative;
  overflow: hidden;
  background: var(--burrow);
  color: var(--white);
  padding: 54px 0 62px;
  text-align: center;
}

.reward-hero::before,
.reward-hero::after {
  position: absolute;
  width: 320px;
  height: 320px;
  border: 3px dotted rgba(185, 231, 105, 0.22);
  border-radius: 50%;
  content: "";
}

.reward-hero::before {
  top: -190px;
  left: -80px;
}

.reward-hero::after {
  right: -70px;
  bottom: -220px;
}

.reward-hero__inner {
  position: relative;
  z-index: 1;
  width: min(900px, calc(100% - 40px));
  margin: 0 auto;
}

.reward-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.reward-brand img {
  width: 64px;
  height: 64px;
  border: 3px solid var(--white);
  border-radius: 20px;
  box-shadow: 5px 5px 0 var(--meadow);
}

.reward-brand span {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  font-weight: 800;
  letter-spacing: -0.045em;
}

.reward-brand b {
  color: var(--clover);
}

.reward-hero__eyebrow {
  margin: 0 0 10px;
  color: var(--clover);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.reward-hero h1 {
  max-width: 820px;
  margin: 0 auto;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 0.98;
}

.reward-hero__lead {
  max-width: 680px;
  margin: 18px auto 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1rem;
}

.reward-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 22px;
}

.reward-trust span {
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  padding: 7px 12px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.73rem;
  font-weight: 700;
}

.reward-trust span:last-child {
  border-color: var(--carrot);
  color: var(--white);
}

.reward-hero__button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 26px;
  border: 2px solid var(--burrow);
  border-radius: 8px;
  background: var(--carrot);
  box-shadow: 6px 6px 0 var(--clover);
  color: var(--burrow);
  padding: 0 26px;
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.025em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.reward-hero__button:hover {
  transform: translate(2px, 2px);
  box-shadow: 3px 3px 0 var(--clover);
}

.reward-hero__disclosure {
  max-width: 720px;
  margin: 20px auto 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.68rem;
  line-height: 1.55;
}

.method-yard {
  position: relative;
  background: var(--white);
  padding: clamp(76px, 9vw, 130px) 0;
}

.reward-method {
  padding: 68px 0;
}

.reward-method .section-heading {
  margin-bottom: 34px;
}

.reward-method .section-heading h2 {
  font-size: clamp(2.3rem, 4vw, 3.8rem);
}

.reward-method .method-plot {
  min-height: 170px;
  padding: 24px;
}

.reward-method .method-plot h3 {
  margin: 24px 0 8px;
}

.method-yard__inner,
.shortlist-field,
.help-field,
.safety-strip__inner,
.question-field,
.policy-field,
.foot-warren__inner {
  width: min(var(--content), calc(100% - 40px));
  margin: 0 auto;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(300px, 0.5fr);
  align-items: end;
  justify-content: space-between;
  gap: 44px;
  margin-bottom: 52px;
}

.section-heading h2 {
  max-width: 760px;
  margin: 0;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 750;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
}

.method-plots {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--fence);
  border-bottom: 1px solid var(--fence);
}

.method-plot {
  min-height: 260px;
  padding: 30px 26px;
  border-right: 1px solid var(--fence);
}

.method-plot:last-child {
  border-right: 0;
}

.method-plot__code {
  color: var(--meadow);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

.method-plot h3 {
  margin: 52px 0 14px;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.45rem;
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.method-plot p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.65;
}

.shortlist-zone {
  position: relative;
  background: var(--warren);
  padding: 44px 0 82px;
}

.shortlist-zone::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: max(20px, calc((100vw - var(--content)) / 2 + 24px));
  width: 3px;
  background: repeating-linear-gradient(to bottom, var(--meadow) 0 5px, transparent 5px 13px);
  content: "";
  opacity: 0.3;
}

.bounty-banner {
  margin: 0 0 30px 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 2px solid var(--burrow);
  border-radius: 8px;
  background: var(--burrow);
  box-shadow: 6px 6px 0 var(--clover);
  color: var(--white);
  padding: 12px 18px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.bounty-banner span:first-child {
  color: var(--clover);
  font-size: 0.78rem;
}

.shortlist-head {
  margin: 0 0 28px 92px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 30px;
}

.shortlist-head h2 {
  margin: 0;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: clamp(2.5rem, 4.7vw, 4.4rem);
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.shortlist-head__stamp {
  border: 2px dashed var(--carrot);
  border-radius: 8px;
  padding: 9px 14px;
  background: var(--soft-carrot);
  color: var(--burrow);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.operator-ledger {
  margin-left: 92px;
  display: grid;
  gap: 18px;
}

.operator-row {
  position: relative;
  display: grid;
  grid-template-columns: 56px 150px minmax(160px, 1fr) 104px minmax(220px, 0.8fr) 154px;
  align-items: center;
  gap: 18px;
  min-height: 148px;
  overflow: visible;
  border: 2px solid var(--burrow);
  border-radius: 10px 34px 10px 10px;
  background: var(--white);
  padding: 18px 24px 18px 18px;
  box-shadow: 6px 6px 0 var(--fence);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.operator-row:hover {
  transform: translate(2px, 2px);
  border-color: var(--carrot);
  box-shadow: 3px 3px 0 var(--clover);
}

.operator-row:first-child {
  border-color: var(--carrot);
  box-shadow: 7px 7px 0 var(--clover);
}

.operator-row__flag {
  position: absolute;
  top: -14px;
  left: 84px;
  z-index: 4;
  border: 2px solid var(--burrow);
  border-radius: 5px;
  background: var(--carrot);
  color: var(--burrow);
  padding: 5px 11px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1.2;
  white-space: nowrap;
}

.operator-row::before {
  position: absolute;
  top: 50%;
  left: -93px;
  width: 93px;
  height: 1px;
  border-top: 2px dotted rgba(45, 111, 145, 0.45);
  content: "";
}

.operator-row__rank {
  position: relative;
  z-index: 2;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 50%;
  background: var(--clover);
  color: var(--burrow);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.88rem;
  font-weight: 600;
}

.operator-row:first-child .operator-row__rank::before,
.operator-row:first-child .operator-row__rank::after {
  position: absolute;
  top: -16px;
  width: 11px;
  height: 23px;
  border: 4px solid var(--clover);
  border-radius: 80% 80% 25% 25%;
  background: var(--warren);
  content: "";
}

.operator-row:first-child .operator-row__rank::before {
  left: 9px;
  transform: rotate(-10deg);
}

.operator-row:first-child .operator-row__rank::after {
  right: 9px;
  transform: rotate(10deg);
}

.operator-row__logo {
  display: grid;
  height: 94px;
  place-items: center;
  overflow: hidden;
  border-radius: 12px;
  background: #131b18;
  padding: 12px;
}

.operator-row__logo img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
}

.operator-row__identity h3 {
  margin: 0 0 5px;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.24rem;
  letter-spacing: -0.035em;
}

.operator-row__identity span {
  color: var(--carrot);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.65rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.operator-row__score {
  text-align: center;
}

.operator-row__score strong {
  display: block;
  font-family: "Bricolage Grotesque", sans-serif;
  color: var(--meadow);
  font-size: 2.65rem;
  letter-spacing: -0.06em;
  line-height: 1;
}

.operator-row__score span,
.operator-row__offer span {
  color: var(--muted);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.62rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.operator-row__reviews {
  display: block;
  margin-top: 6px;
  color: var(--meadow);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.56rem;
  font-weight: 600;
  line-height: 1.3;
}

.operator-row__offer strong {
  display: block;
  margin-top: 4px;
  color: var(--burrow);
  font-size: 1rem;
  line-height: 1.45;
}

.operator-row__action {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 2px solid var(--burrow);
  border-radius: 7px;
  background: var(--carrot);
  box-shadow: 3px 3px 0 var(--clover);
  color: var(--burrow);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease;
}

.operator-row__action:hover {
  background: var(--clover);
  box-shadow: 2px 2px 0 var(--carrot);
  color: var(--burrow);
}

.ledger-note {
  margin: 26px 0 0 92px;
  padding: 18px 22px;
  border-radius: 14px;
  background: var(--soft-carrot);
  color: #6b4337;
  font-size: 0.76rem;
  line-height: 1.65;
}

.help-zone {
  background: var(--meadow);
  color: var(--white);
  padding: clamp(76px, 9vw, 126px) 0;
}

.help-field {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.15fr);
  align-items: start;
  gap: clamp(52px, 8vw, 110px);
}

.help-field h2 {
  margin: 0;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: clamp(2.7rem, 5vw, 5rem);
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.help-field__intro p {
  color: rgba(255, 255, 255, 0.78);
}

.help-field__intro a {
  color: var(--clover);
  font-weight: 800;
}

.help-links {
  display: grid;
  gap: 12px;
}

.help-card {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  min-height: 102px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 18px;
  padding: 16px 20px;
  color: var(--white);
  text-decoration: none;
  transition: background 180ms ease, transform 180ms ease;
}

.help-card:hover {
  transform: translateX(4px);
  background: rgba(255, 255, 255, 0.1);
}

.help-card__glyph {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 50%;
  background: var(--clover);
  color: var(--burrow);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.75rem;
  font-weight: 800;
}

.help-card h3 {
  margin: 0;
  font-size: 1rem;
}

.help-card p {
  margin: 3px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.8rem;
  line-height: 1.45;
}

.help-card__arrow {
  font-size: 1.4rem;
}

.safety-strip {
  background: var(--meadow);
  color: var(--white);
  padding: 34px 0;
}

.safety-strip__inner {
  display: grid;
  grid-template-columns: 64px minmax(260px, 1fr) auto;
  align-items: center;
  gap: 22px;
}

.safety-strip__age {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 3px solid var(--carrot);
  border-radius: 50%;
  font-family: "IBM Plex Mono", monospace;
  font-weight: 800;
}

.safety-strip h2 {
  margin: 0;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.55rem;
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.safety-strip p {
  margin: 5px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
}

.safety-strip__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.safety-strip__links a {
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 6px;
  padding: 8px 12px;
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 800;
  text-decoration: none;
}

.safety-strip__links a:first-child {
  border-color: var(--clover);
  background: var(--clover);
  color: var(--burrow);
}

.question-zone {
  padding: clamp(78px, 9vw, 132px) 0;
}

.question-field {
  max-width: 900px;
}

.question-field__title {
  max-width: 720px;
  margin-bottom: 34px;
}

.question-field h2 {
  margin: 0;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: clamp(2.5rem, 4.5vw, 4rem);
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.question-field__title p {
  color: var(--muted);
}

.question-stack {
  border-top: 1px solid var(--fence);
}

.question-stack details {
  border-bottom: 1px solid var(--fence);
}

.question-stack summary {
  position: relative;
  padding: 24px 52px 24px 0;
  cursor: pointer;
  list-style: none;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.question-stack summary::-webkit-details-marker {
  display: none;
}

.question-stack summary::after {
  position: absolute;
  top: 25px;
  right: 2px;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  background: var(--clover);
  content: "+";
  font-family: "IBM Plex Mono", monospace;
  transition: transform 180ms ease;
}

.question-stack details[open] summary::after {
  transform: rotate(45deg);
}

.question-stack details p {
  margin: -5px 52px 25px 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.foot-warren {
  background: var(--burrow);
  color: var(--white);
  padding: 74px 0 34px;
}

.foot-warren__grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.2fr) minmax(130px, 0.5fr) minmax(130px, 0.5fr) minmax(230px, 0.9fr);
  gap: 42px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.foot-warren .brand-burrow {
  color: var(--white);
}

.foot-warren__about {
  max-width: 400px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.84rem;
}

.foot-warren h2 {
  margin: 4px 0 16px;
  color: var(--clover);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.69rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.foot-warren ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.foot-warren li + li {
  margin-top: 8px;
}

.foot-warren li,
.foot-warren a,
.foot-warren address {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
  font-style: normal;
}

.company-lines p {
  margin: 0 0 9px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
  line-height: 1.45;
}

.company-lines strong {
  display: block;
  color: var(--white);
  font-weight: 800;
}

.company-lines a {
  overflow-wrap: anywhere;
}

.foot-warren a:hover {
  color: var(--clover);
}

.foot-warren__trustmarks {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 24px 34px;
  padding: 30px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.foot-warren__trustmarks a,
.foot-warren__trustmarks span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
}

.foot-warren__trustmarks a {
  opacity: 0.76;
  transition: opacity 160ms ease, transform 160ms ease;
}

.foot-warren__trustmarks a:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.foot-warren__trustmarks img {
  display: block;
  width: auto;
  max-width: 180px;
  height: 28px;
  object-fit: contain;
}

.foot-warren__trustmarks .trustmark--age {
  width: 42px;
  height: 42px;
}

.foot-warren__fineprint {
  padding-top: 28px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 30px;
}

.foot-warren__fineprint p {
  max-width: 830px;
  margin: 0;
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.7rem;
  line-height: 1.7;
}

.foot-warren__age {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border: 2px solid var(--carrot);
  border-radius: 50%;
  color: var(--white);
  font-family: "IBM Plex Mono", monospace;
  font-weight: 700;
}

/* Legal and guidance pages */
.policy-hero {
  position: relative;
  overflow: hidden;
  background: var(--soft-blue);
  padding: 76px 0 70px;
}

.policy-hero::after {
  position: absolute;
  top: -95px;
  right: 6vw;
  width: 270px;
  height: 270px;
  border: 3px dotted rgba(45, 111, 145, 0.3);
  border-radius: 50%;
  content: "";
}

.policy-hero__inner {
  position: relative;
  z-index: 1;
  width: min(var(--content), calc(100% - 40px));
  margin: 0 auto;
}

.policy-hero h1 {
  max-width: 850px;
  margin: 0;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: clamp(3.2rem, 7vw, 6.3rem);
  letter-spacing: -0.048em;
  line-height: 0.95;
}

.policy-hero__updated {
  margin: 22px 0 0;
  color: var(--meadow);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.operator-slip {
  max-width: 900px;
  margin-top: 34px;
  border-left: 4px solid var(--carrot);
  background: rgba(255, 255, 255, 0.72);
  padding: 18px 22px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.7;
}

.operator-slip strong {
  color: var(--burrow);
}

.policy-zone {
  padding: 78px 0 112px;
}

.policy-field {
  display: grid;
  grid-template-columns: 260px minmax(0, 760px);
  justify-content: space-between;
  gap: clamp(48px, 8vw, 120px);
}

.policy-index {
  position: sticky;
  top: 118px;
  align-self: start;
  border-top: 3px solid var(--clover);
  padding-top: 18px;
}

.policy-index h2 {
  margin: 0 0 14px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.policy-index ol {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: policy;
}

.policy-index li {
  counter-increment: policy;
}

.policy-index a {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 8px;
  padding: 6px 0;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.35;
  text-decoration: none;
}

.policy-index a::before {
  color: var(--meadow);
  content: counter(policy, decimal-leading-zero);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.64rem;
}

.policy-index a:hover {
  color: var(--burrow);
}

.policy-copy section + section {
  margin-top: 54px;
  padding-top: 54px;
  border-top: 1px solid var(--fence);
}

.policy-copy h2 {
  margin: 0 0 18px;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  letter-spacing: -0.045em;
  line-height: 1.1;
}

.policy-copy h3 {
  margin: 28px 0 8px;
  font-size: 1rem;
}

.policy-copy p,
.policy-copy li {
  color: var(--muted);
  font-size: 0.92rem;
}

.policy-copy ul,
.policy-copy ol {
  padding-left: 1.25rem;
}

.policy-copy li + li {
  margin-top: 8px;
}

.policy-copy a {
  color: var(--meadow);
  font-weight: 700;
}

.plain-callout,
.safety-callout {
  margin: 30px 0;
  border-radius: 18px;
  padding: 24px;
}

.plain-callout {
  background: var(--soft-blue);
}

.safety-callout {
  border-left: 5px solid var(--carrot);
  background: var(--soft-carrot);
}

.support-directory {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.support-directory a {
  min-height: 130px;
  border: 1px solid var(--fence);
  border-radius: 16px;
  background: var(--white);
  padding: 20px;
  text-decoration: none;
  transition: border-color 180ms ease, transform 180ms ease;
}

.support-directory a:hover {
  transform: translateY(-3px);
  border-color: var(--meadow);
}

.support-directory strong,
.support-directory span {
  display: block;
}

.support-directory span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 500;
}

.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1050px) {
  .route-hero__grid {
    grid-template-columns: 1fr 360px;
    gap: 42px;
  }

  .operator-row {
    grid-template-columns: 54px 130px minmax(140px, 1fr) 88px minmax(190px, 0.85fr);
  }

  .operator-row__action {
    grid-column: 2 / -1;
    width: 100%;
  }

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

  .method-plot:nth-child(2) {
    border-right: 0;
  }

  .method-plot:nth-child(-n+2) {
    border-bottom: 1px solid var(--fence);
  }
}

@media (max-width: 800px) {
  .burrow-toggle {
    display: block;
  }

  .field-nav {
    position: fixed;
    top: 112px;
    right: 20px;
    left: 20px;
    z-index: 70;
    display: grid;
    gap: 0;
    transform: translateY(-18px);
    border: 1px solid var(--fence);
    border-radius: 20px;
    background: var(--white);
    padding: 10px;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .field-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .field-nav a {
    border-radius: 12px;
    padding: 12px 14px;
  }

  .field-nav a:hover {
    background: var(--soft-blue);
  }

  .field-nav a::after {
    display: none;
  }

  .field-nav__safety {
    border: 0;
  }

  .route-hero {
    padding-top: 66px;
  }

  .route-hero__grid {
    grid-template-columns: 1fr;
  }

  .trail-board {
    min-height: 430px;
  }

  .section-heading,
  .shortlist-head,
  .help-field,
  .question-field,
  .foot-warren__grid,
  .policy-field {
    grid-template-columns: 1fr;
  }

  .section-heading {
    align-items: start;
  }

  .shortlist-head,
  .bounty-banner,
  .operator-ledger,
  .ledger-note {
    margin-left: 58px;
  }

  .operator-row {
    grid-template-columns: 52px 120px 1fr 80px;
    border-radius: 10px 30px 10px 10px;
  }

  .operator-row__offer {
    grid-column: 2 / -1;
  }

  .operator-row__action {
    grid-column: 2 / -1;
  }

  .operator-row::before {
    left: -59px;
    width: 59px;
  }

  .question-field__title,
  .policy-index {
    position: static;
  }

  .safety-strip__inner {
    grid-template-columns: 64px 1fr;
  }

  .safety-strip__links {
    grid-column: 2;
    justify-content: flex-start;
  }

  .policy-index ol {
    columns: 2;
  }

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

  .foot-warren__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .age-ribbon__inner,
  .warren-head__row,
  .route-hero__grid,
  .reward-hero__inner,
  .method-yard__inner,
  .shortlist-field,
  .help-field,
  .question-field,
  .policy-field,
  .foot-warren__inner,
  .policy-hero__inner {
    width: min(100% - 28px, var(--content));
  }

  .warren-head__row {
    min-height: 70px;
  }

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

  .brand-burrow__word {
    font-size: 1.03rem;
  }

  .field-nav {
    top: 102px;
    right: 14px;
    left: 14px;
  }

  .reward-hero {
    padding: 38px 0 46px;
  }

  .reward-brand img {
    width: 50px;
    height: 50px;
    border-radius: 16px;
  }

  .reward-brand span {
    font-size: 1.75rem;
  }

  .reward-hero h1 {
    font-size: clamp(2.55rem, 12vw, 3.5rem);
  }

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

  .reward-hero__button {
    width: calc(100% - 8px);
  }

  .route-hero h1 {
    font-size: clamp(3.3rem, 17vw, 5.2rem);
  }

  .trail-board {
    min-height: 410px;
    border-radius: 34px 34px 100px 34px;
  }

  .trail-board__top {
    padding: 34px 28px;
  }

  .trail-board__checks {
    width: 100%;
    margin-top: 32px;
    padding: 0 28px;
  }

  .rabbit-pin {
    right: 28px;
    bottom: 29px;
  }

  .method-plots {
    grid-template-columns: 1fr;
  }

  .method-plot {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--fence);
  }

  .method-plot:last-child {
    border-bottom: 0;
  }

  .method-plot h3 {
    margin-top: 28px;
  }

  .shortlist-zone::before {
    left: 28px;
  }

  .shortlist-head,
  .bounty-banner,
  .operator-ledger,
  .ledger-note {
    margin-left: 36px;
  }

  .bounty-banner {
    display: grid;
    justify-content: start;
    gap: 3px;
    padding: 11px 14px;
  }

  .shortlist-head {
    display: block;
  }

  .shortlist-head__stamp {
    display: inline-block;
    margin-top: 20px;
    white-space: normal;
  }

  .operator-row {
    grid-template-columns: 48px minmax(0, 1fr) 70px;
    gap: 12px;
    min-height: 0;
    padding: 16px;
  }

  .operator-row__flag {
    left: 68px;
    max-width: calc(100% - 82px);
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .operator-row__logo {
    grid-column: 2 / 4;
    height: 88px;
  }

  .operator-row__identity {
    grid-column: 1 / 3;
  }

  .operator-row__score {
    grid-column: 3;
  }

  .operator-row__offer,
  .operator-row__action {
    grid-column: 1 / -1;
  }

  .operator-row::before {
    left: -37px;
    width: 37px;
  }

  .operator-row__rank {
    width: 46px;
    height: 46px;
  }

  .operator-row__action {
    margin-top: 4px;
  }

  .safety-strip__inner {
    grid-template-columns: 54px 1fr;
    gap: 14px;
  }

  .safety-strip__age {
    width: 50px;
    height: 50px;
  }

  .safety-strip__links {
    grid-column: 1 / -1;
  }

  .help-card {
    grid-template-columns: 46px 1fr auto;
    padding: 14px;
  }

  .help-card__glyph {
    width: 44px;
    height: 44px;
  }

  .foot-warren__grid,
  .foot-warren__fineprint,
  .support-directory {
    grid-template-columns: 1fr;
  }

  .foot-warren__brand {
    grid-column: auto;
  }

  .foot-warren__trustmarks {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 18px;
  }

  .foot-warren__trustmarks a,
  .foot-warren__trustmarks span {
    min-width: 0;
  }

  .foot-warren__trustmarks img {
    max-width: min(100%, 145px);
    height: 25px;
  }

  .foot-warren__trustmarks .trustmark--age {
    grid-column: 1 / -1;
    width: 42px;
    height: 42px;
  }

  .policy-index ol {
    columns: 1;
  }

  .policy-hero {
    padding: 58px 0;
  }

  .operator-slip {
    padding: 16px;
  }
}

@media (max-width: 768px) {
  .foot-warren__company {
    grid-column: 1 / -1;
    order: 1;
  }

  .foot-warren__nav--compare {
    order: 2;
  }

  .foot-warren__nav--policies {
    order: 3;
  }

  .foot-warren__brand {
    order: 4;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

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