:root {
  color-scheme: dark;
  --bg: #050811;
  --bg-soft: #08101c;
  --bg-panel: rgba(10, 16, 29, 0.78);
  --bg-panel-strong: rgba(8, 13, 24, 0.94);
  --border: rgba(136, 169, 255, 0.16);
  --border-strong: rgba(136, 220, 255, 0.24);
  --text: #eef4ff;
  --text-muted: rgba(225, 235, 255, 0.76);
  --text-soft: rgba(196, 211, 243, 0.58);
  --cyan: #90f7ff;
  --blue: #6d8fff;
  --violet: #b493ff;
  --gold: #ffd8a3;
  --teal: #61d8c1;
  --danger: #ff8c96;
  --shadow-lg: 0 38px 120px rgba(2, 7, 18, 0.68);
  --shadow-md: 0 24px 70px rgba(4, 8, 20, 0.5);
  --shadow-hover: 0 34px 90px rgba(3, 9, 22, 0.62);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: min(1240px, calc(100% - 2rem));
  --nav-height: 88px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 14% 0%, rgba(117, 152, 255, 0.18), transparent 22%),
    radial-gradient(circle at 84% 12%, rgba(107, 241, 255, 0.14), transparent 20%),
    radial-gradient(circle at 50% 110%, rgba(181, 143, 255, 0.14), transparent 30%),
    linear-gradient(180deg, #03050c 0%, #070b15 34%, #060b14 100%);
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

section[id],
main[id] {
  scroll-margin-top: calc(var(--nav-height) + 1rem);
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  border: 0;
  background: none;
  color: inherit;
  cursor: pointer;
}

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

h1,
h2,
h3,
h4 {
  font-family: "Sora", sans-serif;
  line-height: 1.04;
}

.site-shell {
  position: relative;
  isolation: isolate;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-ambient {
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  overflow: clip;
}

.site-ambient::before,
.site-ambient::after {
  content: "";
  position: absolute;
  inset: 0;
}

.site-ambient::before {
  background-image:
    linear-gradient(rgba(119, 151, 219, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(119, 151, 219, 0.045) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 1) 22%, transparent 80%);
  opacity: 0.72;
}

.site-ambient::after {
  background:
    radial-gradient(circle at 20% 18%, rgba(126, 164, 255, 0.11), transparent 20%),
    radial-gradient(circle at 80% 16%, rgba(122, 241, 255, 0.11), transparent 16%),
    radial-gradient(circle at 50% 70%, rgba(181, 143, 255, 0.08), transparent 24%);
  filter: blur(24px);
}

.ambient-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(18px);
  opacity: 0.6;
  animation: float 18s ease-in-out infinite;
}

.ambient-orb.one {
  width: 30rem;
  height: 30rem;
  left: -8rem;
  top: -6rem;
  background: radial-gradient(circle, rgba(118, 162, 255, 0.22), transparent 72%);
}

.ambient-orb.two {
  width: 26rem;
  height: 26rem;
  right: -8rem;
  top: 18rem;
  background: radial-gradient(circle, rgba(120, 244, 255, 0.18), transparent 72%);
  animation-delay: -5s;
}

.ambient-orb.three {
  width: 24rem;
  height: 24rem;
  left: 38%;
  bottom: 8rem;
  background: radial-gradient(circle, rgba(181, 143, 255, 0.18), transparent 72%);
  animation-delay: -10s;
}

.ambient-scan {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 14%, transparent 86%, rgba(255, 255, 255, 0.015)),
    linear-gradient(90deg, rgba(125, 152, 255, 0.03), transparent 18%, transparent 82%, rgba(122, 245, 255, 0.03));
  mix-blend-mode: screen;
  opacity: 0.45;
}

.header {
  position: sticky;
  top: 0;
  z-index: 40;
  padding: 0.9rem 0;
}

.header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 8, 18, 0.84), rgba(4, 8, 18, 0.42));
  backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  opacity: 0;
  transition: opacity 220ms ease, border-color 220ms ease;
}

.header.is-scrolled::before {
  opacity: 1;
  border-color: rgba(132, 166, 255, 0.14);
}

.nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--nav-height);
  gap: 1.4rem;
}

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

.brand-mark {
  width: 3.15rem;
  height: 3.15rem;
  border-radius: 1.1rem;
  padding: 0.28rem;
  background:
    linear-gradient(145deg, rgba(122, 247, 255, 0.16), rgba(111, 138, 255, 0.08)),
    rgba(10, 15, 29, 0.72);
  border: 1px solid rgba(141, 186, 255, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 18px 40px rgba(3, 9, 19, 0.4);
}

.brand-mark-image {
  overflow: hidden;
  padding: 0;
}

.brand-mark-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 34%;
  transform: scale(1.48);
  filter: saturate(1.08) drop-shadow(0 0 12px rgba(126, 244, 255, 0.18));
}

.brand-copy {
  display: grid;
  gap: 0.12rem;
}

.brand-copy strong {
  font-family: "Sora", sans-serif;
  font-size: 1.04rem;
  letter-spacing: 0.02em;
}

.brand-copy span {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.nav-links a {
  position: relative;
  padding: 0.85rem 1rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  transition: color 200ms ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 0.45rem;
  height: 2px;
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: center;
  background: linear-gradient(90deg, var(--cyan), var(--violet));
  transition: transform 180ms ease;
}

.nav-links a:hover,
.nav-links a.is-current {
  color: var(--text);
}

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

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.35rem;
  padding: 0.95rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  letter-spacing: 0.01em;
  overflow: hidden;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease,
    background-color 220ms ease;
}

.button::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0));
  opacity: 0;
  transition: opacity 220ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:hover::before {
  opacity: 1;
}

.button.primary {
  color: #06101b;
  background: linear-gradient(135deg, rgba(133, 247, 255, 0.98), rgba(112, 148, 255, 0.98) 54%, rgba(183, 142, 255, 0.92));
  box-shadow: 0 22px 56px rgba(94, 131, 255, 0.34);
}

.button.secondary {
  background: rgba(11, 18, 33, 0.82);
  border-color: rgba(138, 174, 255, 0.2);
  color: var(--text);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.button.ghost {
  background: rgba(10, 15, 29, 0.32);
  border-color: rgba(149, 208, 255, 0.18);
  color: var(--text);
}

.button.primary:hover {
  box-shadow: 0 28px 70px rgba(101, 156, 255, 0.4);
}

.button.secondary:hover,
.button.ghost:hover {
  border-color: rgba(149, 208, 255, 0.28);
  box-shadow: 0 18px 44px rgba(4, 10, 23, 0.34);
}

.button:focus-visible,
.nav-links a:focus-visible,
.nav-toggle:focus-visible,
.channel-link:focus-visible,
.page-link:focus-visible,
.footer-links a:focus-visible,
.faq-button:focus-visible {
  outline: none;
  box-shadow: 0 0 0 1px rgba(8, 12, 22, 0.9), 0 0 0 4px rgba(125, 246, 255, 0.22);
}

.nav-toggle {
  position: relative;
  display: none;
  width: 3rem;
  height: 3rem;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  border: 1px solid rgba(137, 170, 255, 0.18);
  background: rgba(10, 15, 27, 0.74);
  z-index: 3;
}

.nav-toggle span {
  position: absolute;
  width: 1.15rem;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle span:first-child {
  transform: translateY(-4px);
}

.nav-toggle span:last-child {
  transform: translateY(4px);
}

body.menu-open .nav-toggle span:first-child {
  transform: rotate(45deg);
}

body.menu-open .nav-toggle span:last-child {
  transform: rotate(-45deg);
}

.section {
  position: relative;
  padding: 5.8rem 0;
}

.page-hero {
  position: relative;
  padding-top: 4rem;
  padding-bottom: 4.2rem;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 24%, transparent 72%, rgba(8, 13, 25, 0.16)),
    radial-gradient(circle at 12% 24%, rgba(181, 143, 255, 0.06), transparent 24%),
    radial-gradient(circle at 84% 10%, rgba(125, 246, 255, 0.08), transparent 24%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
}

.hero-copy,
.copy-stack {
  display: grid;
  gap: 1.35rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.68rem;
  width: fit-content;
  padding: 0.56rem 0.86rem;
  border-radius: 999px;
  background: rgba(12, 19, 34, 0.78);
  border: 1px solid rgba(135, 170, 255, 0.18);
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow-dot {
  width: 0.52rem;
  height: 0.52rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--violet));
  box-shadow: 0 0 18px rgba(126, 238, 255, 0.5);
}

h1 {
  font-size: clamp(3.2rem, 7vw, 6.25rem);
  letter-spacing: -0.05em;
  max-width: 11ch;
}

h2 {
  font-size: clamp(2.1rem, 5vw, 4rem);
  letter-spacing: -0.045em;
  max-width: 14ch;
}

.gradient {
  color: transparent;
  background: linear-gradient(135deg, var(--cyan), #a8d1ff 38%, #bc97ff 70%, #ffe1b0 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.lead {
  max-width: 42rem;
  color: var(--text-muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.hero-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.metric-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.72rem 0.95rem;
  border-radius: 999px;
  background: rgba(10, 16, 30, 0.78);
  border: 1px solid rgba(136, 172, 255, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  color: var(--text-muted);
  font-size: 0.9rem;
}

.metric-pill i {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  box-shadow: 0 0 16px rgba(126, 244, 255, 0.38);
}

.panel,
.card,
.feature-card,
.strip-card,
.faq-item,
.token-card,
.timeline-card,
.channel-card,
.cta-shell,
.footer-shell,
.hero-stage,
.page-art,
.split-panel,
.board {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0)),
    var(--bg-panel);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(16px);
}

.card,
.feature-card,
.strip-card,
.token-card,
.timeline-card,
.channel-card,
.faq-item {
  border-radius: var(--radius-lg);
}

.card,
.feature-card,
.strip-card,
.token-card,
.timeline-card,
.channel-card,
.split-panel,
.spotlight-panel,
.utility-board,
.token-board,
.cta-shell {
  overflow: hidden;
  isolation: isolate;
  transition:
    transform 240ms ease,
    border-color 240ms ease,
    box-shadow 240ms ease;
}

.card::before,
.feature-card::before,
.strip-card::before,
.token-card::before,
.timeline-card::before,
.channel-card::before,
.split-panel::before,
.spotlight-panel::before,
.utility-board::before,
.token-board::before,
.cta-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 22%);
  opacity: 0.45;
  pointer-events: none;
}

.card::after,
.feature-card::after,
.strip-card::after,
.token-card::after,
.timeline-card::after,
.channel-card::after,
.split-panel::after,
.spotlight-panel::after,
.utility-board::after,
.token-board::after,
.cta-shell::after {
  content: "";
  position: absolute;
  left: -8%;
  bottom: -18%;
  width: 12rem;
  height: 12rem;
  background: radial-gradient(circle, rgba(126, 244, 255, 0.1), transparent 70%);
  opacity: 0;
  transition: opacity 240ms ease;
  pointer-events: none;
}

.card:hover,
.feature-card:hover,
.strip-card:hover,
.token-card:hover,
.timeline-card:hover,
.channel-card:hover,
.split-panel:hover,
.spotlight-panel:hover,
.utility-board:hover,
.token-board:hover,
.cta-shell:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-hover);
}

.card:hover::after,
.feature-card:hover::after,
.strip-card:hover::after,
.token-card:hover::after,
.timeline-card:hover::after,
.channel-card:hover::after,
.split-panel:hover::after,
.spotlight-panel:hover::after,
.utility-board:hover::after,
.token-board:hover::after,
.cta-shell:hover::after {
  opacity: 1;
}

.section-head {
  display: grid;
  gap: 1rem;
  max-width: 46rem;
}

.section-head.center {
  margin: 0 auto 3rem;
  justify-items: center;
  text-align: center;
}

.section-head p,
.copy-stack p,
.split-copy p,
.footer-copy p,
.faq-answer p,
.token-card p,
.feature-card p,
.timeline-card p,
.channel-card p,
.strip-card p,
.card p {
  color: var(--text-muted);
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 1rem;
}

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

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

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

.strip-card,
.feature-card,
.token-card,
.timeline-card,
.channel-card,
.card {
  padding: 1.4rem;
}

.strip-card strong,
.feature-card h3,
.token-card h3,
.timeline-card h3,
.channel-card h3,
.card h3 {
  display: block;
  font-size: 1rem;
}

.label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-soft);
  font-size: 0.73rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}

.icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(125, 246, 255, 0.16), rgba(181, 143, 255, 0.18));
  border: 1px solid rgba(133, 176, 255, 0.14);
  color: var(--cyan);
  font-family: "Sora", sans-serif;
  font-weight: 700;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
  gap: clamp(1.75rem, 4vw, 4rem);
  align-items: start;
}

.split-panel {
  padding: clamp(1.4rem, 3vw, 2.1rem);
  border-radius: calc(var(--radius-xl) + 0.35rem);
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.stat-card {
  padding: 1.2rem;
  border-radius: var(--radius-md);
  background: rgba(10, 15, 29, 0.72);
  border: 1px solid rgba(136, 172, 255, 0.14);
}

.stat-card strong {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 1.4rem;
  letter-spacing: -0.04em;
}

.stat-card span {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-soft);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}

.hero-stage {
  min-height: 38rem;
  border-radius: calc(var(--radius-xl) + 0.45rem);
  overflow: hidden;
  perspective: 1200px;
}

.hero-stage-inner {
  position: relative;
  width: 100%;
  min-height: inherit;
  display: grid;
  place-items: center;
  transform-style: preserve-3d;
  transition: transform 220ms ease;
  will-change: transform;
}

.stage-grid,
.stage-network,
.stage-glow,
.stage-floor {
  position: absolute;
}

.stage-glow {
  inset: 8% 10%;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(126, 244, 255, 0.16), rgba(120, 152, 255, 0.08) 34%, transparent 66%),
    radial-gradient(circle at center, rgba(182, 142, 255, 0.1), transparent 65%);
  filter: blur(10px);
  animation: pulse 8s ease-in-out infinite;
}

.stage-floor {
  bottom: 6%;
  width: 82%;
  height: 28%;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(109, 145, 255, 0.18), transparent 56%),
    radial-gradient(circle at center, rgba(120, 244, 255, 0.08), transparent 62%);
  filter: blur(14px);
  transform: translateZ(-120px);
}

.stage-grid {
  inset: 14% 8%;
  border-radius: 2.2rem;
  border: 1px solid rgba(128, 157, 255, 0.09);
  background:
    linear-gradient(rgba(118, 146, 227, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(118, 146, 227, 0.05) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 1) 28%, transparent 90%);
  opacity: 0.9;
}

.stage-network {
  inset: 11% 6%;
}

.stage-network svg,
.wireframe svg {
  width: 100%;
  height: 100%;
}

.stage-network path,
.wireframe path {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.stage-network .line-main,
.wireframe .line-main {
  stroke: url(#netGradient);
  stroke-width: 2;
  opacity: 0.62;
  stroke-dasharray: 12 18;
  animation: dash 20s linear infinite;
}

.stage-network .line-soft,
.wireframe .line-soft {
  stroke: rgba(145, 176, 255, 0.22);
  stroke-width: 1.4;
}

.stage-network .node,
.wireframe .node {
  fill: rgba(145, 244, 255, 0.16);
  stroke: rgba(145, 244, 255, 0.55);
  stroke-width: 1.5;
  filter: drop-shadow(0 0 12px rgba(125, 240, 255, 0.28));
}

.hero-sphere,
.page-core {
  position: relative;
  width: min(82vw, 21rem);
  aspect-ratio: 1;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 26% 22%, rgba(255, 255, 255, 0.22), transparent 18%),
    linear-gradient(160deg, rgba(124, 248, 255, 0.3), rgba(118, 148, 255, 0.24) 48%, rgba(183, 141, 255, 0.2));
  box-shadow:
    inset 0 0 0 1px rgba(141, 209, 255, 0.18),
    0 0 90px rgba(92, 152, 255, 0.3),
    0 60px 130px rgba(2, 7, 18, 0.6);
}

.hero-sphere::before,
.hero-sphere::after,
.page-core::before,
.page-core::after {
  content: "";
  position: absolute;
  inset: -1.2rem;
  border-radius: inherit;
  border: 1px solid rgba(143, 190, 255, 0.18);
}

.hero-sphere::after,
.page-core::after {
  inset: -2.3rem;
  border-color: rgba(174, 149, 255, 0.14);
}

.hero-sphere-shell,
.page-core-shell {
  width: calc(100% - 1.3rem);
  aspect-ratio: 1;
  border-radius: inherit;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 22%, rgba(255, 255, 255, 0.1), transparent 16%),
    linear-gradient(180deg, rgba(9, 16, 31, 0.84), rgba(6, 12, 24, 0.97));
  border: 1px solid rgba(143, 191, 255, 0.2);
}

.hero-sphere-shell::before,
.page-core-shell::before {
  content: "";
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(120, 244, 255, 0.12), transparent 55%),
    conic-gradient(from -20deg, rgba(126, 244, 255, 0.12), rgba(111, 148, 255, 0.08), rgba(183, 141, 255, 0.16), rgba(126, 244, 255, 0.12));
  filter: blur(10px);
}

.hero-sphere-rune,
.page-core-rune {
  position: relative;
  width: 46%;
  aspect-ratio: 1;
}

.hero-sphere-rune svg,
.page-core-rune svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 28px rgba(129, 186, 255, 0.22));
}

.hero-caption,
.page-caption {
  position: absolute;
  bottom: 14%;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.52rem 0.85rem;
  border-radius: 999px;
  background: rgba(10, 15, 29, 0.72);
  border: 1px solid rgba(133, 167, 255, 0.16);
  color: var(--text-muted);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(141, 175, 255, 0.16);
  animation: spin 28s linear infinite;
}

.orbit.one {
  width: min(92vw, 33rem);
  aspect-ratio: 1;
}

.orbit.two {
  width: min(74vw, 26rem);
  aspect-ratio: 1;
  animation-direction: reverse;
  animation-duration: 22s;
}

.orbit.three {
  width: min(58vw, 20rem);
  aspect-ratio: 1;
  animation-duration: 18s;
}

.orbit-card {
  position: absolute;
  top: 5%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 10.5rem;
  max-width: 12rem;
  padding: 0.95rem;
  border-radius: var(--radius-sm);
  background: rgba(9, 15, 28, 0.84);
  border: 1px solid rgba(142, 184, 255, 0.16);
  box-shadow: var(--shadow-md);
  text-align: center;
}

.orbit-card span,
.mini-panel span,
.roadmap-phase,
.footer-label,
.legend-label {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--text-soft);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}

.orbit-card strong,
.mini-panel strong {
  display: block;
  font-size: 0.95rem;
  line-height: 1.35;
}

.mini-panel {
  position: absolute;
  max-width: 14rem;
  padding: 1rem 1.05rem;
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0)),
    rgba(10, 15, 28, 0.84);
  border: 1px solid rgba(136, 174, 255, 0.16);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(14px);
}

.mini-panel.top {
  top: 8%;
  right: 2%;
}

.mini-panel.bottom {
  left: 2%;
  bottom: 10%;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.page-home .page-hero {
  padding-top: 4.7rem;
  padding-bottom: 4.8rem;
}

.page-home h1 {
  max-width: 10ch;
}

.section-divider {
  width: min(1320px, calc(100% - 2rem));
  height: 1px;
  margin: 0 auto;
  background: linear-gradient(90deg, transparent, rgba(123, 176, 255, 0.26), rgba(186, 146, 255, 0.3), transparent);
  position: relative;
}

.section-divider::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 7rem;
  height: 7rem;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(123, 216, 255, 0.12), transparent 68%);
  filter: blur(8px);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.feature-card p,
.token-card p,
.timeline-card p,
.channel-card p,
.card p {
  margin-top: 0.85rem;
}

.page-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.page-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 0.95rem;
  color: var(--cyan);
  font-weight: 700;
  transition: color 180ms ease, transform 180ms ease;
}

.page-link::after {
  content: "↗";
  font-size: 0.95rem;
}

.page-link:hover {
  color: var(--text);
  transform: translateX(2px);
}

.contract-code {
  width: 100%;
  padding: 1rem 1.1rem;
  border-radius: calc(var(--radius-md) + 0.1rem);
  border: 1px solid rgba(138, 175, 255, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0)),
    rgba(8, 13, 24, 0.88);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 0.98rem;
  line-height: 1.7;
  word-break: break-all;
}

.contract-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.contract-note {
  color: var(--text-soft);
  font-size: 0.95rem;
}

.contract-note a {
  color: var(--cyan);
}

.contract-note a:hover {
  color: var(--text);
}

.spotlight-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(1.6rem, 4vw, 3rem);
  padding: clamp(1.45rem, 4vw, 2.4rem);
  border-radius: calc(var(--radius-xl) + 0.4rem);
}

.info-cluster {
  display: grid;
  gap: 1rem;
}

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

.utility-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(1.6rem, 4vw, 3rem);
  align-items: start;
}

.utility-board {
  padding: clamp(1.55rem, 4vw, 2.2rem);
  border-radius: calc(var(--radius-xl) + 0.35rem);
}

.utility-board ul {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--text-muted);
}

.utility-board li + li {
  margin-top: 0.65rem;
}

.wireframe {
  position: relative;
  min-height: 28rem;
  border-radius: calc(var(--radius-xl) + 0.35rem);
  overflow: hidden;
  background:
    radial-gradient(circle at 28% 20%, rgba(125, 246, 255, 0.1), transparent 18%),
    radial-gradient(circle at 72% 18%, rgba(113, 146, 255, 0.12), transparent 18%),
    linear-gradient(180deg, rgba(10, 16, 29, 0.92), rgba(8, 13, 24, 0.96));
  border: 1px solid rgba(136, 174, 255, 0.14);
  box-shadow: var(--shadow-lg);
}

.wireframe::before {
  content: "";
  position: absolute;
  inset: 1rem;
  border-radius: calc(var(--radius-xl) - 0.15rem);
  border: 1px solid rgba(136, 174, 255, 0.08);
}

.wireframe-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(117, 145, 225, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(117, 145, 225, 0.05) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 1) 22%, transparent 86%);
}

.wire-node {
  position: absolute;
  width: 8rem;
  padding: 0.8rem;
  border-radius: 1rem;
  background: rgba(9, 15, 28, 0.82);
  border: 1px solid rgba(137, 170, 255, 0.14);
  box-shadow: var(--shadow-md);
  text-align: center;
}

.wire-node strong {
  display: block;
  font-size: 0.92rem;
}

.wire-node span {
  display: block;
  margin-top: 0.25rem;
  color: var(--text-soft);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.wire-node.one { top: 10%; left: 8%; }
.wire-node.two { top: 14%; right: 10%; }
.wire-node.three { bottom: 16%; left: 10%; }
.wire-node.four { bottom: 12%; right: 8%; }

.vision-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 4rem;
  position: relative;
}

.timeline-grid::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, transparent, rgba(122, 180, 255, 0.32), rgba(184, 145, 255, 0.32), transparent);
}

.timeline-card {
  min-height: 15rem;
}

.timeline-card:nth-child(odd) {
  transform: translateY(-1.2rem);
}

.timeline-card:nth-child(even) {
  transform: translateY(1.2rem);
}

.timeline-dot {
  position: absolute;
  top: 50%;
  width: 0.95rem;
  height: 0.95rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--violet));
  box-shadow: 0 0 20px rgba(128, 208, 255, 0.4);
}

.timeline-card.left .timeline-dot {
  right: -2.52rem;
  transform: translateY(-50%);
}

.timeline-card.right .timeline-dot {
  left: -2.52rem;
  transform: translateY(-50%);
}

.timeline-micro {
  margin-top: 0.95rem;
  display: inline-flex;
  padding: 0.55rem 0.75rem;
  border-radius: 999px;
  background: rgba(10, 15, 29, 0.72);
  border: 1px solid rgba(136, 174, 255, 0.12);
  color: var(--text-muted);
  font-size: 0.82rem;
}

.token-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

.token-board {
  position: sticky;
  top: calc(var(--nav-height) + 1.6rem);
  padding: clamp(1.65rem, 4vw, 2.5rem);
  border-radius: calc(var(--radius-xl) + 0.45rem);
  background:
    radial-gradient(circle at 28% 18%, rgba(125, 246, 255, 0.12), transparent 18%),
    linear-gradient(180deg, rgba(10, 16, 30, 0.94), rgba(7, 12, 23, 0.98));
  border: 1px solid rgba(140, 176, 255, 0.16);
  box-shadow: var(--shadow-lg);
}

.token-ring {
  --p1: 28;
  --p2: 22;
  --p3: 18;
  --p4: 12;
  --p5: 10;
  --p6: 10;
  --s1: calc(var(--p1) * 1%);
  --s2: calc((var(--p1) + var(--p2)) * 1%);
  --s3: calc((var(--p1) + var(--p2) + var(--p3)) * 1%);
  --s4: calc((var(--p1) + var(--p2) + var(--p3) + var(--p4)) * 1%);
  --s5: calc((var(--p1) + var(--p2) + var(--p3) + var(--p4) + var(--p5)) * 1%);
  position: relative;
  width: min(82vw, 25rem);
  aspect-ratio: 1;
  margin: 0 auto;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.04), transparent 36%),
    conic-gradient(
      from -90deg,
      #7df8ff 0 var(--s1),
      #6d90ff var(--s1) var(--s2),
      #b590ff var(--s2) var(--s3),
      #ffd28c var(--s3) var(--s4),
      #5ed8bf var(--s4) var(--s5),
      #3d4e9a var(--s5) 100%
    );
  padding: 1.25rem;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05), 0 0 90px rgba(96, 154, 255, 0.2);
}

.token-ring::before {
  content: "";
  position: absolute;
  inset: 0.65rem;
  border-radius: inherit;
  border: 1px solid rgba(143, 191, 255, 0.14);
}

.token-core {
  width: 67%;
  aspect-ratio: 1;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 1.25rem;
  background:
    radial-gradient(circle at 28% 24%, rgba(255, 255, 255, 0.1), transparent 16%),
    linear-gradient(180deg, rgba(8, 14, 28, 0.92), rgba(6, 11, 21, 0.98));
  border: 1px solid rgba(145, 187, 255, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.token-core span,
.token-core small {
  color: var(--text-soft);
}

.token-core strong {
  display: block;
  margin: 0.5rem 0 0.35rem;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.3rem, 3vw, 1.95rem);
  letter-spacing: -0.04em;
}

.legend-list {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.5rem;
}

.legend-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 1rem;
  border-radius: 1rem;
  background: rgba(10, 16, 29, 0.68);
  border: 1px solid rgba(137, 173, 255, 0.12);
}

.legend-title {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.swatch {
  width: 0.95rem;
  height: 0.95rem;
  border-radius: 50%;
  box-shadow: 0 0 16px rgba(126, 244, 255, 0.18);
}

.legend-value {
  font-family: "Sora", sans-serif;
  font-weight: 700;
}

.token-card {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
}

.token-value {
  font-family: "Sora", sans-serif;
  font-size: 1.58rem;
  letter-spacing: -0.04em;
  color: var(--cyan);
}

.channel-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.channel-card {
  display: grid;
  gap: 0.9rem;
}

.channel-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--cyan);
  font-weight: 700;
  transition: color 180ms ease, transform 180ms ease;
}

.channel-link::after {
  content: "↗";
}

.channel-link:hover {
  color: var(--text);
  transform: translateX(2px);
}

.faq-list {
  display: grid;
  gap: 1rem;
  max-width: 58rem;
  margin: 0 auto;
}

.faq-item {
  overflow: clip;
}

.faq-button {
  width: 100%;
  padding: 1.35rem 1.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
  font-weight: 700;
  transition: color 180ms ease;
}

.faq-button:hover {
  color: var(--text);
}

.faq-icon {
  position: relative;
  width: 1.2rem;
  height: 1.2rem;
  flex: 0 0 1.2rem;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 1rem;
  height: 2px;
  border-radius: 999px;
  background: var(--cyan);
  transform: translate(-50%, -50%);
  transition: transform 220ms ease, opacity 220ms ease;
}

.faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-button[aria-expanded="true"] .faq-icon::after {
  opacity: 0;
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 240ms ease;
}

.faq-answer p {
  overflow: hidden;
  padding: 0 1.4rem;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.is-open .faq-answer p {
  padding-bottom: 1.35rem;
}

.cta-shell {
  display: grid;
  gap: 1.2rem;
  text-align: center;
  justify-items: center;
  padding: clamp(2rem, 4vw, 3.2rem);
  border-radius: calc(var(--radius-xl) + 0.55rem);
  background:
    radial-gradient(circle at 50% 0%, rgba(123, 244, 255, 0.14), transparent 18%),
    radial-gradient(circle at 20% 100%, rgba(108, 146, 255, 0.14), transparent 18%),
    radial-gradient(circle at 80% 100%, rgba(181, 143, 255, 0.14), transparent 18%),
    linear-gradient(180deg, rgba(10, 16, 30, 0.96), rgba(7, 12, 23, 0.98));
}

.cta-title {
  font-family: "Sora", sans-serif;
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  letter-spacing: -0.05em;
  max-width: 12ch;
  line-height: 1.02;
}

.cta-shell p {
  max-width: 44rem;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.cta-actions,
.community-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  justify-content: center;
}

.footer {
  padding: 2rem 0 2.2rem;
}

.footer-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(1.8rem, 4vw, 3rem);
  padding: 1.8rem;
  border-radius: calc(var(--radius-xl) + 0.2rem);
  background:
    radial-gradient(circle at 16% 0%, rgba(123, 244, 255, 0.08), transparent 18%),
    radial-gradient(circle at 84% 0%, rgba(181, 143, 255, 0.08), transparent 18%),
    linear-gradient(180deg, rgba(9, 14, 26, 0.96), rgba(7, 11, 21, 0.98));
}

.footer-shell::before {
  content: "";
  position: absolute;
  left: 1.8rem;
  right: 1.8rem;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(138, 210, 255, 0.32), rgba(181, 143, 255, 0.26), transparent);
}

.footer-copy {
  display: grid;
  gap: 1rem;
  max-width: 35rem;
}

.footer-logo-link {
  display: inline-block;
  width: fit-content;
}

.footer-logo {
  width: clamp(11rem, 18vw, 15rem);
  height: auto;
  filter: drop-shadow(0 0 24px rgba(126, 244, 255, 0.18));
}

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

.footer-links nav {
  display: grid;
  gap: 0.5rem;
  align-content: start;
}

.footer-links a {
  color: var(--text-muted);
  transition: color 180ms ease;
}

.footer-links a:hover {
  color: var(--text);
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.2rem;
  margin-top: 1.2rem;
  border-top: 1px solid rgba(137, 173, 255, 0.12);
}

.footer-bottom p:last-child {
  max-width: 42rem;
  text-align: right;
}

.footer-bottom p {
  color: var(--text-soft);
  font-size: 0.92rem;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 720ms cubic-bezier(0.2, 0.7, 0.2, 1),
    transform 720ms cubic-bezier(0.2, 0.7, 0.2, 1);
  transition-delay: var(--delay, 0ms);
}

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

.page-home .page-hero::after,
.page-ecosystem .page-hero::after,
.page-token .page-hero::after,
.page-roadmap .page-hero::after,
.page-community .page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(circle at 75% 20%, rgba(125, 246, 255, 0.07), transparent 18%);
}

@keyframes float {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -18px, 0);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.04);
  }
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes dash {
  from {
    stroke-dashoffset: 0;
  }
  to {
    stroke-dashoffset: -420;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0ms !important;
  }

  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}

@media (max-width: 1140px) {
  .hero-grid,
  .split-layout,
  .spotlight-panel,
  .utility-layout,
  .token-layout,
  .footer-shell {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .page-grid,
  .vision-grid,
  .channel-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .timeline-grid::before {
    display: none;
  }

  .timeline-grid {
    gap: 1rem;
  }

  .timeline-card:nth-child(odd),
  .timeline-card:nth-child(even) {
    transform: none;
  }

  .timeline-dot {
    display: none;
  }

  .token-board {
    position: relative;
    top: auto;
  }
}

@media (max-width: 900px) {
  :root {
    --nav-height: 76px;
    --container: min(100% - 1.2rem, 1240px);
  }

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

  .nav-menu {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 0.5rem);
    display: grid;
    gap: 1rem;
    padding: 1rem;
    background: rgba(8, 13, 23, 0.97);
    border: 1px solid rgba(139, 175, 255, 0.16);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 220ms ease, transform 220ms ease;
  }

  body.menu-open .nav-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links {
    display: grid;
    gap: 0.2rem;
  }

  .nav-links a {
    padding: 0.9rem 0.7rem;
  }

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

  .nav-cta {
    width: 100%;
  }

  .feature-grid,
  .page-grid,
  .vision-grid,
  .channel-grid,
  .footer-links,
  .grid-3,
  .grid-4,
  .stat-grid,
  .pillars-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-bottom,
  .community-actions,
  .contract-buttons {
    justify-content: flex-start;
  }

  .footer-bottom p:last-child {
    text-align: left;
  }
}

@media (max-width: 680px) {
  .section {
    padding: 4.4rem 0;
  }

  .page-hero {
    padding-top: 2.6rem;
  }

  h1 {
    font-size: clamp(2.8rem, 14vw, 4.3rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .eyebrow {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .hero-actions,
  .cta-actions,
  .community-actions,
  .contract-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .hero-stage {
    min-height: 27rem;
  }

  .mini-panel {
    display: none;
  }

  .orbit-card {
    min-width: 9rem;
    padding: 0.75rem;
  }

  .token-card {
    flex-direction: column;
  }

  .footer-shell {
    padding: 1.35rem;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 540px) {
  .hero-metrics {
    flex-direction: column;
    align-items: stretch;
  }

  .metric-pill {
    justify-content: center;
  }

  .wire-node {
    width: 7rem;
    padding: 0.7rem;
  }

  .wire-node.one { top: 8%; left: 4%; }
  .wire-node.two { top: 12%; right: 4%; }
  .wire-node.three { bottom: 16%; left: 2%; }
  .wire-node.four { bottom: 10%; right: 4%; }
}
