:root {
  --lime: #00d66b;
  --lime-deep: #00a854;
  --lime-soft: #7dffb2;
  --mint: #d8ffe8;
  --red: #e31b23;
  --red-deep: #b01218;
  --gold: #fdb913;
  --gold-soft: #ffe08a;
  --ink: #0b1f14;
  --ink-soft: #163325;
  --cloud: #f4fff8;
  --white: #ffffff;
  --shadow: 0 18px 40px rgba(8, 40, 22, 0.22);
  --radius: 28px;
  --font-display: "Bungee", system-ui, sans-serif;
  --font-num: "Teko", Impact, sans-serif;
  --font-body: "Figtree", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: var(--font-body);
  background:
    radial-gradient(1200px 700px at 15% -10%, rgba(255, 224, 138, 0.35), transparent 55%),
    radial-gradient(900px 600px at 90% 10%, rgba(227, 27, 35, 0.18), transparent 50%),
    linear-gradient(180deg, #c8ffe0 0%, #74f0ad 32%, #24d978 62%, #11b85f 100%);
  overflow-x: hidden;
}

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

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

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

.stage {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

#sparkCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.stage-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.55;
  animation: drift 14s ease-in-out infinite alternate;
}

.glow-a {
  width: 42vw;
  height: 42vw;
  left: -8vw;
  top: 18vh;
  background: rgba(253, 185, 19, 0.28);
}

.glow-b {
  width: 36vw;
  height: 36vw;
  right: -6vw;
  top: 48vh;
  background: rgba(227, 27, 35, 0.2);
  animation-delay: -4s;
}

.stage-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(11, 31, 20, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 31, 20, 0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at 50% 20%, black 20%, transparent 75%);
  opacity: 0.45;
  animation: gridShift 20s linear infinite;
}

.stage-noise {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  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='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.ticker {
  position: relative;
  z-index: 20;
  background: var(--ink);
  color: var(--gold);
  border-bottom: 3px solid var(--red);
  overflow: hidden;
  padding: 0.55rem 0;
}

.ticker-track {
  display: flex;
  width: max-content;
  gap: 2.2rem;
  animation: marquee 28s linear infinite;
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ticker-track span {
  white-space: nowrap;
}

.ticker-track span::after {
  content: "";
  display: inline-block;
  width: 0.55rem;
  height: 0.55rem;
  margin-left: 2.2rem;
  border-radius: 2px;
  background: var(--lime);
  box-shadow: 0 0 0 2px var(--ink);
  transform: rotate(45deg) translateY(-1px);
}

.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(14px);
  background: rgba(200, 255, 224, 0.72);
  border-bottom: 2px solid rgba(11, 31, 20, 0.08);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.nav.is-scrolled {
  background: rgba(184, 255, 212, 0.9);
  box-shadow: 0 10px 28px rgba(8, 40, 22, 0.12);
}

.nav-inner {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 0;
}

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

.brand-logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
  filter: drop-shadow(0 6px 10px rgba(11, 31, 20, 0.25));
  animation: bob 3.4s ease-in-out infinite;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-text strong {
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

.brand-text small {
  font-weight: 800;
  color: var(--red);
  letter-spacing: 0.12em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  font-weight: 700;
}

.nav-links a {
  position: relative;
  padding: 0.35rem 0.2rem;
  transition: color 0.2s ease, transform 0.2s ease;
}

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

.nav-links a:not(.nav-pill):hover {
  color: var(--red-deep);
}

.nav-links a:not(.nav-pill):hover::after {
  transform: scaleX(1);
}

.nav-pill {
  background: var(--red);
  color: var(--white) !important;
  border: 3px solid var(--ink);
  border-radius: 999px;
  padding: 0.45rem 0.95rem !important;
  box-shadow: 4px 4px 0 var(--ink);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-pill:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--ink);
}

.nav-burger {
  display: none;
  width: 46px;
  height: 46px;
  border: 3px solid var(--ink);
  border-radius: 14px;
  background: var(--white);
  box-shadow: 3px 3px 0 var(--ink);
  place-items: center;
  gap: 5px;
  padding: 10px;
}

.nav-burger span {
  display: block;
  width: 100%;
  height: 3px;
  background: var(--ink);
  border-radius: 2px;
  transition: 0.25s ease;
}

.nav-burger.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-burger.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-burger.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

main {
  position: relative;
  z-index: 1;
}

.hero {
  position: relative;
  padding: 2.5rem 0 5.5rem;
  overflow: hidden;
}

.hero-burst {
  position: absolute;
  left: 18%;
  top: 42%;
  width: min(620px, 70vw);
  height: min(620px, 70vw);
  transform: translate(-50%, -50%);
  background: conic-gradient(from 0deg, rgba(253, 185, 19, 0.0), rgba(253, 185, 19, 0.35), rgba(255, 255, 255, 0.15), rgba(227, 27, 35, 0.22), rgba(253, 185, 19, 0.0));
  mask-image: radial-gradient(circle, black 18%, transparent 68%);
  animation: spinSlow 18s linear infinite;
  pointer-events: none;
}

.floaties {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.floaty {
  position: absolute;
  display: block;
  opacity: 0.9;
  filter: drop-shadow(0 8px 10px rgba(11, 31, 20, 0.18));
  animation: floatY 5.5s ease-in-out infinite;
}

.f-diamond {
  width: 34px;
  height: 34px;
  left: 8%;
  top: 22%;
  background: linear-gradient(135deg, #7fd3ff, #2f7dff 45%, #b8e7ff);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  animation-delay: -1s;
}

.f-rocket {
  width: 18px;
  height: 42px;
  right: 12%;
  top: 18%;
  border-radius: 40% 40% 20% 20%;
  background: linear-gradient(180deg, #fff 0 28%, var(--red) 28% 100%);
  box-shadow: 0 18px 0 -8px var(--gold);
  animation-delay: -2.2s;
}

.f-candle {
  width: 42px;
  height: 48px;
  left: 14%;
  bottom: 28%;
  background:
    linear-gradient(var(--lime-deep), var(--lime-deep)) 8px 18px / 8px 30px no-repeat,
    linear-gradient(var(--red), var(--red)) 22px 8px / 8px 40px no-repeat,
    linear-gradient(var(--lime), var(--lime)) 34px 22px / 8px 26px no-repeat;
  animation-delay: -0.6s;
}

.f-heart {
  width: 28px;
  height: 28px;
  right: 18%;
  bottom: 34%;
  image-rendering: pixelated;
  background:
    linear-gradient(var(--red), var(--red)) 0 8px / 8px 8px no-repeat,
    linear-gradient(var(--red), var(--red)) 16px 8px / 8px 8px no-repeat,
    linear-gradient(var(--red), var(--red)) 8px 0 / 8px 8px no-repeat,
    linear-gradient(var(--red), var(--red)) 8px 16px / 8px 8px no-repeat;
  animation-delay: -3s;
}

.f-stick {
  width: 36px;
  height: 36px;
  right: 6%;
  top: 48%;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 45%, var(--red) 0 28%, #222 28% 58%, #555 58%);
  animation-delay: -1.8s;
}

.f-invader {
  width: 36px;
  height: 28px;
  left: 46%;
  top: 12%;
  background:
    linear-gradient(#222, #222) 4px 0 / 8px 8px no-repeat,
    linear-gradient(#222, #222) 24px 0 / 8px 8px no-repeat,
    linear-gradient(#222, #222) 0 8px / 36px 12px no-repeat,
    linear-gradient(#222, #222) 8px 20px / 8px 8px no-repeat,
    linear-gradient(#222, #222) 20px 20px / 8px 8px no-repeat;
  animation-delay: -2.8s;
}

.hero-grid {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 2rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 520px;
}

.hero-ring {
  position: absolute;
  width: min(460px, 86%);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 3px dashed rgba(11, 31, 20, 0.18);
  animation: spinRing 24s linear infinite;
}

.ring-2 {
  width: min(360px, 68%);
  border-style: solid;
  border-color: rgba(227, 27, 35, 0.28);
  animation-direction: reverse;
  animation-duration: 16s;
}

.hero-logo {
  width: min(420px, 88%);
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 24px 28px rgba(11, 31, 20, 0.28));
  animation: heroBob 4s ease-in-out infinite, capeSway 5s ease-in-out infinite;
  transform-origin: 55% 45%;
}

.hero-shadow {
  position: absolute;
  bottom: 48px;
  width: min(260px, 55%);
  height: 28px;
  background: radial-gradient(ellipse, rgba(11, 31, 20, 0.35), transparent 70%);
  filter: blur(2px);
  animation: shadowPulse 4s ease-in-out infinite;
}

.hero-copy h1 {
  margin: 0.35rem 0 0.6rem;
  line-height: 0.92;
}

.title-kicker {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.4vw, 2.4rem);
  color: var(--ink);
  text-shadow: 3px 3px 0 rgba(255, 255, 255, 0.45);
}

.title-main {
  display: inline-block;
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 9vw, 6.4rem);
  color: var(--red);
  -webkit-text-stroke: 3px var(--ink);
  paint-order: stroke fill;
  text-shadow: 6px 6px 0 var(--gold);
  animation: titlePop 5s ease-in-out infinite;
}

.live-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 2px solid var(--ink);
  font-weight: 800;
  font-size: 0.86rem;
  box-shadow: 3px 3px 0 rgba(11, 31, 20, 0.15);
}

.pulse {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--lime-deep);
  box-shadow: 0 0 0 0 rgba(0, 168, 84, 0.7);
  animation: pulse 1.8s infinite;
}

.hero-tagline {
  margin: 0.2rem 0 0.7rem;
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  font-weight: 800;
  color: var(--ink-soft);
}

.hero-lead {
  margin: 0 0 1.35rem;
  max-width: 38rem;
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(11, 31, 20, 0.88);
}

.hero-actions,
.join-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 1.15rem;
  border-radius: 16px;
  border: 3px solid var(--ink);
  font-weight: 800;
  letter-spacing: 0.01em;
  box-shadow: 5px 5px 0 var(--ink);
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.btn:hover {
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0 var(--ink);
}

.btn:active {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 var(--ink);
}

.btn-ico {
  width: 18px;
  height: 18px;
  color: currentColor;
}

.btn-red {
  background: linear-gradient(180deg, #ff4b52, var(--red));
  color: var(--white);
}

.btn-ink {
  background: var(--ink);
  color: var(--gold);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
}

.btn-lime {
  background: linear-gradient(180deg, var(--lime-soft), var(--lime));
  color: var(--ink);
}

.btn-red .btn-ico,
.btn-ink .btn-ico {
  filter: brightness(0) invert(1);
}

.footer-links img,
.chart-bar img,
.text-link img {
  filter: brightness(0) invert(1);
}

.contract-row {
  margin-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem;
  padding: 0.7rem 0.85rem;
  border-radius: 16px;
  background: rgba(11, 31, 20, 0.9);
  color: var(--mint);
  border: 3px solid var(--ink);
  box-shadow: 4px 4px 0 rgba(253, 185, 19, 0.55);
}

.contract-label {
  font-family: var(--font-display);
  font-size: 0.7rem;
  color: var(--gold);
}

.contract-row code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.78rem;
  word-break: break-all;
}

.copy-btn {
  margin-left: auto;
  padding: 0.4rem 0.75rem;
  border-radius: 10px;
  background: var(--gold);
  color: var(--ink);
  border: 2px solid var(--ink);
  font-weight: 800;
}

.copy-btn.copied {
  background: var(--lime);
}

.cloud-cut {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 90px;
  background:
    radial-gradient(circle at 10% 20%, var(--cloud) 0 42px, transparent 43px),
    radial-gradient(circle at 28% 40%, var(--cloud) 0 52px, transparent 53px),
    radial-gradient(circle at 48% 18%, var(--cloud) 0 46px, transparent 47px),
    radial-gradient(circle at 68% 38%, var(--cloud) 0 56px, transparent 57px),
    radial-gradient(circle at 88% 22%, var(--cloud) 0 48px, transparent 49px),
    linear-gradient(var(--cloud), var(--cloud));
  background-size: 100% 100%;
  background-position: 0 30px;
}

.section {
  position: relative;
  padding: 5.5rem 0;
}

.section-shell {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

.about {
  background:
    radial-gradient(800px 300px at 80% 0%, rgba(253, 185, 19, 0.18), transparent 60%),
    linear-gradient(180deg, var(--cloud) 0%, #eafff2 45%, #d5ffe7 100%);
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2.5rem;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 0.7rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: var(--gold);
  border: 2px solid var(--ink);
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.05em;
}

.eyebrow.light {
  background: rgba(255, 255, 255, 0.9);
}

.section-head h2,
.join-panel h2 {
  margin: 0 0 0.7rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.05;
  text-shadow: 3px 3px 0 rgba(255, 255, 255, 0.45);
}

.section-sub,
.join-panel p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(11, 31, 20, 0.82);
}

.about-layout {
  display: grid;
  gap: 1.25rem;
}

.about-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 1.4rem;
  align-items: center;
  padding: 1.3rem;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 240, 180, 0.55));
  border: 3px solid var(--ink);
  box-shadow: var(--shadow);
}

.about-mascot-wrap {
  display: grid;
  place-items: center;
  padding: 0.5rem;
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 40%, rgba(253, 185, 19, 0.45), transparent 55%),
    linear-gradient(180deg, #fff, #d9ffe8);
  border: 3px solid var(--ink);
  animation: glowPulse 3.5s ease-in-out infinite;
}

.about-mascot {
  width: 170px;
  animation: bob 3.8s ease-in-out infinite;
}

.about-copy h3 {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
}

.about-copy p {
  margin: 0;
  line-height: 1.65;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.info-tile {
  padding: 1.2rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  border: 3px solid var(--ink);
  box-shadow: 5px 5px 0 rgba(11, 31, 20, 0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  animation-delay: var(--d, 0s);
}

.info-tile:hover {
  transform: translateY(-6px) rotate(-0.4deg);
  box-shadow: 8px 10px 0 rgba(11, 31, 20, 0.14);
}

.info-tile h3 {
  margin: 0.7rem 0 0.45rem;
  font-family: var(--font-display);
  font-size: 1rem;
}

.info-tile p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: rgba(11, 31, 20, 0.8);
}

.tile-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 3px solid var(--ink);
  position: relative;
  overflow: hidden;
}

.tile-power {
  background: var(--red);
}

.tile-power::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 4px solid #fff;
  border-radius: 50%;
  border-top-color: transparent;
  transform: rotate(-35deg);
}

.tile-power::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 8px;
  width: 4px;
  height: 14px;
  background: #fff;
  transform: translateX(-50%);
  border-radius: 2px;
}

.tile-chain {
  background: var(--lime);
}

.tile-chain::before {
  content: "";
  position: absolute;
  inset: 12px 18px;
  border: 3px solid var(--ink);
  border-radius: 999px;
  transform: rotate(-28deg);
}

.tile-chain::after {
  content: "";
  position: absolute;
  inset: 12px 18px;
  border: 3px solid var(--ink);
  border-radius: 999px;
  transform: rotate(28deg);
}

.tile-hands {
  background: var(--gold);
}

.tile-hands::before,
.tile-hands::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 18px;
  top: 14px;
  border: 3px solid var(--ink);
  border-radius: 6px 6px 10px 10px;
  background: #7fd3ff;
}

.tile-hands::before {
  left: 8px;
  transform: rotate(-18deg);
}

.tile-hands::after {
  right: 8px;
  transform: rotate(18deg);
}

.tile-arcade {
  background: #2b2b2b;
}

.tile-arcade::before {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  left: 17px;
  top: 10px;
  border-radius: 50%;
  background: var(--red);
  border: 2px solid #111;
}

.tile-arcade::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  right: 10px;
  bottom: 12px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: -14px 0 0 var(--gold);
}

.howtobuy {
  background:
    linear-gradient(180deg, #11b85f 0%, #0e9f52 40%, #0c8a47 100%);
  color: var(--white);
}

.howtobuy .section-sub {
  color: rgba(255, 255, 255, 0.88);
}

.howtobuy .section-head h2 {
  color: var(--white);
  text-shadow: 3px 3px 0 rgba(11, 31, 20, 0.35);
}

.howtobuy .eyebrow {
  background: var(--red);
  color: var(--white);
}

.buy-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  counter-reset: none;
}

.buy-step {
  position: relative;
  padding: 1.3rem 1.15rem 1.2rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.1);
  border: 3px solid rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(8px);
  box-shadow: 0 16px 30px rgba(5, 40, 22, 0.18);
  overflow: hidden;
  transition: transform 0.25s ease, background 0.25s ease;
}

.buy-step::before {
  content: "";
  position: absolute;
  inset: auto -20% -40% auto;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(253, 185, 19, 0.18);
}

.buy-step:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.16);
}

.step-num {
  display: block;
  font-family: var(--font-num);
  font-size: 2.4rem;
  line-height: 1;
  color: var(--gold);
  margin-bottom: 0.45rem;
}

.buy-step h3 {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
}

.buy-step p {
  margin: 0 0 0.8rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.96rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 800;
  color: var(--gold-soft);
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.text-link img {
  width: 16px;
  height: 16px;
  color: currentColor;
}

.text-link:hover {
  color: var(--white);
  border-color: currentColor;
}

.chart {
  background:
    radial-gradient(700px 280px at 20% 0%, rgba(227, 27, 35, 0.12), transparent 60%),
    linear-gradient(180deg, #eafff2 0%, #c9ffe0 100%);
}

.chart-frame {
  border-radius: 28px;
  overflow: hidden;
  border: 3px solid var(--ink);
  background: #0b1210;
  box-shadow: 10px 10px 0 rgba(11, 31, 20, 0.18);
}

.chart-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 1rem;
  background: linear-gradient(90deg, #141c18, #1c2a22);
  color: var(--mint);
  border-bottom: 2px solid rgba(255, 255, 255, 0.08);
  font-weight: 700;
}

.chart-bar a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--gold);
}

.chart-bar img {
  width: 16px;
  height: 16px;
  color: currentColor;
}

.chart-frame iframe {
  display: block;
  width: 100%;
  height: min(640px, 72vh);
  border: 0;
  background: #0b1210;
}

.joinus {
  position: relative;
  min-height: 720px;
  display: grid;
  align-items: end;
  padding: 0;
  overflow: hidden;
}

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

.join-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  transform: scale(1.04);
  animation: bannerDrift 18s ease-in-out infinite alternate;
}

.join-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 40, 22, 0.18) 0%, rgba(8, 40, 22, 0.28) 35%, rgba(8, 40, 22, 0.72) 100%),
    radial-gradient(circle at 50% 40%, transparent 0%, rgba(8, 40, 22, 0.35) 80%);
}

.join-shell {
  position: relative;
  z-index: 2;
  padding: 5rem 0 4rem;
}

.join-panel {
  width: min(720px, 100%);
  margin: 0 auto;
  text-align: center;
  padding: 1.8rem 1.5rem;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.9);
  border: 3px solid var(--ink);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(8px);
}

.join-panel h2 {
  color: var(--red);
  -webkit-text-stroke: 2px var(--ink);
  paint-order: stroke fill;
  text-shadow: 4px 4px 0 var(--gold);
}

.join-actions {
  justify-content: center;
  margin-top: 1.35rem;
}

.footer {
  position: relative;
  z-index: 2;
  background: var(--ink);
  color: var(--mint);
  padding: 1.6rem 0;
  border-top: 4px solid var(--gold);
}

.footer-inner {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  display: grid;
  gap: 0.9rem;
  justify-items: center;
  text-align: center;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
}

.footer-brand img {
  width: 42px;
  height: 42px;
  animation: bob 3.6s ease-in-out infinite;
}

.footer-links {
  display: flex;
  gap: 0.7rem;
}

.footer-links a {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 2px solid rgba(255, 255, 255, 0.14);
  color: var(--gold);
  transition: transform 0.2s ease, background 0.2s ease;
}

.footer-links a:hover {
  transform: translateY(-3px);
  background: rgba(253, 185, 19, 0.14);
}

.footer-links img {
  width: 18px;
  height: 18px;
  color: currentColor;
}

.footer-note {
  margin: 0;
  max-width: 560px;
  font-size: 0.85rem;
  color: rgba(216, 255, 232, 0.7);
  line-height: 1.5;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--d, 0s);
}

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

.reveal[data-reveal="left"] {
  transform: translateX(-36px);
}

.reveal[data-reveal="right"] {
  transform: translateX(36px);
}

.reveal[data-reveal="up"] {
  transform: translateY(36px);
}

.reveal[data-reveal="left"].is-in,
.reveal[data-reveal="right"].is-in,
.reveal[data-reveal="up"].is-in {
  transform: none;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

@keyframes heroBob {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-14px) rotate(1.4deg); }
}

@keyframes capeSway {
  0%, 100% { filter: drop-shadow(0 24px 28px rgba(11, 31, 20, 0.28)); }
  50% { filter: drop-shadow(-8px 28px 30px rgba(227, 27, 35, 0.22)); }
}

@keyframes shadowPulse {
  0%, 100% { transform: scaleX(1); opacity: 0.7; }
  50% { transform: scaleX(0.82); opacity: 0.45; }
}

@keyframes floatY {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-16px) rotate(4deg); }
}

@keyframes spinSlow {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

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

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(0, 168, 84, 0.7); }
  70% { box-shadow: 0 0 0 12px rgba(0, 168, 84, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 168, 84, 0); }
}

@keyframes titlePop {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.03); }
}

@keyframes drift {
  from { transform: translateY(0) translateX(0); }
  to { transform: translateY(40px) translateX(24px); }
}

@keyframes gridShift {
  from { background-position: 0 0; }
  to { background-position: 48px 48px; }
}

@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(253, 185, 19, 0.25); }
  50% { box-shadow: 0 0 28px 4px rgba(253, 185, 19, 0.35); }
}

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

@media (max-width: 1020px) {
  .hero-grid,
  .about-card,
  .about-grid,
  .buy-steps {
    grid-template-columns: 1fr 1fr;
  }

  .about-card {
    grid-template-columns: 180px 1fr;
  }

  .hero-visual {
    min-height: 420px;
  }
}

@media (max-width: 780px) {
  .nav-burger {
    display: grid;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 0.4rem);
    right: 1rem;
    left: 1rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
    padding: 0.85rem;
    border-radius: 18px;
    background: rgba(232, 255, 241, 0.97);
    border: 3px solid var(--ink);
    box-shadow: 6px 6px 0 rgba(11, 31, 20, 0.15);
    transform-origin: top right;
    transform: scale(0.96) translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: 0.22s ease;
  }

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

  .nav-pill {
    text-align: center;
  }

  .hero-grid,
  .about-card,
  .about-grid,
  .buy-steps {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 1.4rem;
  }

  .hero-visual {
    min-height: 340px;
    order: -1;
  }

  .title-main {
    -webkit-text-stroke: 2px var(--ink);
  }

  .contract-row {
    align-items: flex-start;
  }

  .copy-btn {
    margin-left: 0;
  }

  .chart-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .joinus {
    min-height: 640px;
  }

  .floaty {
    opacity: 0.65;
    transform: scale(0.85);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .ticker-track {
    animation: none;
  }
}
