:root {
  color-scheme: dark;
  --bg: #070713;
  --panel: #101122;
  --panel-2: #15162d;
  --ink: #f8f6ff;
  --muted: #b7b7d4;
  --line: rgba(201, 220, 255, 0.16);
  --line-strong: rgba(201, 220, 255, 0.32);
  --green: #71eaff;
  --yellow: #a875ff;
  --blue: #58a8ff;
  --red: #ff5edb;
  --violet: #6f42ff;
  --deep-violet: #17103e;
  --shadow: rgba(0, 0, 0, 0.45);
  --cursor-x: 50vw;
  --cursor-y: 50vh;
  --font-body: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --font-display: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 78% 10%, rgba(108, 69, 255, 0.2), transparent 32rem),
    radial-gradient(circle at 18% 24%, rgba(69, 201, 255, 0.12), transparent 28rem),
    var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.5;
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: -30%;
  z-index: -2;
  pointer-events: none;
  background:
    conic-gradient(from 120deg at 50% 50%, transparent, rgba(112, 234, 255, 0.12), transparent, rgba(168, 117, 255, 0.16), transparent),
    radial-gradient(circle at 50% 50%, rgba(112, 234, 255, 0.08), transparent 34%);
  filter: blur(26px);
  opacity: 0.72;
  animation: auraDrift 18s ease-in-out infinite alternate;
}

body::after {
  content: "";
  position: fixed;
  inset: 10px;
  z-index: 90;
  pointer-events: none;
  border: 1px solid rgba(112, 234, 255, 0.08);
  box-shadow:
    inset 0 0 0 1px rgba(168, 117, 255, 0.04),
    inset 0 0 80px rgba(7, 7, 19, 0.24);
}

body::selection {
  background: var(--green);
  color: #06100c;
}

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

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

button {
  font: inherit;
}

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 80;
  opacity: 0.13;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 30px 30px;
  mix-blend-mode: screen;
}

.cursor-glow {
  position: fixed;
  left: var(--cursor-x);
  top: var(--cursor-y);
  z-index: 4;
  width: 460px;
  height: 460px;
  border-radius: 999px;
  pointer-events: none;
  background:
    radial-gradient(circle, rgba(112, 234, 255, 0.18), rgba(168, 117, 255, 0.08) 42%, transparent 68%);
  filter: blur(18px);
  opacity: 0;
  mix-blend-mode: screen;
  transform: translate(-50%, -50%);
  transition: opacity 220ms ease;
}

body.has-cursor-glow .cursor-glow {
  opacity: 0.8;
}

.site-signature {
  position: fixed;
  left: 22px;
  top: 112px;
  bottom: 34px;
  z-index: 55;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  writing-mode: vertical-rl;
  pointer-events: none;
  color: rgba(248, 246, 255, 0.32);
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-signature::before,
.site-signature::after {
  content: "";
  display: block;
  width: 1px;
  flex: 1;
  min-height: 34px;
  background: linear-gradient(transparent, rgba(112, 234, 255, 0.42), transparent);
}

.site-signature span {
  padding: 8px 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  min-height: 76px;
  padding: 12px 28px;
  background: rgba(7, 7, 19, 0.82);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(18px);
}

.site-header::after {
  content: "";
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(112, 234, 255, 0.44), rgba(168, 117, 255, 0.34), transparent);
  opacity: 0.76;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-icon {
  width: 56px;
  height: 56px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  padding: 3px;
  overflow: hidden;
  background-image:
    radial-gradient(circle at 50% 35%, rgba(112, 234, 255, 0.24), transparent 54%),
    linear-gradient(145deg, rgba(168, 117, 255, 0.16), rgba(7, 7, 19, 0.92));
  background-position: center, center;
  background-repeat: no-repeat;
  background-size: 100%, 100%;
  border: 1px solid rgba(112, 234, 255, 0.26);
  border-radius: 16px;
  box-shadow:
    0 0 0 1px rgba(112, 234, 255, 0.08),
    0 0 28px rgba(116, 106, 255, 0.22),
    inset 0 0 24px rgba(168, 117, 255, 0.12);
}

.brand-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 8px 10px rgba(0, 0, 0, 0.42));
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: var(--font-display);
  font-size: 1.08rem;
  line-height: 1;
}

.brand small {
  color: var(--muted);
  font-size: 0.73rem;
  margin-top: 4px;
}

.site-nav {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(17, 17, 39, 0.74);
}

.site-nav a {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
  padding: 8px 12px;
  border-radius: 6px;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.active {
  color: #050611;
  background: linear-gradient(135deg, var(--green), #bca3ff);
}

.header-controls {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.language-select {
  min-height: 44px;
  min-width: 78px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  padding: 0 28px 0 12px;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(112, 234, 255, 0.13), rgba(168, 117, 255, 0.13)),
    rgba(17, 17, 39, 0.86);
  font-weight: 900;
  cursor: pointer;
  outline: none;
}

.language-select:hover,
.language-select:focus-visible {
  border-color: rgba(112, 234, 255, 0.52);
  box-shadow: 0 0 0 3px rgba(112, 234, 255, 0.1);
}

.language-select option {
  color: #050611;
  background: #f8f6ff;
}

.header-action {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--yellow), var(--green));
  color: #050611;
  font-weight: 900;
  box-shadow: 0 14px 34px rgba(112, 234, 255, 0.16), 0 0 34px rgba(168, 117, 255, 0.2);
  position: relative;
  overflow: hidden;
}

main {
  overflow: hidden;
}

.home-hero {
  min-height: calc(88svh - 76px);
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.72fr);
  align-items: center;
  gap: 40px;
  padding: 58px 7vw 42px;
  position: relative;
  isolation: isolate;
  background:
    radial-gradient(circle at 78% 50%, rgba(168, 117, 255, 0.18), transparent 28rem),
    radial-gradient(circle at 26% 78%, rgba(112, 234, 255, 0.12), transparent 24rem),
    linear-gradient(90deg, rgba(7, 7, 19, 0.97), rgba(7, 7, 19, 0.78) 46%, rgba(7, 7, 19, 0.94)),
    url("assets/durov-profile-shot.jpg") center / cover;
  border-bottom: 1px solid var(--line);
}

.home-hero > * {
  position: relative;
  z-index: 2;
}

.home-hero::before,
.page-hero::before,
.board-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at var(--cursor-x) var(--cursor-y), rgba(112, 234, 255, 0.1), transparent 22rem),
    linear-gradient(135deg, rgba(168, 117, 255, 0.09), transparent 40%);
  opacity: 0.82;
  mix-blend-mode: screen;
}

.home-hero::after,
.page-hero::after,
.board-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(rgba(112, 234, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(168, 117, 255, 0.08) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, #000, transparent 85%);
  animation: gridGlide 16s linear infinite;
}

.hero-copy,
.section-copy {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.hero-copy::before {
  content: "";
  position: absolute;
  left: -24px;
  top: -8px;
  width: 2px;
  height: 86px;
  background: linear-gradient(var(--green), var(--yellow), transparent);
  box-shadow: 0 0 22px rgba(112, 234, 255, 0.26);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-display);
  letter-spacing: 0;
  line-height: 0.95;
}

h1 {
  font-size: 6rem;
}

h2 {
  font-size: 3.3rem;
}

.hero-lede,
.section-copy p:not(.eyebrow),
.page-hero p,
.board-hero p {
  color: #dedbd2;
  font-size: 1.08rem;
  margin: 24px 0 0;
  max-width: 650px;
}

.hero-proofline {
  width: min(100%, 680px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 26px;
}

.hero-proofline span {
  position: relative;
  min-height: 70px;
  display: grid;
  align-content: center;
  gap: 3px;
  overflow: hidden;
  padding: 12px 14px;
  border: 1px solid rgba(201, 220, 255, 0.14);
  border-radius: 7px;
  background:
    linear-gradient(115deg, transparent 0 48%, rgba(255, 255, 255, 0.045) 49% 51%, transparent 52%),
    linear-gradient(135deg, rgba(112, 234, 255, 0.08), rgba(168, 117, 255, 0.055)),
    rgba(10, 10, 28, 0.48);
  background-size: 18px 18px, auto, auto;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 14px 34px rgba(0, 0, 0, 0.1);
}

.hero-proofline span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(var(--green), var(--yellow));
}

.hero-proofline strong,
.hero-proofline small {
  display: block;
  min-width: 0;
}

.hero-proofline strong {
  font-family: var(--font-display);
  font-size: 1rem;
  line-height: 1;
}

.hero-proofline small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

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

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0 20px;
  font-weight: 900;
  white-space: nowrap;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.button::before,
.header-action::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.42), transparent);
  transform: translateX(-120%);
  transition: transform 520ms ease;
}

.button:hover::before,
.button:focus-visible::before,
.header-action:hover::before,
.header-action:focus-visible::before {
  transform: translateX(120%);
}

.button:hover,
.button:focus-visible,
.header-action:hover,
.text-link:hover,
.link-grid a:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, var(--green), #bca3ff 62%, var(--yellow));
  color: #050611;
  box-shadow: 0 16px 34px rgba(112, 234, 255, 0.18), 0 0 34px rgba(168, 117, 255, 0.2);
}

.button-thermos {
  color: #050611;
  border-color: rgba(112, 234, 255, 0.45);
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 255, 255, 0.52), transparent 26%),
    linear-gradient(135deg, #70eaff, #a875ff 72%);
  box-shadow:
    0 16px 40px rgba(112, 234, 255, 0.18),
    0 0 36px rgba(168, 117, 255, 0.24);
}

.button-dark {
  color: var(--ink);
  background: rgba(20, 20, 46, 0.68);
  border-color: var(--line-strong);
}

.contract-mini {
  width: min(100%, 690px);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: rgba(10, 10, 28, 0.76);
  box-shadow: inset 0 1px 0 rgba(112, 234, 255, 0.08), 0 18px 46px rgba(0, 0, 0, 0.22);
  position: relative;
  overflow: hidden;
}

.contract-mini::before {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(112, 234, 255, 0.62), transparent);
}

.contract-mini span,
.token-panel span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contract-mini code,
.token-panel code {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--ink);
  font-size: 0.85rem;
}

.contract-mini button {
  min-height: 36px;
  border: 0;
  border-radius: 6px;
  padding: 0 12px;
  background: linear-gradient(135deg, var(--yellow), var(--green));
  color: #050611;
  font-weight: 900;
  cursor: pointer;
}

.ninja-stage {
  justify-self: center;
  position: relative;
  width: clamp(300px, 29vw, 430px);
  min-width: 0;
  aspect-ratio: 0.94;
  display: grid;
  place-items: center;
  isolation: isolate;
  transform-style: preserve-3d;
  transition: transform 140ms ease-out;
}

.video-stage {
  width: clamp(360px, 38vw, 590px);
  aspect-ratio: 16 / 9;
}

.ninja-stage::before {
  transform: rotate(-8deg);
}

.ninja-stage::before,
.ninja-stage::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.ninja-stage::before {
  z-index: 0;
  inset: 8% 0 4%;
  background:
    radial-gradient(circle at 42% 28%, rgba(112, 234, 255, 0.22), transparent 24%),
    radial-gradient(circle at 66% 66%, rgba(168, 117, 255, 0.2), transparent 34%),
    radial-gradient(circle at 48% 48%, rgba(7, 10, 22, 0.72), transparent 58%);
  filter: blur(24px);
  opacity: 0.9;
  animation: haloPulse 6s ease-in-out infinite;
}

.ninja-stage::after {
  display: none;
}

.ninja-main {
  position: relative;
  z-index: 3;
  width: min(76%, 420px);
  margin-top: -2%;
  filter:
    drop-shadow(0 30px 34px rgba(0, 0, 0, 0.46))
    drop-shadow(0 0 28px rgba(112, 234, 255, 0.08));
  animation: heroFloat 5.6s ease-in-out infinite;
}

.hero-character-sticker {
  position: relative;
  z-index: 3;
  width: min(82%, 360px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  margin-top: 1%;
  filter:
    drop-shadow(0 34px 38px rgba(0, 0, 0, 0.5))
    drop-shadow(0 0 28px rgba(112, 234, 255, 0.16));
  animation: heroFloat 5.6s ease-in-out infinite;
}

.hero-character-sticker::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 12% 6% 10%;
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(112, 234, 255, 0.11), rgba(168, 117, 255, 0.09)),
    radial-gradient(circle at 30% 25%, rgba(112, 234, 255, 0.2), transparent 42%),
    rgba(7, 10, 22, 0.5);
  border: 1px solid rgba(112, 234, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  opacity: 0.72;
  transform: rotate(-2deg);
}

.hero-character-sticker svg {
  width: 100% !important;
  height: 100% !important;
  overflow: visible;
  transform: scale(1.01);
  transform-origin: center;
}

.hero-video-card {
  position: relative;
  z-index: 3;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid rgba(112, 234, 255, 0.2);
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgba(112, 234, 255, 0.08), rgba(168, 117, 255, 0.1)),
    rgba(7, 7, 19, 0.72);
  box-shadow:
    0 34px 70px rgba(0, 0, 0, 0.42),
    0 0 52px rgba(112, 234, 255, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.09);
  transform: rotate(-1.2deg);
  transition: transform 180ms ease, border-color 180ms ease;
}

.hero-video-card::before,
.hero-video-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.hero-video-card::before {
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.16), transparent 24%, transparent 72%, rgba(112, 234, 255, 0.12)),
    radial-gradient(circle at 18% 16%, rgba(112, 234, 255, 0.22), transparent 28%),
    linear-gradient(0deg, rgba(7, 7, 19, 0.34), transparent 46%);
  mix-blend-mode: screen;
}

.hero-video-card::after {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(168, 117, 255, 0.1);
}

.hero-video-card:hover {
  border-color: rgba(112, 234, 255, 0.42);
  transform: rotate(-0.4deg) translateY(-3px);
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #070713;
  filter: saturate(1.06) contrast(1.02);
}

.hero-video-caption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border: 1px solid rgba(112, 234, 255, 0.18);
  border-radius: 8px;
  background: rgba(7, 7, 19, 0.68);
  color: var(--ink);
  backdrop-filter: blur(14px);
  transition: border-color 160ms ease, background 160ms ease;
}

.hero-video-caption:hover {
  border-color: rgba(112, 234, 255, 0.36);
  background: rgba(7, 7, 19, 0.78);
}

.hero-video-caption span {
  color: rgba(112, 234, 255, 0.74);
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.hero-video-caption strong {
  color: var(--yellow);
  font-size: 0.86rem;
}

.video-sound-toggle {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 5;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(112, 234, 255, 0.24);
  border-radius: 999px;
  padding: 0 12px;
  background: rgba(7, 7, 19, 0.7);
  color: var(--ink);
  font-weight: 900;
  cursor: pointer;
  backdrop-filter: blur(14px);
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.24);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.video-sound-toggle:hover {
  transform: translateY(-2px);
  border-color: rgba(112, 234, 255, 0.48);
  background: rgba(14, 15, 36, 0.82);
}

.sound-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--yellow);
  box-shadow: 0 0 16px rgba(168, 117, 255, 0.42);
}

.video-sound-toggle.is-on .sound-dot {
  background: var(--green);
  box-shadow: 0 0 16px rgba(112, 234, 255, 0.58);
}

.sound-label {
  line-height: 1;
}

.egg-orb {
  position: absolute;
  right: 3%;
  bottom: 13%;
  z-index: 4;
  width: clamp(76px, 8vw, 106px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 50%, rgba(112, 234, 255, 0.2), rgba(168, 117, 255, 0.1) 48%, transparent 72%);
  filter: drop-shadow(0 18px 22px rgba(0, 0, 0, 0.32));
  animation: badgeBob 4.8s ease-in-out infinite;
}

.egg-orb::before {
  content: "";
  position: absolute;
  inset: 6%;
  border-radius: inherit;
  border: 1px solid rgba(112, 234, 255, 0.24);
  box-shadow: 0 0 34px rgba(112, 234, 255, 0.18);
  opacity: 0.72;
}

.egg-badge {
  position: relative;
  z-index: 2;
  width: 92%;
  height: 92%;
  object-fit: contain;
  filter:
    drop-shadow(0 0 14px rgba(112, 234, 255, 0.36))
    drop-shadow(0 10px 14px rgba(0, 0, 0, 0.28));
}

.ticker-stack {
  position: absolute;
  left: 3%;
  top: 13%;
  z-index: 2;
  display: grid;
  gap: 8px;
  opacity: 0.72;
  pointer-events: none;
}

.ticker-stack span {
  width: max-content;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(10, 10, 28, 0.76);
  color: var(--yellow);
  font-weight: 900;
  transform: rotate(-4deg);
}

.hero-signal-panel {
  position: absolute;
  right: 7vw;
  bottom: 28px;
  z-index: 3;
  width: min(310px, 24vw);
  display: grid;
  gap: 4px;
  padding: 14px 16px 13px;
  border: 1px solid rgba(112, 234, 255, 0.16);
  border-radius: 7px;
  background:
    linear-gradient(90deg, rgba(112, 234, 255, 0.1), transparent 20%),
    rgba(7, 7, 19, 0.66);
  color: rgba(248, 246, 255, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 20px 60px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(14px);
  overflow: hidden;
}

.hero-signal-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent, rgba(112, 234, 255, 0.14), transparent),
    repeating-linear-gradient(0deg, transparent 0 8px, rgba(255, 255, 255, 0.035) 9px);
  transform: translateX(-100%);
  animation: panelScan 6s ease-in-out infinite;
}

.hero-signal-panel span,
.hero-signal-panel strong,
.hero-signal-panel small {
  position: relative;
  z-index: 1;
}

.hero-signal-panel span,
.hero-signal-panel small {
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-signal-panel strong {
  font-family: var(--font-display);
  font-size: 1.1rem;
  line-height: 1;
  color: var(--ink);
}

.hero-signal-panel small {
  color: rgba(112, 234, 255, 0.66);
}

.ticker-stack span:nth-child(2) {
  color: var(--blue);
  transform: translateX(26px) rotate(3deg);
}

.ticker-stack span:nth-child(3) {
  color: var(--green);
  transform: translateX(5px) rotate(-2deg);
}

.ticker-strip {
  display: flex;
  gap: 0;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, var(--yellow), var(--green), var(--blue), var(--yellow));
  background-size: 260% 100%;
  color: #050611;
  animation: stripFlow 8s linear infinite;
}

.ticker-strip span {
  flex: 1 0 auto;
  min-width: 220px;
  padding: 14px 22px;
  font-family: var(--font-display);
  font-weight: 900;
  text-align: center;
  border-right: 1px solid rgba(5, 6, 17, 0.22);
}

.split-section,
.proof-band,
.sticker-section,
.route-section,
.token-cta,
.leaderboard-shell {
  padding: 90px 7vw;
}

.section-index {
  position: relative;
}

.section-index::before {
  content: attr(data-section);
  position: absolute;
  left: 7vw;
  top: 34px;
  color: rgba(112, 234, 255, 0.34);
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.2em;
}

.section-index::after {
  content: "";
  position: absolute;
  left: 7vw;
  right: 7vw;
  top: 66px;
  height: 1px;
  background: linear-gradient(90deg, rgba(112, 234, 255, 0.22), transparent 38%);
  pointer-events: none;
}

.split-section,
.proof-band,
.page-hero,
.board-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(340px, 0.72fr);
  gap: 48px;
  align-items: center;
}

.split-section {
  background: var(--bg);
}

.flywheel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.flywheel span {
  min-height: 150px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 20% 20%, rgba(112, 234, 255, 0.1), transparent 46%),
    linear-gradient(145deg, rgba(168, 117, 255, 0.11), rgba(248, 245, 236, 0.025));
  color: var(--green);
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
}

.flywheel span:nth-child(2) {
  color: var(--yellow);
}

.flywheel span:nth-child(3) {
  color: var(--blue);
}

.flywheel span:nth-child(4) {
  color: var(--red);
}

.identity-orbit {
  position: relative;
  justify-self: end;
  width: min(100%, 520px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  isolation: isolate;
  transform-style: preserve-3d;
  transition: transform 140ms ease-out;
}

.identity-orbit::before {
  content: "";
  position: absolute;
  inset: 8%;
  z-index: -2;
  border-radius: 50%;
  background:
    radial-gradient(circle at 42% 38%, rgba(112, 234, 255, 0.2), transparent 28%),
    radial-gradient(circle at 70% 72%, rgba(168, 117, 255, 0.24), transparent 30%),
    rgba(11, 13, 34, 0.58);
  filter: blur(8px);
  box-shadow:
    inset 0 0 70px rgba(112, 234, 255, 0.08),
    0 28px 90px rgba(0, 0, 0, 0.36);
}

.orbit-ring {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.orbit-ring-one {
  inset: 8%;
  border: 1px solid rgba(112, 234, 255, 0.24);
  box-shadow: 0 0 0 24px rgba(112, 234, 255, 0.025);
  animation: orbitSpin 18s linear infinite;
}

.orbit-ring-two {
  inset: 20%;
  border: 1px dashed rgba(168, 117, 255, 0.38);
  transform: rotateX(64deg) rotateZ(-12deg);
  animation: orbitSpin 12s linear infinite reverse;
}

.orbit-egg {
  width: 38%;
  max-width: 186px;
  filter:
    drop-shadow(0 0 28px rgba(112, 234, 255, 0.44))
    drop-shadow(0 28px 30px rgba(0, 0, 0, 0.42));
  animation: heroFloat 5.8s ease-in-out infinite;
}

.orbit-node {
  position: absolute;
  min-width: 92px;
  min-height: 44px;
  display: grid;
  place-items: center;
  padding: 0 14px;
  border: 1px solid rgba(201, 220, 255, 0.16);
  border-radius: 999px;
  background: rgba(10, 10, 28, 0.78);
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 900;
  box-shadow:
    0 18px 34px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.orbit-node-buy {
  top: 9%;
  left: 15%;
  color: var(--green);
}

.orbit-node-raid {
  top: 19%;
  right: 6%;
  color: var(--yellow);
}

.orbit-node-wear {
  bottom: 20%;
  left: 4%;
  color: var(--blue);
}

.orbit-node-rank {
  right: 12%;
  bottom: 10%;
  color: var(--red);
}

.text-link {
  display: inline-flex;
  margin-top: 24px;
  color: var(--green);
  font-weight: 900;
  transition: transform 160ms ease;
}

.text-link-secondary {
  margin-left: 18px;
  color: var(--blue);
}

.proof-band {
  background:
    radial-gradient(circle at 86% 16%, rgba(168, 117, 255, 0.12), transparent 24rem),
    #0b0b18;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.proof-image,
.board-proof {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 26px 70px var(--shadow);
  background: #111;
}

.proof-image img,
.board-proof img {
  width: 100%;
  aspect-ratio: 16 / 8;
  object-fit: cover;
}

.identity-corridor {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(360px, 0.74fr) minmax(0, 0.82fr);
  align-items: center;
  gap: 54px;
  padding: 105px 7vw;
  overflow: hidden;
  background:
    radial-gradient(circle at 21% 42%, rgba(112, 234, 255, 0.14), transparent 27rem),
    radial-gradient(circle at 88% 34%, rgba(168, 117, 255, 0.15), transparent 28rem),
    linear-gradient(180deg, #080816, #0c0d1e);
  border-bottom: 1px solid var(--line);
}

.identity-corridor::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(112, 234, 255, 0.06) 1px, transparent 1px),
    linear-gradient(rgba(168, 117, 255, 0.055) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: radial-gradient(circle at 36% 42%, #000 0 24%, transparent 72%);
  animation: gridGlide 20s linear infinite;
}

.identity-frame {
  position: relative;
  min-height: 500px;
  isolation: isolate;
  transform-style: preserve-3d;
  transition: transform 140ms ease-out;
}

.identity-frame::before {
  content: "";
  position: absolute;
  inset: 10% 6%;
  z-index: -1;
  border: 1px solid rgba(112, 234, 255, 0.2);
  border-radius: 999px;
  transform: rotate(-12deg);
  box-shadow:
    0 0 0 32px rgba(112, 234, 255, 0.025),
    0 0 72px rgba(168, 117, 255, 0.18);
}

.identity-frame-durov,
.identity-frame-ninja,
.identity-frame-egg {
  position: absolute;
  filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.44));
}

.identity-frame-durov {
  left: 3%;
  top: 11%;
  width: 78%;
  border: 1px solid rgba(201, 220, 255, 0.16);
  border-radius: 8px;
  opacity: 0.54;
  transform: rotate(-5deg);
}

.identity-frame-ninja {
  right: 4%;
  bottom: 2%;
  z-index: 2;
  width: 46%;
  max-width: 250px;
}

.identity-frame-egg {
  left: 6%;
  bottom: 12%;
  z-index: 3;
  width: 24%;
  max-width: 128px;
  filter:
    drop-shadow(0 0 30px rgba(112, 234, 255, 0.48))
    drop-shadow(0 18px 24px rgba(0, 0, 0, 0.4));
  animation: badgeBob 5.2s ease-in-out infinite;
}

.identity-frame-line {
  position: absolute;
  z-index: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(112, 234, 255, 0.64), transparent);
  transform-origin: left center;
}

.line-one {
  left: 14%;
  top: 58%;
  width: 72%;
  transform: rotate(-8deg);
}

.line-two {
  left: 22%;
  top: 72%;
  width: 58%;
  transform: rotate(12deg);
}

.board-collage {
  position: relative;
  justify-self: end;
  width: min(100%, 900px);
  aspect-ratio: 1.48 / 1;
  min-height: 470px;
  isolation: isolate;
  display: grid;
  place-items: center;
  transform-style: preserve-3d;
  transition: transform 140ms ease-out;
}

.board-collage-final {
  overflow: visible;
}

.board-collage picture {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
}

.board-collage-art {
  display: block;
  width: 124%;
  max-width: none;
  height: auto;
  object-fit: contain;
  filter:
    saturate(1.04)
    contrast(1.02)
    drop-shadow(0 32px 64px rgba(0, 0, 0, 0.38))
    drop-shadow(0 0 42px rgba(112, 234, 255, 0.08));
  animation: collageFloat 9s ease-in-out infinite;
}

.board-collage::before {
  content: "";
  position: absolute;
  inset: 2% 0 0;
  z-index: -2;
  border-radius: 14px;
  background:
    radial-gradient(circle at 22% 28%, rgba(112, 234, 255, 0.18), transparent 20%),
    radial-gradient(circle at 78% 24%, rgba(168, 117, 255, 0.22), transparent 24%),
    radial-gradient(circle at 52% 62%, rgba(88, 168, 255, 0.16), transparent 32%),
    linear-gradient(135deg, rgba(12, 13, 34, 0.92), rgba(5, 5, 17, 0.76));
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.46),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.board-collage::after {
  content: "";
  position: absolute;
  inset: 9% 6%;
  z-index: -1;
  border: 1px solid rgba(112, 234, 255, 0.18);
  border-radius: 999px;
  opacity: 0.72;
  transform: rotate(-8deg);
  box-shadow:
    0 0 0 22px rgba(112, 234, 255, 0.026),
    0 0 62px rgba(168, 117, 255, 0.16);
  animation: ringBreath 7.2s ease-in-out infinite;
}

.collage-haze {
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: 14px;
  background:
    linear-gradient(rgba(112, 234, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(168, 117, 255, 0.05) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: radial-gradient(circle at 50% 50%, #000 22%, transparent 78%);
  opacity: 0.7;
  animation: gridGlide 22s linear infinite;
}

.profile-collage {
  position: absolute;
  inset: 0;
  z-index: 10;
  pointer-events: none;
}

.profile-tile {
  position: absolute;
  z-index: 6;
  width: 220px;
  height: 132px;
  object-fit: cover;
  border: 1px solid rgba(201, 220, 255, 0.15);
  border-radius: 8px;
  opacity: 1;
  filter: saturate(0.92) contrast(1.08) brightness(0.76);
  box-shadow:
    0 22px 54px rgba(0, 0, 0, 0.46),
    0 0 32px rgba(112, 234, 255, 0.1);
  transform-origin: center;
  animation: profileDrift 8s ease-in-out infinite;
}

.profile-tile-durov {
  left: 28%;
  top: 28%;
  z-index: 16;
  width: 318px;
  height: 154px;
  border-color: rgba(112, 234, 255, 0.28);
  filter: saturate(0.84) contrast(1.12) brightness(0.9);
  transform: rotate(-2deg);
  box-shadow:
    0 26px 70px rgba(0, 0, 0, 0.58),
    0 0 44px rgba(112, 234, 255, 0.16);
}

.profile-tile-brittany {
  left: 0;
  top: 11%;
  transform: rotate(-8deg);
}

.profile-tile-damx {
  right: 1%;
  top: 12%;
  width: 208px;
  height: 130px;
  opacity: 1;
  transform: rotate(6deg);
  animation-delay: -2.1s;
}

.profile-tile-zun {
  left: 4%;
  bottom: 12%;
  width: 238px;
  height: 142px;
  transform: rotate(4deg);
  animation-delay: -3.6s;
}

.profile-tile-dr {
  right: 3%;
  bottom: 10%;
  width: 250px;
  height: 144px;
  opacity: 1;
  transform: rotate(-5deg);
  animation-delay: -1.4s;
}

.profile-tile-rx {
  left: 30%;
  bottom: 0;
  width: 188px;
  height: 118px;
  opacity: 1;
  transform: rotate(7deg);
  animation-delay: -4.7s;
}

.profile-tile-froggy {
  right: 28%;
  bottom: 1%;
  width: 184px;
  height: 116px;
  opacity: 1;
  transform: rotate(-8deg);
  animation-delay: -5.8s;
}

.profile-tile-viktor {
  left: 35%;
  top: -2%;
  width: 172px;
  height: 108px;
  opacity: 1;
  transform: rotate(9deg);
  animation-delay: -6.6s;
}

.collage-screen {
  position: absolute;
  inset: 8% 7% 10% 9%;
  overflow: hidden;
  border: 1px solid rgba(201, 220, 255, 0.16);
  border-radius: 30px;
  background:
    radial-gradient(circle at 50% 40%, rgba(112, 234, 255, 0.15), transparent 24%),
    radial-gradient(circle at 50% 72%, rgba(168, 117, 255, 0.2), transparent 36%),
    #080913;
  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.52),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  transform: rotate(-2.8deg) translateZ(22px);
  z-index: 4;
}

.collage-screen::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(circle at 19% 26%, rgba(112, 234, 255, 0.12), transparent 9%),
    radial-gradient(circle at 74% 23%, rgba(168, 117, 255, 0.14), transparent 11%),
    radial-gradient(circle at 82% 72%, rgba(112, 234, 255, 0.1), transparent 10%),
    linear-gradient(180deg, rgba(5, 5, 17, 0.3), rgba(5, 5, 17, 0.68));
  pointer-events: none;
}

.collage-screen::after {
  content: "";
  position: absolute;
  inset: -4%;
  z-index: 1;
  background:
    radial-gradient(circle at 50% 36%, transparent 0 14%, rgba(5, 5, 17, 0.34) 30%, rgba(5, 5, 17, 0.86) 84%),
    repeating-radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 54px);
  opacity: 0.92;
}

.collage-screen img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.16;
  filter: saturate(0.62) contrast(1.12) brightness(0.5) blur(1.4px);
  transform: scale(1.14);
  mix-blend-mode: luminosity;
}

.screen-back,
.screen-dots,
.screen-avatar,
.screen-name,
.screen-status {
  position: absolute;
  z-index: 4;
  display: block;
}

.screen-back {
  top: 10%;
  left: 7%;
  width: 64px;
  height: 64px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  background: rgba(6, 7, 19, 0.45);
}

.screen-back::before {
  content: "";
  position: absolute;
  top: 21px;
  left: 25px;
  width: 18px;
  height: 18px;
  border-left: 5px solid rgba(255, 255, 255, 0.86);
  border-bottom: 5px solid rgba(255, 255, 255, 0.86);
  transform: rotate(45deg);
}

.screen-dots {
  top: 12%;
  right: 8%;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 16px 0 rgba(255, 255, 255, 0.78), 0 32px 0 rgba(255, 255, 255, 0.7);
}

.screen-avatar {
  top: 19%;
  left: 50%;
  width: 132px;
  height: 132px;
  border-radius: 50%;
  background:
    linear-gradient(rgba(91, 79, 255, 0.2), rgba(112, 234, 255, 0.12)),
    url("assets/durov-profile-shot.jpg") center 34% / 310%;
  box-shadow:
    0 0 0 12px rgba(168, 117, 255, 0.14),
    0 24px 58px rgba(0, 0, 0, 0.46);
  opacity: 0.55;
  transform: translateX(-50%);
}

.screen-name,
.screen-status {
  left: 50%;
  height: 16px;
  border-radius: 999px;
  transform: translateX(-50%);
}

.screen-name {
  bottom: 25%;
  width: 42%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.82), rgba(112, 234, 255, 0.34));
}

.screen-status {
  bottom: 18%;
  width: 31%;
  background: rgba(255, 255, 255, 0.24);
}

.collage-egg,
.collage-sticker,
.collage-spark {
  position: absolute;
  pointer-events: none;
}

.collage-egg {
  z-index: 3;
  width: 82px;
  object-fit: contain;
  filter:
    drop-shadow(0 0 16px rgba(112, 234, 255, 0.5))
    drop-shadow(0 16px 24px rgba(0, 0, 0, 0.28));
  mix-blend-mode: screen;
  animation: collageFloat 6.4s ease-in-out infinite;
}

.collage-egg-one {
  left: 10%;
  top: 19%;
  width: 72px;
  transform: rotate(-10deg);
}

.collage-egg-two {
  right: 14%;
  top: 16%;
  width: 78px;
  animation-delay: -1.8s;
}

.collage-egg-three {
  left: 14%;
  bottom: 15%;
  width: 96px;
  animation-delay: -3.2s;
}

.collage-egg-four {
  right: 30%;
  bottom: 18%;
  width: 68px;
  animation-delay: -4.4s;
}

.collage-sticker {
  display: none;
  z-index: 2;
  opacity: 0.58;
  width: 86px;
  height: 86px;
  border-radius: 26px;
  background:
    radial-gradient(circle, rgba(168, 117, 255, 0.2), transparent 62%),
    rgba(112, 234, 255, 0.035);
  filter: drop-shadow(0 0 26px rgba(168, 117, 255, 0.28));
  opacity: 0.92;
  animation: collageFloat 7.4s ease-in-out infinite;
}

.collage-sticker svg {
  width: 100%;
  height: 100%;
}

.collage-sticker-one {
  left: 26%;
  top: 4%;
  transform: rotate(-8deg);
  animation-delay: -2s;
}

.collage-sticker-two {
  right: 2%;
  top: 35%;
  width: 74px;
  height: 74px;
  animation-delay: -3.8s;
}

.collage-sticker-three {
  left: 1%;
  bottom: 30%;
  width: 78px;
  height: 78px;
  animation-delay: -5.2s;
}

.collage-spark {
  z-index: 5;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.82) 0 2px, transparent 3px),
    radial-gradient(circle, rgba(112, 234, 255, 0.16), transparent 66%);
  opacity: 0.7;
  animation: sparkTwinkle 4.2s ease-in-out infinite;
}

.collage-spark::before,
.collage-spark::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: rgba(255, 255, 255, 0.62);
  transform: translate(-50%, -50%);
}

.collage-spark::before {
  width: 2px;
  height: 34px;
}

.collage-spark::after {
  width: 34px;
  height: 2px;
}

.collage-spark-one {
  left: 20%;
  top: 9%;
}

.collage-spark-two {
  right: 24%;
  top: 32%;
  animation-delay: -1.6s;
}

.collage-spark-three {
  left: 39%;
  bottom: 13%;
  animation-delay: -2.8s;
}

.sticker-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.44fr) minmax(0, 1fr);
  gap: 42px;
  align-items: center;
}

.sticker-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(92px, 1fr));
  gap: 12px;
}

.sticker-grid > div {
  aspect-ratio: 1;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 42%, rgba(112, 234, 255, 0.08), transparent 48%),
    rgba(248, 245, 236, 0.04);
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(112, 234, 255, 0.08);
  animation: stickerLift 7s ease-in-out infinite;
}

.sticker-grid > div:nth-child(2n) {
  animation-delay: -1.8s;
}

.sticker-grid > div:nth-child(3n) {
  animation-delay: -3.2s;
}

.page-hero,
.board-hero {
  position: relative;
  isolation: isolate;
  min-height: 520px;
  padding: 82px 7vw;
  background:
    radial-gradient(circle at 76% 36%, rgba(168, 117, 255, 0.16), transparent 30rem),
    radial-gradient(circle at 22% 78%, rgba(112, 234, 255, 0.1), transparent 22rem),
    linear-gradient(90deg, rgba(7, 7, 19, 0.98), rgba(7, 7, 19, 0.86)),
    var(--panel);
  border-bottom: 1px solid var(--line);
}

.page-hero h1,
.board-hero h1 {
  font-size: 5rem;
}

.token-panel {
  justify-self: end;
  width: min(100%, 460px);
  position: relative;
  display: grid;
  gap: 18px;
  overflow: hidden;
  padding: 24px;
  border: 1px solid rgba(201, 220, 255, 0.18);
  border-radius: 10px;
  background:
    linear-gradient(90deg, rgba(112, 234, 255, 0.07) 1px, transparent 1px),
    linear-gradient(rgba(168, 117, 255, 0.055) 1px, transparent 1px),
    radial-gradient(circle at 50% 0%, rgba(112, 234, 255, 0.15), transparent 42%),
    linear-gradient(145deg, rgba(168, 117, 255, 0.16), rgba(10, 11, 31, 0.96));
  background-size: 52px 52px, 52px 52px, auto, auto;
  box-shadow: 0 24px 70px var(--shadow);
  transform-style: preserve-3d;
  transition: transform 140ms ease-out;
}

.token-panel::before {
  content: "";
  position: absolute;
  inset: auto -20% -35% -20%;
  height: 54%;
  background: radial-gradient(ellipse at center, rgba(112, 234, 255, 0.18), transparent 68%);
  filter: blur(10px);
  pointer-events: none;
}

.token-panel::after,
.leaderboard-shell::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(112, 234, 255, 0.58), rgba(168, 117, 255, 0.42), transparent);
  pointer-events: none;
}

.token-panel-art {
  position: relative;
  min-height: 238px;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.token-panel-art::before {
  content: "";
  position: absolute;
  inset: 12% 18%;
  z-index: -1;
  border: 1px solid rgba(112, 234, 255, 0.24);
  border-radius: 50%;
  transform: rotateX(64deg) rotateZ(-12deg);
  box-shadow: 0 0 0 22px rgba(112, 234, 255, 0.025);
  animation: ringBreath 6.8s ease-in-out infinite;
}

.token-panel-sticker {
  width: min(300px, 78%);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  transform: translateY(4px);
  filter:
    drop-shadow(0 0 24px rgba(112, 234, 255, 0.26))
    drop-shadow(0 22px 28px rgba(0, 0, 0, 0.34));
}

.token-panel-sticker svg {
  width: 100% !important;
  height: 100% !important;
  display: block;
  overflow: visible;
}

.token-console {
  position: relative;
  display: grid;
  gap: 12px;
}

.token-console-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.token-console-grid small {
  min-height: 42px;
  display: grid;
  place-items: center;
  padding: 8px;
  border: 1px solid rgba(201, 220, 255, 0.12);
  border-radius: 7px;
  background: rgba(6, 7, 19, 0.38);
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  text-align: center;
}

.route-section {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.route-item {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 88% 12%, rgba(112, 234, 255, 0.08), transparent 42%),
    var(--panel);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.route-item::after {
  content: "";
  position: absolute;
  inset: auto 18px 18px;
  height: 2px;
  background: linear-gradient(90deg, var(--green), var(--yellow));
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 220ms ease;
}

.route-item:hover {
  transform: translateY(-6px);
  border-color: rgba(112, 234, 255, 0.36);
  background:
    radial-gradient(circle at 88% 12%, rgba(112, 234, 255, 0.14), transparent 42%),
    var(--panel);
}

.route-item:hover::after {
  transform: scaleX(1);
}

.route-item span {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--yellow);
  font-weight: 900;
}

.route-item h2 {
  font-size: 2rem;
}

.route-item p {
  color: var(--muted);
  margin: 18px 0 0;
}

.token-cta {
  display: grid;
  grid-template-columns: minmax(0, 0.6fr) minmax(340px, 0.7fr);
  gap: 40px;
  align-items: center;
  background:
    radial-gradient(circle at 20% 20%, rgba(168, 117, 255, 0.12), transparent 26rem),
    #0b0b18;
  border-top: 1px solid var(--line);
}

.link-grid {
  display: grid;
  gap: 10px;
}

.link-grid a {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(20, 20, 46, 0.68);
  font-weight: 900;
  transition: transform 160ms ease, border-color 160ms ease;
}

.link-grid a::after {
  content: "OPEN";
  color: var(--green);
  font-size: 0.72rem;
}

.board-hero {
  grid-template-columns: minmax(0, 0.72fr) minmax(360px, 0.9fr);
}

.board-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.board-pills span,
.board-pills a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  border: 1px solid rgba(201, 220, 255, 0.14);
  border-radius: 999px;
  background: rgba(12, 13, 34, 0.62);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
}

.board-pills span:first-child {
  color: var(--green);
}

.board-pills a {
  color: #050611;
  border-color: rgba(112, 234, 255, 0.42);
  background: linear-gradient(135deg, var(--green), #bca3ff);
  box-shadow: 0 12px 30px rgba(112, 234, 255, 0.14);
}

.leaderboard-shell {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(112, 234, 255, 0.05) 1px, transparent 1px),
    linear-gradient(rgba(168, 117, 255, 0.045) 1px, transparent 1px),
    radial-gradient(circle at 88% 0%, rgba(168, 117, 255, 0.1), transparent 28rem),
    #090916;
  background-size: 78px 78px, 78px 78px, auto, auto;
}

.leaderboard-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line);
}

.leaderboard-head h2 {
  font-size: 3.8rem;
}

.leaderboard-status {
  min-width: 180px;
  text-align: right;
}

.leaderboard-status small {
  display: block;
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.leaderboard-status strong {
  display: block;
  color: var(--yellow);
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 0.9;
}

.leaderboard-status span {
  color: var(--muted);
  font-weight: 800;
}

.leaderboard-tools {
  position: sticky;
  top: 76px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 20px 0;
  padding: 14px;
  border: 1px solid rgba(201, 220, 255, 0.13);
  border-radius: 8px;
  background: rgba(7, 7, 19, 0.76);
  box-shadow:
    0 18px 48px rgba(0, 0, 0, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px);
}

.leaderboard-tools strong,
.leaderboard-tools span {
  display: block;
}

.leaderboard-tools span {
  color: var(--muted);
  margin-top: 3px;
}

.supply-strip {
  display: grid;
  grid-template-columns: 1.05fr 1fr 1fr 0.95fr;
  gap: 1px;
  overflow: hidden;
  margin: 0 0 22px;
  border: 1px solid rgba(201, 220, 255, 0.13);
  border-radius: 8px;
  background: rgba(201, 220, 255, 0.12);
  box-shadow:
    0 20px 70px rgba(6, 8, 24, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.supply-strip article {
  min-height: 142px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px;
  background:
    radial-gradient(circle at 12% 8%, rgba(112, 234, 255, 0.14), transparent 46%),
    linear-gradient(145deg, rgba(13, 16, 37, 0.96), rgba(8, 8, 20, 0.92));
}

.supply-strip article:nth-child(2) {
  background:
    radial-gradient(circle at 12% 8%, rgba(168, 117, 255, 0.18), transparent 46%),
    linear-gradient(145deg, rgba(17, 13, 42, 0.96), rgba(8, 8, 20, 0.92));
}

.supply-strip small {
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.supply-strip strong {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.2vw, 3.8rem);
  line-height: 0.9;
}

.supply-strip span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.35;
}

.leaderboard-controls {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: nowrap;
}

.holder-search {
  flex: 0 1 430px;
  min-height: 50px;
  width: min(100%, 430px);
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto;
  align-items: center;
  gap: 8px;
  padding: 5px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background:
    radial-gradient(circle at 12% 50%, rgba(112, 234, 255, 0.09), transparent 52%),
    rgba(9, 10, 28, 0.74);
  box-shadow: inset 0 1px 0 rgba(112, 234, 255, 0.08);
}

.holder-search input {
  min-width: 0;
  height: 40px;
  border: 0;
  outline: 0;
  padding: 0 11px;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-weight: 800;
}

.holder-search input::placeholder {
  color: rgba(183, 183, 212, 0.72);
}

.holder-search input::-webkit-search-cancel-button {
  filter: invert(1);
}

.leaderboard-more {
  display: flex;
  justify-content: center;
  padding-top: 20px;
}

.leaderboard-more .button {
  min-width: 220px;
}

.button:disabled {
  cursor: wait;
  opacity: 0.58;
  transform: none;
}

.podium {
  display: grid;
  grid-template-columns: 1.15fr 1fr 0.9fr;
  gap: 14px;
  margin-bottom: 18px;
}

.podium-slot {
  position: relative;
  min-height: 210px;
  overflow: hidden;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 20% 10%, rgba(112, 234, 255, 0.08), transparent 42%),
    linear-gradient(145deg, rgba(168, 117, 255, 0.09), rgba(248, 245, 236, 0.025));
  transition: transform 180ms ease, border-color 180ms ease;
}

.podium-slot:first-child {
  border-color: rgba(255, 212, 95, 0.55);
}

.podium-slot:hover,
.leaderboard-row:hover {
  transform: translateY(-4px);
  border-color: rgba(112, 234, 255, 0.34);
}

.podium-slot::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: var(--green);
}

.podium-slot:first-child::after {
  background: var(--yellow);
}

.podium-top {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.holder-face {
  width: 56px;
  height: 56px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--green), var(--yellow));
  color: #050611;
  font-weight: 900;
}

.podium-holder {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 36px;
}

.podium-holder h3 {
  font-size: 1.28rem;
}

.podium-holder a,
.podium-holder small {
  color: var(--muted);
  font-size: 0.86rem;
}

.podium-count {
  display: flex;
  align-items: end;
  gap: 8px;
  margin-top: 24px;
}

.podium-count strong {
  color: var(--yellow);
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 0.8;
}

.podium-count span {
  color: var(--muted);
  font-weight: 900;
}

.leaderboard-list {
  display: grid;
  gap: 8px;
}

.leaderboard-row {
  min-height: 74px;
  display: grid;
  grid-template-columns: 42px 56px minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 14px;
  padding: 9px 12px 9px 10px;
  border: 1px solid rgba(248, 245, 236, 0.1);
  border-radius: 8px;
  background: rgba(20, 20, 46, 0.52);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.leaderboard-row:hover {
  background:
    radial-gradient(circle at 8% 50%, rgba(112, 234, 255, 0.08), transparent 34%),
    rgba(20, 20, 46, 0.64);
}

.rank {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--yellow);
  font-weight: 900;
}

.holder-name {
  min-width: 0;
}

.holder-name strong,
.holder-name span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.holder-name span {
  color: var(--muted);
  font-size: 0.84rem;
}

.egg-count {
  min-width: 54px;
  color: var(--green);
  font-family: var(--font-display);
  font-size: 1.45rem;
  text-align: right;
}

.row-link {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
}

.leaderboard-error {
  padding: 24px;
  border: 1px solid rgba(255, 79, 109, 0.32);
  border-radius: 8px;
  background: rgba(255, 79, 109, 0.08);
  color: var(--muted);
}

.skeleton {
  position: relative;
  overflow: hidden;
}

.skeleton::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
  transform: translateX(-100%);
  animation: shimmer 1.2s ease-in-out infinite;
}

.site-footer {
  min-height: 76px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 22px 7vw;
  border-top: 1px solid var(--line);
  background: #050511;
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer a {
  color: var(--green);
  font-weight: 900;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 560ms ease, transform 560ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes shimmer {
  to {
    transform: translateX(100%);
  }
}

@keyframes panelScan {
  0%,
  42% {
    transform: translateX(-112%);
  }
  58%,
  100% {
    transform: translateX(112%);
  }
}

@keyframes auraDrift {
  0% {
    transform: translate3d(-2%, -1%, 0) rotate(0deg) scale(1);
  }
  100% {
    transform: translate3d(2%, 1%, 0) rotate(18deg) scale(1.08);
  }
}

@keyframes gridGlide {
  to {
    background-position: 72px 72px;
  }
}

@keyframes heroFloat {
  0%,
  100% {
    transform: translateY(0) rotate(-2deg);
  }
  50% {
    transform: translateY(-12px) rotate(2deg);
  }
}

@keyframes haloPulse {
  0%,
  100% {
    opacity: 0.55;
    transform: scale(0.96);
  }
  50% {
    opacity: 0.95;
    transform: scale(1.06);
  }
}

@keyframes orbitSpin {
  to {
    transform: rotateX(64deg) rotateZ(380deg);
  }
}

@keyframes ringBreath {
  0%,
  100% {
    transform: rotateX(66deg) rotateZ(-16deg) scale(0.96);
    opacity: 0.74;
  }
  50% {
    transform: rotateX(66deg) rotateZ(-10deg) scale(1.04);
    opacity: 1;
  }
}

@keyframes badgeBob {
  0%,
  100% {
    transform: translateY(0) rotate(-2deg);
  }
  50% {
    transform: translateY(-10px) rotate(4deg);
  }
}

@keyframes stripFlow {
  to {
    background-position: 260% 0;
  }
}

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

@keyframes collageFloat {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -12px;
  }
}

@keyframes sparkTwinkle {
  0%,
  100% {
    opacity: 0.36;
    transform: scale(0.84) rotate(0deg);
  }
  50% {
    opacity: 0.82;
    transform: scale(1.05) rotate(12deg);
  }
}

@keyframes profileDrift {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -8px;
  }
}

@media (max-width: 1080px) {
  .site-signature,
  .hero-signal-panel {
    display: none;
  }

  .home-hero,
  .split-section,
  .proof-band,
  .identity-corridor,
  .page-hero,
  .board-hero,
  .sticker-section,
  .token-cta {
    grid-template-columns: 1fr;
  }

  .ninja-stage,
  .identity-orbit,
  .identity-frame,
  .token-panel,
  .board-collage {
    justify-self: center;
  }

  h1,
  .page-hero h1,
  .board-hero h1 {
    font-size: 4.4rem;
  }

  .route-section {
    grid-template-columns: 1fr;
  }

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

  .identity-corridor .section-copy {
    order: -1;
  }
}

@media (max-width: 760px) {
  body::after {
    display: none;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    gap: 12px;
    padding: 10px 16px;
  }

  .site-nav {
    order: 3;
    grid-column: 1 / -1;
    width: 100%;
    justify-content: space-between;
  }

  .site-nav a {
    flex: 1;
    text-align: center;
    padding: 8px 6px;
  }

  .header-action {
    min-height: 42px;
    padding: 0 14px;
  }

  .header-controls {
    gap: 8px;
  }

  .language-select {
    min-height: 42px;
    min-width: 70px;
    padding-left: 10px;
  }

  .brand small {
    display: none;
  }

  .home-hero {
    min-height: auto;
    padding: 42px 20px 34px;
  }

  .hero-copy::before,
  .section-index::before,
  .section-index::after {
    display: none;
  }

  .page-hero,
  .board-hero,
  .split-section,
  .proof-band,
  .identity-corridor,
  .sticker-section,
  .route-section,
  .token-cta,
  .leaderboard-shell {
    padding: 58px 20px;
  }

  h1,
  .page-hero h1,
  .board-hero h1 {
    font-size: 3rem;
  }

  h2,
  .leaderboard-head h2 {
    font-size: 2.25rem;
  }

  .hero-lede,
  .section-copy p:not(.eyebrow),
  .page-hero p,
  .board-hero p {
    font-size: 1rem;
  }

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

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

  .button {
    width: 100%;
  }

  .contract-mini {
    grid-template-columns: 1fr auto;
  }

  .contract-mini span {
    grid-column: 1 / -1;
  }

  .ninja-stage {
    position: relative;
    right: auto;
    bottom: auto;
    z-index: 1;
    width: min(82vw, 300px);
    min-width: 0;
    margin: 18px auto 0;
    opacity: 1;
    pointer-events: auto;
  }

  .video-stage {
    width: min(92vw, 540px);
    aspect-ratio: 16 / 9;
  }

  .egg-orb {
    right: 2%;
    bottom: 14%;
    width: 64px;
  }

  .ticker-stack {
    left: 1%;
    top: 10%;
    transform: scale(0.86);
    transform-origin: left top;
    opacity: 0.62;
  }

  .board-collage {
    width: min(100%, 680px);
    max-width: calc(100vw - 40px);
  }

  .profile-tile {
    width: 190px;
    height: 116px;
  }

  .profile-tile-durov {
    width: 270px;
    height: 132px;
    left: 24%;
    top: 29%;
  }

  .profile-tile-zun,
  .profile-tile-dr {
    width: 214px;
    height: 128px;
  }

  .ticker-stack {
    display: none;
  }

  .flywheel,
  .token-console-grid,
  .sticker-grid,
  .podium {
    grid-template-columns: 1fr;
  }

  .identity-orbit {
    width: min(100%, 360px);
  }

  .orbit-node {
    min-width: 76px;
    min-height: 38px;
    font-size: 0.86rem;
  }

  .identity-frame {
    width: min(100%, 390px);
    min-height: 360px;
  }

  .identity-frame-durov {
    width: 88%;
  }

  .identity-frame-ninja {
    width: 44%;
  }

  .identity-frame-egg {
    width: 24%;
  }

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

  .flywheel span {
    min-height: 94px;
  }

  .leaderboard-head,
  .leaderboard-tools {
    align-items: flex-start;
    flex-direction: column;
  }

  .leaderboard-tools {
    position: static;
  }

  .leaderboard-status {
    text-align: left;
  }

  .supply-strip {
    grid-template-columns: 1fr;
  }

  .supply-strip article {
    min-height: 124px;
  }

  .leaderboard-row {
    grid-template-columns: 40px minmax(0, 1fr) auto;
    gap: 10px;
  }

  .leaderboard-row .holder-face,
  .row-link {
    display: none;
  }

  .leaderboard-controls,
  .holder-search {
    width: 100%;
  }

  .leaderboard-controls {
    display: grid;
    grid-template-columns: 1fr;
  }

  .holder-search {
    grid-template-columns: 1fr auto;
  }

  .board-collage {
    min-height: 0;
    aspect-ratio: auto;
    padding: 12px;
    overflow: visible;
  }

  .board-collage::before {
    inset: 0;
    border-radius: 18px;
  }

  .board-collage::after {
    inset: 13% 7%;
  }

  .board-collage-art {
    width: 100%;
    max-width: 100%;
  }

  .collage-screen {
    inset: 9% 5% 9%;
    border-radius: 24px;
  }

  .profile-tile {
    width: 145px;
    height: 92px;
    border-radius: 14px;
  }

  .profile-tile-durov {
    left: 14%;
    top: 34%;
    width: 212px;
    height: 104px;
  }

  .profile-tile-zun,
  .profile-tile-dr {
    width: 164px;
    height: 100px;
  }

  .profile-tile-brittany {
    left: 0;
    top: 15%;
  }

  .profile-tile-damx {
    right: 0;
    top: 14%;
  }

  .profile-tile-viktor,
  .profile-tile-froggy {
    display: none;
  }

  .screen-back {
    width: 52px;
    height: 52px;
  }

  .screen-back::before {
    top: 17px;
    left: 20px;
    width: 15px;
    height: 15px;
    border-left-width: 4px;
    border-bottom-width: 4px;
  }

  .screen-avatar {
    width: 108px;
    height: 108px;
  }

  .collage-egg {
    width: 62px;
  }

  .collage-egg-three {
    width: 78px;
  }

  .collage-sticker {
    width: 68px;
    height: 68px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    padding: 22px 20px;
  }
}

@media (max-width: 430px) {
  .cursor-glow {
    display: none;
  }

  .brand-icon {
    width: 48px;
    height: 48px;
  }

  .brand strong {
    font-size: 1rem;
  }

  .header-action {
    font-size: 0.84rem;
  }

  .header-controls {
    gap: 6px;
  }

  .language-select {
    min-width: 62px;
    padding: 0 20px 0 8px;
    font-size: 0.78rem;
  }

  .header-action {
    padding: 0 10px;
    font-size: 0.78rem;
  }

  h1,
  .page-hero h1,
  .board-hero h1 {
    font-size: 2.58rem;
  }

  .ninja-stage {
    width: min(70vw, 240px);
    min-width: 0;
  }

  .video-stage {
    width: min(92vw, 350px);
  }

  .hero-video-caption {
    left: 10px;
    right: 10px;
    bottom: 10px;
    padding: 8px 9px;
  }

  .hero-video-caption span {
    display: none;
  }

  .video-sound-toggle {
    top: 10px;
    right: 10px;
    min-height: 36px;
    padding: 0 10px;
    font-size: 0.78rem;
  }

  .hero-character-sticker {
    width: 100%;
  }

  .hero-proofline span {
    min-height: 62px;
  }

  .identity-frame {
    min-height: 300px;
  }

  .token-panel {
    padding: 18px;
  }

  .token-panel-art {
    min-height: 214px;
  }

  .token-panel-sticker {
    width: min(250px, 82%);
  }

  .ticker-strip span {
    min-width: 190px;
  }

  .holder-search {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 360px) {
  .brand span:last-child {
    display: none;
  }
}

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