:root {
  --green: #123c2a;
  --green-mid: #1e5138;
  --deep: #08251b;
  --ink: #173d2d;
  --paper: #f1e8ce;
  --paper-light: #fbf5e4;
  --gold: #c59b4e;
  --orange: #a24d21;
  --line: rgba(18, 60, 42, 0.25);
  --serif: "Fraunces", Georgia, serif;
  --sans: "DM Mono", "Courier New", monospace;
  --page-pad: clamp(1.25rem, 4vw, 2rem);
  --content: 82.5rem;
  --header-height: 4.875rem;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: clip;
  background:
    radial-gradient(circle at 18% 12%, rgba(197, 155, 78, 0.13), transparent 25rem),
    radial-gradient(circle at 86% 72%, rgba(184, 95, 40, 0.08), transparent 28rem),
    var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.5;
}

body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      112deg,
      transparent 0 8px,
      rgba(18, 60, 42, 0.025) 8px 9px
    ),
    radial-gradient(rgba(18, 60, 42, 0.12) 0.65px, transparent 0.65px);
  background-size: auto, 7px 7px;
  content: "";
  pointer-events: none;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

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

main section[id] {
  scroll-margin-top: var(--header-height);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: -6rem;
  left: 1rem;
  padding: 0.8rem 1rem;
  border: 1px solid var(--deep);
  background: var(--gold);
  color: var(--deep);
  font-size: 0.75rem;
  text-decoration: none;
  text-transform: uppercase;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(241, 232, 206, 0.92);
  backdrop-filter: blur(10px);
  transition: box-shadow 220ms ease, background 220ms ease;
}

.site-header::after {
  position: absolute;
  right: 0;
  bottom: -4px;
  left: 0;
  height: 3px;
  background: repeating-linear-gradient(
    90deg,
    var(--green) 0 16px,
    transparent 16px 21px,
    var(--gold) 21px 23px,
    transparent 23px 29px
  );
  content: "";
  opacity: 0.22;
}

.site-header.is-scrolled {
  background: rgba(241, 232, 206, 0.97);
  box-shadow: 0 0.8rem 2.2rem rgba(8, 37, 27, 0.13);
}

.header-inner {
  display: flex;
  align-items: center;
  min-height: var(--header-height);
  max-width: var(--content);
  padding: 0.65rem var(--page-pad);
  margin: 0 auto;
  gap: clamp(1.2rem, 2.7vw, 2.3rem);
}

.brand {
  display: flex;
  align-items: center;
  min-width: max-content;
  margin-right: auto;
  gap: 0.7rem;
  color: var(--green);
  text-decoration: none;
}

.brand img {
  width: 3rem;
  height: 3rem;
  object-fit: contain;
  filter: drop-shadow(0 2px 0 rgba(197, 155, 78, 0.45));
  transition: transform 280ms ease;
}

.brand:hover img {
  transform: rotate(-5deg) scale(1.04);
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.05;
}

.brand strong {
  font-family: var(--serif);
  font-size: 0.96rem;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.brand small {
  margin-top: 0.32rem;
  font-size: 0.55rem;
  letter-spacing: 0.17em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 2.4vw, 2rem);
}

.site-nav a,
.text-link {
  position: relative;
  color: var(--green);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -0.55rem;
  left: 0;
  height: 2px;
  background: var(--orange);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-buy {
  display: flex;
  align-items: center;
  min-height: 3rem;
  padding: 0.35rem 0.8rem 0.35rem 0.45rem;
  border: 1px solid var(--green);
  background: var(--green);
  box-shadow: 4px 4px 0 var(--gold);
  color: var(--paper-light);
  gap: 0.55rem;
  font-size: 0.64rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.header-buy img {
  width: 1.75rem;
  height: 1.75rem;
  object-fit: contain;
}

.header-buy:hover {
  background: var(--orange);
  box-shadow: 6px 6px 0 var(--green);
  transform: translate(-2px, -2px);
}

.header-buy:active {
  box-shadow: 1px 1px 0 var(--green);
  transform: translate(2px, 2px);
}

[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.55;
}

.menu-toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--green);
  cursor: pointer;
}

.menu-icon,
.menu-icon::before,
.menu-icon::after {
  position: relative;
  display: block;
  width: 1.3rem;
  height: 2px;
  margin: auto;
  background: currentColor;
  content: "";
  transition: transform 180ms ease, top 180ms ease, opacity 180ms ease;
}

.menu-icon::before,
.menu-icon::after {
  position: absolute;
  left: 0;
}

.menu-icon::before {
  top: -0.42rem;
}

.menu-icon::after {
  top: 0.42rem;
}

.menu-toggle[aria-expanded="true"] .menu-icon {
  background: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-icon::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-icon::after {
  top: 0;
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(18rem, 0.78fr) minmax(28rem, 1.22fr);
  align-items: center;
  min-height: calc(100svh - var(--header-height));
  max-width: var(--content);
  padding: clamp(4.5rem, 7vw, 7rem) var(--page-pad) clamp(5.5rem, 8vw, 8rem);
  margin: 0 auto;
  gap: clamp(3rem, 5.5vw, 5.2rem);
}

.hero::before {
  position: absolute;
  z-index: -1;
  top: 4.2rem;
  left: min(45%, 34rem);
  width: clamp(22rem, 46vw, 43rem);
  aspect-ratio: 1;
  border: 1px solid rgba(18, 60, 42, 0.13);
  border-radius: 50%;
  background: repeating-radial-gradient(
    circle,
    transparent 0 0.55rem,
    rgba(18, 60, 42, 0.04) 0.58rem 0.63rem
  );
  content: "";
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: flex;
  align-items: center;
  margin: 0 0 1.45rem;
  color: var(--orange);
  gap: 0.75rem;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.eyebrow-line {
  width: 2.2rem;
  height: 1px;
  background: currentColor;
}

h1 {
  max-width: 7ch;
  margin-bottom: 1.8rem;
  color: var(--green);
  font-family: var(--serif);
  font-size: clamp(4.5rem, 8vw, 8rem);
  font-variation-settings: "opsz" 120;
  font-weight: 900;
  letter-spacing: -0.075em;
  line-height: 0.78;
  text-shadow: 2px 2px 0 rgba(197, 155, 78, 0.62);
}

h1 em {
  display: inline-block;
  margin-left: 0.34em;
  color: var(--orange);
  font-style: normal;
}

.hero-lede {
  max-width: 25rem;
  margin-bottom: 2rem;
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.4vw, 1.22rem);
  line-height: 1.58;
}

.action-list {
  display: grid;
  max-width: 25rem;
  gap: 0.55rem;
}

.action {
  display: grid;
  grid-template-columns: 2.45rem 1fr auto;
  align-items: center;
  min-height: 3.65rem;
  padding: 0.55rem 0.85rem;
  border: 1px solid var(--line);
  background: rgba(251, 245, 228, 0.34);
  color: var(--green);
  gap: 0.75rem;
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.085em;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.action:hover {
  border-color: var(--green);
  background: rgba(197, 155, 78, 0.18);
  box-shadow: 5px 5px 0 rgba(18, 60, 42, 0.18);
  transform: translate(-3px, -3px);
}

.action:active {
  box-shadow: 1px 1px 0 rgba(18, 60, 42, 0.18);
  transform: translate(0);
}

.action-primary {
  border-color: var(--green);
  background: var(--green);
  color: var(--paper-light);
}

.action-primary:hover {
  border-color: var(--orange);
  background: var(--orange);
}

.action-art,
.social-mark {
  display: grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
}

.action-art img {
  width: 2rem;
  height: 2rem;
  object-fit: contain;
}

.social-mark svg {
  width: 1.45rem;
  height: 1.45rem;
  fill: currentColor;
}

.action-arrow {
  font-size: 1rem;
  transition: transform 180ms ease;
}

.action:hover .action-arrow {
  transform: translate(2px, -2px);
}

.hero-art {
  position: relative;
}

.image-frame {
  position: relative;
  padding: 0.7rem;
  border: 1px solid var(--green);
  outline: 1px solid rgba(197, 155, 78, 0.72);
  outline-offset: -0.35rem;
  background: var(--green);
  box-shadow:
    0.8rem 0.8rem 0 rgba(18, 60, 42, 0.16),
    1.1rem 1.1rem 0 rgba(197, 155, 78, 0.18);
  transform: rotate(1deg);
}

.image-frame::before,
.image-frame::after {
  position: absolute;
  z-index: 2;
  width: 2.5rem;
  height: 2.5rem;
  border-color: var(--gold);
  content: "";
  pointer-events: none;
}

.image-frame::before {
  top: 0.2rem;
  left: 0.2rem;
  border-top: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
}

.image-frame::after {
  right: 0.2rem;
  bottom: 0.2rem;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
}

.image-frame img {
  width: 100%;
  height: auto;
  aspect-ratio: 2 / 1;
  object-fit: cover;
}

.hero-caption {
  display: flex;
  justify-content: space-between;
  margin-top: 1.35rem;
  color: var(--orange);
  gap: 1rem;
  font-size: 0.56rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.seal {
  position: absolute;
  z-index: 3;
  display: grid;
  width: 4.25rem;
  aspect-ratio: 1;
  border: 1px solid var(--gold);
  border-radius: 50%;
  outline: 1px solid var(--paper);
  outline-offset: -0.35rem;
  background: var(--green);
  box-shadow: 0 0 0 0.3rem rgba(18, 60, 42, 0.12);
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1.85rem;
  place-items: center;
}

.seal-top {
  top: -2rem;
  right: -1.3rem;
}

.seal-bottom {
  bottom: -1.7rem;
  left: -1.3rem;
}

.roadmap {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(5.5rem, 8vw, 7rem) max(var(--page-pad), calc((100% - 78.5rem) / 2));
  background: var(--green);
  color: var(--paper-light);
}

.roadmap::before,
.roadmap::after {
  position: absolute;
  z-index: -1;
  content: "";
  pointer-events: none;
}

.roadmap::before {
  inset: 0;
  background:
    repeating-linear-gradient(
      45deg,
      transparent 0 11px,
      rgba(251, 245, 228, 0.022) 11px 12px
    ),
    radial-gradient(circle at 50% 115%, rgba(197, 155, 78, 0.18), transparent 42%);
}

.roadmap::after {
  top: 2.1rem;
  right: 2rem;
  bottom: 2.1rem;
  left: 2rem;
  border: 1px solid rgba(197, 155, 78, 0.18);
}

.section-heading {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: end;
  padding-bottom: 2.45rem;
  border-bottom: 1px solid rgba(241, 232, 206, 0.3);
  gap: 2rem;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -0.4rem;
}

.roadmap h2,
.chart-section h2 {
  margin: 0;
  color: var(--paper-light);
  font-family: var(--serif);
  font-size: clamp(3.4rem, 6vw, 6rem);
  font-variation-settings: "opsz" 110;
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 0.88;
  word-spacing: 0.08em;
}

.section-heading > p:last-child {
  max-width: 26rem;
  margin: 0;
  color: rgba(251, 245, 228, 0.77);
  font-family: var(--serif);
  font-size: clamp(1rem, 1.4vw, 1.16rem);
  line-height: 1.55;
}

.roadmap-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 0;
  margin: 0;
  list-style: none;
}

.roadmap-grid::before {
  position: absolute;
  top: 5.8rem;
  right: 0;
  left: 0;
  height: 1px;
  background: rgba(197, 155, 78, 0.45);
  content: "";
}

.roadmap-step {
  position: relative;
  display: flex;
  min-height: 19rem;
  padding: 2.6rem 1.6rem 1.4rem 0;
  border-right: 1px solid rgba(241, 232, 206, 0.2);
  margin-right: 1.6rem;
  flex-direction: column;
  gap: 2.25rem;
}

.roadmap-step:last-child {
  border-right: 0;
  margin-right: 0;
}

.step-number {
  position: relative;
  z-index: 1;
  width: max-content;
  padding-right: 0.8rem;
  background: var(--green);
  color: var(--gold);
  font-family: var(--serif);
  font-size: 2.65rem;
  font-weight: 700;
  line-height: 1;
}

.roadmap-step h3 {
  margin-bottom: 0.7rem;
  color: var(--paper-light);
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 700;
}

.roadmap-step p {
  max-width: 15rem;
  margin-bottom: 0;
  color: rgba(251, 245, 228, 0.68);
  font-size: 0.76rem;
  line-height: 1.72;
}

.step-stamp {
  width: max-content;
  padding: 0.35rem 0.5rem;
  border: 1px solid rgba(197, 155, 78, 0.68);
  margin-top: auto;
  color: var(--gold);
  font-size: 0.55rem;
  letter-spacing: 0.19em;
  transform: rotate(-2deg);
}

.chart-section {
  position: relative;
  max-width: var(--content);
  padding: clamp(5.5rem, 8vw, 7rem) var(--page-pad) clamp(6rem, 9vw, 8rem);
  margin: 0 auto;
}

.chart-section::before {
  position: absolute;
  z-index: -1;
  top: 3rem;
  right: var(--page-pad);
  width: 10rem;
  aspect-ratio: 1;
  border: 1px solid rgba(18, 60, 42, 0.12);
  border-radius: 50%;
  background: repeating-radial-gradient(
    circle,
    transparent 0 0.35rem,
    rgba(18, 60, 42, 0.04) 0.38rem 0.41rem
  );
  content: "";
}

.chart-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  padding-bottom: 1.7rem;
  border-bottom: 1px solid var(--line);
  margin-bottom: 1.45rem;
  gap: 2rem;
}

.chart-header .eyebrow {
  margin-bottom: 0.9rem;
}

.chart-section h2 {
  color: var(--green);
}

.text-link {
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--orange);
}

.text-link:hover {
  color: var(--orange);
}

.chart-window {
  position: relative;
  overflow: hidden;
  border: 0.65rem solid var(--green);
  background: #071c15;
  box-shadow:
    0.65rem 0.65rem 0 rgba(18, 60, 42, 0.17),
    0 2rem 4rem rgba(8, 37, 27, 0.12);
}

.chart-window-bar {
  display: flex;
  align-items: center;
  height: 2.45rem;
  padding: 0 0.95rem;
  border-bottom: 1px solid rgba(241, 232, 206, 0.13);
  color: #8da398;
  gap: 0.45rem;
}

.window-dot {
  width: 0.46rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--orange);
}

.window-dot:nth-child(2) {
  background: var(--gold);
}

.window-dot:nth-child(3) {
  background: #73977f;
}

.window-label {
  margin-left: 0.55rem;
  font-size: 0.56rem;
  letter-spacing: 0.15em;
}

iframe {
  display: block;
  width: 100%;
  height: clamp(30rem, 52vw, 38rem);
  border: 0;
  background: #071c15;
}

.chart-placeholder {
  display: grid;
  min-height: clamp(30rem, 52vw, 38rem);
  place-content: center;
  gap: 0.7rem;
  padding: 2rem;
  color: var(--paper);
  text-align: center;
  background:
    radial-gradient(circle at center, rgba(207, 158, 57, 0.1), transparent 38%),
    #071c15;
}

.chart-placeholder p {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.2rem, 2.5vw, 1.9rem);
}

.chart-placeholder span {
  color: #9eb1a6;
  font-family: "DM Mono", monospace;
  font-size: 0.67rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.chart-fallback {
  padding: 0.75rem 1rem;
  border-top: 1px solid rgba(241, 232, 206, 0.13);
  color: #9eb1a6;
  font-size: 0.66rem;
}

.chart-fallback a {
  color: var(--gold);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem max(var(--page-pad), calc((100% - 78.5rem) / 2));
  background: var(--deep);
  color: rgba(251, 245, 228, 0.62);
  gap: 2rem;
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer p {
  margin-bottom: 0;
}

.footer-mark {
  display: flex;
  align-items: center;
  color: var(--paper-light);
  gap: 0.85rem;
  font-family: var(--serif);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.11em;
}

.footer-mark small {
  color: var(--gold);
  font-family: var(--sans);
  font-size: 0.52rem;
  font-weight: 400;
}

.footer-star {
  color: var(--gold);
  font-size: 1.7rem;
}

.section-reveal {
  opacity: 1;
  transform: none;
}

.js-enabled [data-reveal] {
  opacity: 1;
  transform: translateY(1.3rem);
  transition: opacity 700ms ease, transform 700ms ease;
}

.js-enabled [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

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

@media (max-width: 68rem) {
  .hero {
    grid-template-columns: minmax(17rem, 0.82fr) minmax(25rem, 1.18fr);
    gap: 3.2rem;
  }

  .site-nav {
    gap: 1rem;
  }

  .roadmap-step {
    margin-right: 1rem;
  }
}

@media (max-width: 51.25rem) {
  .menu-toggle {
    display: block;
    order: 3;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    display: grid;
    max-height: 0;
    padding: 0 var(--page-pad);
    overflow: hidden;
    border-bottom: 0 solid var(--line);
    background: var(--paper);
    opacity: 0;
    gap: 0;
    pointer-events: none;
    transform: translateY(-0.5rem);
    transition:
      max-height 250ms ease,
      opacity 180ms ease,
      padding 250ms ease,
      transform 250ms ease,
      border-width 250ms ease;
  }

  .site-nav.is-open {
    max-height: 18rem;
    padding-block: 0.75rem 1rem;
    border-bottom-width: 1px;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    min-height: 3.2rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(18, 60, 42, 0.1);
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .site-nav a::after {
    bottom: 0.65rem;
    width: 3rem;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-top: 4.6rem;
    gap: 4.4rem;
  }

  .hero::before {
    top: 1rem;
    left: 28%;
    width: 75vw;
  }

  .hero-art {
    order: -1;
  }

  .hero-copy,
  .action-list {
    max-width: 34rem;
  }

  h1 {
    font-size: clamp(4.5rem, 17vw, 7rem);
  }

  .roadmap {
    padding-inline: var(--page-pad);
  }

  .roadmap::after {
    right: 0.75rem;
    left: 0.75rem;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 1.3rem;
  }

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

  .roadmap-grid::before {
    content: none;
  }

  .roadmap-step {
    min-height: 15rem;
    padding: 2rem 1rem 1.6rem;
    border-bottom: 1px solid rgba(241, 232, 206, 0.22);
    border-right: 0;
    margin: 0;
  }

  .roadmap-step:nth-child(odd) {
    border-right: 1px solid rgba(241, 232, 206, 0.22);
  }

  .step-number {
    padding: 0;
  }

  .roadmap-step p {
    max-width: 18rem;
  }

  .site-footer {
    align-items: flex-start;
    flex-wrap: wrap;
  }
}

@media (max-width: 35rem) {
  :root {
    --header-height: 4.35rem;
  }

  .header-inner {
    gap: 0.55rem;
  }

  .brand img {
    width: 2.65rem;
    height: 2.65rem;
  }

  .brand strong {
    font-size: 0.74rem;
  }

  .brand small {
    font-size: 0.45rem;
  }

  .header-buy {
    min-height: 2.65rem;
    padding: 0.3rem 0.55rem 0.3rem 0.35rem;
    box-shadow: 3px 3px 0 var(--gold);
  }

  .header-buy img {
    width: 1.6rem;
    height: 1.6rem;
  }

  .header-buy span:first-of-type {
    display: none;
  }

  .menu-toggle {
    width: 2.65rem;
    height: 2.65rem;
  }

  .hero {
    padding-top: 3.5rem;
    padding-bottom: 5.2rem;
    gap: 3.8rem;
  }

  .image-frame {
    padding: 0.42rem;
    box-shadow: 0.5rem 0.5rem 0 rgba(18, 60, 42, 0.16);
  }

  .seal {
    width: 3.5rem;
    font-size: 1.5rem;
  }

  .seal-top {
    top: -1.65rem;
    right: -0.55rem;
  }

  .seal-bottom {
    bottom: -1.35rem;
    left: -0.5rem;
  }

  .hero-caption {
    align-items: flex-start;
    font-size: 0.46rem;
  }

  .hero-caption span:last-child {
    max-width: 11rem;
    text-align: right;
  }

  h1 {
    font-size: clamp(4.1rem, 20vw, 6rem);
  }

  .action {
    min-height: 3.5rem;
    font-size: 0.59rem;
  }

  .roadmap {
    padding-block: 4.8rem;
  }

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

  .roadmap-step,
  .roadmap-step:nth-child(odd) {
    min-height: 0;
    padding: 1.8rem 0.2rem;
    border-right: 0;
  }

  .chart-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 1.2rem;
  }

  .chart-window {
    border-width: 0.35rem;
    box-shadow: 0.45rem 0.45rem 0 rgba(18, 60, 42, 0.17);
  }

  .window-label {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  iframe {
    height: 29rem;
  }

  .site-footer {
    flex-direction: column;
  }
}

@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;
  }

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