@font-face {
  font-family: Pricedown;
  src: url("assets/fonts/Pricedown.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: ArtDeco;
  src: url("assets/fonts/ArtDecoBold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: ArtDeco Condensed;
  src: url("assets/fonts/ArtDecoCondensedBold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --void: #07040d;
  --night: #10081a;
  --dusk: #2a1238;
  --wine: #4a1638;
  --pink: #ff2d8b;
  --hot: #ff6eb4;
  --gold: #ffb347;
  --amber: #ff8a1a;
  --teal: #2ee6c8;
  --chrome: #efe8dc;
  --muted: #c3b3cc;
  --line: rgba(255, 110, 180, 0.22);
  --font-gta: Pricedown, Impact, sans-serif;
  --font-deco: ArtDeco Condensed, ArtDeco, "Copperplate Gothic", sans-serif;
  --font-display: ArtDeco, "Copperplate Gothic", serif;
  --font-body: "Inter Tight", system-ui, sans-serif;
  --nav-h: 4.6rem;
  --wrap: 72rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: var(--font-body);
  color: var(--chrome);
  background:
    radial-gradient(1200px 640px at 80% -10%, rgba(255, 45, 139, 0.16), transparent 55%),
    radial-gradient(900px 520px at -10% 20%, rgba(46, 230, 200, 0.08), transparent 50%),
    linear-gradient(180deg, #0d0716 0%, var(--void) 40%, #0a0612 100%);
  overflow-x: hidden;
}

body.is-locked {
  overflow: hidden;
}

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

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

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

.wrap {
  width: min(100% - 2.4rem, var(--wrap));
  margin-inline: auto;
}

.eyebrow {
  font-family: var(--font-deco);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--teal);
}

h1,
h2,
h3 {
  font-weight: 400;
}

h2 {
  font-family: var(--font-gta);
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  letter-spacing: 0.04em;
  line-height: 0.9;
  text-transform: uppercase;
  text-shadow: 0 6px 0 rgba(0, 0, 0, 0.45), 0 0 24px rgba(255, 45, 139, 0.25);
}

h3 {
  font-family: var(--font-display);
  letter-spacing: 0.04em;
}

.fx-grain,
.fx-scan {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 40;
}

.fx-grain {
  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");
}

.fx-scan {
  opacity: 0.045;
  background: repeating-linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.08) 0 1px,
    transparent 1px 3px
  );
}

.fx-cursor,
.fx-cursor-dot {
  display: none;
}

@media (hover: hover) and (pointer: fine) {
  body.has-cursor,
  body.has-cursor a,
  body.has-cursor button {
    cursor: none;
  }

  .fx-cursor,
  .fx-cursor-dot {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 80;
    pointer-events: none;
    border-radius: 50%;
    transform: translate(-50%, -50%);
  }

  .fx-cursor {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255, 110, 180, 0.7);
    box-shadow: 0 0 18px rgba(255, 45, 139, 0.35);
    transition: width 0.25s var(--ease), height 0.25s var(--ease), background 0.25s;
  }

  .fx-cursor.is-hot {
    width: 56px;
    height: 56px;
    background: rgba(255, 45, 139, 0.08);
  }

  .fx-cursor-dot {
    width: 5px;
    height: 5px;
    background: var(--teal);
    box-shadow: 0 0 10px var(--teal);
  }
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 1.1rem;
  background:
    radial-gradient(circle at 50% 30%, rgba(255, 45, 139, 0.22), transparent 42%),
    #07040d;
  transition: opacity 0.7s var(--ease), visibility 0.7s;
}

.loader.is-done {
  opacity: 0;
  visibility: hidden;
}

.loader__glow {
  position: absolute;
  width: 22rem;
  height: 22rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 179, 71, 0.2), transparent 68%);
  animation: pulse 2.4s ease-in-out infinite;
}

.loader__logo {
  width: min(58vw, 16rem);
  border-radius: 1.1rem;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(255, 45, 139, 0.25);
  animation: lift 1.4s var(--ease) both;
}

.loader__mark {
  font-family: var(--font-gta);
  font-size: 2rem;
  letter-spacing: 0.16em;
  position: relative;
}

.loader__bar {
  width: min(60vw, 14rem);
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.loader__bar span {
  display: block;
  height: 100%;
  width: 40%;
  background: linear-gradient(90deg, var(--pink), var(--gold), var(--teal));
  animation: load 1.2s ease-in-out infinite;
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.2rem;
  background: transparent;
  transition: background 0.35s, box-shadow 0.35s, backdrop-filter 0.35s;
}

.nav.is-stuck {
  background: rgba(10, 6, 16, 0.78);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--line);
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-gta);
  letter-spacing: 0.08em;
  font-size: 1.35rem;
}

.nav__brand img {
  width: 2.5rem;
  height: 2.5rem;
  object-fit: cover;
  border-radius: 0.4rem;
  box-shadow: 0 0 0 1px rgba(255, 45, 139, 0.4);
}

.nav__brand em {
  display: block;
  font-style: normal;
  font-family: var(--font-deco);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  color: var(--gold);
}

.nav__links {
  display: none;
  gap: 1.5rem;
}

.nav__links a {
  font-family: var(--font-deco);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--muted);
  position: relative;
}

.nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--pink), var(--gold));
  transition: width 0.3s var(--ease);
}

.nav__links a:hover,
.nav__links a.is-on {
  color: var(--chrome);
}

.nav__links a:hover::after,
.nav__links a.is-on::after {
  width: 100%;
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.nav__x {
  padding: 0.35rem;
}

.nav__x img {
  width: 1.7rem;
  height: 1.7rem;
}

.nav__burger {
  width: 2.4rem;
  height: 2.4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.nav__burger span {
  display: block;
  width: 1.25rem;
  height: 2px;
  background: var(--chrome);
  transition: transform 0.3s, opacity 0.3s;
}

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

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 2.6rem;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  font-family: var(--font-deco);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.74rem;
  white-space: nowrap;
  transition: transform 0.25s var(--ease), box-shadow 0.25s, background 0.25s;
}

.btn img {
  width: 1.15rem;
  height: 1.15rem;
  object-fit: contain;
}

.btn--buy {
  background: linear-gradient(120deg, var(--pink), #ff4d2e 55%, var(--gold));
  color: #1a0710;
  box-shadow: 0 8px 24px rgba(255, 45, 139, 0.28);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.btn--xl {
  min-height: 3.1rem;
  padding: 0.75rem 1.25rem;
  font-size: 0.82rem;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--buy:hover {
  box-shadow: 0 12px 32px rgba(255, 45, 139, 0.4);
}

.section,
#hero {
  scroll-margin-top: calc(var(--nav-h) + 0.4rem);
}

.section {
  padding: 6.5rem 0 5rem;
  position: relative;
}

.section__head {
  display: flex;
  align-items: end;
  gap: 1.2rem;
  margin-bottom: 2.6rem;
  flex-wrap: wrap;
}

.section__idx {
  font-family: var(--font-gta);
  font-size: 3.2rem;
  line-height: 0.8;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 45, 139, 0.7);
}

.hero {
  position: relative;
  min-height: 100vh;
  padding: calc(var(--nav-h) + 1.5rem) 1.2rem 6rem;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  pointer-events: none;
  z-index: 0;
  filter: saturate(1.15) contrast(1.05);
  transition: opacity 0.8s;
}

.hero__video.is-on {
  opacity: 0.42;
}

.hero__sky {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(180deg, #1a0a2a 0%, #4a1848 28%, #c43b6e 52%, #ff8a3a 72%, #ffd27a 88%, #2a1230 100%);
  opacity: 0.55;
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  z-index: 1;
  animation: drift 12s ease-in-out infinite;
}

.hero__orb--pink {
  width: 22rem;
  height: 22rem;
  right: -4rem;
  top: 8%;
  background: rgba(255, 45, 139, 0.35);
}

.hero__orb--teal {
  width: 16rem;
  height: 16rem;
  left: -3rem;
  bottom: 18%;
  background: rgba(46, 230, 200, 0.18);
  animation-delay: -4s;
}

.hero__orb--gold {
  width: 12rem;
  height: 12rem;
  left: 40%;
  top: 12%;
  background: rgba(255, 179, 71, 0.2);
  animation-delay: -7s;
}

.hero__haze {
  position: absolute;
  inset: auto 0 0;
  height: 38%;
  z-index: 2;
  background: linear-gradient(180deg, transparent, rgba(7, 4, 13, 0.55) 40%, #07040d);
}

.hero__palms,
.hero__skyline {
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 2;
  pointer-events: none;
}

.hero__palms {
  bottom: 8%;
  height: 38vh;
  fill: none;
  stroke: #120816;
  stroke-width: 7;
  stroke-linecap: round;
}

.palm--l {
  transform-origin: 180px 420px;
  animation: sway 6.5s ease-in-out infinite;
}

.palm--r {
  transform-origin: 1260px 420px;
  animation: sway 7.5s ease-in-out infinite reverse;
}

.hero__skyline {
  bottom: 0;
  height: 22vh;
  fill: #0a0612;
  filter: drop-shadow(0 -8px 18px rgba(255, 45, 139, 0.2));
}

.hero__vi {
  position: absolute;
  top: 18%;
  right: 6%;
  font-family: var(--font-display);
  font-size: clamp(8rem, 22vw, 18rem);
  line-height: 0.75;
  color: transparent;
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.08);
  z-index: 2;
  pointer-events: none;
  animation: flicker 5s steps(2, end) infinite;
}

.hero__stage {
  position: relative;
  z-index: 3;
  width: min(100%, 68rem);
  display: grid;
  gap: 1.8rem;
  justify-items: center;
  text-align: center;
}

.hero__plate {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.35rem 0.9rem;
  background: linear-gradient(#f3efe4, #d9d1c0);
  color: #1a1520;
  border-radius: 0.35rem;
  border: 3px solid #1a1520;
  box-shadow: 0 10px 0 #1a1520, 0 16px 30px rgba(0, 0, 0, 0.35);
  font-family: var(--font-deco);
  letter-spacing: 0.18em;
  animation: lift 1s 0.15s var(--ease) both;
}

.hero__plate span {
  font-size: 0.62rem;
}

.hero__plate strong {
  font-family: var(--font-gta);
  font-size: 1.35rem;
  letter-spacing: 0.08em;
}

.hero__cover {
  position: relative;
  width: min(78vw, 26rem);
  aspect-ratio: 1;
  transform-style: preserve-3d;
  animation: lift 1.1s 0.05s var(--ease) both;
}

.hero__ring {
  position: absolute;
  inset: -10px;
  border-radius: 1.4rem;
  background: conic-gradient(from 0deg, var(--pink), var(--gold), var(--teal), var(--pink));
  animation: spinRing 8s linear infinite;
  filter: blur(0.5px);
}

.hero__cover img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1.15rem;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
}

.hero__copy {
  max-width: 40rem;
}

.h1-sub,
.h1-main {
  display: block;
}

.h1-sub {
  font-family: var(--font-deco);
  letter-spacing: 0.34em;
  font-size: clamp(1.1rem, 3vw, 1.7rem);
  color: var(--gold);
  animation: neon 3.2s ease-in-out infinite;
}

.h1-main {
  font-family: var(--font-gta);
  font-size: clamp(4.4rem, 14vw, 8.4rem);
  line-height: 0.78;
  letter-spacing: 0.04em;
  text-shadow:
    0 8px 0 #1a0814,
    0 0 28px rgba(255, 45, 139, 0.45);
}

.hero__tag {
  margin-top: 0.7rem;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2.4vw, 1.45rem);
  color: var(--hot);
}

.hero__lead {
  margin: 0.85rem auto 1.3rem;
  color: var(--muted);
  line-height: 1.6;
  max-width: 34rem;
}

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

.ca-chip {
  margin-top: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.28);
  color: var(--muted);
  font-size: 0.78rem;
}

.ca-chip img {
  width: 1.05rem;
  height: 1.05rem;
}

.ca-chip em {
  font-style: normal;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.68rem;
}

.hero__scroll {
  position: absolute;
  bottom: 1.4rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: grid;
  justify-items: center;
  gap: 0.4rem;
  font-family: var(--font-deco);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.68rem;
  color: var(--muted);
}

.hero__scroll i {
  width: 1px;
  height: 2.2rem;
  background: linear-gradient(var(--pink), transparent);
  animation: drip 1.6s ease-in-out infinite;
}

.about {
  background:
    linear-gradient(180deg, #07040d, #120816 30%, #10081a);
}

.about__grid {
  display: grid;
  gap: 1.6rem;
}

.about__story,
.about__panel {
  position: relative;
}

.about__story {
  padding: 1.8rem 1.4rem 1.6rem;
  background: linear-gradient(160deg, rgba(42, 18, 56, 0.7), rgba(10, 6, 16, 0.85));
  border: 1px solid var(--line);
  clip-path: polygon(0 0, calc(100% - 28px) 0, 100% 28px, 100% 100%, 28px 100%, 0 calc(100% - 28px));
}

.stamp {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.25rem 0.55rem;
  border: 2px solid var(--pink);
  color: var(--pink);
  font-family: var(--font-deco);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.7rem;
  transform: rotate(-3deg);
  animation: stamp 1.2s var(--ease) both;
}

.about__story h3 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  margin-bottom: 0.9rem;
}

.about__story p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 0.85rem;
}

.about__facts {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  margin-top: 1.3rem;
}

.about__facts li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.75rem 0.8rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.about__facts img {
  width: 1.4rem;
  height: 1.4rem;
}

.about__facts strong {
  display: block;
  font-size: 0.7rem;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about__photo {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.4);
}

.about__photo img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.about__caption {
  position: absolute;
  left: 0.8rem;
  right: 0.8rem;
  bottom: 0.8rem;
  padding: 0.7rem 0.85rem;
  background: rgba(7, 4, 13, 0.72);
  backdrop-filter: blur(8px);
  border-left: 3px solid var(--gold);
}

.about__caption span {
  display: block;
  font-size: 0.72rem;
  color: var(--muted);
}

.about__caption strong {
  font-family: var(--font-gta);
  font-size: 1.4rem;
  letter-spacing: 0.06em;
}

.ticker {
  margin-top: 0.9rem;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #0c0714;
}

.ticker__track {
  display: flex;
  gap: 1.6rem;
  width: max-content;
  animation: marquee 18s linear infinite;
  padding: 0.7rem 0;
  font-family: var(--font-deco);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--hot);
}

.howto {
  background:
    radial-gradient(700px 280px at 50% 0%, rgba(255, 45, 139, 0.12), transparent 60%),
    #0b0612;
}

.howto__road {
  height: 2px;
  margin: 0 1rem 2rem;
  background: linear-gradient(90deg, transparent, var(--pink), var(--gold), var(--teal), transparent);
  position: relative;
}

.howto__road::after {
  content: "";
  position: absolute;
  top: -3px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px var(--gold);
  animation: cruise 4.5s linear infinite;
}

.howto__grid {
  list-style: none;
  display: grid;
  gap: 1rem;
}

.mission {
  position: relative;
  padding: 1.4rem 1.2rem 1.3rem;
  background: rgba(16, 8, 26, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.mission::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(var(--pink), var(--teal));
}

.mission__no {
  font-family: var(--font-gta);
  font-size: 2.4rem;
  color: rgba(255, 45, 139, 0.22);
  line-height: 1;
}

.mission__icon {
  width: 3.2rem;
  height: 3.2rem;
  margin: 0.5rem 0 0.8rem;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 0.7rem;
}

.mission__icon img {
  width: 1.8rem;
  height: 1.8rem;
  object-fit: contain;
}

.mission h3 {
  margin-bottom: 0.45rem;
  font-size: 1.25rem;
}

.mission p {
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 1rem;
}

.chart {
  background: linear-gradient(180deg, #0b0612, #14091c);
}

.chart__ext {
  margin-left: auto;
}

.chart__frame {
  border: 1px solid rgba(255, 110, 180, 0.28);
  background: #08050e;
  box-shadow: 0 0 0 8px rgba(255, 45, 139, 0.05), 0 30px 80px rgba(0, 0, 0, 0.35);
}

.chart__bezel {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 0.8rem;
  background: linear-gradient(90deg, #1a0d22, #120816);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.chart__bezel span {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
}

.chart__bezel span:nth-child(1) { background: #ff5f57; }
.chart__bezel span:nth-child(2) { background: #febc2e; }
.chart__bezel span:nth-child(3) { background: #28c840; }

.chart__bezel p {
  margin-left: 0.6rem;
  font-family: var(--font-deco);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.7rem;
  color: var(--muted);
}

.chart__frame iframe {
  display: block;
  width: 100%;
  height: min(72vh, 40rem);
  border: 0;
  background: #0b0e11;
}

.join {
  padding-bottom: 0;
}

.join__art {
  position: relative;
  margin-top: 0.4rem;
  overflow: hidden;
}

.join__art img {
  width: 100%;
  max-height: 78vh;
  object-fit: cover;
  object-position: center;
  animation: ken 22s ease-in-out infinite alternate;
}

.join__bar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem 1.2rem 1.6rem;
  background: linear-gradient(180deg, transparent, rgba(7, 4, 13, 0.92));
}

.join__bar h3 {
  font-size: clamp(1.3rem, 3vw, 2rem);
  max-width: 22rem;
}

.join__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  align-items: center;
}

.foot {
  padding: 2rem 0 2.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: #07040d;
}

.foot__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.foot p {
  color: var(--muted);
  font-size: 0.85rem;
}

.foot__links {
  display: flex;
  gap: 0.6rem;
}

.foot__links a {
  width: 2.3rem;
  height: 2.3rem;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 50%;
}

.foot__links img {
  width: 1.15rem;
  height: 1.15rem;
}

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

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

@keyframes lift {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes load {
  0% { transform: translateX(-120%); }
  100% { transform: translateX(320%); }
}

@keyframes pulse {
  50% { transform: scale(1.08); opacity: 0.75; }
}

@keyframes drift {
  50% { transform: translate3d(20px, -24px, 0) scale(1.08); }
}

@keyframes sway {
  50% { transform: rotate(4deg); }
}

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

@keyframes neon {
  0%, 100% { text-shadow: 0 0 8px rgba(255, 179, 71, 0.2); }
  45% { text-shadow: 0 0 18px rgba(255, 179, 71, 0.7), 0 0 40px rgba(255, 45, 139, 0.35); }
  48% { opacity: 0.72; }
  50% { opacity: 1; }
}

@keyframes flicker {
  0%, 92%, 100% { opacity: 1; }
  93% { opacity: 0.35; }
  95% { opacity: 0.9; }
}

@keyframes drip {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

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

@keyframes cruise {
  from { left: 0; }
  to { left: 100%; }
}

@keyframes stamp {
  from { transform: rotate(-12deg) scale(1.2); opacity: 0; }
}

@keyframes ken {
  from { transform: scale(1); }
  to { transform: scale(1.06); }
}

@media (min-width: 860px) {
  .nav__links {
    display: flex;
  }

  .nav__burger {
    display: none;
  }

  .hero__stage {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    text-align: left;
    justify-items: start;
  }

  .hero__cover {
    grid-column: 2;
    grid-row: 1 / 3;
    width: min(34vw, 28rem);
  }

  .hero__plate {
    grid-column: 1;
  }

  .hero__copy {
    grid-column: 1;
  }

  .hero__cta,
  .hero__lead {
    justify-content: flex-start;
    margin-left: 0;
  }

  .about__grid {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: start;
  }

  .howto__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .join__bar {
    padding: 2rem 2.2rem 2.2rem;
  }
}

@media (max-width: 859px) {
  .nav.is-open .nav__links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    padding: 1.2rem 1.4rem 1.6rem;
    background: rgba(8, 5, 14, 0.96);
    border-bottom: 1px solid var(--line);
  }

  .chart__ext {
    margin-left: 0;
  }

  .join__bar {
    position: static;
    background: #0b0712;
  }

  .join__art img {
    max-height: none;
    animation: none;
  }

  .hero__plate {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.45rem 0.75rem;
  }

  .hero__plate strong {
    font-size: 1.15rem;
  }

  .hero {
    padding-bottom: 4.5rem;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
