:root {
  --ink: #050714;
  --ink-soft: #090d1d;
  --ink-elevated: #0c1227;
  --paper: #f4f7ff;
  --paper-dim: #dfe7f5;
  --steel: #94a3ba;
  --line: rgba(165, 190, 255, 0.2);
  --line-light: rgba(255, 255, 255, 0.12);
  --blue: #245bff;
  --blue-bright: #3a74ff;
  --cyan: #53ddff;
  --violet: #7b3cff;
  --pink: #ff3dad;
  --green: #64f7bd;
  --display: "Unbounded", system-ui, sans-serif;
  --body: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --serif: "Cormorant Garamond", Georgia, serif;
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
  --shell: min(1280px, calc(100vw - 48px));
  --header-height: 76px;
}

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

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

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--paper);
  background:
    radial-gradient(circle at 8% 24%, rgba(36, 91, 255, 0.08), transparent 30rem),
    var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  color: var(--ink);
  background: var(--cyan);
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--paper);
  border-radius: 8px;
  transform: translateY(-160%);
  transition: transform 180ms var(--ease-out);
}

.skip-link:focus {
  transform: translateY(0);
}

.page-grain {
  position: fixed;
  z-index: 50;
  inset: 0;
  pointer-events: none;
  opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.scroll-progress {
  position: fixed;
  z-index: 200;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--blue), var(--cyan), var(--pink));
  box-shadow: 0 0 12px var(--cyan);
  transform: scaleX(0);
  transform-origin: left center;
}

.cursor-glow {
  position: fixed;
  z-index: 45;
  top: 0;
  left: 0;
  width: 320px;
  height: 320px;
  pointer-events: none;
  opacity: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(55, 123, 255, 0.11), transparent 68%);
  transform: translate3d(-50%, -50%, 0);
  transition: opacity 220ms ease;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 14px;
  left: 50%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(1380px, calc(100vw - 28px));
  min-height: var(--header-height);
  padding: 10px 12px 10px 18px;
  border: 1px solid transparent;
  border-radius: 18px;
  transform: translateX(-50%);
  transition:
    min-height 220ms var(--ease-out),
    background-color 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    backdrop-filter 220ms ease;
}

.site-header.is-scrolled {
  min-height: 66px;
  border-color: rgba(151, 177, 255, 0.16);
  background: rgba(5, 7, 20, 0.72);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(18px) saturate(140%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  width: max-content;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(127, 176, 255, 0.34);
  border-radius: 50%;
  color: var(--cyan);
  background: rgba(31, 61, 150, 0.15);
  box-shadow: inset 0 0 20px rgba(59, 117, 255, 0.1);
}

.brand-mark svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.8;
}

.brand-copy {
  display: grid;
  gap: 1px;
}

.brand-copy strong {
  font-family: var(--display);
  font-size: 17px;
  line-height: 1;
  letter-spacing: 0.12em;
}

.brand-copy small {
  color: #aab8d2;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.2em;
}

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

.site-nav a {
  position: relative;
  padding-block: 8px;
  color: rgba(244, 247, 255, 0.72);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 160ms ease;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--cyan);
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 220ms var(--ease-out);
}

.header-cta {
  justify-self: end;
}

.menu-toggle {
  display: none;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 54px;
  padding: 0 22px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 12px;
  cursor: pointer;
  font-family: var(--body);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  transition:
    transform 150ms var(--ease-out),
    border-color 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.button::before {
  position: absolute;
  top: -100%;
  left: -48%;
  width: 36%;
  height: 300%;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.42), transparent);
  transform: rotate(20deg);
  transition: left 520ms var(--ease-out);
}

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

.button:focus-visible,
.text-link:focus-visible,
.site-nav a:focus-visible,
.fandom-card:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 4px;
}

.button:active {
  transform: scale(0.97);
}

.button-small {
  min-height: 46px;
  padding-inline: 17px;
  border-radius: 11px;
}

.button-telegram {
  color: var(--paper);
  border-color: rgba(106, 160, 255, 0.32);
  background: rgba(31, 74, 200, 0.2);
}

.button-telegram svg {
  width: 18px;
  fill: currentColor;
}

.button-primary {
  color: white;
  border-color: rgba(102, 208, 255, 0.4);
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.12), transparent 40%),
    linear-gradient(135deg, #1748f5, #6843ff 70%, #963dff);
  box-shadow:
    0 12px 38px rgba(31, 79, 255, 0.34),
    inset 0 1px rgba(255, 255, 255, 0.18);
}

.button-ghost {
  color: var(--paper);
  border-color: rgba(202, 220, 255, 0.22);
  background: rgba(8, 13, 32, 0.38);
  backdrop-filter: blur(10px);
}

.button-outline {
  color: var(--paper);
  border-color: rgba(202, 220, 255, 0.28);
  background: rgba(255, 255, 255, 0.025);
}

.button-light {
  color: var(--ink);
  background: var(--paper);
}

.button-dark-ghost {
  color: var(--paper);
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.04);
}

.button-glass {
  color: var(--paper);
  border-color: rgba(186, 217, 255, 0.25);
  background: rgba(9, 15, 42, 0.4);
  backdrop-filter: blur(12px);
}

.button-xl {
  min-height: 64px;
  padding-inline: 30px;
  border-radius: 14px;
}

.button-arrow {
  font-size: 17px;
  font-weight: 500;
}

.hero {
  position: relative;
  display: grid;
  min-height: max(780px, 100svh);
  overflow: hidden;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  z-index: -4;
  inset: 0;
  overflow: hidden;
  background: var(--ink);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04) translate3d(var(--hero-x, 0), var(--hero-y, 0), 0);
  transition: transform 1.2s var(--ease-out);
}

.hero-media-wash {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 5, 15, 0.98) 0%, rgba(4, 6, 19, 0.88) 34%, rgba(4, 6, 19, 0.16) 69%, rgba(4, 6, 19, 0.36) 100%),
    linear-gradient(180deg, rgba(3, 5, 14, 0.38), transparent 20%, transparent 70%, var(--ink) 100%);
}

.hero-grid,
.impact-grid,
.final-cta-grid {
  position: absolute;
  z-index: -2;
  inset: 0;
  pointer-events: none;
  opacity: 0.17;
  background-image:
    linear-gradient(rgba(143, 173, 255, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(143, 173, 255, 0.18) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, black, transparent 68%);
}

.hero-orbit {
  position: absolute;
  z-index: -1;
  top: 50%;
  right: -8vw;
  width: min(65vw, 960px);
  aspect-ratio: 1;
  pointer-events: none;
  border: 1px solid rgba(133, 196, 255, 0.2);
  border-radius: 50%;
  box-shadow:
    inset 0 0 100px rgba(59, 92, 255, 0.07),
    0 0 80px rgba(32, 91, 255, 0.05);
  transform: translateY(-50%);
}

.hero-orbit::before,
.hero-orbit::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(132, 158, 255, 0.14);
  border-radius: inherit;
}

.hero-orbit::before {
  inset: 12%;
}

.hero-orbit::after {
  inset: 27%;
}

.orbit-two {
  right: 3vw;
  width: min(42vw, 620px);
  border-style: dashed;
  opacity: 0.52;
  transform: translateY(-50%) rotate(14deg);
}

.hero-content {
  display: grid;
  grid-template-columns: minmax(0, 760px) 1fr;
  align-items: center;
  gap: 80px;
  min-height: 100%;
  padding-top: calc(var(--header-height) + 100px);
  padding-bottom: 130px;
}

.hero-copy {
  position: relative;
  z-index: 3;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 34px;
  margin-bottom: 28px;
  padding: 0 12px;
  color: #ddf9ff;
  border: 1px solid rgba(103, 231, 255, 0.23);
  border-radius: 999px;
  background: rgba(19, 56, 94, 0.32);
  backdrop-filter: blur(10px);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.status-pill small {
  margin-left: 5px;
  color: #8fa5c6;
  font-size: 9px;
  letter-spacing: 0.04em;
}

.live-dot {
  position: relative;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 12px rgba(100, 247, 189, 0.8);
}

.live-dot::after {
  position: absolute;
  inset: -4px;
  content: "";
  border: 1px solid rgba(100, 247, 189, 0.55);
  border-radius: inherit;
  animation: live-ring 2s linear infinite;
}

@keyframes live-ring {
  0% {
    opacity: 0.8;
    transform: scale(0.6);
  }
  70%,
  100% {
    opacity: 0;
    transform: scale(1.5);
  }
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--cyan);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 820px;
  margin-bottom: 28px;
  font-family: var(--display);
  font-size: clamp(48px, 5.4vw, 84px);
  font-weight: 700;
  letter-spacing: -0.065em;
  line-height: 0.94;
  text-transform: uppercase;
}

.hero h1 span,
.hero h1 em {
  display: block;
}

.hero h1 em {
  position: relative;
  width: max-content;
  max-width: 100%;
  padding-right: 0.08em;
  color: transparent;
  background: linear-gradient(100deg, #fcfdff 0%, #86e8ff 42%, #7b67ff 76%, #ff70c5);
  -webkit-background-clip: text;
  background-clip: text;
  font-style: normal;
  text-shadow: 0 0 44px rgba(66, 171, 255, 0.15);
}

@media (min-width: 721px) {
  .hero h1 em {
    white-space: nowrap;
  }
}

.hero h1 em::after {
  position: absolute;
  right: -0.18em;
  bottom: 0.08em;
  width: 0.12em;
  height: 0.12em;
  content: "";
  background: var(--cyan);
  box-shadow: 0 0 20px var(--cyan);
  transform: rotate(45deg);
}

.hero-lead {
  max-width: 640px;
  margin-bottom: 36px;
  color: #c4d0e3;
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.75;
}

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

.hero-stamp {
  position: relative;
  align-self: end;
  justify-self: end;
  width: 235px;
  margin-bottom: 72px;
  padding: 16px;
  border: 1px solid rgba(174, 208, 255, 0.22);
  background: rgba(7, 13, 37, 0.3);
  backdrop-filter: blur(8px);
  clip-path: polygon(0 0, 92% 0, 100% 12%, 100% 100%, 8% 100%, 0 88%);
}

.hero-stamp::after {
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 7px;
  height: 7px;
  content: "";
  background: var(--cyan);
  box-shadow: 0 0 16px var(--cyan);
}

.hero-stamp-index,
.hero-stamp-foot {
  display: flex;
  justify-content: space-between;
  color: #8ea0bd;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.hero-stamp-main {
  display: grid;
  margin: 22px 0 28px;
  font-family: var(--display);
  line-height: 0.95;
}

.hero-stamp-main span {
  color: #9fb0c9;
  font-size: 16px;
}

.hero-stamp-main strong {
  color: white;
  font-size: 27px;
  letter-spacing: -0.05em;
}

.hero-bottom {
  position: absolute;
  right: 0;
  bottom: 28px;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #7e8da8;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

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

.scroll-cue i {
  position: relative;
  display: block;
  width: 52px;
  height: 1px;
  overflow: hidden;
  background: rgba(181, 207, 255, 0.2);
}

.scroll-cue i::after {
  position: absolute;
  inset: 0;
  content: "";
  background: var(--cyan);
  transform: translateX(-100%);
  animation: scroll-line 2.4s var(--ease-in-out) infinite;
}

@keyframes scroll-line {
  0% {
    transform: translateX(-100%);
  }
  48%,
  52% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(100%);
  }
}

.signal-strip {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(29, 60, 161, 0.08), transparent 38%),
    #070a17;
}

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

.signal-item {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 126px;
  padding: 22px 30px;
  border-right: 1px solid var(--line);
}

.signal-item:first-child {
  border-left: 1px solid var(--line);
}

.signal-item strong {
  font-family: var(--display);
  font-size: clamp(28px, 3vw, 50px);
  font-weight: 600;
  letter-spacing: -0.06em;
  line-height: 1;
}

.signal-item span {
  color: #8493ac;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.55;
  text-transform: uppercase;
}

.signal-item-wide strong {
  color: var(--cyan);
}

.fandom-marquee {
  position: relative;
  z-index: 2;
  padding-block: 15px;
  overflow: hidden;
  color: var(--ink);
  background: linear-gradient(90deg, #4bdcff, #9a78ff 54%, #ff72c4);
  transform: rotate(-1.2deg) scale(1.02);
  transform-origin: center;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 34s linear infinite;
}

.marquee-group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 24px;
  padding-right: 24px;
  font-family: var(--display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.marquee-group i {
  font-style: normal;
  font-size: 15px;
}

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

.section {
  padding-block: clamp(96px, 11vw, 170px);
}

.section-label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 50px;
  color: #7889a6;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.section-label span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--cyan);
}

.section-label p {
  margin: 0;
}

.manifest {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 70px;
  padding-bottom: 60px;
}

.manifest-copy {
  max-width: 1020px;
}

.manifest-kicker {
  margin-bottom: 22px;
  color: var(--cyan);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.22em;
}

.manifest h2,
.section-heading h2,
.fandom-heading h2,
.rules-intro h2,
.join-heading h2,
.final-cta h2 {
  margin-bottom: 32px;
  font-family: var(--display);
  font-size: clamp(38px, 5.2vw, 76px);
  font-weight: 600;
  letter-spacing: -0.065em;
  line-height: 1.08;
  text-transform: uppercase;
}

.manifest h2 em,
.fandom-heading h2 em,
.rules-intro h2 em,
.join-heading h2 em,
.final-cta h2 em {
  color: var(--cyan);
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.04em;
  text-transform: none;
}

.manifest-lead {
  max-width: 790px;
  margin: 0;
  color: #98a8c0;
  font-size: clamp(17px, 1.7vw, 22px);
  line-height: 1.75;
}

.bento-section {
  padding-top: 70px;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.5fr 0.65fr;
  align-items: end;
  gap: 70px;
  margin-bottom: 55px;
}

.section-heading h2 {
  max-width: 850px;
  margin: 0;
}

.section-heading > p,
.fandom-heading-copy > p {
  max-width: 460px;
  margin: 0 0 7px;
  color: #8797b0;
  line-height: 1.8;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}

.bento-card {
  position: relative;
  min-height: 520px;
  padding: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background:
    radial-gradient(circle at 70% 15%, rgba(56, 101, 255, 0.12), transparent 38%),
    linear-gradient(155deg, rgba(255, 255, 255, 0.035), transparent 50%),
    #080c1c;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.18);
  transform-style: preserve-3d;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms var(--ease-out);
}

.bento-card::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(133, 169, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(133, 169, 255, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: linear-gradient(180deg, black, transparent 72%);
}

.bento-role {
  grid-column: span 7;
}

.bento-live {
  grid-column: span 5;
}

.bento-create,
.bento-safe {
  grid-column: span 6;
  min-height: 500px;
}

.card-topline {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  color: #7485a2;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.card-copy {
  position: absolute;
  z-index: 3;
  right: 28px;
  bottom: 30px;
  left: 28px;
  transform: translateZ(24px);
}

.card-copy h3 {
  margin-bottom: 15px;
  font-family: var(--display);
  font-size: clamp(26px, 3vw, 43px);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 1.08;
  text-transform: uppercase;
}

.card-copy p {
  max-width: 510px;
  margin-bottom: 20px;
  color: #8f9eb7;
  font-size: 14px;
  line-height: 1.7;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 4px;
  color: var(--paper);
  border-bottom: 1px solid rgba(130, 223, 255, 0.38);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition:
    color 160ms ease,
    border-color 160ms ease;
}

.text-link span {
  color: var(--cyan);
  font-size: 14px;
}

.role-orbit {
  position: absolute;
  top: 42%;
  left: 68%;
  width: min(25vw, 320px);
  aspect-ratio: 1;
  border: 1px solid rgba(90, 143, 255, 0.25);
  border-radius: 50%;
  transform: translate(-50%, -50%) translateZ(10px);
}

.role-orbit::before,
.role-orbit::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(104, 180, 255, 0.15);
  border-radius: inherit;
}

.role-orbit::before {
  inset: 18%;
}

.role-orbit::after {
  inset: -12%;
  border-style: dashed;
}

.orbit-core {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 84px;
  height: 84px;
  place-items: center;
  color: var(--cyan);
  border: 1px solid rgba(103, 228, 255, 0.5);
  border-radius: 50%;
  background: rgba(40, 114, 208, 0.14);
  box-shadow:
    0 0 60px rgba(56, 146, 255, 0.3),
    inset 0 0 28px rgba(67, 182, 255, 0.18);
  font-family: var(--display);
  font-size: 14px;
  font-weight: 600;
  transform: translate(-50%, -50%);
}

.role-orbit i {
  --angle: calc(var(--i) * 60deg);
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 48px;
  height: 27px;
  place-items: center;
  color: #b1c3df;
  border: 1px solid rgba(148, 183, 255, 0.22);
  border-radius: 99px;
  background: rgba(7, 13, 36, 0.78);
  box-shadow: 0 7px 20px rgba(0, 0, 0, 0.25);
  font-style: normal;
  font-size: 8px;
  font-weight: 800;
  transform: translate(-50%, -50%) rotate(var(--angle)) translateX(155px)
    rotate(calc(var(--angle) * -1));
}

.mini-live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--green);
}

.mini-live i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 10px currentColor;
}

.pulse-visual {
  position: absolute;
  top: 80px;
  right: 28px;
  left: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  height: 190px;
  opacity: 0.82;
}

.pulse-visual::before {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  content: "";
  background: rgba(116, 156, 255, 0.2);
}

.pulse-visual span {
  width: 8px;
  height: var(--h);
  min-height: 10px;
  border-radius: 99px;
  background: linear-gradient(180deg, var(--cyan), var(--blue), rgba(80, 51, 255, 0.2));
  box-shadow: 0 0 16px rgba(73, 154, 255, 0.3);
  transform-origin: center;
  animation: equalize 1.8s var(--ease-in-out) calc(var(--h) * -0.012) infinite alternate;
}

@keyframes equalize {
  0% {
    transform: scaleY(0.54);
  }
  100% {
    transform: scaleY(1);
  }
}

.edit-window {
  position: absolute;
  top: 70px;
  right: 30px;
  left: 30px;
  height: 220px;
  overflow: hidden;
  border: 1px solid rgba(145, 181, 255, 0.23);
  border-radius: 12px;
  background:
    radial-gradient(circle at 70% 30%, rgba(94, 50, 255, 0.55), transparent 28%),
    linear-gradient(135deg, #071331, #0b1545 44%, #291753);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  transform: rotate(-2deg);
}

.edit-window-bar {
  display: flex;
  align-items: center;
  gap: 5px;
  height: 29px;
  padding-inline: 10px;
  border-bottom: 1px solid rgba(151, 183, 255, 0.15);
  background: rgba(5, 8, 22, 0.68);
}

.edit-window-bar i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #52617a;
}

.edit-window-bar i:first-child {
  background: var(--pink);
}

.edit-frame {
  position: relative;
  display: grid;
  height: calc(100% - 29px);
  place-items: center;
}

.edit-frame > span {
  color: white;
  font-family: var(--display);
  font-size: clamp(58px, 8vw, 104px);
  font-weight: 700;
  letter-spacing: -0.12em;
  opacity: 0.78;
  text-shadow:
    8px 0 rgba(0, 183, 255, 0.36),
    -8px 0 rgba(255, 28, 161, 0.28);
}

.edit-timeline {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 1.2fr 0.6fr 1fr;
  gap: 4px;
  height: 25px;
}

.edit-timeline i {
  border-radius: 2px;
  background: linear-gradient(90deg, rgba(54, 197, 255, 0.48), rgba(114, 79, 255, 0.38));
}

.anon-visual {
  position: absolute;
  top: 72px;
  right: 36px;
  left: 36px;
  height: 220px;
}

.anon-shield {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 104px;
  height: 104px;
  place-items: center;
  border: 1px solid rgba(79, 221, 255, 0.35);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(61, 163, 255, 0.24), rgba(22, 38, 87, 0.48));
  box-shadow: 0 0 70px rgba(39, 115, 255, 0.24);
  transform: translate(-50%, -50%);
}

.anon-shield svg {
  width: 42px;
  fill: none;
  stroke: var(--cyan);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.anon-message {
  position: absolute;
  display: grid;
  gap: 7px;
  width: 155px;
  padding: 15px;
  border: 1px solid rgba(132, 171, 255, 0.2);
  border-radius: 14px;
  background: rgba(10, 18, 46, 0.72);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
}

.anon-message span {
  height: 5px;
  border-radius: 99px;
  background: rgba(176, 201, 240, 0.2);
}

.anon-message span:nth-child(2) {
  width: 72%;
}

.anon-message-one {
  top: 12px;
  left: 0;
  transform: rotate(-3deg);
}

.anon-message-two {
  right: 0;
  bottom: 14px;
  transform: rotate(3deg);
}

.impact-section {
  position: relative;
  overflow: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 15% 50%, rgba(100, 232, 255, 0.6), transparent 25%),
    linear-gradient(120deg, #f4f7ff, #bfd9ff 55%, #9bb8ff);
}

.impact-grid {
  z-index: 0;
  opacity: 0.32;
  background-image:
    linear-gradient(rgba(4, 16, 56, 0.19) 1px, transparent 1px),
    linear-gradient(90deg, rgba(4, 16, 56, 0.19) 1px, transparent 1px);
  mask-image: none;
}

.impact-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 80px;
}

.impact-number {
  position: relative;
  display: flex;
  align-items: flex-start;
  color: var(--ink);
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.12em;
  line-height: 0.8;
}

.impact-number span {
  font-size: clamp(130px, 19vw, 300px);
}

.impact-number strong {
  margin-top: 0.15em;
  color: var(--blue);
  font-size: clamp(58px, 8vw, 120px);
  text-shadow: 0 0 40px rgba(28, 79, 244, 0.18);
}

.impact-number::after {
  position: absolute;
  right: 3%;
  bottom: -14%;
  content: "СООБЩЕНИЙ";
  color: rgba(5, 7, 20, 0.37);
  font-family: var(--body);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.28em;
}

.impact-copy {
  padding-block: 30px;
}

.impact-copy .eyebrow {
  color: #2246af;
}

.impact-copy h2 {
  margin-bottom: 24px;
  font-family: var(--display);
  font-size: clamp(36px, 4.4vw, 66px);
  font-weight: 600;
  letter-spacing: -0.06em;
  line-height: 1.08;
  text-transform: uppercase;
}

.impact-copy > p {
  max-width: 550px;
  margin-bottom: 28px;
  color: rgba(5, 7, 20, 0.64);
  font-size: 16px;
  line-height: 1.8;
}

.text-link-light {
  color: var(--ink);
  border-color: rgba(5, 7, 20, 0.32);
}

.text-link-light span {
  color: var(--blue);
}

.fandom-heading {
  margin-bottom: 52px;
}

.fandom-heading h2 {
  margin: 0;
}

.fandom-heading-copy {
  display: grid;
  justify-items: start;
  gap: 24px;
}

.fandom-board {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
}

.fandom-card {
  position: relative;
  display: flex;
  grid-column: span 4;
  flex-direction: column;
  justify-content: space-between;
  min-height: 270px;
  padding: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background:
    linear-gradient(150deg, rgba(64, 111, 255, 0.1), transparent 58%),
    #090d1c;
  transition:
    transform 220ms var(--ease-out),
    border-color 180ms ease,
    box-shadow 220ms ease;
}

.fandom-card::before {
  position: absolute;
  right: -12px;
  bottom: -28px;
  color: rgba(101, 139, 255, 0.1);
  content: "✦";
  font-size: 150px;
  line-height: 1;
  transform: rotate(16deg);
  transition:
    transform 300ms var(--ease-out),
    color 180ms ease;
}

.fandom-card-featured {
  grid-column: span 8;
  min-height: 330px;
  background:
    radial-gradient(circle at 80% 20%, rgba(81, 222, 255, 0.18), transparent 35%),
    linear-gradient(130deg, rgba(33, 77, 244, 0.24), rgba(97, 45, 255, 0.08)),
    #090d20;
}

.fandom-card-featured::after {
  position: absolute;
  top: 50%;
  right: 8%;
  width: 190px;
  height: 190px;
  content: "";
  border: 1px solid rgba(100, 198, 255, 0.22);
  border-radius: 50%;
  box-shadow:
    inset 0 0 50px rgba(58, 92, 255, 0.12),
    0 0 60px rgba(42, 92, 255, 0.08);
  transform: translateY(-50%);
}

.fandom-card-dark {
  background:
    radial-gradient(circle at 70% 20%, rgba(255, 62, 169, 0.08), transparent 35%),
    #04050b;
}

.fandom-card-accent {
  color: var(--ink);
  border-color: transparent;
  background: linear-gradient(135deg, #54e3ff, #8e7aff 62%, #ff7dcb);
}

.fandom-card-accent::before {
  color: rgba(5, 7, 20, 0.13);
}

.fandom-index,
.fandom-card small {
  position: relative;
  z-index: 2;
  color: #7486a4;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.fandom-card-accent .fandom-index,
.fandom-card-accent small {
  color: rgba(5, 7, 20, 0.55);
}

.fandom-code {
  position: absolute;
  top: 50%;
  right: 18px;
  color: rgba(219, 232, 255, 0.055);
  font-family: var(--display);
  font-size: clamp(70px, 10vw, 140px);
  font-weight: 700;
  letter-spacing: -0.12em;
  line-height: 1;
  transform: translateY(-50%);
}

.fandom-card-accent .fandom-code {
  color: rgba(5, 7, 20, 0.09);
}

.fandom-card strong {
  position: relative;
  z-index: 2;
  max-width: 80%;
  font-family: var(--display);
  font-size: clamp(20px, 2.5vw, 36px);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 1.15;
  text-transform: uppercase;
}

.fandom-card-featured strong {
  font-size: clamp(32px, 4vw, 58px);
}

.fandom-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 30px;
}

.fandom-cloud span {
  padding: 9px 13px;
  color: #8291aa;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  background: rgba(255, 255, 255, 0.02);
}

.rules-section {
  position: relative;
  color: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 8% 20%, rgba(36, 91, 255, 0.25), transparent 34rem),
    radial-gradient(circle at 90% 80%, rgba(107, 61, 255, 0.18), transparent 30rem),
    #070a17;
}

.rules-section::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 45%;
  height: 100%;
  pointer-events: none;
  content: "";
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(155, 186, 255, 0.2) 1px, transparent 1px),
    linear-gradient(90deg, rgba(155, 186, 255, 0.2) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(90deg, transparent, black);
}

.rules-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(60px, 8vw, 130px);
}

.section-label-light {
  margin-bottom: 80px;
}

.rules-intro {
  align-self: start;
}

.rules-intro h2 {
  margin-bottom: 30px;
}

.rules-intro > p:not(.eyebrow) {
  max-width: 550px;
  margin-bottom: 35px;
  color: #8f9fb8;
  font-size: 16px;
  line-height: 1.8;
}

.rules-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.rules-list {
  display: grid;
  align-content: center;
}

.rule-card {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 22px;
  padding: 34px 4px;
  border-bottom: 1px solid var(--line);
}

.rule-card:first-child {
  border-top: 1px solid var(--line);
}

.rule-number {
  color: var(--cyan);
  font-family: var(--display);
  font-size: 13px;
  font-weight: 600;
}

.rule-card small {
  color: #71829f;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.rule-card h3 {
  margin: 7px 0 10px;
  font-family: var(--display);
  font-size: clamp(18px, 2vw, 27px);
  font-weight: 600;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.rule-card p {
  max-width: 530px;
  margin: 0;
  color: #8797b1;
  font-size: 14px;
  line-height: 1.75;
}

.join-heading {
  margin-left: 25%;
  max-width: 940px;
}

.join-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 80px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.join-steps li {
  position: relative;
  min-height: 360px;
  padding: 22px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(43, 81, 194, 0.05), transparent 60%);
  transition:
    background-color 180ms ease,
    color 180ms ease;
}

.step-index {
  display: block;
  margin-bottom: 54px;
  color: #687997;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.step-icon {
  display: grid;
  width: 86px;
  height: 86px;
  margin-bottom: 40px;
  place-items: center;
  color: var(--cyan);
  border: 1px solid rgba(95, 197, 255, 0.28);
  border-radius: 50%;
  background: rgba(29, 78, 192, 0.09);
  box-shadow: inset 0 0 30px rgba(59, 139, 255, 0.07);
  font-family: var(--display);
  font-size: 22px;
  font-weight: 600;
}

.join-steps h3 {
  margin-bottom: 11px;
  font-family: var(--display);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.join-steps p {
  margin: 0;
  color: #7f8fa9;
  font-size: 13px;
  line-height: 1.7;
}

.final-cta {
  position: relative;
  display: grid;
  min-height: min(860px, 92svh);
  place-items: center;
  overflow: hidden;
  text-align: center;
  isolation: isolate;
}

.final-cta-media {
  position: absolute;
  z-index: -3;
  inset: 0;
}

.final-cta-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% center;
  filter: saturate(1.05) contrast(1.05);
  transform: scale(1.02);
}

.final-cta-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 60% 48%, rgba(5, 7, 20, 0.2), rgba(5, 7, 20, 0.86) 64%),
    linear-gradient(180deg, var(--ink) 0%, transparent 24%, transparent 72%, var(--ink) 100%);
}

.final-cta-grid {
  z-index: -1;
  opacity: 0.12;
  mask-image: radial-gradient(circle, black, transparent 72%);
}

.final-cta-inner {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  padding-block: 120px;
}

.final-cta h2 {
  max-width: 1000px;
  margin-bottom: 26px;
  font-size: clamp(42px, 6.5vw, 96px);
}

.final-cta > .final-cta-inner > p:not(.eyebrow) {
  max-width: 600px;
  margin-bottom: 35px;
  color: #b5c1d4;
  font-size: 17px;
  line-height: 1.75;
}

.final-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 11px;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #03040a;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  padding-block: 72px 90px;
}

.brand-footer .brand-mark {
  width: 50px;
  height: 50px;
}

.brand-footer .brand-copy strong {
  font-size: 22px;
}

.footer-brand > p {
  max-width: 320px;
  margin: 26px 0 0;
  color: #71819b;
  font-size: 13px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
}

.footer-links > div {
  display: grid;
  align-content: start;
  gap: 9px;
}

.footer-links small {
  margin-bottom: 12px;
  color: #54647e;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.2em;
}

.footer-links a {
  width: max-content;
  color: #9ba9bf;
  font-size: 13px;
  transition: color 160ms ease;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-block: 20px;
  color: #4d5a70;
  border-top: 1px solid rgba(139, 171, 234, 0.1);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.footer-bottom a {
  color: #7d8da7;
}

.js [data-reveal],
.js .reveal {
  opacity: 0;
  transform: translateY(24px);
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 760ms var(--ease-out),
    transform 760ms var(--ease-out);
}

.js .reveal.is-ready {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 900ms var(--ease-out),
    transform 900ms var(--ease-out);
}

.reveal-delay-1 {
  transition-delay: 80ms !important;
}

.reveal-delay-2 {
  transition-delay: 140ms !important;
}

.reveal-delay-3 {
  transition-delay: 210ms !important;
}

.reveal-delay-4 {
  transition-delay: 290ms !important;
}

.reveal-delay-5 {
  transition-delay: 370ms !important;
}

@media (hover: hover) and (pointer: fine) {
  .cursor-glow {
    display: block;
  }

  .button:hover::before {
    left: 130%;
  }

  .button-primary:hover {
    box-shadow:
      0 15px 46px rgba(31, 79, 255, 0.48),
      inset 0 1px rgba(255, 255, 255, 0.18);
    transform: translateY(-2px);
  }

  .button-ghost:hover,
  .button-outline:hover,
  .button-telegram:hover,
  .button-glass:hover,
  .button-dark-ghost:hover {
    color: white;
    border-color: rgba(101, 220, 255, 0.5);
    background-color: rgba(35, 83, 191, 0.18);
    transform: translateY(-2px);
  }

  .button-light:hover {
    color: #12317d;
    background-color: var(--cyan);
    transform: translateY(-2px);
  }

  .site-nav a:hover {
    color: white;
  }

  .site-nav a:hover::after {
    transform: scaleX(1);
    transform-origin: left center;
  }

  .text-link:hover {
    color: var(--cyan);
    border-color: var(--cyan);
  }

  .bento-card:hover {
    border-color: rgba(101, 185, 255, 0.34);
    box-shadow: 0 36px 110px rgba(0, 0, 0, 0.3);
  }

  .fandom-card:hover {
    border-color: rgba(98, 205, 255, 0.38);
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.28);
    transform: translateY(-5px);
  }

  .fandom-card:hover::before {
    color: rgba(98, 194, 255, 0.18);
    transform: rotate(24deg) scale(1.08);
  }

  .fandom-card-accent:hover::before {
    color: rgba(5, 7, 20, 0.18);
  }

  .join-steps li:hover {
    color: white;
    background-color: rgba(35, 72, 164, 0.1);
  }

  .join-steps li:hover .step-icon {
    color: var(--ink);
    background: var(--cyan);
    box-shadow: 0 0 36px rgba(83, 221, 255, 0.28);
  }

  .footer-links a:hover,
  .footer-bottom a:hover {
    color: var(--cyan);
  }
}

@media (max-width: 1080px) {
  :root {
    --shell: min(100% - 36px, 980px);
  }

  .site-header {
    grid-template-columns: 1fr auto auto;
  }

  .site-nav {
    position: fixed;
    top: 90px;
    right: 14px;
    left: 14px;
    display: grid;
    gap: 0;
    padding: 16px;
    visibility: hidden;
    border: 1px solid rgba(151, 177, 255, 0.18);
    border-radius: 16px;
    background: rgba(5, 7, 20, 0.95);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.45);
    opacity: 0;
    transform: translateY(-10px) scale(0.98);
    transform-origin: top center;
    transition:
      opacity 180ms var(--ease-out),
      transform 180ms var(--ease-out),
      visibility 180ms;
    backdrop-filter: blur(20px);
  }

  .site-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0) scale(1);
  }

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

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

  .menu-toggle {
    display: grid;
    width: 46px;
    height: 46px;
    margin-left: auto;
    padding: 0;
    place-content: center;
    gap: 6px;
    color: white;
    border: 1px solid rgba(160, 190, 255, 0.2);
    border-radius: 11px;
    background: rgba(18, 34, 76, 0.35);
    cursor: pointer;
  }

  .menu-toggle span {
    display: block;
    width: 18px;
    height: 1px;
    background: currentColor;
    transition: transform 180ms var(--ease-out);
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .header-cta {
    margin-left: 8px;
  }

  .hero-content {
    grid-template-columns: minmax(0, 720px);
    gap: 0;
  }

  .hero-stamp {
    display: none;
  }

  .signal-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .signal-item:nth-child(2) {
    border-right: 1px solid var(--line);
  }

  .signal-item:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .manifest {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .bento-role,
  .bento-live,
  .bento-create,
  .bento-safe {
    grid-column: span 6;
  }

  .role-orbit {
    left: 63%;
    width: 280px;
  }

  .impact-inner {
    gap: 30px;
  }

  .fandom-card,
  .fandom-card-featured {
    grid-column: span 6;
  }

  .rules-inner {
    grid-template-columns: 1fr;
  }

  .section-label-light {
    margin-bottom: 50px;
  }

  .join-heading {
    margin-left: 0;
  }

  .join-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  :root {
    --shell: calc(100% - 28px);
    --header-height: 66px;
  }

  .site-header {
    top: 8px;
    width: calc(100vw - 16px);
    min-height: 62px;
    padding: 8px 9px 8px 12px;
    border-color: rgba(151, 177, 255, 0.12);
    background: rgba(5, 7, 20, 0.58);
    backdrop-filter: blur(14px);
  }

  .brand {
    gap: 8px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand-copy strong {
    font-size: 15px;
  }

  .brand-copy small {
    font-size: 6px;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
  }

  .header-cta {
    display: none;
  }

  .site-nav {
    top: 78px;
    right: 8px;
    left: 8px;
  }

  .hero {
    min-height: 820px;
  }

  .hero-media img {
    object-position: 67% center;
  }

  .hero-media-wash {
    background:
      linear-gradient(90deg, rgba(3, 5, 15, 0.98), rgba(4, 6, 19, 0.64) 72%, rgba(4, 6, 19, 0.44)),
      linear-gradient(180deg, rgba(3, 5, 14, 0.22), transparent 18%, transparent 54%, var(--ink) 93%);
  }

  .hero-grid {
    background-size: 44px 44px;
  }

  .hero-orbit {
    top: 30%;
    right: -65vw;
    width: 125vw;
  }

  .orbit-two {
    right: -20vw;
    width: 80vw;
  }

  .hero-content {
    align-items: end;
    padding-top: 150px;
    padding-bottom: 120px;
  }

  .status-pill {
    margin-bottom: 22px;
  }

  .status-pill small {
    display: none;
  }

  .hero h1 {
    margin-bottom: 24px;
    font-size: clamp(44px, 13.5vw, 68px);
    letter-spacing: -0.075em;
  }

  .hero h1 em::after {
    right: -0.08em;
  }

  .hero-lead {
    margin-bottom: 28px;
    font-size: 15px;
    line-height: 1.65;
  }

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

  .hero-actions .button {
    width: 100%;
  }

  .hero-coordinate {
    display: none;
  }

  .signal-grid {
    width: 100%;
  }

  .signal-item {
    min-height: 115px;
    padding: 18px 14px;
  }

  .signal-item strong {
    font-size: 28px;
  }

  .signal-item span {
    font-size: 7px;
  }

  .section {
    padding-block: 90px;
  }

  .section-label {
    margin-bottom: 34px;
  }

  .manifest {
    padding-bottom: 40px;
  }

  .manifest h2,
  .section-heading h2,
  .fandom-heading h2,
  .rules-intro h2,
  .join-heading h2,
  .final-cta h2 {
    font-size: clamp(34px, 10vw, 50px);
  }

  .manifest-lead {
    font-size: 16px;
  }

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

  .bento-role,
  .bento-live,
  .bento-create,
  .bento-safe {
    grid-column: auto;
    min-height: 520px;
  }

  .role-orbit {
    top: 31%;
    left: 50%;
    width: 220px;
  }

  .role-orbit i {
    transform: translate(-50%, -50%) rotate(var(--angle)) translateX(108px)
      rotate(calc(var(--angle) * -1));
  }

  .pulse-visual {
    top: 70px;
    gap: 7px;
  }

  .edit-window {
    right: 18px;
    left: 18px;
  }

  .anon-visual {
    right: 18px;
    left: 18px;
  }

  .anon-message {
    width: 125px;
  }

  .card-copy {
    right: 22px;
    bottom: 24px;
    left: 22px;
  }

  .card-copy h3 {
    font-size: 30px;
  }

  .impact-inner {
    grid-template-columns: 1fr;
  }

  .impact-number {
    justify-content: center;
  }

  .impact-number span {
    font-size: 40vw;
  }

  .impact-number strong {
    font-size: 18vw;
  }

  .impact-copy {
    padding-bottom: 0;
  }

  .fandom-board {
    grid-template-columns: 1fr;
  }

  .fandom-card,
  .fandom-card-featured {
    grid-column: auto;
    min-height: 250px;
  }

  .fandom-card-featured {
    min-height: 280px;
  }

  .fandom-card strong {
    font-size: 25px;
  }

  .fandom-card-featured strong {
    font-size: 34px;
  }

  .fandom-heading-copy .button {
    width: 100%;
  }

  .rules-actions {
    display: grid;
  }

  .rule-card {
    grid-template-columns: 46px 1fr;
    gap: 12px;
    padding-block: 26px;
  }

  .join-steps {
    grid-template-columns: 1fr;
    margin-top: 52px;
  }

  .join-steps li {
    min-height: 285px;
  }

  .step-index {
    margin-bottom: 28px;
  }

  .step-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 28px;
  }

  .final-cta {
    min-height: 760px;
  }

  .final-cta-media img {
    object-position: 70% center;
  }

  .final-actions {
    display: grid;
    width: 100%;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 55px;
    padding-block: 60px;
  }

  .footer-links {
    gap: 30px;
  }

  .footer-bottom {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px;
  }

  .footer-bottom span:nth-child(2) {
    display: none;
  }
}

@media (max-width: 380px) {
  .hero h1 {
    font-size: 40px;
  }

  .signal-item {
    gap: 9px;
    padding-inline: 10px;
  }

  .signal-item strong {
    font-size: 24px;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .hero-media img,
  .bento-card,
  .fandom-card,
  .button {
    transform: none !important;
  }

  .js [data-reveal],
  .js .reveal {
    opacity: 1;
    transform: none;
  }
}
