:root {
  --void: #070b08;
  --canopy: #0d1510;
  --moss: #24321c;
  --leaf: #4a6b2e;
  --lime: #c8e24d;
  --lime-deep: #8fb42a;
  --fur: #c7a06c;
  --ear: #e3b48e;
  --asphalt: #1a1d20;
  --road: #2a2e32;
  --mist: #a8b49a;
  --cream: #efe8d4;
  --ink: #0a0d0b;
  --display: "Rubik Wet Paint", cursive;
  --squat: "Bungee", sans-serif;
  --body: "Karla", sans-serif;
  --mono: "Share Tech Mono", monospace;
}

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

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: var(--void);
  color: var(--cream);
  font-family: var(--body);
}

body {
  overflow-x: hidden;
}

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

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

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

.grain,
.canopy,
.haze,
.shafts,
.vignette,
#litter {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.grain {
  z-index: 40;
  opacity: 0.09;
  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");
  mix-blend-mode: overlay;
}

.canopy {
  z-index: 0;
  background:
    radial-gradient(1200px 700px at 50% -10%, rgba(74, 107, 46, 0.28), transparent 60%),
    radial-gradient(900px 500px at 100% 20%, rgba(36, 50, 28, 0.55), transparent 55%),
    radial-gradient(800px 480px at 0% 80%, rgba(199, 160, 108, 0.08), transparent 50%),
    linear-gradient(180deg, #10180f 0%, var(--void) 42%, #0a100c 100%);
}

.haze {
  z-index: 1;
  background: radial-gradient(ellipse at center, rgba(168, 180, 154, 0.08), transparent 62%);
  filter: blur(28px);
}

.haze-a {
  animation: drift 18s ease-in-out infinite;
}

.haze-b {
  animation: drift 26s ease-in-out infinite reverse;
  opacity: 0.7;
}

.shafts {
  z-index: 1;
  background:
    linear-gradient(118deg, transparent 40%, rgba(200, 226, 77, 0.045) 48%, transparent 56%),
    linear-gradient(104deg, transparent 52%, rgba(227, 180, 142, 0.03) 58%, transparent 64%);
  animation: shaft 14s ease-in-out infinite;
}

.vignette {
  z-index: 35;
  background: radial-gradient(ellipse at center, transparent 48%, rgba(5, 8, 6, 0.72) 100%);
}

#litter {
  z-index: 2;
}

@keyframes drift {
  0%, 100% { transform: translate3d(-3%, 2%, 0) scale(1.05); }
  50% { transform: translate3d(4%, -3%, 0) scale(1.12); }
}

@keyframes shaft {
  0%, 100% { opacity: 0.45; transform: translateX(-2%); }
  50% { opacity: 0.9; transform: translateX(3%); }
}

.spine {
  position: fixed;
  left: 18px;
  top: 50%;
  z-index: 30;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transform: translateY(-50%);
}

.disc {
  width: 14px;
  height: 7px;
  border-radius: 99px;
  background: rgba(239, 232, 212, 0.18);
  box-shadow: 0 0 0 3px rgba(36, 50, 28, 0.5);
  transform: scaleY(0.72);
  transition: background 0.35s, transform 0.35s, box-shadow 0.35s;
}

.disc.active {
  background: var(--lime);
  transform: scaleY(0.55) scaleX(1.35);
  box-shadow: 0 0 16px rgba(200, 226, 77, 0.45);
}

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 28px;
  background: rgba(7, 11, 8, 0.55);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(200, 226, 77, 0.08);
  transition: padding 0.35s, background 0.35s;
}

.nav.scrolled {
  padding: 10px 28px;
  background: rgba(7, 11, 8, 0.86);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-stamp {
  width: 46px;
  height: 34px;
  overflow: hidden;
  border-radius: 40% 40% 28% 28%;
  border: 2px solid var(--lime);
  box-shadow: 0 0 18px rgba(200, 226, 77, 0.25);
}

.brand-stamp img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 35%;
  transform: scale(1.35);
}

.brand-name {
  display: block;
  font-family: var(--display);
  font-size: 22px;
  line-height: 0.8;
  color: var(--lime);
  letter-spacing: 0.02em;
  transform: scaleY(0.82);
  transform-origin: left center;
  text-shadow: 2px 3px 0 #0a1208, 0 0 12px rgba(200, 226, 77, 0.25);
}

.brand-sub {
  display: block;
  font-family: var(--squat);
  font-size: 8px;
  letter-spacing: 0.16em;
  color: var(--mist);
  transform: scaleY(0.78);
}

.links {
  display: flex;
  gap: 22px;
}

.links a {
  font-family: var(--squat);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--mist);
  transform: scaleY(0.8);
  position: relative;
}

.links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 3px;
  background: var(--lime);
  transition: width 0.3s;
}

.links a:hover {
  color: var(--lime);
}

.links a:hover::after {
  width: 100%;
}

.nav-tools {
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon-btn {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(26, 29, 32, 0.8);
  border: 1px solid rgba(200, 226, 77, 0.12);
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.icon-btn img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  filter: brightness(1.1);
}

img[src$="x.svg"] {
  filter: invert(1);
}

.btn-lime img[src$="x.svg"] {
  filter: none;
}

.icon-btn:hover {
  transform: translateY(-2px) scaleY(0.92);
  border-color: var(--lime);
  box-shadow: 0 8px 20px rgba(200, 226, 77, 0.15);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 12px;
  font-family: var(--squat);
  font-size: 13px;
  letter-spacing: 0.04em;
  transform: scaleY(0.88);
  transform-origin: center;
  transition: transform 0.22s, box-shadow 0.22s, background 0.22s;
}

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

.btn-lime {
  background: linear-gradient(180deg, var(--lime), var(--lime-deep));
  color: var(--ink);
  box-shadow: 0 8px 0 #3d4f14, 0 12px 24px rgba(200, 226, 77, 0.2);
}

.btn-lime:hover {
  transform: translateY(-2px) scaleY(0.84);
  box-shadow: 0 10px 0 #3d4f14, 0 16px 28px rgba(200, 226, 77, 0.28);
}

.btn-asphalt {
  background: var(--asphalt);
  color: var(--cream);
  border: 1px solid rgba(200, 226, 77, 0.18);
}

.btn-asphalt:hover {
  transform: translateY(-2px) scaleY(0.84);
  border-color: var(--lime);
}

.burger {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  flex-direction: column;
  justify-content: space-between;
}

.burger span {
  display: block;
  height: 3px;
  background: var(--lime);
  border-radius: 99px;
}

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

.hero {
  position: relative;
  min-height: calc(100vh - 74px);
  padding: 48px 7vw 160px;
  overflow: hidden;
}

.hero-leaves {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(420px 180px at 8% 0%, rgba(36, 50, 28, 0.85), transparent 70%),
    radial-gradient(380px 160px at 92% 4%, rgba(36, 50, 28, 0.8), transparent 70%);
  pointer-events: none;
}

.hero-road {
  position: absolute;
  left: -8%;
  right: -8%;
  bottom: 0;
  height: 150px;
  background:
    linear-gradient(180deg, transparent, rgba(26, 29, 32, 0.15) 12%, var(--asphalt) 28%, #121416 100%);
  transform: perspective(280px) rotateX(18deg);
  transform-origin: bottom;
  box-shadow: 0 -30px 80px rgba(0, 0, 0, 0.35);
}

.hero-road::before,
.hero-road::after {
  content: "";
  position: absolute;
  top: 18%;
  width: 100%;
  height: 3px;
  background: repeating-linear-gradient(90deg, rgba(239, 232, 212, 0.14) 0 18px, transparent 18px 36px);
}

.hero-road::after {
  top: auto;
  bottom: 16%;
}

.road-dash {
  position: absolute;
  top: 50%;
  left: 0;
  width: 200%;
  height: 6px;
  background: repeating-linear-gradient(90deg, var(--lime) 0 42px, transparent 42px 88px);
  opacity: 0.35;
  animation: dash 8s linear infinite;
}

@keyframes dash {
  from { transform: translateX(0); }
  to { transform: translateX(-88px); }
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.9fr);
  gap: 48px;
  align-items: center;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(26, 29, 32, 0.7);
  border: 1px solid rgba(200, 226, 77, 0.16);
  font-family: var(--squat);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--mist);
  transform: scaleY(0.82);
}

.chip img {
  width: 16px;
  height: 16px;
}

.chip-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 10px var(--lime);
  animation: blink 1.8s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 0.35; }
  50% { opacity: 1; }
}

.wordmark {
  margin: 0;
  line-height: 0.72;
  position: relative;
  isolation: isolate;
}

.wordmark::before,
.wordmark::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: -1;
}

.wordmark::before {
  width: 180px;
  height: 90px;
  left: -30px;
  top: 8px;
  background:
    radial-gradient(circle at 30% 40%, rgba(200, 226, 77, 0.22) 0 18px, transparent 19px),
    radial-gradient(circle at 62% 58%, rgba(143, 180, 42, 0.2) 0 28px, transparent 29px),
    radial-gradient(circle at 80% 30%, rgba(200, 226, 77, 0.16) 0 12px, transparent 13px);
  filter: blur(0.4px);
}

.wordmark::after {
  width: 70px;
  height: 54px;
  right: 12%;
  bottom: -8px;
  background:
    radial-gradient(circle at 40% 50%, rgba(200, 226, 77, 0.28) 0 8px, transparent 9px),
    radial-gradient(circle at 58% 72%, rgba(200, 226, 77, 0.2) 0 11px, transparent 12px);
}

.wm-line {
  display: block;
  font-family: var(--display);
  font-size: clamp(72px, 12vw, 148px);
  color: var(--lime);
  letter-spacing: 0.01em;
  transform: scaleY(0.72);
  transform-origin: left center;
  text-shadow:
    0 0 0 #10200c,
    4px 6px 0 #0a1208,
    8px 12px 0 rgba(0, 0, 0, 0.45),
    0 0 28px rgba(200, 226, 77, 0.28);
  animation: squat-in 1s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.wm-line:nth-child(2) {
  animation-delay: 0.12s;
  color: #d6ee6a;
}

@keyframes squat-in {
  from {
    opacity: 0;
    transform: scaleY(1.2) translateY(-24px);
    filter: blur(8px);
  }
  to {
    opacity: 1;
    transform: scaleY(0.72) translateY(0);
    filter: blur(0);
  }
}

.symbol {
  margin: 6px 0 0;
  font-family: var(--squat);
  font-size: 18px;
  letter-spacing: 0.18em;
  color: var(--fur);
  transform: scaleY(0.78);
}

.lede {
  max-width: 38ch;
  margin: 16px 0 0;
  font-size: 20px;
  line-height: 1.45;
  color: var(--cream);
}

.ca-slab {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  padding: 10px 10px 10px 16px;
  max-width: 560px;
  background: rgba(26, 29, 32, 0.82);
  border: 1px solid rgba(200, 226, 77, 0.14);
  border-radius: 14px;
  box-shadow: inset 0 -8px 0 rgba(0, 0, 0, 0.25);
}

.ca-kicker {
  font-family: var(--squat);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--lime);
  transform: scaleY(0.8);
}

.ca-value {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-family: var(--mono);
  font-size: 13px;
  color: var(--mist);
}

.ca-copy {
  padding: 8px 12px;
  border-radius: 8px;
  background: var(--lime);
  color: var(--ink);
  font-family: var(--squat);
  font-size: 11px;
  transform: scaleY(0.86);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.walker {
  position: relative;
  margin: 0;
  display: grid;
  place-items: center;
}

.walker-glow {
  position: absolute;
  width: 70%;
  height: 70%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 226, 77, 0.28), transparent 70%);
  animation: breathe 4.5s ease-in-out infinite;
}

.walker-ring,
.walker-ring.lag {
  position: absolute;
  width: 86%;
  aspect-ratio: 1;
  border-radius: 46% 54% 48% 52%;
  border: 2px dashed rgba(200, 226, 77, 0.28);
  animation: spin 22s linear infinite;
}

.walker-ring.lag {
  width: 98%;
  animation-duration: 34s;
  animation-direction: reverse;
  border-style: dotted;
}

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

@keyframes breathe {
  0%, 100% { transform: scale(0.92); opacity: 0.55; }
  50% { transform: scale(1.12); opacity: 1; }
}

.walker-frame {
  position: relative;
  width: min(100%, 460px);
  aspect-ratio: 1;
  border-radius: 42% 46% 28% 32%;
  overflow: hidden;
  border: 4px solid rgba(200, 226, 77, 0.55);
  box-shadow:
    0 18px 0 rgba(10, 14, 11, 0.55),
    0 0 40px rgba(200, 226, 77, 0.18);
  animation: walk 2.4s ease-in-out infinite;
}

.walker-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 55%;
}

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

.walker-cap {
  margin-top: 18px;
  font-family: var(--squat);
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--lime);
  transform: scaleY(0.8);
}

section {
  position: relative;
  padding: 96px 7vw;
}

.section-head {
  margin-bottom: 40px;
}

.section-kicker {
  margin: 0 0 8px;
  font-family: var(--squat);
  font-size: 12px;
  letter-spacing: 0.22em;
  color: var(--lime);
  transform: scaleY(0.78);
}

.section-title {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(40px, 6vw, 72px);
  line-height: 0.86;
  color: var(--cream);
  transform: scaleY(0.8);
  transform-origin: left top;
  text-shadow: 3px 5px 0 #0a1208;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 36px;
  align-items: stretch;
}

.lore {
  padding: 32px;
  background: linear-gradient(180deg, rgba(36, 50, 28, 0.45), rgba(13, 21, 16, 0.8));
  border: 1px solid rgba(200, 226, 77, 0.12);
  border-radius: 22px;
  box-shadow: 0 20px 0 rgba(0, 0, 0, 0.22);
}

.lore p {
  margin: 0 0 16px;
  font-size: 18px;
  line-height: 1.6;
  color: #ddd6c2;
}

.lore-close {
  color: var(--lime) !important;
  font-weight: 700;
}

.measure {
  padding: 28px;
  background: var(--asphalt);
  border-radius: 22px;
  border: 1px solid rgba(199, 160, 108, 0.2);
}

.measure-label,
.measure-note {
  margin: 0;
  font-family: var(--squat);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--fur);
  transform: scaleY(0.8);
}

.bars {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  height: 220px;
  margin: 22px 0;
}

.bar {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: center;
  gap: 10px;
}

.bar-fill {
  width: 100%;
  border-radius: 10px 10px 4px 4px;
  background: linear-gradient(180deg, #6b7a52, #2a3322);
}

.bar.tall .bar-fill { height: 100%; }
.bar.mid .bar-fill { height: 58%; }
.bar.short .bar-fill {
  height: 28%;
  background: linear-gradient(180deg, var(--lime), var(--lime-deep));
  box-shadow: 0 0 22px rgba(200, 226, 77, 0.35);
}

.bar-fill.pulse {
  animation: squat-pulse 2.2s ease-in-out infinite;
}

@keyframes squat-pulse {
  0%, 100% { height: 28%; }
  50% { height: 22%; }
}

.bar-name {
  font-family: var(--squat);
  font-size: 11px;
  letter-spacing: 0.04em;
  transform: scaleY(0.8);
}

.traits {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 0;
  margin: 36px 0 0;
}

.traits li {
  padding: 20px 18px 16px;
  background: rgba(13, 21, 16, 0.8);
  border: 1px solid rgba(200, 226, 77, 0.1);
  border-radius: 16px;
  min-height: 168px;
  transform: scaleY(0.96);
  transition: transform 0.3s, border-color 0.3s;
}

.traits li:hover {
  transform: scaleY(0.88) translateY(4px);
  border-color: var(--lime);
}

.trait-n {
  display: block;
  font-family: var(--mono);
  color: var(--lime);
  margin-bottom: 10px;
}

.traits strong {
  display: block;
  font-family: var(--display);
  font-size: 26px;
  line-height: 0.9;
  transform: scaleY(0.8);
  transform-origin: left top;
}

.traits p {
  margin: 10px 0 0;
  color: var(--mist);
  line-height: 1.45;
}

.howtobuy {
  background: linear-gradient(180deg, transparent, rgba(26, 29, 32, 0.35), transparent);
}

.path {
  position: absolute;
  left: 10%;
  right: 10%;
  top: 58%;
  height: 8px;
  background: repeating-linear-gradient(90deg, rgba(200, 226, 77, 0.35) 0 28px, transparent 28px 52px);
  opacity: 0.35;
  animation: dash 10s linear infinite;
}

.steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 1;
}

.step {
  position: relative;
  padding: 26px 20px 22px;
  background: linear-gradient(180deg, #1c2418, #121812);
  border: 1px solid rgba(200, 226, 77, 0.12);
  border-radius: 20px 20px 12px 12px;
  box-shadow: 0 16px 0 #0a0d0b;
  animation: rise 0.8s ease both;
}

.step:nth-child(2) { animation-delay: 0.08s; }
.step:nth-child(3) { animation-delay: 0.16s; }
.step:nth-child(4) { animation-delay: 0.24s; }

@keyframes rise {
  from { opacity: 0; transform: translateY(24px) scaleY(1.08); }
  to { opacity: 1; transform: translateY(0) scaleY(1); }
}

.paw {
  position: absolute;
  top: -14px;
  left: 18px;
  width: 28px;
  height: 24px;
  background:
    radial-gradient(circle at 30% 70%, var(--lime) 0 5px, transparent 6px),
    radial-gradient(circle at 50% 58%, var(--lime) 0 7px, transparent 8px),
    radial-gradient(circle at 70% 70%, var(--lime) 0 5px, transparent 6px),
    radial-gradient(circle at 50% 88%, var(--lime) 0 8px, transparent 9px);
  opacity: 0.85;
  animation: stamp 2.8s ease-in-out infinite;
}

.step:nth-child(2) .paw { animation-delay: 0.4s; }
.step:nth-child(3) .paw { animation-delay: 0.8s; }
.step:nth-child(4) .paw { animation-delay: 1.2s; }

@keyframes stamp {
  0%, 70%, 100% { transform: scale(1); opacity: 0.7; }
  80% { transform: scale(1.25); opacity: 1; }
}

.step-n {
  font-family: var(--squat);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--lime);
  transform: scaleY(0.8);
  display: block;
}

.step-icon {
  width: 54px;
  height: 54px;
  margin: 14px 0;
  display: grid;
  place-items: center;
  background: #0e120f;
  border-radius: 14px;
  border: 1px solid rgba(200, 226, 77, 0.14);
}

.step-icon img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.step-icon.hold {
  overflow: hidden;
}

.step-icon.hold img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.step h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 28px;
  line-height: 0.9;
  transform: scaleY(0.82);
  transform-origin: left top;
}

.step p {
  margin: 10px 0 0;
  color: var(--mist);
  line-height: 1.5;
}

.chart-head,
.chart .section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
}

.chart-ext {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--squat);
  font-size: 12px;
  color: var(--lime);
  transform: scaleY(0.84);
}

.chart-ext img {
  width: 18px;
  height: 18px;
}

.chart-frame {
  position: relative;
  height: min(640px, 78vh);
  border-radius: 22px;
  overflow: hidden;
  border: 2px solid rgba(200, 226, 77, 0.18);
  box-shadow: 0 24px 0 #0a0d0b, 0 0 40px rgba(200, 226, 77, 0.08);
  background: #0b0f0c;
}

.chart-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: none;
}

.chart-frame.is-live iframe {
  display: block;
}

.chart-wait {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 14px;
  color: var(--mist);
  font-family: var(--squat);
  letter-spacing: 0.06em;
  transform: scaleY(0.92);
}

.chart-wait img {
  width: 42px;
  height: 42px;
}

.chart-frame.is-live .chart-wait {
  display: none;
}

.billboard {
  margin: 0;
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  border: 3px solid rgba(200, 226, 77, 0.35);
  box-shadow: 0 22px 0 #0a0d0b, 0 0 50px rgba(200, 226, 77, 0.12);
}

.billboard img {
  width: 100%;
  height: min(520px, 62vw);
  object-fit: cover;
  object-position: center 40%;
  filter: saturate(1.05) contrast(1.04);
  animation: ken 22s ease-in-out infinite;
}

@keyframes ken {
  0%, 100% { transform: scale(1) translateY(0); }
  50% { transform: scale(1.06) translateY(-2%); }
}

.billboard figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  background: linear-gradient(transparent, rgba(7, 11, 8, 0.88));
  font-family: var(--display);
  font-size: clamp(20px, 3vw, 34px);
  line-height: 0.9;
  transform: scaleY(0.84);
  color: var(--lime);
  text-shadow: 2px 3px 0 #0a1208;
}

.join-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 22px;
}

.join-card {
  display: grid;
  grid-template-columns: 42px 1fr;
  grid-template-rows: auto auto;
  column-gap: 12px;
  padding: 18px;
  background: rgba(26, 29, 32, 0.85);
  border: 1px solid rgba(200, 226, 77, 0.12);
  border-radius: 16px;
  transition: transform 0.25s, border-color 0.25s;
}

.join-card img {
  grid-row: 1 / span 2;
  width: 36px;
  height: 36px;
  object-fit: contain;
  align-self: center;
}

.join-card span {
  font-family: var(--squat);
  font-size: 11px;
  color: var(--mist);
  transform: scaleY(0.8);
}

.join-card strong {
  font-family: var(--display);
  font-size: 24px;
  line-height: 0.9;
  transform: scaleY(0.82);
}

.join-card:hover {
  transform: translateY(-4px) scaleY(0.94);
  border-color: var(--lime);
}

.foot {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1.1fr 1.4fr auto;
  gap: 24px;
  align-items: center;
  padding: 36px 7vw 48px;
  border-top: 1px solid rgba(200, 226, 77, 0.1);
  background: rgba(7, 11, 8, 0.72);
}

.foot-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.foot-brand img {
  width: 54px;
  height: 40px;
  object-fit: cover;
  object-position: 50% 35%;
  border-radius: 12px;
  border: 2px solid var(--lime);
}

.foot-brand strong {
  display: block;
  font-family: var(--display);
  font-size: 22px;
  color: var(--lime);
  line-height: 0.85;
  transform: scaleY(0.8);
}

.foot-brand span,
.disclaimer {
  color: var(--mist);
  line-height: 1.5;
}

.foot-links {
  display: flex;
  gap: 16px;
}

.foot-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--squat);
  font-size: 12px;
  transform: scaleY(0.82);
}

.foot-links img {
  width: 16px;
  height: 16px;
}

.await-reveal {
  opacity: 0;
  transform: translateY(28px) scaleY(1.08);
}

.reveal {
  opacity: 0;
  transform: translateY(28px) scaleY(1.08);
  animation: reveal 0.8s ease forwards;
}

.reveal.d1 { animation-delay: 0.1s; }
.reveal.d2 { animation-delay: 0.2s; }
.reveal.d3 { animation-delay: 0.3s; }

@keyframes reveal {
  to {
    opacity: 1;
    transform: translateY(0) scaleY(1);
  }
}

@media (max-width: 980px) {
  .spine { display: none; }
  .links { display: none; }
  .links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 18px 24px 22px;
    background: rgba(7, 11, 8, 0.96);
    border-bottom: 1px solid rgba(200, 226, 77, 0.12);
  }
  .burger { display: flex; }
  .nav { position: sticky; }
  .nav-tools .btn { display: none; }
  .hero-layout,
  .about-grid,
  .traits,
  .steps,
  .join-row,
  .foot {
    grid-template-columns: 1fr;
  }
  .hero { padding-bottom: 120px; }
  .path { display: none; }
  .billboard figcaption { flex-direction: column; }
}

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