:root {
  color-scheme: dark;
  --ink: #070807;
  --panel: #10110f;
  --panel-2: #171813;
  --text: #f4f1e8;
  --muted: #bdb6a8;
  --line: rgba(244, 241, 232, 0.16);
  --gold: #d7b85e;
  --cyan: #65d7d0;
  --green: #88d18a;
  --red: #e07965;
  --shadow: 0 22px 80px rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, rgba(7, 8, 7, 0.86), rgba(7, 8, 7, 0.98)),
    url("./brain-command-matrix-live.png") center top / cover fixed;
  color: var(--text);
  font: 16px/1.55 Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent 72%);
}

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px clamp(16px, 4vw, 56px);
  border-bottom: 1px solid var(--line);
  background: rgba(7, 8, 7, 0.88);
  backdrop-filter: blur(18px);
}

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

.brand img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

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

.brand strong {
  font-size: 1rem;
  letter-spacing: 0.02em;
}

.brand small {
  color: var(--muted);
  font-size: 0.74rem;
}

.site-header nav,
.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.site-header nav a,
.site-footer nav a,
.button,
.surface-card a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 9px 12px;
  color: var(--text);
  text-decoration: none;
  font-weight: 750;
  font-size: 0.9rem;
  background: rgba(255, 255, 255, 0.04);
}

.site-header nav a:hover,
.site-footer nav a:hover,
.button:hover,
.surface-card a:hover {
  border-color: rgba(215, 184, 94, 0.7);
}

.hero {
  min-height: min(740px, calc(100vh - 74px));
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.98fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  padding: clamp(34px, 6vw, 86px) clamp(16px, 5vw, 72px);
}

.hero-copy,
.proof-copy {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.5rem, 10vw, 8.4rem);
  line-height: 0.88;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 8px;
  font-size: 1.08rem;
}

.lede {
  max-width: 780px;
  color: #e0d9ca;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.button.primary {
  border-color: rgba(215, 184, 94, 0.82);
  background: var(--gold);
  color: #11110d;
}

.hero-media {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  border-radius: 8px;
  border: 1px solid rgba(215, 184, 94, 0.35);
  box-shadow: var(--shadow);
  background: #050505;
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.surface-strip {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.surface-strip span {
  border-radius: 999px;
  border: 1px solid rgba(244, 241, 232, 0.22);
  background: rgba(7, 8, 7, 0.74);
  padding: 7px 10px;
  color: #f7efd8;
  font-size: 0.78rem;
  font-weight: 760;
}

.section,
.proof-section {
  margin: 0 auto;
  width: min(1180px, calc(100% - 32px));
  padding: clamp(40px, 6vw, 74px) 0;
}

.intro-band {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 1.08fr);
  gap: 28px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.intro-band p:last-child,
.split p,
.proof-copy p,
.contact p {
  margin: 0;
  color: var(--muted);
  font-size: 1.03rem;
}

.surface-grid {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding: 34px 0 76px;
}

.surface-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(16, 17, 15, 0.86);
  padding: 16px;
}

.surface-card.feature {
  border-color: rgba(215, 184, 94, 0.48);
}

.surface-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 6px;
  background: #070807;
}

.surface-card.feature img {
  object-fit: contain;
  padding: 28px;
}

.surface-card p:not(.eyebrow) {
  color: var(--muted);
  min-height: 96px;
}

.surface-card a {
  width: fit-content;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 34px;
  align-items: start;
}

.lane-list {
  display: grid;
  gap: 10px;
}

.lane-list article {
  border-left: 4px solid var(--gold);
  border-radius: 4px;
  background: rgba(23, 24, 19, 0.9);
  padding: 16px;
}

.lane-list article:nth-child(2) {
  border-color: var(--cyan);
}

.lane-list article:nth-child(3) {
  border-color: var(--green);
}

.lane-list article:nth-child(4) {
  border-color: #b69ce0;
}

.lane-list article:nth-child(5) {
  border-color: var(--red);
}

.lane-list strong,
.lane-list span {
  display: block;
}

.lane-list span {
  margin-top: 4px;
  color: var(--muted);
}

.infrastructure,
.hub-section,
.access-commerce {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1.18fr);
  gap: 30px;
  border-top: 1px solid var(--line);
}

.access-commerce p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 1.03rem;
}

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

.infra-grid a,
.hub-grid a {
  display: grid;
  gap: 6px;
  min-height: 132px;
  align-content: start;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(16, 17, 15, 0.84);
  padding: 16px;
  text-decoration: none;
}

.hub-grid a {
  min-height: 148px;
  border-color: rgba(101, 215, 208, 0.18);
  background:
    linear-gradient(135deg, rgba(101, 215, 208, 0.08), transparent 48%),
    rgba(16, 17, 15, 0.86);
}

.infra-grid a:hover,
.hub-grid a:hover {
  border-color: rgba(101, 215, 208, 0.68);
}

.infra-grid span,
.hub-grid span {
  color: var(--muted);
}

.proof-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 1.1fr);
  gap: 28px;
  align-items: start;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.proof-table {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(7, 8, 7, 0.76);
}

.proof-table div {
  display: grid;
  grid-template-columns: 1fr 1.18fr 0.62fr;
  gap: 12px;
  padding: 14px;
  border-bottom: 1px solid var(--line);
  align-items: center;
}

.proof-table div:last-child {
  border-bottom: 0;
}

.proof-table a {
  color: var(--cyan);
  overflow-wrap: anywhere;
}

.proof-table span {
  color: var(--green);
  font-weight: 760;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 30px;
}

.contact-actions {
  display: grid;
  gap: 10px;
}

.contact-line {
  display: grid;
  gap: 3px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(16, 17, 15, 0.88);
  padding: 16px;
  text-decoration: none;
}

.contact-line span {
  color: var(--gold);
  overflow-wrap: anywhere;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px clamp(16px, 5vw, 72px);
  border-top: 1px solid var(--line);
  background: rgba(7, 8, 7, 0.94);
  color: var(--muted);
}

.site-footer strong {
  color: var(--text);
}

.sol-portal-page {
  min-height: 100vh;
  overflow-x: hidden;
}

.sol-portal-page::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 18%, rgba(215, 184, 94, 0.18), transparent 19%),
    radial-gradient(circle at 18% 28%, rgba(101, 215, 208, 0.13), transparent 22%),
    radial-gradient(circle at 82% 18%, rgba(224, 121, 101, 0.13), transparent 21%),
    linear-gradient(180deg, rgba(7, 8, 7, 0.1), rgba(7, 8, 7, 0.98) 76%);
}

.portal-header {
  position: sticky;
  top: 0;
  z-index: 12;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 14px clamp(16px, 4vw, 56px);
  border-bottom: 1px solid rgba(215, 184, 94, 0.32);
  background: rgba(4, 5, 7, 0.88);
  backdrop-filter: blur(18px);
}

.portal-header nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.portal-header nav a,
.portal-pill,
.portal-link {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(244, 241, 232, 0.16);
  border-radius: 999px;
  padding: 8px 12px;
  text-decoration: none;
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 820;
  background: rgba(255, 255, 255, 0.045);
}

.portal-header nav a:hover,
.portal-link:hover {
  border-color: rgba(101, 215, 208, 0.7);
}

.portal-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.portal-brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

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

.portal-brand small {
  color: var(--muted);
  font-size: 0.74rem;
}

.portal-main {
  width: min(1220px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(28px, 5vw, 72px) 0 64px;
}

.portal-hero {
  min-height: min(720px, calc(100vh - 84px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.portal-hero h1 {
  max-width: 900px;
  font-size: clamp(3rem, 8vw, 7.2rem);
  line-height: 0.9;
}

.portal-hero p {
  max-width: 760px;
  color: #e0d9ca;
  font-size: clamp(1.04rem, 1.6vw, 1.24rem);
}

.portal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.portal-link.primary {
  border-color: transparent;
  color: #090907;
  background: linear-gradient(92deg, #ffd76a, #ff68cf 45%, #65d7d0);
  box-shadow: 0 0 30px rgba(101, 215, 208, 0.22), 0 0 34px rgba(215, 184, 94, 0.2);
}

.portal-link.gold {
  border-color: rgba(215, 184, 94, 0.7);
  color: #f7efd8;
}

.portal-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 9px;
  margin-top: 28px;
  max-width: 860px;
}

.portal-metrics span,
.portal-grid article,
.portal-path article,
.portal-stage,
.portal-showcase,
.portal-ledger {
  border: 1px solid rgba(244, 241, 232, 0.15);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(101, 215, 208, 0.08), transparent 45%),
    rgba(9, 10, 12, 0.78);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.34);
}

.portal-metrics span {
  display: grid;
  gap: 2px;
  min-height: 82px;
  align-content: center;
  padding: 12px;
  color: var(--muted);
  font-size: 0.8rem;
}

.portal-metrics b {
  color: var(--text);
  font-size: 1rem;
}

.portal-stage {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  padding: 22px;
  isolation: isolate;
}

.portal-stage::before,
.portal-stage::after {
  content: "";
  position: absolute;
  inset: 9%;
  z-index: -1;
  border: 1px solid rgba(215, 184, 94, 0.28);
  border-radius: 50%;
  filter: drop-shadow(0 0 22px rgba(101, 215, 208, 0.18));
}

.portal-stage::after {
  inset: 22%;
  border-color: rgba(101, 215, 208, 0.34);
  transform: rotate(28deg);
}

.portal-orbit {
  position: absolute;
  inset: 15%;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.86), rgba(215, 184, 94, 0.24) 12%, transparent 36%),
    conic-gradient(from 180deg, rgba(215, 184, 94, 0.88), rgba(101, 215, 208, 0.9), rgba(224, 121, 101, 0.88), rgba(215, 184, 94, 0.88));
  opacity: 0.26;
  filter: blur(12px);
}

.portal-console {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 12px;
  margin: 42px auto 0;
  max-width: 360px;
  border: 1px solid rgba(244, 241, 232, 0.18);
  border-radius: 8px;
  background: rgba(5, 7, 12, 0.82);
  padding: 18px;
}

.portal-console strong,
.portal-grid strong,
.portal-path strong,
.portal-ledger strong {
  display: block;
  color: var(--text);
}

.portal-console span,
.portal-grid span,
.portal-path span,
.portal-ledger span {
  color: var(--muted);
}

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

.keypad i {
  display: grid;
  place-items: center;
  min-height: 48px;
  border: 1px solid rgba(244, 241, 232, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: #f7efd8;
  font-style: normal;
  font-weight: 900;
}

.portal-grid,
.portal-path,
.portal-ledger {
  display: grid;
  gap: 12px;
}

.portal-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 20px 0 64px;
}

.portal-grid article,
.portal-path article {
  min-height: 148px;
  padding: 16px;
}

.portal-path {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 18px 0 64px;
}

.portal-ledger {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: 14px;
  margin-bottom: 52px;
}

.portal-ledger span {
  display: block;
  margin-top: 4px;
}

.portal-section {
  padding-top: 12px;
  border-top: 1px solid rgba(244, 241, 232, 0.14);
}

.portal-section h2 {
  max-width: 840px;
}

.portal-section > p {
  max-width: 820px;
  color: var(--muted);
  font-size: 1.03rem;
}

.portal-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(340px, 1.12fr);
  gap: 20px;
  align-items: center;
  margin: 22px 0 64px;
  padding: clamp(18px, 3vw, 32px);
}

.showcase-stack {
  display: grid;
  gap: 10px;
}

.showcase-stack a {
  display: grid;
  gap: 4px;
  min-height: 96px;
  border: 1px solid rgba(244, 241, 232, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  padding: 14px;
  text-decoration: none;
}

.sdk-code {
  overflow-x: auto;
  border: 1px solid rgba(101, 215, 208, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(101, 215, 208, 0.08), transparent 45%),
    rgba(4, 5, 7, 0.9);
  color: #f7efd8;
  padding: 18px;
  font: 0.94rem/1.6 "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  box-shadow: inset 0 0 28px rgba(101, 215, 208, 0.06);
}

.sdk-code code {
  white-space: pre;
}

.commerce-visual {
  min-height: 430px;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(215, 184, 94, 0.28);
  background:
    radial-gradient(circle at 50% 30%, rgba(101, 215, 208, 0.24), transparent 26%),
    radial-gradient(circle at 42% 72%, rgba(215, 184, 94, 0.18), transparent 18%),
    linear-gradient(180deg, rgba(9, 10, 12, 0.28), rgba(9, 10, 12, 0.94)),
    url("./brain-command-matrix-live.png") center / cover;
}

.commerce-visual::before {
  content: "DIGITAL STORE";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 22%;
  color: rgba(244, 241, 232, 0.9);
  font-size: clamp(2.8rem, 8vw, 7rem);
  line-height: 0.86;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-align: center;
}

.commerce-visual::after {
  content: "Sentinel Vault Access";
  position: absolute;
  left: 50%;
  bottom: 22%;
  transform: translateX(-50%);
  border: 1px solid rgba(215, 184, 94, 0.58);
  border-radius: 999px;
  padding: 9px 14px;
  color: #f7efd8;
  font-weight: 900;
  background: rgba(4, 5, 7, 0.72);
  box-shadow: 0 0 28px rgba(215, 184, 94, 0.22);
}

.portal-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  padding: 24px clamp(16px, 4vw, 56px);
  border-top: 1px solid rgba(244, 241, 232, 0.14);
  color: var(--muted);
  background: rgba(4, 5, 7, 0.9);
}

@media (max-width: 960px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .portal-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .portal-header nav {
    justify-content: flex-start;
  }

  .site-header nav {
    justify-content: flex-start;
  }

  .hero,
  .intro-band,
  .split,
  .infrastructure,
  .hub-section,
  .access-commerce,
  .proof-section,
  .contact,
  .portal-hero,
  .portal-showcase {
    grid-template-columns: 1fr;
  }

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

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

  .portal-path {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .site-header nav a,
  .site-footer nav a,
  .button,
  .portal-header nav a,
  .portal-link {
    width: 100%;
  }

  .hero {
    padding-top: 28px;
  }

  .hero-media,
  .hero-media img {
    min-height: 280px;
  }

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

  .infra-grid,
  .hub-grid,
  .portal-grid,
  .portal-ledger,
  .portal-metrics {
    grid-template-columns: 1fr;
  }

  .portal-stage,
  .commerce-visual {
    min-height: 340px;
  }

  .proof-table div {
    grid-template-columns: 1fr;
  }

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

/* BEGIN quantumskyes:adaptive-neon-scrollbar-css */
/*
  Adaptive Neon Scrollbar

  Optional MCP part. Add data-mcp-neon-scrollbar to html, body, or a scroll
  container when a site explicitly asks for visible neon scrollbars.
  This keeps native scrollbars visible and adds always-visible, draggable
  neon rails on the exact viewport edges.
*/

:root{
  --mcp-neon-scrollbar-size:18px;
  --mcp-neon-scrollbar-bg:rgba(3,7,11,.62);
  --mcp-neon-scrollbar-track:rgba(7,16,23,.52);
  --mcp-neon-scrollbar-rail:rgba(53,183,255,.34);
  --mcp-neon-scrollbar-a:var(--gold2,var(--gold,var(--brand-gold,var(--accent,#f3d483))));
  --mcp-neon-scrollbar-b:var(--cyan,var(--brand-cyan,var(--accent-2,#35b7ff)));
  --mcp-neon-scrollbar-c:var(--mint,var(--brand-mint,var(--success,#6ff2c7)));
  --mcp-neon-scrollbar-d:var(--violet,var(--brand-violet,var(--accent-3,#a88cff)));
}

html[data-mcp-neon-scrollbar],
html[data-mcp-neon-scrollbar] body,
[data-mcp-neon-scrollbar]{
  scrollbar-width:auto !important;
  scrollbar-color:var(--mcp-neon-scrollbar-b) var(--mcp-neon-scrollbar-track);
  -ms-overflow-style:auto !important;
}

html[data-mcp-neon-scrollbar] *,
[data-mcp-neon-scrollbar] *{
  scrollbar-width:auto !important;
  scrollbar-color:var(--mcp-neon-scrollbar-b) var(--mcp-neon-scrollbar-track);
  -ms-overflow-style:auto !important;
}

html[data-mcp-neon-scrollbar]::-webkit-scrollbar,
html[data-mcp-neon-scrollbar] body::-webkit-scrollbar,
html[data-mcp-neon-scrollbar] *::-webkit-scrollbar,
[data-mcp-neon-scrollbar]::-webkit-scrollbar,
[data-mcp-neon-scrollbar] *::-webkit-scrollbar{
  width:14px !important;
  height:14px !important;
  display:block !important;
  background:var(--mcp-neon-scrollbar-track) !important;
}

.mcp-neon-scroll-rail{
  position:fixed;
  z-index:9999;
  pointer-events:auto;
  opacity:.94;
  border:1px solid var(--mcp-neon-scrollbar-rail);
  border-radius:999px;
  background:
    linear-gradient(180deg,rgba(243,212,131,.16),rgba(53,183,255,.12) 45%,rgba(168,140,255,.12) 76%,rgba(111,242,199,.10)),
    var(--mcp-neon-scrollbar-track);
  box-shadow:
    inset 0 0 10px rgba(53,183,255,.22),
    inset 0 0 18px rgba(243,212,131,.10),
    0 0 14px rgba(53,183,255,.20),
    0 0 22px rgba(243,212,131,.10);
  contain:layout style paint;
  transform:translateZ(0);
  touch-action:none;
  user-select:none;
}

.mcp-neon-scroll-rail-y{
  top:0;
  right:0;
  bottom:var(--mcp-neon-scrollbar-size);
  width:var(--mcp-neon-scrollbar-size);
  cursor:ns-resize;
}

.mcp-neon-scroll-rail-x{
  left:0;
  right:var(--mcp-neon-scrollbar-size);
  bottom:0;
  height:var(--mcp-neon-scrollbar-size);
  cursor:ew-resize;
  background:
    linear-gradient(90deg,rgba(243,212,131,.16),rgba(53,183,255,.12) 45%,rgba(168,140,255,.12) 76%,rgba(111,242,199,.10)),
    var(--mcp-neon-scrollbar-track);
}

.mcp-neon-scroll-corner{
  position:fixed;
  right:0;
  bottom:0;
  z-index:9999;
  width:var(--mcp-neon-scrollbar-size);
  height:var(--mcp-neon-scrollbar-size);
  border:1px solid var(--mcp-neon-scrollbar-rail);
  border-radius:12px 0 0 0;
  background:
    radial-gradient(circle,var(--mcp-neon-scrollbar-b),transparent 64%),
    var(--mcp-neon-scrollbar-bg);
  box-shadow:0 0 22px rgba(53,183,255,.30);
  pointer-events:none;
  contain:layout style paint;
  transform:translateZ(0);
}

.mcp-neon-scroll-thumb{
  position:absolute;
  border:3px solid transparent;
  border-radius:999px;
  background:
    linear-gradient(180deg,rgba(255,255,255,.76),rgba(255,255,255,.20)) padding-box,
    linear-gradient(180deg,var(--mcp-neon-scrollbar-a),var(--mcp-neon-scrollbar-b),var(--mcp-neon-scrollbar-d),var(--mcp-neon-scrollbar-c)) border-box;
  box-shadow:
    0 0 11px rgba(53,183,255,.72),
    0 0 22px rgba(243,212,131,.32),
    0 0 30px rgba(111,242,199,.16),
    inset 0 0 12px rgba(255,255,255,.36);
  cursor:grab;
  pointer-events:auto;
  touch-action:none;
  will-change:transform,width,height;
}

.mcp-neon-scroll-thumb:active,
.mcp-neon-scroll-rail.is-dragging .mcp-neon-scroll-thumb{
  cursor:grabbing;
  box-shadow:
    0 0 13px rgba(53,183,255,.86),
    0 0 26px rgba(243,212,131,.40),
    0 0 34px rgba(168,140,255,.20),
    inset 0 0 15px rgba(255,255,255,.44);
}

html.mcp-neon-scroll-dragging,
html.mcp-neon-scroll-dragging *{
  scroll-behavior:auto !important;
}

html.mcp-neon-scroll-dragging .mcp-neon-scroll-rail{
  opacity:1;
}

.mcp-neon-scroll-rail-y .mcp-neon-scroll-thumb{
  top:0;
  left:0;
  width:100%;
  min-height:78px;
  transform:translate3d(0,var(--mcp-scroll-y,0px),0);
}

.mcp-neon-scroll-rail-x .mcp-neon-scroll-thumb{
  top:0;
  left:0;
  height:100%;
  min-width:84px;
  transform:translate3d(var(--mcp-scroll-x,0px),0,0);
  background:
    linear-gradient(90deg,rgba(255,255,255,.76),rgba(255,255,255,.20)) padding-box,
    linear-gradient(90deg,var(--mcp-neon-scrollbar-a),var(--mcp-neon-scrollbar-b),var(--mcp-neon-scrollbar-d),var(--mcp-neon-scrollbar-c)) border-box;
}

@media(max-width:680px){
  :root{--mcp-neon-scrollbar-size:15px}
  .mcp-neon-scroll-thumb{border-width:2px}
  .mcp-neon-scroll-rail-y .mcp-neon-scroll-thumb{min-height:72px}
  .mcp-neon-scroll-rail-x .mcp-neon-scroll-thumb{min-width:78px}
}

.mcp-neon-scroll-rail{
  position:fixed;
  z-index:180;
  pointer-events:none;
  opacity:.94;
  border:1px solid var(--mcp-neon-scrollbar-rail);
  border-radius:999px;
  background:
    linear-gradient(180deg,rgba(243,212,131,.14),rgba(53,183,255,.10) 45%,rgba(168,140,255,.11) 76%,rgba(111,242,199,.09)),
    rgba(3,7,11,.50);
  box-shadow:
    inset 0 0 13px rgba(53,183,255,.24),
    0 0 18px rgba(53,183,255,.20),
    0 0 28px rgba(243,212,131,.12);
  backdrop-filter:blur(10px);
}

.mcp-neon-scroll-rail-y{
  top:92px;
  right:8px;
  bottom:16px;
  width:15px;
}

.mcp-neon-scroll-rail-x{
  left:16px;
  right:16px;
  bottom:8px;
  height:15px;
  background:
    linear-gradient(90deg,rgba(243,212,131,.14),rgba(53,183,255,.10) 45%,rgba(168,140,255,.11) 76%,rgba(111,242,199,.09)),
    rgba(3,7,11,.50);
}

.mcp-neon-scroll-thumb{
  position:absolute;
  border:3px solid transparent;
  border-radius:999px;
  background:
    linear-gradient(180deg,rgba(255,255,255,.72),rgba(255,255,255,.18)) padding-box,
    linear-gradient(180deg,var(--mcp-neon-scrollbar-a),var(--mcp-neon-scrollbar-b),var(--mcp-neon-scrollbar-d),var(--mcp-neon-scrollbar-c)) border-box;
  box-shadow:
    0 0 14px rgba(53,183,255,.86),
    0 0 30px rgba(243,212,131,.42),
    0 0 44px rgba(111,242,199,.22),
    inset 0 0 12px rgba(255,255,255,.34);
}

.mcp-neon-scroll-rail-y .mcp-neon-scroll-thumb{
  top:0;
  left:0;
  width:100%;
  min-height:78px;
  transform:translate3d(0,var(--mcp-scroll-y,0px),0);
}

.mcp-neon-scroll-rail-x .mcp-neon-scroll-thumb{
  top:0;
  left:0;
  height:100%;
  min-width:78px;
  transform:translate3d(var(--mcp-scroll-x,0px),0,0);
  background:
    linear-gradient(90deg,rgba(255,255,255,.72),rgba(255,255,255,.18)) padding-box,
    linear-gradient(90deg,var(--mcp-neon-scrollbar-a),var(--mcp-neon-scrollbar-b),var(--mcp-neon-scrollbar-d),var(--mcp-neon-scrollbar-c)) border-box;
}

@media(max-width:680px){
  .mcp-neon-scroll-rail-y{top:112px;right:5px;bottom:12px;width:12px}
  .mcp-neon-scroll-rail-x{left:10px;right:10px;bottom:5px;height:12px}
  .mcp-neon-scroll-thumb{border-width:2px}
}
/* END quantumskyes:adaptive-neon-scrollbar-css */

/* BEGIN quantumskyes:skyesol-living-background-css */
.skyesol-living-field {
  position: fixed;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.skyesol-grain,
.skyesol-scanline {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.skyesol-grain {
  z-index: -1;
  opacity: .1;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.62'/%3E%3C/svg%3E");
}

.skyesol-scanline {
  z-index: 10;
  opacity: .045;
  background: repeating-linear-gradient(to bottom, rgba(255,255,255,.22), rgba(255,255,255,.22) 1px, transparent 1px, transparent 6px);
}

.skyesol-living-page {
  background:
    linear-gradient(180deg, rgba(5,5,11,.94), rgba(3,3,7,.98)),
    radial-gradient(1200px 760px at 14% 4%, rgba(138,99,255,.2), transparent 58%),
    radial-gradient(1100px 760px at 82% 16%, rgba(39,242,255,.12), transparent 58%),
    radial-gradient(900px 660px at 55% 92%, rgba(201,168,76,.12), transparent 60%);
}

.skyesol-living-page.motion-paused *,
.skyesol-living-page.motion-paused *::before,
.skyesol-living-page.motion-paused *::after {
  animation-play-state: paused !important;
  transition-duration: .01ms !important;
}

@media (prefers-reduced-motion: reduce), (max-width: 760px) {
  .skyesol-scanline {
    opacity: .028;
  }

  .skyesol-grain {
    opacity: .065;
  }
}
/* END quantumskyes:skyesol-living-background-css */

/* BEGIN quantumskyes:neon-motion-chrome-css */
:root {
  --neon-bg: #05030b;
  --neon-gold: #ffd76a;
  --neon-cyan: #61f6ff;
  --neon-pink: #ff4fd8;
  --neon-violet: #9b5cff;
  --neon-ink: #fff8e7;
  --neon-scrollbar-track: rgba(5, 3, 11, .58);
  --neon-scrollbar-rail: rgba(97, 246, 255, .28);
}

html {
  scrollbar-gutter: stable;
  scrollbar-width: auto;
  scrollbar-color: color-mix(in srgb, var(--neon-cyan) 78%, transparent) var(--neon-scrollbar-track);
  scroll-behavior: smooth;
}

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

::-webkit-scrollbar-track {
  border: 1px solid var(--neon-scrollbar-rail);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 215, 106, .16), rgba(97, 246, 255, .12) 46%, rgba(155, 92, 255, .13) 78%, rgba(255, 79, 216, .10)),
    rgba(5, 3, 11, .46);
  box-shadow:
    inset 0 0 14px rgba(97, 246, 255, .24),
    inset 0 0 24px rgba(255, 215, 106, .13),
    0 0 18px rgba(97, 246, 255, .12);
}

::-webkit-scrollbar-track:horizontal {
  background:
    linear-gradient(90deg, rgba(255, 215, 106, .16), rgba(97, 246, 255, .12) 46%, rgba(155, 92, 255, .13) 78%, rgba(255, 79, 216, .10)),
    rgba(5, 3, 11, .46);
}

::-webkit-scrollbar-thumb {
  min-width: 72px;
  min-height: 70px;
  border: 4px solid transparent;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .74), rgba(255, 255, 255, .18)) padding-box,
    linear-gradient(180deg, var(--neon-gold), var(--neon-cyan), var(--neon-violet), var(--neon-pink)) border-box;
  box-shadow:
    0 0 12px rgba(97, 246, 255, .78),
    0 0 24px rgba(255, 215, 106, .38),
    0 0 36px rgba(155, 92, 255, .20),
    inset 0 0 12px rgba(255, 255, 255, .34);
}

::-webkit-scrollbar-thumb:horizontal {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .74), rgba(255, 255, 255, .18)) padding-box,
    linear-gradient(90deg, var(--neon-gold), var(--neon-cyan), var(--neon-violet), var(--neon-pink)) border-box;
}

::-webkit-scrollbar-thumb:hover {
  border-width: 3px;
  box-shadow:
    0 0 16px rgba(97, 246, 255, .92),
    0 0 34px rgba(255, 215, 106, .50),
    0 0 48px rgba(255, 79, 216, .25),
    inset 0 0 14px rgba(255, 255, 255, .42);
}

.neon-motion-chrome {
  position: relative;
  isolation: isolate;
  min-height: 100%;
  color: var(--neon-ink);
}

.neon-motion-chrome::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, .026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .026) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .82), transparent 78%);
}

.neon-scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 90;
  width: 100%;
  height: 4px;
  transform-origin: left center;
  background: linear-gradient(90deg, var(--neon-gold), var(--neon-cyan), var(--neon-pink));
  box-shadow: 0 0 22px rgba(97, 246, 255, .42);
}

.neon-scanline {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .34;
  background:
    linear-gradient(90deg, transparent, rgba(255, 255, 255, .12), transparent),
    repeating-linear-gradient(180deg, rgba(97, 246, 255, .04) 0 1px, transparent 1px 8px);
  background-size: 38vw 100%, 100% 8px;
  mix-blend-mode: screen;
}

.neon-cursor-trail {
  position: fixed;
  left: -150px;
  top: -150px;
  z-index: 70;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(255, 215, 106, .18), rgba(97, 246, 255, .11) 38%, rgba(255, 79, 216, .08) 56%, transparent 72%);
  filter: blur(10px);
  mix-blend-mode: screen;
}

.neon-motion-chrome__label {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 75;
  max-width: min(280px, calc(100vw - 36px));
  border: 1px solid rgba(255, 215, 106, .28);
  border-radius: 999px;
  padding: 9px 12px;
  background: rgba(5, 3, 11, .72);
  color: rgba(255, 248, 231, .84);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: .12em;
  text-transform: uppercase;
  backdrop-filter: blur(14px);
}

.neon-gradient-text {
  background: linear-gradient(92deg, #fff8e7 0%, var(--neon-gold) 30%, var(--neon-cyan) 60%, var(--neon-pink) 86%, #fff8e7 100%);
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: none;
  animation: neonTitleShimmer 7s linear infinite;
}

.neon-glow-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .09), rgba(255, 255, 255, .035));
  box-shadow: 0 24px 80px rgba(0, 0, 0, .42), 0 0 34px rgba(97, 246, 255, .1);
}

.neon-glow-panel::before {
  content: "";
  position: absolute;
  inset: -80% -20%;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .18), transparent);
  transform: rotate(18deg);
  animation: neonSweep 7s ease-in-out infinite;
}

.neon-magnetic {
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
  will-change: transform;
}

.neon-magnetic:hover {
  transform: translateY(-3px) scale(1.015);
  border-color: rgba(97, 246, 255, .62);
  box-shadow: 0 18px 54px rgba(97, 246, 255, .14), 0 0 28px rgba(255, 215, 106, .16);
}

@keyframes neonTitleShimmer {
  from { background-position: 0% center; }
  to { background-position: 220% center; }
}

@keyframes neonSweep {
  0%, 62% { translate: -120% 0; }
  100% { translate: 120% 0; }
}

@media (pointer: coarse), (max-width: 760px) {
  .neon-cursor-trail {
    display: none;
  }

  .neon-motion-chrome__label {
    position: static;
    display: inline-flex;
    margin: 16px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }

  .neon-cursor-trail,
  .neon-scanline {
    display: none;
  }
}
/* END quantumskyes:neon-motion-chrome-css */

/* BEGIN quantumskyes:premium-text-effects-css */
.neon-gradient-text,.premium-text-effects-lab,.skye-gradient-text{
  color:transparent;
  background:linear-gradient(90deg,#fff 0%,var(--mcp-neon-scrollbar-a,#f3d483) 31%,var(--mcp-neon-scrollbar-b,#35b7ff) 63%,var(--mcp-neon-scrollbar-c,#6ff2c7) 100%);
  -webkit-background-clip:text;
  background-clip:text;
  text-shadow:0 0 28px rgba(53,183,255,.18),0 0 34px rgba(243,212,131,.12);
}
/* END quantumskyes:premium-text-effects-css */
