:root {
  --bg: #0b0d13;
  --surface: #111827;
  --card: #161b26;
  --card-2: #1a2130;
  --accent: #7c5cff;
  --accent-hover: #9a82ff;
  --blue: #43b7ff;
  --text: #ffffff;
  --muted: #b8bcc8;
  --muted-2: #82899a;
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(255, 255, 255, 0.16);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1180px;
  --nav: 1480px;
  --logo-y: 3px;
  --ease: cubic-bezier(.2, .8, .2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Inter", "Geist", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

/* new */
.now-playing-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;

  background: rgba(88, 101, 242, 0.12);
  border: 1px solid rgba(88, 101, 242, 0.25);

  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  color: #c7d2fe;

  width: fit-content;
  backdrop-filter: blur(10px);
}

.np-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #5865f2;
  box-shadow: 0 0 12px rgba(88, 101, 242, 0.8);
  animation: pulse 1.6s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.6); opacity: 0.5; }
  100% { transform: scale(1); opacity: 1; }
}

.track-title {
  font-size: 1.4rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.03em;
}

.track-sub {
  margin-top: 4px;
  font-size: 0.85rem;
  color: var(--muted-2);
  font-weight: 600;
}

.progress {
  height: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  overflow: hidden;
  position: relative;
}

.progress span {
  height: 100%;
  display: block;
  background: linear-gradient(
    90deg,
    #5865f2,
    #a78bfa
  );
  border-radius: inherit;
  position: relative;
}

.interface-card {
  background: rgba(20, 22, 28, 0.55);
  border: 1px solid rgba(255,255,255,0.06);
  backdrop-filter: blur(18px);
  box-shadow:
    0 20px 60px rgba(0,0,0,0.35),
    inset 0 1px 0 rgba(255,255,255,0.05);
}
/* ------------------- */

body.menu-open {
  overflow: hidden;
}

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

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

button,
input {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

::selection {
  color: #fff;
  background: rgba(124, 92, 255, .55);
}

.site-noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: -2;
  opacity: .28;
  background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, .1) 1px, transparent 0);
  background-size: 32px 32px;
  mask-image: linear-gradient(to bottom, black, transparent 80%);
}

.orb {
  pointer-events: none;
  position: fixed;
  z-index: -3;
  width: 420px;
  height: 420px;
  border-radius: 999px;
  filter: blur(70px);
  opacity: .24;
  background: var(--accent);
}

.orb-one {
  top: -120px;
  right: -120px;
}

.orb-two {
  bottom: 18%;
  left: -160px;
  opacity: .16;
}

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

.narrow {
  width: min(100% - 32px, 820px);
  text-align: center;
}

.section-pad {
  padding: 96px 0;
}

.navbar {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: min(calc(100% - 48px), var(--nav));
  min-height: 68px;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 12px 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  transition: background .28s var(--ease), border .28s var(--ease), box-shadow .28s var(--ease), backdrop-filter .28s var(--ease);
}

.navbar.is-scrolled,
.navbar.menu-active {
  background: rgba(17, 24, 39, .72);
  border-color: var(--line);
  box-shadow: 0 18px 60px rgba(0, 0, 0, .26);
  backdrop-filter: blur(18px);
}

.brand {
  height: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: -.03em;
  line-height: 0;
  flex: 0 0 auto;
}

.brand-image {
  display: block;
  width: auto;
  height: 43px;
  max-width: 180px;
  object-fit: contain;
  transform: translateY(var(--logo-y));
}

.footer-brand .brand-image {
  height: 40px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 13px;
  background: linear-gradient(135deg, var(--accent), #5f7cff);
  box-shadow: 0 10px 26px rgba(124, 92, 255, .35);
}

.brand-text {
  font-size: 1.08rem;
  line-height: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: 0;
}

.nav-links>a:not(.btn) {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-weight: 700;
  font-size: .92rem;
  padding: 10px 11px;
  border-radius: 999px;
  transition: color .2s var(--ease), background .2s var(--ease), transform .2s var(--ease);
}

.nav-links>a:not(.btn) i {
  width: 15px;
  color: #d7d4ff;
  font-size: .86rem;
  text-align: center;
  opacity: .92;
}

.nav-links>a:not(.btn):hover,
.nav-links>a[aria-current="page"]:not(.btn) {
  color: var(--text);
  background: rgba(255, 255, 255, .06);
}

.nav-links>a:not(.btn):hover {
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid var(--line);
  position: relative;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 10px;
  background: #fff;
  transition: transform .2s var(--ease), opacity .2s var(--ease);
}

.navbar.menu-active .nav-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.navbar.menu-active .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.navbar.menu-active .nav-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 850;
  line-height: 1;
  border: 1px solid transparent;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), background .22s var(--ease), border .22s var(--ease);
  white-space: nowrap;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--accent), #5e73ff);
  color: #fff;
  box-shadow: 0 18px 38px rgba(124, 92, 255, .28);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--accent-hover), #7488ff);
  box-shadow: 0 22px 50px rgba(124, 92, 255, .38);
}

.btn-secondary {
  background: rgba(255, 255, 255, .06);
  color: #fff;
  border-color: var(--line);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, .1);
  border-color: var(--line-strong);
}

.btn-small {
  min-height: 42px;
  padding: 0 16px;
  font-size: .9rem;
}

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

h1 {
  margin-bottom: 20px;
  max-width: 820px;
  font-size: clamp(2.9rem, 6vw, 5.4rem);
  line-height: .94;
  letter-spacing: -.078em;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(2.05rem, 5vw, 4.1rem);
  line-height: .98;
  letter-spacing: -.065em;
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(1.35rem, 3vw, 2.15rem);
  line-height: 1.05;
  letter-spacing: -.045em;
}

p {
  color: var(--muted);
  line-height: 1.75;
}

.hero-home {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 126px 0 54px;
  background: #03050d;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(90deg, rgba(3, 5, 13, .98) 0%, rgba(3, 5, 13, .9) 26%, rgba(3, 5, 13, .58) 49%, rgba(3, 5, 13, .12) 72%, rgba(3, 5, 13, .18) 100%),
    radial-gradient(circle at 46% 45%, rgba(124, 92, 255, .28), transparent 28%),
    url("/v8/assets/background.png");
  background-size: cover;
  background-position: center right;
  transform: scale(1.015);
}

.hero-vignette {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at 73% 42%, transparent 0 36%, rgba(3, 5, 13, .08) 55%, rgba(3, 5, 13, .62) 100%),
    linear-gradient(180deg, rgba(3, 5, 13, .14), rgba(3, 5, 13, .22) 74%, var(--bg));
}

.hero-home-inner {
  position: relative;
  z-index: 2;
  width: min(100% - 64px, var(--nav));
}

.hero-content {
  width: min(100%, 630px);
  padding-top: 24px;
}

.hero-status-pill {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 49px;
  margin-bottom: 34px;
  padding: 0 16px;
  border: 1px solid rgba(124, 92, 255, .58);
  border-radius: 18px;
  color: #aeb8ff;
  background: rgba(10, 13, 28, .62);
  backdrop-filter: blur(14px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, .18);
  text-transform: uppercase;
  font-weight: 800;
  font-size: .83rem;
  letter-spacing: .03em;
}

.hero-status-pill strong {
  padding-left: 12px;
  border-left: 1px solid rgba(255, 255, 255, .15);
  color: var(--muted);
  font-size: .9rem;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
}

.online-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #28f7a2;
  box-shadow: 0 0 16px rgba(40, 247, 162, .88);
}

.hero-content h1 {
  margin-bottom: 24px;
  font-size: clamp(3.1rem, 5.2vw, 5rem);
  line-height: .98;
  letter-spacing: -.074em;
  text-shadow: 0 12px 40px rgba(0, 0, 0, .35);
}

.hero-content h1 span {
  background: linear-gradient(90deg, #8b5dff 0%, #6d72ff 48%, #43c7ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subtitle {
  max-width: 540px;
  margin-bottom: 30px;
  color: #c8ccda;
  font-size: clamp(1rem, 1.45vw, 1.22rem);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.center-actions {
  justify-content: center;
}

.hero-stats-panel {
  width: min(100%, 640px);
  margin-top: 58px;
  display: grid;
}

.hero-stat-card {
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 0;
  padding: 6px 16px;
}

.hero-stat-card+.hero-stat-card {
  border-left: 1px solid rgba(255, 255, 255, .1);
}

.hero-stat-card i {
  flex: 0 0 auto;
  color: #5f63ff;
  font-size: 1.62rem;
  filter: drop-shadow(0 0 18px rgba(95, 99, 255, .35));
}

.hero-stat-card strong {
  display: block;
  color: #fff;
  font-size: 1.24rem;
  line-height: 1.05;
  letter-spacing: -.045em;
}

.hero-stat-card span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: .78rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #d7d4ff;
  font-size: .86rem;
  font-weight: 900;
  letter-spacing: .02em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.page-hero {
  padding-top: 166px;
  padding-bottom: 58px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 50% 0%, rgba(124, 92, 255, .26), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, .03), transparent 72%);
}

.page-hero h1 {
  margin-inline: auto;
}

.page-hero p {
  max-width: 680px;
  margin-inline: auto;
  font-size: 1.08rem;
}

.section-heading {
  width: min(100%, 760px);
  margin-inline: auto;
  margin-bottom: 38px;
  text-align: center;
}

.section-heading.align-left {
  margin-inline: 0;
  text-align: left;
}

.section-heading p {
  margin-inline: auto;
  max-width: 650px;
  font-size: 1.05rem;
}

.align-left p {
  margin-inline: 0;
}

.showcase {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius-xl) + 10px);
  background: rgba(17, 24, 39, .45);
  backdrop-filter: blur(16px);
}

.feature-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 18px;
}

.feature-tab,
.filter-pill,
.category-pill {
  color: #cbd5e1;
  /* changed */
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .05);
  border-radius: 999px;
  font-weight: 850;
  transition: color .2s var(--ease), background .2s var(--ease), border .2s var(--ease), transform .2s var(--ease);
}

.feature-tab {
  padding: 14px 12px;
}

.feature-tab:hover,
.filter-pill:hover,
.category-pill:hover {
  color: #fff;
  transform: translateY(-1px);
  border-color: var(--line-strong);
}

.feature-tab.is-active,
.filter-pill.is-active,
.category-pill.is-active {
  color: #fff;
  background: rgba(124, 92, 255, .18);
  border-color: rgba(154, 130, 255, .42);
  box-shadow: 0 14px 34px rgba(124, 92, 255, .14);
}

.showcase-grid {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: 18px;
}

.showcase-copy {
  padding: 34px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, .03);
  border: 1px solid var(--line);
}

.mini-label {
  color: #d7d4ff;
  font-weight: 900;
  text-transform: uppercase;
  font-size: .78rem;
  letter-spacing: .08em;
}

.feature-list {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 11px;
}

.feature-list li {
  color: var(--muted);
  display: flex;
  gap: 10px;
  line-height: 1.6;
}

.feature-list li::before {
  content: "✓";
  color: #52ffb8;
  font-weight: 900;
}

.interface-card {
  position: relative;
  min-height: 420px;
  padding: 22px;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.stat-card,
.benefit-card,
.interface-card,
.dashboard-preview,
.cta-card,
.faq-list details,
.command-tools,
.command-card,
.blank-card {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .02)), var(--card);
  box-shadow: 0 18px 60px rgba(0, 0, 0, .18);
}

.interface-card::before {
  content: "";
  position: absolute;
  inset: -40% -20% auto;
  height: 300px;
  background: radial-gradient(circle, rgba(124, 92, 255, .36), transparent 65%);
  pointer-events: none;
}

.window-controls {
  position: relative;
  display: flex;
  gap: 8px;
  margin-bottom: 54px;
}

.window-controls span {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .22);
}

.player-preview,
.moderation-preview,
.community-preview,
.fun-preview {
  position: relative;
  margin: auto;
  width: min(100%, 440px);
  display: grid;
  gap: 13px;
  animation: panelIn .36s var(--ease);
}

@keyframes panelIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.now-playing,
.command-line,
.ticket-line,
.fun-line {
  color: #fff;
  font-weight: 900;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid var(--line);
}

.player-preview h4 {
  margin: 8px 0 0;
  font-size: 1.6rem;
  letter-spacing: -.04em;
}

.progress {
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  overflow: hidden;
}

.progress span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), var(--accent-hover));
  animation: shimmer 2.5s infinite linear;
}

@keyframes shimmer {
  0% {
    filter: brightness(1);
  }

  50% {
    filter: brightness(1.25);
  }

  100% {
    filter: brightness(1);
  }
}

.time-row {
  display: flex;
  justify-content: space-between;
  color: var(--muted-2);
  font-size: .88rem;
  font-weight: 700;
}

.queue-item,
.log-item,
.community-item,
.fun-item {
  color: var(--muted);
  padding: 13px 14px;
  border-radius: 16px;
  background: rgba(0, 0, 0, .17);
  border: 1px solid var(--line);
}

.log-item.success,
.community-item.success,
.fun-item.success {
  border-color: rgba(82, 255, 184, .26);
  color: #dfffee;
}

.dashboard-section {
  position: relative;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 36px;
  align-items: center;
}

.dashboard-preview {
  min-height: 440px;
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 18px;
  padding: 18px;
  border-radius: var(--radius-xl);
}

.dash-sidebar {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 16px;
  border-radius: 24px;
  background: rgba(255, 255, 255, .045);
  border: 1px solid var(--line);
}

.dash-sidebar span {
  width: 36px;
  height: 36px;
  border-radius: 13px;
  background: rgba(255, 255, 255, .08);
}

.dash-sidebar span:first-child {
  background: linear-gradient(135deg, var(--accent), #5e73ff);
}

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

.dash-topbar {
  height: 52px;
  margin-bottom: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid var(--line);
}

.dash-grid-small {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.dash-grid-small article {
  min-height: 118px;
  padding: 18px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .04);
}

.dash-grid-small strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.02rem;
}

.dash-grid-small span {
  color: var(--muted);
  font-size: .92rem;
}

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

.benefit-card {
  padding: 24px;
  min-height: 250px;
  border-radius: var(--radius-lg);
  transition: transform .24s var(--ease), box-shadow .24s var(--ease), border .24s var(--ease);
}

.benefit-card:hover,
.command-card:hover {
  transform: translateY(-5px) scale(1.01);
  border-color: rgba(154, 130, 255, .34);
  box-shadow: 0 24px 70px rgba(124, 92, 255, .14);
}

.benefit-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 16px;
  color: #dcd9ff;
  background: rgba(124, 92, 255, .14);
  border: 1px solid rgba(124, 92, 255, .24);
}

.benefit-card h3 {
  font-size: 1.25rem;
}

.faq-section {
  padding-top: 52px;
}

.faq-list {
  width: min(100% - 32px, 860px);
  display: grid;
  gap: 12px;
}

.faq-list details {
  border-radius: 20px;
  padding: 0 20px;
}

.faq-list summary {
  cursor: pointer;
  padding: 20px 0;
  font-weight: 900;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  float: right;
  color: var(--accent-hover);
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list p {
  margin-bottom: 20px;
}

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

.cta-card {
  text-align: center;
  padding: clamp(32px, 7vw, 74px);
  border-radius: calc(var(--radius-xl) + 10px);
  background: radial-gradient(circle at 50% 0%, rgba(124, 92, 255, .35), transparent 45%), linear-gradient(180deg, rgba(255, 255, 255, .075), rgba(255, 255, 255, .025)), var(--card);
}

.cta-card p {
  max-width: 620px;
  margin-inline: auto;
  margin-bottom: 26px;
}

.commands-section {
  padding-bottom: 30px;
}

.command-tools {
  padding: 18px;
  border-radius: var(--radius-xl);
}

.search-box {
  height: 62px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 0 18px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .045);
}

.search-box i {
  color: var(--muted-2);
}

.search-box input {
  width: 100%;
  color: #fff;
  background: transparent;
  border: 0;
  outline: 0;
}

.search-box input::placeholder {
  color: var(--muted-2);
}

.filter-row,
.category-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.filter-pill,
.category-pill {
  padding: 11px 14px;
  font-size: .9rem;
}

.command-results-meta {
  margin-top: 24px;
  margin-bottom: 14px;
  color: var(--muted);
  font-weight: 800;
}

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

.command-card {
  text-align: left;
  min-height: 198px;
  padding: 20px;
  border-radius: var(--radius-lg);
  color: inherit;
  transition: transform .24s var(--ease), box-shadow .24s var(--ease), border .24s var(--ease);
}

.command-card h3 {
  margin: 0 0 8px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 1.35rem;
}

.command-card p {
  min-height: 52px;
  margin-bottom: 18px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 9px;
  border-radius: 999px;
  color: #d8d6ff;
  background: rgba(124, 92, 255, .13);
  border: 1px solid rgba(124, 92, 255, .25);
  font-size: .76rem;
  font-weight: 900;
}

.tag.muted {
  color: var(--muted);
  background: rgba(255, 255, 255, .045);
  border-color: var(--line);
}

.empty-state {
  grid-column: 1 / -1;
  padding: 44px;
  border-radius: var(--radius-xl);
  color: var(--muted);
  text-align: center;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .035);
}

.command-drawer {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
}

.command-drawer.is-open {
  pointer-events: auto;
}

.drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .55);
  opacity: 0;
  transition: opacity .24s var(--ease);
}

.command-drawer.is-open .drawer-backdrop {
  opacity: 1;
}

.drawer-panel {
  position: absolute;
  top: 16px;
  right: 16px;
  bottom: 16px;
  width: min(calc(100% - 32px), 480px);
  padding: 26px;
  overflow-y: auto;
  border-radius: 30px;
  border: 1px solid var(--line-strong);
  background: rgba(17, 24, 39, .92);
  backdrop-filter: blur(22px);
  box-shadow: var(--shadow);
  transform: translateX(calc(100% + 24px));
  transition: transform .28s var(--ease);
}

.command-drawer.is-open .drawer-panel {
  transform: translateX(0);
}

.drawer-close {
  float: right;
  width: 38px;
  height: 38px;
  border-radius: 14px;
  color: #fff;
  background: rgba(255, 255, 255, .06);
  border: 1px solid var(--line);
  font-size: 1.4rem;
}

.drawer-title {
  margin-top: 42px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 2rem;
}

.drawer-section {
  margin-top: 24px;
}

.drawer-section h4 {
  margin: 0 0 10px;
  color: #fff;
}

.code-line {
  display: block;
  padding: 14px;
  border-radius: 16px;
  color: #fff;
  background: rgba(0, 0, 0, .25);
  border: 1px solid var(--line);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  overflow-x: auto;
}

.blank-section {
  padding: 0 0 84px;
}

.blank-card {
  border-radius: calc(var(--radius-xl) + 8px);
  padding: clamp(24px, 5vw, 44px);
}

.blank-card-header {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line);
}

.blank-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 18px;
  color: #dcd9ff;
  background: rgba(124, 92, 255, .14);
  border: 1px solid rgba(124, 92, 255, .24);
}

.blank-card h2 {
  font-size: clamp(1.45rem, 3vw, 2.35rem);
  margin-bottom: 8px;
}

.blank-card p {
  margin-bottom: 0;
}

.blank-content-area {
  min-height: 320px;
  margin-top: 26px;
  display: grid;
  place-items: center;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, .02);
}

.blank-content-area p {
  color: var(--muted-2);
  font-weight: 700;
}

.footer {
  padding: 48px 0 30px;
  border-top: 1px solid var(--line);
  background: rgba(0, 0, 0, .12);
}

.footer-spaced {
  margin-top: 96px;
}

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

.footer p {
  margin-top: 16px;
  max-width: 420px;
}

.footer h4 {
  margin: 0 0 14px;
}

.footer a:not(.brand) {
  display: block;
  color: var(--muted);
  margin: 10px 0;
  transition: color .2s var(--ease);
}

.footer a:not(.brand):hover {
  color: #fff;
}

.footer-bottom {
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  color: var(--muted-2);
  font-size: .85rem;
}

.footer-disclaimer {
  max-width: 850px !important;
  margin: 0 !important;
  line-height: 1.6;
  color: var(--muted-2);
}

.footer-bottom span {
  white-space: nowrap;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}

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

.delay-1 {
  transition-delay: .08s;
}

.delay-2 {
  transition-delay: .16s;
}

.delay-3 {
  transition-delay: .24s;
}

@media (max-width: 1180px) {
  .nav-links>a:not(.btn) {
    font-size: .86rem;
    padding-inline: 9px;
  }

  .btn-small {
    padding: 0 13px;
  }

  .hero-home-inner {
    width: min(100% - 40px, var(--nav));
  }
}

@media (max-width: 1024px) {

  .dashboard-grid,
  .showcase-grid {
    grid-template-columns: 1fr;
  }

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

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

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

  .hero-bg {
    background-position: 62% center;
  }

  .hero-content {
    width: min(100%, 590px);
  }

  .hero-stats-panel {
    grid-template-columns: repeat(2, 1fr);
    max-width: 560px;
  }

  .hero-stat-card:nth-child(3) {
    border-left: 0;
  }

  .hero-stat-card:nth-child(n+3) {
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding-top: 16px;
    margin-top: 10px;
  }
}

@media (max-width: 860px) {
  .nav-toggle {
    display: block;
  }

  .navbar {
    min-height: 64px;
  }

  .nav-links {
    position: fixed;
    left: 0;
    right: 0;
    top: 76px;
    display: grid;
    gap: 8px;
    padding: 16px;
    border-radius: 28px;
    border: 1px solid var(--line);
    background: rgba(17, 24, 39, .95);
    box-shadow: var(--shadow);
    backdrop-filter: blur(22px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity .22s var(--ease), transform .22s var(--ease), visibility .22s var(--ease);
  }

  .navbar.menu-active .nav-links {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-links>a:not(.btn),
  .nav-links .btn {
    width: 100%;
    justify-content: flex-start;
  }

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

  .section-pad {
    padding: 72px 0;
  }

  .page-hero {
    padding-top: 136px;
  }

  .hero-home {
    min-height: auto;
    padding: 132px 0 48px;
  }

  .hero-bg {
    background-image: linear-gradient(90deg, rgba(3, 5, 13, .96) 0%, rgba(3, 5, 13, .82) 52%, rgba(3, 5, 13, .56) 100%), radial-gradient(circle at 70% 35%, rgba(124, 92, 255, .22), transparent 32%), url("assets/background.png");
    opacity: .82;
  }
}

@media (max-width: 620px) {

  .container,
  .narrow {
    width: min(100% - 24px, var(--container));
  }

  .navbar {
    top: 10px;
    width: calc(100% - 20px);
    min-height: 62px;
    padding-left: 14px;
  }

  .brand-image {
    height: 36px;
    max-width: 144px;
  }

  h1 {
    font-size: clamp(2.65rem, 13vw, 4.25rem);
  }

  .hero-content h1 {
    font-size: clamp(2.9rem, 13vw, 4.15rem);
  }

  .hero-status-pill {
    min-height: auto;
    padding: 10px 12px;
    gap: 9px;
    flex-wrap: wrap;
    border-radius: 16px;
  }

  .hero-status-pill strong {
    width: 100%;
    padding-left: 21px;
    border-left: 0;
  }

  .hero-actions,
  .center-actions {
    display: grid;
    width: 100%;
  }

  .btn {
    width: 100%;
  }

  .hero-stats-panel {
    grid-template-columns: 1fr;
    padding: 12px;
    margin-top: 34px;
  }

  .hero-stat-card {
    padding: 12px;
  }

  .hero-stat-card+.hero-stat-card {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, .1);
  }

  .hero-stat-card:nth-child(n+3) {
    margin-top: 0;
  }

  .benefits-grid,
  .commands-grid,
  .dash-grid-small,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .showcase,
  .command-tools {
    padding: 12px;
    border-radius: 28px;
  }

  .showcase-copy,
  .interface-card {
    padding: 22px;
    border-radius: 24px;
  }

  .feature-tabs {
    grid-template-columns: 1fr;
  }

  .dashboard-preview {
    grid-template-columns: 1fr;
  }

  .dash-sidebar {
    grid-template-columns: repeat(4, 36px);
    overflow-x: auto;
  }

  .blank-card-header {
    display: grid;
  }

  .footer-bottom {
    display: grid;
  }

  .footer-bottom span {
    white-space: normal;
  }
}

@media (prefers-reduced-motion: reduce) {

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

/* Legal / Privacy pages */
.legal-content {
  display: block;
  min-height: auto;
  text-align: left;
  padding: clamp(22px, 4vw, 38px);
  border-style: solid;
}

.legal-content h3 {
  margin: 34px 0 12px;
  color: #fff;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  letter-spacing: -.025em;
}

.legal-content h3:first-of-type {
  margin-top: 26px;
}

.legal-content p {
  margin: 0 0 16px;
  color: var(--muted);
  font-weight: 600;
  line-height: 1.8;
}

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

.legal-content li {
  color: var(--muted);
  line-height: 1.75;
}

.notice-box,
.contact-box {
  border: 1px solid rgba(124, 92, 255, .28);
  background: rgba(124, 92, 255, .09);
  border-radius: 22px;
}

.notice-box {
  padding: 18px;
}

.notice-box strong {
  display: block;
  margin-bottom: 8px;
  color: #fff;
  font-size: 1rem;
}

.notice-box p {
  margin: 0;
}

.contact-box {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  padding: 18px;
}

.contact-box span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-weight: 800;
}

.contact-box i {
  color: #dcd9ff;
}


/* Clean legal document layout */
.legal-section {
  padding: 0 0 90px;
}

.legal-shell {
  width: min(100% - 32px, 940px);
  padding: clamp(24px, 4vw, 46px);
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(17, 24, 39, .54);
  box-shadow: 0 24px 80px rgba(0, 0, 0, .22);
  backdrop-filter: blur(16px);
}

.legal-doc-header {
  max-width: 760px;
  margin: 0 auto 34px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.legal-overline {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 14px;
  color: #d7d4ff;
  font-size: .8rem;
  font-weight: 900;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.legal-doc-header h2 {
  max-width: 680px;
  margin: 0 0 10px;
  font-size: clamp(1.8rem, 3.8vw, 2.7rem);
  line-height: 1.08;
  letter-spacing: -.045em;
}

.legal-doc-header p {
  margin: 0;
  color: var(--muted-2);
  font-weight: 700;
}

.legal-document {
  max-width: 760px;
  margin: 0 auto;
  text-align: left;
}

.legal-document h3 {
  margin: 36px 0 12px;
  color: #fff;
  font-size: clamp(1.1rem, 2vw, 1.38rem);
  line-height: 1.25;
  letter-spacing: -.025em;
}

.legal-document h3:first-of-type {
  margin-top: 30px;
}

.legal-document p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.85;
}

.legal-document ul {
  margin: 4px 0 24px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.legal-document li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
  font-weight: 500;
  line-height: 1.75;
  text-align: left;
}

.legal-document li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: .74em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--accent-hover);
  box-shadow: 0 0 16px rgba(154, 130, 255, .45);
}

.legal-document .notice-box,
.legal-document .contact-box {
  border: 1px solid rgba(255, 255, 255, .08);
  background: rgba(255, 255, 255, .035);
  border-radius: 20px;
}

.legal-document .notice-box {
  padding: 18px 20px;
}

.legal-document .notice-box strong {
  display: block;
  margin-bottom: 8px;
  color: #fff;
  font-size: .98rem;
}

.legal-document .notice-box p {
  margin: 0;
}

.legal-document .contact-box {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  padding: 18px 20px;
}

.legal-document .contact-box span {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.55;
}

.legal-document .contact-box i {
  width: 18px;
  margin-top: 3px;
  color: #dcd9ff;
  text-align: center;
}

@media (max-width: 620px) {
  .legal-shell {
    width: min(100% - 24px, 940px);
    padding: 22px;
    border-radius: 24px;
  }

  .legal-doc-header {
    margin-bottom: 26px;
    padding-bottom: 20px;
  }

  .legal-document p,
  .legal-document li {
    font-size: .96rem;
  }
}