:root {
  --paper: #f5f3eb;
  --card: #fffdf7;
  --ink: #171813;
  --muted: #6e7167;
  --line: #dcded2;
  --lime: #c9ff4a;
  --green: #1c5d3d;
  --soft: #e8edda;
  --night: #0c100b;
  --night-ink: #e9eee1;
  --night-muted: #9ba492;
  --night-line: #28301f;
  --cap: #e0916b;
  --moss: #c7e541;
  --skin: var(--paper);
  --header: #171813;
  --font-display: "Big Shoulders Display", "Oswald", "Arial Narrow", sans-serif;
  --font-text: "Zen Kaku Gothic New", Arial, Helvetica, sans-serif;
  --font-data: "JetBrains Mono", ui-monospace, SFMono-Regular, Consolas, monospace;
  --pad: clamp(20px, 5vw, 72px);
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  background: var(--paper);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100%;
  color: var(--ink);
  font-family: var(--font-text);
  background: var(--skin);
  transition: background-color 0.9s var(--ease);
  cursor: none;
}

body.is-night {
  --header: #e9eee1;
}

@media (pointer: coarse) {
  body {
    cursor: auto;
  }
}

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

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

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

.skip {
  position: absolute;
  left: -999px;
  top: 0;
}

.skip:focus {
  left: 16px;
  top: 16px;
  z-index: 100;
  padding: 8px 12px;
  background: var(--ink);
  color: var(--paper);
}

.grain {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 80;
  opacity: 0.13;
  mix-blend-mode: multiply;
  image-rendering: pixelated;
}

body.is-night .grain {
  mix-blend-mode: overlay;
  opacity: 0.18;
}

.cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--ink);
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 90;
  transform: translate(-50%, -50%);
  transition: width 0.25s var(--ease), height 0.25s var(--ease), background 0.25s, mix-blend-mode 0.25s;
}

body[data-skin="lime"] .cursor {
  mix-blend-mode: normal;
  background: var(--ink);
}

body.is-night .cursor {
  mix-blend-mode: normal;
  background: var(--lime);
}

.cursor.is-down {
  width: 8px;
  height: 8px;
}

.cursor.on-btn {
  width: 42px;
  height: 42px;
  background: transparent;
  box-shadow: inset 0 0 0 1.5px var(--ink);
  mix-blend-mode: normal;
}

@media (pointer: coarse) {
  .cursor {
    display: none;
  }
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  background: var(--paper);
  transition: opacity 0.6s var(--ease), visibility 0.6s;
}

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

.loader-mark {
  overflow: visible;
}

.loader-word {
  font-family: var(--font-display);
  font-size: clamp(64px, 12vw, 140px);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 0.92;
  display: block;
  padding: 0.04em 0.03em 0.18em 0;
  overflow: visible;
  clip-path: inset(0 100% -0.2em -0.03em);
  animation: wordIn 0.9s var(--ease-out) 0.15s forwards;
}

.loader-bar {
  display: block;
  height: 6px;
  margin-top: 18px;
  background: var(--lime);
  transform-origin: left;
  transform: scaleX(0);
  animation: barIn 0.8s var(--ease-out) 0.45s forwards;
}

@keyframes wordIn {
  to {
    clip-path: inset(0 -0.03em -0.2em -0.03em);
  }
}

@keyframes barIn {
  to {
    transform: scaleX(1);
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: 76px;
  padding: 0 var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid color-mix(in srgb, var(--header) 12%, transparent);
  background: color-mix(in srgb, var(--skin) 88%, transparent);
  backdrop-filter: blur(16px);
  color: var(--header);
  transition: transform 0.35s var(--ease), color 0.5s, background 0.5s, border-color 0.5s;
}

.site-header.is-hidden {
  transform: translateY(-100%);
}

.brand,
.wordmark {
  display: flex;
  align-items: center;
  gap: 10px;
}

.wordmark {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  padding-bottom: 0.12em;
  overflow: visible;
  transform: translateY(2px);
}

.brand-mark {
  color: var(--lime);
  flex-shrink: 0;
}

.header-ca {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  color: var(--muted);
  font: 600 10px/1 var(--font-data);
  letter-spacing: 0.04em;
  white-space: nowrap;
  cursor: pointer;
}

.header-ca span {
  color: var(--green);
}

body.is-night .header-ca span {
  color: var(--lime);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 13px;
  color: var(--muted);
}

.desktop-nav a:not(.btn):hover {
  color: var(--header);
}

.icon-link {
  display: grid;
  place-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 19px;
  border-radius: 11px;
  font-weight: 750;
  font-size: 14px;
  letter-spacing: -0.02em;
  transition: transform 0.25s var(--ease), background 0.25s, color 0.25s, border-color 0.25s;
}

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

.btn-lime {
  position: relative;
  overflow: hidden;
  background: var(--lime);
  color: var(--ink);
}

.btn-lime::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 20%, #ffffff88 48%, transparent 72%);
  transform: translateX(-130%);
  transition: transform 0.6s var(--ease);
}

.btn-lime:hover::after {
  transform: translateX(130%);
}

.btn-ink {
  background: var(--ink);
  color: #fff;
  padding: 9px 13px;
  font-size: 12px;
}

body.is-night .btn-ink {
  background: var(--night-ink);
  color: var(--night);
}

.btn-quiet {
  border: 1px solid var(--line);
  background: #ffffff70;
}

body.is-night .btn-quiet {
  border-color: var(--night-line);
  background: transparent;
  color: var(--night-ink);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  gap: 6px;
  flex-direction: column;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
}

body.menu-open {
  --skin: var(--paper);
}

body.menu-open.is-night {
  --header: var(--ink);
}

.mobile-menu {
  position: fixed;
  inset: 76px 0 0;
  z-index: 35;
  background: var(--paper);
  padding: 12px var(--pad) 40px;
  display: flex;
  flex-direction: column;
}

.mobile-menu[hidden] {
  display: none;
}

.mobile-menu a {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 72px;
  border-top: 1px solid var(--line);
  font-family: var(--font-display);
  font-size: clamp(2rem, 8vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.mobile-menu a span {
  font-family: var(--font-data);
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  color: var(--muted);
}

.mobile-menu .btn {
  margin-top: 24px;
  font-family: var(--font-text);
}

.hero {
  min-height: calc(100svh - 76px);
  padding: 48px var(--pad) 28px;
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  gap: 5vw;
  align-items: center;
  overflow: hidden;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-family: var(--font-data);
}

.eyebrow.dark,
.lede.dark {
  color: #1c5d3d;
}

.eyebrow.lime {
  color: var(--lime);
}

h1,
.display {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.94;
  margin: 0;
}

h1 {
  max-width: 10.5ch;
  font-size: clamp(54px, 7.2vw, 104px);
}

h1 .line {
  display: block;
  padding-bottom: 0.08em;
}

h1 .line:last-child {
  color: color-mix(in srgb, var(--ink) 78%, var(--green));
}

.display {
  font-size: clamp(46px, 5.6vw, 82px);
}

.lede {
  max-width: 38rem;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 1.6vw, 23px);
  line-height: 1.48;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

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

.hero-blob {
  position: absolute;
  width: 82%;
  aspect-ratio: 1;
  border-radius: 44% 56% 63% 37% / 43% 42% 58% 57%;
  background: var(--lime);
  transform: rotate(-8deg);
  animation: blob 12s ease-in-out infinite;
}

@keyframes blob {
  0%,
  100% {
    border-radius: 44% 56% 63% 37% / 43% 42% 58% 57%;
    transform: rotate(-8deg) scale(1);
  }
  33% {
    border-radius: 58% 42% 37% 63% / 52% 38% 62% 48%;
    transform: rotate(-2deg) scale(1.05);
  }
  66% {
    border-radius: 38% 62% 48% 52% / 41% 56% 44% 59%;
    transform: rotate(-12deg) scale(0.97);
  }
}

.bokeh {
  position: absolute;
  inset: -8%;
  pointer-events: none;
}

.bokeh i {
  position: absolute;
  border-radius: 50%;
  background: color-mix(in srgb, var(--lime) 70%, white);
  filter: blur(18px);
  opacity: 0.55;
  animation: float 9s ease-in-out infinite;
}

.bokeh i:nth-child(1) {
  width: 90px;
  height: 90px;
  top: 8%;
  left: 6%;
  animation-delay: -1s;
}

.bokeh i:nth-child(2) {
  width: 54px;
  height: 54px;
  top: 18%;
  right: 8%;
  animation-delay: -3s;
  filter: blur(10px);
}

.bokeh i:nth-child(3) {
  width: 120px;
  height: 120px;
  bottom: 10%;
  left: 18%;
  animation-delay: -5s;
  opacity: 0.35;
}

.bokeh i:nth-child(4) {
  width: 36px;
  height: 36px;
  bottom: 22%;
  right: 16%;
  animation-delay: -2s;
}

.bokeh i:nth-child(5) {
  width: 70px;
  height: 70px;
  top: 42%;
  left: -4%;
  animation-delay: -7s;
}

.bokeh i:nth-child(6) {
  width: 44px;
  height: 44px;
  top: 4%;
  left: 48%;
  animation-delay: -4.5s;
}

@keyframes float {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(12px, -22px, 0);
  }
}

.coin {
  position: relative;
  z-index: 2;
  width: min(280px, 58%);
  aspect-ratio: 1;
  perspective: 900px;
  transform-style: preserve-3d;
  transition: transform 0.4s var(--ease);
}

.coin-inner {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  animation: coinIdle 7s ease-in-out infinite;
}

.coin-face {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 6px;
  backface-visibility: hidden;
  background:
    radial-gradient(circle at 32% 28%, #f7ffe0 0%, #d4ff5a 28%, #b6e61a 62%, #8fbe10 100%);
  box-shadow:
    inset 0 0 0 14px color-mix(in srgb, #171813 12%, transparent),
    inset 0 -18px 40px #1c5d3d33,
    0 30px 50px #17181322;
}

.coin-front::before {
  content: "";
  position: absolute;
  width: 42%;
  height: 18%;
  top: 14%;
  left: 16%;
  border-radius: 50%;
  background: #fff;
  filter: blur(7px);
  opacity: 0.55;
}

.coin-face::after {
  content: "";
  position: absolute;
  inset: 18%;
  border-radius: 50%;
  border: 1.5px dashed #17181355;
}

.coin-back {
  transform: rotateY(180deg);
  background:
    radial-gradient(circle at 32% 28%, #fff 0%, #f5f3eb 24%, #dcded2 70%, #b7b9ad 100%);
}

.coin-tick {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: clamp(42px, 5vw, 58px);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 1;
  padding-bottom: 0.1em;
  color: var(--ink);
}

.coin-sub {
  position: relative;
  z-index: 1;
  font-family: var(--font-data);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #1c5d3d;
}

@keyframes coinIdle {
  0%,
  100% {
    transform: rotateY(-18deg) rotateX(8deg);
  }
  50% {
    transform: rotateY(22deg) rotateX(-7deg);
  }
}

.message-stack {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.bubble {
  position: absolute;
  width: min(300px, 72%);
  padding: 14px 16px;
  border: 1px solid #d7dacd;
  border-radius: 16px;
  background: #fffef8e8;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  box-shadow: 0 12px 30px #17181312;
  backdrop-filter: blur(8px);
  animation: bubbleIdle 6s ease-in-out infinite;
}

.bubble-a {
  left: -2%;
  top: 55%;
  animation-delay: 0s;
}

.bubble-b {
  right: -1%;
  top: 13%;
  animation-delay: -2s;
}

.bubble-c {
  right: 0;
  top: 70%;
  animation-delay: -4s;
}

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

.marquee {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
}

.marquee-track {
  display: flex;
  gap: 40px;
  width: max-content;
  font-family: var(--font-data);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  animation: marquee 32s linear infinite;
}

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

.how,
.launches,
.mechanism,
.lime-scene,
.night,
.close {
  padding: 110px var(--pad);
}

.how {
  padding-top: 88px;
}

.how-grid,
.bento,
.launch-grid,
.close-grid {
  display: grid;
  gap: 12px;
}

.how-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 42px;
}

.how-card,
.bento-card,
.launch-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px 24px;
}

.how-card {
  min-height: 280px;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s;
}

.how-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 40px #17181310;
}

.num,
.bento-kicker {
  font-family: var(--font-data);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--green);
}

.how-card h3,
.bento-card h3 {
  font-family: var(--font-display);
  font-size: clamp(40px, 4vw, 56px);
  font-weight: 800;
  letter-spacing: -0.04em;
  margin: 18px 0 12px;
  line-height: 0.9;
}

.how-card p,
.bento-card p,
.launch-meta p,
.risk {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  font-size: 16px;
}

.lime-scene {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6vw;
  align-items: center;
  min-height: 100svh;
}

.example-label {
  margin: 0 0 14px;
  font-family: var(--font-data);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #1c5d3d;
}

.thread {
  background: var(--card);
  border: 1px solid #c9d3b4;
  border-radius: 28px;
  padding: 10px;
  box-shadow: 0 30px 60px #17181318;
}

.post {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  padding: 16px 14px;
}

.post + .post {
  border-top: 1px solid var(--line);
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
}

.avatar.lg {
  width: 48px;
  height: 48px;
}

.av-mira {
  background: var(--lime);
  color: var(--ink);
}

.av-you {
  background: var(--ink);
  color: var(--lime);
}

.av-bot {
  background: #d8f07a;
  color: var(--ink);
  box-shadow: inset 0 0 0 2px var(--ink);
}

.post-body header {
  display: flex;
  gap: 8px;
  align-items: baseline;
  font-size: 14px;
}

.post-body header span,
.phone-meta,
.phone-top {
  color: var(--muted);
  font-size: 12px;
}

.post-body p {
  margin: 8px 0 0;
  font-size: 16px;
  line-height: 1.45;
}

.typed {
  font-weight: 700;
  min-height: 1.45em;
}

.caret {
  display: inline-block;
  width: 7px;
  height: 1em;
  background: var(--ink);
  transform: translateY(3px);
  animation: blink 1s steps(1) infinite;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

.mint-chip {
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px;
  border-radius: 14px;
  background: var(--soft);
}

.chip-art {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 28%, #f7ffe0, var(--lime) 55%, #8fbe10);
}

.mint-chip small {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.mechanism .mech-head {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 6vw;
  align-items: end;
  margin-bottom: 42px;
}

.bento {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.bento-card {
  min-height: 280px;
  background: #fff;
}

.night {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 6vw;
  align-items: center;
  min-height: 100svh;
  color: var(--night-ink);
}

.night .lede {
  color: var(--night-muted);
  margin-bottom: 32px;
}

.phone-wrap {
  position: relative;
  display: grid;
  place-items: center;
}

.night-dust {
  position: absolute;
  inset: -12% -8%;
  width: 120%;
  height: 124%;
  pointer-events: none;
  z-index: 0;
}

.phone {
  position: relative;
  z-index: 1;
  width: min(320px, 100%);
  aspect-ratio: 9 / 19.4;
  padding: 12px;
  border-radius: 42px;
  background: #0a0c09;
  box-shadow:
    0 0 0 1px #2a3324,
    0 40px 80px #00000080;
}

.island {
  position: absolute;
  top: 18px;
  left: 50%;
  width: 92px;
  height: 22px;
  border-radius: 20px;
  background: #000;
  transform: translateX(-50%);
  z-index: 2;
}

.phone-screen {
  height: 100%;
  border-radius: 32px;
  background:
    radial-gradient(circle at 50% 0%, #1a2214, #0c100b 46%);
  padding: 54px 20px 20px;
  display: flex;
  flex-direction: column;
  color: var(--night-ink);
}

.phone-top {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-data);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 10px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 12px var(--lime);
  animation: pulse 2.4s ease-in-out infinite;
}

@keyframes pulse {
  50% {
    opacity: 0.4;
    transform: scale(0.85);
  }
}

.phone-kicker {
  margin: 28px 0 0;
  font-family: var(--font-data);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--night-muted);
}

.phone-who small {
  display: block;
  color: var(--night-muted);
  font-size: 12px;
}

.phone-amount {
  font-family: var(--font-display);
  font-size: 58px;
  font-weight: 800;
  letter-spacing: -0.05em;
  margin: 28px 0 4px;
  line-height: 0.9;
}

.phone-rows {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  border-top: 1px solid #28301f;
}

.phone-rows li {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #28301f;
  font-size: 13px;
  color: var(--night-muted);
}

.phone-rows span:last-child {
  color: var(--night-ink);
  font-family: var(--font-data);
}

.phone-cta {
  margin-top: auto;
  background: var(--lime);
  color: var(--ink);
  text-align: center;
  padding: 14px;
  border-radius: 14px;
  font-weight: 800;
}

.phone-glow {
  position: absolute;
  width: 70%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--lime);
  filter: blur(70px);
  opacity: 0.28;
  z-index: 0;
  animation: float 7s ease-in-out infinite;
}

.launch-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 28px;
}

.filters {
  display: flex;
  gap: 8px;
}

.filters button {
  padding: 8px 13px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  font-size: 13px;
  font-weight: 700;
}

.filters button.is-on {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.launch-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  overflow-anchor: none;
}

.launch-card {
  min-width: 0;
  padding: 8px;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s var(--ease-out);
}

.launch-card:hover {
  transform: translateY(-8px);
}

.launch-card:hover .token-art {
  filter: saturate(1.08) brightness(1.06);
}

.launch-card.is-hidden {
  display: none;
}

.token-art {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--soft);
}

.token-art span {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(18px, 2.1vw, 26px);
  letter-spacing: -0.05em;
  padding: 0 8px;
  text-align: center;
}

.token-art::before,
.token-art::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  animation: orb 8s ease-in-out infinite;
}

.art-mira {
  background: #dff56a;
}

.art-mira::before {
  width: 70%;
  height: 70%;
  background: radial-gradient(circle at 30% 30%, #fff, #c9ff4a 40%, #6aa00a);
}

.art-nova {
  background: #171813;
  color: var(--lime);
}

.art-nova::before {
  width: 80%;
  height: 80%;
  background: radial-gradient(circle at 30% 20%, #c9ff4a55, transparent 60%);
}

.art-julian {
  background: #c9d7b0;
}

.art-julian::before {
  width: 58%;
  height: 58%;
  right: -10%;
  background: #171813;
}

.art-aria {
  background: #f0d2c0;
}

.art-aria::before {
  width: 62%;
  height: 62%;
  background: var(--cap);
}

.art-kenji {
  background: #1c5d3d;
  color: var(--paper);
}

.art-kenji::before {
  width: 50%;
  height: 50%;
  background: var(--lime);
  top: 18%;
}

.art-wren {
  background: #efe7c8;
}

.art-wren::before {
  width: 90%;
  height: 40%;
  background: #c9ff4a;
  border-radius: 40% 60%;
}

.art-lumen {
  background: #f7f1d6;
}

.art-lumen::before {
  width: 40%;
  height: 40%;
  background: #fff;
  box-shadow: 0 0 40px #fff;
}

.art-pax {
  background: #0c100b;
  color: var(--paper);
}

.art-pax::after {
  width: 64%;
  height: 64%;
  border: 10px solid var(--lime);
  background: transparent;
}

.art-io {
  background: #dcead0;
}

.art-io::before {
  width: 30%;
  height: 70%;
  border-radius: 20px;
  background: var(--ink);
}

.art-sol {
  background: #b7e4c7;
}

.art-sol::before {
  width: 75%;
  height: 75%;
  background: conic-gradient(from 120deg, #c9ff4a, #1c5d3d, #c9ff4a);
}

@keyframes orb {
  50% {
    transform: translate(8px, -10px) scale(1.06);
  }
}

.launch-meta {
  padding: 12px 8px 10px;
}

.launch-meta h3 {
  margin: 0;
  font-size: 16px;
  display: flex;
  justify-content: space-between;
  gap: 8px;
}

.launch-meta small {
  color: var(--muted);
  font-family: var(--font-data);
  font-size: 11px;
}

.launch-meta p {
  font-size: 12px;
  margin-top: 6px;
}

.launch-meta footer {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-top: 12px;
  font-size: 11px;
  color: var(--muted);
}

.pill {
  border-radius: 999px;
  padding: 3px 8px;
  font-weight: 800;
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pill.wait {
  background: var(--lime);
  color: var(--ink);
}

.pill.ok {
  background: var(--ink);
  color: #fff;
}

.close {
  padding-bottom: 48px;
  color: var(--night-ink);
}

.close .mute {
  display: block;
  color: var(--night-muted);
}

.close-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 56px;
}

.close-grid article,
.close-cta {
  min-height: 220px;
  border-radius: 28px;
  padding: 28px;
  border: 1px solid var(--night-line);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.close-grid strong {
  font-family: var(--font-display);
  font-size: clamp(48px, 5vw, 72px);
  letter-spacing: -0.05em;
  line-height: 0.85;
}

.close-grid p {
  margin: 0;
  color: var(--night-muted);
}

.close-cta {
  background: var(--lime);
  color: var(--ink);
  border: 0;
  font-family: var(--font-display);
  font-size: clamp(32px, 3vw, 44px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.9;
  transition: transform 0.35s var(--ease-out);
}

.close-cta:hover {
  transform: translateY(-6px);
}

.close-cta .arrow {
  font-size: 28px;
}

.site-footer {
  padding: 55px var(--pad);
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.4fr 0.8fr;
  gap: 40px;
  align-items: start;
  background: var(--night);
  color: #f7f7ef;
}

.footer-ca {
  margin: 8px 0 0;
  font: 600 11px/1.4 var(--font-data);
  color: var(--night-muted);
}

.risk {
  font-size: 13px;
  color: var(--night-muted);
}

.footer-links {
  display: flex;
  gap: 18px;
  justify-content: flex-end;
  font-size: 13px;
  color: var(--night-muted);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
}

.reveal.is-in {
  animation: rise 0.9s var(--ease-out) forwards;
}

.how-card.reveal.is-in:nth-child(2) {
  animation-delay: 0.1s;
}

.how-card.reveal.is-in:nth-child(3) {
  animation-delay: 0.2s;
}

.bento-card.reveal.is-in:nth-child(2) {
  animation-delay: 0.1s;
}

.bento-card.reveal.is-in:nth-child(3) {
  animation-delay: 0.2s;
}

@keyframes rise {
  to {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1100px) {
  .launch-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .header-ca {
    display: none;
  }

  .close-grid,
  .how-grid,
  .bento {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 860px) {
  .hero,
  .lime-scene,
  .night,
  .mechanism .mech-head,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
    padding-top: 28px;
  }

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

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .how-grid,
  .bento,
  .launch-grid,
  .close-grid,
  .launch-head {
    grid-template-columns: 1fr;
  }

  .launch-head,
  .filters {
    display: block;
  }

  .filters {
    margin-top: 18px;
  }

  h1 {
    max-width: none;
  }

  .bubble-c {
    display: none;
  }

  body {
    cursor: auto;
  }

  .cursor {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal,
  .loader-word {
    opacity: 1;
    clip-path: none;
    transform: none;
  }

  .loader {
    display: none;
  }

  .coin-inner {
    transform: none;
  }

  body {
    cursor: auto;
  }

  .cursor {
    display: none;
  }
}
