:root {
  --void: #050309;
  --void-2: #0B0714;
  --ion: #00E5FF;
  --pulse: #FF1B8D;
  --frost: #EAF6FF;
  --steel: #9AA3B8;
  --line: rgba(234, 246, 255, .09);
  --ion-dim: rgba(0, 229, 255, .12);
  --pulse-dim: rgba(255, 27, 141, .12);
  --display: 'Unbounded', sans-serif;
  --body: 'Space Grotesk', sans-serif;
  --mono: 'Space Mono', monospace;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  cursor: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--void);
  color: var(--frost);
  font-family: var(--body);
  overflow-x: hidden;
  line-height: 1.6;
  cursor: none;
}

::selection {
  background: var(--pulse);
  color: var(--void);
}

#loader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: var(--void);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 28px;
  transition: opacity .6s ease, visibility .6s
}

#loader.done {
  opacity: 0;
  visibility: hidden;
}

.loader-logo {
  width: 84px;
  height: 84px;
  border-radius: 18px;
  animation: loaderPulse 1.2s ease-in-out infinite;
}

@keyframes loaderPulse {

  0%,
  100% {
    transform: scale(1);
    filter: drop-shadow(0 0 12px var(--ion));
  }

  50% {
    transform: scale(1.06);
    filter: drop-shadow(0 0 28px var(--pulse));
  }
}

.loader-bar {
  width: 220px;
  height: 3px;
  background: var(--line);
  border-radius: 99px;
  overflow: hidden
}

.loader-bar i {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--ion), var(--pulse));
  animation: loadFill 1.4s ease forwards;
}

@keyframes loadFill {
  to {
    width: 100%;
  }
}

.loader-text {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .35em;
  color: var(--steel);
  text-transform: uppercase;
}

.slash {
  position: fixed;
  top: -20%;
  height: 140%;
  width: 8px;
  z-index: 1001;
  pointer-events: none;
  opacity: 0;
}

#slash-a {
  background: var(--ion);
  box-shadow: 0 0 40px 8px var(--ion);
  left: -10%;
  transform: rotate(18deg)
}

#slash-b {
  background: var(--pulse);
  box-shadow: 0 0 40px 8px var(--pulse);
  right: -10%;
  transform: rotate(-18deg);
}

body.slashing #slash-a {
  animation: slashL .55s cubic-bezier(.7, 0, .2, 1) forwards;
}

body.slashing #slash-b {
  animation: slashR .55s cubic-bezier(.7, 0, .2, 1) .12s forwards;
}

@keyframes slashL {
  0% {
    left: -10%;
    opacity: 1;
  }

  100% {
    left: 115%;
    opacity: 0;
  }
}

@keyframes slashR {
  0% {
    right: -10%;
    opacity: 1
  }

  100% {
    right: 115%;
    opacity: 0;
  }
}

#scene {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  will-change: transform;
}

#energy {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  z-index: 60;
  background: rgba(234, 246, 255, .05);
}

#energy i {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background: linear-gradient(180deg, var(--ion), var(--pulse));
  box-shadow: 0 0 14px var(--ion)
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(20px, 5vw, 56px);
  transition: background .4s, backdrop-filter .4s, border-color .4s;
  border-bottom: 1px solid transparent;
}

nav.scrolled {
  background: rgba(5, 3, 9, .72);
  backdrop-filter: blur(14px);
  border-color: var(--line);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--frost);
}

.nav-brand img {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  box-shadow: 0 0 14px rgba(0, 229, 255, .4);
}

.nav-brand span {
  font-family: var(--display);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: .08em;
}

.nav-links {
  display: flex;
  gap: 30px;
  align-items: center
}

.nav-links a {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--steel);
  text-decoration: none;
  position: relative;
  transition: color .25s;
}

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

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--ion), var(--pulse));
  transition: width .3s
}

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

.nav-cta {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--void) !important;
  background: var(--ion);
  padding: 10px 18px;
  border-radius: 6px;
  font-weight: 700;
  box-shadow: 0 0 18px rgba(0, 229, 255, .45);
  transition: transform .2s, box-shadow .2s
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 28px rgba(0, 229, 255, .7);
  color: var(--void) !important;
}

.nav-cta::after {
  display: none;
}

@media(max-width:760px) {
  .nav-links a:not(.nav-cta) {
    display: none
  }
}

section {
  position: relative;
  z-index: 2;
}

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 48px)
}

.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: var(--ion);
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.eyebrow::before {
  content: '';
  width: 36px;
  height: 2px;
  background: var(--ion);
  box-shadow: 0 0 8px var(--ion)
}

.eyebrow.mag {
  color: var(--pulse)
}

.eyebrow.mag::before {
  background: var(--pulse);
  box-shadow: 0 0 8px var(--pulse);
}

h2 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(30px, 5vw, 54px);
  line-height: 1.08;
  letter-spacing: -.01em;
  margin-bottom: 24px;
}

.lead {
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--steel);
  max-width: 640px;
}

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .8s cubic-bezier(.2, .6, .2, 1), transform .8s cubic-bezier(.2, .6, .2, 1);
}

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

.reveal.d1 {
  transition-delay: .12s;
}

.reveal.d2 {
  transition-delay: .24s;
}

.reveal.d3 {
  transition-delay: .36s;
}

#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 20px 80px;
  position: relative;
}

.hero-inner {
  position: relative;
  z-index: 3;
  max-width: 1000px;
}

.hero-tag {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .5em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 26px;
  animation: fadeUp 1s .3s both;
}

.hero-tag b {
  color: var(--ion);
}

h1 {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(40px, 8.5vw, 108px);
  line-height: .98;
  letter-spacing: -.015em;
  text-transform: uppercase;
}

h1 .l1 {
  display: block;
  color: var(--frost);
  text-shadow: 0 0 36px rgba(234, 246, 255, .35);
  animation: fadeUp 1s .45s both
}

h1 .l2 {
  display: block;
  color: var(--ion);
  text-shadow: 0 0 16px rgba(0, 229, 255, .85), 0 0 60px rgba(0, 229, 255, .45);
  animation: fadeUp 1s .6s both;
}

h1 .l3 {
  display: block;
  color: var(--pulse);
  text-shadow: 0 0 16px rgba(255, 27, 141, .85), 0 0 60px rgba(255, 27, 141, .45);
  animation: fadeUp 1s .75s both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(34px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.hero-sub {
  margin: 30px auto 0;
  max-width: 560px;
  color: var(--steel);
  font-size: clamp(15px, 1.5vw, 18px);
  animation: fadeUp 1s .9s both
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 40px;
  flex-wrap: wrap;
  animation: fadeUp 1s 1.05s both;
}

.btn {
  font-family: var(--display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 17px 32px;
  border-radius: 10px;
  position: relative;
  transition: transform .22s, box-shadow .22s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  border: none;
}

.btn-ion {
  background: var(--ion);
  color: #021016;
  box-shadow: 0 0 26px rgba(0, 229, 255, .5)
}

.btn-ion:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 0 44px rgba(0, 229, 255, .85);
}

.btn-pulse {
  background: var(--pulse);
  color: #16020c;
  box-shadow: 0 0 26px rgba(255, 27, 141, .5)
}

.btn-pulse:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 0 44px rgba(255, 27, 141, .85);
}

.btn-ghost {
  background: transparent;
  color: var(--frost);
  border: 1px solid var(--line);
  box-shadow: none
}

.btn-ghost:hover {
  border-color: var(--ion);
  color: var(--ion);
  transform: translateY(-3px);
}

.hero-stats {
  display: flex;
  gap: clamp(24px, 5vw, 64px);
  justify-content: center;
  margin-top: 64px;
  flex-wrap: wrap;
  animation: fadeUp 1s 1.2s both;
}

.stat {
  text-align: center;
}

.stat b {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(22px, 3vw, 34px);
  display: block;
}

.stat:nth-child(1) b {
  color: var(--ion);
}

.stat:nth-child(2) b {
  color: var(--frost);
}

.stat:nth-child(3) b {
  color: var(--pulse);
}

.stat span {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--steel);
}

.scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: var(--steel);
  animation: fadeUp 1s 1.5s both;
}

.scroll-hint::after {
  content: '';
  display: block;
  width: 2px;
  height: 34px;
  margin: 10px auto 0;
  background: linear-gradient(180deg, var(--ion), transparent);
  animation: drip 1.6s ease-in-out infinite
}

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

  50% {
    transform: scaleY(1);
    transform-origin: top
  }

  51% {
    transform-origin: bottom;
  }

  100% {
    transform: scaleY(0);
    transform-origin: bottom
  }
}

.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  padding: 20px 0;
  background: rgba(5, 3, 9, .55);
  backdrop-filter: blur(6px);
  transform: skewY(-2deg);
  margin: 40px 0;
}

.marquee-track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: scrollX 26s linear infinite;
}

.marquee span {
  font-family: var(--display);
  font-weight: 800;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: .1em;
  white-space: nowrap;
  color: transparent;
  -webkit-text-stroke: 1px rgba(234, 246, 255, .35);
}

.marquee span.solid {
  color: var(--ion);
  -webkit-text-stroke: 0;
  text-shadow: 0 0 14px rgba(0, 229, 255, .6);
}

.marquee span.solid-m {
  color: var(--pulse);
  -webkit-text-stroke: 0;
  text-shadow: 0 0 14px rgba(255, 27, 141, .6);
}

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

#about {
  padding: 140px 0 120px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 60px;
  align-items: center
}

@media(max-width:880px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
}

.about-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 36px;
  background: linear-gradient(145deg, rgba(11, 7, 20, .92), rgba(5, 3, 9, .85));
  backdrop-filter: blur(6px);
  overflow: hidden;
}

.about-card::before {
  content: '';
  position: absolute;
  top: -60%;
  right: -30%;
  width: 70%;
  height: 160%;
  background: linear-gradient(200deg, var(--ion-dim), transparent 60%);
  transform: rotate(18deg);
}

.about-card::after {
  content: '';
  position: absolute;
  bottom: -60%;
  left: -30%;
  width: 70%;
  height: 160%;
  background: linear-gradient(20deg, var(--pulse-dim), transparent 60%);
  transform: rotate(18deg);
}

.about-card img {
  width: 120px;
  height: 120px;
  border-radius: 24px;
  display: block;
  margin-bottom: 24px;
  box-shadow: 0 0 30px rgba(0, 229, 255, .35), 0 0 60px rgba(255, 27, 141, .2);
  position: relative;
  z-index: 1
}

.about-card h3 {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 8px;
  position: relative;
  z-index: 1
}

.about-card p {
  color: var(--steel);
  font-size: 15px;
  position: relative;
  z-index: 1
}

.about-points {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 34px;
}

.point {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(11, 7, 20, .7);
  backdrop-filter: blur(4px);
  transition: border-color .3s, transform .3s;
}

.point:hover {
  border-color: var(--ion);
  transform: translateX(6px);
}

.point:nth-child(2):hover {
  border-color: var(--pulse);
}

.point-ic {
  width: 42px;
  height: 42px;
  flex: none;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-weight: 800;
  font-size: 16px;
}

.point:nth-child(1) .point-ic {
  background: var(--ion-dim);
  color: var(--ion);
  box-shadow: inset 0 0 14px rgba(0, 229, 255, .25);
}

.point:nth-child(2) .point-ic {
  background: var(--pulse-dim);
  color: var(--pulse);
  box-shadow: inset 0 0 14px rgba(255, 27, 141, .25)
}

.point:nth-child(3) .point-ic {
  background: rgba(234, 246, 255, .07);
  color: var(--frost);
  box-shadow: inset 0 0 14px rgba(234, 246, 255, .15)
}

.point b {
  font-family: var(--body);
  font-weight: 600;
  display: block;
  margin-bottom: 2px;
}

.point p {
  color: var(--steel);
  font-size: 14px;
  line-height: 1.5
}

#divisions {
  padding: 120px 0 140px;
  position: relative;
}

#divisions::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--ion), var(--pulse), transparent);
}

.div-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 54px;
  perspective: 1400px;
}

@media(max-width:880px) {
  .div-grid {
    grid-template-columns: 1fr
  }
}

.div-card {
  position: relative;
  border-radius: 20px;
  padding: 38px 30px;
  border: 1px solid var(--line);
  background: linear-gradient(165deg, rgba(11, 7, 20, .95), rgba(5, 3, 9, .9));
  backdrop-filter: blur(4px);
  transform-style: preserve-3d;
  transition: transform .5s cubic-bezier(.2, .6, .2, 1), border-color .4s, box-shadow .4s;
  overflow: hidden;
  cursor: default;
}

.div-card .glare {
  position: absolute;
  inset: 0;
  background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 50%), rgba(234, 246, 255, .08), transparent 45%);
  opacity: 0;
  transition: opacity .3s;
  pointer-events: none;
}

.div-card:hover .glare {
  opacity: 1
}

.div-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .35em;
  color: var(--steel);
  margin-bottom: 24px;
  text-transform: uppercase;
}

.div-sigil {
  width: 74px;
  height: 74px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: 26px;
  transform: rotate(45deg);
  transition: transform .5s;
}

.div-card:hover .div-sigil {
  transform: rotate(225deg)
}

.div-sigil i {
  transform: rotate(-45deg);
  transition: transform .5s;
  font-style: normal;
  font-family: var(--display);
  font-weight: 900;
  font-size: 26px
}

.div-card:hover .div-sigil i {
  transform: rotate(-225deg)
}

.div-card h3 {
  font-family: var(--display);
  font-weight: 800;
  font-size: 26px;
  letter-spacing: .04em;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.div-role {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  margin-bottom: 18px;
  display: block
}

.div-card p {
  color: var(--steel);
  font-size: 14.5px;
  line-height: 1.65;
}

.div-card.ion {
  --c: var(--ion);
  --cd: var(--ion-dim)
}

.div-card.mag {
  --c: var(--pulse);
  --cd: var(--pulse-dim);
}

.div-card.vd {
  --c: var(--frost);
  --cd: rgba(234, 246, 255, .08);
}

.div-card .div-sigil {
  background: var(--cd);
  box-shadow: inset 0 0 22px var(--cd), 0 0 24px var(--cd);
}

.div-card .div-sigil i {
  color: var(--c);
  text-shadow: 0 0 14px var(--c);
}

.div-card h3 {
  color: var(--c);
  text-shadow: 0 0 18px var(--cd);
}

.div-card .div-role {
  color: var(--c);
  opacity: .8;
}

.div-card:hover {
  border-color: var(--c);
  box-shadow: 0 0 40px var(--cd), inset 0 0 40px var(--cd)
}

.div-card.chosen {
  border-color: var(--c);
  box-shadow: 0 0 60px var(--cd), inset 0 0 50px var(--cd);
  animation: chosenPop .6s cubic-bezier(.3, 1.6, .4, 1);
}

@keyframes chosenPop {
  0% {
    transform: scale(.96);
  }

  60% {
    transform: scale(1.04);
  }

  100% {
    transform: scale(1)
  }
}

.fate {
  margin-top: 64px;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 50px 30px;
  background: rgba(11, 7, 20, .85);
  backdrop-filter: blur(6px);
  position: relative;
  overflow: hidden;
}

.fate::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 30%, var(--ion-dim) 45%, var(--pulse-dim) 55%, transparent 70%);
  transform: translateX(-100%);
  animation: sheen 5s ease-in-out infinite;
}

@keyframes sheen {

  0%,
  60% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%)
  }
}

.fate h3 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(20px, 2.6vw, 28px);
  margin-bottom: 10px;
}

.fate p {
  color: var(--steel);
  max-width: 520px;
  margin: 0 auto 28px;
  font-size: 15px;
}

.fate-display {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(34px, 5vw, 56px);
  text-transform: uppercase;
  letter-spacing: .05em;
  min-height: 1.3em;
  margin-bottom: 28px;
  transition: color .15s, text-shadow .15s;
}

.fate-display.idle {
  color: rgba(234, 246, 255, .18);
  -webkit-text-stroke: 1px rgba(234, 246, 255, .3);
}

#democracy {
  padding: 130px 0;
  position: relative;
}

#democracy::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--pulse), var(--ion), transparent)
}

.demo-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 60px;
  align-items: start;
  margin-top: 10px
}

@media(max-width:880px) {
  .demo-grid {
    grid-template-columns: 1fr;
  }
}

.ballot {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(11, 7, 20, .92);
  backdrop-filter: blur(6px);
  overflow: hidden
}

.ballot-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--steel);
}

.ballot-head .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.ballot-head .dot.r {
  background: var(--pulse);
  box-shadow: 0 0 8px var(--pulse);
}

.ballot-head .dot.c {
  background: var(--ion);
  box-shadow: 0 0 8px var(--ion);
}

.ballot-body {
  padding: 26px 24px;
}

.ballot-q {
  font-family: var(--body);
  font-weight: 600;
  font-size: 17px;
  margin-bottom: 18px;
}

.ballot-opt {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  margin-bottom: 12px;
  cursor: pointer;
  transition: border-color .25s, background .25s;
  user-select: none;
}

.ballot-opt:hover {
  border-color: var(--ion)
}

.ballot-opt.voted {
  border-color: var(--ion);
  background: var(--ion-dim);
}

.ballot-opt span {
  font-size: 14.5px
}

.ballot-bar {
  flex: 1;
  max-width: 46%;
  height: 7px;
  background: rgba(234, 246, 255, .07);
  border-radius: 99px;
  overflow: hidden;
}

.ballot-bar i {
  display: block;
  height: 100%;
  width: 0;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--ion), var(--pulse));
  transition: width 1s cubic-bezier(.2, .8, .2, 1);
}

.ballot-pct {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--steel);
  min-width: 42px;
  text-align: right
}

.ballot-foot {
  padding: 14px 20px;
  border-top: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 11px;
  color: var(--steel);
  letter-spacing: .15em
}

.ballot-foot b {
  color: var(--ion);
}

.law-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 34px;
  position: relative;
}

.law-step {
  display: flex;
  gap: 22px;
  position: relative;
  padding-bottom: 34px;
}

.law-step:last-child {
  padding-bottom: 0;
}

.law-step::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 52px;
  bottom: 6px;
  width: 2px;
  background: linear-gradient(180deg, var(--ion), var(--pulse));
  opacity: .35
}

.law-step:last-child::before {
  display: none
}

.law-ic {
  width: 50px;
  height: 50px;
  flex: none;
  border-radius: 13px;
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-weight: 800;
  font-size: 17px;
  border: 1px solid var(--line);
  background: rgba(11, 7, 20, .8);
  transition: box-shadow .3s, border-color .3s;
}

.law-step:nth-child(odd) .law-ic {
  color: var(--ion);
}

.law-step:nth-child(even) .law-ic {
  color: var(--pulse);
}

.law-step:hover .law-ic {
  border-color: currentColor;
  box-shadow: 0 0 22px currentColor;
}

.law-step b {
  font-family: var(--display);
  font-weight: 700;
  font-size: 16px;
  display: block;
  margin-bottom: 4px;
  letter-spacing: .03em;
}

.law-step p {
  color: var(--steel);
  font-size: 14.5px;
  max-width: 420px
}

#join {
  padding: 130px 0 150px;
  text-align: center;
  position: relative;
}

#join::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--ion), var(--pulse), transparent);
}

.join-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin: 60px 0 56px;
}

@media(max-width:880px) {
  .join-steps {
    grid-template-columns: 1fr
  }
}

.jstep {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 34px 26px;
  background: rgba(11, 7, 20, .85);
  backdrop-filter: blur(4px);
  position: relative;
  transition: transform .35s, border-color .35s, box-shadow .35s;
}

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

.jstep:nth-child(1):hover {
  border-color: var(--ion);
  box-shadow: 0 18px 50px -18px rgba(0, 229, 255, .45)
}

.jstep:nth-child(2):hover {
  border-color: var(--frost);
  box-shadow: 0 18px 50px -18px rgba(234, 246, 255, .3)
}

.jstep:nth-child(3):hover {
  border-color: var(--pulse);
  box-shadow: 0 18px 50px -18px rgba(255, 27, 141, .45)
}

.jstep .k {
  font-family: var(--display);
  font-weight: 900;
  font-size: 46px;
  line-height: 1;
  display: block;
  margin-bottom: 16px;
}

.jstep:nth-child(1) .k {
  color: var(--ion);
  text-shadow: 0 0 22px rgba(0, 229, 255, .6);
}

.jstep:nth-child(2) .k {
  color: var(--frost);
  text-shadow: 0 0 22px rgba(234, 246, 255, .4);
}

.jstep:nth-child(3) .k {
  color: var(--pulse);
  text-shadow: 0 0 22px rgba(255, 27, 141, .6);
}

.jstep b {
  font-family: var(--display);
  font-weight: 700;
  font-size: 17px;
  display: block;
  margin-bottom: 8px;
}

.jstep p {
  color: var(--steel);
  font-size: 14.5px;
}

.join-ctas {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap
}

footer {
  border-top: 1px solid var(--line);
  padding: 44px 0;
  position: relative;
  z-index: 2;
  background: rgba(5, 3, 9, .92);
  backdrop-filter: blur(6px)
}

.foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

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

.foot-brand img {
  width: 34px;
  height: 34px;
  border-radius: 8px;
}

.foot-brand span {
  font-family: var(--display);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .1em;
}

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

.foot-links a {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--steel);
  text-decoration: none;
  transition: color .25s;
}

.foot-links a:hover {
  color: var(--ion)
}

.foot-note {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--steel);
  opacity: .7;
}

#cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 34px;
  height: 34px;
  border: 1.5px solid var(--ion);
  border-radius: 50%;
  pointer-events: none;
  z-index: 999;
  will-change: transform;
  transition: width .2s, height .2s, border-color .2s, opacity .3s;
  mix-blend-mode: screen;
  opacity: 0
}

#cursor.on {
  opacity: 1
}

#cursor::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--pulse);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 8px var(--pulse);
}

#cursor.hot {
  width: 54px;
  height: 54px;
  border-color: var(--pulse)
}

@media(hover:none), (pointer:coarse) {
  #cursor {
    display: none
  }
}

@media(prefers-reduced-motion:reduce) {

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}
