:root {
  --bg: #070816;
  --bg-soft: #0b0d20;
  --surface: rgba(15, 18, 43, 0.78);
  --surface-solid: #10132b;
  --surface-raised: #151936;
  --surface-soft: rgba(20, 24, 54, 0.58);
  --line: rgba(167, 139, 250, 0.16);
  --line-strong: rgba(167, 139, 250, 0.3);
  --text: #f7f7ff;
  --muted: #a6abc8;
  --muted-strong: #c8cbea;
  --violet: #8b5cf6;
  --violet-bright: #a78bfa;
  --blue: #4f8cff;
  --cyan: #45d6e8;
  --gold: #f6c86e;
  --emerald: #5ee0ad;
  --rose: #ff7eb3;
  --danger: #ff7597;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
  --shadow-soft: 0 16px 50px rgba(0, 0, 0, 0.22);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --container: 1180px;
  --header-height: 78px;
  --font-body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Space Grotesk", "Inter", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    radial-gradient(circle at 8% 8%, rgba(88, 60, 190, 0.16), transparent 32rem),
    radial-gradient(circle at 88% 28%, rgba(48, 112, 220, 0.12), transparent 30rem),
    var(--bg);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

button,
input {
  font: inherit;
}

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

button {
  color: inherit;
}

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

img,
svg {
  display: block;
}

code,
kbd {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

::selection {
  color: #fff;
  background: rgba(139, 92, 246, 0.58);
}

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: #090a18;
}

::-webkit-scrollbar-thumb {
  border: 2px solid #090a18;
  border-radius: 999px;
  background: #34395f;
}

::-webkit-scrollbar-thumb:hover {
  background: #4d5482;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section-shell {
  position: relative;
  padding: 112px 0;
}

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 9999;
  padding: 10px 14px;
  border-radius: 10px;
  color: #fff;
  background: var(--violet);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.starfield {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
}

.star {
  position: absolute;
  top: var(--star-y);
  left: var(--star-x);
  width: var(--star-size);
  height: var(--star-size);
  animation: star-float var(--star-duration) linear var(--star-delay) infinite;
  will-change: transform;
}

.star::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #dce7ff;
  box-shadow: 0 0 8px rgba(154, 180, 255, 0.5);
  clip-path: polygon(50% 0, 59% 40%, 100% 50%, 59% 60%, 50% 100%, 41% 60%, 0 50%, 41% 40%);
  animation: star-twinkle var(--star-twinkle) ease-in-out calc(var(--star-delay) / 3) infinite;
}

.star-bright::after {
  background: #fff6cf;
  box-shadow: 0 0 12px rgba(246, 200, 110, 0.55);
}

@keyframes star-float {
  from {
    transform: translate3d(0, 8vh, 0);
  }

  to {
    transform: translate3d(var(--star-drift), -120vh, 0);
  }
}

@keyframes star-twinkle {
  0%,
  100% {
    opacity: 0.18;
    transform: scale(0.72) rotate(0deg);
  }

  50% {
    opacity: 0.62;
    transform: scale(1) rotate(18deg);
  }
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  border-bottom: 1px solid transparent;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.scrolled {
  border-color: rgba(255, 255, 255, 0.06);
  background: rgba(7, 8, 22, 0.78);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(18px);
}

.navbar {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand-mark {
  position: relative;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(168, 139, 250, 0.36);
  border-radius: 14px;
  background:
    radial-gradient(circle at 32% 26%, rgba(255, 255, 255, 0.2), transparent 34%),
    linear-gradient(145deg, #6b42d7, #2c438f);
  box-shadow: 0 8px 28px rgba(107, 66, 215, 0.3), inset 0 1px rgba(255, 255, 255, 0.18);
}

.brand-core {
  z-index: 1;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.brand-orbit {
  position: absolute;
  width: 34px;
  height: 15px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 50%;
  transform: rotate(-28deg);
}

.brand-orbit::after {
  content: "";
  position: absolute;
  top: -2px;
  right: 5px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 10px var(--gold);
}

.brand-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.nav-panel,
.nav-links {
  display: flex;
  align-items: center;
}

.nav-panel {
  gap: 28px;
}

.nav-links {
  gap: 24px;
}

.nav-link {
  position: relative;
  padding: 8px 0;
  color: var(--muted-strong);
  font-size: 14px;
  font-weight: 600;
  transition: color 170ms ease;
}

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

.nav-link:hover,
.nav-link.active {
  color: #fff;
}

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

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(19, 22, 48, 0.82);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  border-radius: 5px;
  background: #fff;
  transition: transform 180ms ease, opacity 180ms ease;
}

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

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

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

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 11px 18px;
  border: 1px solid transparent;
  border-radius: 13px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: transform 170ms ease, box-shadow 170ms ease, border-color 170ms ease, background 170ms ease;
}

.button svg {
  width: 18px;
  height: 18px;
}

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

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, #8c5cf5, #5a63e9 54%, #327fd4);
  box-shadow: 0 12px 30px rgba(103, 82, 229, 0.28), inset 0 1px rgba(255, 255, 255, 0.24);
}

.button-primary:hover {
  box-shadow: 0 16px 38px rgba(103, 82, 229, 0.4), inset 0 1px rgba(255, 255, 255, 0.24);
}

.button-secondary {
  border-color: rgba(173, 177, 217, 0.18);
  color: #e9eaff;
  background: rgba(19, 22, 48, 0.66);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
}

.button-secondary:hover {
  border-color: rgba(167, 139, 250, 0.42);
  background: rgba(31, 34, 71, 0.8);
}

.button-donate {
  border-color: rgba(255, 126, 179, 0.3);
  color: #ffd9e9;
  background: rgba(111, 40, 81, 0.18);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
}

.button-donate:hover {
  border-color: rgba(255, 126, 179, 0.56);
  background: rgba(140, 49, 98, 0.28);
  box-shadow: 0 12px 30px rgba(102, 29, 70, 0.2);
}

.button-small {
  min-height: 40px;
  padding: 10px 15px;
  font-size: 13px;
}

.button-large {
  min-height: 54px;
  padding: 14px 21px;
  border-radius: 15px;
  font-size: 15px;
}

.button-arrow {
  margin-left: 2px;
}

.hero {
  min-height: 820px;
  display: flex;
  align-items: center;
  padding-top: calc(var(--header-height) + 82px);
  padding-bottom: 90px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.93fr) minmax(480px, 1.07fr);
  gap: 68px;
  align-items: center;
}

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

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(18px);
  pointer-events: none;
}

.hero-glow-left {
  top: 120px;
  left: -190px;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(111, 65, 220, 0.22), transparent 68%);
}

.hero-glow-right {
  top: 80px;
  right: -120px;
  width: 640px;
  height: 640px;
  background: radial-gradient(circle, rgba(52, 116, 221, 0.17), transparent 67%);
}

.eyebrow {
  color: #bdb1ff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 12px;
  border: 1px solid rgba(167, 139, 250, 0.2);
  border-radius: 999px;
  background: rgba(114, 76, 206, 0.09);
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--emerald);
  box-shadow: 0 0 12px rgba(94, 224, 173, 0.72);
}

.hero h1 {
  max-width: 720px;
  margin: 24px 0 22px;
  font-family: var(--font-display);
  font-size: clamp(52px, 6.2vw, 84px);
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.gradient-text {
  display: block;
  color: transparent;
  background: linear-gradient(100deg, #c8b7ff 4%, #8f8bff 38%, #65c8ef 72%, #f4cc80 104%);
  background-clip: text;
  -webkit-background-clip: text;
}

.hero-description {
  max-width: 650px;
  margin: 0;
  color: var(--muted-strong);
  font-size: 18px;
  line-height: 1.75;
}

.beta-note {
  max-width: 650px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  margin-top: 20px;
  padding: 14px 16px;
  border: 1px solid rgba(94, 224, 173, 0.16);
  border-radius: 15px;
  background: rgba(12, 32, 38, 0.34);
  backdrop-filter: blur(10px);
}

.beta-note-icon {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  color: var(--emerald);
  background: rgba(94, 224, 173, 0.1);
}

.beta-note-icon svg {
  width: 16px;
  height: 16px;
}

.beta-note p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.beta-note strong {
  color: #eefef8;
}

.beta-note a {
  color: #8ee8c4;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(142, 232, 196, 0.4);
  text-underline-offset: 3px;
}

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

.truth-strip {
  max-width: 620px;
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 30px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.065);
  border-radius: 16px;
  background: rgba(11, 13, 32, 0.48);
  backdrop-filter: blur(10px);
}

.truth-strip > div {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.truth-strip strong {
  color: #fff;
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 1.1;
}

.truth-strip span:not(.truth-divider) {
  color: var(--muted);
  font-size: 11px;
  white-space: nowrap;
}

.truth-divider {
  width: 1px;
  height: 30px;
  background: rgba(255, 255, 255, 0.09);
}

.hero-visual {
  position: relative;
  min-height: 600px;
  display: grid;
  place-items: center;
  perspective: 1400px;
}

.discord-window {
  position: relative;
  z-index: 3;
  width: min(100%, 625px);
  overflow: hidden;
  border: 1px solid rgba(169, 153, 255, 0.2);
  border-radius: 24px;
  background: rgba(14, 16, 36, 0.93);
  box-shadow: 0 36px 100px rgba(0, 0, 0, 0.48), 0 0 80px rgba(100, 71, 202, 0.11), inset 0 1px rgba(255, 255, 255, 0.05);
  transform: rotateY(-5deg) rotateX(2deg);
  transition: transform 450ms cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 450ms ease;
  backdrop-filter: blur(18px);
}

.hero-visual:hover .discord-window {
  box-shadow: 0 42px 110px rgba(0, 0, 0, 0.52), 0 0 110px rgba(100, 71, 202, 0.16);
  transform: rotateY(-1deg) rotateX(0deg) translateY(-4px);
}

.window-topbar {
  height: 48px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: #12152b;
}

.window-topbar > svg {
  width: 16px;
  height: 16px;
  justify-self: end;
  color: #7e85a9;
}

.window-controls {
  display: flex;
  gap: 6px;
}

.window-controls span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #555a78;
}

.window-controls span:first-child {
  background: #ff7187;
}

.window-controls span:nth-child(2) {
  background: #efc45b;
}

.window-controls span:nth-child(3) {
  background: #5ccf91;
}

.window-channel {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #dce0f8;
  font-size: 12px;
  font-weight: 650;
}

.window-channel svg {
  width: 14px;
  height: 14px;
  color: #8b91ae;
}

.discord-layout {
  min-height: 448px;
  display: grid;
  grid-template-columns: 58px 1fr;
}

.discord-sidebar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 14px 8px;
  border-right: 1px solid rgba(255, 255, 255, 0.045);
  background: #0c0e1f;
}

.discord-server {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #bfc4e4;
  background: #20243e;
  font-size: 12px;
  font-weight: 800;
}

.discord-server.active {
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(140deg, #7550e5, #4669d4);
  box-shadow: 0 8px 20px rgba(101, 79, 220, 0.3);
}

.discord-chat {
  position: relative;
  min-width: 0;
  padding: 22px 18px 68px;
  background:
    radial-gradient(circle at 86% 10%, rgba(86, 65, 176, 0.08), transparent 220px),
    #171a2f;
}

.discord-message {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 11px;
}

.discord-message + .discord-message {
  margin-top: 21px;
}

.discord-avatar {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

.user-avatar {
  background: linear-gradient(140deg, #444b71, #2c304f);
}

.bot-avatar {
  border-radius: 12px;
  background: linear-gradient(140deg, #7c53e6, #3d69cf);
  box-shadow: 0 8px 20px rgba(99, 76, 211, 0.25);
}

.message-content {
  min-width: 0;
}

.message-meta {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #78809e;
  font-size: 10px;
}

.message-meta strong {
  color: #f5f6ff;
  font-size: 12px;
}

.bot-tag {
  padding: 1px 4px;
  border-radius: 3px;
  color: #fff;
  background: #5865f2;
  font-size: 7px;
  font-weight: 800;
}

.slash-command {
  width: fit-content;
  margin-top: 6px;
  padding: 5px 8px;
  border-radius: 6px;
  color: #d8dcff;
  background: rgba(88, 101, 242, 0.18);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 11px;
}

.discord-embed {
  position: relative;
  margin-top: 8px;
  padding: 17px;
  border: 1px solid rgba(255, 255, 255, 0.055);
  border-left: 4px solid #8861ea;
  border-radius: 5px 13px 13px 5px;
  background: rgba(10, 12, 29, 0.8);
}

.embed-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.embed-kicker {
  color: #9f8df0;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.embed-header h3 {
  margin: 3px 0 0;
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: -0.025em;
}

.location-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px 7px;
  border: 1px solid rgba(96, 214, 232, 0.16);
  border-radius: 999px;
  color: #b9eaf1;
  background: rgba(69, 214, 232, 0.07);
  font-size: 8px;
  font-weight: 700;
  white-space: nowrap;
}

.location-pill svg {
  width: 10px;
  height: 10px;
}

.embed-disclaimer {
  margin: 8px 0 0;
  color: #737b9c;
  font-size: 9px;
}

.hero-result-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 13px;
}

.hero-result-item {
  min-width: 0;
  display: grid;
  grid-template-columns: 25px minmax(0, 1fr);
  gap: 8px;
  padding: 9px;
  border: 1px solid rgba(255, 255, 255, 0.055);
  border-radius: 9px;
  background: rgba(29, 33, 61, 0.58);
}

.hero-result-item > span {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  color: #c9bfff;
  background: rgba(126, 92, 225, 0.13);
}

.hero-result-item svg {
  width: 13px;
  height: 13px;
}

.hero-result-item strong,
.hero-result-item small {
  display: block;
}

.hero-result-item strong {
  color: #e8eaff;
  font-size: 9px;
}

.hero-result-item small {
  margin-top: 2px;
  color: #8087a6;
  font-size: 7px;
  line-height: 1.35;
}

.embed-footer {
  margin-top: 12px;
  color: #686f8f;
  font-size: 8px;
}

.chat-input {
  position: absolute;
  right: 18px;
  bottom: 15px;
  left: 18px;
  height: 38px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 11px;
  border-radius: 8px;
  color: #757d9d;
  background: #242840;
}

.chat-input span {
  flex: 1;
  font-size: 9px;
}

.chat-input svg {
  width: 15px;
  height: 15px;
}

.orbital-ring {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(142, 112, 224, 0.12);
  border-radius: 50%;
  pointer-events: none;
}

.orbital-ring-one {
  width: 660px;
  height: 260px;
  transform: rotate(-20deg);
  animation: orbit-pulse 8s ease-in-out infinite;
}

.orbital-ring-two {
  width: 520px;
  height: 470px;
  transform: rotate(34deg);
  animation: orbit-pulse 11s ease-in-out infinite reverse;
}

@keyframes orbit-pulse {
  50% {
    opacity: 0.38;
    transform: rotate(14deg) scale(1.03);
  }
}

.floating-planet {
  position: absolute;
  z-index: 2;
  border-radius: 50%;
  pointer-events: none;
}

.planet-one {
  top: 40px;
  right: 12px;
  width: 42px;
  height: 42px;
  background: radial-gradient(circle at 30% 26%, #e5d9ff, #7956c9 45%, #2f245c 78%);
  box-shadow: 0 0 38px rgba(131, 91, 213, 0.42);
  animation: float 6s ease-in-out infinite;
}

.planet-two {
  bottom: 76px;
  left: 14px;
  width: 24px;
  height: 24px;
  background: radial-gradient(circle at 30% 25%, #d9f4ff, #3e7bc0 48%, #1c325f 78%);
  box-shadow: 0 0 26px rgba(64, 129, 203, 0.38);
  animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
  50% {
    transform: translateY(-13px);
  }
}

.floating-chip {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 11px;
  color: #dfe1f7;
  background: rgba(16, 19, 43, 0.82);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.25), inset 0 1px rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(12px);
  font-size: 10px;
  font-weight: 700;
}

.floating-chip svg {
  width: 14px;
  height: 14px;
  color: #a893f2;
}

.chip-command {
  right: -2px;
  bottom: 48px;
}

.chip-live {
  top: 108px;
  left: -8px;
}

.chip-live span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--emerald);
  box-shadow: 0 0 10px rgba(94, 224, 173, 0.7);
}

.section-heading {
  margin-bottom: 42px;
}

.section-heading.centered {
  max-width: 760px;
  margin-right: auto;
  margin-bottom: 48px;
  margin-left: auto;
  text-align: center;
}

.section-heading.split {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.72fr);
  gap: 58px;
  align-items: end;
}

.section-heading h2,
.final-cta-card h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(36px, 4.4vw, 58px);
  line-height: 1.05;
  letter-spacing: -0.055em;
}

.section-heading p,
.final-cta-card p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.section-heading.centered p {
  margin-top: 16px;
}

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

.premium-note {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
  padding: 17px 20px;
  border: 1px solid rgba(246, 200, 110, 0.2);
  border-radius: 16px;
  background: rgba(73, 53, 19, 0.18);
}

.premium-note > span {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  color: var(--gold);
  background: rgba(246, 200, 110, 0.1);
}

.premium-note svg {
  width: 18px;
  height: 18px;
}

.premium-note p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.premium-note strong {
  color: #fff4d2;
}

.command-category-card {
  --card-accent: var(--violet-bright);
  --card-accent-rgb: 167, 139, 250;
  position: relative;
  min-height: 100%;
  padding: 25px;
  overflow: hidden;
  border: 1px solid rgba(var(--card-accent-rgb), 0.17);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at var(--card-glow-x, 85%) 0%, rgba(var(--card-accent-rgb), 0.11), transparent 250px),
    linear-gradient(145deg, rgba(20, 23, 51, 0.82), rgba(11, 13, 31, 0.78));
  box-shadow: var(--shadow-soft), inset 0 1px rgba(255, 255, 255, 0.045);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.command-category-card:hover {
  border-color: rgba(var(--card-accent-rgb), 0.34);
  box-shadow: 0 24px 65px rgba(0, 0, 0, 0.27), 0 0 42px rgba(var(--card-accent-rgb), 0.07), inset 0 1px rgba(255, 255, 255, 0.06);
  transform: translateY(-4px);
}

.accent-violet {
  --card-accent: #a78bfa;
  --card-accent-rgb: 167, 139, 250;
}

.accent-blue {
  --card-accent: #6da1ff;
  --card-accent-rgb: 109, 161, 255;
}

.accent-cyan {
  --card-accent: #61dbe9;
  --card-accent-rgb: 97, 219, 233;
}

.accent-gold {
  --card-accent: #f4ca76;
  --card-accent-rgb: 244, 202, 118;
}

.accent-emerald {
  --card-accent: #63dfae;
  --card-accent-rgb: 99, 223, 174;
}

.accent-rose {
  --card-accent: #ff8dbc;
  --card-accent-rgb: 255, 141, 188;
}

.category-card-head {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
}

.category-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(var(--card-accent-rgb), 0.18);
  border-radius: 15px;
  color: var(--card-accent);
  background: rgba(var(--card-accent-rgb), 0.075);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.05);
}

.category-icon svg {
  width: 23px;
  height: 23px;
}

.category-card-head h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: -0.035em;
}

.category-card-head p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.category-count {
  padding: 5px 8px;
  border: 1px solid rgba(var(--card-accent-rgb), 0.16);
  border-radius: 999px;
  color: var(--card-accent);
  background: rgba(var(--card-accent-rgb), 0.06);
  font-size: 10px;
  font-weight: 800;
  white-space: nowrap;
}

.category-summary {
  margin: 18px 0;
  color: var(--muted-strong);
  font-size: 14px;
}

.command-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.command-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 9px;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 9px;
  color: #d7daf0;
  background: rgba(7, 9, 22, 0.46);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 11px;
  transition: border-color 170ms ease, color 170ms ease, background 170ms ease;
}

.command-chip:hover {
  border-color: rgba(var(--card-accent-rgb), 0.26);
  color: #fff;
  background: rgba(var(--card-accent-rgb), 0.06);
}

.command-chip svg {
  width: 11px;
  height: 11px;
  color: var(--card-accent);
}

.category-doc-link {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 21px;
  color: var(--card-accent);
  font-size: 12px;
  font-weight: 750;
}

.category-doc-link svg {
  width: 14px;
  height: 14px;
  transition: transform 160ms ease;
}

.category-doc-link:hover svg {
  transform: translateX(3px);
}

.roadmap {
  overflow: hidden;
  border-block: 1px solid rgba(255, 255, 255, 0.04);
  background: linear-gradient(180deg, rgba(10, 12, 29, 0.66), rgba(7, 8, 22, 0.3));
}

.roadmap-aurora {
  position: absolute;
  top: -320px;
  left: 50%;
  width: 1050px;
  height: 650px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(112, 65, 216, 0.18), rgba(44, 105, 195, 0.08) 40%, transparent 68%);
  filter: blur(30px);
  transform: translateX(-50%);
  pointer-events: none;
}

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

.roadmap-card {
  position: relative;
  min-height: 390px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid rgba(158, 130, 238, 0.2);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(26, 27, 64, 0.84), rgba(10, 12, 31, 0.89)),
    var(--surface-solid);
  box-shadow: var(--shadow), inset 0 1px rgba(255, 255, 255, 0.06);
  transition: transform 230ms ease, border-color 230ms ease;
}

.roadmap-card:hover {
  border-color: rgba(167, 139, 250, 0.4);
  transform: translateY(-5px);
}

.roadmap-card::before {
  content: "";
  position: absolute;
  top: -110px;
  right: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(122, 81, 221, 0.25), transparent 68%);
}

.roadmap-card:nth-child(2)::before {
  background: radial-gradient(circle, rgba(48, 136, 202, 0.2), transparent 68%);
}

.roadmap-status {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.roadmap-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(167, 139, 250, 0.22);
  border-radius: 16px;
  color: #c5b7ff;
  background: rgba(139, 92, 246, 0.1);
}

.roadmap-icon svg {
  width: 25px;
  height: 25px;
}

.future-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 9px;
  border: 1px solid rgba(246, 200, 110, 0.2);
  border-radius: 999px;
  color: #f5d28f;
  background: rgba(246, 200, 110, 0.07);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.future-badge span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 9px rgba(246, 200, 110, 0.75);
}

.roadmap-card .roadmap-eyebrow {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 28px;
  color: #9f92da;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.roadmap-card h3 {
  position: relative;
  z-index: 1;
  margin: 8px 0 12px;
  font-family: var(--font-display);
  font-size: 31px;
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.roadmap-card > p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.roadmap-points {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
  padding: 0;
  list-style: none;
}

.roadmap-points li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 9px;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 9px;
  color: #d0d3ed;
  background: rgba(7, 9, 22, 0.38);
  font-size: 11px;
}

.roadmap-points svg {
  width: 12px;
  height: 12px;
  color: var(--emerald);
}

.wiki {
  padding-bottom: 130px;
}

.docs-shell {
  display: grid;
  grid-template-columns: 245px minmax(0, 1fr);
  min-height: 720px;
  overflow: hidden;
  border: 1px solid rgba(167, 139, 250, 0.16);
  border-radius: 28px;
  background: rgba(11, 13, 32, 0.72);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34), inset 0 1px rgba(255, 255, 255, 0.045);
  backdrop-filter: blur(18px);
}

.docs-sidebar {
  display: flex;
  flex-direction: column;
  padding: 23px 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.055);
  background: rgba(8, 10, 25, 0.62);
}

.docs-sidebar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 0 9px 17px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.055);
}

.docs-sidebar-head span {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
}

.docs-sidebar-head small {
  color: #747c9c;
  font-size: 9px;
}

.docs-category-nav {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: 15px;
}

.docs-category-button,
.docs-mobile-button {
  border: 1px solid transparent;
  color: #979eba;
  background: transparent;
  cursor: pointer;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease;
}

.docs-category-button {
  width: 100%;
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr) auto;
  gap: 9px;
  align-items: center;
  padding: 8px 9px;
  border-radius: 10px;
  text-align: left;
}

.docs-category-button:hover {
  color: #e7e9fb;
  background: rgba(255, 255, 255, 0.035);
}

.docs-category-button.active {
  border-color: rgba(167, 139, 250, 0.14);
  color: #fff;
  background: linear-gradient(90deg, rgba(126, 88, 224, 0.14), rgba(70, 100, 200, 0.06));
}

.docs-category-button .nav-icon {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.docs-category-button.active .nav-icon {
  color: #bba9ff;
  background: rgba(139, 92, 246, 0.12);
}

.docs-category-button svg {
  width: 15px;
  height: 15px;
}

.docs-category-button strong {
  min-width: 0;
  overflow: hidden;
  font-size: 11px;
  font-weight: 650;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.docs-category-button small {
  color: #666e90;
  font-size: 9px;
}

.docs-help-card {
  display: grid;
  grid-template-columns: 31px minmax(0, 1fr) 24px;
  gap: 9px;
  align-items: center;
  margin-top: auto;
  padding: 11px;
  border: 1px solid rgba(93, 148, 224, 0.12);
  border-radius: 12px;
  background: rgba(50, 99, 164, 0.06);
}

.docs-help-card > svg {
  width: 18px;
  height: 18px;
  color: #70b7e8;
}

.docs-help-card strong,
.docs-help-card span {
  display: block;
}

.docs-help-card strong {
  font-size: 10px;
}

.docs-help-card span {
  margin-top: 1px;
  color: #7883a4;
  font-size: 8px;
}

.docs-help-card a {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  color: #bcdff7;
  background: rgba(255, 255, 255, 0.05);
}

.docs-help-card a svg {
  width: 12px;
  height: 12px;
}

.docs-content {
  min-width: 0;
  padding: 26px;
}

.docs-toolbar {
  display: flex;
  align-items: center;
  gap: 10px;
}

.command-search {
  min-width: 0;
  flex: 1;
  height: 48px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 13px;
  background: rgba(7, 9, 22, 0.55);
  transition: border-color 170ms ease, box-shadow 170ms ease;
}

.command-search:focus-within {
  border-color: rgba(139, 92, 246, 0.4);
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.08);
}

.command-search > svg {
  width: 17px;
  height: 17px;
  color: #777f9e;
}

.command-search input {
  min-width: 0;
  flex: 1;
  border: 0;
  outline: 0;
  color: #fff;
  background: transparent;
  font-size: 13px;
}

.command-search input::placeholder {
  color: #646c8d;
}

.command-search kbd {
  min-width: 23px;
  height: 23px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  color: #77809e;
  background: rgba(255, 255, 255, 0.035);
  font-size: 10px;
  box-shadow: inset 0 -1px rgba(255, 255, 255, 0.04);
}

.clear-search {
  height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 12px;
  color: #aeb3cd;
  background: rgba(16, 19, 42, 0.7);
  cursor: pointer;
}

.clear-search:hover {
  color: #fff;
  border-color: rgba(167, 139, 250, 0.25);
}

.clear-search svg {
  width: 14px;
  height: 14px;
}

.docs-mobile-tabs {
  display: none;
  gap: 7px;
  margin-top: 14px;
  overflow-x: auto;
  scrollbar-width: none;
}

.docs-mobile-tabs::-webkit-scrollbar {
  display: none;
}

.docs-mobile-button {
  min-width: max-content;
  padding: 7px 10px;
  border-color: rgba(255, 255, 255, 0.065);
  border-radius: 9px;
  font-size: 10px;
  font-weight: 700;
}

.docs-mobile-button.active {
  border-color: rgba(167, 139, 250, 0.24);
  color: #fff;
  background: rgba(139, 92, 246, 0.12);
}

.docs-results-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin: 27px 0 16px;
}

.docs-current-eyebrow {
  color: #747c9c;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.docs-results-head h3 {
  margin: 3px 0 0;
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: -0.035em;
}

.result-count {
  padding: 5px 8px;
  border: 1px solid rgba(255, 255, 255, 0.065);
  border-radius: 999px;
  color: #858dab;
  background: rgba(255, 255, 255, 0.025);
  font-size: 9px;
  white-space: nowrap;
}

.command-doc-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.command-doc-card {
  --doc-accent-rgb: 167, 139, 250;
  overflow: hidden;
  border: 1px solid rgba(var(--doc-accent-rgb), 0.13);
  border-radius: 17px;
  background: rgba(15, 18, 40, 0.65);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.035);
  transition: border-color 180ms ease, transform 180ms ease, background 180ms ease;
}

.command-doc-card:hover {
  border-color: rgba(var(--doc-accent-rgb), 0.28);
  background: rgba(18, 21, 47, 0.76);
}

.command-doc-summary {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 17px 18px;
  border: 0;
  color: inherit;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.command-doc-name-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.command-doc-name {
  color: #f2f3ff;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 14px;
  font-weight: 750;
}

.command-doc-category {
  padding: 3px 6px;
  border: 1px solid rgba(var(--doc-accent-rgb), 0.15);
  border-radius: 999px;
  color: rgba(var(--doc-accent-rgb), 0.95);
  background: rgba(var(--doc-accent-rgb), 0.055);
  font-size: 8px;
  font-weight: 800;
}

.command-doc-short {
  margin: 5px 0 0;
  color: #9198b5;
  font-size: 11px;
}

.command-doc-summary > svg {
  width: 17px;
  height: 17px;
  color: #777f9d;
  transition: transform 180ms ease;
}

.command-doc-card.open .command-doc-summary > svg {
  transform: rotate(180deg);
}

.command-doc-details {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 220ms ease;
}

.command-doc-card.open .command-doc-details {
  grid-template-rows: 1fr;
}

.command-doc-details-inner {
  min-height: 0;
  overflow: hidden;
}

.command-doc-body {
  padding: 0 18px 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.syntax-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 16px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 11px;
  background: #090b1c;
}

.syntax-block code {
  min-width: 0;
  overflow-x: auto;
  color: #d8d2ff;
  font-size: 11px;
  white-space: nowrap;
}

.copy-command {
  min-width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 8px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 7px;
  color: #9ba3c1;
  background: rgba(255, 255, 255, 0.035);
  cursor: pointer;
}

.copy-command:hover {
  color: #fff;
  border-color: rgba(167, 139, 250, 0.26);
}

.copy-command svg {
  width: 12px;
  height: 12px;
}

.doc-section-label {
  display: block;
  margin: 16px 0 8px;
  color: #7d85a4;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.parameter-list {
  display: grid;
  gap: 7px;
}

.parameter-row {
  display: grid;
  grid-template-columns: minmax(110px, 0.35fr) minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 9px 10px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.025);
}

.parameter-row code {
  color: #cfc8ff;
  font-size: 10px;
}

.parameter-row span {
  color: #959cb8;
  font-size: 10px;
}

.parameter-badge {
  padding: 3px 6px;
  border: 1px solid rgba(255, 255, 255, 0.065);
  border-radius: 999px;
  color: #7f87a7;
  font-size: 8px !important;
  font-weight: 800;
}

.no-parameters {
  margin: 0;
  color: #858daa;
  font-size: 10px;
}

.doc-two-column {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 15px;
}

.doc-info-box {
  padding: 11px;
  border: 1px solid rgba(255, 255, 255, 0.055);
  border-radius: 10px;
  background: rgba(7, 9, 22, 0.35);
}

.doc-info-box span,
.doc-info-box strong {
  display: block;
}

.doc-info-box span {
  color: #727a98;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.doc-info-box strong,
.doc-info-box code {
  margin-top: 5px;
  color: #d8dbea;
  font-size: 10px;
  font-weight: 500;
  line-height: 1.5;
}

.docs-empty {
  padding: 70px 20px;
  text-align: center;
}

.docs-empty-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin: 0 auto;
  border: 1px solid rgba(167, 139, 250, 0.14);
  border-radius: 18px;
  color: #9f91de;
  background: rgba(139, 92, 246, 0.07);
}

.docs-empty-icon svg {
  width: 24px;
  height: 24px;
}

.docs-empty h3 {
  margin: 17px 0 5px;
  font-family: var(--font-display);
  font-size: 21px;
}

.docs-empty p {
  max-width: 440px;
  margin: 0 auto 18px;
  color: var(--muted);
  font-size: 12px;
}

.final-cta {
  padding-top: 30px;
}

.final-cta-card {
  position: relative;
  min-height: 370px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 54px 28px;
  border: 1px solid rgba(167, 139, 250, 0.2);
  border-radius: 30px;
  background:
    radial-gradient(circle at 50% 0%, rgba(121, 79, 220, 0.22), transparent 310px),
    linear-gradient(145deg, rgba(24, 27, 61, 0.9), rgba(9, 11, 29, 0.94));
  box-shadow: var(--shadow), inset 0 1px rgba(255, 255, 255, 0.06);
  text-align: center;
}

.final-cta-card > *:not(.cta-orbit) {
  position: relative;
  z-index: 2;
}

.final-cta-card h2 {
  max-width: 760px;
}

.final-cta-card p {
  max-width: 660px;
  margin-top: 17px;
}

.final-cta-card code {
  padding: 2px 6px;
  border: 1px solid rgba(167, 139, 250, 0.14);
  border-radius: 6px;
  color: #d4caff;
  background: rgba(139, 92, 246, 0.07);
  font-size: 0.86em;
}

.final-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 28px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #c9cce5;
  font-size: 13px;
  font-weight: 700;
}

.text-link svg {
  width: 16px;
  height: 16px;
  transition: transform 170ms ease;
}

.text-link:hover svg {
  transform: translateX(3px);
}

.cta-orbit {
  position: absolute;
  bottom: -280px;
  left: 50%;
  width: 820px;
  height: 500px;
  border: 1px solid rgba(167, 139, 250, 0.13);
  border-radius: 50%;
  transform: translateX(-50%) rotate(-9deg);
}

.site-footer {
  margin-top: 110px;
  padding: 70px 0 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.055);
  background: rgba(6, 7, 18, 0.68);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.8fr) repeat(3, minmax(130px, 0.62fr));
  gap: 44px;
}

.footer-brand p {
  max-width: 400px;
  margin: 17px 0 13px;
  color: var(--muted);
  font-size: 13px;
}

.creator-link {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #bbbfe0;
  font-size: 12px;
}

.creator-link svg {
  width: 14px;
  height: 14px;
  color: #9e8ee7;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-column h3 {
  margin: 0 0 4px;
  color: #f0f1ff;
  font-size: 12px;
}

.footer-column a,
.footer-note {
  color: #858da9;
  font-size: 11px;
  transition: color 150ms ease;
}

.footer-column a:hover {
  color: #d8dbef;
}

.footer-note {
  line-height: 1.5;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 50px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
  margin: 0;
  color: #686f8d;
  font-size: 10px;
}

.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 100;
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(167, 139, 250, 0.2);
  border-radius: 13px;
  color: #e9e9ff;
  background: rgba(18, 21, 46, 0.82);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  cursor: pointer;
  transition: opacity 180ms ease, transform 180ms ease, background 180ms ease;
  backdrop-filter: blur(12px);
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  background: rgba(31, 35, 73, 0.9);
  transform: translateY(-2px);
}

.back-to-top svg {
  width: 18px;
  height: 18px;
}

.copy-toast {
  position: fixed;
  right: 22px;
  bottom: 78px;
  z-index: 1200;
  max-width: min(360px, calc(100vw - 40px));
  padding: 11px 14px;
  border: 1px solid rgba(94, 224, 173, 0.2);
  border-radius: 11px;
  color: #dff9ee;
  background: rgba(13, 34, 30, 0.9);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.35);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 160ms ease, transform 160ms ease;
  font-size: 11px;
  backdrop-filter: blur(12px);
}

.copy-toast.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

.noscript-message {
  position: fixed;
  right: 16px;
  bottom: 16px;
  left: 16px;
  z-index: 9999;
  padding: 14px;
  border: 1px solid rgba(255, 117, 151, 0.35);
  border-radius: 12px;
  color: #ffdce5;
  background: rgba(65, 18, 32, 0.95);
  text-align: center;
}

@media (max-width: 1080px) {
  .hero-grid {
    grid-template-columns: minmax(0, 0.88fr) minmax(430px, 1.12fr);
    gap: 38px;
  }

  .hero h1 {
    font-size: clamp(48px, 6.4vw, 68px);
  }

  .floating-chip {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1.4fr repeat(3, 0.7fr);
    gap: 28px;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 70px;
  }

  .section-shell {
    padding: 90px 0;
  }

  .nav-toggle {
    display: block;
  }

  .nav-panel {
    position: fixed;
    top: var(--header-height);
    right: 16px;
    left: 16px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding: 16px;
    border: 1px solid rgba(167, 139, 250, 0.17);
    border-radius: 17px;
    background: rgba(10, 12, 29, 0.96);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.48);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px) scale(0.98);
    transition: opacity 170ms ease, transform 170ms ease;
    backdrop-filter: blur(18px);
  }

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

  .nav-links {
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
  }

  .nav-link {
    padding: 10px 9px;
    border-radius: 9px;
  }

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

  .nav-link:hover,
  .nav-link.active {
    background: rgba(139, 92, 246, 0.08);
  }

  .nav-cta {
    width: 100%;
  }

  .hero {
    min-height: auto;
    padding-top: calc(var(--header-height) + 70px);
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .hero-copy {
    max-width: 720px;
    text-align: center;
    margin-inline: auto;
  }

  .hero h1 {
    margin-inline: auto;
  }

  .hero-description {
    margin-inline: auto;
  }

  .eyebrow,
  .beta-note,
  .hero-actions,
  .truth-strip {
    margin-right: auto;
    margin-left: auto;
  }

  .hero-actions,
  .truth-strip {
    justify-content: center;
  }

  .hero-visual {
    min-height: 540px;
  }

  .discord-window {
    transform: none;
  }

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

  .command-category-grid,
  .roadmap-grid {
    grid-template-columns: 1fr;
  }

  .roadmap-card {
    min-height: 340px;
  }

  .docs-shell {
    grid-template-columns: 1fr;
  }

  .docs-sidebar {
    display: none;
  }

  .docs-mobile-tabs {
    display: flex;
  }

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

@media (max-width: 700px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section-shell {
    padding: 74px 0;
  }

  .hero {
    padding-top: calc(var(--header-height) + 56px);
    padding-bottom: 55px;
  }

  .hero h1 {
    font-size: clamp(44px, 13vw, 62px);
  }

  .hero-description {
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .beta-note {
    text-align: left;
  }

  .premium-note {
    align-items: flex-start;
    padding: 16px;
  }

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

  .truth-strip {
    gap: 11px;
    padding: 13px;
  }

  .truth-strip strong {
    font-size: 16px;
  }

  .truth-strip span:not(.truth-divider) {
    font-size: 9px;
  }

  .hero-visual {
    min-height: 465px;
  }

  .discord-window {
    border-radius: 18px;
  }

  .discord-layout {
    grid-template-columns: 46px minmax(0, 1fr);
    min-height: 405px;
  }

  .discord-sidebar {
    padding-inline: 5px;
  }

  .discord-server {
    width: 32px;
    height: 32px;
  }

  .discord-chat {
    padding: 18px 11px 62px;
  }

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

  .hero-result-item:nth-child(n + 4) {
    display: none;
  }

  .window-topbar {
    height: 43px;
  }

  .section-heading h2,
  .final-cta-card h2 {
    font-size: clamp(34px, 10vw, 48px);
  }

  .section-heading {
    margin-bottom: 30px;
  }

  .command-category-card,
  .roadmap-card {
    padding: 21px;
  }

  .category-card-head {
    grid-template-columns: 44px minmax(0, 1fr);
  }

  .category-icon {
    width: 44px;
    height: 44px;
  }

  .category-count {
    grid-column: 2;
    width: fit-content;
  }

  .roadmap-card h3 {
    font-size: 26px;
  }

  .docs-shell {
    border-radius: 20px;
  }

  .docs-content {
    padding: 17px;
  }

  .docs-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .clear-search {
    width: 100%;
    justify-content: center;
    height: 40px;
  }

  .command-search kbd {
    display: none;
  }

  .docs-results-head {
    align-items: flex-start;
  }

  .command-doc-summary {
    padding: 14px;
  }

  .command-doc-body {
    padding: 0 14px 14px;
  }

  .syntax-block {
    align-items: stretch;
    flex-direction: column;
  }

  .copy-command {
    justify-content: center;
  }

  .parameter-row {
    grid-template-columns: 1fr auto;
  }

  .parameter-row span:not(.parameter-badge) {
    grid-column: 1 / -1;
  }

  .doc-two-column {
    grid-template-columns: 1fr;
  }

  .final-cta-card {
    padding: 45px 20px;
  }

  .final-actions {
    flex-direction: column;
  }

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

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

  .eyebrow {
    font-size: 10px;
    letter-spacing: 0.1em;
  }

  .truth-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .truth-divider {
    display: none;
  }

  .truth-strip span:not(.truth-divider) {
    white-space: normal;
  }

  .hero-visual {
    min-height: 430px;
  }

  .discord-sidebar {
    display: none;
  }

  .discord-layout {
    grid-template-columns: 1fr;
  }

  .message-meta span:last-child {
    display: none;
  }

  .command-chip-list {
    flex-direction: column;
  }

  .command-chip {
    width: 100%;
  }

  .roadmap-status {
    align-items: flex-start;
  }

  .future-badge {
    font-size: 8px;
  }

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

  .footer-brand {
    grid-column: auto;
  }
}

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

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

  .star,
  .star::after {
    animation: none;
  }

  .star::after {
    opacity: 0.34;
  }
}

/* SkyNavi official visual identity */
.brand-mark-image {
  overflow: hidden;
  padding: 0;
  border-radius: 50%;
  border-color: rgba(255, 198, 73, 0.62);
  background: #120725;
  box-shadow:
    0 0 0 1px rgba(255, 199, 75, 0.16),
    0 8px 28px rgba(114, 53, 217, 0.34),
    0 0 24px rgba(255, 190, 61, 0.16);
}

.brand-mark-image img,
.discord-server-logo img,
.bot-avatar img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.hero-brand-banner {
  width: min(100%, 590px);
  height: auto;
  display: block;
  margin: 0 0 25px;
  border: 1px solid rgba(122, 165, 255, 0.2);
  border-radius: 22px;
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.38),
    0 0 46px rgba(44, 126, 255, 0.13),
    0 0 54px rgba(132, 64, 225, 0.11);
}

.discord-server-logo {
  overflow: hidden;
  padding: 0;
  background: #120725;
}

.bot-avatar {
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(255, 195, 68, 0.45);
  background: #120725;
}

.sky-preview-window .discord-layout {
  min-height: 680px;
}

.sky-preview-window .discord-chat {
  padding-bottom: 66px;
}

.sky-map-embed {
  margin-bottom: 0;
}

.sky-map-image {
  width: 100%;
  height: auto;
  display: block;
  margin-top: 13px;
  border: 1px solid rgba(143, 158, 224, 0.18);
  border-radius: 12px;
  background: #080a18;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.28);
}

.sky-map-embed .embed-footer code {
  color: #d8d2ff;
  font-family: "SFMono-Regular", Consolas, monospace;
}

.doc-command-preview {
  margin: 18px 0 0;
  padding: 12px;
  border: 1px solid rgba(var(--doc-accent-rgb), 0.18);
  border-radius: 16px;
  background: rgba(5, 7, 20, 0.55);
}

.doc-command-preview img {
  width: min(100%, 620px);
  height: auto;
  display: block;
  margin-inline: auto;
  border-radius: 12px;
}

.doc-command-preview figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 11px;
  text-align: center;
}

/* Shared legal pages */
.legal-page {
  min-height: 100vh;
}

.legal-page .site-header {
  position: sticky;
}

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

.legal-main {
  position: relative;
  padding: calc(var(--header-height) + 72px) 0 100px;
}

.legal-hero {
  max-width: 880px;
  margin: 0 auto 38px;
  text-align: center;
}

.legal-hero .brand-mark {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
}

.legal-hero h1 {
  margin: 16px 0 12px;
  font-family: var(--font-display);
  font-size: clamp(42px, 7vw, 72px);
  line-height: 1;
  letter-spacing: -0.055em;
}

.legal-hero p {
  max-width: 720px;
  margin: 0 auto;
  color: var(--muted-strong);
  line-height: 1.75;
}

.legal-meta {
  width: fit-content;
  margin: 18px auto 0;
  padding: 8px 12px;
  border: 1px solid rgba(167, 139, 250, 0.18);
  border-radius: 999px;
  color: #aaa4d2;
  background: rgba(109, 76, 190, 0.08);
  font-size: 11px;
}

.legal-layout {
  width: min(100%, 980px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.legal-toc,
.legal-content {
  border: 1px solid rgba(255, 255, 255, 0.065);
  background: rgba(11, 13, 32, 0.66);
  box-shadow: 0 26px 75px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(16px);
}

.legal-toc {
  position: sticky;
  top: calc(var(--header-height) + 24px);
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 14px;
  border-radius: 18px;
}

.legal-toc strong {
  margin: 5px 8px 9px;
  color: #f0f1ff;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.legal-toc a {
  padding: 8px;
  border-radius: 9px;
  color: #8e95b4;
  font-size: 11px;
}

.legal-toc a:hover {
  color: #eef0ff;
  background: rgba(139, 92, 246, 0.09);
}

.legal-content {
  padding: clamp(24px, 5vw, 54px);
  border-radius: 24px;
}

.legal-content section + section {
  margin-top: 44px;
  padding-top: 38px;
  border-top: 1px solid rgba(255, 255, 255, 0.055);
}

.legal-content h2 {
  margin: 0 0 15px;
  font-family: var(--font-display);
  font-size: clamp(23px, 3vw, 31px);
  letter-spacing: -0.035em;
}

.legal-content h3 {
  margin: 25px 0 10px;
  color: #e8e9fb;
  font-size: 15px;
}

.legal-content p,
.legal-content li {
  color: #a0a7c4;
  font-size: 14px;
  line-height: 1.8;
}

.legal-content ul {
  display: grid;
  gap: 7px;
  padding-left: 20px;
}

.legal-content a {
  color: #b9adff;
  text-decoration: underline;
  text-decoration-color: rgba(185, 173, 255, 0.35);
  text-underline-offset: 3px;
}

.legal-callout {
  margin: 22px 0;
  padding: 16px 18px;
  border: 1px solid rgba(97, 219, 233, 0.18);
  border-left: 3px solid #61dbe9;
  border-radius: 12px;
  color: #b8c5de;
  background: rgba(48, 161, 187, 0.07);
  font-size: 13px;
  line-height: 1.65;
}

.legal-footer {
  margin-top: 0;
}

@media (max-width: 900px) {
  .hero-brand-banner {
    margin-inline: auto;
  }

  .sky-preview-window .discord-layout {
    min-height: 650px;
  }

  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-toc {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .legal-toc strong {
    grid-column: 1 / -1;
  }
}

@media (max-width: 700px) {
  .hero-brand-banner {
    border-radius: 15px;
  }

  .sky-preview-window .discord-layout {
    min-height: 570px;
  }

  .sky-map-embed {
    padding: 12px;
  }

  .sky-map-embed .embed-header {
    align-items: center;
  }

  .sky-map-embed .embed-header h3 {
    font-size: 13px;
  }

  .legal-nav-actions .button-secondary {
    display: none;
  }

  .legal-main {
    padding-top: calc(var(--header-height) + 42px);
  }

  .legal-toc {
    grid-template-columns: 1fr;
  }

  .legal-content {
    padding: 24px 18px;
  }
}

@media (max-width: 480px) {
  .brand-name {
    font-size: 18px;
  }

  .sky-preview-window .discord-layout {
    min-height: 535px;
  }

  .sky-preview-window .discord-chat {
    padding: 14px 8px 58px;
  }

  .sky-preview-window .discord-message {
    grid-template-columns: 31px minmax(0, 1fr);
    gap: 8px;
  }

  .sky-preview-window .discord-avatar {
    width: 31px;
    height: 31px;
  }
}
