:root {
  --green: #00c853;
  --green-dark: #008f3b;
  --green-deep: #073d25;
  --green-soft: #eafff1;
  --ink: #10231a;
  --muted: #617169;
  --line: #dfe9e3;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(18, 70, 43, 0.11);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

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

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 200;
  padding: 12px 18px;
  border-radius: 12px;
  background: var(--ink);
  color: white;
  transition: top .2s ease;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  background: rgba(255, 255, 255, .8);
  border-bottom: 1px solid rgba(222, 234, 226, .75);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  width: min(1180px, calc(100% - 40px));
  height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 44px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-weight: 800;
  letter-spacing: -.025em;
  white-space: nowrap;
}

.brand-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 12px 12px 5px 12px;
  color: white;
  background: linear-gradient(145deg, #1ee56d, var(--green-dark));
  box-shadow: 0 8px 18px rgba(0, 200, 83, .24);
  font-weight: 900;
  transform: rotate(-5deg);
}

.site-nav {
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 34px;
}

.site-nav a,
.footer-links a {
  color: #526159;
  font-size: 14px;
  font-weight: 650;
  transition: color .2s ease;
}

.site-nav a:hover,
.footer-links a:hover {
  color: var(--green-dark);
}

.nav-cta {
  padding: 12px 20px;
  border-radius: 999px;
  color: white;
  background: var(--ink);
  font-size: 14px;
  font-weight: 750;
  transition: transform .2s ease, background .2s ease;
}

.nav-cta:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 800px;
  padding: 142px 24px 112px;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 38%, rgba(0, 200, 83, .14), transparent 27%),
    radial-gradient(circle at 86% 13%, rgba(87, 255, 159, .14), transparent 27%),
    linear-gradient(145deg, #fff 25%, #f2fff7 100%);
}

.hero::before {
  content: "";
  position: absolute;
  width: 760px;
  height: 760px;
  top: -390px;
  right: -140px;
  border: 1px solid rgba(0, 200, 83, .16);
  border-radius: 50%;
  box-shadow:
    0 0 0 70px rgba(0, 200, 83, .035),
    0 0 0 140px rgba(0, 200, 83, .025);
}

.hero-grid {
  position: relative;
  z-index: 4;
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(380px, .92fr) minmax(460px, 1.08fr);
  align-items: center;
  gap: clamp(42px, 7vw, 96px);
}

.hero-copy {
  order: 2;
}

.mascot-stage {
  position: relative;
  order: 1;
  min-height: 530px;
  display: grid;
  place-items: center;
}

.mascot-stage img {
  position: relative;
  z-index: 3;
  width: min(100%, 470px);
  height: auto;
  border-radius: 50%;
  filter: drop-shadow(0 34px 44px rgba(0, 83, 36, .22));
  animation: gentle-float 6s ease-in-out infinite;
}

.mascot-halo {
  position: absolute;
  width: 92%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(255,255,255,.95), rgba(179,255,210,.58));
  border: 1px solid rgba(0, 200, 83, .15);
  box-shadow: var(--shadow), inset 0 0 80px rgba(255,255,255,.85);
}

.floating-pill {
  position: absolute;
  z-index: 5;
  padding: 13px 17px;
  border: 1px solid rgba(255, 255, 255, .9);
  border-radius: 999px;
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 16px 36px rgba(20, 70, 44, .12);
  backdrop-filter: blur(16px);
  color: #315342;
  font-size: 12px;
  font-weight: 750;
  white-space: nowrap;
}

.pill-chain {
  top: 15%;
  left: -2%;
}

.pill-community {
  right: -3%;
  bottom: 16%;
}

.pulse-dot,
.status-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(0, 200, 83, .13);
}

.eyebrow {
  margin: 0 0 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 28px;
  height: 2px;
  background: var(--green);
}

.eyebrow.centered {
  justify-content: center;
}

.eyebrow.light {
  color: #7effb2;
}

.hero h1 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(48px, 5.5vw, 80px);
  line-height: .98;
  letter-spacing: -.06em;
}

.hero h1 em {
  display: block;
  color: var(--green);
  font-style: normal;
}

.hero-subtitle {
  max-width: 570px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.6;
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

.button {
  min-height: 56px;
  padding: 0 27px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 16px;
  font-size: 15px;
  font-weight: 780;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button-primary {
  color: white;
  background: linear-gradient(135deg, #00d95b, #00a846);
  box-shadow: 0 14px 30px rgba(0, 200, 83, .26);
}

.button-primary:hover {
  box-shadow: 0 18px 38px rgba(0, 200, 83, .32);
}

.button-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 10px 28px rgba(22, 57, 38, .06);
}

.button-secondary:hover {
  border-color: #b8dbc6;
  background: white;
}

.hero-note {
  margin: 24px 0 0;
  color: #718078;
  font-size: 13px;
}

.hero-note span {
  margin-right: 6px;
  color: var(--green-dark);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
}

.hero-orb-one {
  width: 18px;
  height: 18px;
  left: 8%;
  top: 23%;
  background: #8af7b8;
  box-shadow: 0 8px 20px rgba(0, 200, 83, .3);
}

.hero-orb-two {
  width: 10px;
  height: 10px;
  right: 14%;
  bottom: 25%;
  background: var(--green);
}

.leaf {
  position: absolute;
  z-index: 2;
  color: rgba(0, 200, 83, .26);
  font-size: 20px;
  transform: rotate(35deg) skew(-12deg);
}

.leaf-one { top: 19%; left: 52%; }
.leaf-two { top: 32%; right: 6%; font-size: 13px; }
.leaf-three { bottom: 19%; left: 46%; font-size: 11px; }

.wave-lines {
  position: absolute;
  inset: auto -5% -30px;
  height: 160px;
  transform: rotate(-2deg);
}

.wave-lines span {
  position: absolute;
  inset: auto 0;
  height: 90px;
  border-top: 1px solid rgba(0, 200, 83, .26);
  border-radius: 50%;
}

.wave-lines span:nth-child(2) { top: 28px; opacity: .6; }
.wave-lines span:nth-child(3) { top: 56px; opacity: .35; }

.contract-bar {
  position: relative;
  z-index: 10;
  width: min(1060px, calc(100% - 40px));
  margin: -54px auto 0;
}

.contract-inner {
  min-height: 108px;
  padding: 20px 22px 20px 26px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  border: 1px solid rgba(213, 230, 220, .85);
  border-radius: 24px;
  background: rgba(255, 255, 255, .9);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.contract-label {
  display: flex;
  align-items: center;
}

.contract-label small,
.contract-label strong {
  display: block;
}

.contract-label small {
  margin-bottom: 4px;
  color: #7d8d84;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.contract-label strong {
  font-size: 14px;
}

.contract-inner code {
  min-width: 0;
  overflow-wrap: anywhere;
  color: #345042;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 13px;
  text-align: center;
}

.copy-button {
  height: 50px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 0;
  border-radius: 14px;
  color: white;
  background: var(--ink);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 750;
  transition: transform .2s ease, background .2s ease;
}

.copy-button:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
}

.section {
  padding: 140px 24px;
}

.section-heading {
  width: min(720px, 100%);
  margin: 0 auto 62px;
  text-align: center;
}

.section-heading h2,
.token-copy h2,
.community-copy h2 {
  margin: 0;
  font-size: clamp(38px, 4.5vw, 62px);
  line-height: 1.05;
  letter-spacing: -.05em;
}

.section-heading > p:last-child,
.token-copy > p:last-child,
.community-copy > p:last-child {
  margin: 22px auto 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.feature-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature-card {
  min-height: 250px;
  padding: 30px;
  border: 1px solid #e3ece6;
  border-radius: var(--radius);
  background: linear-gradient(145deg, #fff, #fbfefc);
  box-shadow: 0 14px 40px rgba(20, 62, 39, .05);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: #bde3cc;
  box-shadow: 0 24px 55px rgba(20, 80, 45, .1);
}

.feature-card-green {
  color: white;
  border-color: transparent;
  background: linear-gradient(145deg, #00d75a, #009841);
  box-shadow: 0 24px 52px rgba(0, 168, 70, .22);
}

.feature-icon {
  width: 46px;
  height: 46px;
  margin-bottom: 38px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--green-dark);
  background: var(--green-soft);
  font-size: 20px;
  font-weight: 850;
}

.feature-card-green .feature-icon {
  color: white;
  background: rgba(255, 255, 255, .17);
}

.feature-card h3 {
  margin: 0 0 10px;
  font-size: 19px;
  letter-spacing: -.02em;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.feature-card-green p {
  color: rgba(255, 255, 255, .8);
}

.banner-section {
  padding: 0 24px;
}

.banner-frame {
  position: relative;
  width: min(1320px, 100%);
  margin: 0 auto;
  overflow: hidden;
  border-radius: 34px;
  background: #eafff0;
  box-shadow: 0 28px 75px rgba(10, 85, 43, .16);
}

.banner-frame img {
  width: 100%;
  height: auto;
}

.banner-overlay {
  position: absolute;
  inset: auto 4% 8% auto;
  padding: 18px 22px;
  border: 1px solid rgba(255, 255, 255, .55);
  border-radius: 18px;
  color: white;
  background: rgba(4, 52, 27, .52);
  backdrop-filter: blur(15px);
}

.banner-overlay p {
  margin: 0;
  font-size: clamp(13px, 1.6vw, 20px);
  line-height: 1.4;
}

.token-section {
  background:
    radial-gradient(circle at 80% 30%, rgba(0, 200, 83, .1), transparent 28%),
    #f7fbf8;
}

.token-layout {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(70px, 10vw, 140px);
  align-items: center;
}

.token-copy > p:last-child {
  max-width: 500px;
  margin-left: 0;
}

.token-list {
  border: 1px solid #dce9e1;
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 255, 255, .72);
  box-shadow: var(--shadow);
}

.token-list > div {
  min-height: 88px;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 44px 1fr auto;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid var(--line);
  transition: background .2s ease;
}

.token-list > div:last-child {
  border-bottom: 0;
}

.token-list > div:hover {
  background: #f4fff8;
}

.token-list span {
  color: var(--green);
  font-size: 12px;
  font-weight: 850;
}

.token-list strong {
  font-size: 15px;
}

.token-list i {
  color: #7b8c83;
  font-size: 12px;
  font-style: normal;
}

.roadmap-section {
  overflow: hidden;
}

.roadmap {
  position: relative;
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.roadmap-line {
  position: absolute;
  z-index: 0;
  top: 67px;
  right: 9%;
  left: 9%;
  height: 1px;
  background: linear-gradient(90deg, var(--green) 0 28%, #dce8e1 28%);
}

.roadmap-card {
  position: relative;
  z-index: 1;
  padding: 22px 20px;
  text-align: center;
}

.phase {
  color: #8a9991;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.roadmap-dot {
  width: 42px;
  height: 42px;
  margin: 24px auto 30px;
  display: grid;
  place-items: center;
  border: 7px solid white;
  border-radius: 50%;
  color: #718078;
  background: #e8efeb;
  box-shadow: 0 0 0 1px #dae6df;
  font-size: 11px;
  font-weight: 850;
}

.roadmap-card.active .roadmap-dot {
  color: white;
  background: var(--green);
  box-shadow: 0 0 0 1px var(--green), 0 8px 18px rgba(0, 200, 83, .2);
}

.roadmap-card h3 {
  margin: 0 0 10px;
  font-size: 18px;
}

.roadmap-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.community-section {
  padding-top: 0;
}

.community-card {
  position: relative;
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: clamp(42px, 6vw, 74px);
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 70px;
  align-items: center;
  overflow: hidden;
  border-radius: 34px;
  color: white;
  background:
    radial-gradient(circle at 15% 110%, rgba(0, 255, 106, .22), transparent 38%),
    linear-gradient(135deg, #0a2f1e, #073b23);
  box-shadow: 0 34px 80px rgba(5, 53, 29, .2);
}

.community-card::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  right: -150px;
  top: -190px;
  border: 1px solid rgba(80, 255, 154, .16);
  border-radius: 50%;
  box-shadow: 0 0 0 50px rgba(80, 255, 154, .04), 0 0 0 100px rgba(80, 255, 154, .025);
}

.community-copy,
.social-grid {
  position: relative;
  z-index: 2;
}

.community-copy > p:last-child {
  color: rgba(255, 255, 255, .62);
}

.social-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.social-grid a {
  min-height: 132px;
  padding: 20px;
  display: grid;
  grid-template-columns: 42px 1fr auto;
  grid-template-rows: 1fr 1fr;
  column-gap: 13px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 20px;
  background: rgba(255, 255, 255, .065);
  transition: transform .22s ease, background .22s ease, border-color .22s ease;
}

.social-grid a:hover {
  transform: translateY(-4px);
  border-color: rgba(105, 255, 168, .3);
  background: rgba(255, 255, 255, .1);
}

.social-icon {
  grid-row: 1 / 3;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: #062e1b;
  background: #66ff9f;
  font-size: 11px;
  font-weight: 900;
}

.social-grid strong {
  align-self: end;
  font-size: 14px;
}

.social-grid small {
  align-self: start;
  color: rgba(255, 255, 255, .55);
  font-size: 11px;
}

.social-grid i {
  grid-column: 3;
  grid-row: 1 / 3;
  color: #72ffa9;
  font-style: normal;
}

.site-footer {
  padding: 36px 24px;
  border-top: 1px solid var(--line);
}

.footer-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.footer-inner p {
  color: #87958d;
  font-size: 12px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.toast {
  position: fixed;
  z-index: 300;
  right: 24px;
  bottom: 24px;
  padding: 14px 20px;
  border-radius: 14px;
  color: white;
  background: var(--ink);
  box-shadow: var(--shadow);
  font-size: 13px;
  font-weight: 700;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: opacity .2s ease, transform .2s ease;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

@keyframes gentle-float {
  0%, 100% { transform: translateY(0) rotate(-.5deg); }
  50% { transform: translateY(-10px) rotate(.5deg); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

@media (max-width: 980px) {
  .hero {
    min-height: auto;
    padding-top: 126px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 38px;
    text-align: center;
  }

  .hero-copy {
    order: 1;
  }

  .mascot-stage {
    order: 2;
    width: min(520px, 100%);
    min-height: 470px;
    margin: 0 auto;
  }

  .eyebrow:not(.centered) {
    justify-content: center;
  }

  .hero h1,
  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .contract-inner {
    grid-template-columns: 1fr auto;
  }

  .contract-label {
    grid-column: 1 / 3;
    justify-content: center;
  }

  .contract-inner code {
    text-align: left;
  }

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

  .token-layout,
  .community-card {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .token-copy {
    text-align: center;
  }

  .token-copy > p:last-child {
    margin-left: auto;
  }

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

  .roadmap-line {
    display: none;
  }
}

@media (max-width: 760px) {
  .nav-wrap {
    height: 70px;
    width: min(100% - 28px, 1180px);
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
    margin-left: auto;
    padding: 0 12px;
    display: grid;
    align-content: center;
    gap: 5px;
    border: 1px solid var(--line);
    border-radius: 13px;
    background: white;
  }

  .menu-toggle span:not(.sr-only) {
    width: 100%;
    height: 2px;
    background: var(--ink);
    transition: transform .2s ease, opacity .2s ease;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    inset: 70px 14px auto;
    padding: 16px;
    display: grid;
    gap: 4px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255,255,255,.96);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity .2s ease, transform .2s ease;
  }

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

  .site-nav a {
    padding: 13px 12px;
    border-radius: 10px;
  }

  .site-nav a:hover {
    background: var(--green-soft);
  }

  .nav-cta {
    display: none;
  }

  .hero {
    padding: 116px 18px 95px;
  }

  .hero h1 {
    font-size: clamp(42px, 13vw, 62px);
  }

  .mascot-stage {
    min-height: 390px;
  }

  .mascot-stage img {
    width: min(100%, 380px);
  }

  .floating-pill {
    font-size: 10px;
  }

  .pill-chain {
    left: 0;
  }

  .pill-community {
    right: 0;
  }

  .contract-bar {
    width: calc(100% - 28px);
  }

  .contract-inner {
    padding: 20px;
    gap: 16px;
  }

  .contract-inner code {
    grid-column: 1 / 3;
    padding: 13px;
    border-radius: 12px;
    background: #f3f8f5;
    font-size: 11px;
    text-align: center;
  }

  .copy-button {
    grid-column: 1 / 3;
    justify-content: center;
  }

  .section {
    padding: 100px 18px;
  }

  .section-heading {
    margin-bottom: 42px;
  }

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

  .feature-card {
    min-height: 220px;
  }

  .banner-section {
    padding: 0 14px;
  }

  .banner-frame {
    border-radius: 22px;
  }

  .banner-overlay {
    right: 3%;
    bottom: 7%;
    padding: 10px 13px;
    border-radius: 12px;
  }

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

  .roadmap-card {
    padding: 18px 20px;
    border-bottom: 1px solid var(--line);
  }

  .roadmap-card:last-child {
    border-bottom: 0;
  }

  .roadmap-dot {
    margin: 15px auto 19px;
  }

  .community-section {
    padding-top: 0;
  }

  .community-card {
    padding: 38px 22px;
    border-radius: 24px;
  }

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

  .social-grid a {
    min-height: 92px;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 420px) {
  .brand > span:last-child {
    font-size: 14px;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .mascot-stage {
    min-height: 330px;
  }

  .floating-pill {
    padding: 10px 12px;
  }

  .pill-chain {
    top: 10%;
  }

  .pill-community {
    bottom: 10%;
  }

  .token-list > div {
    grid-template-columns: 35px 1fr;
  }

  .token-list i {
    display: none;
  }

  .footer-links {
    justify-content: center;
  }
}
