:root {
  --cream: #f6f3e9;
  --green: #214a31;
  --green-dark: #173c2a;
  --green-bright: #d7ef77;
  --orange: #ec8d49;
  --ink: #233d2b;
  --muted: #768071;
  --line: #d9dece;
  --font-body: "DM Sans", Arial, sans-serif;
  --font-display: "Barlow Condensed", "Arial Narrow", Impact, sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
}
img {
  display: block;
  max-width: 100%;
  object-fit: contain;
}
img[src$="x.svg"] {
  filter: brightness(0);
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
a:focus-visible,
button:focus-visible {
  outline: 3px solid #ea8b47;
  outline-offset: 5px;
}
::selection {
  background: #d7ef77;
  color: #173c2a;
}
[hidden] {
  display: none !important;
}
.container {
  width: min(1280px, calc(100% - 112px));
  margin-inline: auto;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(246, 243, 233, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  flex-shrink: 0;
}
.brand > span {
  font-family: var(--font-display);
  font-size: 29px;
  font-weight: 800;
  letter-spacing: -0.7px;
}
.brand-accent {
  color: #5a7444;
}
.brand sup {
  font-family: Arial, sans-serif;
  font-size: 9px;
  vertical-align: top;
  position: relative;
  top: 8px;
  margin-left: 3px;
}
.navigation {
  display: flex;
  gap: 35px;
  align-items: center;
}
.nav-link {
  display: flex;
  gap: 7px;
  align-items: center;
  font-size: 13px;
  font-weight: 650;
  position: relative;
  padding-block: 13px;
}
.nav-link > span {
  font-size: 9px;
  align-self: flex-start;
  opacity: 0.45;
}
.nav-link:after {
  content: "";
  height: 3px;
  background: var(--green);
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 12px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s;
}
.nav-link.is-active:after,
.nav-link:hover:after {
  transform: scaleX(1);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.button {
  min-height: 49px;
  border: 1px solid var(--green);
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 11px 18px;
  font-size: 12px;
  font-weight: 700;
  transition:
    transform 0.18s,
    background 0.18s,
    box-shadow 0.18s;
  cursor: pointer;
}
.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 0 rgba(33, 74, 49, 0.12);
}
.button:active {
  transform: translateY(0);
  box-shadow: none;
}
.button-green {
  background: var(--green);
  color: var(--cream);
}
.button-green:hover {
  background: #2f6040;
}
.button-cream {
  background: transparent;
  border-color: #b8c2aa;
}
.button-cream:hover {
  background: #eceddd;
}
.button img {
  flex: 0 0 auto;
}
.arrow {
  font-size: 19px;
  font-weight: 400;
  line-height: 1;
  margin-left: auto;
  padding-left: 9px;
}
.header-buy .arrow {
  padding-left: 5px;
}
.menu-toggle {
  display: none;
}
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 695px;
  position: relative;
  gap: 20px;
  align-items: center;
  padding-top: 42px;
  padding-bottom: 46px;
}
.hero-copy {
  padding-top: 2px;
  position: relative;
  z-index: 2;
}
.eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.75px;
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 23px;
}
.status-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  background: #55894c;
  flex: 0 0 auto;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(85, 137, 76, 0.1);
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1 {
  font-family: var(--font-display);
  font-size: clamp(74px, 7.45vw, 112px);
  line-height: 0.87;
  letter-spacing: -1.8px;
  font-weight: 800;
  margin-bottom: 32px;
}
.bullish {
  color: #5c7944;
  position: relative;
  display: inline-block;
}
.bullish svg {
  position: absolute;
  width: 102%;
  height: 18px;
  bottom: -13px;
  left: -3px;
  overflow: visible;
  fill: none;
  stroke: var(--orange);
  stroke-width: 5;
  stroke-linecap: round;
}
.title-dot {
  color: var(--orange);
}
.hero-description {
  font-size: 14px;
  line-height: 1.8;
  color: #747969;
  margin-bottom: 27px;
}
.hero-buttons {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 11px;
  max-width: 456px;
}
.button-large {
  min-height: 59px;
  padding: 11px 17px;
  font-size: 12px;
  justify-content: flex-start;
}
.hero-note {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 27px;
}
.hero-note p {
  font-size: 10px;
  line-height: 1.75;
  color: #7c8375;
  margin: 0;
}
.hero-note strong {
  font-weight: 500;
  color: #4f6150;
}
.mini-bulls {
  display: flex;
  align-items: center;
  padding-left: 0;
}
.mini-bulls img {
  background: #e6dfca;
  border: 3px solid var(--cream);
  border-radius: 50%;
  width: 32px;
  height: 32px;
  margin-left: -10px;
}
.mini-bulls img:first-child {
  margin-left: 0;
  background: #d8e3bb;
  transform: rotate(-12deg);
}
.mini-bulls img:nth-child(2) {
  background: #f5bb82;
  transform: rotate(6deg);
}
.mini-bulls img:nth-child(3) {
  transform: rotate(16deg);
}
.hero-art {
  height: 601px;
  position: relative;
  align-self: end;
  isolation: isolate;
  overflow-x: clip;
  overflow-y: visible;
}
.art-disc {
  width: 92%;
  aspect-ratio: 1;
  background: #e0e8c9;
  border-radius: 50%;
  position: absolute;
  top: 65px;
  right: -1%;
  overflow: hidden;
  z-index: -2;
}
.art-disc > span {
  position: absolute;
  font-family: var(--font-display);
  font-size: 130px;
  font-weight: 800;
  color: #d2deb6;
  transform: rotate(-14deg);
  line-height: 0.8;
  top: 115px;
  right: 38px;
  letter-spacing: -3px;
}
.character-frame {
  position: absolute;
  inset: 2px -8% 20px -8%;
  overflow: hidden;
  border-radius: 0 0 47% 47%;
}
.character {
  height: 100%;
  width: 100%;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 13px 15px rgba(82, 59, 26, 0.06));
}
.art-orbit {
  position: absolute;
  border: 1px solid #bdcaaa;
  border-radius: 50%;
  z-index: -1;
}
.orbit-one {
  width: 96%;
  height: 66%;
  top: 156px;
  left: 2%;
  transform: rotate(-23deg);
}
.orbit-two {
  width: 81%;
  height: 89%;
  top: 38px;
  left: 14%;
  transform: rotate(32deg);
  border-style: dashed;
  opacity: 0.45;
}
.art-spark {
  position: absolute;
  color: #597749;
  z-index: 3;
}
.spark-one {
  font-size: 69px;
  top: 110px;
  left: 12px;
  transform: rotate(12deg);
}
.spark-two {
  font-size: 31px;
  bottom: 131px;
  right: 1px;
  color: #b56936;
}
.mascot-sticker {
  position: absolute;
  bottom: 78px;
  left: 38px;
  background: var(--cream);
  border: 1px solid var(--green);
  border-radius: 7px;
  padding: 14px 18px;
  box-shadow: 3px 4px 0 var(--green);
  font-size: 10px;
  letter-spacing: 1px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 10px;
  transform: rotate(-7deg);
  z-index: 5;
}
.baton-note {
  position: absolute;
  right: 5px;
  top: 43px;
  font-size: 17px;
  line-height: 1.1;
  font-family: Georgia, serif;
  font-style: italic;
  transform: rotate(10deg);
  color: #658052;
  z-index: 4;
}
.baton-note svg {
  width: 50px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  display: block;
  margin: 9px 0 0 20px;
}
.art-label {
  position: absolute;
  bottom: 0;
  left: 16%;
  right: 3%;
  display: flex;
  justify-content: space-between;
  font-size: 8px;
  letter-spacing: 1px;
  color: #88927b;
}
.ticker {
  height: 60px;
  background: var(--green-bright);
  overflow: hidden;
  border-top: 1px solid var(--green);
  border-bottom: 1px solid var(--green);
  display: flex;
  align-items: center;
}
.ticker-track {
  display: flex;
  align-items: center;
  gap: 45px;
  width: max-content;
  animation: marquee 45s linear infinite;
}
.ticker-track span {
  white-space: nowrap;
  font-family: var(--font-display);
  font-size: 25px;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.ticker-track b {
  font-size: 31px;
  font-weight: 400;
}
.roadmap-section {
  background: var(--green-dark);
  color: var(--cream);
  padding: 93px 0 36px;
  overflow: hidden;
}
.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
}
.roadmap-heading {
  position: relative;
  margin-bottom: 45px;
}
.section-number {
  opacity: 0.5;
}
.section-heading h2 {
  font-family: var(--font-display);
  font-size: 68px;
  line-height: 0.93;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin: 0;
}
.roadmap-heading h2 > span {
  color: var(--green-bright);
}
.roadmap-heading .eyebrow {
  color: #c4d4ac;
  margin-bottom: 20px;
}
.roadmap-heading > p {
  font-size: 12px;
  line-height: 1.9;
  color: #bac8b6;
  margin: 0 165px 4px 0;
}
.roadmap-star {
  position: absolute;
  font-size: 114px;
  right: 13px;
  top: 7px;
  line-height: 1;
  color: var(--green-bright);
  transform: rotate(13deg);
}
.roadmap-grid {
  padding: 0;
  margin: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 21px;
}
.phase-card {
  padding: 26px 28px 20px;
  border: 1px solid #527159;
  border-radius: 12px;
  background: #214631;
  transition:
    transform 0.2s,
    border-color 0.2s;
}
.phase-card:hover {
  transform: translateY(-5px);
  border-color: var(--green-bright);
}
.phase-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 7px;
  margin-bottom: 26px;
}
.phase-number {
  font-family: var(--font-display);
  font-size: 49px;
  line-height: 1;
  color: var(--green-bright);
  font-weight: 600;
}
.phase-tag {
  font-size: 8px;
  letter-spacing: 0.8px;
  border: 1px solid #587254;
  padding: 7px 9px;
  border-radius: 20px;
  color: #c3d2b3;
  white-space: nowrap;
}
.phase-card h3 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 13px;
  letter-spacing: 0.1px;
}
.phase-card > p {
  font-size: 12px;
  color: #becbb7;
  line-height: 1.9;
  min-height: 68px;
  margin-bottom: 22px;
}
.phase-card ul {
  list-style: none;
  margin: 0 0 26px;
  padding: 0;
  display: grid;
  gap: 15px;
}
.phase-card li {
  font-size: 10px;
  color: #dae3d2;
  display: flex;
  gap: 9px;
  align-items: flex-start;
}
.phase-card li:before {
  content: "↗";
  color: var(--green-bright);
  font-size: 13px;
  line-height: 1;
}
.phase-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #46634a;
  padding-top: 19px;
  color: #a0b493;
  font-size: 8px;
  letter-spacing: 1px;
}
.phase-bottom > span:last-child {
  font-size: 21px;
  line-height: 1;
  color: #d3e7ac;
}
.roadmap-footnote {
  margin: 28px 0 0;
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #8fa486;
}
.roadmap-footnote .status-dot {
  width: 5px;
  height: 5px;
  background: #aac889;
  box-shadow: none;
}
.chart-section {
  padding-top: 86px;
  padding-bottom: 87px;
}
.chart-heading {
  margin-bottom: 33px;
}
.chart-heading .eyebrow {
  margin-bottom: 18px;
}
.chart-heading h2 {
  font-size: 67px;
}
.chart-heading h2 > span {
  color: #69854b;
}
.chart-heading .button {
  margin-bottom: 3px;
  font-size: 11px;
}
.chart-window {
  border: 1px solid #aebba1;
  overflow: hidden;
  border-radius: 12px;
  background: #16261e;
}
.chart-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 25px;
  background: #203b2c;
  border-bottom: 1px solid #3b5140;
  color: #e4ecdc;
  gap: 15px;
}
.chart-pair {
  display: flex;
  gap: 10px;
  align-items: center;
}
.chart-pair > span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.chart-pair small {
  display: block;
  font-size: 8px;
  font-weight: 400;
  color: #9aaf94;
  letter-spacing: 1.4px;
  margin-top: 3px;
}
.chart-status {
  font-size: 8px;
  letter-spacing: 1.3px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #b2c89b;
}
.chart-status .status-dot {
  width: 5px;
  height: 5px;
  background: #c5dd82;
  box-shadow: none;
}
.chart-body {
  height: 480px;
  position: relative;
  background: #111;
}
#dexscreener-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: #111;
}
.chart-empty {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  margin: 0;
  padding: 24px;
  color: #b2c89b;
  text-align: center;
  font-size: 14px;
}
.chart-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 24px;
  font-size: 8px;
  letter-spacing: 1px;
  color: #8d9c83;
  border-top: 1px solid #344536;
  background: #1d3326;
}
.chart-bottom > span:last-child > span {
  padding-left: 7px;
}
.site-footer {
  border-top: 1px solid var(--line);
  padding-top: 30px;
  padding-bottom: 24px;
}
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 27px;
}
.footer-top .brand > span {
  font-size: 25px;
}
.footer-top > p {
  font-size: 11px;
  color: #7b8574;
  margin: 0;
}
.footer-socials {
  display: flex;
  gap: 8px;
}
.social-button {
  width: 39px;
  height: 39px;
  border: 1px solid #bfc8b2;
  border-radius: 7px;
  display: grid;
  place-items: center;
  transition:
    background 0.2s,
    transform 0.2s;
}
.social-button:hover {
  background: #e5ead5;
  transform: translateY(-2px);
}
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 9px;
  color: #8a9380;
}
.footer-bottom > span:last-child {
  font-size: 8px;
  letter-spacing: 1.2px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-star {
  font-size: 19px;
  color: #5f7a49;
}
.toast {
  position: fixed;
  z-index: 40;
  left: 50%;
  bottom: 28px;
  max-width: calc(100% - 32px);
  width: max-content;
  background: var(--green-dark);
  color: var(--cream);
  font-size: 13px;
  line-height: 1.5;
  padding: 16px 24px;
  border: 1px solid #718761;
  border-radius: 10px;
  box-shadow: 0 8px 35px #102c2833;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 20px);
  transition:
    opacity 0.2s,
    transform 0.2s;
}
.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}
.skip-link {
  position: fixed;
  top: -70px;
  left: 16px;
  z-index: 50;
  background: var(--green);
  color: white;
  padding: 12px 20px;
  border-radius: 6px;
}
.skip-link:focus {
  top: 12px;
}
.noscript-note {
  text-align: center;
  font-size: 13px;
  padding: 14px;
}
.menu-toggle {
  border: 1px solid var(--green);
  background: transparent;
  align-items: center;
  gap: 5px;
  border-radius: 7px;
  padding: 8px 9px;
  color: var(--green);
  font-size: 11px;
  cursor: pointer;
}
@keyframes marquee {
  to {
    transform: translateX(-33.333333%);
  }
}
@media (min-width: 1600px) {
  .hero {
    min-height: 755px;
  }
  .hero-art {
    height: 655px;
  }
  h1 {
    font-size: 119px;
  }
  .art-disc {
    top: 90px;
  }
  .character-frame {
    bottom: 23px;
  }
}
@media (max-width: 1150px) {
  .container {
    width: calc(100% - 64px);
  }
  .navigation {
    gap: 22px;
  }
  .brand > span {
    font-size: 26px;
  }
  .header-buy {
    font-size: 10px;
    padding-inline: 12px;
  }
  .hero {
    min-height: 630px;
    gap: 0;
  }
  .hero-art {
    height: 545px;
  }
  .hero-description {
    font-size: 12px;
  }
  .hero-buttons {
    max-width: 400px;
  }
  .button-large {
    font-size: 10px;
    padding: 10px 12px;
    gap: 7px;
  }
  .hero-art .art-disc {
    top: 85px;
  }
  .spark-one {
    left: 7px;
    top: 125px;
    font-size: 52px;
  }
  .mascot-sticker {
    left: 29px;
    font-size: 8px;
    padding: 12px;
  }
  .baton-note {
    font-size: 15px;
    right: 0;
    top: 57px;
  }
  .art-label {
    font-size: 7px;
  }
  .roadmap-heading > p {
    margin-right: 110px;
  }
  .roadmap-star {
    font-size: 88px;
    top: 22px;
    right: 0;
  }
  .phase-card {
    padding: 23px 20px 19px;
  }
  .phase-tag {
    font-size: 7px;
    padding-inline: 7px;
  }
  .phase-card li {
    font-size: 9px;
  }
  .phase-card > p {
    font-size: 11px;
  }
  .section-heading h2 {
    font-size: 62px;
  }
  .roadmap-grid {
    gap: 15px;
  }
}
@media (max-width: 850px) {
  .header-inner {
    height: 82px;
    gap: 16px;
  }
  .navigation {
    gap: 18px;
  }
  .nav-link {
    font-size: 11px;
  }
  .header-buy {
    font-size: 11px;
    gap: 6px;
    padding: 8px 12px;
    min-height: 44px;
  }
  .header-buy .buy-ticker {
    display: none;
  }
  .header-buy .arrow {
    font-size: 16px;
    padding-left: 7px;
  }
  .hero {
    min-height: 565px;
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .hero-art {
    height: 485px;
  }
  h1 {
    font-size: 78px;
  }
  .eyebrow {
    font-size: 8px;
    letter-spacing: 1.15px;
  }
  .hero-description {
    font-size: 11px;
    margin-bottom: 20px;
  }
  .hero-buttons {
    gap: 8px;
  }
  .button-large {
    padding: 9px;
    min-height: 50px;
    font-size: 9px;
    gap: 5px;
  }
  .button-large img {
    width: 23px;
    height: 23px;
  }
  .button-large .arrow {
    font-size: 14px;
    padding-left: 2px;
  }
  .hero-note {
    gap: 9px;
    margin-top: 20px;
  }
  .hero-note p {
    font-size: 8px;
  }
  .hero-art .art-disc {
    top: 108px;
  }
  .character-frame {
    inset: 39px -13% 22px -8%;
  }
  .mascot-sticker {
    left: 15px;
    bottom: 66px;
    font-size: 7px;
    gap: 7px;
  }
  .spark-one {
    top: 124px;
    font-size: 42px;
  }
  .spark-two {
    right: -5px;
    font-size: 25px;
    bottom: 131px;
  }
  .art-orbit.orbit-one {
    height: 55%;
    top: 181px;
  }
  .art-orbit.orbit-two {
    height: 72%;
    top: 110px;
  }
  .art-disc > span {
    font-size: 90px;
    top: 90px;
    right: 20px;
  }
  .baton-note {
    font-size: 13px;
    top: 73px;
  }
  .baton-note svg {
    width: 36px;
  }
  .art-label {
    left: 7%;
    right: 0;
    font-size: 6px;
  }
  .roadmap-section {
    padding-top: 65px;
  }
  .roadmap-heading > p {
    font-size: 10px;
    margin-right: 80px;
  }
  .roadmap-star {
    font-size: 66px;
    top: 30px;
  }
  .section-heading h2 {
    font-size: 54px;
  }
  .phase-card {
    padding: 21px 15px 17px;
  }
  .phase-top {
    align-items: flex-start;
    flex-direction: column;
    gap: 13px;
    margin-bottom: 20px;
  }
  .phase-card h3 {
    font-size: 28px;
  }
  .phase-card > p {
    font-size: 10px;
    min-height: 78px;
  }
  .phase-card li {
    font-size: 9px;
    line-height: 1.7;
  }
  .phase-card li:before {
    padding-top: 2px;
  }
  .phase-bottom {
    font-size: 6px;
    letter-spacing: 0.7px;
  }
  .chart-section {
    padding-block: 65px;
  }
  .chart-heading .button {
    font-size: 9px;
    padding-inline: 12px;
  }
  .chart-heading h2 {
    font-size: 53px;
  }
  .footer-top > p {
    font-size: 9px;
  }
}
@media (max-width: 640px) {
  html {
    scroll-padding-top: 90px;
  }
  .container {
    width: calc(100% - 36px);
  }
  .header-inner {
    height: 76px;
    gap: 7px;
  }
  .brand {
    gap: 2px;
  }
  .brand > img {
    width: 41px;
    height: 41px;
  }
  .brand > span {
    font-size: 24px;
  }
  .brand sup {
    font-size: 7px;
    top: 7px;
  }
  .header-actions {
    gap: 7px;
  }
  .header-buy {
    padding: 7px 8px;
    min-height: 39px;
  }
  .header-buy img {
    width: 21px;
    height: 21px;
  }
  .header-buy .arrow {
    display: none;
  }
  .menu-toggle {
    display: flex;
    height: 39px;
  }
  .menu-toggle img {
    width: 20px;
    height: 20px;
  }
  .navigation {
    display: none;
    position: absolute;
    top: 75px;
    left: 0;
    right: 0;
    padding: 16px 24px 23px;
    background: var(--cream);
    border-bottom: 1px solid #b8c2aa;
    box-shadow: 0 10px 15px #173c2a0a;
  }
  .navigation.is-open {
    display: flex;
    justify-content: center;
    gap: 38px;
  }
  .nav-link {
    font-size: 14px;
  }
  .hero {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding-top: 43px;
    padding-bottom: 28px;
    gap: 9px;
  }
  .hero-copy {
    padding: 0 5px;
  }
  .hero .eyebrow {
    font-size: 9px;
    margin-bottom: 24px;
  }
  h1 {
    font-size: clamp(65px, 19vw, 106px);
    letter-spacing: -1px;
    line-height: 0.9;
    margin-bottom: 32px;
  }
  .hero-description {
    font-size: 13px;
    line-height: 1.8;
    max-width: 370px;
    margin-bottom: 24px;
  }
  .desktop-break {
    display: none;
  }
  .hero-buttons {
    max-width: none;
    gap: 10px;
  }
  .button-large {
    min-height: 55px;
    padding: 11px 12px;
    font-size: 11px;
    gap: 8px;
  }
  .button-large img {
    width: 26px;
    height: 26px;
  }
  .button-large .arrow {
    font-size: 17px;
  }
  .hero-note {
    margin-top: 22px;
  }
  .hero-note p {
    font-size: 9px;
  }
  .hero-art {
    width: 100%;
    height: 480px;
    align-self: center;
    margin-top: -10px;
  }
  .hero-art .art-disc {
    width: 88%;
    top: 72px;
    right: 3%;
  }
  .character-frame {
    inset: -4px -8% 20px -8%;
    border-radius: 0 0 48% 48%;
  }
  .art-disc > span {
    font-size: 110px;
    top: 109px;
    right: 30px;
  }
  .art-orbit.orbit-one {
    width: 96%;
    height: 67%;
    top: 121px;
    left: 1%;
  }
  .art-orbit.orbit-two {
    width: 82%;
    height: 84%;
    top: 35px;
    left: 10%;
  }
  .spark-one {
    top: 81px;
    left: 9px;
    font-size: 47px;
  }
  .spark-two {
    right: 5px;
    bottom: 103px;
    font-size: 27px;
  }
  .baton-note {
    top: 17px;
    right: 8px;
    font-size: 14px;
  }
  .mascot-sticker {
    bottom: 61px;
    left: 24px;
    font-size: 8px;
    padding: 13px 15px;
  }
  .art-label {
    bottom: 1px;
    left: 7%;
    right: 5%;
    font-size: 7px;
  }
  .ticker {
    height: 51px;
  }
  .ticker-track {
    gap: 28px;
  }
  .ticker-track span {
    font-size: 22px;
  }
  .ticker-track b {
    font-size: 26px;
  }
  .roadmap-section {
    padding: 58px 0 29px;
  }
  .section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
  }
  .roadmap-heading {
    margin-bottom: 30px;
  }
  .section-heading h2 {
    font-size: 60px;
  }
  .roadmap-heading .eyebrow {
    font-size: 9px;
    margin-bottom: 19px;
  }
  .roadmap-heading > p {
    margin: 0;
    font-size: 11px;
    line-height: 1.8;
  }
  .roadmap-star {
    top: -8px;
    right: 0;
    font-size: 44px;
  }
  .roadmap-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .phase-card {
    padding: 24px 26px 21px;
  }
  .phase-top {
    flex-direction: row;
    align-items: center;
    margin-bottom: 22px;
  }
  .phase-number {
    font-size: 50px;
  }
  .phase-tag {
    font-size: 8px;
    padding: 8px 10px;
  }
  .phase-card h3 {
    font-size: 35px;
  }
  .phase-card > p {
    min-height: 0;
    font-size: 12px;
    max-width: 350px;
    margin-bottom: 24px;
  }
  .phase-card li {
    font-size: 11px;
    line-height: 1.6;
  }
  .phase-card ul {
    gap: 13px;
    margin-bottom: 23px;
  }
  .phase-bottom {
    font-size: 8px;
  }
  .roadmap-footnote {
    font-size: 8px;
    margin-top: 24px;
  }
  .chart-section {
    padding-top: 57px;
    padding-bottom: 49px;
  }
  .chart-heading {
    gap: 24px;
    margin-bottom: 25px;
  }
  .chart-heading .eyebrow {
    font-size: 8px;
  }
  .chart-heading h2 {
    font-size: 57px;
  }
  .chart-heading .button {
    font-size: 10px;
    min-height: 45px;
  }
  .chart-toolbar {
    padding: 13px 14px;
  }
  .chart-pair {
    gap: 6px;
  }
  .chart-pair > img {
    width: 31px;
    height: 31px;
  }
  .chart-pair > span {
    font-size: 10px;
  }
  .chart-pair small {
    font-size: 6px;
  }
  .chart-status {
    font-size: 6px;
    letter-spacing: 0.7px;
    gap: 6px;
  }
  .chart-body {
    height: 460px;
  }
  .chart-bottom {
    font-size: 6px;
    line-height: 1.6;
    padding: 13px 14px;
    gap: 20px;
  }
  .chart-bottom > span {
    max-width: 48%;
  }
  .chart-bottom > span:last-child {
    text-align: right;
  }
  .footer-top {
    flex-wrap: wrap;
    gap: 14px;
    padding-bottom: 24px;
  }
  .footer-top .brand > span {
    font-size: 24px;
  }
  .footer-top > p {
    width: 100%;
    order: 3;
    font-size: 10px;
    padding-left: 4px;
  }
  .footer-socials {
    gap: 6px;
  }
  .social-button {
    width: 33px;
    height: 33px;
  }
  .footer-bottom {
    font-size: 8px;
    gap: 15px;
  }
  .footer-bottom > span:last-child {
    font-size: 6px;
    gap: 4px;
    letter-spacing: 0.6px;
  }
  .toast {
    font-size: 12px;
    bottom: 18px;
    padding: 13px 18px;
  }
}
@media (max-width: 370px) {
  .brand > span {
    font-size: 21px;
  }
  .brand > img {
    width: 36px;
    height: 36px;
  }
  .header-actions {
    gap: 5px;
  }
  .menu-toggle {
    padding-inline: 6px;
    font-size: 10px;
  }
  .hero-copy {
    padding-inline: 0;
  }
  .button-large {
    font-size: 10px;
    padding-inline: 10px;
    gap: 6px;
  }
  .hero-art {
    height: 425px;
  }
  .mascot-sticker {
    left: 9px;
  }
  .chart-heading h2 {
    font-size: 51px;
  }
  .footer-top .brand > span {
    font-size: 22px;
  }
  .social-button {
    width: 30px;
    height: 30px;
  }
  .footer-bottom {
    font-size: 7px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
}
