:root {
  --bg: #050505;
  --bg-lift: #10110f;
  --ink: #f7f5ed;
  --muted: #b7b1a5;
  --cash: #48d36f;
  --cash-deep: #0f6d34;
  --gold: #f2c94c;
  --danger: #f24b3f;
  --chrome: #d9e1e0;
  --line: rgba(247, 245, 237, 0.16);
  --shadow: 0 20px 70px rgba(0, 0, 0, 0.45);
  --soft-shadow: 0 18px 55px rgba(0, 0, 0, 0.32);
  --max-width: 1180px;
  --pointer-x: 50%;
  --pointer-y: 30%;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(115deg, rgba(72, 211, 111, 0.055), transparent 34%, rgba(242, 201, 76, 0.045) 62%, transparent 84%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.018) 0 1px, transparent 1px 92px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.014) 0 1px, transparent 1px 88px),
    var(--bg);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  z-index: 0;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.045) var(--pointer-x), transparent 72%),
    repeating-linear-gradient(0deg, transparent 0 6px, rgba(255, 255, 255, 0.018) 7px);
  content: "";
  opacity: 0.42;
  pointer-events: none;
}

main,
.site-footer {
  position: relative;
  z-index: 1;
}

body.nav-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

::selection {
  background: var(--cash);
  color: #031307;
}

.scroll-progress {
  position: fixed;
  z-index: 120;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--cash), var(--gold), var(--danger), var(--chrome));
  box-shadow: 0 0 18px rgba(72, 211, 111, 0.42);
  transform: scaleX(0);
  transform-origin: left;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  width: min(calc(100% - 32px), 1220px);
  margin: 16px auto 0;
  padding: 10px 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: rgba(5, 5, 5, 0.66);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
  transition:
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.site-header::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.13) 24%, transparent 46%);
  content: "";
  pointer-events: none;
  transform: translateX(-130%);
  animation: header-sheen 7s ease-in-out infinite;
}

.site-header > * {
  position: relative;
  z-index: 1;
}

.site-header.is-scrolled {
  background: rgba(5, 5, 5, 0.9);
  border-color: rgba(72, 211, 111, 0.28);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand img {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  object-fit: cover;
  filter: drop-shadow(0 0 10px rgba(72, 211, 111, 0.18));
  transition:
    filter 180ms ease,
    transform 180ms ease;
}

.brand:hover img {
  filter: drop-shadow(0 0 16px rgba(242, 201, 76, 0.22));
  transform: translateY(-1px);
}

.brand span {
  font-size: clamp(0.82rem, 1.4vw, 1rem);
  white-space: nowrap;
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 26px);
  color: rgba(247, 245, 237, 0.78);
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  padding: 10px 0;
  transition: color 160ms ease;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 2px;
  background: var(--cash);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

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

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--ink);
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.header-link,
.header-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  --magnetic-x: 0px;
  --magnetic-y: 0px;
  transform: translate3d(var(--magnetic-x), var(--magnetic-y), 0);
  transition:
    background 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.header-link {
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(247, 245, 237, 0.76);
}

.header-link:hover {
  border-color: rgba(72, 211, 111, 0.42);
  color: var(--ink);
}

.header-button {
  background: linear-gradient(135deg, var(--cash), #93ff9e);
  color: #041507;
  box-shadow:
    0 8px 18px rgba(72, 211, 111, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.46);
}

[data-tilt] {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  transform: perspective(950px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) translateY(var(--lift, 0px));
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--ink);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: min(760px, 78vh);
  display: flex;
  align-items: flex-end;
  padding: 112px 20px 24px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  isolation: isolate;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(1.08) contrast(1.05);
  transform: scale(1.035) translate3d(var(--hero-shift-x, 0px), var(--hero-shift-y, 0px), 0);
  transition: transform 500ms ease-out;
  will-change: transform;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.94), rgba(5, 5, 5, 0.62) 42%, rgba(5, 5, 5, 0.08) 78%),
    linear-gradient(0deg, rgba(5, 5, 5, 0.98) 0%, rgba(5, 5, 5, 0.18) 42%, rgba(5, 5, 5, 0.16) 100%);
}

.hero-reflection {
  position: absolute;
  z-index: 0;
  inset: 0;
  background:
    linear-gradient(112deg, transparent 0%, rgba(255, 255, 255, 0.13) 44%, transparent 55%),
    repeating-linear-gradient(90deg, transparent 0 54px, rgba(255, 255, 255, 0.028) 55px 56px);
  mix-blend-mode: screen;
  opacity: 0.58;
  pointer-events: none;
  transform: translateX(-28%);
  animation: hero-glare 9s ease-in-out infinite;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(100%, var(--max-width));
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--cash);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-shadow: 0 0 18px rgba(72, 211, 111, 0.34);
}

.hero h1 {
  width: min(820px, 100%);
  margin: 0;
  font-size: clamp(3rem, 7.2vw, 5.8rem);
  line-height: 0.88;
  letter-spacing: 0;
  text-transform: uppercase;
  background: linear-gradient(180deg, #ffffff 0%, #eff8ef 34%, #f7f5ed 48%, #aab2ad 100%);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  filter: drop-shadow(0 16px 34px rgba(0, 0, 0, 0.72));
}

.hero-copy {
  width: min(650px, 100%);
  margin: 18px 0 0;
  color: rgba(247, 245, 237, 0.9);
  font-size: clamp(1rem, 2vw, 1.28rem);
}

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

.primary-button,
.secondary-button,
.copy-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 950;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  --lift: 0px;
  --magnetic-x: 0px;
  --magnetic-y: 0px;
  transform: translate3d(var(--magnetic-x), calc(var(--magnetic-y) + var(--lift)), 0);
  transition:
    box-shadow 160ms ease,
    border-color 160ms ease,
    background 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.primary-button::before,
.secondary-button::before,
.copy-button::before,
.header-button::before,
.header-link::before,
.join-actions a::before {
  position: absolute;
  inset: -40% -70%;
  background: linear-gradient(115deg, transparent 38%, rgba(255, 255, 255, 0.45), transparent 62%);
  content: "";
  pointer-events: none;
  transform: translateX(-80%);
  transition: transform 420ms ease;
}

.primary-button:hover::before,
.secondary-button:hover::before,
.copy-button:hover::before,
.header-button:hover::before,
.header-link:hover::before,
.join-actions a:hover::before {
  transform: translateX(80%);
}

.primary-button > *,
.secondary-button > *,
.copy-button > *,
.header-button > *,
.header-link > *,
.join-actions a > * {
  position: relative;
  z-index: 1;
}

.primary-button {
  background: linear-gradient(135deg, var(--cash), #8cff9d 48%, var(--gold));
  color: #031307;
  box-shadow:
    0 14px 28px rgba(72, 211, 111, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.48);
}

.secondary-button {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(5, 5, 5, 0.42);
  color: var(--ink);
}

.primary-button:hover,
.secondary-button:hover,
.copy-button:hover {
  --lift: -2px;
  box-shadow:
    0 18px 36px rgba(72, 211, 111, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.38);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 160px));
  gap: 10px;
  width: min(100%, 540px);
  margin: 16px 0 0;
}

.hero-stats div {
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.44);
}

.hero-stats dt {
  margin: 0 0 3px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-stats dd {
  margin: 0;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 950;
}

.marquee-band {
  position: relative;
  overflow: hidden;
  border-block: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--gold);
  color: #0d0a03;
}

.marquee-track {
  display: flex;
  gap: 28px;
  width: max-content;
  padding: 14px 0;
  font-size: clamp(0.9rem, 1.5vw, 1.12rem);
  font-weight: 950;
  text-transform: uppercase;
  animation: marquee 32s linear infinite;
}

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

.marquee-track span::after {
  content: "/";
  margin-left: 28px;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

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

.section {
  padding: clamp(70px, 9vw, 120px) 20px;
}

.section-heading {
  width: min(100%, var(--max-width));
  margin: 0 auto 38px;
}

.section-heading.compact {
  width: min(760px, 100%);
  text-align: center;
}

.section-heading h2 {
  max-width: 930px;
  margin: 0;
  background: linear-gradient(180deg, #ffffff 0%, #eff6f1 48%, #a2aaa5 100%);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  font-size: clamp(2rem, 5vw, 5.2rem);
  line-height: 0.96;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-heading.compact h2 {
  margin-inline: auto;
}

.section-heading p:not(.eyebrow) {
  max-width: 710px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.mission-section {
  background:
    linear-gradient(180deg, #050505 0%, #0d100b 50%, #050505 100%);
}

.mission-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  width: min(100%, var(--max-width));
  margin: 0 auto;
}

.logo-stage {
  position: relative;
  margin: 0;
  padding: clamp(20px, 4vw, 42px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(72, 211, 111, 0.22), transparent 38%),
    linear-gradient(315deg, rgba(242, 75, 63, 0.16), transparent 46%),
    #090a08;
  box-shadow: var(--shadow);
  transform-style: preserve-3d;
}

.logo-stage::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(255, 255, 255, 0.22), transparent 30%),
    linear-gradient(115deg, transparent, rgba(255, 255, 255, 0.12), transparent);
  content: "";
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.logo-stage:hover::before {
  opacity: 1;
}

.logo-stage img {
  position: relative;
  z-index: 1;
  width: min(100%, 500px);
  margin: 0 auto;
  border-radius: 8px;
  transform: translateZ(24px);
}

.logo-stage figcaption {
  position: relative;
  z-index: 1;
  margin-top: 16px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 950;
  text-align: center;
  text-transform: uppercase;
}

.story-panel {
  display: grid;
  gap: 18px;
  color: rgba(247, 245, 237, 0.84);
  font-size: clamp(1.02rem, 1.5vw, 1.2rem);
}

.story-panel p {
  margin: 0;
  padding-left: 18px;
  border-left: 3px solid var(--cash);
}

.roster-section {
  background: #070707;
}

.roster-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  width: min(100%, var(--max-width));
  margin: 0 auto;
}

.roster-card,
.roadmap-step,
.launch-panel,
.token-board {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), transparent 34%),
    #0d0e0c;
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.18);
  transform-style: preserve-3d;
  will-change: transform;
}

.roster-card::before,
.roadmap-step::before,
.launch-panel::before,
.token-board::before {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(255, 255, 255, 0.18), transparent 31%);
  content: "";
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.roster-card::after,
.roadmap-step::after,
.launch-panel::after,
.token-board::after {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.68), transparent);
  content: "";
  opacity: 0.44;
  pointer-events: none;
}

.roster-card:hover::before,
.roadmap-step:hover::before,
.launch-panel:hover::before,
.token-board:hover::before {
  opacity: 1;
}

.roster-card > *,
.roadmap-step > *,
.launch-panel > *,
.token-board > * {
  position: relative;
  z-index: 1;
}

.roster-card {
  min-height: 280px;
  padding: 22px;
  --lift: 0px;
  transition:
    box-shadow 180ms ease,
    border-color 160ms ease,
    transform 160ms ease,
    background 160ms ease;
}

.roster-card:hover {
  border-color: rgba(72, 211, 111, 0.5);
  background: #11150f;
  --lift: -4px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

.card-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--cash), var(--gold));
  color: #031307;
  font-weight: 950;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.52),
    0 10px 24px rgba(72, 211, 111, 0.16);
}

.roster-card h3,
.roadmap-step h3,
.launch-panel h3 {
  margin: 48px 0 12px;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1;
  text-transform: uppercase;
}

.roster-card p,
.roadmap-step p,
.launch-panel li {
  margin: 0;
  color: var(--muted);
}

.banner-section {
  position: relative;
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: #000;
}

.banner-section::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, transparent 0%, rgba(255, 255, 255, 0.16) 45%, transparent 58%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.4), transparent 45%, rgba(0, 0, 0, 0.26));
  content: "";
  mix-blend-mode: screen;
  pointer-events: none;
  transform: translateX(-42%);
  animation: banner-sweep 11s ease-in-out infinite;
}

.banner-section img {
  width: 100%;
  max-height: 430px;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.12) contrast(1.04);
  transition: transform 600ms ease;
}

.banner-section:hover img {
  transform: scale(1.025);
}

.token-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(242, 75, 63, 0.1), transparent 22%),
    linear-gradient(270deg, rgba(72, 211, 111, 0.14), transparent 24%),
    #080907;
}

.token-section::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.035) 50%, transparent 100%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.024) 0 1px, transparent 1px 46px);
  content: "";
  pointer-events: none;
}

.token-section > * {
  position: relative;
  z-index: 1;
}

.token-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  gap: 18px;
  width: min(100%, 1040px);
  margin: 0 auto;
}

.token-board {
  overflow: hidden;
}

.token-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  min-height: 86px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--line);
  transition:
    background 160ms ease,
    color 160ms ease;
}

.token-row:last-child {
  border-bottom: 0;
}

.token-row:hover {
  background: rgba(72, 211, 111, 0.06);
}

.token-row span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.token-row strong {
  font-size: clamp(1.2rem, 3vw, 2.4rem);
  background: linear-gradient(180deg, #fff, #cfd8d3 70%, #87908a);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  line-height: 1;
  text-align: right;
  text-transform: uppercase;
}

.launch-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
}

.launch-panel h3 {
  margin-top: 0;
}

.launch-panel ol {
  display: grid;
  gap: 14px;
  margin: 0 0 24px;
  padding-left: 22px;
}

.copy-button {
  width: 100%;
  background: linear-gradient(135deg, var(--gold), #fff0a0 48%, var(--cash));
  color: #0d0a03;
}

.copy-button.is-copied {
  background: var(--cash);
  color: #031307;
}

.manifesto-section {
  position: relative;
  overflow: hidden;
  padding: clamp(74px, 10vw, 140px) 20px;
  background:
    linear-gradient(rgba(0, 0, 0, 0.48), rgba(0, 0, 0, 0.62)),
    url("assets/logo.png") center / min(640px, 88vw) no-repeat,
    #000;
  border-block: 1px solid var(--line);
}

.manifesto-section::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 20%, rgba(255, 255, 255, 0.12) 46%, transparent 64%),
    repeating-linear-gradient(90deg, transparent 0 70px, rgba(72, 211, 111, 0.06) 71px 72px);
  content: "";
  mix-blend-mode: screen;
  opacity: 0.55;
  pointer-events: none;
  transform: translateX(-36%);
  animation: manifesto-scan 10s ease-in-out infinite;
}

.manifesto-inner {
  position: relative;
  z-index: 1;
  width: min(100%, var(--max-width));
  margin: 0 auto;
  text-align: center;
}

.manifesto-inner p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.4rem);
  font-weight: 900;
  text-transform: uppercase;
}

.manifesto-inner strong {
  display: block;
  background: linear-gradient(180deg, #ffffff, #dfe8e1 46%, #8d9790 100%);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  font-size: clamp(2.8rem, 8vw, 8rem);
  line-height: 0.9;
  text-transform: uppercase;
  text-shadow: 0 14px 40px rgba(0, 0, 0, 0.8);
}

.roadmap-section {
  background: #070707;
}

.roadmap {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  width: min(100%, var(--max-width));
  margin: 0 auto;
}

.roadmap-step {
  min-height: 260px;
  padding: 22px;
  border-top: 4px solid var(--cash);
  --lift: 0px;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.roadmap-step:hover {
  --lift: -4px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

.roadmap-step:nth-child(2) {
  border-top-color: var(--gold);
}

.roadmap-step:nth-child(3) {
  border-top-color: var(--danger);
}

.roadmap-step:nth-child(4) {
  border-top-color: var(--chrome);
}

.roadmap-step span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.join-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  width: 100%;
  margin: 0 0 72px;
  padding:
    clamp(34px, 6vw, 70px)
    max(20px, calc((100vw - var(--max-width)) / 2 + 20px));
  border-block: 1px solid rgba(72, 211, 111, 0.36);
  background:
    linear-gradient(135deg, rgba(72, 211, 111, 0.22), transparent 44%),
    linear-gradient(315deg, rgba(242, 201, 76, 0.14), transparent 46%),
    #0c0f0a;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
}

.join-section::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, transparent 16%, rgba(255, 255, 255, 0.11) 46%, transparent 68%);
  content: "";
  pointer-events: none;
  transform: translateX(-42%);
  animation: join-sweep 8s ease-in-out infinite;
}

.join-section > * {
  position: relative;
  z-index: 1;
}

.join-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 4.4rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.join-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.join-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: var(--ink);
  font-weight: 950;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  --magnetic-x: 0px;
  --magnetic-y: 0px;
  transform: translate3d(var(--magnetic-x), var(--magnetic-y), 0);
  transition:
    background 160ms ease,
    border-color 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.join-actions a:hover {
  background: var(--cash);
  border-color: rgba(72, 211, 111, 0.68);
  color: #031307;
}

.social-button svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  flex: 0 0 auto;
  filter: drop-shadow(0 0 10px rgba(72, 211, 111, 0.18));
}

.site-footer {
  display: flex;
  gap: 24px;
  justify-content: space-between;
  width: min(calc(100% - 40px), var(--max-width));
  margin: 0 auto;
  padding: 26px 0 38px;
  border-top: 1px solid var(--line);
  color: rgba(247, 245, 237, 0.58);
  font-size: 0.82rem;
}

.site-footer p {
  max-width: 860px;
  margin: 0;
}

.site-footer span {
  white-space: nowrap;
}

[data-reveal] {
  opacity: 0;
  filter: blur(10px);
  transform: translateY(28px) scale(0.985);
  transition:
    filter 720ms ease,
    opacity 600ms ease,
    transform 720ms cubic-bezier(0.2, 0.85, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

[data-reveal].is-visible {
  filter: blur(0);
  opacity: 1;
  transform: translateY(0) scale(1);
}

[data-reveal][data-tilt] {
  transform: perspective(950px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) translateY(calc(var(--lift, 0px) + 28px)) scale(0.985);
}

[data-reveal][data-tilt].is-visible {
  transform: perspective(950px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) translateY(var(--lift, 0px)) scale(1);
}

.is-pressed {
  animation: press-pop 360ms ease;
}

@keyframes header-sheen {
  0%,
  42% {
    transform: translateX(-130%);
  }

  62%,
  100% {
    transform: translateX(130%);
  }
}

@keyframes hero-glare {
  0%,
  36% {
    transform: translateX(-38%);
    opacity: 0.42;
  }

  58% {
    opacity: 0.68;
  }

  80%,
  100% {
    transform: translateX(38%);
    opacity: 0.42;
  }
}

@keyframes banner-sweep {
  0%,
  42% {
    transform: translateX(-46%);
  }

  72%,
  100% {
    transform: translateX(46%);
  }
}

@keyframes manifesto-scan {
  0%,
  34% {
    transform: translateX(-40%);
  }

  68%,
  100% {
    transform: translateX(40%);
  }
}

@keyframes join-sweep {
  0%,
  42% {
    transform: translateX(-48%);
  }

  72%,
  100% {
    transform: translateX(48%);
  }
}

@keyframes press-pop {
  0% {
    scale: 1;
  }

  45% {
    scale: 0.97;
  }

  100% {
    scale: 1;
  }
}

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

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

  .hero-image,
  [data-tilt],
  [data-magnetic] {
    transform: none !important;
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .site-nav {
    position: fixed;
    top: 84px;
    left: 50%;
    right: auto;
    width: min(calc(100vw - 32px), 360px);
    display: grid;
    gap: 0;
    padding: 16px;
    border: 1px solid rgba(72, 211, 111, 0.3);
    border-radius: 8px;
    background: rgba(5, 5, 5, 0.96);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -12px);
    transition:
      opacity 160ms ease,
      transform 160ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0);
  }

  .site-nav a {
    padding: 16px;
    border-bottom: 1px solid var(--line);
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .header-actions {
    display: none;
  }

  .mission-layout,
  .token-layout,
  .join-section {
    grid-template-columns: 1fr;
  }

  .roster-grid,
  .roadmap {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .join-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 680px) {
  .site-header {
    width: min(calc(100% - 20px), 1220px);
    margin-top: 10px;
    padding: 8px;
  }

  .brand span {
    max-width: 48vw;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .hero {
    min-height: auto;
    padding: 100px 16px 20px;
  }

  .hero-image {
    object-position: 62% top;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(5, 5, 5, 0.56), rgba(5, 5, 5, 0.5) 28%, rgba(5, 5, 5, 0.96) 78%),
      linear-gradient(90deg, rgba(5, 5, 5, 0.78), rgba(5, 5, 5, 0.2));
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
    margin-top: 24px;
  }

  .primary-button,
  .secondary-button,
  .copy-button {
    width: 100%;
    min-height: 48px;
    padding-inline: 10px;
    font-size: 0.78rem;
  }

  .hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    margin-top: 18px;
  }

  .hero-stats div {
    padding: 10px 8px;
  }

  .hero-stats dt {
    font-size: 0.58rem;
  }

  .hero-stats dd {
    font-size: 0.78rem;
  }

  .roster-grid,
  .roadmap {
    grid-template-columns: 1fr;
  }

  .roster-card,
  .roadmap-step {
    min-height: auto;
  }

  .token-row {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .token-row strong {
    text-align: left;
  }

  .join-section {
    width: 100%;
    margin-bottom: 48px;
    padding-inline: 14px;
  }

  .join-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .site-footer {
    display: grid;
    width: min(calc(100% - 28px), var(--max-width));
  }
}
