:root {
  --ink: #06110b;
  --ink-soft: #0b1b12;
  --forest: #102b1b;
  --forest-bright: #1f4f30;
  --note: #f3d94b;
  --note-bright: #ffe563;
  --note-light: #fff3aa;
  --acid: #c9ec63;
  --cream: #f8f0c8;
  --paper: #e8dfb4;
  --muted: #a8b69d;
  --line: rgba(243, 217, 75, 0.44);
  --line-soft: rgba(248, 240, 200, 0.15);
  --header-height: 4rem;
  --container: 90rem;
  --gutter: clamp(1rem, 4vw, 4.5rem);
  --serif: "Bodoni Moda", Georgia, serif;
  --sans: "Barlow Condensed", "Arial Narrow", sans-serif;
  --shadow-hard: 0.42rem 0.42rem 0 #020805;
  --shadow-gold: 0 1.6rem 4.5rem rgba(0, 0, 0, 0.42);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 1.5rem);
}

body {
  min-width: 20rem;
  margin: 0;
  overflow-x: clip;
  color: var(--cream);
  background:
    radial-gradient(circle at 12% 12%, rgba(41, 99, 57, 0.34), transparent 27rem),
    radial-gradient(circle at 86% 30%, rgba(243, 217, 75, 0.08), transparent 25rem),
    repeating-linear-gradient(115deg, transparent 0 0.75rem, rgba(255, 255, 255, 0.012) 0.78rem 0.82rem),
    var(--ink);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  z-index: 20;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0.18;
  background-image:
    repeating-radial-gradient(circle at 0 0, transparent 0 3px, rgba(255, 243, 167, 0.035) 4px 5px),
    repeating-linear-gradient(90deg, transparent 0 12px, rgba(255, 255, 255, 0.018) 13px 14px);
  mix-blend-mode: soft-light;
}

::selection {
  color: var(--ink);
  background: var(--acid);
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

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

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

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

.skip-link {
  position: fixed;
  z-index: 200;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.65rem 0.9rem;
  color: var(--ink);
  background: var(--acid);
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header-height);
  border-bottom: 1px solid var(--line);
  background: rgba(6, 17, 11, 0.9);
  box-shadow: 0 0.75rem 2rem rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(18px);
}

.site-header::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--note), transparent);
}

.header-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  width: min(100%, var(--container));
  height: 100%;
  margin: 0 auto;
  padding-inline: var(--gutter);
  gap: 0.7rem;
}

.brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
}

.brand-mark {
  width: 2.7rem;
  height: 2.7rem;
  flex: 0 0 auto;
  filter: drop-shadow(0 0.3rem 0.5rem rgba(0, 0, 0, 0.38));
}

.brand-copy {
  display: none;
  min-width: 0;
  color: var(--note-light);
  font-family: var(--serif);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1;
}

.brand-copy small {
  display: none;
  margin-top: 0.24rem;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.13em;
}

.nav-toggle {
  display: none;
  min-width: 2.9rem;
  min-height: 2.9rem;
  place-items: center;
  border: 1px solid var(--line);
  color: var(--cream);
  background: transparent;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  cursor: pointer;
}

:where(.js) .nav-toggle {
  display: inline-grid;
}

.primary-nav {
  position: absolute;
  top: calc(100% + 1px);
  right: var(--gutter);
  left: var(--gutter);
  display: grid;
  padding: 0.75rem;
  border: 1px solid var(--line);
  background: rgba(6, 17, 11, 0.98);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.42);
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

:where(.js) .primary-nav {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-0.5rem);
}

.primary-nav.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.primary-nav a {
  position: relative;
  display: flex;
  min-height: 3rem;
  align-items: center;
  padding: 0.6rem 0.85rem;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-decoration: none;
}

.primary-nav a::before {
  width: 0.42rem;
  height: 0.42rem;
  margin-right: 0.7rem;
  border-radius: 50%;
  background: var(--acid);
  content: "";
  opacity: 0;
  transform: scale(0.4);
  transition: opacity 180ms ease, transform 180ms ease;
}

.primary-nav a:hover,
.primary-nav a.is-active {
  color: var(--note-light);
}

.primary-nav a.is-active::before {
  opacity: 1;
  transform: scale(1);
}

.header-buy {
  display: inline-flex;
  min-width: 3.7rem;
  min-height: 2.9rem;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border: 1px solid var(--note);
  color: var(--ink);
  background: var(--note);
  box-shadow: 0.2rem 0.2rem 0 var(--forest-bright);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

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

.header-buy:hover {
  background: var(--acid);
  box-shadow: 0.35rem 0.35rem 0 var(--forest-bright);
  transform: translate(-0.1rem, -0.1rem);
}

.section-shell {
  position: relative;
  width: min(100%, var(--container));
  margin: 0 auto;
  padding: clamp(4.5rem, 10vw, 8.5rem) var(--gutter);
  scroll-margin-top: 0;
}

.hero-section {
  display: grid;
  min-height: calc(100svh - var(--header-height));
  align-items: center;
  padding-top: clamp(3rem, 7vw, 7rem);
  overflow: hidden;
}

.hero-section::before {
  position: absolute;
  z-index: -1;
  top: -18rem;
  left: -16rem;
  width: 36rem;
  height: 36rem;
  border: 1px solid rgba(201, 236, 99, 0.12);
  border-radius: 50%;
  content: "";
  box-shadow:
    0 0 0 3rem rgba(201, 236, 99, 0.025),
    0 0 0 8rem rgba(201, 236, 99, 0.018),
    0 0 0 13rem rgba(201, 236, 99, 0.012);
}

.hero-grid {
  display: grid;
  grid-template-areas:
    "copy"
    "note"
    "actions";
  gap: clamp(1.5rem, 5vw, 3rem);
}

.hero-copy {
  grid-area: copy;
}

.section-kicker {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0 0 0.85rem;
  color: var(--acid);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.section-kicker::before {
  width: 2.4rem;
  height: 1px;
  flex: 0 0 auto;
  background: currentColor;
  content: "";
}

.section-title {
  margin: 0;
  color: var(--note-light);
  font-family: var(--serif);
  font-size: clamp(3.2rem, 15vw, 6.8rem);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 0.83;
  text-wrap: balance;
}

.hero-copy .section-title em {
  color: var(--note);
  font-style: italic;
  font-weight: 500;
}

.section-copy {
  max-width: 34rem;
  margin: 1.5rem 0 0;
  color: var(--muted);
  font-family: var(--sans);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  letter-spacing: 0.02em;
  overflow-wrap: anywhere;
}

.section-copy strong {
  color: var(--note-light);
}

.text-link {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.2rem;
  color: var(--note-light);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-decoration-color: var(--note);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.35rem;
  transition: color 180ms ease, gap 180ms ease;
}

.text-link:hover {
  gap: 0.9rem;
  color: var(--acid);
}

.note-stage {
  position: relative;
  grid-area: note;
  isolation: isolate;
}

.note-stage::before,
.note-stage::after {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(243, 217, 75, 0.35);
  content: "";
  pointer-events: none;
}

.note-stage::before {
  inset: -0.7rem 0.7rem 0.7rem -0.7rem;
}

.note-stage::after {
  inset: 0.7rem -0.7rem -0.7rem 0.7rem;
  border-color: rgba(201, 236, 99, 0.18);
}

.note-badge {
  position: absolute;
  z-index: 3;
  top: -0.85rem;
  left: 1rem;
  padding: 0.35rem 0.7rem;
  border: 1px solid var(--ink);
  color: var(--ink);
  background: var(--acid);
  box-shadow: 0.2rem 0.2rem 0 var(--ink);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.note-frame {
  position: relative;
  margin: 0;
  padding: 0.55rem;
  border: 1px solid var(--note);
  background:
    repeating-linear-gradient(45deg, rgba(6, 17, 11, 0.7) 0 2px, transparent 2px 5px),
    var(--forest);
  box-shadow: var(--shadow-gold);
  overflow: hidden;
}

.note-frame::before {
  position: absolute;
  z-index: 2;
  inset: 0.8rem;
  border: 1px solid rgba(6, 17, 11, 0.7);
  content: "";
  pointer-events: none;
}

.hero-artwork {
  width: 100%;
  border: 1px solid rgba(255, 243, 167, 0.55);
  object-fit: cover;
  filter: saturate(1.04) contrast(1.02);
}

.note-caption {
  display: flex;
  min-height: 2.7rem;
  align-items: center;
  justify-content: space-between;
  padding: 0.65rem 0.45rem 0.12rem;
  color: var(--paper);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.note-caption::after {
  color: var(--note);
  content: "$1STONKSUSD";
}

.action-rail {
  display: grid;
  grid-area: actions;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.7rem;
}

.action-button {
  position: relative;
  display: grid;
  min-width: 0;
  min-height: 4rem;
  grid-template-columns: 2rem minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem;
  border: 1px solid var(--ink);
  color: var(--ink);
  background: var(--note);
  box-shadow: 0.28rem 0.28rem 0 var(--forest-bright);
  font-size: clamp(0.72rem, 3vw, 0.88rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  text-decoration: none;
  overflow: hidden;
  transition: background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.action-button::before {
  position: absolute;
  top: -50%;
  bottom: -50%;
  left: -40%;
  width: 24%;
  background: rgba(255, 255, 255, 0.35);
  content: "";
  filter: blur(0.2rem);
  transform: rotate(18deg);
  transition: left 420ms ease;
}

.action-button:hover {
  background: var(--acid);
  box-shadow: 0.44rem 0.44rem 0 var(--forest-bright);
  transform: translate(-0.14rem, -0.14rem);
}

.action-button:hover::before {
  left: 120%;
}

.action-icon,
.social-icon {
  width: 2rem;
  height: 2rem;
  flex: 0 0 auto;
  transition: transform 180ms ease;
}

.action-icon {
  object-fit: contain;
}

.social-icon {
  padding: 0.34rem;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.action-button:hover .action-icon,
.action-button:hover .social-icon {
  transform: rotate(-5deg) scale(1.06);
}

.roadmap-section {
  width: 100%;
  max-width: none;
  border-block: 1px solid var(--line);
  background:
    radial-gradient(circle at 90% 10%, rgba(243, 217, 75, 0.08), transparent 23rem),
    linear-gradient(145deg, rgba(16, 43, 27, 0.96), rgba(5, 15, 9, 0.98));
}

.roadmap-section > * {
  width: min(100%, calc(var(--container) - 2 * var(--gutter)));
  margin-inline: auto;
}

.section-heading {
  display: grid;
  gap: 0.4rem;
}

.section-heading .section-title {
  font-size: clamp(3rem, 12vw, 8rem);
}

.roadmap-grid {
  position: relative;
  display: grid;
  margin-top: 3rem;
  gap: 1rem;
}

.roadmap-grid::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 1.38rem;
  width: 1px;
  background: linear-gradient(var(--note), var(--acid), transparent);
  content: "";
}

.roadmap-card {
  position: relative;
  margin-left: 0.95rem;
  padding: 1.35rem 1.25rem 1.35rem 2.65rem;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(248, 240, 200, 0.06), transparent 55%),
    rgba(6, 17, 11, 0.75);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.32);
  transition: border-color 180ms ease, transform 180ms ease;
}

.roadmap-card:hover {
  border-color: var(--note);
  transform: translateY(-0.25rem);
}

.phase-number {
  position: absolute;
  top: 1rem;
  left: -1rem;
  display: grid;
  width: 2.8rem;
  height: 2.8rem;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  color: var(--ink);
  background: var(--note);
  box-shadow: 0 0 0 0.3rem var(--forest);
  font-weight: 900;
}

.phase-label {
  margin: 0;
  color: var(--acid);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.roadmap-card h3 {
  margin: 0.5rem 0 0;
  color: var(--note-light);
  font-family: var(--serif);
  font-size: clamp(1.55rem, 5vw, 2.2rem);
  line-height: 1.05;
}

.roadmap-card > p:last-child {
  margin: 0.85rem 0 0;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 1.02rem;
}

.market-section {
  padding-bottom: clamp(5rem, 11vw, 9rem);
}

.market-frame {
  position: relative;
  margin-top: 2.2rem;
  padding: 0.6rem;
  border: 1px solid var(--note);
  background: var(--forest);
  box-shadow: var(--shadow-hard), var(--shadow-gold);
  overflow: hidden;
}

.market-toolbar {
  display: flex;
  min-height: 3.5rem;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem 1rem;
  padding: 0.45rem 0.7rem;
  border-bottom: 1px solid var(--line);
  background: rgba(6, 17, 11, 0.88);
}

.market-toolbar .text-link {
  margin: 0;
  font-size: 0.75rem;
}

.live-pill {
  display: inline-flex;
  min-height: 2.2rem;
  align-items: center;
  gap: 0.55rem;
  color: var(--acid);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.15em;
}

.live-pill > span {
  width: 0.58rem;
  height: 0.58rem;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0.8rem currentColor;
  animation: live-pulse 1.8s ease-in-out infinite;
}

.dex-embed {
  display: block;
  width: 100%;
  min-height: 31rem;
  border: 0;
  background: #0c111d;
  aspect-ratio: 4 / 3;
}

.dex-placeholder,
.market-fallback {
  position: absolute;
  right: 0.6rem;
  bottom: 0.6rem;
  left: 0.6rem;
  top: 4.1rem;
}

.dex-placeholder {
  display: grid;
  place-content: center;
  gap: 1rem;
  padding: 2rem;
  color: var(--muted);
  background:
    linear-gradient(rgba(201, 236, 99, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 236, 99, 0.05) 1px, transparent 1px),
    #0c1110;
  background-size: 3rem 3rem;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-align: center;
}

.dex-placeholder[hidden] {
  display: none;
}

.placeholder-line {
  display: block;
  width: min(16rem, 60vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--acid), transparent);
  animation: scan 1.6s ease-in-out infinite;
}

.placeholder-line.short {
  width: min(10rem, 40vw);
  justify-self: center;
  animation-delay: 180ms;
}

.market-fallback {
  display: grid;
  place-content: center;
  padding: 2rem;
  color: var(--muted);
  background: #0c1110;
  text-align: center;
}

.market-fallback[hidden] {
  display: none;
}

.market-fallback--noscript {
  z-index: 2;
}

.ticker {
  position: relative;
  border-block: 1px solid var(--ink);
  color: var(--ink);
  background: var(--note);
  overflow: hidden;
}

.ticker-track {
  display: flex;
  width: max-content;
  min-height: 3.3rem;
  align-items: center;
  animation: ticker-roll 20s linear infinite;
}

.ticker-track span {
  display: inline-flex;
  align-items: center;
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  white-space: nowrap;
}

.ticker-track span::after {
  margin: 0 1.4rem;
  content: "\2605";
}

.site-footer {
  display: flex;
  width: min(100%, var(--container));
  min-height: 7rem;
  flex-direction: column;
  justify-content: center;
  margin: 0 auto;
  padding: 1.5rem var(--gutter);
  gap: 0.35rem;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(1.25rem);
  transition: opacity 620ms ease, transform 620ms cubic-bezier(0.2, 0.72, 0.3, 1);
}

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

.roadmap-card:nth-child(2) {
  transition-delay: 70ms;
}

.roadmap-card:nth-child(3) {
  transition-delay: 140ms;
}

.roadmap-card:nth-child(4) {
  transition-delay: 210ms;
}

@keyframes live-pulse {
  50% {
    opacity: 0.45;
    transform: scale(0.76);
  }
}

@keyframes scan {
  50% {
    opacity: 0.35;
    transform: scaleX(0.7);
  }
}

@keyframes ticker-roll {
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 47.999rem) {
  html:not(.js) .site-header {
    height: auto;
  }

  html:not(.js) .header-inner {
    grid-template-columns: minmax(0, 1fr) auto;
    height: auto;
    min-height: var(--header-height);
    padding-block: 0.55rem;
  }

  html:not(.js) .primary-nav {
    position: static;
    grid-column: 1 / -1;
    grid-row: 2;
  }
}

@media (min-width: 40rem) {
  .brand-copy {
    display: grid;
  }

  .brand-copy small {
    display: block;
  }

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

  .action-button {
    min-height: 4.4rem;
    padding: 0.8rem;
  }

  .roadmap-card {
    padding: 1.75rem 1.5rem 1.75rem 3rem;
  }

  .site-footer {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

@media (min-width: 48rem) {
  :root {
    --header-height: 4.75rem;
  }

  .header-inner {
    grid-template-columns: minmax(12rem, 1fr) auto minmax(7.5rem, 1fr);
    gap: 1.5rem;
  }

  .nav-toggle {
    display: none;
  }

  .primary-nav {
    position: static;
    display: flex;
    padding: 0;
    border: 0;
    background: none;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .primary-nav a {
    padding-inline: 0.85rem;
  }

  .primary-nav a::before {
    position: absolute;
    right: 0.85rem;
    bottom: 0.45rem;
    left: 0.85rem;
    width: auto;
    height: 1px;
    margin: 0;
    border-radius: 0;
    transform: scaleX(0);
    transform-origin: left;
  }

  .primary-nav a.is-active::before,
  .primary-nav a:hover::before {
    opacity: 1;
    transform: scaleX(1);
  }

  .header-buy {
    min-width: 8.5rem;
    justify-self: end;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.45fr) minmax(16rem, 0.65fr);
    grid-template-areas:
      "copy copy"
      "note actions";
    align-items: center;
  }

  .action-rail {
    grid-template-columns: 1fr;
  }

  .section-heading {
    grid-template-columns: minmax(0, 1.35fr) minmax(18rem, 0.65fr);
    align-items: end;
  }

  .section-heading .section-kicker,
  .section-heading .section-title {
    grid-column: 1;
  }

  .section-heading .section-copy {
    grid-column: 2;
    grid-row: 1 / span 2;
    margin: 0;
  }

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

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

  .roadmap-card {
    min-height: 17rem;
    margin-left: 0;
    padding: 4.5rem 1.6rem 1.8rem;
  }

  .phase-number {
    top: 1.2rem;
    left: 1.5rem;
    box-shadow: none;
  }

  .phase-label {
    position: absolute;
    top: 2.05rem;
    right: 1.5rem;
    left: 5.25rem;
    text-align: right;
  }

  .dex-embed {
    min-height: 39rem;
    aspect-ratio: 16 / 9;
  }
}

@media (min-width: 64rem) {
  .brand-copy {
    font-size: 1rem;
  }

  .hero-grid {
    grid-template-columns: 8.5rem minmax(0, 1.5fr) minmax(18rem, 0.7fr);
    grid-template-areas: "actions note copy";
    gap: clamp(1.3rem, 2.4vw, 2.6rem);
  }

  .hero-copy {
    align-self: center;
  }

  .hero-copy .section-title {
    font-size: clamp(3.8rem, 5.15vw, 5.75rem);
  }

  .action-rail {
    align-self: stretch;
    grid-template-rows: repeat(4, 1fr);
  }

  .action-button {
    grid-template-columns: 2.25rem minmax(0, 1fr);
    padding: 0.65rem;
    font-size: 0.74rem;
  }

  .action-button > span:last-child {
    display: none;
  }

  .action-icon,
  .social-icon {
    width: 2.25rem;
    height: 2.25rem;
  }

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

  .roadmap-grid::before {
    display: block;
    top: 2.6rem;
    right: 7%;
    bottom: auto;
    left: 7%;
    width: auto;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--note), var(--acid), transparent);
  }

  .roadmap-card {
    min-height: 20rem;
    padding-top: 5.3rem;
  }

  .phase-number {
    top: 1.2rem;
    z-index: 1;
  }

  .phase-label {
    top: 2.05rem;
    font-size: 0.64rem;
  }
}

@media (min-width: 90rem) {
  .hero-grid {
    grid-template-columns: 9.5rem minmax(0, 1.55fr) minmax(20rem, 0.65fr);
  }

  .action-button {
    font-size: 0.82rem;
  }
}

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

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

  .ticker-track {
    transform: none;
  }

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