:root {
  --base: #02070c;
  --s1: #050d15;
  --s2: #08131e;
  --s3: #0c1a28;
  --b1: rgba(114, 211, 255, 0.16);
  --b2: rgba(114, 211, 255, 0.09);
  --b3: rgba(114, 211, 255, 0.045);
  --t1: #f3f9ff;
  --t2: #93aabd;
  --t3: #526b7e;
  --cyan: #00d9ff;
  --cyan-2: #4b8dff;
  --cyan-d: rgba(0, 217, 255, 0.1);
  --cyan-g: rgba(0, 217, 255, 0.26);
  --violet: #7185ff;
  --vio-d: rgba(113, 133, 255, 0.1);
  --vio-g: rgba(113, 133, 255, 0.22);
  --ok: #42e9a4;
  --ok-d: rgba(66, 233, 164, 0.1);
  --danger: #ff6f7e;
  --r1: 3px;
  --r2: 7px;
  --r3: 12px;
  --r4: 18px;
  --r5: 26px;
  --scroll-pct: 0%;
}

* { scrollbar-color: rgba(80, 163, 199, .35) transparent; }

html {
  min-width: 0;
  overflow-x: clip;
  scroll-behavior: smooth;
  background: var(--base);
}

html::before {
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--cyan-2));
  box-shadow: 0 0 14px var(--cyan-g);
}

html::after,
.scanline-sweep,
.bp-cursor,
.bp-cursor-dot { display: none !important; }

body {
  min-width: 0;
  overflow-x: clip;
  background: var(--base);
  color: var(--t1);
  font-family: "Manrope", system-ui, sans-serif;
  letter-spacing: -.012em;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(circle at 80% -8%, rgba(0, 182, 255, .16), transparent 31rem),
    radial-gradient(circle at -5% 70%, rgba(74, 98, 255, .09), transparent 30rem),
    linear-gradient(180deg, #02070c 0%, #030910 100%);
  animation: none;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(76, 183, 229, .025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(76, 183, 229, .025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, rgba(0,0,0,.55) 48%, transparent 88%);
}

::selection { background: var(--cyan); color: #001016; }
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: var(--base); }
::-webkit-scrollbar-thumb { background: #173246; border: 2px solid var(--base); border-radius: 99px; }

h1,
h2,
h3,
.brand-name,
.gw-title,
.auth-title,
.hero-h1,
.pc-amt,
.mval,
.mod-name,
.command-stats strong {
  font-family: "Space Grotesk", "Manrope", sans-serif !important;
}

.hero-ey,
.gw-eyebrow,
.con-label,
.con-live span,
.brand-sub,
.mlabel,
.step-n,
.codebox,
.csf,
.console-feed,
.mod-meta,
.section-kicker,
.support-kicker,
.command-brand span,
.command-online,
.command-foot,
.core-label,
.command-stats span {
  font-family: "IBM Plex Mono", ui-monospace, monospace !important;
}

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

button,
input { font-family: inherit; }

:focus-visible {
  outline: 2px solid var(--cyan) !important;
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 10001;
  padding: 10px 14px;
  border-radius: 7px;
  background: var(--t1);
  color: var(--base);
  font-size: 12px;
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

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

.wrap,
.header-inner,
.footer-inner {
  width: min(100% - 56px, 1280px);
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 0;
}

.view { min-width: 0; }

[data-reveal] { opacity: 1; transform: none; }
.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 550ms cubic-bezier(.2,.8,.2,1), transform 550ms cubic-bezier(.2,.8,.2,1);
}
.reveal-ready [data-reveal].is-visible { opacity: 1; transform: none; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  border-bottom: 1px solid var(--b2);
  background: rgba(2, 7, 12, .8);
  backdrop-filter: blur(22px) saturate(145%);
}

.site-header::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  width: 32%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,217,255,.48));
}

.header-inner { height: 76px; gap: 24px; }

.brand-btn { gap: 12px; padding: 4px 0; }
.brand-logo {
  width: 38px;
  height: 38px;
  filter: drop-shadow(0 0 12px rgba(0, 217, 255, .34));
  transition: transform 220ms ease, filter 220ms ease;
}
.brand-btn:hover .brand-logo {
  transform: translateY(-2px) scale(1.04);
  filter: drop-shadow(0 0 18px rgba(0, 217, 255, .54));
}
.brand-name {
  color: var(--t1);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .025em;
  text-transform: uppercase;
}
.brand-sub {
  margin-top: 4px;
  color: var(--cyan);
  font-size: 8px;
  letter-spacing: .15em;
}

#tabs {
  position: relative;
  display: flex;
  align-items: center;
  gap: 3px;
  margin-left: auto;
  padding: 4px;
  overflow: visible;
  border: 1px solid var(--b2);
  border-radius: 10px;
  background: rgba(9, 22, 34, .56);
}

.nav-indicator {
  inset: 4px auto 4px 4px;
  height: auto;
  border: 1px solid rgba(0, 217, 255, .2);
  border-radius: 7px;
  background: linear-gradient(135deg, rgba(0,217,255,.11), rgba(75,141,255,.08));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.025);
}

.tab {
  min-height: 36px;
  padding: 8px 14px;
  color: var(--t3);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: -.01em;
}
.tab:hover { color: var(--t1); }
.tab-on { color: #dffaff !important; }

#authBtn {
  min-height: 38px;
  padding-inline: 15px !important;
  border-radius: 8px;
}

/* Controls */
.btn {
  min-height: 46px;
  padding: 11px 19px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: -.005em;
  transition: transform 170ms ease, background 170ms ease, border-color 170ms ease, box-shadow 170ms ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(.985); }
.btn-primary {
  border: 1px solid #20dcff;
  background: linear-gradient(135deg, #20e1ff 0%, #4a98ff 100%);
  color: #001018;
  box-shadow: 0 15px 36px -18px rgba(0, 217, 255, .75), inset 0 1px 0 rgba(255,255,255,.38);
}
.btn-primary:hover {
  filter: none;
  background: linear-gradient(135deg, #54e9ff, #64a7ff);
  box-shadow: 0 18px 42px -18px rgba(0,217,255,.85);
}
.btn-ghost {
  border: 1px solid var(--b1);
  background: rgba(108, 190, 232, .035);
  color: var(--t1);
}
.btn-ghost:hover { border-color: rgba(83,205,255,.36); background: rgba(0,217,255,.075); }
.btn-violet {
  border: 1px solid var(--violet);
  background: linear-gradient(135deg, #7185ff, #4b8dff);
  color: #fff;
}

.field {
  min-height: 46px;
  padding: 11px 14px;
  border: 1px solid var(--b1);
  border-radius: 8px;
  background: rgba(1, 7, 12, .76);
  color: var(--t1);
  font-size: 12px;
}
.field::placeholder { color: var(--t3); }
.field:focus { border-color: var(--cyan); box-shadow: 0 0 0 3px var(--cyan-d); }

.pill {
  padding: 5px 9px;
  border-radius: 999px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 8px;
  line-height: 1;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.pill-cyan { border-color: rgba(0,217,255,.22); background: var(--cyan-d); color: var(--cyan); }
.pill-ok { border-color: rgba(66,233,164,.22); background: var(--ok-d); color: var(--ok); }
.pill-vio { border-color: rgba(113,133,255,.24); background: var(--vio-d); color: #9cafff; }
.pill-muted { border-color: var(--b2); background: var(--b3); color: var(--t2); }

.chip {
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid var(--b1);
  border-radius: 7px;
  background: rgba(111,198,238,.025);
  color: var(--t2);
  font-size: 10px;
  font-weight: 700;
}
.chip:hover { border-color: rgba(0,217,255,.36); color: var(--t1); background: var(--cyan-d); }
.chip-on { border-color: var(--cyan) !important; background: linear-gradient(135deg,#12dfff,#4b8dff) !important; color: #001018 !important; }

.status-dot {
  background: var(--ok);
  box-shadow: 0 0 9px rgba(66,233,164,.65);
}
.status-dot::after { display: none; }

/* Gateway */
#gateway {
  min-width: 0;
  background:
    linear-gradient(90deg, transparent calc(50% - .5px), rgba(0,217,255,.08) 50%, transparent calc(50% + .5px)),
    radial-gradient(circle at 14% 10%, rgba(0,217,255,.11), transparent 27rem);
}
.gw-grid { width: min(100%, 1120px); gap: 78px; }
.gw-eyebrow,
.hero-ey,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--cyan);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.gw-eyebrow::before,
.hero-ey::before {
  width: 24px;
  height: 1px;
  border-radius: 0;
  background: linear-gradient(90deg, var(--cyan), transparent);
  box-shadow: none;
}
.gw-title {
  max-width: 620px;
  margin: 21px 0 24px;
  font-size: clamp(50px, 6vw, 78px);
  font-weight: 700;
  line-height: .9;
  letter-spacing: -.06em;
}
.gw-title span,
.hero-h1 .gt {
  background: linear-gradient(95deg, #f3f9ff 0%, #2de4ff 25%, #4b8dff 92%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.gw-desc { max-width: 510px; margin-bottom: 35px; color: var(--t2); font-size: 14px; line-height: 1.75; }
.console-panel,
.hero-terminal {
  overflow: hidden;
  border: 1px solid var(--b1);
  border-radius: 12px;
  background: rgba(4, 13, 21, .84);
  box-shadow: 0 34px 90px -55px rgba(0,0,0,.95);
}
.con-bar { min-height: 43px; padding: 10px 15px; border-color: var(--b2); background: rgba(83,183,231,.025); }
.con-dots span { width: 7px; height: 7px; opacity: .7; }
.con-label { color: var(--t3); font-size: 8px; letter-spacing: .13em; }
.con-live span { color: var(--ok); font-size: 8px; }
.con-body { padding: 14px 18px; }
.console-feed li { padding: 9px 0; border-color: var(--b2); color: var(--t2); font-size: 10px; }
.console-feed li:last-child::after { display: none; }

.auth-card {
  padding: 40px;
  overflow: hidden;
  border: 1px solid var(--b1);
  border-radius: 18px;
  background: linear-gradient(155deg, rgba(9,24,36,.96), rgba(3,11,18,.96));
  box-shadow: 0 45px 110px -52px #000, inset 0 1px 0 rgba(255,255,255,.025);
}
.auth-card::before {
  display: block;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), var(--cyan-2), transparent);
  opacity: .7;
}
.bracket::before,
.bracket::after { display: none; }
.auth-logo { width: 52px; height: 52px; filter: drop-shadow(0 0 14px rgba(0,217,255,.38)); }
.auth-header { margin-bottom: 33px; }
.auth-title { font-size: 22px; letter-spacing: -.035em; }
.auth-desc { color: var(--t3); }
.access-step { gap: 14px; }
.step-track { width: 32px; }
.step-badge {
  width: 32px;
  height: 32px;
  border-color: var(--b1);
  background: var(--s2);
  font-family: "IBM Plex Mono", monospace;
  font-size: 9px;
}
.step-body { padding: 4px 0 22px; }
.step-title { font-size: 12px; }
.step-sub { color: var(--t3); font-size: 10px; line-height: 1.65; }
.step-note { color: var(--t3); font-size: 9px; }
.step-connector { background: var(--b1); }
.access-step[data-state="active"] .step-badge,
.access-step[data-state="granted"] .step-badge { border-color: var(--cyan); background: var(--cyan-d); color: var(--cyan); box-shadow: 0 0 18px -7px var(--cyan); }
.access-step[data-state="done"] .step-badge { border-color: var(--ok); background: var(--ok-d); color: var(--ok); }
.access-step[data-state="active"] .step-connector { background: linear-gradient(to bottom,var(--cyan),var(--b1)); }
.trust-row { margin-top: 24px; padding-top: 20px; border-color: var(--b2); }
.trust-item { color: var(--t3); font-size: 8px; letter-spacing: .07em; text-transform: uppercase; }
.trust-item strong { color: var(--t1); font-size: 18px; }
.trust-item:not(:last-child) { border-color: var(--b2); }

/* Hero */
.dash-hero {
  position: relative;
  min-height: 690px;
  display: grid;
  align-items: center;
  padding: 82px 0 62px;
}
.dash-hero::before {
  content: "";
  display: block;
  position: absolute;
  top: -70px;
  right: -180px;
  width: 680px;
  height: 680px;
  opacity: .028;
  background: url("assets/bp-logo.png") center / contain no-repeat;
  filter: saturate(1.2);
  pointer-events: none;
}
.dash-hero .lg-grid-2 {
  position: relative;
  grid-template-columns: minmax(0, 1.18fr) minmax(390px, .82fr) !important;
  gap: clamp(56px, 7vw, 104px) !important;
  align-items: center;
}
.hero-ey { margin-bottom: 25px; }
.hero-h1 {
  max-width: 790px;
  margin-bottom: 30px;
  color: var(--t1);
  font-size: clamp(70px, 8.4vw, 118px);
  font-weight: 700;
  line-height: .81;
  letter-spacing: -.072em;
}
.hero-p { max-width: 600px; margin-bottom: 31px; color: var(--t2); font-size: 15px; line-height: 1.78; }
.hero-acts { gap: 10px; margin-bottom: 42px; }
.hero-stats { border: 0; border-radius: 0; background: transparent; backdrop-filter: none; }
.hstat { min-width: 175px; padding: 0 25px 0 0; border: 0; }
.hstat + .hstat { margin-left: 25px; padding-left: 25px; border-left: 1px solid var(--b1); }
.hstat .n { color: var(--t1); font-family: "Space Grotesk",sans-serif; font-size: 25px; }
.hstat .l { color: var(--t3); font-family: "IBM Plex Mono",monospace; font-size: 7px; letter-spacing: .12em; }

.hero-visual { min-width: 0; }
.hero-command {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(66, 193, 255, .21);
  border-radius: 20px;
  background:
    linear-gradient(145deg, rgba(13,36,53,.88), rgba(3,12,20,.96) 66%),
    var(--s1);
  box-shadow: 0 46px 100px -58px #000, inset 0 1px 0 rgba(255,255,255,.035);
}
.hero-command::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(72,174,223,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(72,174,223,.035) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(circle at 50% 42%, black, transparent 74%);
}
.hero-command::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 1px;
  background: linear-gradient(90deg,transparent,var(--cyan));
  box-shadow: 0 0 18px var(--cyan);
}
.command-head {
  position: relative;
  z-index: 2;
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 15px 18px;
  border-bottom: 1px solid var(--b2);
}
.command-brand { display: flex; align-items: center; gap: 11px; }
.command-brand img { width: 34px; height: 34px; filter: drop-shadow(0 0 10px rgba(0,217,255,.35)); }
.command-brand span { display: block; margin-bottom: 3px; color: var(--cyan); font-size: 7px; letter-spacing: .14em; }
.command-brand strong { display: block; color: var(--t1); font-family: "Space Grotesk",sans-serif; font-size: 12px; }
.command-online { display: flex; align-items: center; gap: 7px; color: var(--ok); font-size: 7px; letter-spacing: .1em; text-transform: uppercase; }
.command-online .status-dot { width: 5px; height: 5px; }

.core-stage {
  position: relative;
  height: 285px;
  overflow: hidden;
  border-bottom: 1px solid var(--b2);
}
.core-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(0,217,255,.18);
  border-radius: 50%;
  transform: translate(-50%,-50%);
}
.orbit-one { width: 210px; height: 210px; border-style: dashed; animation: coreSpin 24s linear infinite; }
.orbit-two { width: 148px; height: 148px; border-color: rgba(75,141,255,.27); box-shadow: inset 0 0 50px rgba(0,217,255,.035), 0 0 50px rgba(0,217,255,.035); animation: coreSpinReverse 18s linear infinite; }
.orbit-one::before,
.orbit-one::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 14px var(--cyan);
}
.orbit-one::before { top: 21px; left: 26px; }
.orbit-one::after { right: 12px; bottom: 47px; background: var(--cyan-2); }
.core-axis { position: absolute; background: linear-gradient(90deg,transparent,rgba(0,217,255,.13),transparent); }
.axis-x { top: 50%; left: 12%; width: 76%; height: 1px; }
.axis-y { top: 12%; left: 50%; width: 1px; height: 76%; background: linear-gradient(transparent,rgba(0,217,255,.13),transparent); }
.core-mark {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100px;
  height: 100px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(0,217,255,.23);
  border-radius: 24px;
  background: radial-gradient(circle,rgba(0,217,255,.13),rgba(4,15,23,.88) 65%);
  transform: translate(-50%,-50%) rotate(45deg);
  box-shadow: 0 0 52px rgba(0,217,255,.12), inset 0 0 26px rgba(0,217,255,.06);
}
.core-mark img { width: 64px; height: 64px; transform: rotate(-45deg); filter: drop-shadow(0 0 13px rgba(0,217,255,.55)); }
.core-label { position: absolute; color: var(--t3); font-size: 7px; letter-spacing: .1em; }
.label-a { top: 28px; left: 24px; }
.label-b { right: 24px; bottom: 25px; }
@keyframes coreSpin { to { transform: translate(-50%,-50%) rotate(360deg); } }
@keyframes coreSpinReverse { to { transform: translate(-50%,-50%) rotate(-360deg); } }

.command-stats {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3,1fr);
}
.command-stats > div { min-width: 0; padding: 18px 15px; }
.command-stats > div + div { border-left: 1px solid var(--b2); }
.command-stats strong { display: block; margin-bottom: 5px; color: var(--t1); font-size: 20px; line-height: 1; }
.command-stats span { display: block; overflow: hidden; color: var(--t3); font-size: 6px; letter-spacing: .08em; text-overflow: ellipsis; text-transform: uppercase; white-space: nowrap; }
.command-foot {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 17px;
  border-top: 1px solid var(--b2);
  background: rgba(0,217,255,.025);
  color: var(--t3);
  font-size: 6px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* Dashboard content */
.metric-strip {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1px;
  margin: 0 0 22px;
  overflow: hidden;
  border: 1px solid var(--b1);
  border-radius: 16px;
  background: var(--b1);
}
.metric {
  min-width: 0;
  min-height: 154px;
  padding: 27px;
  border: 0;
  border-radius: 0;
  background: linear-gradient(155deg, rgba(10,27,41,.94), rgba(4,13,21,.96));
}
.metric::before { display: none; }
.metric:first-child { background: linear-gradient(155deg, rgba(6,38,51,.96), rgba(4,13,21,.96)); }
.mlabel { color: var(--cyan); font-size: 7px; letter-spacing: .14em; }
.mval { margin-top: 16px; color: var(--t1); font-size: 29px; letter-spacing: -.045em; }
.msub { max-width: 275px; margin-top: 8px; color: var(--t3); font-size: 10px; line-height: 1.6; }

.panel {
  min-width: 0;
  padding: 26px;
  border: 1px solid var(--b1);
  border-radius: 16px;
  background: linear-gradient(155deg, rgba(10,27,41,.82), rgba(4,13,21,.9));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.025);
}
.panel-hd { margin-bottom: 17px; padding-bottom: 17px; border-bottom: 1px solid var(--b2); }
.panel-hd h2 { color: var(--t1); font-size: 17px; letter-spacing: -.03em; }
.row-item { padding: 14px 0; border-color: var(--b2); }
.row-item p { color: var(--t2); line-height: 1.65; }
.quick-link {
  min-width: 0;
  min-height: 92px;
  padding: 16px;
  border: 1px solid var(--b2);
  border-radius: 10px;
  background: rgba(82,179,224,.025);
}
.quick-link:hover { border-color: rgba(0,217,255,.44); background: var(--cyan-d); transform: translateY(-2px); }
.quick-link strong { overflow: hidden; color: var(--t1); font-size: 11px; text-overflow: ellipsis; white-space: nowrap; }
.ql-s { color: var(--t3); font-family: "IBM Plex Mono",monospace; font-size: 8px; }

/* Library */
#view-modules,
#view-getkey,
#view-support { min-width: 0; padding-top: 62px !important; padding-bottom: 82px; }
#catalogWrap { min-width: 0; }
#catalogWrap > div:first-child { margin-bottom: 30px !important; }
#catalogWrap h1,
#view-getkey h1 { color: var(--t1); font-size: clamp(36px,4vw,52px) !important; letter-spacing: -.05em !important; }
#moduleGrid { grid-template-columns: repeat(3,minmax(0,1fr)) !important; gap: 16px !important; }

.module-card {
  min-width: 0;
  min-height: 340px;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid var(--b1);
  border-radius: 16px;
  background: #0a1a27;
  box-shadow: none;
}
.module-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(135deg,transparent 0 60%,rgba(0,217,255,.08) 60% 60.4%,transparent 60.4%),
    repeating-linear-gradient(90deg,transparent 0 42px,rgba(97,195,238,.035) 43px);
}
.module-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  z-index: 3;
  width: 54px;
  height: 1px;
  background: var(--cyan);
  box-shadow: 0 0 12px var(--cyan);
}
.module-card:hover { border-color: rgba(0,217,255,.52); transform: translateY(-5px); box-shadow: 0 28px 65px -43px rgba(0,165,255,.6); }
.module-card.gb0 { background-color: #082131; }
.module-card.gb1 { background-color: #0b1d36; }
.module-card.gb2 { background-color: #102033; }
.module-card.gb3 { background-color: #081f2a; }
.module-card.gb4 { background-color: #101b35; }
.module-card.gb5 { background-color: #0b2430; }
.module-card.gb6 { background-color: #141d31; }
.module-img { filter: saturate(.86) contrast(1.05); transition: transform 520ms cubic-bezier(.2,.8,.2,1), filter 260ms ease; }
.module-card:hover .module-img { transform: scale(1.045); filter: saturate(1.05) contrast(1.04); }
.module-shade { background: linear-gradient(to top, rgba(2,8,13,.99), rgba(2,9,15,.72) 48%, rgba(2,9,15,.05)); }
.module-body { padding: 22px; }
.mod-name { color: var(--t1); font-size: 24px; letter-spacing: -.04em; }
.mod-meta { color: #637d91; font-size: 8px; letter-spacing: .04em; }
.mod-desc { color: var(--t2); font-size: 11px; line-height: 1.65; }

.game-hero { min-height: 400px; border: 1px solid var(--b1); border-radius: 18px; }
.gshade { background: linear-gradient(90deg,rgba(2,9,15,.98),rgba(2,9,15,.62) 62%,rgba(2,9,15,.12)); }
.game-content { max-width: 680px; padding: clamp(28px,6vw,64px); }
.subtab { margin-right: 24px; padding: 12px 2px; color: var(--t3); font-size: 11px; }
.subtab-on { border-color: var(--cyan) !important; color: var(--t1) !important; }
.feat-item { border: 1px solid var(--b2); border-radius: 8px; background: rgba(74,170,218,.025); color: var(--t2); }
.codebox { border-color: var(--b1); border-radius: 9px; background: rgba(1,6,10,.8); color: #a9c8d9; }

/* Pricing */
#view-pricing { padding-top: 86px !important; padding-bottom: 88px !important; }
#view-pricing > div:first-child { max-width: 750px !important; margin-bottom: 58px !important; }
#view-pricing > div:first-child > div:first-child { color: var(--cyan) !important; }
#view-pricing > div:first-child > div:first-child span { background: var(--cyan) !important; box-shadow: 0 0 9px var(--cyan) !important; }
#view-pricing > div:first-child h1 { color: var(--t1); font-size: clamp(52px,6.5vw,82px) !important; letter-spacing: -.06em !important; }
.price-grid { grid-template-columns: repeat(3,minmax(0,1fr)); gap: 14px; }
.price-card {
  min-width: 0;
  min-height: 548px;
  padding: 29px;
  border: 1px solid var(--b1);
  border-radius: 16px;
  background: linear-gradient(160deg,rgba(10,27,41,.9),rgba(4,13,21,.95));
  box-shadow: none;
}
.price-card:hover { border-color: rgba(0,217,255,.34); transform: translateY(-5px); }
.price-card.feat {
  border-color: rgba(83,151,255,.58);
  background:
    radial-gradient(circle at 90% 0,rgba(0,217,255,.14),transparent 14rem),
    linear-gradient(160deg,rgba(15,35,66,.96),rgba(4,13,23,.98));
  box-shadow: 0 35px 80px -58px rgba(42,118,255,.75);
}
.pc-badge { top: 18px; right: 18px; padding: 5px 8px; border-radius: 999px; background: linear-gradient(135deg,var(--cyan),var(--cyan-2)); color: #001018; font-size: 7px; }
.pc-name { color: var(--t1); font-family: "Space Grotesk",sans-serif; font-size: 21px; }
.pc-sub { min-height: 42px; color: var(--t3); font-size: 10px; line-height: 1.6; }
.pc-price { margin-top: 28px; }
.pc-amt { color: var(--t1); font-size: 45px; letter-spacing: -.06em; }
.pc-per { color: var(--t3); font-size: 9px; }
.pc-stock { color: var(--ok); font-family: "IBM Plex Mono",monospace; font-size: 8px; }
.pc-div { border-color: var(--b2); }
.pc-feats { gap: 14px; }
.pc-feats li { color: var(--t2); font-size: 10px; }
.pc-check { color: var(--cyan); }
.pc-check-v { color: #86a1ff; }
.btn-outline-full,
.btn-violet-full { min-height: 47px; border-radius: 8px; font-family: "Manrope",sans-serif; font-size: 11px; font-weight: 750; }
.btn-outline-full { border-color: var(--b1); color: var(--t1); }
.btn-outline-full:hover { border-color: var(--cyan); background: var(--cyan-d); color: #dffaff; }
.btn-violet-full { border-color: #5fa5ff; background: linear-gradient(135deg,#23dfff,#4c8fff); color: #001018; }
.btn-violet-full:hover { filter: brightness(1.1); }
.pc-note { color: var(--t3); font-size: 8px; }

/* Access */
#view-getkey > div { max-width: 860px !important; }
#getkeyContent,
.auth-lock,
.saved-bar {
  min-width: 0;
  border: 1px solid var(--b1);
  border-radius: 16px;
  background: linear-gradient(155deg,rgba(10,27,41,.86),rgba(4,13,21,.93));
}
#getkeyContent { padding: 28px; }
.auth-lock { padding: 28px; }
.auth-lock h3 { color: var(--t1); font-size: 19px; }
.auth-lock p { max-width: 580px; color: var(--t2); }
.gk-steps { border-top: 1px solid var(--b2); border-bottom: 1px solid var(--b2); }
.gk-steps li { padding: 13px 0; color: var(--t2); font-size: 11px; }
.gk-steps li + li { border-top: 1px solid var(--b2); }
.step-n { color: var(--cyan); font-size: 8px; }
.saved-bar { margin-top: 12px; padding: 16px 19px; }

/* Support */
#view-support { overflow: visible; }
#view-support,
#view-support * { min-width: 0; }
.section-heading { max-width: 760px; margin-bottom: 45px; }
.section-heading h1 {
  margin-top: 18px;
  color: var(--t1);
  font-size: clamp(54px,7vw,88px);
  font-weight: 700;
  line-height: .9;
  letter-spacing: -.065em;
}
.section-heading p { max-width: 620px; margin-top: 20px; color: var(--t2); font-size: 13px; line-height: 1.75; }
#view-support > .lg-grid-2 { grid-template-columns: minmax(0,.88fr) minmax(0,1.12fr) !important; gap: 18px !important; align-items: stretch; }
#view-support > .lg-grid-2 > div { min-width: 0; }
.sup-discord {
  position: relative;
  min-height: 100%;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border: 1px solid rgba(0,217,255,.44);
  border-radius: 16px;
  background:
    radial-gradient(circle at 86% 18%,rgba(0,217,255,.16),transparent 15rem),
    linear-gradient(145deg,rgba(8,35,51,.95),rgba(3,13,21,.98));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.03);
}
.sup-discord::before {
  content: "";
  position: absolute;
  top: -130px;
  right: 0;
  width: 250px;
  height: 250px;
  opacity: .065;
  background: url("assets/bp-logo.png") center/contain no-repeat;
  transform: rotate(-10deg);
}
.sup-discord::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 90px;
  height: 1px;
  background: var(--cyan);
  box-shadow: 0 0 14px var(--cyan);
}
.sup-discord:hover { transform: translateY(-4px); background-color: rgba(0,217,255,.05); }
.support-card-content {
  position: relative;
  z-index: 2;
  width: 100%;
  display: grid;
  grid-template-columns: auto minmax(0,1fr) auto;
  align-items: center;
  gap: 17px;
  padding: 28px;
}
.support-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(0,217,255,.25);
  border-radius: 12px;
  background: var(--cyan-d);
}
.support-mark img { width: 30px; height: 30px; filter: drop-shadow(0 0 10px rgba(0,217,255,.52)); }
.support-copy { min-width: 0; }
.support-kicker { display: block; margin-bottom: 7px; color: var(--cyan); font-size: 7px; letter-spacing: .13em; text-transform: uppercase; }
.support-copy h2,
.support-copy p { max-width: 100%; overflow-wrap: anywhere; }
.support-copy h2 { color: var(--t1); }
.support-copy p { color: var(--t2) !important; font-size: 11px !important; line-height: 1.65; }
.support-arrow { align-self: start; color: var(--cyan); font-size: 20px; }
#view-support .panel { height: 100%; }
.faq-item { overflow: hidden; border: 1px solid var(--b2); border-radius: 10px; }
.faq-item + .faq-item { margin-top: 8px; }
.faq-item summary {
  position: relative;
  min-width: 0;
  padding: 15px 44px 15px 16px;
  color: var(--t1);
  font-size: 11px;
  line-height: 1.5;
  overflow-wrap: anywhere;
}
.faq-item summary::after { right: 16px; color: var(--cyan); }
.faq-body { padding: 0 16px 16px; color: var(--t2); font-size: 10px; line-height: 1.72; overflow-wrap: anywhere; }

/* Footer */
footer { margin-top: 78px; border-color: var(--b2); background: rgba(2,8,13,.76); }
.footer-inner { min-height: 96px; }
.footer-copy { color: var(--t3); font-size: 9px; }
.footer-links a { color: var(--t3); font-size: 10px; }
.footer-links a:hover { color: var(--cyan); }
.toast {
  right: 22px;
  bottom: 22px;
  left: auto;
  padding: 12px 16px;
  border: 1px solid rgba(0,217,255,.44);
  border-radius: 8px;
  background: #071724;
  color: var(--t1);
  font-size: 11px;
  box-shadow: 0 20px 60px -30px #000;
}

@media (max-width: 1100px) {
  #moduleGrid { grid-template-columns: repeat(2,minmax(0,1fr)) !important; }
  .dash-hero .lg-grid-2 { grid-template-columns: minmax(0,1fr) minmax(340px,.72fr) !important; gap: 45px !important; }
  .hero-h1 { font-size: clamp(65px,8.5vw,96px); }
  .core-stage { height: 250px; }
}

@media (max-width: 899px) {
  .wrap,
  .header-inner,
  .footer-inner { width: min(100% - 32px,760px); }

  .site-header {
    position: sticky;
    background: rgba(2,7,12,.96);
    backdrop-filter: none;
  }
  .site-header::after { width: 55%; }
  .header-inner { height: 68px; }
  .brand-logo { width: 32px; height: 32px; }

  #tabs {
    position: fixed;
    top: auto;
    right: 12px;
    bottom: 12px;
    left: 12px;
    z-index: 900;
    width: auto;
    max-width: calc(100vw - 24px);
    display: grid;
    grid-template-columns: repeat(5,minmax(0,1fr));
    gap: 3px;
    margin: 0;
    padding: 5px;
    overflow: hidden;
    border: 1px solid rgba(60,190,248,.2);
    border-radius: 13px;
    background: rgba(4,14,23,.97);
    box-shadow: 0 22px 60px -22px #000, inset 0 1px 0 rgba(255,255,255,.025);
    backdrop-filter: blur(18px);
  }
  .nav-indicator { inset: 5px auto 5px 5px; }
  .tab { min-width: 0; min-height: 40px; padding: 8px 3px; overflow: hidden; font-size: 9px; text-overflow: ellipsis; }
  #adminTab { display: none !important; }

  .dash-hero { min-height: auto; padding: 78px 0 55px; }
  .dash-hero::before { right: -190px; width: 500px; height: 500px; }
  .dash-hero .lg-grid-2 { display: block !important; }
  .dash-hero .lg-show { display: none !important; }
  .hero-h1 { font-size: clamp(62px,14vw,92px); }
  .hero-p { max-width: 650px; }
  .metric-strip { grid-template-columns: 1fr; }
  .metric { min-height: 127px; }
  #view-dashboard > .lg-grid-2 { display: grid !important; grid-template-columns: 1fr !important; gap: 14px !important; }

  .price-grid { grid-template-columns: 1fr; max-width: 540px !important; }
  .price-card { min-height: auto; }
  .pc-sub { min-height: 0; }
  .gw-grid { grid-template-columns: 1fr; gap: 46px; }
  #gateway { background: radial-gradient(circle at 14% 10%,rgba(0,217,255,.11),transparent 27rem); }

  #view-support > .lg-grid-2 { grid-template-columns: minmax(0,1fr) !important; gap: 14px !important; }
  .sup-discord { min-height: 220px; }
  footer { margin-bottom: 82px; }
  .toast { right: 16px; bottom: 88px; left: 16px; text-align: center; }
}

@media (max-width: 640px) {
  .wrap,
  .header-inner,
  .footer-inner { width: min(100% - 28px,560px); }

  .brand-name { font-size: 13px; }
  .brand-sub { max-width: 112px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  #authBtn { padding-inline: 11px !important; font-size: 10px !important; }

  .dash-hero { padding-top: 65px; }
  .hero-ey { margin-bottom: 20px; font-size: 8px; }
  .hero-h1 { font-size: clamp(52px,17vw,78px); line-height: .84; }
  .hero-p { font-size: 13px; }
  .hero-acts { flex-direction: column; align-items: stretch; }
  .hero-acts .btn { width: 100%; }
  .hero-stats { width: 100%; }
  .hero-stats { flex-direction: row; flex-wrap: nowrap; max-width: none; align-items: flex-start; }
  .hstat { min-width: 0; flex: 1; padding-right: 12px; }
  .hstat + .hstat { margin-left: 12px; padding-left: 12px; }
  .hstat .l { font-size: 6px; }

  .metric { padding: 22px; }
  .panel { padding: 20px; }
  #quickModules { grid-template-columns: 1fr !important; }
  #moduleGrid { grid-template-columns: 1fr !important; }
  .module-card { min-height: 315px; }

  #catalogWrap > div:first-child > div:last-child { width: 100%; min-width: 0; }
  #moduleSearch { width: 100%; max-width: none !important; }
  #moduleFilters { width: 100%; flex-wrap: nowrap !important; overflow-x: auto; padding-bottom: 5px; }
  #moduleFilters .chip { flex: 0 0 auto; }

  #view-pricing { padding-top: 62px !important; }
  #view-pricing > div:first-child h1 { font-size: clamp(48px,14vw,62px) !important; }
  .price-card { padding: 24px; }

  #getkeyContent { padding: 20px; }
  #getkeyContent > div:nth-of-type(2) { grid-template-columns: 1fr !important; }
  #redeemForm { flex-direction: column; }
  #redeemForm .field { min-width: 0 !important; }

  .section-heading { margin-bottom: 32px; }
  .section-heading h1 { font-size: clamp(50px,15vw,66px); }
  .support-card-content { grid-template-columns: auto minmax(0,1fr); padding: 22px; }
  .support-arrow { display: none; }
  .support-mark { width: 44px; height: 44px; }

  .auth-card { padding: 27px 22px; }
  .gw-title { font-size: clamp(48px,15vw,69px); }
  #gateway > div { padding: 44px 18px !important; }
  .trust-item { padding-inline: 5px; font-size: 6px; }
  .trust-item strong { font-size: 15px; }

  .footer-inner { align-items: flex-start; gap: 12px; padding: 23px 0; }
  .footer-copy { max-width: 270px; }
}

@media (max-width: 420px) {
  .support-card-content { grid-template-columns: 1fr; }
  .support-mark { margin-bottom: 2px; }
  .support-copy p { font-size: 10px !important; }
  .tab { font-size: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal-ready [data-reveal] { opacity: 1; transform: none; }
}

/* Editorial homepage — product-led, restrained, and intentionally low on chrome */
body::after { display: none; }

.site-header {
  background: rgba(2, 7, 12, .93);
  backdrop-filter: blur(14px);
}

.site-header::after { width: 180px; opacity: .55; }

#tabs {
  gap: 2px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.nav-indicator {
  inset: 0 auto 0 0;
  border-color: rgba(0, 217, 255, .12);
  background: rgba(0, 217, 255, .055);
  box-shadow: none;
}

.tab { padding-inline: 15px; }

.btn-text {
  min-height: 42px;
  padding: 8px 2px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--t1);
  box-shadow: inset 0 -1px 0 rgba(143, 190, 219, .38);
}

.btn-text:hover {
  color: var(--cyan);
  box-shadow: inset 0 -1px 0 var(--cyan);
}

.btn-light {
  border: 1px solid rgba(255, 255, 255, .62);
  background: #fff;
  color: #06101a;
}

.btn-light:hover {
  border-color: #fff;
  background: #e9f8ff;
  box-shadow: 0 15px 35px -20px rgba(255,255,255,.65);
}

.dash-hero {
  min-height: 720px;
  padding: 96px 0 74px;
}

.dash-hero::before {
  top: 30px;
  right: -130px;
  width: 600px;
  height: 600px;
  opacity: .018;
}

.dash-hero .lg-grid-2 {
  grid-template-columns: minmax(0, 1.34fr) minmax(340px, .66fr) !important;
  gap: clamp(70px, 9vw, 145px) !important;
}

.hero-ey {
  margin-bottom: 28px;
  color: #75b5d4;
  font-family: "Manrope", sans-serif !important;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: .01em;
  text-transform: none;
}

.hero-ey::before { width: 32px; background: #4994b9; }

.hero-h1 {
  max-width: 840px;
  margin-bottom: 31px;
  font-size: clamp(68px, 7.5vw, 108px);
  line-height: .91;
  letter-spacing: -.065em;
}

.hero-h1 .gt {
  display: block;
  background: none;
  color: #43baf4;
  -webkit-text-fill-color: currentColor;
}

.hero-p {
  max-width: 650px;
  margin-bottom: 33px;
  color: #9aafbd;
  font-size: 15px;
  line-height: 1.78;
}

.hero-acts { align-items: center; gap: 23px; margin-bottom: 43px; }

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 0;
  color: #657f90;
  font-size: 10px;
}

.hero-proof span {
  padding: 0 20px;
  border-left: 1px solid rgba(130, 181, 211, .18);
}

.hero-proof span:first-child { padding-left: 0; border-left: 0; }
.hero-proof strong { color: #c9d8e1; font-weight: 650; }

.hero-signature {
  position: relative;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid rgba(116, 176, 210, .14);
  padding-left: 48px;
}

.signature-rule {
  position: absolute;
  top: 8px;
  right: 0;
  left: 48px;
  display: flex;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid rgba(116, 176, 210, .18);
  color: #587386;
  font-size: 8px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.signature-logo {
  position: relative;
  width: min(100%, 350px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  margin-left: auto;
}

.signature-logo::before {
  content: "";
  position: absolute;
  inset: 17%;
  border-radius: 50%;
  background: rgba(0, 174, 255, .09);
  filter: blur(34px);
}

.signature-logo img {
  position: relative;
  width: 78%;
  height: 78%;
  object-fit: contain;
  filter: drop-shadow(0 22px 30px rgba(0, 105, 187, .22));
}

.signature-count {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 12px;
  margin-top: -22px;
}

.signature-count strong {
  color: var(--t1);
  font-family: "Space Grotesk", sans-serif;
  font-size: 52px;
  line-height: .9;
  letter-spacing: -.07em;
}

.signature-count span {
  padding-bottom: 3px;
  color: #6b8596;
  font-size: 9px;
  line-height: 1.4;
  text-transform: uppercase;
}

.signature-note {
  align-self: flex-end;
  max-width: 240px;
  margin-top: 28px;
  color: #718a9b;
  font-size: 11px;
  line-height: 1.65;
  text-align: right;
}

.home-status.metric-strip {
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 0;
  overflow: visible;
  border: 0;
  border-top: 1px solid rgba(127, 177, 207, .17);
  border-bottom: 1px solid rgba(127, 177, 207, .17);
  border-radius: 0;
  background: transparent;
}

.home-status .metric {
  min-height: 132px;
  padding: 27px 32px;
  background: transparent !important;
}

.home-status .metric:first-child { padding-left: 0; }
.home-status .metric:last-child { padding-right: 0; }
.home-status .metric + .metric { border-left: 1px solid rgba(127, 177, 207, .13); }
.home-status .mlabel { color: #698597; font-family: "Manrope", sans-serif !important; font-size: 10px; letter-spacing: 0; text-transform: none; }
.home-status .mval { margin-top: 11px; font-size: 24px; }
.home-status .msub { margin-top: 5px; font-size: 9px; }

.section-label {
  display: block;
  margin-bottom: 17px;
  color: #668497;
  font-size: 10px;
  font-weight: 700;
}

.home-story {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);
  gap: clamp(70px, 10vw, 150px);
  padding: 150px 0;
  border-bottom: 1px solid rgba(127, 177, 207, .15);
}

.story-intro { align-self: start; position: sticky; top: 112px; }
.story-intro h2,
.home-section-head h2,
.workflow-column h2 {
  color: var(--t1);
  font-size: clamp(42px, 4.7vw, 66px);
  font-weight: 600;
  line-height: .98;
  letter-spacing: -.055em;
}

.story-intro p {
  max-width: 510px;
  margin-top: 27px;
  color: #8ea5b4;
  font-size: 13px;
  line-height: 1.8;
}

.story-points { border-top: 1px solid rgba(127, 177, 207, .18); }
.story-points article {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 23px;
  padding: 33px 0;
  border-bottom: 1px solid rgba(127, 177, 207, .18);
}
.story-points article > span { color: #4a758d; font-size: 10px; }
.story-points h3 { margin-bottom: 9px; color: #e6f1f7; font-size: 17px; font-weight: 600; letter-spacing: -.025em; }
.story-points p { max-width: 520px; color: #7f98a8; font-size: 11px; line-height: 1.72; }

.home-library { padding: 145px 0; border-bottom: 1px solid rgba(127, 177, 207, .15); }
.home-section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, .55fr);
  gap: clamp(50px, 9vw, 130px);
  align-items: end;
  margin-bottom: 65px;
}
.home-section-head > div:last-child p { margin-bottom: 16px; color: #829cab; font-size: 11px; line-height: 1.75; }
.home-section-head.compact { display: block; margin-bottom: 42px; }
.home-section-head.compact h2 { font-size: clamp(38px, 4vw, 54px); }

.module-list-preview { border-top: 1px solid rgba(127, 177, 207, .22); }
.module-preview-row {
  width: 100%;
  min-width: 0;
  min-height: 75px;
  display: grid;
  grid-template-columns: 46px minmax(0, 1.2fr) minmax(85px, .35fr) minmax(120px, .45fr) 24px;
  align-items: center;
  gap: 18px;
  padding: 13px 3px;
  border-bottom: 1px solid rgba(127, 177, 207, .18);
  color: var(--t1);
  text-align: left;
  transition: color 160ms ease, padding 160ms ease, background 160ms ease;
}
.module-preview-row:hover { padding-right: 13px; padding-left: 13px; background: rgba(43, 145, 200, .055); }
.module-preview-index { color: #416b84; font-size: 9px; }
.module-preview-name { min-width: 0; }
.module-preview-name strong { display: block; overflow: hidden; font-family: "Space Grotesk", sans-serif; font-size: 16px; font-weight: 600; text-overflow: ellipsis; white-space: nowrap; }
.module-preview-name small { display: block; margin-top: 4px; color: #607b8e; font-size: 9px; }
.module-preview-version { color: #718b9b; font-family: "IBM Plex Mono", monospace; font-size: 8px; }
.module-preview-status { display: flex; align-items: center; gap: 7px; color: #8ca2af; font-size: 9px; }
.module-preview-status i { width: 5px; height: 5px; border-radius: 50%; background: var(--ok); box-shadow: 0 0 7px rgba(66,233,164,.5); }
.module-preview-arrow { justify-self: end; color: #4f7186; font-size: 14px; }
.module-preview-row:hover .module-preview-arrow { color: var(--cyan); }

.home-updates {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(310px, .72fr);
  gap: clamp(70px, 10vw, 145px);
  padding: 145px 0;
  border-bottom: 1px solid rgba(127, 177, 207, .15);
}

.release-list { border-top: 1px solid rgba(127, 177, 207, .2); }
.release-list .row-item { padding: 21px 0; border-bottom: 1px solid rgba(127, 177, 207, .16); }
.release-list .row-item > div { margin-bottom: 7px !important; }
.release-list .row-item strong { font-family: "Space Grotesk", sans-serif; font-size: 14px !important; font-weight: 600; }
.release-list .row-item p { max-width: 680px; color: #7893a3; font-size: 10px !important; line-height: 1.65; }

.workflow-column {
  padding-left: clamp(35px, 5vw, 70px);
  border-left: 1px solid rgba(127, 177, 207, .17);
}
.workflow-column h2 { max-width: 430px; font-size: clamp(36px, 3.5vw, 50px); }
.workflow-list { margin: 42px 0 36px; }
.workflow-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 17px;
  padding: 18px 0;
  border-top: 1px solid rgba(127, 177, 207, .16);
}
.workflow-list li:last-child { border-bottom: 1px solid rgba(127, 177, 207, .16); }
.workflow-list li > span { color: #4d7891; font-size: 10px; }
.workflow-list strong { display: block; margin-bottom: 5px; color: #d8e8f0; font-size: 12px; }
.workflow-list p { color: #708b9c; font-size: 9px; line-height: 1.55; }

.home-cta {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, .62fr);
  gap: clamp(50px, 8vw, 110px);
  align-items: end;
  margin: 145px 0 40px;
  padding: clamp(45px, 6vw, 76px);
  background: #168fce;
  color: #fff;
}
.home-cta > div:first-child > span { display: block; margin-bottom: 18px; color: rgba(255,255,255,.72); font-size: 10px; font-weight: 700; }
.home-cta h2 { max-width: 700px; font-size: clamp(42px, 5vw, 68px); font-weight: 600; line-height: .96; letter-spacing: -.055em; }
.home-cta p { margin-bottom: 23px; color: rgba(255,255,255,.78); font-size: 11px; line-height: 1.72; }

@media (max-width: 899px) {
  .site-header { backdrop-filter: none; }
  #tabs {
    position: fixed;
    top: auto;
    right: 12px;
    bottom: 12px;
    left: 12px;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 3px;
    width: auto;
    max-width: calc(100vw - 24px);
    margin: 0;
    padding: 5px;
    overflow: hidden;
    border: 1px solid rgba(60, 190, 248, .2);
    border-radius: 13px;
    background: rgba(4, 14, 23, .97);
    box-shadow: 0 22px 60px -22px #000;
    backdrop-filter: blur(18px);
  }
  .nav-indicator { inset: 5px auto 5px 5px; }
  .tab { min-width: 0; padding-inline: 3px; }

  .dash-hero { min-height: auto; padding: 85px 0 65px; }
  .hero-h1 { max-width: 800px; font-size: clamp(62px, 13.5vw, 92px); }
  .hero-proof { gap: 12px 0; }
  .home-status.metric-strip { grid-template-columns: 1fr; }
  .home-status .metric { min-height: 112px; padding: 24px 0; }
  .home-status .metric + .metric { border-left: 0; border-top: 1px solid rgba(127,177,207,.13); }

  .home-story,
  .home-updates { grid-template-columns: 1fr; gap: 66px; padding: 105px 0; }
  .story-intro { position: static; }
  .home-library { padding: 105px 0; }
  .workflow-column { padding-left: 0; border-left: 0; }
  .home-cta { grid-template-columns: 1fr; gap: 35px; margin-top: 105px; }
}

@media (max-width: 640px) {
  .dash-hero { padding-top: 66px; }
  .hero-ey { font-size: 9px; }
  .hero-h1 { font-size: clamp(49px, 14.7vw, 67px); line-height: .92; }
  .hero-p { font-size: 13px; }
  .hero-acts { align-items: stretch; gap: 15px; }
  .hero-acts .btn { width: 100%; }
  .hero-acts .btn-text { width: fit-content; align-self: flex-start; }
  .hero-proof { display: grid; grid-template-columns: 1fr; gap: 9px; }
  .hero-proof span { padding: 0; border-left: 0; }

  .home-story,
  .home-updates { gap: 50px; padding: 82px 0; }
  .home-library { padding: 82px 0; }
  .story-intro h2,
  .home-section-head h2,
  .workflow-column h2 { font-size: clamp(38px, 12vw, 51px); }
  .story-intro p { font-size: 12px; }
  .story-points article { grid-template-columns: 32px 1fr; gap: 14px; padding: 26px 0; }

  .home-section-head { grid-template-columns: 1fr; gap: 26px; margin-bottom: 45px; }
  .module-preview-row { grid-template-columns: 30px minmax(0, 1fr) 22px; gap: 10px; min-height: 70px; }
  .module-preview-version,
  .module-preview-status { display: none; }
  .module-preview-name strong { font-size: 14px; }

  .release-list .row-item { padding: 18px 0; }
  .workflow-list { margin-top: 32px; }
  .home-cta { margin: 82px 0 25px; padding: 34px 26px; }
  .home-cta h2 { font-size: clamp(38px, 12vw, 50px); }
}

/* Precision interaction system */
body::before {
  background:
    radial-gradient(560px circle at var(--pointer-x, 80vw) var(--pointer-y, -8vh), rgba(0, 182, 255, .105), transparent 62%),
    radial-gradient(circle at -5% 70%, rgba(74, 98, 255, .09), transparent 30rem),
    linear-gradient(180deg, #02070c 0%, #030910 100%);
}

@media (hover: hover) and (pointer: fine) {
  body.bp-cursor-ready .bp-cursor,
  body.bp-cursor-ready .bp-cursor-dot {
    display: block !important;
  }

  .bp-cursor {
    --cursor-scale: 1;
    width: 22px;
    height: 22px;
    display: grid;
    place-items: center;
    overflow: visible;
    border: 1px solid rgba(55, 210, 255, .78);
    border-radius: 50%;
    background: transparent;
    box-shadow: 0 0 14px rgba(0, 174, 255, .1);
    opacity: 0;
    pointer-events: none;
    transition: width 180ms cubic-bezier(.2,.8,.2,1), height 180ms cubic-bezier(.2,.8,.2,1), border-radius 180ms ease, border-color 180ms ease, background 180ms ease, opacity 120ms ease;
    will-change: transform, width, height;
  }

  .bp-cursor::before,
  .bp-cursor::after {
    display: none;
  }

  .bp-cursor::before {
    content: "";
    inset: 5px;
    border: 1px solid rgba(0, 217, 255, .18);
    border-radius: inherit;
    background: transparent;
    transition: inset 180ms ease, opacity 180ms ease;
  }

  .bp-cursor::after {
    content: attr(data-label);
    color: #dbf8ff;
    font-family: "IBM Plex Mono", monospace;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .14em;
    opacity: 0;
    transform: translateY(2px);
    transition: opacity 120ms ease, transform 180ms ease;
  }

  .bp-cursor-dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: #d9faff;
    box-shadow: 0 0 8px var(--cyan), 0 0 15px rgba(0,217,255,.55);
    opacity: 0;
    pointer-events: none;
    will-change: transform;
  }

  .bp-cursor-on .bp-cursor,
  .bp-cursor-on .bp-cursor-dot { opacity: 1; }

  .bp-cursor-hover .bp-cursor {
    width: 34px;
    height: 34px;
    border-color: rgba(108, 188, 255, .88);
    background: rgba(14, 72, 105, .04);
  }

  .bp-cursor-text .bp-cursor {
    width: 2px;
    height: 22px;
    border: 0;
    border-radius: 1px;
    background: var(--cyan);
    box-shadow: 0 0 9px rgba(0,217,255,.45);
  }
  .bp-cursor-text .bp-cursor::before,
  .bp-cursor-text .bp-cursor::after,
  .bp-cursor-text .bp-cursor-dot { opacity: 0; }
  .bp-cursor-press .bp-cursor { --cursor-scale: .78; }
  .bp-keyboard-nav .bp-cursor,
  .bp-keyboard-nav .bp-cursor-dot { opacity: 0 !important; }

  .module-card[data-tilt] {
    --tilt-x: 0deg;
    --tilt-y: 0deg;
    --tilt-lift: 0px;
    transform: perspective(950px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) translateY(var(--tilt-lift));
    transform-style: preserve-3d;
    transition: transform 150ms ease-out, border-color 220ms ease, box-shadow 220ms ease;
    will-change: transform;
  }
  .module-card[data-tilt]:hover { --tilt-lift: -5px; transform: perspective(950px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) translateY(var(--tilt-lift)); }
  .module-card[data-tilt] .module-body { transform: translateZ(18px); }

  .module-preview-row.is-pointer-active .module-preview-arrow { transform: translate(3px, -3px); }
  .module-preview-arrow { transition: color 160ms ease, transform 180ms cubic-bezier(.2,.8,.2,1); }
  .story-points article { transition: padding 200ms ease, background 200ms ease; }
  .story-points article:hover { padding-right: 14px; padding-left: 14px; background: linear-gradient(90deg, rgba(23,126,180,.055), transparent 76%); }

  .home-cta { position: relative; overflow: hidden; }
  .home-cta::after {
    content: "";
    position: absolute;
    inset: -45% auto -45% -35%;
    width: 28%;
    pointer-events: none;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.15), transparent);
    transform: skewX(-18deg);
    transition: left 780ms cubic-bezier(.2,.8,.2,1);
  }
  .home-cta:hover::after { left: 115%; }
}

.view.active { animation: bp-view-enter 360ms cubic-bezier(.2,.8,.2,1) both; }
@keyframes bp-view-enter {
  from { opacity: .25; transform: translateY(6px); }
  to { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce), (hover: none), (pointer: coarse) {
  .bp-cursor,
  .bp-cursor-dot { display: none !important; }
  .view.active { animation: none; }
  body::before {
    background:
      radial-gradient(circle at 80% -8%, rgba(0, 182, 255, .16), transparent 31rem),
      radial-gradient(circle at -5% 70%, rgba(74, 98, 255, .09), transparent 30rem),
      linear-gradient(180deg, #02070c 0%, #030910 100%);
  }
}

/* Product-wide editorial system */
.header-live {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-left: auto;
  color: #648092;
  font-family: "IBM Plex Mono", monospace;
  font-size: 8px;
  letter-spacing: .04em;
  white-space: nowrap;
}
.header-live i,
.catalog-readout i,
.footer-status i {
  width: 5px;
  height: 5px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--ok);
  box-shadow: 0 0 9px rgba(66, 233, 164, .58);
}
.header-live strong { color: #b6c9d4; font-weight: 600; }

.product-view {
  min-width: 0;
  min-height: calc(100vh - 76px);
  padding: 0 0 96px !important;
}
#view-modules.product-view,
#view-pricing.product-view,
#view-getkey.product-view,
#view-support.product-view { padding: 0 0 96px !important; }

.product-masthead {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, .58fr);
  gap: clamp(55px, 9vw, 130px);
  align-items: end;
  padding: 92px 0 66px;
  border-bottom: 1px solid rgba(127, 177, 207, .18);
}
.product-kicker {
  display: block;
  margin-bottom: 22px;
  color: #6f91a5;
  font-family: "IBM Plex Mono", monospace;
  font-size: 9px;
  font-weight: 650;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.product-masthead h1 {
  color: var(--t1);
  font-family: "Space Grotesk", sans-serif !important;
  font-size: clamp(55px, 6.4vw, 86px) !important;
  font-weight: 600 !important;
  line-height: .91;
  letter-spacing: -.065em !important;
}
#catalogWrap .product-masthead h1,
#view-getkey .product-masthead h1 { font-size: clamp(55px, 6.4vw, 86px) !important; }
.product-masthead-copy {
  align-self: end;
  padding-bottom: 4px;
}
.product-masthead-copy > p {
  max-width: 450px;
  color: #8ba2b1;
  font-size: 12px;
  line-height: 1.78;
}

.catalog-readout,
.access-promise,
.support-response {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  margin-top: 29px;
  padding-top: 20px;
  border-top: 1px solid rgba(127,177,207,.16);
}
.catalog-readout i { align-self: center; }
.catalog-readout strong,
.access-promise strong,
.support-response strong {
  color: #dbe9f0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 25px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -.045em;
}
.catalog-readout span,
.access-promise span,
.support-response span {
  color: #607c8e;
  font-size: 8px;
  line-height: 1.45;
  text-transform: uppercase;
}

.catalog-toolbar {
  position: sticky;
  top: 76px;
  z-index: 90;
  display: grid;
  grid-template-columns: minmax(230px, .4fr) minmax(0, 1fr);
  gap: 24px;
  align-items: end;
  margin-bottom: 34px;
  padding: 22px 0 17px;
  border-bottom: 1px solid rgba(127,177,207,.15);
  background: rgba(2,7,12,.92);
  backdrop-filter: blur(20px) saturate(135%);
}
.catalog-search { display: grid; grid-template-columns: 50px minmax(0,1fr); align-items: center; gap: 12px; }
.catalog-search > span { color: #5d798b; font-size: 9px; }
.catalog-search .field {
  width: 100%;
  max-width: none;
  min-height: 42px;
  border: 0;
  border-bottom: 1px solid rgba(127,177,207,.27);
  border-radius: 0;
  background: transparent;
  padding-inline: 0;
}
.catalog-search .field:focus { border-bottom-color: var(--cyan); box-shadow: none; }
.catalog-filters { display: flex; justify-content: flex-end; flex-wrap: wrap; gap: 6px; }
.catalog-filters .chip { border-radius: 99px; }
.catalog-grid#moduleGrid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)) !important; gap: 16px !important; }

.product-masthead-centered {
  margin-bottom: 55px;
}
.price-grid { max-width: none !important; }
.price-card { padding: 31px; }
.price-card { min-height: 470px; }
.purchase-assurances {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 34px;
  border-top: 1px solid rgba(127,177,207,.16);
  border-bottom: 1px solid rgba(127,177,207,.16);
}
.purchase-assurances span {
  padding: 19px 24px;
  color: #647f91;
  font-size: 9px;
  text-align: center;
}
.purchase-assurances span + span { border-left: 1px solid rgba(127,177,207,.14); }
.purchase-assurances strong { color: #c9d9e2; font-weight: 650; }
.payment-note { margin-top: 22px; color: var(--t3); font-size: 10px; text-align: center; }

#view-getkey > .access-layout { max-width: none !important; }
.access-layout { min-width: 0; }
.access-masthead { margin-bottom: 48px; }
.access-workspace {
  width: min(100%, 860px);
  margin-left: auto;
}
.access-workspace #getkeyContent,
.access-workspace .auth-lock {
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(0,217,255,.025), transparent 48%),
    rgba(5,15,24,.72);
}
.access-workspace #getkeyContent { padding: clamp(24px, 4vw, 38px); }
.access-promise strong { font-size: 30px; }

.support-masthead { margin-bottom: 48px; }
.support-response strong { font-size: 20px; }
#view-support > .lg-grid-2 { gap: 16px !important; }
#view-support .panel { border-radius: 14px; }

.release-heading {
  display: flex !important;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}
.release-heading .btn-text { flex: 0 0 auto; margin-bottom: 4px; color: #8099a8; font-size: 9px; }
.release-item-head { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: 7px; }
.release-item-head strong { min-width: 0; }
.release-item-meta { display: flex; gap: 12px; margin-top: 9px; color: #4e6a7c; font-size: 8px; }
.release-item-meta span::before { content: "·"; margin-right: 12px; }

.site-footer {
  margin-top: 100px;
  padding: 0;
  border-top: 1px solid rgba(127,177,207,.16);
  background: #030910;
}
.footer-main {
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(280px, 1.25fr) minmax(120px, .38fr) minmax(190px, .5fr);
  gap: clamp(50px, 9vw, 130px);
  align-items: start;
  padding-top: 65px;
  padding-bottom: 62px;
}
.footer-identity { max-width: 410px; }
.footer-brand { gap: 12px; }
.footer-brand img { width: 36px; height: 36px; filter: drop-shadow(0 0 11px rgba(0,217,255,.3)); }
.footer-brand span { color: #edf7fb; font-family: "Space Grotesk",sans-serif; font-size: 18px; font-weight: 650; letter-spacing: -.025em; }
.footer-identity > p { margin-top: 19px; color: #617b8c; font-size: 10px; line-height: 1.7; }
.footer-nav,
.footer-contact { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.footer-nav > span,
.footer-contact > span { margin-bottom: 6px; color: #4f6b7d; font-size: 8px; font-weight: 700; text-transform: uppercase; }
.footer-nav a,
.footer-contact a { color: #9bb0bc; font-size: 10px; transition: color 160ms ease, transform 160ms ease; }
.footer-nav a:hover,
.footer-contact a:hover { color: var(--cyan); transform: translateX(2px); }
.footer-status { display: flex; align-items: center; gap: 8px; margin-top: 11px; color: #6f8999; font-size: 8px; }
.footer-bottom {
  min-height: 56px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(127,177,207,.1);
  color: #405a6b;
  font-size: 8px;
}

/* Reduced-content catalog */
.home-status .metric { min-height: 102px; }
.home-status .msub { display: none; }
.module-card { min-height: 310px; }
.module-card .module-img { opacity: .52; }
.module-card:hover .module-img { opacity: .64; }
.module-card .module-shade { background: linear-gradient(180deg, rgba(2,8,13,.42) 0%, rgba(2,8,13,.08) 34%, rgba(2,8,13,.94) 78%, rgba(2,8,13,.99) 100%); }
.module-card .module-body {
  min-height: 310px;
  justify-content: space-between;
  padding: 20px;
}
.module-card-state {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.module-card-state > span:last-child {
  color: rgba(220,238,247,.7);
  font-family: "IBM Plex Mono", monospace;
  font-size: 8px;
  letter-spacing: .04em;
}
.module-card .mod-name { max-width: 92%; margin-bottom: 5px; font-size: 23px; line-height: 1.04; }
.module-card .mod-meta { margin: 0; color: #7790a0; font-size: 8px; text-transform: uppercase; }

@media (max-width: 1100px) {
  .header-live { display: none; }
  .catalog-grid#moduleGrid { grid-template-columns: repeat(2,minmax(0,1fr)) !important; }
}

@media (max-width: 899px) {
  .product-view { min-height: auto; padding-bottom: 75px !important; }
  #view-modules.product-view,
  #view-pricing.product-view,
  #view-getkey.product-view,
  #view-support.product-view { padding: 0 0 75px !important; }
  .product-masthead { grid-template-columns: 1fr; gap: 32px; padding: 72px 0 50px; }
  .product-masthead h1,
  #catalogWrap .product-masthead h1,
  #view-getkey .product-masthead h1 { font-size: clamp(50px, 11vw, 74px) !important; }
  .catalog-toolbar { position: static; grid-template-columns: 1fr; gap: 16px; padding-top: 20px; background: transparent; backdrop-filter: none; }
  .catalog-filters { justify-content: flex-start; }
  .product-masthead-centered { margin-bottom: 42px; }
  .purchase-assurances { grid-template-columns: 1fr; }
  .purchase-assurances span + span { border-left: 0; border-top: 1px solid rgba(127,177,207,.14); }
  .access-workspace { width: 100%; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-identity { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .product-masthead { padding: 58px 0 39px; }
  .product-kicker { margin-bottom: 16px; font-size: 8px; }
  .product-masthead h1,
  #catalogWrap .product-masthead h1,
  #view-getkey .product-masthead h1 { font-size: clamp(44px, 14vw, 61px) !important; }
  .catalog-search { grid-template-columns: 1fr; gap: 7px; }
  .catalog-grid#moduleGrid { grid-template-columns: 1fr !important; }
  .release-heading { align-items: flex-start; flex-direction: column; gap: 13px; }
  .release-heading .btn-text { margin: 0; }
  .release-item-head { align-items: flex-start; }
  .access-workspace #getkeyContent { padding: 22px; }
  .footer-main { grid-template-columns: 1fr; gap: 38px; padding-top: 48px; padding-bottom: 42px; }
  .footer-identity { grid-column: auto; }
  .footer-bottom { min-height: 70px; flex-direction: column; justify-content: center; gap: 7px; text-align: center; }
}
