:root {
  --ink: #0b100e;
  --moss: #121a16;
  --slate: #1a2420;
  --stone: #24302b;
  --cream: #f4ead4;
  --cream-soft: #e8d8b8;
  --gold: #e6b35a;
  --amber: #d07a28;
  --bengal: #c45a22;
  --teal: #1a8f86;
  --lake: #127a88;
  --lantern: #3ee87a;
  --lantern-deep: #167a42;
  --forest: #0d3328;
  --line: rgba(244, 234, 212, 0.12);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  --display: "Lilita One", "Fredoka", sans-serif;
  --cat: "Fredoka", "Nunito", sans-serif;
  --body: "Nunito", "Fredoka", sans-serif;
  --script: "Meow Script", "Fredoka", cursive;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body);
  color: var(--cream);
  background: var(--ink);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.65;
}

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

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

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

code {
  font-family: var(--cat);
}

::selection {
  background: rgba(62, 232, 122, 0.28);
  color: var(--cream);
}

/* atmosphere */
.grain,
.haze,
#leaf-field {
  pointer-events: none;
}

#leaf-field {
  position: fixed;
  inset: 0;
  z-index: 8;
}

.grain {
  position: fixed;
  inset: 0;
  z-index: 7;
  opacity: 0.09;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.haze {
  position: fixed;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(900px 500px at 15% 10%, rgba(20, 138, 154, 0.16), transparent 60%),
    radial-gradient(700px 420px at 88% 80%, rgba(62, 232, 122, 0.08), transparent 55%),
    radial-gradient(600px 360px at 50% 100%, rgba(196, 90, 34, 0.1), transparent 50%),
    linear-gradient(180deg, #0b100e 0%, #101815 40%, #0d1412 100%);
}

/* boot */
.boot {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  background: #090d0b;
  transition: opacity 0.7s var(--ease), visibility 0.7s;
}

.boot.is-gone {
  opacity: 0;
  visibility: hidden;
}

.boot-glow {
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(62, 232, 122, 0.35), transparent 70%);
  animation: pulse 2s ease-in-out infinite;
}

.boot-logo {
  width: 132px;
  height: 132px;
  object-fit: cover;
  border-radius: 50%;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 3px rgba(62, 232, 122, 0.45), 0 0 40px rgba(62, 232, 122, 0.35);
  animation: rise 0.9s var(--ease);
}

.boot-word {
  position: absolute;
  bottom: 18vh;
  font-family: var(--script);
  font-size: 2.6rem;
  color: var(--cream);
}

/* nav */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1.4rem;
  transition: background 0.35s, backdrop-filter 0.35s, border-color 0.35s;
  border-bottom: 1px solid transparent;
}

.nav.is-stuck {
  background: rgba(11, 16, 14, 0.72);
  backdrop-filter: blur(16px);
  border-bottom-color: var(--line);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.nav-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 0 0 2px rgba(62, 232, 122, 0.45), 0 0 18px rgba(62, 232, 122, 0.25);
}

.nav-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nav-name {
  font-family: var(--cat);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  gap: 1.4rem;
  font-family: var(--cat);
  font-weight: 500;
}

.nav-links a {
  position: relative;
  opacity: 0.82;
  transition: opacity 0.2s, color 0.2s;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--lantern), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

.nav-links a:hover,
.nav-links a:focus-visible {
  opacity: 1;
  color: var(--lantern);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  gap: 5px;
  flex-direction: column;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--cream);
  transition: transform 0.3s, opacity 0.3s;
}

/* buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.62rem 1rem;
  border-radius: 999px;
  font-family: var(--cat);
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.25s var(--ease), box-shadow 0.25s, background 0.25s;
}

.ico {
  display: inline-block;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  background: var(--cream);
  -webkit-mask: var(--ico) center / contain no-repeat;
  mask: var(--ico) center / contain no-repeat;
  filter: drop-shadow(0 0 6px rgba(62, 232, 122, 0.28));
  transition: background 0.25s var(--ease), filter 0.25s var(--ease);
}

.ico-x {
  --ico: url("x.svg");
}

.ico-dex {
  --ico: url("dexscreener.svg");
}

.btn-ghost .ico,
.social .ico,
.foot-links .ico {
  background: var(--cream);
}

.step-icon .ico,
.chart-open .ico {
  background: var(--lantern);
  filter: drop-shadow(0 0 8px rgba(62, 232, 122, 0.45));
}

.btn-ghost:hover .ico,
.social:hover .ico,
.foot-links a:hover .ico,
.chart-open:hover .ico {
  background: var(--lantern);
  filter: drop-shadow(0 0 10px rgba(62, 232, 122, 0.55));
}

.btn img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.btn-lg {
  padding: 0.85rem 1.25rem;
}

.btn-lg img,
.btn-lg .ico {
  width: 22px;
  height: 22px;
}

.btn-buy {
  background: linear-gradient(135deg, #2d8f4a, var(--lantern) 55%, #8ad34a);
  color: #07210f;
  box-shadow: 0 8px 24px rgba(62, 232, 122, 0.22);
}

.btn-buy:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(62, 232, 122, 0.34);
}

.btn-ghost {
  background: rgba(244, 234, 212, 0.06);
  border-color: rgba(244, 234, 212, 0.16);
}

.btn-ghost:hover {
  transform: translateY(-2px);
  background: rgba(244, 234, 212, 0.12);
}

/* hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -3;
  transform: scale(1.08);
  animation: drift 28s ease-in-out infinite alternate;
}

.hero-veil {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(11, 16, 14, 0.35) 0%, rgba(11, 16, 14, 0.55) 45%, #0b100e 100%),
    radial-gradient(circle at 50% 30%, rgba(62, 232, 122, 0.12), transparent 42%);
}

.hero-veil::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(18, 138, 148, 0.08) 40%,
    rgba(11, 16, 14, 0.2)
  );
  animation: shimmer 7s ease-in-out infinite;
}

.hero-rays {
  position: absolute;
  inset: -10%;
  z-index: -1;
  background: conic-gradient(from 210deg at 50% 20%, transparent 0 8%, rgba(230, 179, 90, 0.08) 12%, transparent 18%);
  animation: rays 16s linear infinite;
  mix-blend-mode: screen;
}

.hero-shore {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 140px;
  background: linear-gradient(180deg, transparent, #0b100e);
}

.hero-inner {
  width: min(920px, calc(100% - 2rem));
  text-align: center;
  padding: 8rem 0 6rem;
}

.lantern {
  position: relative;
  width: 168px;
  height: 168px;
  margin: 0 auto 1.4rem;
}

.lantern:hover .lantern-iris {
  animation-duration: 1.2s;
}

.lantern:hover img {
  filter: saturate(1.08);
}

.lantern img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow);
}

.lantern-iris {
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(62, 232, 122, 0.4), transparent 68%);
  animation: pulse 2.6s ease-in-out infinite;
}

.lantern-orbit {
  position: absolute;
  inset: -14px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, transparent 0 58%, var(--lantern) 76%, transparent 88%);
  animation: spin 8s linear infinite;
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 2px), #000 calc(100% - 1px));
  mask: radial-gradient(farthest-side, transparent calc(100% - 2px), #000 calc(100% - 1px));
}

.lantern-orbit-slow {
  inset: -22px;
  animation-duration: 14s;
  animation-direction: reverse;
  background: conic-gradient(from 120deg, transparent 0 64%, var(--gold) 82%, transparent 94%);
}

.script-tag,
.script-line {
  font-family: var(--script);
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  color: var(--gold);
  line-height: 1.2;
}

.script-line.muted {
  color: var(--cream-soft);
  opacity: 0.8;
}

.hero-title {
  font-family: var(--display);
  font-size: clamp(4.2rem, 14vw, 8.4rem);
  line-height: 0.88;
  letter-spacing: 0.02em;
  color: var(--cream);
  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.45);
  margin: 0.2rem 0 0.5rem;
}

.hero-title span:last-child {
  display: block;
  background: linear-gradient(180deg, #fff6df, #e6b35a 70%, #c45a22);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-symbol {
  font-family: var(--cat);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream-soft);
  margin-bottom: 0.9rem;
}

.hero-symbol span {
  color: var(--lantern);
}

.hero-lead {
  max-width: 34rem;
  margin: 0 auto 1.4rem;
  font-size: 1.12rem;
  color: rgba(244, 234, 212, 0.86);
}

.ca-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 0.5rem 0.45rem 0.7rem;
  border-radius: 999px;
  background: rgba(18, 26, 22, 0.72);
  border: 1px solid var(--line);
  backdrop-filter: blur(10px);
  margin-bottom: 1.4rem;
}

.ca-pill img {
  width: 18px;
  height: 18px;
}

.ca-label {
  font-family: var(--cat);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--lantern);
}

#ca-text {
  font-size: 0.92rem;
  max-width: 16rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ca-copy {
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(62, 232, 122, 0.16);
  font-family: var(--cat);
  font-weight: 600;
  font-size: 0.82rem;
}

.ca-copy:hover {
  background: rgba(62, 232, 122, 0.28);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
}

.scroll-cue {
  position: absolute;
  bottom: 1.6rem;
  left: 50%;
  transform: translateX(-50%);
  display: grid;
  justify-items: center;
  gap: 0.4rem;
  font-family: var(--cat);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.7;
}

.scroll-cue i {
  width: 1px;
  height: 28px;
  background: linear-gradient(var(--lantern), transparent);
  animation: drip 1.6s ease-in-out infinite;
}

/* sections */
.section-wrap {
  width: min(1120px, calc(100% - 2.4rem));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.eyebrow {
  font-family: var(--cat);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lantern);
  font-size: 0.78rem;
  margin-bottom: 0.55rem;
}

.eyebrow.light {
  color: #b8ffd0;
}

.display {
  font-family: var(--cat);
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.display.cream {
  color: var(--cream);
  text-shadow: 0 6px 24px rgba(0, 0, 0, 0.45);
}

.prose {
  color: rgba(244, 234, 212, 0.8);
  max-width: 40rem;
  margin-bottom: 1rem;
}

.prose.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* about */
.about {
  position: relative;
  padding: 6.5rem 0 0;
  background:
    linear-gradient(180deg, #0b100e, #121c18 30%, #15241f);
}

.about-copy {
  max-width: 40rem;
  margin-bottom: 2.4rem;
}

.about-stage {
  display: grid;
  grid-template-columns: 1.05fr 1.2fr 0.75fr;
  gap: 1rem;
  align-items: stretch;
  margin-bottom: 2.2rem;
}

.portrait,
.clip {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.portrait {
  border-radius: 28px;
  min-height: 320px;
}

.portrait img,
.clip video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portrait figcaption {
  position: absolute;
  left: 1rem;
  bottom: 0.9rem;
  font-family: var(--script);
  font-size: 2rem;
}

.clip-wide {
  border-radius: 28px;
  min-height: 320px;
}

.clip-round {
  border-radius: 50%;
  aspect-ratio: 1;
  width: min(260px, 100%);
  justify-self: center;
  align-self: center;
}

.clip::after,
.portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 40px rgba(11, 16, 14, 0.28);
  pointer-events: none;
}

.traits {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding-bottom: 4rem;
}

.trait {
  position: relative;
  overflow: hidden;
  padding: 1.4rem 1.3rem 1.5rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
}

.trait-glow {
  position: absolute;
  width: 120px;
  height: 120px;
  right: -30px;
  top: -30px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(62, 232, 122, 0.18), transparent 70%);
}

.trait h3 {
  font-family: var(--cat);
  font-size: 1.25rem;
  margin-bottom: 0.45rem;
}

.trait p {
  color: rgba(244, 234, 212, 0.74);
}

.wave {
  display: block;
  width: 100%;
  height: 72px;
  fill: #101814;
}

/* howto */
.howto {
  padding: 5.5rem 0 5rem;
  background:
    radial-gradient(700px 280px at 50% 0%, rgba(62, 232, 122, 0.08), transparent 55%),
    #101814;
}

.howto-head {
  text-align: center;
  margin-bottom: 2.4rem;
}

.trail {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  position: relative;
}

.trail::before {
  content: "";
  position: absolute;
  top: 58px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(62, 232, 122, 0.35), rgba(230, 179, 90, 0.4), transparent);
  animation: path 4s ease-in-out infinite;
}

.step {
  position: relative;
  padding: 1.3rem 1.1rem 1.4rem;
  border-radius: 24px;
  background: rgba(11, 16, 14, 0.55);
  border: 1px solid var(--line);
  text-align: center;
}

.step-num {
  display: block;
  font-family: var(--cat);
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.08em;
  margin-bottom: 0.7rem;
}

.step-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 0.9rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #0d1411;
  border: 1px solid rgba(62, 232, 122, 0.25);
  box-shadow: 0 0 20px rgba(62, 232, 122, 0.12);
}

.step-icon img,
.step-icon .ico {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.step h3 {
  font-family: var(--cat);
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
}

.step p {
  color: rgba(244, 234, 212, 0.72);
  font-size: 0.95rem;
  margin-bottom: 0.8rem;
}

.step a {
  font-family: var(--cat);
  font-weight: 600;
  color: var(--lantern);
}

.step a:hover {
  color: var(--gold);
}

/* chart */
.chart {
  padding: 5rem 0;
  background: linear-gradient(180deg, #101814, #0d1512);
}

.chart-head {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.4rem;
}

.chart-open {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--cat);
  font-weight: 600;
  color: var(--lantern);
}

.chart-open img,
.chart-open .ico {
  width: 20px;
  height: 20px;
}

.chart-frame {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow), 0 0 0 1px rgba(62, 232, 122, 0.08);
  background: #0a0f0d;
  min-height: 640px;
}

.chart-frame iframe {
  width: 100%;
  height: 680px;
  border: 0;
}

/* join — banner only here */
.join {
  position: relative;
  min-height: 88vh;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.join-banner {
  position: absolute;
  inset: 0;
}

.join-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: ken 22s ease-in-out infinite alternate;
}

.join-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11, 16, 14, 0.28), rgba(11, 16, 14, 0.55) 55%, rgba(11, 16, 14, 0.78)),
    radial-gradient(circle at 70% 40%, transparent 20%, rgba(11, 16, 14, 0.35) 80%);
}

.join-inner {
  position: relative;
  width: min(760px, calc(100% - 2rem));
  text-align: center;
  padding: 6rem 0;
}

.join-lead {
  font-size: 1.15rem;
  color: rgba(244, 234, 212, 0.9);
  margin-bottom: 1.6rem;
}

.join-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
}

.social {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.15rem;
  border-radius: 999px;
  background: rgba(11, 16, 14, 0.58);
  border: 1px solid rgba(244, 234, 212, 0.2);
  backdrop-filter: blur(10px);
  font-family: var(--cat);
  font-weight: 600;
  transition: transform 0.25s var(--ease), background 0.25s;
}

.social img,
.social .ico {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.social:hover {
  transform: translateY(-3px);
  background: rgba(11, 16, 14, 0.78);
}

/* footer */
.foot {
  position: relative;
  background: #0a100d;
  padding: 3.5rem 1.2rem 2.4rem;
  text-align: center;
}

.foot-ridge {
  position: absolute;
  top: -48px;
  left: 0;
  right: 0;
  height: 50px;
  background: #0a100d;
  clip-path: polygon(0 100%, 8% 40%, 18% 78%, 30% 20%, 42% 70%, 55% 10%, 68% 62%, 80% 18%, 92% 55%, 100% 8%, 100% 100%);
}

.foot-inner {
  display: grid;
  justify-items: center;
  gap: 0.8rem;
}

.foot-inner .nav-brand {
  justify-content: center;
}

.foot-links {
  display: flex;
  gap: 0.8rem;
}

.foot-links a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
}

.foot-links img,
.foot-links .ico {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.legal {
  font-size: 0.82rem;
  color: rgba(244, 234, 212, 0.45);
}

.toast {
  position: fixed;
  bottom: 1.4rem;
  left: 50%;
  transform: translate(-50%, 20px);
  padding: 0.7rem 1.1rem;
  border-radius: 999px;
  background: rgba(18, 26, 22, 0.92);
  border: 1px solid rgba(62, 232, 122, 0.35);
  font-family: var(--cat);
  opacity: 0;
  pointer-events: none;
  z-index: 50;
  transition: opacity 0.3s, transform 0.3s;
}

.toast.is-on {
  opacity: 1;
  transform: translate(-50%, 0);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

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

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.12);
    opacity: 1;
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes rise {
  from {
    transform: translateY(16px) scale(0.92);
    opacity: 0;
  }
}

@keyframes drift {
  to {
    transform: scale(1.16) translateY(-2%);
  }
}

@keyframes rays {
  to {
    transform: rotate(20deg);
  }
}

@keyframes drip {
  0% {
    transform: scaleY(0.4);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  100% {
    transform: scaleY(1);
    opacity: 0;
  }
}

@keyframes ken {
  from {
    transform: scale(1.04) translateY(0);
  }
  to {
    transform: scale(1.14) translateY(-2%);
  }
}

@keyframes path {
  0%,
  100% {
    opacity: 0.35;
  }
  50% {
    opacity: 0.9;
  }
}

@keyframes shimmer {
  0%,
  100% {
    opacity: 0.35;
    transform: translateY(8px);
  }
  50% {
    opacity: 0.8;
    transform: translateY(-6px);
  }
}

@media (max-width: 980px) {
  .nav-links {
    position: fixed;
    inset: 72px 1rem auto;
    display: none;
    flex-direction: column;
    padding: 1rem 1.1rem;
    border-radius: 18px;
    background: rgba(11, 16, 14, 0.94);
    border: 1px solid var(--line);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-toggle {
    display: grid;
  }

  .about-stage,
  .traits,
  .trail {
    grid-template-columns: 1fr;
  }

  .trail::before {
    display: none;
  }

  .clip-round {
    width: min(240px, 70vw);
    margin: 0 auto;
  }

  .chart-frame,
  .chart-frame iframe {
    min-height: 520px;
    height: 520px;
  }
}

@media (max-width: 640px) {
  .nav-actions .btn-buy span {
    display: none;
  }

  .hero-title {
    font-size: 4.2rem;
  }

  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-lg {
    justify-content: center;
  }

  #ca-text {
    max-width: 9.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .hero-video,
  .join-banner img {
    transform: none;
  }

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