:root {
  color-scheme: dark;
  --bg: #031220;
  --bg-2: #041a2d;
  --panel: rgba(5, 34, 57, 0.82);
  --panel-2: rgba(9, 48, 79, 0.76);
  --line: rgba(112, 224, 255, 0.24);
  --text: #f4fbff;
  --muted: #a9c6d6;
  --cyan: #1de7ff;
  --green: #9bff14;
  --teal: #1ee0b8;
  --orange: #ffac2f;
  --purple: #935cff;
  --danger: #ff6b47;
  --radius: 8px;
  --max: 1240px;
  font-family: Inter, "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    radial-gradient(circle at 70% 4%, rgba(33, 211, 255, 0.3), transparent 32rem),
    radial-gradient(circle at 7% 18%, rgba(99, 255, 151, 0.18), transparent 28rem),
    linear-gradient(180deg, #020812 0%, #061c31 44%, #03101d 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  opacity: 0.72;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.72) 0 1px, transparent 1.4px),
    radial-gradient(circle, rgba(50, 225, 255, 0.65) 0 1px, transparent 1.3px);
  background-position: 0 0, 44px 30px;
  background-size: 110px 110px, 170px 170px;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(29, 231, 255, 0.045) 1px, transparent 1px),
    linear-gradient(0deg, rgba(29, 231, 255, 0.038) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, black, transparent 70%);
}

body.modal-open {
  overflow: hidden;
}

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

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

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

button {
  font: inherit;
}

.site-shell {
  width: min(100%, 1440px);
  margin: 0 auto;
  overflow: clip;
  border-inline: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(3, 18, 32, 0.84), rgba(2, 12, 23, 0.93));
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 82px;
  padding: 18px clamp(18px, 2.2vw, 30px);
  border-bottom: 1px solid rgba(88, 211, 255, 0.12);
  background: rgba(2, 9, 18, 0.82);
  backdrop-filter: blur(18px);
}

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

.brand-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 3px solid #e9f8ff;
  border-radius: 8px;
  background:
    linear-gradient(90deg, #0c8fd7 0 35%, #78d944 35% 66%, #18a2e6 66%),
    #063a42;
  box-shadow: 0 0 0 3px rgba(30, 224, 184, 0.14), 0 0 24px rgba(29, 231, 255, 0.5);
  transition: transform 180ms ease;
  animation: logoPulse 2.8s ease-in-out infinite;
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  top: 12px;
  width: 5px;
  height: 16px;
  background: #fff;
}

.brand-mark::before {
  left: 15px;
}

.brand-mark::after {
  right: 15px;
}

.brand-mark span {
  position: absolute;
  width: 10px;
  height: 18px;
  top: 13px;
  background: #f39a1b;
}

.brand-mark span:first-child {
  left: -6px;
}

.brand-mark span:last-child {
  right: -6px;
}

.brand-copy {
  display: grid;
  line-height: 1;
}

.brand-copy strong {
  font-size: clamp(24px, 2.4vw, 36px);
  letter-spacing: 0;
  text-shadow: 0 0 18px rgba(155, 255, 20, 0.48);
}

.brand:hover .brand-mark {
  transform: rotate(-3deg) scale(1.05);
}

.brand-copy small {
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 1.05vw, 15px);
  flex: 1;
  min-width: 0;
  /* Keep the desktop navigation readable.  Individual links used to be
     allowed to shrink inside this flex row, which made the browser render
     labels as “关于W…/商业…”.  The row itself may still flex, but the link
     labels must retain their intrinsic width. */
  overflow: visible;
}

.nav-links a {
  position: relative;
  flex: 0 0 auto;
  min-width: max-content;
  overflow: visible;
  padding-block: 10px;
  color: #d9edf7;
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
  text-overflow: clip;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1px;
  height: 3px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--green);
  transition: transform 180ms ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-primary {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.05vw, 15px);
  min-width: 0;
}

.nav-more-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 12px;
  border: 1px solid rgba(88, 211, 255, 0.25);
  border-radius: 10px;
  color: #d9edf7;
  background: rgba(5, 24, 40, 0.6);
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease;
}

.nav-more-btn:hover,
.nav-more-btn[aria-expanded="true"] {
  border-color: var(--green);
  color: var(--green);
  background: rgba(155, 255, 20, 0.1);
}

.nav-more-btn svg {
  transition: transform 180ms ease;
}

.nav-more-btn[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.nav-more-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 30;
  display: grid;
  min-width: 140px;
  padding: 8px;
  border: 1px solid rgba(88, 211, 255, 0.22);
  border-radius: 14px;
  background: rgba(4, 18, 36, 0.96);
  box-shadow: 0 16px 46px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(18px);
}

.nav-more-menu a {
  padding: 9px 14px;
  border-radius: 10px;
  color: #d9edf7;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease;
}

.nav-more-menu a:hover,
.nav-more-menu a.active {
  color: var(--green);
  background: rgba(155, 255, 20, 0.12);
}

.nav-more-menu a::after {
  display: none;
}

@media (max-width: 1024px) {
  .nav-more-wrap {
    display: none;
  }
}

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

.menu-toggle,
.mobile-menu-actions {
  display: none;
}

.menu-toggle {
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(168, 226, 255, 0.35);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #e9fbff;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle span + span {
  margin-top: 4px;
}

.language,
.join-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 20px;
  border-radius: 8px;
  font-weight: 800;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.language {
  color: #e8f8ff;
  border: 1px solid rgba(168, 226, 255, 0.35);
  background: rgba(255, 255, 255, 0.04);
}

.language-picker {
  position: relative;
  z-index: 145;
  flex: 0 0 auto;
}

.language-picker > .language {
  min-width: 126px;
  justify-content: flex-start;
  gap: 12px;
  padding-inline: 12px 14px;
  border: 1px solid rgba(176, 200, 210, 0.65);
  border-radius: 14px;
  background: #fff;
  color: #173143;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(16, 37, 54, 0.06);
}

.language-picker > .language:hover,
.language-picker > .language:focus-visible,
.language-picker.is-open > .language {
  border-color: #0b9c78;
  box-shadow: 0 8px 24px rgba(14, 167, 124, 0.14);
}

.language-current-flag,
.language-option-flag {
  display: inline-block;
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  overflow: hidden;
  border: 1px solid rgba(16, 37, 54, 0.12);
  border-radius: 50%;
  box-shadow: 0 2px 9px rgba(0, 0, 0, 0.08);
}

.language-current-flag {
  width: 30px;
  height: 30px;
}

.language-chevron {
  margin-left: auto;
  color: #61778a;
  font-size: 24px;
  line-height: 1;
  transform: translateY(3px);
  transition: transform 180ms ease;
}

.language-picker.is-open .language-chevron {
  transform: translateY(1px) rotate(180deg);
}

.language-menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: min(840px, calc(100vw - 36px));
  max-height: min(760px, calc(100vh - 118px));
  overflow: auto;
  padding: 24px;
  border: 1px solid rgba(176, 200, 210, 0.65);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 28px 90px rgba(16, 37, 54, 0.16);
  backdrop-filter: blur(24px);
}

.language-menu[hidden] {
  display: none;
}

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

.language-option {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 60px;
  padding: 10px 14px;
  border: 1px solid transparent;
  border-radius: 28px;
  color: #173143;
  background: transparent;
  font-size: 19px;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.language-option:hover,
.language-option:focus-visible,
.language-option.is-selected {
  border-color: rgba(14, 167, 124, 0.2);
  color: #0b9c78;
  background: #e9f7f2;
}

.language-option:hover {
  transform: translateY(-1px);
}

.language-option-check {
  margin-left: auto;
  color: #0b9c78;
  font-size: 15px;
  opacity: 0;
}

.language-option.is-selected .language-option-check {
  opacity: 1;
}

.join-btn,
.primary-btn,
.wide-action {
  color: #061019;
  background: linear-gradient(135deg, var(--green), var(--teal));
  box-shadow: 0 14px 32px rgba(30, 224, 184, 0.24);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(340px, 0.85fr) minmax(520px, 1.2fr);
  gap: clamp(18px, 3vw, 48px);
  min-height: 720px;
  padding: 78px clamp(18px, 5vw, 78px) 40px;
  isolation: isolate;
}

.star-field {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 72% 36%, rgba(0, 153, 255, 0.46), transparent 28rem),
    radial-gradient(circle at 39% 24%, rgba(98, 53, 255, 0.18), transparent 17rem),
    linear-gradient(180deg, rgba(0, 0, 0, 0.25), rgba(1, 36, 61, 0.45));
}

.meme-sticker-layer,
.wow-clones {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.meme-sticker {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 14px;
  color: #061019;
  font-size: clamp(12px, 1.1vw, 16px);
  font-weight: 1000;
  border: 3px solid rgba(255, 255, 255, 0.88);
  border-radius: 8px;
  background: linear-gradient(135deg, #ffffff, #9bff14 52%, #1de7ff);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25), 0 0 22px rgba(155, 255, 20, 0.28);
  transform: rotate(var(--sticker-rotate, -7deg));
  animation: stickerFloat 5s ease-in-out infinite;
}

.sticker-a { left: 38%; top: 16%; --sticker-rotate: -8deg; }
.sticker-b { left: 32%; top: 12%; --sticker-rotate: 6deg; animation-delay: -1.2s; }
.sticker-d { right: 7%; top: 19%; --sticker-rotate: 9deg; animation-delay: -3s; }
.sticker-c,
.sticker-e { display: none; }

.wow-clones {
  z-index: 0;
  opacity: 0.16;
  overflow: hidden;
}

.wow-clones span {
  position: absolute;
  color: transparent;
  font-size: clamp(80px, 10vw, 150px);
  font-weight: 1000;
  line-height: 1;
  -webkit-text-stroke: 1px rgba(155, 255, 20, 0.35);
  text-shadow: 0 0 28px rgba(29, 231, 255, 0.16);
  animation: cloneDrift 16s linear infinite;
}

.wow-clones span:nth-child(1) { left: -4%; top: 8%; }
.wow-clones span:nth-child(2) { left: 28%; top: 44%; animation-delay: -4s; }
.wow-clones span:nth-child(3) { right: -2%; top: 8%; animation-delay: -8s; }
.wow-clones span:nth-child(4) { left: 4%; bottom: 0; animation-delay: -12s; }
.wow-clones span:nth-child(5) { right: 18%; bottom: 10%; animation-delay: -6s; }

.hero-copy {
  position: relative;
  z-index: 3;
  align-self: center;
  max-width: 600px;
}

.eyebrow {
  display: inline-flex;
  margin: 0 0 22px;
  padding: 8px 16px;
  color: #d9c5ff;
  font-weight: 900;
  font-size: 14px;
  border: 1px solid rgba(147, 92, 255, 0.6);
  border-radius: 8px;
  background: rgba(76, 34, 149, 0.35);
  box-shadow: inset 0 0 18px rgba(147, 92, 255, 0.2);
}

.hero h1 {
  margin: 0;
  font-size: clamp(44px, 6.5vw, 88px);
  line-height: 0.92;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 0 28px rgba(29, 231, 255, 0.22);
}

.hero h1 span {
  display: block;
}

.hero h1 span:first-child {
  font-size: 0.55em;
  color: #9bff14;
  text-shadow: 0 0 18px rgba(155, 255, 20, 0.55);
}

.hero h1 span:last-child {
  animation: titleKick 3.8s steps(2, end) infinite;
}

.hero-quote {
  margin: 24px 0 12px;
  color: #fff;
  font-weight: 900;
  font-size: clamp(20px, 2.5vw, 31px);
  line-height: 1.38;
}

.hero-subline {
  max-width: 560px;
  margin: 0 0 16px;
  color: #d5eef8;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.7;
}

.meme-signal-row {
  display: inline-grid;
  grid-template-columns: auto auto;
  gap: 2px 12px;
  align-items: center;
  margin-bottom: 14px;
  padding: 9px 12px;
  border: 1px solid rgba(155, 255, 20, 0.35);
  border-radius: 8px;
  background: rgba(4, 28, 44, 0.76);
  box-shadow: inset 0 0 18px rgba(29, 231, 255, 0.1);
}

.meme-signal-row span {
  color: #aefbff;
  font-size: 11px;
  font-weight: 1000;
  text-transform: uppercase;
}

.meme-signal-row strong {
  color: #fff;
  font-size: 20px;
  font-weight: 1000;
  text-shadow: 0 0 16px rgba(155, 255, 20, 0.42);
}

.meme-signal-row small {
  grid-column: 1 / -1;
  color: rgba(231, 249, 255, 0.72);
  font-size: 12px;
  font-weight: 800;
}

.coin-title {
  display: grid;
  margin: 12px 0 26px;
}

.coin-title span {
  color: #fff;
  font-size: clamp(44px, 6vw, 76px);
  font-weight: 1000;
  line-height: 0.96;
  text-shadow: 0 0 10px rgba(155, 255, 20, 0.8), 0 0 28px rgba(30, 224, 184, 0.55);
}

.coin-title small {
  color: #c7e9f5;
  font-size: 20px;
  font-weight: 900;
}

.feature-pills {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 28px;
}

.feature-pills span {
  min-height: 54px;
  padding: 10px 8px;
  display: grid;
  place-items: center;
  color: #e7fdff;
  font-size: 12px;
  font-weight: 800;
  text-align: center;
  border: 1px solid rgba(67, 247, 207, 0.38);
  border-radius: 8px;
  background: rgba(17, 126, 107, 0.38);
}

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

.primary-btn,
.ghost-btn,
.wide-action,
.feed-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 54px;
  padding: 0 28px;
  border-radius: 8px;
  font-weight: 900;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.primary-btn:hover,
.join-btn:hover,
.wide-action:hover,
.waitlist-submit:hover {
  transform: translateY(-2px) scale(1.03);
}

.primary-btn:active,
.join-btn:active,
.wide-action:active,
.waitlist-submit:active {
  transform: translateY(1px) scale(0.98);
}

.ghost-btn:hover,
.feed-more:hover,
.language:hover,
.menu-toggle:hover {
  border-color: rgba(155, 255, 20, 0.58);
  transform: translateY(-1px);
}

.ghost-btn,
.feed-more {
  color: #e5f8ff;
  border: 1px solid rgba(168, 226, 255, 0.36);
  background: rgba(2, 24, 41, 0.72);
}

.hero-art {
  position: relative;
  z-index: 2;
  min-height: 620px;
  overflow: visible;
}

.network-globe {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: end center;
}

.network-globe::before {
  content: "";
  position: absolute;
  right: 2%;
  top: 40px;
  z-index: 0;
  width: min(46vw, 700px);
  height: min(46vw, 700px);
  border-radius: 50%;
  opacity: 0.88;
  background:
    radial-gradient(circle at 50% 48%, transparent 0 38%, rgba(57, 178, 255, 0.34) 39% 40%, transparent 41%),
    radial-gradient(circle, rgba(31, 143, 255, 0.1), rgba(21, 108, 221, 0.28) 48%, rgba(27, 206, 255, 0.14) 49%, transparent 70%);
  box-shadow: inset 0 0 70px rgba(53, 207, 255, 0.3), 0 0 80px rgba(0, 153, 255, 0.28);
}

.network-lines {
  position: absolute;
  left: 8%;
  right: 3%;
  top: 13%;
  z-index: 2;
  height: 42%;
  opacity: 0.48;
  background:
    linear-gradient(36deg, transparent 49.7%, rgba(101, 221, 255, 0.5) 50%, transparent 50.4%),
    linear-gradient(-24deg, transparent 49.7%, rgba(255, 164, 49, 0.34) 50%, transparent 50.4%),
    linear-gradient(90deg, transparent 49.7%, rgba(148, 255, 95, 0.26) 50%, transparent 50.4%);
  background-size: 180px 150px, 220px 180px, 160px 120px;
  mask-image: radial-gradient(circle at 50% 44%, black 0 58%, transparent 68%);
}

.earth,
.earth-static {
  --earth-shift: translate3d(0, 0, 0);
  position: absolute;
  right: 5%;
  bottom: 56px;
  width: min(43vw, 650px);
  height: min(43vw, 650px);
  min-width: 520px;
  min-height: 520px;
  display: block;
  border-radius: 50%;
  clip-path: circle(50% at 50% 50%);
  transform: var(--earth-shift);
  transform-origin: 50% 55%;
}

.earth {
  z-index: 2;
  opacity: 0;
  transition: opacity 260ms ease;
  background: radial-gradient(circle at 50% 45%, rgba(77, 229, 255, 0.24), rgba(0, 50, 130, 0.2) 55%, transparent 70%);
  filter: drop-shadow(0 -18px 60px rgba(46, 212, 255, 0.45));
}

.earth.is-ready {
  opacity: 1;
}

.earth-static {
  z-index: 1;
  opacity: 0.92;
  filter: drop-shadow(0 -18px 60px rgba(46, 212, 255, 0.42));
  transition: opacity 260ms ease;
}

.earth-static > img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: 50% 50%;
}

.earth.is-ready + .earth-static {
  opacity: 0;
}

.main-character {
  --float-base: translate3d(0, 0, 0);
  position: absolute;
  right: 28%;
  top: 28px;
  z-index: 6;
  width: min(17vw, 250px);
  min-width: 190px;
  object-fit: contain;
  object-position: 50% 50%;
  transform: var(--float-base);
  filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.55)) drop-shadow(0 0 28px rgba(52, 221, 255, 0.42));
  animation: floaty 5s ease-in-out infinite;
}

.coin {
  position: absolute;
  z-index: 5;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(255, 202, 49, 0.55));
}

.coin-btc {
  width: 76px;
  left: 21%;
  bottom: 164px;
  animation: bob 5.2s ease-in-out infinite;
}

.coin-doge {
  width: 54px;
  left: 26%;
  top: 162px;
  animation: bob 4.8s ease-in-out infinite reverse;
}

.coin-sol {
  width: 58px;
  right: 15%;
  top: 238px;
  animation: bob 5.5s ease-in-out infinite;
}

.coin-eth {
  width: 54px;
  right: 26%;
  top: 138px;
  animation: bob 4.4s ease-in-out infinite reverse;
}

.speech {
  position: absolute;
  right: 12%;
  bottom: 126px;
  z-index: 7;
  padding: 10px 18px;
  color: #12334a;
  font-weight: 1000;
  font-size: 21px;
  transform: rotate(-7deg);
  background: #fff;
  border: 4px solid #dff8ff;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.speech::after {
  content: "";
  position: absolute;
  right: 26px;
  bottom: -15px;
  border: 9px solid transparent;
  border-top-color: #fff;
  border-left-color: #fff;
}

.avatar {
  position: absolute;
  z-index: 6;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: #fff;
  font-weight: 1000;
  border: 3px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(135deg, #ff8844, #22dbff 58%, #a0ff2a);
  box-shadow: 0 0 22px rgba(29, 231, 255, 0.5);
}

.avatar img {
  width: 160%;
  height: 160%;
  object-fit: contain;
  filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.32));
}

.a1 { left: 22%; top: 110px; }
.a2 { left: 43%; top: 86px; }
.a3 { right: 22%; top: 170px; }
.a4 { right: 10%; top: 286px; }
.a5,
.a6,
.a7 { display: none; }

.orbit-label {
  position: absolute;
  z-index: 8;
  padding: 9px 18px;
  color: #95f4ff;
  font-size: 14px;
  font-weight: 900;
  border: 1px solid rgba(58, 218, 255, 0.58);
  border-radius: 8px;
  background: rgba(4, 33, 56, 0.68);
  box-shadow: inset 0 0 18px rgba(29, 231, 255, 0.1);
}

.label-one { right: 8%; top: 132px; }
.label-two { left: 7%; top: 310px; }
.label-three { right: 9%; top: 344px; color: #f0bbff; border-color: rgba(171, 86, 255, 0.62); }

.meme-marquee {
  position: relative;
  z-index: 5;
  width: 100%;
  overflow: hidden;
  margin: -8px 0 0;
  border-block: 1px solid rgba(155, 255, 20, 0.24);
  background:
    linear-gradient(90deg, rgba(155, 255, 20, 0.16), rgba(29, 231, 255, 0.12), rgba(147, 92, 255, 0.16));
}

.meme-track {
  display: flex;
  width: max-content;
  min-width: 200%;
  animation: memeMarquee 22s linear infinite;
}

.meme-track span {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 24px;
  color: #efffff;
  font-size: clamp(13px, 1.35vw, 20px);
  font-weight: 1000;
  text-transform: uppercase;
  text-shadow: 0 0 14px rgba(155, 255, 20, 0.32);
}

.meme-track span::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-right: 22px;
  border-radius: 2px;
  background: var(--green);
  box-shadow: 0 0 12px rgba(155, 255, 20, 0.72);
  transform: rotate(45deg);
}

.metrics {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  width: min(calc(100% - 72px), var(--max));
  margin: 22px auto 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(4, 29, 50, 0.9);
  box-shadow: 0 26px 50px rgba(0, 0, 0, 0.28);
}

.metric {
  display: grid;
  grid-template-columns: 58px 1fr;
  grid-template-rows: auto auto;
  gap: 2px 14px;
  align-items: center;
  min-height: 112px;
  padding: 22px 30px;
  border-right: 1px solid rgba(122, 218, 255, 0.17);
}

.metric:last-child {
  border-right: 0;
}

.metric-icon {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  color: #dbf8ff;
  font-size: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(29, 231, 255, 0.55), rgba(26, 88, 190, 0.7));
  box-shadow: inset 0 0 16px rgba(255, 255, 255, 0.25), 0 0 22px rgba(29, 231, 255, 0.28);
}

.metric small {
  color: var(--muted);
  font-weight: 800;
}

.metric strong {
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1;
}

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

.transmission {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(440px, 1.08fr);
  gap: 28px;
  align-items: center;
  margin-bottom: 56px;
}

.transmission-copy {
  position: relative;
  z-index: 2;
}

.transmission-copy h2 {
  margin: 0;
  max-width: 660px;
  font-size: clamp(34px, 4.6vw, 62px);
  line-height: 1.02;
  text-transform: uppercase;
}

.transmission-copy p:not(.eyebrow) {
  max-width: 620px;
  margin: 18px 0 0;
  color: #d7eff8;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.75;
}

.transmission-actions {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  max-width: 620px;
  margin-top: 24px;
}

.transmission-actions span {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 50px;
  padding: 0 10px;
  overflow: hidden;
  color: #061019;
  font-size: 13px;
  font-weight: 1000;
  text-align: center;
  border: 2px solid rgba(255, 255, 255, 0.84);
  border-radius: 8px;
  background: linear-gradient(135deg, #ffffff, var(--green) 52%, var(--teal));
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.28), 0 0 22px rgba(155, 255, 20, 0.18);
  cursor: pointer;
  transform: rotate(var(--action-rotate, -1.5deg));
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.transmission-actions span:nth-child(even) {
  --action-rotate: 1.5deg;
}

.transmission-actions span:hover {
  transform: translateY(-3px) rotate(var(--action-rotate, -1.5deg));
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.34), 0 0 28px rgba(29, 231, 255, 0.28);
}

.meme-board {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid rgba(112, 224, 255, 0.28);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 52%, rgba(155, 255, 20, 0.18), transparent 11rem),
    radial-gradient(circle at 20% 18%, rgba(255, 172, 47, 0.13), transparent 12rem),
    linear-gradient(rgba(29, 231, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(29, 231, 255, 0.055) 1px, transparent 1px),
    rgba(4, 26, 45, 0.82);
  background-size: auto, auto, 34px 34px, 34px 34px, auto;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.08), 0 28px 60px rgba(0, 0, 0, 0.32);
}

.meme-board::before {
  content: "COPY  REMIX  SPREAD  BELIEVE";
  position: absolute;
  left: -2%;
  top: 34%;
  right: -2%;
  color: transparent;
  font-size: clamp(44px, 6vw, 88px);
  font-weight: 1000;
  line-height: 1;
  text-align: center;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.09);
  transform: rotate(-7deg);
}

.broadcast-core {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 178px;
  height: 178px;
  transform: translate(-50%, -50%);
}

.broadcast-core::before {
  content: "";
  position: absolute;
  inset: 15px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(29, 231, 255, 0.34), rgba(155, 255, 20, 0.08) 58%, transparent 68%);
  filter: blur(2px);
  animation: signalPulse 2.8s ease-in-out infinite;
}

.broadcast-core img {
  position: relative;
  z-index: 2;
  width: 142px;
  height: 142px;
  object-fit: contain;
  filter: drop-shadow(0 18px 24px rgba(0, 0, 0, 0.42)) drop-shadow(0 0 22px rgba(29, 231, 255, 0.38));
  animation: floaty 5.3s ease-in-out infinite;
}

.broadcast-core span {
  position: absolute;
  right: -12px;
  top: 14px;
  z-index: 5;
  padding: 8px 12px;
  color: #061019;
  font-size: 16px;
  font-weight: 1000;
  border: 3px solid #fff;
  border-radius: 8px;
  background: linear-gradient(135deg, #fff, var(--green));
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.26);
  transform: rotate(8deg);
}

.share-wave {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  width: var(--wave-size, 190px);
  height: var(--wave-size, 190px);
  border: 1px dashed rgba(155, 255, 20, 0.42);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: waveSpin var(--wave-speed, 16s) linear infinite;
}

.wave-two {
  --wave-size: 290px;
  --wave-speed: 22s;
  border-color: rgba(29, 231, 255, 0.34);
  animation-direction: reverse;
}

.wave-three {
  --wave-size: 390px;
  --wave-speed: 28s;
  border-color: rgba(255, 172, 47, 0.26);
}

.share-wave::before,
.share-wave::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 2px;
  background: var(--green);
  box-shadow: 0 0 16px rgba(155, 255, 20, 0.78);
  transform: rotate(45deg);
}

.share-wave::before {
  left: 12%;
  top: 18%;
}

.share-wave::after {
  right: 8%;
  bottom: 22%;
}

.meme-note {
  position: absolute;
  z-index: 5;
  display: inline-grid;
  place-items: center;
  min-width: 106px;
  min-height: 46px;
  padding: 8px 12px;
  color: #061019;
  font-size: 13px;
  font-weight: 1000;
  line-height: 1.08;
  text-align: center;
  border: 3px solid rgba(255, 255, 255, 0.88);
  border-radius: 8px;
  background: linear-gradient(135deg, #ffffff, #9bff14 54%, #1de7ff);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.32), 0 0 24px rgba(155, 255, 20, 0.22);
  animation: stickerFloat 5.5s ease-in-out infinite;
}

.note-one { left: 8%; top: 14%; transform: rotate(-8deg); --sticker-rotate: -8deg; }
.note-two { right: 7%; top: 13%; transform: rotate(7deg); --sticker-rotate: 7deg; animation-delay: -1.8s; }
.note-three { left: 10%; bottom: 16%; transform: rotate(8deg); --sticker-rotate: 8deg; animation-delay: -3.2s; }
.note-four { right: 11%; bottom: 15%; transform: rotate(-6deg); --sticker-rotate: -6deg; animation-delay: -2.4s; }

.meme-avatar {
  position: absolute;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  overflow: hidden;
  border: 3px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  background: linear-gradient(135deg, #ff8844, #22dbff 58%, #a0ff2a);
  box-shadow: 0 0 22px rgba(29, 231, 255, 0.45);
  animation: avatarPop 4.8s ease-in-out infinite;
}

.meme-avatar img {
  width: 160%;
  height: 160%;
  object-fit: contain;
}

.v1 { left: 22%; top: 35%; }
.v2 { left: 37%; top: 16%; animation-delay: -1.4s; }
.v3 { right: 31%; top: 28%; animation-delay: -2.2s; }
.v4 { right: 23%; bottom: 29%; animation-delay: -3s; }
.v5 { left: 34%; bottom: 20%; animation-delay: -2.6s; }
.v6 { right: 41%; bottom: 14%; animation-delay: -1s; }

.meme-movement {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr);
  gap: 22px;
  align-items: stretch;
}

.movement-copy {
  position: relative;
  padding: 26px;
  border: 1px solid rgba(255, 172, 47, 0.34);
  border-radius: 8px;
  background:
    radial-gradient(circle at 10% 0%, rgba(255, 172, 47, 0.18), transparent 18rem),
    linear-gradient(145deg, rgba(12, 36, 55, 0.82), rgba(4, 18, 31, 0.92));
  overflow: hidden;
}

.movement-copy::after {
  content: "WOW";
  position: absolute;
  right: -8px;
  bottom: -16px;
  color: transparent;
  font-size: clamp(70px, 9vw, 130px);
  font-weight: 1000;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.12);
}

.movement-copy h2 {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: clamp(28px, 4vw, 54px);
  line-height: 1.08;
}

.movement-copy p:not(.eyebrow) {
  position: relative;
  z-index: 1;
  max-width: 620px;
  margin: 18px 0 0;
  color: #d8eef8;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.75;
}

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

.movement-cards article {
  position: relative;
  min-height: 100%;
  padding: 18px;
  border: 1px solid rgba(112, 224, 255, 0.23);
  border-radius: 8px;
  background:
    linear-gradient(rgba(29, 231, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(29, 231, 255, 0.055) 1px, transparent 1px),
    rgba(5, 35, 58, 0.74);
  background-size: 28px 28px;
  overflow: hidden;
}

.movement-cards article::after {
  content: "";
  position: absolute;
  inset: auto -20px -22px auto;
  width: 86px;
  height: 86px;
  border: 1px solid rgba(155, 255, 20, 0.32);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(155, 255, 20, 0.14), transparent 60%);
}

.movement-cards span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 28px;
  color: #05101a;
  font-weight: 1000;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--green), var(--teal));
}

.movement-cards b {
  display: block;
  margin-top: 24px;
  color: #ffffff;
  font-size: 22px;
  line-height: 1;
}

.movement-cards p {
  margin: 14px 0 0;
  color: #c9e9f5;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.65;
}

.waitlist-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
  gap: 18px;
  align-items: stretch;
  padding: 24px;
  border: 1px solid rgba(155, 255, 20, 0.28);
  border-radius: 8px;
  background:
    radial-gradient(circle at 16% 8%, rgba(155, 255, 20, 0.16), transparent 18rem),
    radial-gradient(circle at 88% 12%, rgba(29, 231, 255, 0.16), transparent 18rem),
    linear-gradient(145deg, rgba(5, 38, 62, 0.92), rgba(3, 16, 29, 0.94));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.08), 0 24px 52px rgba(0, 0, 0, 0.24);
}

.waitlist-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
}

.waitlist-copy h2 {
  margin: 0;
  font-size: clamp(30px, 3.5vw, 46px);
  line-height: 1.12;
}

.waitlist-copy p:not(.eyebrow) {
  max-width: 620px;
  margin: 18px 0 0;
  color: #d8eef8;
  font-size: 16px;
  line-height: 1.75;
}

.waitlist-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
}

.waitlist-points span {
  min-height: 42px;
  display: grid;
  place-items: center;
  padding: 8px 10px;
  color: #eaffff;
  font-size: 13px;
  font-weight: 900;
  text-align: center;
  border: 1px solid rgba(67, 247, 207, 0.28);
  border-radius: 8px;
  background: rgba(17, 126, 107, 0.26);
}

.waitlist-form {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(112, 224, 255, 0.22);
  border-radius: 8px;
  background: rgba(2, 18, 31, 0.74);
}

.waitlist-form label {
  display: grid;
  gap: 7px;
  color: #d9edf7;
  font-size: 13px;
  font-weight: 900;
}

.field-note {
  color: rgba(215, 238, 248, 0.68);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
}

.waitlist-form input {
  width: 100%;
  min-height: 44px;
  padding: 0 12px;
  color: #f6fcff;
  border: 1px solid rgba(130, 223, 255, 0.28);
  border-radius: 8px;
  outline: 0;
  background: rgba(3, 15, 27, 0.78);
}

.waitlist-form input:focus {
  border-color: rgba(155, 255, 20, 0.64);
  box-shadow: 0 0 0 3px rgba(155, 255, 20, 0.12);
}

.waitlist-hp {
  position: absolute;
  left: -9999px;
}

.waitlist-consent {
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  color: #cfe4ee;
  font-weight: 700;
  line-height: 1.55;
}

.waitlist-consent input {
  min-height: 18px;
  height: 18px;
  margin-top: 3px;
  padding: 0;
  accent-color: #9bff14;
}

.waitlist-submit {
  min-height: 50px;
  color: #061019;
  font-weight: 1000;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  background: linear-gradient(135deg, var(--green), var(--teal));
  box-shadow: 0 14px 32px rgba(30, 224, 184, 0.22);
}

.waitlist-submit:disabled {
  cursor: progress;
  opacity: 0.72;
}

.waitlist-status {
  min-height: 20px;
  margin: 0;
  color: #aeefff;
  font-size: 13px;
  line-height: 1.5;
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.section h2 {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  font-size: clamp(26px, 3.2vw, 38px);
  letter-spacing: 0;
}

.section h2::before {
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 3px;
  background: linear-gradient(135deg, var(--green), var(--cyan));
  box-shadow: 0 0 20px rgba(29, 231, 255, 0.45);
  transform: rotate(45deg);
}

.section-head a {
  color: var(--muted);
  font-weight: 800;
  white-space: nowrap;
}

.connect-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.connect-card {
  position: relative;
  min-height: 240px;
  padding: 22px 156px 22px 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(11, 60, 92, 0.92), rgba(3, 20, 35, 0.9)),
    var(--panel);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.connect-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.44;
  background:
    linear-gradient(90deg, transparent 0 47%, rgba(255, 255, 255, 0.12) 48% 49%, transparent 50%),
    linear-gradient(0deg, transparent 0 47%, rgba(255, 255, 255, 0.09) 48% 49%, transparent 50%);
  background-size: 26px 26px;
}

.connect-card span,
.connect-card h3,
.connect-card p {
  position: relative;
  z-index: 2;
}

.connect-card span {
  display: inline-grid;
  place-items: center;
  min-width: 36px;
  height: 28px;
  margin-bottom: 8px;
  color: #fff;
  font-weight: 1000;
  border-radius: 8px;
  background: var(--teal);
}

.connect-card h3 {
  max-width: 100%;
  margin: 0 0 6px;
  font-size: 16px;
  line-height: 1.2;
}

.connect-card p {
  max-width: 100%;
  margin: 0;
  color: #d4edf7;
  font-size: 12px;
  line-height: 1.62;
  overflow-wrap: anywhere;
}

.connect-card img {
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 132px;
  height: 132px;
  object-fit: cover;
  border: 1px solid rgba(122, 218, 255, 0.2);
  border-radius: 8px;
  filter: saturate(1.08) drop-shadow(0 0 22px rgba(29, 231, 255, 0.28));
}

.connect-card:hover,
.market-panel:hover,
.social-panel:hover,
.video-panel:hover,
.about-card:hover,
.roadmap-track article:hover,
.scene-row article:hover {
  transform: translateY(-4px);
  border-color: rgba(96, 236, 255, 0.46);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.08), 0 26px 52px rgba(0, 0, 0, 0.28), 0 0 26px rgba(29, 231, 255, 0.08);
}

.connect-card.green span { background: #20c86f; }
.connect-card.blue span { background: #168df1; }
.connect-card.violet span { background: var(--purple); }
.connect-card.orange span { background: #ff991f; }

.dashboard {
  display: grid;
  grid-template-columns: 1fr 0.9fr 1.05fr;
  gap: 18px;
  align-items: stretch;
}

.market-panel,
.social-panel,
.video-panel,
.about-card,
.roadmap-track article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(5, 36, 61, 0.86), rgba(4, 20, 35, 0.86));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.06), 0 24px 40px rgba(0, 0, 0, 0.18);
}

.market-panel,
.social-panel,
.video-panel {
  display: flex;
  flex-direction: column;
  padding: 22px;
  min-height: 400px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.panel-title {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 10px;
}

.panel-title span {
  font-size: 22px;
  font-weight: 1000;
}

.panel-title small {
  color: var(--muted);
  font-weight: 800;
}

.price-row {
  display: flex;
  align-items: center;
  gap: 18px;
}

.price-row strong {
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1;
}

.price-row span {
  color: var(--green);
  font-weight: 900;
}

.chart {
  display: flex;
  align-items: end;
  gap: 7px;
  height: 148px;
  margin: 16px 0;
  padding: 12px;
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(14, 49, 70, 0.28), rgba(5, 21, 35, 0.2));
}

.chart i {
  flex: 1;
  height: var(--h);
  min-width: 6px;
  border-radius: 6px 6px 2px 2px;
  background: linear-gradient(180deg, var(--green), #22d6ff);
  box-shadow: 0 0 16px rgba(155, 255, 20, 0.35);
}

.token-list {
  margin: 0 0 18px;
}

.token-list div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 3px 0;
  color: #d9edf7;
}

.token-list dt,
.token-list dd {
  margin: 0;
}

.token-list dt {
  color: var(--muted);
}

.wide-action {
  width: 100%;
  min-height: 46px;
  padding: 0 18px;
}

.feed-item {
  position: relative;
  min-height: 75px;
  margin-bottom: 12px;
  padding: 14px 50px 14px 16px;
  border-radius: 8px;
  background: rgba(28, 79, 120, 0.38);
}

.feed-item b {
  display: block;
  margin-bottom: 5px;
}

.feed-item p {
  margin: 0;
  color: #d2e8f2;
  font-size: 14px;
}

.feed-item time {
  position: absolute;
  right: 16px;
  top: 16px;
  color: var(--muted);
  font-size: 13px;
}

.feed-more {
  width: 100%;
  min-height: 46px;
}

.video-cover {
  position: relative;
  flex: 1;
  min-height: 292px;
  overflow: hidden;
  border: 1px solid rgba(128, 225, 255, 0.22);
  border-radius: 8px;
  cursor: pointer;
  background: #081829;
}

.video-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  filter: saturate(1.12) contrast(1.06);
}

.video-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, transparent 0 22%, rgba(3, 11, 19, 0.42) 66%);
}

.video-cover.is-playing::after {
  background: radial-gradient(circle, rgba(29, 231, 255, 0.16) 0 22%, rgba(3, 11, 19, 0.5) 68%);
}

.video-cover.is-playing .play {
  transform: scale(0.92);
  box-shadow: 0 0 28px rgba(29, 231, 255, 0.52);
}

.play {
  position: absolute;
  inset: 0;
  z-index: 2;
  margin: auto;
  width: 78px;
  height: 78px;
  border: 3px solid rgba(255, 255, 255, 0.88);
  border-radius: 50%;
  background: rgba(2, 18, 31, 0.38);
  backdrop-filter: blur(5px);
}

.play::before {
  content: "";
  position: absolute;
  left: 31px;
  top: 22px;
  border: 16px solid transparent;
  border-left-color: #fff;
}

.partner-row {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 20px;
}

.partner-row span {
  display: grid;
  place-items: center;
  min-height: 56px;
  padding: 0 14px;
  overflow: hidden;
  color: #e8f8ff;
  font-size: 16px;
  font-weight: 1000;
  text-align: center;
  border: 1px solid rgba(125, 217, 255, 0.28);
  border-radius: 8px;
  background: rgba(7, 31, 52, 0.72);
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.partner-row span:hover {
  transform: translateY(-3px);
  border-color: rgba(155, 255, 20, 0.46);
  background: rgba(13, 57, 79, 0.86);
}

.scene-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.scene-row article {
  position: relative;
  display: grid;
  grid-template-rows: auto;
  min-height: 0;
  padding: 10px;
  overflow: hidden;
  border: 1px solid rgba(130, 223, 255, 0.28);
  border-radius: 8px;
  background: rgba(4, 28, 48, 0.8);
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.scene-row img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  object-position: 50% 50%;
  border-radius: 6px;
  background: rgba(2, 16, 28, 0.5);
  filter: saturate(1.08) contrast(1.04);
}

.scene-row b {
  display: none;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.about-grid .section-head {
  grid-column: 1 / -1;
}

.about-card {
  display: grid;
  grid-template-columns: 46% 1fr;
  gap: 20px;
  align-items: center;
  padding: 20px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.about-card img {
  width: 100%;
  height: 280px;
  border-radius: 8px;
  object-fit: contain;
  object-position: 50% 50%;
  padding: 10px;
  background: linear-gradient(180deg, rgba(195, 248, 255, 0.96), rgba(219, 254, 255, 0.92));
}

.about-card h3 {
  margin: 0 0 10px;
  font-size: 24px;
}

.about-card p {
  margin: 0;
  color: #d4eaf4;
  line-height: 1.8;
}

.roadmap-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.roadmap-track article {
  padding: 22px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.roadmap-track span {
  display: inline-flex;
  place-items: center;
  justify-content: center;
  width: max-content;
  min-width: 48px;
  height: 36px;
  padding-inline: 10px;
  margin-bottom: 14px;
  color: #05121c;
  font-weight: 1000;
  line-height: 1;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
  border-radius: 8px;
  background: var(--green);
}

.roadmap-track h3 {
  margin: 0 0 10px;
  font-size: 22px;
}

.roadmap-track p {
  margin: 0;
  color: #d4eaf4;
  line-height: 1.7;
}

.footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 36px clamp(18px, 5vw, 72px);
  border-top: 1px solid rgba(116, 218, 255, 0.14);
  background: rgba(2, 10, 18, 0.78);
}

.footer-links,
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: #c8e0eb;
  font-weight: 800;
}

.footer-links {
  justify-content: center;
}

.social-links a {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(130, 223, 255, 0.26);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.social-links a img {
  display: block;
  width: 24px;
  height: 24px;
  object-fit: contain;
  border-radius: 5px;
}

.social-links a:hover {
  border-color: rgba(155, 255, 20, 0.52);
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

.modal-layer {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(1, 8, 15, 0.72);
  backdrop-filter: blur(14px);
}

.modal {
  position: relative;
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 24px;
  width: min(760px, 100%);
  padding: 24px;
  border: 1px solid rgba(112, 224, 255, 0.32);
  border-radius: 8px;
  background:
    radial-gradient(circle at 20% 0%, rgba(29, 231, 255, 0.16), transparent 18rem),
    linear-gradient(145deg, rgba(6, 38, 63, 0.98), rgba(3, 17, 31, 0.98));
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.48), inset 0 1px rgba(255, 255, 255, 0.08);
}

.modal-close {
  position: absolute;
  right: 14px;
  top: 14px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: #e8f8ff;
  font-size: 28px;
  line-height: 1;
  border: 1px solid rgba(130, 223, 255, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
}

.modal-media {
  min-height: 260px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(130, 223, 255, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(29, 231, 255, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(29, 231, 255, 0.06) 1px, transparent 1px),
    rgba(5, 26, 44, 0.8);
  background-size: 24px 24px;
}

.modal-media img {
  width: 100%;
  height: 100%;
  max-height: 300px;
  object-fit: contain;
  padding: 14px;
  filter: drop-shadow(0 16px 28px rgba(0, 0, 0, 0.35));
}

.modal-copy {
  align-self: center;
  padding-right: 22px;
}

.modal-copy .eyebrow {
  margin-bottom: 14px;
}

.modal-copy h3 {
  margin: 0 0 12px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.08;
}

.modal-copy p {
  margin: 0;
  color: #d4eaf4;
  font-size: 16px;
  line-height: 1.75;
}

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

.modal-actions button {
  min-height: 42px;
  padding: 0 16px;
  color: #061019;
  font-weight: 900;
  border: 0;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--green), var(--teal));
  cursor: pointer;
}

.modal-actions button:nth-child(even) {
  color: #e8f8ff;
  border: 1px solid rgba(130, 223, 255, 0.32);
  background: rgba(255, 255, 255, 0.06);
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  z-index: 90;
  max-width: min(420px, calc(100% - 32px));
  padding: 13px 18px;
  color: #061019;
  font-weight: 900;
  text-align: center;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--green), var(--teal));
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.35);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 18px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.meme-pop {
  position: absolute;
  z-index: 12;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 7px 12px;
  color: #061019;
  font-size: 13px;
  font-weight: 1000;
  white-space: nowrap;
  border: 2px solid #fff;
  border-radius: 8px;
  background: linear-gradient(135deg, #fff, var(--green));
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.28);
  pointer-events: none;
  transform: translate(-50%, -50%) rotate(var(--pop-rotate, -6deg)) scale(0.68);
  animation: memePop 1.8s ease forwards;
}

.meme-spark {
  position: fixed;
  z-index: 95;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 6px 10px;
  color: #061019;
  font-size: 12px;
  font-weight: 1000;
  white-space: nowrap;
  border: 2px solid #fff;
  border-radius: 8px;
  background: linear-gradient(135deg, #ffffff, var(--green));
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.28);
  pointer-events: none;
  transform: translate(-50%, -50%) rotate(var(--spark-rotate, 0deg)) scale(0.72);
  animation: memeSpark 900ms ease forwards;
}

@keyframes logoPulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(30, 224, 184, 0.14), 0 0 22px rgba(29, 231, 255, 0.46); }
  50% { box-shadow: 0 0 0 5px rgba(155, 255, 20, 0.15), 0 0 34px rgba(155, 255, 20, 0.52); }
}

@keyframes floaty {
  0%, 100% { transform: var(--float-base) translateY(0); }
  50% { transform: var(--float-base) translateY(-14px); }
}

@keyframes bob {
  0%, 100% { transform: translateY(0) rotate(-4deg); }
  50% { transform: translateY(-18px) rotate(7deg); }
}

@keyframes orbitPulse {
  0%, 100% { opacity: 0.74; transform: translateX(-50%) scale(1); }
  50% { opacity: 0.94; transform: translateX(-50%) scale(1.035); }
}

@keyframes stickerFloat {
  0%, 100% { transform: rotate(var(--sticker-rotate, -7deg)) translateY(0) scale(1); }
  50% { transform: rotate(var(--sticker-rotate, -7deg)) translateY(-10px) scale(1.04); }
}

@keyframes cloneDrift {
  0% { transform: translate3d(0, 0, 0) rotate(-4deg); }
  100% { transform: translate3d(36px, -24px, 0) rotate(4deg); }
}

@keyframes signalPulse {
  0%, 100% { transform: scale(0.96); opacity: 0.72; }
  50% { transform: scale(1.12); opacity: 1; }
}

@keyframes waveSpin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes avatarPop {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-8px) scale(1.05); }
}

@keyframes titleKick {
  0%, 88%, 100% { transform: translateX(0); text-shadow: 0 0 28px rgba(29, 231, 255, 0.22); }
  90% { transform: translateX(2px) rotate(-0.4deg); text-shadow: 4px 0 rgba(155, 255, 20, 0.42), -4px 0 rgba(29, 231, 255, 0.32); }
  92% { transform: translateX(-2px) rotate(0.4deg); }
}

@keyframes memeMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes memePop {
  0% { opacity: 0; transform: translate(-50%, -50%) rotate(var(--pop-rotate, -6deg)) scale(0.68); }
  18% { opacity: 1; transform: translate(-50%, -64%) rotate(var(--pop-rotate, -6deg)) scale(1.06); }
  78% { opacity: 1; transform: translate(-50%, -78%) rotate(var(--pop-rotate, -6deg)) scale(1); }
  100% { opacity: 0; transform: translate(-50%, -104%) rotate(var(--pop-rotate, -6deg)) scale(0.86); }
}

@keyframes memeSpark {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(var(--spark-rotate, 0deg)) scale(0.72);
  }
  18% {
    opacity: 1;
    transform: translate(calc(-50% + var(--spark-x, 0px) * 0.25), calc(-50% + var(--spark-y, -40px) * 0.25)) rotate(var(--spark-rotate, 0deg)) scale(1);
  }
  100% {
    opacity: 0;
    transform: translate(calc(-50% + var(--spark-x, 0px)), calc(-50% + var(--spark-y, -80px))) rotate(var(--spark-rotate, 0deg)) scale(0.86);
  }
}

@media (max-width: 1500px) and (min-width: 1121px) {
  .topbar { gap: 18px; }
  .nav-links { gap: 8px; }
  .nav-links a { font-size: 13px; }
  .language-picker > .language { min-width: 150px; }
  .wallet-btn { padding-inline: 14px; }
  .join-btn { padding-inline: 13px; font-size: 13px; }
}

/* The page shell is capped at 1440px even on very wide monitors. Keep the
   same compact header above the viewport breakpoint so browser zoom does not
   change whether the navigation fits. */
@media (min-width: 1501px) {
  .topbar { gap: 14px; padding-inline: 24px; }
  .nav-links { gap: 8px; }
  .nav-links a { font-size: 13px; }
  .language-picker > .language { min-width: 120px; }
  .wallet-btn { max-width: 164px; padding-inline: 13px; font-size: 13px; }
  .join-btn { padding-inline: 12px; font-size: 13px; }
}

/* Keep nine desktop navigation items readable without relying on browser zoom.
   Between tablet and wide desktop widths the menu uses a full second row. */
@media (max-width: 1240px) and (min-width: 721px) {
  .topbar {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .nav-links {
    order: 3;
    flex: 0 0 100%;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }
}

@media (max-width: 1120px) {
  .topbar {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .nav-links {
    order: 3;
    flex: 0 0 100%;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 56px;
  }

  .hero-copy {
    max-width: 720px;
  }

  .meme-sticker-layer {
    opacity: 0.72;
  }

  .sticker-b,
  .sticker-c {
    display: none;
  }

  .hero-art {
    min-height: 600px;
  }

  .network-globe {
    inset: 0;
  }

  .network-globe::before {
    height: 560px;
  }

  .earth,
  .earth-static {
    left: 50%;
    right: auto;
    bottom: 40px;
    min-width: 560px;
    min-height: 560px;
    background: none;
    --earth-shift: translateX(-50%);
  }

  .main-character {
    right: 50%;
    top: 28px;
    bottom: auto;
    width: min(32vw, 330px);
    --float-base: translateX(46%);
  }

  .metrics,
  .connect-grid,
  .dashboard,
  .partner-row,
  .roadmap-track {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .transmission-copy {
    max-width: 780px;
  }

  .meme-board {
    min-height: 400px;
  }

  .meme-movement {
    grid-template-columns: 1fr;
  }

  .scene-row {
    grid-template-columns: repeat(3, 1fr);
  }

  .video-panel {
    grid-column: 1 / -1;
  }

  .video-cover {
    height: 360px;
    min-height: 360px;
  }

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

  /* On all sub-desktop widths collapse the wallet button to an icon-only
     square so the long label never clips or wraps vertically.
     .reference-layout prefix beats the later reference-layout font-size override. */
  .reference-layout .header-actions > .wallet-btn,
  .reference-layout .header-actions > .portal-wallet-button {
    width: 42px;
    min-width: 42px;
    padding: 0;
    justify-content: center;
    font-size: 0;
  }

  .reference-layout .header-actions > .wallet-btn .wallet-icon {
    width: 19px;
    height: 15px;
  }

  /* Force-hide the label text so it never wraps vertically. */
  .reference-layout .header-actions > .wallet-btn [data-wallet-label] {
    display: none;
  }

  /* Portal pages use a text-only wallet button; draw a wallet icon with
     pseudo-elements so it matches the home-page icon button. */
  .reference-layout .header-actions > .portal-wallet-button {
    position: relative;
  }

  .reference-layout .header-actions > .portal-wallet-button::before {
    content: "";
    display: inline-block;
    width: 19px;
    height: 15px;
    border: 2px solid currentColor;
    border-radius: 4px;
  }

  .reference-layout .header-actions > .portal-wallet-button::after {
    content: "";
    position: absolute;
    right: 9px;
    top: 50%;
    width: 7px;
    height: 5px;
    margin-top: -2.5px;
    border: 2px solid currentColor;
    border-radius: 2px;
    background: inherit;
  }
}

@media (max-width: 720px) {
  .site-shell {
    border: 0;
  }

  .topbar {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 10px;
    min-height: 64px;
    padding: 10px 14px;
  }

  .brand {
    grid-column: 1;
    grid-row: 1;
    min-width: max-content;
    flex-shrink: 0;
    gap: 10px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    border-width: 2px;
  }

  .brand-mark::before,
  .brand-mark::after {
    top: 10px;
    height: 15px;
  }

  .brand-mark::before {
    left: 13px;
  }

  .brand-mark::after {
    right: 13px;
  }

  .brand-mark span {
    top: 11px;
    width: 8px;
    height: 16px;
  }

  .brand-mark span:first-child {
    left: -5px;
  }

  .brand-mark span:last-child {
    right: -5px;
  }

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

  .brand-copy small {
    display: none;
  }

  .header-actions {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    gap: 8px;
    margin-left: 0;
  }

  .join-btn {
    min-height: 40px;
    padding: 0 14px;
    font-size: 13px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .topbar.menu-open .menu-toggle span:first-child {
    transform: translateY(6px) rotate(45deg);
  }

  .topbar.menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .topbar.menu-open .menu-toggle span:last-child {
    transform: translateY(-6px) rotate(-45deg);
  }

  .nav-links {
    grid-column: 1 / -1;
    grid-row: 2;
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    width: 100%;
    max-height: 0;
    margin: 0;
    padding: 0;
    overflow: hidden;
    border: 0;
    opacity: 0;
    pointer-events: none;
    background: transparent;
    transition: max-height 220ms ease, opacity 180ms ease, padding 180ms ease;
  }

  .topbar.menu-open .nav-links {
    max-height: 460px;
    padding: 10px 0 4px;
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a {
    display: flex;
    align-items: center;
    min-height: 42px;
    padding: 0 12px;
    border: 1px solid rgba(112, 224, 255, 0.18);
    border-radius: 8px;
    color: #e8f8ff;
    background: rgba(4, 28, 48, 0.88);
  }

  .nav-links a::after {
    display: none;
  }

  .nav-links a.active {
    border-color: rgba(155, 255, 20, 0.52);
    background: rgba(22, 75, 54, 0.7);
  }

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

  .nav-links .mobile-language {
    display: inline-flex;
    width: 100%;
    min-height: 42px;
  }

  .hero {
    padding: 44px 18px 0;
    row-gap: 12px;
    overflow: hidden;
  }

  .eyebrow {
    margin-bottom: 16px;
    padding: 7px 14px;
    font-size: 13px;
  }

  .hero h1 {
    font-size: clamp(38px, 12vw, 54px);
    line-height: 0.95;
  }

  .hero-quote {
    margin: 18px 0 10px;
    font-size: clamp(19px, 5.7vw, 23px);
    line-height: 1.5;
  }

  .hero-subline {
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 1.55;
  }

  .meme-signal-row {
    width: 100%;
    grid-template-columns: 1fr auto;
  }

  .coin-title {
    margin: 10px 0 20px;
  }

  .coin-title span {
    font-size: clamp(46px, 14vw, 56px);
  }

  .coin-title small {
    font-size: 17px;
  }

  .feature-pills {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 20px;
  }

  .feature-pills span {
    min-height: 44px;
    padding: 8px;
  }

  .meme-sticker-layer {
    opacity: 0.5;
  }

  .sticker-a {
    display: none;
  }

  .sticker-d {
    display: none;
  }

  .sticker-e {
    left: auto;
    right: 10%;
    bottom: 40%;
  }

  .wow-clones {
    opacity: 0.1;
  }

  .meme-marquee {
    margin-top: 0;
  }

  .meme-track span {
    min-height: 40px;
    padding-inline: 16px;
  }

  .metrics,
  .connect-grid,
  .dashboard,
  .partner-row,
  .scene-row,
  .roadmap-track {
    grid-template-columns: 1fr;
  }

  .hero-art {
    min-height: clamp(410px, 108vw, 470px);
    margin-top: -8px;
  }

  .network-globe {
    inset: 0;
    overflow: visible;
    place-items: center;
  }

  .network-globe::before {
    left: 50%;
    right: auto;
    top: 12px;
    width: min(86vw, 342px);
    height: min(86vw, 342px);
    opacity: 0.92;
    transform: translateX(-50%);
    background:
      radial-gradient(circle at 50% 50%, transparent 0 36%, rgba(93, 214, 255, 0.34) 37% 39%, transparent 40%),
      radial-gradient(circle at 45% 40%, rgba(155, 255, 20, 0.16), transparent 20%),
      radial-gradient(circle, rgba(29, 231, 255, 0.14), rgba(21, 108, 221, 0.22) 55%, transparent 72%);
    box-shadow: inset 0 0 52px rgba(53, 207, 255, 0.28), 0 0 70px rgba(0, 153, 255, 0.24);
    animation: orbitPulse 6s ease-in-out infinite;
  }

  .network-lines {
    left: -8%;
    right: -8%;
    top: 32px;
    z-index: 2;
    height: 270px;
    opacity: 0.42;
    mask-image: radial-gradient(circle at 50% 48%, black 0 52%, transparent 67%);
  }

  .earth,
  .earth-static {
    left: 50%;
    right: auto;
    top: 24px;
    bottom: auto;
    display: block;
    width: min(80vw, 322px);
    height: min(80vw, 322px);
    min-width: 0;
    min-height: 0;
    background: none;
    --earth-shift: translateX(-50%);
  }

  .main-character {
    left: 50%;
    right: auto;
    top: 28px;
    bottom: auto;
    z-index: 9;
    width: min(48vw, 184px);
    min-width: 148px;
    --float-base: translateX(-50%);
    transform: var(--float-base);
  }

  .coin {
    z-index: 5;
  }

  .coin-btc { left: 12%; bottom: 66px; width: 56px; }
  .coin-doge { left: 21%; top: 106px; width: 40px; }
  .coin-sol { right: 15%; top: 144px; width: 44px; }
  .coin-eth { right: 24%; top: 78px; width: 42px; }
  .speech {
    right: 7%;
    bottom: 108px;
    z-index: 6;
    padding: 8px 14px;
    font-size: 16px;
  }

  .avatar {
    z-index: 6;
    width: 32px;
    height: 32px;
    font-size: 12px;
    border-width: 2px;
  }

  .a1, .a5, .a6, .a7, .label-two, .label-three { display: none; }
  .a2 { left: 29%; top: 30px; }
  .a3 { left: auto; right: 26%; top: 106px; }
  .a4 { right: 13%; top: 196px; }
  .label-one {
    right: 7%;
    top: 32px;
    z-index: 6;
    padding: 7px 12px;
    font-size: 12px;
  }

  .section,
  .metrics {
    width: calc(100% - 36px);
  }

  .section {
    margin-bottom: 44px;
  }

  .transmission {
    gap: 16px;
  }

  .transmission-copy h2 {
    font-size: 28px;
    line-height: 1.16;
  }

  .transmission-copy p:not(.eyebrow) {
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.65;
  }

  .transmission-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 18px;
  }

  .transmission-actions span {
    min-height: 44px;
    font-size: 12px;
  }

  .meme-board {
    min-height: 340px;
  }

  .meme-board::before {
    top: 38%;
    font-size: 40px;
  }

  .broadcast-core {
    width: 142px;
    height: 142px;
  }

  .broadcast-core img {
    width: 112px;
    height: 112px;
  }

  .broadcast-core span {
    right: -6px;
    top: 8px;
    padding: 7px 10px;
    font-size: 13px;
  }

  .share-wave {
    --wave-size: 156px;
  }

  .wave-two {
    --wave-size: 234px;
  }

  .wave-three {
    --wave-size: 302px;
  }

  .meme-note {
    min-width: 86px;
    min-height: 38px;
    padding: 6px 9px;
    font-size: 11px;
    border-width: 2px;
  }

  .note-one { left: 6%; top: 12%; }
  .note-two { right: 5%; top: 12%; }
  .note-three { left: 7%; bottom: 13%; }
  .note-four { right: 7%; bottom: 13%; }

  .meme-avatar {
    width: 34px;
    height: 34px;
    border-width: 2px;
  }

  .v1 { left: 18%; top: 35%; }
  .v2 { left: 38%; top: 18%; }
  .v3 { right: 27%; top: 31%; }
  .v4 { right: 18%; bottom: 30%; }
  .v5,
  .v6 { display: none; }

  .meme-movement {
    gap: 14px;
  }

  .movement-copy {
    padding: 18px;
  }

  .movement-copy h2 {
    font-size: 28px;
    line-height: 1.16;
  }

  .movement-copy p:not(.eyebrow) {
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.65;
  }

  .movement-cards {
    grid-template-columns: 1fr;
  }

  .movement-cards article {
    min-height: 132px;
  }

  .waitlist-section {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 18px;
  }

  .waitlist-copy h2 {
    font-size: 28px;
    line-height: 1.18;
  }

  .waitlist-copy p:not(.eyebrow) {
    margin-top: 14px;
    font-size: 14px;
    line-height: 1.65;
  }

  .waitlist-points {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 16px;
  }

  .waitlist-form {
    padding: 14px;
  }

  .section-head {
    align-items: flex-start;
    margin-bottom: 14px;
  }

  .section h2 {
    font-size: 26px;
    line-height: 1.25;
  }

  .metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 8px;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .metric {
    grid-template-columns: 38px minmax(0, 1fr);
    min-height: 92px;
    padding: 14px;
    border-right: 0;
    border: 1px solid rgba(122, 218, 255, 0.2);
    border-radius: 8px;
    background: rgba(4, 29, 50, 0.92);
  }

  .metric:last-child {
    border-bottom: 1px solid rgba(122, 218, 255, 0.2);
  }

  .metric-icon {
    width: 38px;
    height: 38px;
    font-size: 18px;
  }

  .metric small {
    font-size: 12px;
  }

  .metric strong {
    font-size: 22px;
  }

  .connect-card p {
    max-width: 100%;
  }

  .connect-card {
    min-height: 198px;
    padding: 18px 116px 18px 18px;
  }

  .connect-card img {
    right: 12px;
    bottom: 12px;
    width: 94px;
    height: 94px;
  }

  .market-panel,
  .social-panel,
  .video-panel {
    min-height: auto;
    padding: 18px;
  }

  .chart {
    height: 124px;
  }

  .video-cover {
    height: 260px;
    min-height: 260px;
  }

  .about-card {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .about-card h3 {
    font-size: 20px;
  }

  .about-card p,
  .roadmap-track p {
    line-height: 1.65;
  }

  .roadmap-track article {
    padding: 18px;
  }

  .roadmap-track h3 {
    font-size: 20px;
  }

  .footer {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 22px;
    padding: 30px 18px 36px;
  }

  .footer-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: stretch;
    gap: 12px;
    width: 100%;
  }

  .footer-links a {
    min-height: 38px;
    display: flex;
    align-items: center;
    padding: 0 10px;
    border: 1px solid rgba(130, 223, 255, 0.18);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.035);
  }

  .social-links {
    gap: 12px;
  }

  .social-links a {
    width: 44px;
    height: 44px;
  }

  .modal {
    grid-template-columns: 1fr;
    gap: 16px;
    max-height: calc(100vh - 32px);
    overflow: auto;
    padding: 18px;
  }

  .modal-media {
    min-height: 190px;
  }

  .modal-copy {
    padding-right: 0;
  }

  .modal-actions {
    display: grid;
  }
}

/* Legacy Genesis business sections stay out of the homepage; all flows live in presale.html. */
.home-page .genesis-overview,
.home-page .genesis-stages,
.home-page .guardian-section,
.home-page .genesis-value-path,
.home-page .referral-settlement,
.home-page .nft-release {
  display: none !important;
}

.world-showcase { overflow: hidden; }
.world-showcase-grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(380px, 1.1fr); align-items: center; gap: 22px; padding: 24px; border: 1px solid rgba(91, 228, 255, .2); border-radius: 22px; background: radial-gradient(circle at 76% 50%, rgba(65, 117, 255, .24), transparent 30rem), rgba(3, 21, 39, .76); }
.showcase-copy { padding: 20px; }
.showcase-copy h3 { margin: 0; color: #fff; font-size: clamp(28px, 4vw, 52px); line-height: 1.05; }
.showcase-copy p, .logo-showcase-intro { max-width: 620px; color: #b5d0dc; font-size: 16px; line-height: 1.8; }
.showcase-tags { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 24px; }
.showcase-tags span, .section-status { padding: 7px 11px; border: 1px solid rgba(155, 255, 20, .3); border-radius: 999px; color: #d9ffaf; background: rgba(32, 88, 62, .25); font-size: 11px; font-weight: 900; letter-spacing: .08em; }
.showcase-orbit { position: relative; min-height: 520px; display: grid; place-items: center; isolation: isolate; }
.showcase-earth { position: relative; z-index: 2; width: min(82%, 500px); aspect-ratio: 1; object-fit: contain; border-radius: 50%; filter: drop-shadow(0 0 28px rgba(54, 186, 255, .35)); animation: showcaseEarthSpin 26s linear infinite; }
.showcase-character { position: absolute; z-index: 4; width: min(34%, 210px); right: 18%; top: 16%; filter: drop-shadow(0 0 18px rgba(155, 255, 20, .55)); animation: showcaseCharacterFloat 3.8s ease-in-out infinite; }
.showcase-ring { position: absolute; z-index: 1; width: 86%; aspect-ratio: 1; border: 1px solid rgba(91, 228, 255, .25); border-radius: 50%; transform: rotate(-18deg) perspective(500px) rotateX(62deg); }
.showcase-ring::after { content: ""; position: absolute; top: 50%; left: -5px; width: 11px; height: 11px; border-radius: 50%; background: var(--green); box-shadow: 0 0 18px var(--green); }
.ring-b { width: 70%; transform: rotate(24deg) perspective(500px) rotateX(66deg); border-color: rgba(155, 123, 255, .4); }
.ring-b::after { left: auto; right: 4%; background: var(--violet); box-shadow: 0 0 18px var(--violet); }
.showcase-orbit-label { position: absolute; z-index: 5; padding: 8px 12px; border: 1px solid rgba(91, 228, 255, .4); border-radius: 8px; color: #e4ffff; background: rgba(4, 29, 49, .8); font-size: 11px; font-weight: 900; letter-spacing: .1em; }
.label-a { top: 15%; left: 7%; }.label-b { right: 3%; bottom: 19%; }
@keyframes showcaseEarthSpin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes showcaseCharacterFloat { 0%,100% { transform: translateY(0) rotate(-4deg); } 50% { transform: translateY(-14px) rotate(4deg); } }
.logo-showcase { overflow: hidden; }
.logo-showcase .section-head { align-items: center; }
.logo-showcase-intro { margin: 0 0 20px; }
.logo-rail { overflow: hidden; border: 1px solid rgba(91, 228, 255, .16); border-radius: 18px; background: linear-gradient(90deg, rgba(13, 44, 67, .72), rgba(6, 23, 42, .85)); }
.logo-rail-track { display: flex; width: max-content; align-items: center; gap: 14px; padding: 18px 14px; animation: logoRoll 32s linear infinite; }
.logo-rail-reverse .logo-rail-track { animation-direction: reverse; animation-duration: 38s; }
.logo-rail:hover .logo-rail-track { animation-play-state: paused; }
.logo-rail-track > span { display: inline-flex; align-items: center; justify-content: flex-start; gap: 12px; min-width: 196px; min-height: 68px; padding: 8px 18px 8px 9px; border: 1px solid rgba(208, 244, 255, .25); border-radius: 16px; color: #ecfbff; background: linear-gradient(145deg, rgba(27, 78, 111, .95), rgba(8, 24, 45, .95)); box-shadow: 0 8px 20px rgba(0, 0, 0, .22); white-space: nowrap; }
.logo-rail-track > span img { display: block; flex: 0 0 52px; width: 52px; height: 48px; padding: 7px; object-fit: contain; border: 1px solid rgba(255, 255, 255, .72); border-radius: 13px; background: #fff; box-shadow: 0 0 18px rgba(91, 228, 255, .16); }
.logo-rail-track > span strong { font-size: 13px; font-weight: 900; letter-spacing: .025em; }
.media-showcase .logo-rail-track > span img { box-shadow: 0 0 18px rgba(139, 92, 255, .2); }
@keyframes logoRoll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (max-width: 900px) { .world-showcase-grid { grid-template-columns: 1fr; }.showcase-orbit { min-height: 430px; }.showcase-earth { width: min(84%, 420px); }.showcase-character { right: 16%; }.section-status { font-size: 9px; } }
@media (max-width: 720px) { .world-showcase-grid { padding: 12px; }.showcase-copy { padding: 12px 8px; }.showcase-copy p, .logo-showcase-intro { font-size: 14px; }.showcase-orbit { min-height: 360px; }.showcase-earth { width: 94%; }.showcase-character { width: 36%; right: 12%; top: 12%; }.showcase-orbit-label { font-size: 9px; }.logo-rail-track > span { min-width: 166px; min-height: 58px; gap: 9px; padding: 6px 12px 6px 7px; }.logo-rail-track > span img { flex-basis: 42px; width: 42px; height: 40px; padding: 6px; border-radius: 10px; }.logo-rail-track > span strong { font-size: 10px; } }

@media (max-width: 430px) {
  .topbar {
    padding-inline: 12px;
  }

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

  .join-btn {
    padding: 0 12px;
    font-size: 12px;
  }

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

  .hero {
    padding-inline: 16px;
  }

  .hero-actions {
    display: grid;
  }

  .primary-btn,
  .ghost-btn {
    width: 100%;
  }

  .coin-title span {
    font-size: 52px;
  }

  .section,
  .metrics {
    width: calc(100% - 28px);
  }

  .product-hub-grid {
    grid-template-columns: 1fr;
  }

  .product-hub-card {
    min-height: 168px;
  }

  .metric {
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 2px 10px;
    padding: 12px;
  }

  .metric-icon {
    width: 36px;
    height: 36px;
  }

  .metric strong {
    font-size: 20px;
  }
}

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

/* Genesis reservation platform additions */
.wallet-btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  padding: 0 22px;
  border: 1px solid rgba(105, 238, 255, 0.62);
  border-radius: 999px;
  color: #03152e;
  background: linear-gradient(135deg, #91f7ff, #38d8ff 55%, #84ffd0);
  box-shadow:
    0 8px 26px rgba(45, 217, 255, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.65);
  font: inherit;
  font-weight: 900;
  letter-spacing: 0.02em;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

/* 扫光动画（2026-08-11 按钮美化） */
.wallet-btn::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -60%;
  width: 46%;
  background: linear-gradient(
    105deg,
    transparent,
    rgba(255, 255, 255, 0.65),
    transparent
  );
  transform: skewX(-18deg);
  pointer-events: none;
  animation: wallet-shimmer 3.4s ease-in-out infinite;
}

@keyframes wallet-shimmer {
  0%,
  52% {
    left: -60%;
  }
  100% {
    left: 130%;
  }
}

.wallet-btn [data-wallet-label] {
  position: relative;
  display: block;
  max-width: 112px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.wallet-icon {
  position: relative;
  display: inline-block;
  flex: 0 0 auto;
  width: 18px;
  height: 14px;
  border: 2px solid currentColor;
  border-radius: 4px;
}

.wallet-icon::after {
  content: "";
  position: absolute;
  right: -4px;
  top: 3px;
  width: 7px;
  height: 5px;
  border: 2px solid currentColor;
  border-radius: 2px;
  background: inherit;
}

.wallet-btn:hover,
.wallet-btn:focus-visible {
  transform: translateY(-2px);
  box-shadow:
    0 14px 38px rgba(45, 217, 255, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.65);
  filter: saturate(1.15);
}

/* 已连接态：深绿渐变 + 呼吸绿点（2026-08-11） */
.wallet-btn.is-connected {
  border-color: rgba(90, 255, 190, 0.55);
  color: #8dffce;
  background: linear-gradient(135deg, #0b3d31, #0f5c46);
  box-shadow:
    0 8px 26px rgba(20, 220, 150, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.wallet-btn.is-connected::before {
  display: none;
}

.wallet-btn.is-connected::after {
  content: "";
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #35ffb1;
  box-shadow: 0 0 10px rgba(53, 255, 177, 0.95);
  animation: wallet-pulse 1.8s ease-in-out infinite;
}

@keyframes wallet-pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.82);
  }
}

.launch-notice,
.safety-note {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 20px 0 0;
  padding: 13px 15px;
  border: 1px solid rgba(90, 231, 255, 0.28);
  border-radius: 12px;
  background: rgba(15, 88, 129, 0.18);
}

.launch-notice strong,
.safety-note strong { color: #91f7ff; }
.launch-notice span,
.safety-note span { color: rgba(231, 248, 255, 0.78); }

.metrics { grid-template-columns: repeat(6, minmax(0, 1fr)); }
.metric {
  container-type: inline-size;
  position: relative;
  min-width: 0;
  padding: 18px 16px;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 3px 10px;
  overflow: hidden;
}
.metric-icon {
  width: 46px;
  height: 46px;
  font-size: 20px;
}
.metric small,
.metric strong,
.metric em {
  min-width: 0;
  max-width: 100%;
}
.metric small {
  overflow: hidden;
  font-size: 12px;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.metric strong {
  overflow: hidden;
  font-size: clamp(20px, 10cqi, 30px);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.035em;
  text-overflow: clip;
  white-space: nowrap;
}
.metric em {
  grid-column: 2;
  color: rgba(177, 229, 255, 0.58);
  font-size: 10px;
  font-style: normal;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

@media (max-width: 1500px) {
  .metrics { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .metric:nth-child(3n) { border-right: 0; }
}

.draft-badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 11px;
  border: 1px solid rgba(255, 203, 92, 0.38);
  border-radius: 999px;
  color: #ffe29a;
  background: rgba(255, 179, 38, 0.09);
  font-size: 12px;
  font-weight: 800;
}

.genesis-overview,
.genesis-stages,
.guardian-section,
.platform-modules,
.docs-section,
.risk-section {
  position: relative;
  overflow: hidden;
}

.section[id],
.module-grid > *[id] { scroll-margin-top: 104px; }

.genesis-overview::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -190px;
  top: -210px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(41, 220, 255, 0.2), transparent 70%);
  pointer-events: none;
}

.genesis-principles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.genesis-principles strong {
  padding: 15px;
  border: 1px solid rgba(96, 226, 255, 0.25);
  border-radius: 12px;
  color: #a8f5ff;
  background: rgba(20, 84, 127, 0.18);
  text-align: center;
  font-size: clamp(16px, 2vw, 22px);
}

.genesis-principles p {
  grid-column: 1 / -1;
  margin: 4px 0 0;
  color: rgba(224, 244, 255, 0.74);
  line-height: 1.75;
}

.genesis-dashboard,
.price-stages,
.stage-grid,
.guardian-grid,
.module-grid,
.docs-grid {
  display: grid;
  gap: 14px;
}

.genesis-dashboard {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 24px;
}

.genesis-dashboard article,
.price-stages article,
.stage-grid article,
.guardian-grid article,
.module-grid > * {
  border: 1px solid rgba(102, 218, 255, 0.2);
  border-radius: 14px;
  background: linear-gradient(150deg, rgba(10, 48, 83, 0.88), rgba(5, 23, 53, 0.84));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.035);
}

.genesis-dashboard article { padding: 18px; }
.genesis-dashboard small,
.genesis-dashboard span,
.price-stages small { color: rgba(190, 229, 248, 0.62); }
.genesis-dashboard strong {
  display: block;
  margin: 10px 0 7px;
  color: #fff;
  font-size: clamp(20px, 2.4vw, 30px);
}

.genesis-progress-card {
  margin-top: 16px;
  padding: 20px;
  border: 1px solid rgba(92, 244, 202, 0.24);
  border-radius: 14px;
  background: rgba(7, 48, 67, 0.65);
}

.progress-copy,
.price-state {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.progress-copy strong { color: #8fffe0; font-size: 24px; }
.progress-copy small { color: rgba(213, 241, 255, 0.58); }
.progress-bar {
  height: 14px;
  margin: 17px 0 12px;
  overflow: hidden;
  border: 1px solid rgba(89, 224, 255, 0.24);
  border-radius: 999px;
  background: rgba(1, 16, 39, 0.74);
}
.progress-bar i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #31d6ff, #83ffd2);
  box-shadow: 0 0 25px rgba(74, 244, 220, 0.55);
}
.price-state { color: rgba(221, 243, 255, 0.72); }
.price-state b { color: #fff; }

.price-stages {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 16px;
}
.price-stages article { padding: 16px; }
.price-stages strong { display: block; margin: 8px 0; color: #9cf6ff; font-size: 19px; }

.stage-grid,
.guardian-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); margin-top: 22px; }
.stage-grid article,
.guardian-grid article { padding: 20px; }
.stage-grid article > span,
.guardian-grid article > span { color: #68e8ff; font-weight: 900; }
.stage-grid h3,
.guardian-grid h3 { margin: 12px 0 9px; font-size: 21px; }
.stage-grid strong { color: #a4ffda; }
.stage-grid p { color: rgba(220, 242, 255, 0.66); line-height: 1.65; }

.guardian-grid dl { margin: 15px 0 0; }
.guardian-grid dl div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 0;
  border-top: 1px solid rgba(122, 210, 255, 0.12);
}
.guardian-grid dt { color: rgba(202, 234, 250, 0.62); }
.guardian-grid dd { margin: 0; color: #fff; text-align: right; }
.rule-warning,
.partner-disclaimer,
.data-disclaimer {
  margin: 18px 0 0;
  padding: 13px 15px;
  border-left: 3px solid #ffcf67;
  color: rgba(234, 242, 250, 0.74);
  background: rgba(255, 190, 58, 0.07);
  line-height: 1.65;
}

.nft-release {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
  align-items: center;
  gap: 34px;
}
.nft-visual {
  min-height: 350px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(93, 222, 255, 0.2);
  border-radius: 18px;
  background: radial-gradient(circle, rgba(93, 215, 255, 0.2), rgba(4, 21, 52, 0.72) 68%);
}
.nft-visual img { width: min(100%, 390px); height: auto; image-rendering: pixelated; }
.nft-copy h2 { margin: 8px 0 16px; }
.nft-copy p,
.nft-copy li { color: rgba(219, 241, 255, 0.72); line-height: 1.75; }
.nft-copy ul { padding-left: 20px; }

.connect-grid.five-layers { grid-template-columns: repeat(6, minmax(0, 1fr)); }
.allocation-bars {
  height: 120px;
  display: flex;
  align-items: end;
  gap: 8px;
  margin: 18px 0;
  padding: 12px;
  border-radius: 12px;
  background: rgba(2, 19, 44, 0.65);
}
.allocation-bars i {
  flex: 1;
  height: var(--h);
  min-height: 12px;
  border-radius: 5px 5px 2px 2px;
  background: linear-gradient(#79f2ff, #4375ff);
}

.module-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); margin-top: 20px; }
.module-grid > * {
  min-width: 0;
  padding: 24px;
  color: #eefaff;
  text-decoration: none;
  scroll-margin-top: 100px;
}
.module-grid > a:hover {
  border-color: rgba(112, 238, 255, 0.5);
  transform: translateY(-3px);
}
.module-grid > a:focus-visible {
  outline: 2px solid #70edff;
  outline-offset: 3px;
}
.module-grid span { color: #6cecff; font-weight: 900; }
.module-grid p { color: rgba(216, 239, 252, 0.68); line-height: 1.65; }
.module-grid b { display: inline-block; margin-top: 12px; color: #ffe18d; font-size: 12px; letter-spacing: 0.12em; }

.docs-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: 20px; }
.docs-grid a {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 15px 17px;
  border: 1px solid rgba(97, 219, 255, 0.18);
  border-radius: 11px;
  color: #eaf9ff;
  background: rgba(8, 45, 78, 0.54);
  text-decoration: none;
}
.docs-grid a:hover { border-color: rgba(112, 238, 255, 0.5); transform: translateY(-1px); }
.docs-grid span { color: rgba(185, 226, 245, 0.58); font-size: 12px; }

.risk-section {
  display: grid;
  grid-template-columns: minmax(220px, 0.55fr) minmax(0, 1.45fr);
  gap: 28px;
  border-color: rgba(255, 190, 76, 0.28);
  background: linear-gradient(135deg, rgba(74, 42, 10, 0.28), rgba(6, 26, 55, 0.92));
}
.risk-copy p { margin: 0 0 14px; color: rgba(237, 240, 245, 0.76); line-height: 1.75; }

.risk-entry-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
}

.risk-entry-grid a {
  min-width: 0;
  display: grid;
  gap: 6px;
  padding: 14px 15px;
  border: 1px solid rgba(255, 204, 100, 0.2);
  border-radius: 11px;
  color: #fff4cf;
  background: rgba(255, 185, 62, 0.06);
  text-decoration: none;
}

.risk-entry-grid a:hover {
  border-color: rgba(255, 218, 132, 0.5);
  transform: translateY(-2px);
}

.risk-entry-grid span {
  overflow: hidden;
  color: rgba(233, 240, 244, 0.58);
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Product hub: a compact entry layer inspired by the reference information
   architecture.  It sits below the global metrics so the existing earth,
   robot and campaign sections remain the visual focus of the home page. */
.product-hub {
  position: relative;
  overflow: hidden;
  border-color: rgba(112, 231, 255, 0.22);
  background:
    radial-gradient(circle at 100% 0%, rgba(92, 236, 255, 0.14), transparent 24rem),
    linear-gradient(145deg, rgba(8, 39, 70, 0.86), rgba(3, 18, 40, 0.9));
}

.product-hub::before {
  content: "WOW";
  position: absolute;
  right: -18px;
  bottom: -54px;
  color: rgba(115, 237, 255, 0.035);
  font-size: clamp(120px, 20vw, 260px);
  font-weight: 950;
  letter-spacing: -0.12em;
  pointer-events: none;
}

.product-hub-head,
.product-hub-intro,
.product-hub-grid,
.product-hub-note {
  position: relative;
  z-index: 1;
}

.product-hub-head {
  align-items: flex-end;
}

.product-hub-intro {
  max-width: 760px;
  margin: 14px 0 0;
  color: rgba(211, 237, 248, 0.68);
  line-height: 1.75;
}

.product-hub-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
}

.product-hub-card {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 14px;
  min-width: 0;
  min-height: 196px;
  padding: 18px;
  overflow: hidden;
  border: 1px solid rgba(111, 221, 255, 0.18);
  border-radius: 16px;
  color: #effcff;
  background: rgba(2, 17, 36, 0.58);
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.product-hub-card::after {
  content: "";
  position: absolute;
  right: -34px;
  top: -34px;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: var(--hub-glow, rgba(92, 236, 255, 0.16));
  filter: blur(2px);
  pointer-events: none;
}

.product-hub-card:hover,
.product-hub-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(133, 238, 255, 0.52);
  background: rgba(8, 40, 64, 0.82);
}

.product-hub-card:focus-visible {
  outline: 2px solid #70edff;
  outline-offset: 3px;
}

.product-hub-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(125, 236, 255, 0.35);
  border-radius: 12px;
  color: #9af6ff;
  background: rgba(75, 211, 255, 0.1);
  font-size: 20px;
  font-weight: 900;
}

.product-hub-card small,
.product-hub-card h3,
.product-hub-card p,
.product-hub-card b {
  position: relative;
  z-index: 1;
}

.product-hub-card small {
  color: rgba(173, 233, 249, 0.58);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.product-hub-card h3 {
  margin: 7px 0 0;
  font-size: 17px;
  letter-spacing: -0.025em;
}

.product-hub-card p {
  margin: 9px 0 0;
  color: rgba(208, 234, 245, 0.64);
  font-size: 12px;
  line-height: 1.6;
}

.product-hub-card b {
  color: #aaffdc;
  font-size: 11px;
}

.product-hub-card-ido { --hub-glow: rgba(155, 255, 20, 0.18); }
.product-hub-card-ido .product-hub-icon { color: #c7ff86; border-color: rgba(155, 255, 20, 0.36); background: rgba(155, 255, 20, 0.09); }
.product-hub-card-quest { --hub-glow: rgba(117, 148, 255, 0.2); }
.product-hub-card-quest .product-hub-icon { color: #b9c5ff; border-color: rgba(137, 159, 255, 0.38); background: rgba(106, 123, 255, 0.12); }
.product-hub-card-discover { --hub-glow: rgba(74, 240, 202, 0.18); }
.product-hub-card-discover .product-hub-icon { color: #8effda; border-color: rgba(74, 240, 202, 0.36); background: rgba(74, 240, 202, 0.1); }
.product-hub-card-academy { --hub-glow: rgba(255, 213, 101, 0.16); }
.product-hub-card-academy .product-hub-icon { color: #ffe69b; border-color: rgba(255, 213, 101, 0.36); background: rgba(255, 213, 101, 0.1); }
.product-hub-card-my { --hub-glow: rgba(193, 139, 255, 0.2); }
.product-hub-card-my .product-hub-icon { color: #e0c4ff; border-color: rgba(193, 139, 255, 0.38); background: rgba(193, 139, 255, 0.12); }

.product-hub-note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 16px 0 0;
  color: rgba(185, 222, 236, 0.55);
  font-size: 11px;
}

.product-hub-note span {
  color: #7cf6ff;
  font-size: 9px;
  text-shadow: 0 0 12px rgba(124, 246, 255, 0.8);
}

.mobile-bottom-nav { display: none; }

.wallet-modal { grid-template-columns: 1fr; width: min(560px, calc(100vw - 28px)); }
.wallet-modal-copy { padding: 8px; }
.wallet-options { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin-top: 20px; }
.wallet-option,
.wallet-disconnect {
  min-height: 64px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid rgba(103, 220, 255, 0.22);
  border-radius: 12px;
  color: #eafaff;
  background: rgba(8, 45, 77, 0.72);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}
.wallet-option:hover { border-color: #64eaff; background: rgba(15, 78, 112, 0.76); }
.wallet-option img,
.wallet-option-fallback { width: 36px; height: 36px; border-radius: 10px; }
.wallet-option-fallback { display: grid; place-items: center; color: #06213e; background: linear-gradient(135deg, #71edff, #9effc9); }
.wallet-empty { grid-column: 1 / -1; color: rgba(216, 238, 249, 0.64); }
.wallet-current { margin-top: 16px; padding: 13px; border-radius: 10px; background: rgba(80, 235, 205, 0.1); }
.wallet-current small { display: block; color: rgba(202, 239, 237, 0.62); }
.wallet-current strong { display: block; margin-top: 5px; color: #9cffdf; }
.wallet-disconnect { min-height: 44px; margin-top: 14px; color: #ffc0b5; border-color: rgba(255, 132, 112, 0.3); }

@media (max-width: 1120px) {
  .metrics { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .genesis-dashboard,
  .stage-grid,
  .guardian-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .connect-grid.five-layers { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .product-hub-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 720px) {
  body { padding-bottom: 78px; }
  .header-actions .join-btn,
  .header-actions > .portal-header-button { display: none; }
  body .topbar .header-actions > .language-picker > .language,
  body .portal-topbar .header-actions > .language-picker > .language,
  body .presale-topbar .header-actions > .language-picker > .language,
  body .academy-topbar .header-actions > .language-picker > .language,
  body .swap-topbar .header-actions > .language-picker > .language,
  .header-actions > .wallet-btn,
  .header-actions > .portal-wallet-button {
    display: inline-flex;
    width: 36px;
    min-width: 36px;
    min-height: 36px;
    padding: 0;
    border-radius: 10px;
    color: #102536;
    background: #fff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 14px rgba(16, 37, 54, 0.08);
    justify-content: center;
    gap: 0;
    font-size: 0;
  }
  body .topbar .header-actions > .language-picker > .language {
    border-radius: 50%;
    padding: 7px;
  }
  body .topbar .header-actions > .language-picker .language-current-flag {
    display: inline-block;
    width: 22px;
    height: 22px;
  }
  body .topbar .header-actions > .language-picker [data-language-current-code],
  body .topbar .header-actions > .language-picker .language-chevron {
    display: none;
  }
  body .topbar .header-actions > .language-picker > .language:hover {
    border-color: #0ea77c;
    box-shadow: 0 0 0 3px rgba(14, 167, 124, 0.12);
  }
  body .header-actions > .language-picker .language-menu {
    position: fixed;
    top: 74px;
    right: 12px;
    left: 12px;
    width: auto;
    max-height: calc(100vh - 96px);
    padding: 16px;
    border-radius: 22px;
    background: #fff;
    border: 1px solid rgba(176, 200, 210, 0.65);
    box-shadow: 0 28px 90px rgba(16, 37, 54, 0.16);
    backdrop-filter: blur(24px);
  }
  body .header-actions > .language-picker .language-menu-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }
  body .header-actions > .language-picker .language-option {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 52px;
    padding: 10px 14px;
    border: 1px solid rgba(176, 200, 210, 0.45);
    border-radius: 14px;
    color: #173143;
    background: #fff;
    font-size: 15px;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
    transition: color 160ms ease, background 160ms ease, border-color 160ms ease, transform 160ms ease;
  }
  body .header-actions > .language-picker .language-option:hover,
  body .header-actions > .language-picker .language-option:focus-visible,
  body .header-actions > .language-picker .language-option.is-selected {
    border-color: rgba(14, 167, 124, 0.35);
    color: #0b8c67;
    background: #e9f7f2;
  }
  body .header-actions > .language-picker .language-option:hover {
    transform: translateY(-1px);
  }
  body .header-actions > .language-picker .language-option-flag {
    width: 28px;
    height: 28px;
  }
  body .header-actions > .language-picker .language-option-check {
    margin-left: auto;
    color: #0ea77c;
    font-size: 14px;
    opacity: 0;
  }
  body .header-actions > .language-picker .language-option.is-selected .language-option-check {
    opacity: 1;
  }
  .reference-layout .header-actions > .wallet-btn,
  .reference-layout .header-actions > .portal-wallet-button {
    border-color: rgba(91, 228, 255, 0.48);
    font-size: 0;
  }
  .reference-layout .header-actions > .wallet-btn .wallet-icon {
    width: 19px;
    height: 15px;
  }
  .reference-layout .header-actions > .wallet-btn.is-connected,
  .reference-layout .header-actions > .portal-wallet-button.is-connected {
    border-color: rgba(119, 255, 188, 0.8);
    color: #83ffd1;
    box-shadow: inset 0 0 0 1px rgba(119, 255, 188, 0.16), 0 0 20px rgba(70, 244, 181, 0.2);
  }
  .metrics,
  .genesis-dashboard,
  .price-stages,
  .stage-grid,
  .guardian-grid,
  .module-grid,
  .docs-grid,
  .connect-grid.five-layers { grid-template-columns: 1fr; }
  .product-hub-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .product-hub .section-status { display: none; }
  .genesis-principles { grid-template-columns: 1fr; }
  .genesis-principles p { grid-column: auto; }
  .nft-release,
  .risk-section { grid-template-columns: 1fr; }
  .risk-entry-grid { grid-template-columns: 1fr; }
  .nft-visual { min-height: 250px; }
  .wallet-options { grid-template-columns: 1fr; }
  .mobile-bottom-nav {
    position: fixed;
    z-index: 90;
    left: 0;
    right: 0;
    bottom: 0;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    min-height: 60px;
    padding: 4px 4px calc(4px + env(safe-area-inset-bottom));
    border-top: 1px solid #e1edf1;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 -8px 24px rgba(32, 68, 92, 0.08);
    backdrop-filter: blur(18px);
  }
  .mobile-bottom-nav a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    min-width: 0;
    border-radius: 10px;
    color: #7a8e9a;
    text-decoration: none;
    font-size: 10px;
    font-weight: 700;
  }
  .mobile-bottom-nav a > span { font-size: 22px; line-height: 1; }
  .mobile-bottom-nav a > b { max-width: 100%; overflow: hidden; text-overflow: ellipsis; }
  .mobile-bottom-nav a.active { color: #0ea77c; background: rgba(14, 167, 124, 0.1); }
}

/* Scroll-led campaign motion */
.page-scroll-progress {
  position: fixed;
  z-index: 160;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  pointer-events: none;
  background: rgba(80, 215, 255, 0.08);
}

.page-scroll-progress__bar {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left center;
  background: linear-gradient(90deg, #9bff14, #47edff 55%, #9d6cff);
  box-shadow: 0 0 16px rgba(71, 237, 255, 0.74);
}

html.reveal-ready:not(.reduce-motion) .reveal-item {
  opacity: 0;
  will-change: opacity, transform;
  transform: translate3d(-58px, 0, 0);
  transition:
    opacity 700ms cubic-bezier(.22, 1, .36, 1) var(--reveal-delay, 0ms),
    transform 820ms cubic-bezier(.22, 1, .36, 1) var(--reveal-delay, 0ms);
}

html.reveal-ready:not(.reduce-motion) .reveal-card {
  transform: translate3d(-40px, 20px, 0) scale(.975);
}

html.reveal-ready:not(.reduce-motion) .reveal-row {
  transform: translate3d(-34px, 0, 0);
}

html.reveal-ready:not(.reduce-motion) .reveal-item.is-revealed {
  opacity: 1;
  will-change: auto;
  transform: translate3d(0, 0, 0) scale(1);
}

/* Qualification and referral storytelling */
.genesis-value-path,
.referral-settlement,
.token-allocation-section,
.transaction-tax-section,
.business-flywheel {
  position: relative;
  overflow: hidden;
}

.qualification-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: qualification;
}

.qualification-step {
  position: relative;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 13px;
  min-height: 190px;
  padding: 20px;
  border: 1px solid rgba(92, 224, 255, 0.2);
  border-radius: 15px;
  background: linear-gradient(150deg, rgba(11, 59, 94, 0.84), rgba(5, 23, 53, 0.92));
}

.qualification-step > span,
.allocation-rank {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  color: #05192e;
  background: linear-gradient(135deg, #9bff14, #52e9ff);
  font-weight: 950;
}

.qualification-step small { color: #73eaff; font-weight: 850; letter-spacing: .05em; }
.qualification-step h3 { margin: 10px 0 8px; font-size: 19px; }
.qualification-step p { margin: 0; color: rgba(216, 239, 252, .66); line-height: 1.65; }
.qualification-step:not(:last-child)::after {
  content: "→";
  position: absolute;
  z-index: 2;
  right: -21px;
  top: 50%;
  color: #8cffdc;
  font-size: 22px;
  transform: translateY(-50%);
}

.value-role-grid,
.participation-paths,
.about-details {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.value-role-grid article,
.participation-paths article,
.about-details article {
  padding: 19px;
  border: 1px solid rgba(107, 214, 255, .17);
  border-radius: 13px;
  background: rgba(7, 39, 70, .62);
}

.value-role-grid strong,
.participation-paths strong,
.about-details span { color: #84f3ff; font-weight: 900; }
.value-role-grid h3,
.participation-paths h3,
.about-details h3 { margin: 9px 0 7px; }
.value-role-grid p,
.participation-paths p,
.about-details p { margin: 0; color: rgba(214, 238, 250, .67); line-height: 1.65; }

.settlement-example {
  display: grid;
  grid-template-columns: minmax(0, .85fr) 48px minmax(0, 1fr) 48px minmax(0, 1.15fr);
  align-items: stretch;
  gap: 10px;
  margin-top: 22px;
}

.settlement-node {
  padding: 21px;
  border: 1px solid rgba(92, 225, 255, .2);
  border-radius: 15px;
  background: linear-gradient(145deg, rgba(9, 62, 95, .82), rgba(5, 25, 54, .94));
}
.settlement-node small { color: rgba(192, 230, 247, .62); }
.settlement-node strong { display: block; margin: 10px 0; color: #9dffe0; font-size: clamp(22px, 2.5vw, 34px); }
.settlement-node p { margin: 0; color: rgba(217, 239, 251, .68); line-height: 1.65; }
.settlement-arrow,
.tax-flow-arrow { display: grid; place-items: center; color: #8dffd9; font-size: 28px; }
.settlement-split { display: grid; gap: 10px; }
.guardian-reward { border-color: rgba(155, 255, 20, .32); }
.treasury-net { border-color: rgba(119, 117, 255, .3); }
.settlement-note,
.tax-risk-note {
  margin: 16px 0 0;
  padding: 14px 16px;
  border-left: 3px solid #ffd071;
  color: rgba(232, 241, 248, .72);
  background: rgba(255, 184, 57, .07);
  line-height: 1.7;
}

/* Token allocation ledger */
.allocation-intro { color: rgba(217, 238, 250, .7); line-height: 1.75; }
.allocation-ledger { display: grid; gap: 10px; margin: 22px 0 0; padding: 0; list-style: none; }
.allocation-item {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  min-height: 86px;
  padding: 14px 19px;
  overflow: hidden;
  border: 1px solid rgba(91, 211, 255, .18);
  border-radius: 13px;
  background: rgba(5, 34, 64, .76);
}
.allocation-item::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0 auto 0 0;
  width: calc(var(--share) * 1%);
  background: linear-gradient(90deg, rgba(43, 211, 255, .18), rgba(119, 255, 204, .04));
}
.allocation-primary::before { background: linear-gradient(90deg, rgba(155, 255, 20, .16), rgba(57, 225, 255, .05)); }
.allocation-item h3 { margin: 0 0 5px; }
.allocation-item p { margin: 0; color: rgba(207, 234, 248, .63); line-height: 1.5; }
.allocation-item > strong { color: #a4ffde; font-size: clamp(22px, 3vw, 38px); }
.allocation-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 14px;
  padding: 18px 20px;
  border: 1px solid rgba(155, 255, 20, .32);
  border-radius: 13px;
  background: rgba(34, 86, 52, .2);
}
.allocation-total span { font-weight: 900; letter-spacing: .08em; }
.allocation-total strong { color: #a8ffdd; font-size: 34px; }
.allocation-total small { color: rgba(210, 238, 226, .62); }

.tax-rate-board { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; margin-top: 22px; }
.tax-rate { padding: 24px; border: 1px solid rgba(90, 225, 255, .2); border-radius: 15px; background: rgba(6, 42, 73, .74); }
.tax-rate strong { display: block; margin: 9px 0; color: #a4ffde; font-size: 48px; }
.tax-rate p { color: rgba(215, 238, 250, .67); line-height: 1.65; }
.tax-distribution { display: grid; grid-template-columns: .7fr 54px 1.8fr; align-items: center; gap: 14px; margin-top: 16px; }
.tax-source { padding: 22px; border: 1px solid rgba(155, 255, 20, .3); border-radius: 15px; text-align: center; background: rgba(41, 90, 54, .22); }
.tax-source strong { display: block; margin: 8px 0; color: #a6ffda; font-size: 42px; }
.tax-destination-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
.tax-destination-grid article { padding: 18px; border: 1px solid rgba(100, 217, 255, .18); border-radius: 13px; background: rgba(6, 39, 71, .74); }
.tax-destination-grid strong { color: #84f4ff; font-size: 30px; }
.tax-destination-grid h3 { margin: 8px 0; }
.tax-destination-grid p { color: rgba(213, 237, 249, .64); line-height: 1.55; }

/* Business and content platform */
.flywheel-track { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 12px; margin-top: 22px; }
.flywheel-track article { position: relative; min-height: 176px; padding: 20px; border: 1px solid rgba(90, 221, 255, .18); border-radius: 15px; background: linear-gradient(150deg, rgba(11, 60, 91, .8), rgba(5, 24, 52, .92)); }
.flywheel-track article:not(:last-child)::after { content: "→"; position: absolute; right: -18px; top: 50%; z-index: 3; color: #8cffd9; font-size: 20px; }
.flywheel-track span { color: #9bff14; font-weight: 950; }
.flywheel-track h3 { margin: 12px 0 8px; }
.flywheel-track p { color: rgba(211, 237, 250, .65); line-height: 1.6; }

.video-category-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; margin-top: 10px; }
.video-category-list span { padding: 9px; border: 1px solid rgba(92, 214, 255, .16); border-radius: 8px; color: rgba(221, 242, 252, .72); background: rgba(6, 39, 69, .65); font-size: 12px; text-align: center; }

.partner-logo-marquee { display: block; overflow: hidden; padding: 0; }
.partner-logo-track { display: flex; width: max-content; gap: 12px; padding: 0; animation: partnerLogoFlow 28s linear infinite; }
.partner-logo-track > span { display: inline-flex; flex: 0 0 auto; align-items: center; justify-content: flex-start; gap: 11px; min-width: 190px; min-height: 64px; padding: 8px 15px 8px 9px; }
.partner-logo-track > span img { display: block; flex: 0 0 46px; width: 46px; height: 42px; padding: 6px; object-fit: contain; border-radius: 10px; background: #fff; }
.partner-logo-track > span strong { overflow: hidden; font-size: 13px; text-overflow: ellipsis; white-space: nowrap; }
.partner-logo-marquee:hover .partner-logo-track { animation-play-state: paused; }
@keyframes partnerLogoFlow { to { transform: translateX(-50%); } }

.about-details { grid-column: 1 / -1; }
.about-details article { min-height: 160px; }
.module-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }

@media (max-width: 1120px) {
  .qualification-flow,
  .flywheel-track { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .qualification-step:not(:last-child)::after,
  .flywheel-track article:not(:last-child)::after { display: none; }
  .settlement-example { grid-template-columns: 1fr; }
  .settlement-arrow,
  .tax-flow-arrow { transform: rotate(90deg); }
  .tax-distribution { grid-template-columns: 1fr; }
  .value-role-grid,
  .participation-paths,
  .about-details { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 720px) {
  body { padding-bottom: calc(78px + env(safe-area-inset-bottom)); }
  .qualification-flow,
  .value-role-grid,
  .participation-paths,
  .about-details,
  .tax-rate-board,
  .tax-destination-grid,
  .module-grid { grid-template-columns: 1fr; }
  .qualification-step { min-height: auto; }
  .allocation-item { grid-template-columns: 42px minmax(0, 1fr) auto; padding: 13px; }
  .allocation-item p { display: none; }
  .allocation-total { align-items: flex-start; flex-direction: column; }
  .stage-grid,
  .guardian-grid,
  .price-stages,
  .flywheel-track,
  .scene-row {
    display: flex;
    grid-template-columns: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding-bottom: 8px;
  }
  .stage-grid > *,
  .guardian-grid > *,
  .price-stages > *,
  .flywheel-track > *,
  .scene-row > * {
    flex: 0 0 min(84vw, 330px);
    scroll-snap-align: start;
  }
  html.reveal-ready:not(.reduce-motion) .reveal-item { transform: translate3d(-30px, 0, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .partner-logo-track { animation: none; }
  .page-scroll-progress__bar { transition: none; }
}

/* Product polish: notification center and data-state language. */
.notification-button {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border: 1px solid rgba(126, 229, 255, 0.28);
  border-radius: 12px;
  color: #d9fbff;
  background: rgba(4, 30, 53, 0.78);
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}
.notification-button:hover,
.notification-button:focus-visible { transform: translateY(-2px); border-color: rgba(172, 255, 73, 0.72); background: rgba(13, 61, 75, 0.9); outline: none; }
.notification-bell { display: grid; place-items: center; line-height: 1; }
.notification-bell svg { fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.notification-dot { position: absolute; top: 8px; right: 8px; width: 7px; height: 7px; border-radius: 50%; background: #aaff47; opacity: 0; transition: opacity 180ms ease; }
.notification-button.has-unread .notification-dot { opacity: 1; box-shadow: 0 0 0 3px rgba(170,255,71,.14), 0 0 14px rgba(170,255,71,.7); }
.notification-layer { position: fixed; z-index: 1200; inset: 0; display: flex; justify-content: flex-end; background: rgba(0, 8, 24, .56); backdrop-filter: blur(8px); }
.notification-layer[hidden] { display: none !important; }
.notification-drawer { width: min(440px, 100%); height: 100%; padding: 28px 24px 20px; overflow: auto; border-left: 1px solid rgba(132, 229, 255, .22); background: linear-gradient(180deg, rgba(7, 28, 55, .98), rgba(3, 14, 35, .98)); box-shadow: -20px 0 80px rgba(0,0,0,.34); animation: notificationSlideIn 220ms ease both; }
.notification-drawer-head, .notification-drawer-foot { display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.notification-drawer-head { margin-bottom: 22px; }
.notification-drawer-head h2 { margin: 7px 0 0; font-size: 28px; color: #effcff; }
.notification-close { border: 0; color: #c3e9f5; background: transparent; font-size: 30px; cursor: pointer; }
.notification-list { display: grid; gap: 10px; }
.notification-item { display: grid; grid-template-columns: 10px 1fr auto; gap: 12px; align-items: start; padding: 15px 14px; border: 1px solid rgba(125, 220, 245, .17); border-radius: 15px; color: inherit; text-decoration: none; background: rgba(8, 43, 69, .62); transition: border-color 180ms ease, transform 180ms ease, background 180ms ease; }
.notification-item:hover { transform: translateY(-2px); border-color: rgba(171, 255, 83, .5); background: rgba(14, 66, 78, .78); }
.notification-item.is-read { opacity: .63; }
.notification-tone { width: 8px; height: 8px; margin-top: 7px; border-radius: 50%; background: #aaff47; box-shadow: 0 0 12px currentColor; }
.notification-tone-cyan { color: #6de8ff; background: #6de8ff; } .notification-tone-yellow { color: #ffe36b; background: #ffe36b; } .notification-tone-purple { color: #c09cff; background: #c09cff; }
.notification-item-copy { display: grid; gap: 5px; }
.notification-item-copy small { color: #8eeaff; letter-spacing: .12em; text-transform: uppercase; font-size: 10px; }
.notification-item-copy strong { color: #f0fbff; font-size: 14px; line-height: 1.35; }
.notification-item-copy span { color: #9fc3d4; font-size: 12px; line-height: 1.55; }
.notification-item-arrow { color: #b5ff62; font-size: 18px; }
.notification-drawer-foot { margin-top: 18px; padding-top: 16px; border-top: 1px solid rgba(125,220,245,.15); }
.notification-drawer-foot button, .notification-drawer-foot a { color: #91e9ff; border: 0; background: transparent; font: inherit; font-size: 12px; text-decoration: none; cursor: pointer; }
.notification-drawer-foot a:hover, .notification-drawer-foot button:hover { color: #c5ff7d; }
body.notification-open { overflow: hidden; }
@keyframes notificationSlideIn { from { opacity: 0; transform: translateX(28px); } to { opacity: 1; transform: translateX(0); } }
.status-live { color: #b8ff61 !important; } .status-preview { color: #ffd56a !important; } .status-chain { color: #82eaff !important; } .status-disabled { color: #9cafc2 !important; }
.product-status-row { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.product-status-chip { display: inline-flex; align-items: center; gap: 6px; padding: 6px 10px; border: 1px solid rgba(125,220,245,.22); border-radius: 999px; color: #b6dce9; background: rgba(7, 35, 56, .62); font-size: 11px; }
.product-status-chip::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: currentColor; box-shadow: 0 0 10px currentColor; }
.live-operations { padding-top: 28px; padding-bottom: 28px; }
.live-operations-intro { max-width: 760px; margin: 0 0 18px; color: #9bbdcc; line-height: 1.75; }
.live-operations-statuses { gap: 10px; }
.live-operations-statuses .product-status-chip { min-height: 34px; }
@media (max-width: 720px) { .notification-button { width: 38px; height: 38px; border-radius: 10px; } .notification-drawer { padding: 22px 16px 18px; } }

/* Unified header actions: notification, wallet and menu share one visual system. */
.header-actions,
.presale-header-actions {
  gap: 10px !important;
}
.header-actions .notification-button,
.presale-header-actions .notification-button {
  width: 42px !important;
  height: 42px !important;
  min-width: 42px;
  border: 1px solid #496b7d !important;
  border-radius: 13px !important;
  color: #effcff !important;
  background: linear-gradient(145deg,#3f5d70,#2d4658) !important;
  box-shadow: 0 8px 18px rgba(34,64,80,.16) !important;
}
.header-actions .notification-button:hover,
.presale-header-actions .notification-button:hover {
  border-color: #5f8294 !important;
  background: linear-gradient(145deg,#486a7e,#345264) !important;
}
.header-actions .notification-dot,
.presale-header-actions .notification-dot {
  top: 7px;
  right: 7px;
  width: 8px;
  height: 8px;
  background: #9cff47;
}
.header-actions .menu-toggle,
.presale-header-actions .menu-toggle,
.header-actions > .portal-wallet-button,
.presale-header-actions > .portal-wallet-button {
  width: 42px !important;
  min-width: 42px !important;
  height: 42px !important;
  min-height: 42px !important;
  padding: 0 !important;
  border: 1px solid #bad0db !important;
  border-radius: 13px !important;
  color: #172b3d !important;
  background: #fff !important;
  box-shadow: 0 7px 17px rgba(39,73,91,.08) !important;
}
.header-actions .menu-toggle span,
.presale-header-actions .menu-toggle span {
  width: 19px !important;
  height: 2px !important;
  background: #172b3d !important;
}

@media (max-width: 1024px) {
  .header-actions > .portal-wallet-button,
  .presale-header-actions > .portal-wallet-button {
    position: relative;
    display: inline-flex !important;
    flex: 0 0 42px !important;
    overflow: visible !important;
    font-size: 0 !important;
  }
  .header-actions > .portal-wallet-button::before,
  .presale-header-actions > .portal-wallet-button::before {
    content: "" !important;
    box-sizing: border-box;
    width: 22px;
    height: 16px;
    border: 2px solid #172b3d;
    border-radius: 3px;
    background: transparent;
  }
  .header-actions > .portal-wallet-button::after,
  .presale-header-actions > .portal-wallet-button::after {
    content: "" !important;
    position: absolute;
    right: 8px;
    top: 17px;
    box-sizing: border-box;
    width: 10px;
    height: 8px;
    border: 2px solid #172b3d;
    border-radius: 3px;
    background: #fff;
  }
  .header-actions > .portal-wallet-button.is-connected::before,
  .presale-header-actions > .portal-wallet-button.is-connected::before {
    border-color: #0b9479;
  }
  .header-actions > .portal-wallet-button.is-connected::after,
  .presale-header-actions > .portal-wallet-button.is-connected::after {
    border-color: #0b9479;
  }
}

@media (max-width: 720px) {
  .header-actions,
  .presale-header-actions { gap: 8px !important; }
  .header-actions .notification-button,
  .presale-header-actions .notification-button,
  .header-actions .menu-toggle,
  .presale-header-actions .menu-toggle,
  .header-actions > .portal-wallet-button,
  .presale-header-actions > .portal-wallet-button {
    width: 42px !important;
    min-width: 42px !important;
    height: 42px !important;
    min-height: 42px !important;
    border-radius: 12px !important;
  }
}
