/* ============ TOKENS ============ */
:root {
  --bg-0: #05050d;
  --bg-1: #080816;
  --bg-2: #0b0b18;
  --panel: rgba(18, 18, 38, 0.55);
  --panel-2: rgba(24, 22, 52, 0.5);
  --stroke: rgba(140, 120, 255, 0.18);
  --stroke-strong: rgba(150, 130, 255, 0.35);
  --text: #eef0ff;
  --muted: #a4a8cf;
  --muted-2: #7d82ab;
  --violet: #6f56ff;
  --violet-2: #8e76ff;
  --violet-3: #b9a4ff;
  --blue: #36c3ff;
  --green: #3ddc97;
  --grad: linear-gradient(100deg, #b9a4ff 0%, #6f56ff 55%, #36c3ff 120%);
  --grad-btn: linear-gradient(100deg, #7a5cff, #6f56ff 55%, #5b43e6);
  --radius: 22px;
  --radius-sm: 14px;
  --shadow: 0 30px 60px -20px rgba(3, 4, 20, 0.8);
  --shadow-violet: 0 18px 50px -12px rgba(111, 86, 255, 0.55);
  --maxw: 1200px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

html, body { margin: 0; padding: 0; }

body {
  font-family: "Space Grotesk", "Manrope", system-ui, sans-serif;
  color: var(--text);
  background: var(--bg-0);
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; }

.container { width: min(var(--maxw), 90vw); margin-inline: auto; }

.grad {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ============ BACKGROUND ============ */
.site-bg { position: fixed; inset: 0; z-index: -1; overflow: hidden; background: var(--bg-0); }

.bg-grid {
  position: absolute; inset: -2px;
  background-image:
    linear-gradient(rgba(124, 104, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124, 104, 255, 0.06) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(circle at 50% 30%, #000 0%, transparent 75%);
}

.bg-glow { position: absolute; border-radius: 50%; filter: blur(90px); opacity: 0.55; }
.bg-glow--1 { width: 540px; height: 540px; top: -160px; right: -80px; background: radial-gradient(circle, #6f56ff, transparent 70%); }
.bg-glow--2 { width: 480px; height: 480px; top: 40%; left: -180px; background: radial-gradient(circle, #3a2f9e, transparent 70%); opacity: 0.4; }
.bg-glow--3 { width: 600px; height: 600px; bottom: -240px; left: 30%; background: radial-gradient(circle, #2b2e8c, transparent 70%); opacity: 0.35; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  border: 1px solid transparent; border-radius: 13px;
  padding: 12px 20px; font: inherit; font-weight: 700; color: #fff;
  cursor: pointer; white-space: nowrap; text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}
.btn .ico { width: 18px; height: 18px; }
.btn--primary { background: var(--grad-btn); box-shadow: var(--shadow-violet); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 22px 60px -10px rgba(111, 86, 255, 0.7); }
.btn--ghost { background: rgba(255, 255, 255, 0.04); border-color: rgba(235, 239, 255, 0.18); }
.btn--ghost:hover { transform: translateY(-2px); border-color: var(--stroke-strong); background: rgba(255, 255, 255, 0.07); }
.btn--lg { padding: 15px 26px; font-size: 15px; }

/* ============ HEADER ============ */
.header { position: sticky; top: 0; z-index: 50; }
.header-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  margin-top: 0;
  padding: 18px 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  backdrop-filter: none;
}
.header {
  background: linear-gradient(180deg, rgba(5, 5, 13, 0.88), rgba(5, 5, 13, 0.35), transparent);
  border-bottom: 1px solid rgba(140, 120, 255, 0.14);
  backdrop-filter: blur(8px);
}
.logo { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; font-weight: 800; }
.logo-mark { width: 30px; height: 30px; display: grid; place-items: center; }
.logo-mark svg { width: 100%; height: 100%; }
.logo-text { font-family: "Sora", sans-serif; letter-spacing: 0.14em; font-size: 18px; }

.nav { display: flex; gap: 26px; }
.nav a { color: var(--muted); text-decoration: none; font-size: 17px; font-weight: 500; transition: color 0.2s; }
.nav a:hover { color: var(--text); }
.nav a.is-active { color: var(--text); }

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.header-cta .ico { width: 18px; height: 18px; }

.icon-btn {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  border: 1px solid rgba(140, 120, 255, 0.24);
  background: rgba(111, 86, 255, 0.12);
  color: #ece8ff;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.2s ease, border-color 0.2s ease;
}

.icon-btn:hover {
  transform: translateY(-1px);
  background: rgba(111, 86, 255, 0.22);
  border-color: rgba(160, 140, 255, 0.4);
}

.icon-btn svg {
  width: 20px;
  height: 20px;
}

.burger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; }
.burger span { width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: transform 0.28s ease, opacity 0.2s ease; }
.burger.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.is-active span:nth-child(2) { opacity: 0; }
.burger.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============ MOBILE MENU ============ */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 60;
  width: min(86vw, 360px);
  height: 100dvh;
  padding: calc(env(safe-area-inset-top, 0px) + 88px) 26px calc(env(safe-area-inset-bottom, 0px) + 28px);
  flex-direction: column;
  gap: 26px;
  background: linear-gradient(180deg, rgba(13, 12, 30, 0.98), rgba(7, 7, 18, 0.99));
  border-left: 1px solid rgba(140, 120, 255, 0.2);
  box-shadow: -30px 0 80px rgba(0, 0, 0, 0.55);
  transform: translateX(100%);
  transition: transform 0.36s cubic-bezier(0.22, 1, 0.36, 1);
  overflow-y: auto;
}

.mobile-menu.is-open {
  transform: translateX(0);
}

.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-menu__nav a {
  color: var(--text);
  text-decoration: none;
  font-family: "Sora", sans-serif;
  font-size: 1.22rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  padding: 14px 12px;
  border-radius: 14px;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.mobile-menu__nav a:hover,
.mobile-menu__nav a:active {
  background: rgba(111, 86, 255, 0.14);
  transform: translateX(4px);
}

.mobile-menu__cta {
  width: 100%;
  margin-top: auto;
}

.mobile-menu__backdrop {
  position: fixed;
  inset: 0;
  z-index: 55;
  background: rgba(4, 4, 12, 0.6);
  backdrop-filter: blur(3px);
  opacity: 0;
  animation: menuFade 0.32s ease forwards;
}

@keyframes menuFade {
  to { opacity: 1; }
}

body.menu-open {
  overflow: hidden;
}


/* ============ HERO ============ */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 0;
  min-height: calc(100svh - 90px);
  padding: 40px 0 60px;
}
.badge {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 8px 16px; margin-bottom: 26px;
  font-size: 13px; font-weight: 600; color: #d4d8ff;
  background: rgba(111, 86, 255, 0.12);
  border: 1px solid var(--stroke-strong);
  border-radius: 999px;
}
.badge-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--violet-2); box-shadow: 0 0 12px 2px rgba(142, 118, 255, 0.8); }

/* Hide top purple oval badges globally */
.badge {
  display: none !important;
}

.hero-title { margin: 0; font-size: clamp(2.2rem, 5vw, 3.7rem); font-weight: 800; letter-spacing: -0.01em; }
.hero-title { margin: 0; font-size: clamp(2.5rem, 5.6vw, 4.35rem); font-weight: 800; letter-spacing: -0.015em; }
.hero-lead { margin: 22px 0 32px; max-width: 56ch; color: var(--muted); font-size: clamp(1.08rem, 1.8vw, 1.36rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.social-proof { display: flex; align-items: center; gap: 14px; margin-top: 36px; }
.avatars { display: flex; }
.ava { width: 38px; height: 38px; border-radius: 50%; border: 2px solid var(--bg-1); margin-left: -10px; background-size: cover; overflow: hidden; }
.ava img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ava--1 { margin-left: 0; background: linear-gradient(135deg, #ff9d7a, #b65cff); }
.ava--2 { background: linear-gradient(135deg, #7ab8ff, #5b43e6); }
.ava--3 { background: linear-gradient(135deg, #8effc9, #36c3ff); }
.ava--4 { background: linear-gradient(135deg, #ffd27a, #ff6f9d); }
.ava--5 { background: linear-gradient(135deg, #b9a4ff, #6f56ff); }
.social-proof p { margin: 0; font-size: 20px; color: var(--muted); line-height: 1.25; }
.social-proof strong { color: var(--text); }

/* ---- HERO VISUAL ---- */
.hero-visual {
  position: relative;
  min-height: 540px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vault-static {
  position: relative;
  width: 100%;
  z-index: 2;
  pointer-events: none;
  filter: drop-shadow(0 48px 80px rgba(17, 11, 54, 0.85));
  margin-left: auto;
  margin-right: 20px;
  transform: translateX(30px);
}

.vault-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  transform: translateZ(0);
  transform: scale(1.5) translateZ(0);
}

@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* ============ CABINET MODAL ============ */
@keyframes modalBackdropIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes modalCardIn {
  from { opacity: 0; transform: translateY(26px) scale(0.94); }
  60% { opacity: 1; }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes panelIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.cab-modal {
  position: fixed;
  inset: 0;
  z-index: 96;
  display: grid;
  place-items: center;
  padding: 20px;
}

.cab-modal[hidden] {
  display: none !important;
}

.cab-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 4, 12, 0.8);
  backdrop-filter: blur(6px);
  animation: modalBackdropIn 0.28s ease both;
}

.cab-modal__card {
  position: relative;
  z-index: 1;
  width: min(720px, 94vw);
  max-height: 88vh;
  overflow-y: auto;
  border-radius: 24px;
  border: 1px solid rgba(140, 120, 255, 0.28);
  background: linear-gradient(160deg, rgba(24, 21, 56, 0.97), rgba(10, 9, 24, 0.99));
  box-shadow: 0 40px 100px -30px rgba(111, 86, 255, 0.65);
  padding: clamp(20px, 3vw, 30px);
  animation: modalCardIn 0.42s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.cab-modal__x {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid rgba(140, 120, 255, 0.2);
  background: rgba(111, 86, 255, 0.12);
  color: #ece8ff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.18s ease, transform 0.18s ease;
}

.cab-modal__x:hover {
  background: rgba(111, 86, 255, 0.26);
  transform: rotate(90deg);
}

.cab-head {
  display: flex;
  align-items: center;
  gap: 14px;
}

.cab-avatar {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(160deg, rgba(111, 86, 255, 0.35), rgba(111, 86, 255, 0.12));
  border: 1px solid rgba(140, 120, 255, 0.3);
  color: #d9dcff;
}

.cab-avatar svg {
  width: 28px;
  height: 28px;
}

.cab-head__text h3 {
  margin: 0;
  font-size: 1.45rem;
}

.cab-wallet {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  overflow-wrap: anywhere;
}

.cab-badge {
  margin-left: auto;
  align-self: flex-start;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.8rem;
  color: #ffd9a8;
  background: rgba(255, 170, 80, 0.14);
  border: 1px solid rgba(255, 170, 80, 0.3);
  white-space: nowrap;
}

.cab-head__logout {
  display: none;
  margin-left: 12px;
  align-self: flex-start;
}

.cab-tabs {
  margin-top: 22px;
  display: flex;
  gap: 6px;
  padding: 5px;
  border-radius: 14px;
  background: rgba(111, 86, 255, 0.08);
  border: 1px solid rgba(140, 120, 255, 0.16);
  overflow-x: auto;
}

.cab-tab {
  flex: 1;
  min-width: max-content;
  padding: 10px 16px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease;
}

.cab-tab:hover {
  color: #ece8ff;
}

.cab-tab.is-active {
  color: #fff;
  background: linear-gradient(160deg, rgba(111, 86, 255, 0.55), rgba(111, 86, 255, 0.32));
  box-shadow: 0 10px 24px -12px rgba(111, 86, 255, 0.9);
}

.cab-panels {
  margin-top: 20px;
}

.cab-panel {
  display: none;
}

.cab-panel.is-active {
  display: block;
  animation: panelIn 0.32s ease both;
}

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

.cab-item {
  border: 1px solid rgba(140, 120, 255, 0.18);
  border-radius: 14px;
  padding: 14px;
  background: rgba(111, 86, 255, 0.08);
}

.cab-item span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  margin-bottom: 6px;
}

.cab-item strong {
  display: block;
  font-size: 0.96rem;
  overflow-wrap: anywhere;
}

.cab-note {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.cab-feature {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  border: 1px solid rgba(140, 120, 255, 0.18);
  border-radius: 16px;
  padding: 18px;
  background: rgba(111, 86, 255, 0.08);
}

.cab-feature__icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(111, 86, 255, 0.2);
  color: #c9c2ff;
}

.cab-feature__icon svg {
  width: 24px;
  height: 24px;
}

.cab-feature h4 {
  margin: 0 0 6px;
  font-size: 1.1rem;
}

.cab-feature p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.cab-actions {
  margin-top: 18px;
  display: flex;
}

.cab-stake-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.cab-stake {
  border: 1px solid rgba(140, 120, 255, 0.18);
  border-radius: 14px;
  padding: 16px;
  background: rgba(111, 86, 255, 0.08);
  text-align: center;
}

.cab-stake span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  margin-bottom: 8px;
}

.cab-stake strong {
  font-size: 1.15rem;
}

.cab-activity {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.cab-activity li {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(140, 120, 255, 0.16);
  border-radius: 14px;
  padding: 14px 16px;
  background: rgba(111, 86, 255, 0.06);
}

.cab-activity__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #6cf0a0;
  box-shadow: 0 0 0 4px rgba(108, 240, 160, 0.15);
  flex-shrink: 0;
}

.cab-activity__dot--muted {
  background: #ffaa50;
  box-shadow: 0 0 0 4px rgba(255, 170, 80, 0.15);
}

.cab-activity strong {
  display: block;
  font-size: 0.96rem;
}

.cab-activity em {
  font-style: normal;
  color: var(--muted);
  font-size: 0.85rem;
}

.cab-modal [disabled] {
  opacity: 0.5;
  cursor: not-allowed;
}

/* ============ CABINET PAGE ============ */
.cab-page {
  padding: clamp(28px, 6vw, 64px) 0 80px;
  min-height: 60vh;
}

.cab-gate {
  display: grid;
  place-items: center;
  padding: 30px 0;
}

.cab-gate[hidden],
.cab-app[hidden] {
  display: none !important;
}

.cab-gate__card {
  width: min(560px, 94vw);
  text-align: center;
  border: 1px solid rgba(140, 120, 255, 0.24);
  border-radius: 24px;
  background: linear-gradient(160deg, rgba(24, 21, 56, 0.92), rgba(10, 9, 24, 0.96));
  box-shadow: 0 40px 100px -40px rgba(111, 86, 255, 0.6);
  padding: clamp(26px, 4vw, 40px);
  animation: panelIn 0.4s ease both;
}

.cab-gate__card h1 {
  margin: 18px 0 10px;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
}

.cab-gate__card p {
  margin: 0 auto 22px;
  max-width: 42ch;
  color: var(--muted);
}

.cab-avatar--lg {
  width: 72px;
  height: 72px;
  margin: 0 auto;
  border-radius: 20px;
}

.cab-avatar--lg svg {
  width: 38px;
  height: 38px;
}

.cab-app {
  width: min(860px, 100%);
  margin: 0 auto;
  border: 1px solid rgba(140, 120, 255, 0.22);
  border-radius: 24px;
  background: linear-gradient(160deg, rgba(20, 18, 46, 0.82), rgba(10, 10, 25, 0.9));
  box-shadow: 0 40px 100px -45px rgba(111, 86, 255, 0.6);
  padding: clamp(20px, 3vw, 32px);
  animation: panelIn 0.4s ease both;
}

.cab-locked {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  border: 1px solid rgba(255, 170, 80, 0.3);
  border-radius: 16px;
  padding: 18px;
  background: rgba(255, 170, 80, 0.08);
}

.cab-locked svg {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  color: #ffd9a8;
}

.cab-locked strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1.05rem;
  color: #ffe7c4;
}

.cab-locked p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.cab-locked--device {
  border-color: rgba(140, 120, 255, 0.3);
  background: rgba(111, 86, 255, 0.1);
  margin-top: 18px;
}

.cab-locked--device svg {
  color: #c9c2ff;
}

.cab-locked--device strong {
  color: #ece8ff;
}

/* ============ VERIFY MODAL ============ */
.verify-modal {
  position: fixed;
  inset: 0;
  z-index: 95;
  display: grid;
  place-items: center;
  padding: 20px;
}

.verify-modal[hidden] {
  display: none !important;
}

.verify-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 4, 12, 0.78);
  backdrop-filter: blur(5px);
  animation: modalBackdropIn 0.28s ease both;
}

.verify-modal__card {
  position: relative;
  z-index: 1;
  width: min(640px, 92vw);
  border-radius: 20px;
  border: 1px solid rgba(140, 120, 255, 0.28);
  background: linear-gradient(160deg, rgba(24, 21, 56, 0.96), rgba(10, 9, 24, 0.98));
  box-shadow: 0 28px 80px -22px rgba(5, 5, 15, 0.95);
  padding: 24px;
  animation: modalCardIn 0.42s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.verify-modal__x {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: 1px solid rgba(140, 120, 255, 0.2);
  background: rgba(111, 86, 255, 0.12);
  color: #ece8ff;
  font-size: 21px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.18s ease, transform 0.18s ease;
}

.verify-modal__x:hover {
  background: rgba(111, 86, 255, 0.26);
  transform: rotate(90deg);
}

.verify-modal__card h3 {
  margin: 0;
  font-size: 1.4rem;
}

.verify-modal__card p {
  margin: 12px 0 0;
  color: var(--muted);
}

.verify-check {
  margin-top: 18px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.96rem;
  color: #d9dcff;
}

.verify-check input {
  margin-top: 2px;
  width: 17px;
  height: 17px;
  accent-color: var(--violet);
}

.verify-modal__actions {
  margin-top: 18px;
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

.verify-modal [disabled] {
  opacity: 0.55;
  cursor: not-allowed;
}

/* ============ CABINET v2 — gate methods ============ */
.cab-gate__chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--violet-3);
  background: rgba(111, 86, 255, 0.12);
  border: 1px solid rgba(140, 120, 255, 0.3);
  margin-bottom: 18px;
}

.cab-gate__chip-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(61, 220, 151, 0.18);
}

.cab-gate__cta {
  width: 100%;
  margin-top: 4px;
}

.cab-gate__app {
  width: 100%;
  margin-top: 10px;
}

.cab-gate__app[hidden] {
  display: none !important;
}

.cab-gate__methods {
  margin-top: 24px;
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr 1fr;
}

.cab-method {
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: left;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(140, 120, 255, 0.16);
  background: rgba(111, 86, 255, 0.06);
}

.cab-method svg {
  width: 22px;
  height: 22px;
  color: var(--violet-3);
  flex-shrink: 0;
}

.cab-method strong {
  display: block;
  font-size: 0.9rem;
}

.cab-method span {
  color: var(--muted);
  font-size: 0.8rem;
}

/* ============ CABINET v2 — hero ============ */
.cab-hero {
  border: 1px solid rgba(140, 120, 255, 0.2);
  border-radius: 20px;
  background: linear-gradient(150deg, rgba(111, 86, 255, 0.16), rgba(111, 86, 255, 0.03));
  padding: 20px;
  margin-bottom: 18px;
}

.cab-hero__top {
  display: flex;
  align-items: center;
  gap: 14px;
}

.cab-hero__id {
  min-width: 0;
}

.cab-hero__hello {
  color: var(--muted);
  font-size: 0.82rem;
}

.cab-hero__stats {
  margin-top: 18px;
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cab-stat {
  border: 1px solid rgba(140, 120, 255, 0.14);
  border-radius: 14px;
  padding: 12px 14px;
  background: rgba(10, 10, 25, 0.4);
}

.cab-stat span {
  display: block;
  color: var(--muted);
  font-size: 0.76rem;
  margin-bottom: 5px;
}

.cab-stat strong {
  font-size: 0.96rem;
}

/* ============ CABINET v2 — overview CTA banner ============ */
.cab-cta-banner {
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid rgba(140, 120, 255, 0.28);
  border-radius: 16px;
  padding: 16px 18px;
  margin-bottom: 16px;
  background: linear-gradient(120deg, rgba(111, 86, 255, 0.22), rgba(54, 195, 255, 0.1));
}

.cab-cta-banner__text {
  flex: 1;
  min-width: 0;
}

.cab-cta-banner h4 {
  margin: 0 0 4px;
  font-size: 1.05rem;
}

.cab-cta-banner p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.cab-cta-banner .btn {
  flex-shrink: 0;
}

/* ============ CABINET v2 — checklist ============ */
.cab-checklist {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.cab-checklist li {
  position: relative;
  padding-left: 30px;
  color: var(--muted);
  font-size: 0.92rem;
}

.cab-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(61, 220, 151, 0.16);
  border: 1px solid rgba(61, 220, 151, 0.5);
}

.cab-checklist li::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 6px;
  width: 5px;
  height: 9px;
  border: solid var(--green);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

@media (max-width: 900px) {
  .cab-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .verify-modal__card {
    padding: 18px;
    border-radius: 16px;
  }

  .verify-modal__actions {
    flex-direction: column;
  }

  .verify-modal__actions .btn {
    width: 100%;
  }

  .cab-modal__card {
    padding: 18px;
    border-radius: 18px;
  }

  .cab-stake-grid {
    grid-template-columns: 1fr;
  }

  .cab-head {
    flex-wrap: wrap;
  }

  .cab-badge {
    margin-left: 0;
  }

  .cab-head__logout {
    display: block;
  }

  .cab-actions .btn {
    width: 100%;
  }

  .cab-hero {
    padding: 16px;
  }

  .cab-hero__top {
    flex-wrap: wrap;
  }

  .cab-hero__stats {
    grid-template-columns: 1fr;
  }

  .cab-gate__methods {
    grid-template-columns: 1fr;
  }

  .cab-cta-banner {
    flex-direction: column;
    align-items: stretch;
  }

  .cab-cta-banner .btn {
    width: 100%;
  }

  .cab-tabs {
    -webkit-overflow-scrolling: touch;
  }
}

/* ============ SHARED PANEL ============ */
.glass-panel {
  background: transparent;
  border: 0;
  border-radius: 0;
  backdrop-filter: none;
  box-shadow: none;
}

.section-head { text-align: left; margin-bottom: 26px; }
.section-head h2 { margin: 0 0 8px; font-size: clamp(2rem, 3.8vw, 3rem); }
.section-head p { margin: 0; color: var(--muted); font-size: 1.2rem; }

.section-divider {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 14px;
  padding: 24px 0 12px;
}

.section-divider span {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(140, 120, 255, 0.28), transparent);
}

.section-divider b {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(140, 120, 255, 0.16);
  background: rgba(111, 86, 255, 0.08);
  color: #e7e1ff;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.section-divider--footer {
  padding: 18px 0 8px;
}

/* ============ FEATURES ============ */
.proof {
  padding: 18px 0 26px;
}

.proof-head {
  max-width: 68ch;
  margin-bottom: 22px;
}

.proof-head h2 {
  margin: 16px 0 12px;
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  letter-spacing: -0.02em;
}

.proof-head p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.6vw, 1.18rem);
  max-width: 52ch;
}

.proof-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
}

.proof-main,
.proof-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--stroke-strong);
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(111, 86, 255, 0.18), transparent 40%),
    linear-gradient(180deg, rgba(13, 12, 28, 0.96), rgba(8, 8, 18, 0.98));
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
}

.proof-main {
  padding: 26px;
}

.proof-main::before {
  content: "";
  position: absolute;
  inset: auto -10% -45% auto;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(111, 86, 255, 0.28), transparent 68%);
  pointer-events: none;
}

.proof-main__top {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.proof-kicker {
  margin: 0 0 8px;
  color: var(--violet-2);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.proof-main h3 {
  margin: 0;
  font-size: clamp(1.5rem, 2.6vw, 2.2rem);
  max-width: 18ch;
}

.proof-pill {
  flex-shrink: 0;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  background: rgba(111, 86, 255, 0.12);
  color: #e2ddff;
  font-size: 0.95rem;
  font-weight: 700;
}

.proof-score {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: center;
  margin: 24px 0 22px;
}

.proof-score__ring {
  width: 140px;
  height: 140px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(185, 164, 255, 0.35);
  background:
    radial-gradient(circle at 50% 35%, rgba(111, 86, 255, 0.35), transparent 58%),
    rgba(14, 14, 32, 0.9);
  box-shadow: inset 0 0 0 10px rgba(111, 86, 255, 0.06);
  color: var(--text);
}

.proof-score__ring span {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1;
}

.proof-score__ring small {
  margin-top: 2px;
  color: var(--muted-2);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.proof-score p {
  margin: 0;
  color: var(--muted);
  font-size: 1.06rem;
  max-width: 32ch;
}

.risk-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
}

.risk-row {
  display: grid;
  grid-template-columns: 140px 1fr 62px;
  gap: 14px;
  align-items: center;
  padding: 13px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(140, 120, 255, 0.12);
}

.risk-row strong {
  display: block;
  font-size: 1rem;
}

.risk-row span {
  display: block;
  margin-top: 3px;
  color: var(--muted-2);
  font-size: 0.88rem;
}

.risk-bar {
  height: 10px;
  border-radius: 999px;
  background: rgba(123, 104, 255, 0.12);
  overflow: hidden;
}

.risk-bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #6f56ff, #36c3ff);
  box-shadow: 0 0 20px rgba(111, 86, 255, 0.42);
}

.risk-row b {
  justify-self: end;
  color: #eadfff;
  font-size: 0.9rem;
  font-weight: 700;
}

.proof-side {
  display: grid;
  gap: 14px;
}

.proof-card {
  padding: 20px;
}

.proof-card h3 {
  margin: 0 0 10px;
  font-size: 1.25rem;
}

.proof-card p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.55;
}

.proof-card--accent {
  display: grid;
  gap: 16px;
  background:
    radial-gradient(circle at top right, rgba(61, 220, 151, 0.16), transparent 36%),
    linear-gradient(180deg, rgba(13, 12, 28, 0.96), rgba(8, 8, 18, 0.98));
}

.proof-mini {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(140, 120, 255, 0.12);
}

.proof-mini span {
  color: var(--muted-2);
  font-size: 0.9rem;
}

.proof-mini strong {
  color: var(--green);
  font-size: 1.1rem;
}

.proof-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.proof-strip span {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(140, 120, 255, 0.16);
  background: rgba(111, 86, 255, 0.08);
  color: #e3ddff;
  font-size: 0.92rem;
}

.features {
  padding: 36px 0 30px;
  border-top: 0;
}
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; padding: 18px 0; }
.feature { padding: 8px 20px; position: relative; }
.feature:not(:last-child)::after { content: ""; position: absolute; top: 10%; right: 0; width: 1px; height: 80%; background: var(--stroke); }
.feature-ico { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 13px; margin-bottom: 16px; background: rgba(111, 86, 255, 0.12); border: 1px solid var(--stroke); }
.feature-ico svg { width: 24px; height: 24px; }
.feature h3 { margin: 0 0 8px; font-size: 1.05rem; }
.feature h3 { margin: 0 0 8px; font-size: 1.36rem; }
.feature p { margin: 0; font-size: 1.05rem; color: var(--muted); max-width: 30ch; }

/* ============ STATS ============ */
.stats {
  padding: 22px 0;
  border-top: 0;
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; padding: 12px 0; }
.stat { text-align: center; padding: 8px 16px; position: relative; }
.stat:not(:last-child)::after { content: ""; position: absolute; top: 12%; right: 0; width: 1px; height: 76%; background: var(--stroke); }
.stat h2 { margin: 0 0 8px; font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 800; }
.stat h2 { margin: 0 0 8px; font-size: clamp(2.2rem, 4vw, 3.2rem); font-weight: 800; }
.stat p { margin: 0; font-size: 1.02rem; color: var(--muted); }

/* ============ PRODUCTS ============ */
.products {
  padding: 60px 0 30px;
  border-top: 0;
}
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.product-card {
  position: relative;
  padding: 18px 0 22px;
  background: transparent;
  border: 0;
  border-radius: 0;
  border-top: 1px solid rgba(140, 120, 255, 0.2);
  border-bottom: 1px solid rgba(140, 120, 255, 0.14);
  overflow: visible;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.product-card:hover { transform: translateY(-4px); border-color: var(--stroke-strong); }
.product-num {
  position: absolute; top: 22px; right: 22px;
  font-family: "Sora"; font-size: 12px; font-weight: 700; letter-spacing: 0.1em;
  color: var(--violet-3);
  background: rgba(111, 86, 255, 0.14); border: 1px solid var(--stroke);
  padding: 5px 9px; border-radius: 8px;
  display: none;
}
.product-art {
  width: 100%; height: 320px; margin-bottom: 10px;
  border-radius: 0;
  background: radial-gradient(circle at 50% 62%, rgba(111, 86, 255, 0.28), transparent 72%);
  border: 0;
  display: grid; place-items: center;
}
.product-art__img {
  width: min(135%, 620px);
  max-height: 320px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 28px 48px rgba(91, 67, 230, 0.6));
}

.product-art--wallet .product-art__img {
  width: min(142%, 660px);
  max-height: 340px;
}

.product-art--stake .product-art__img {
  width: min(186%, 800px);
  max-height: 410px;
  transform: translateY(10px) scale(1.22);
  transform-origin: center bottom;
}

.product-art--monitor .product-art__img {
  width: min(186%, 800px);
  max-height: 410px;
  transform: translateY(10px) scale(1.22);
  transform-origin: center bottom;
}
.product-card h3 { margin: 0 0 10px; font-size: 1.7rem; }
.product-card p { margin: 0 0 18px; font-size: 1.08rem; color: var(--muted); max-width: 34ch; }
.product-link { display: inline-flex; align-items: center; gap: 8px; color: var(--violet-3); text-decoration: none; font-weight: 700; font-size: 1.12rem; transition: gap 0.2s; }
.product-link:hover { gap: 12px; }

/* ============ CTA ============ */
.cta {
  padding: 50px 0 70px;
  border-top: 0;
}
.cta-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  grid-template-areas:
    "copy visual"
    "trust trust";
  align-items: center;
  gap: 22px;
  padding: 48px 52px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid transparent;
  border-radius: 32px;
  background:
    radial-gradient(120% 140% at 0% 0%, rgba(111, 86, 255, 0.22), transparent 46%) padding-box,
    radial-gradient(120% 150% at 100% 100%, rgba(54, 195, 255, 0.16), transparent 50%) padding-box,
    linear-gradient(180deg, rgba(14, 12, 30, 0.97), rgba(8, 8, 18, 0.99)) padding-box,
    linear-gradient(135deg, rgba(185, 164, 255, 1), rgba(111, 86, 255, 0.22), rgba(54, 195, 255, 0.85)) border-box;
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.45),
    0 0 60px -20px rgba(111, 86, 255, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

/* Subtle grid texture */
.cta-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(140, 120, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(140, 120, 255, 0.06) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(120% 120% at 70% 30%, #000 25%, transparent 78%);
  -webkit-mask-image: radial-gradient(120% 120% at 70% 30%, #000 25%, transparent 78%);
  pointer-events: none;
}

/* Top sheen highlight */
.cta-card::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  pointer-events: none;
}

.cta-copy { position: relative; z-index: 1; grid-area: copy; }
.cta-copy h2 {
  margin: 20px 0 16px;
  font-size: clamp(2.1rem, 4vw, 3.3rem);
  letter-spacing: -0.02em;
  line-height: 1.04;
}
.cta-copy p { margin: 0 0 30px; color: var(--muted); max-width: 46ch; font-size: 1.14rem; }

.cta-copy .badge {
  background: linear-gradient(135deg, rgba(169, 140, 255, 0.2), rgba(111, 86, 255, 0.08));
  border-color: rgba(185, 164, 255, 0.4);
  color: #e7e3ff;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 12px;
}

.cta-copy .hero-actions .btn--primary {
  box-shadow: 0 18px 44px -10px rgba(111, 86, 255, 0.75);
}
.cta-copy .hero-actions .btn--primary::after {
  content: "→";
  font-weight: 700;
}

/* CTA feature chips */
.cta-features {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.cta-feature {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 11px 15px;
  border-radius: 14px;
  border: 1px solid rgba(140, 120, 255, 0.18);
  background: rgba(20, 18, 40, 0.55);
}
.cta-feature__ico {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  flex: none;
  border-radius: 10px;
  color: #b9a4ff;
  background: rgba(111, 86, 255, 0.16);
  border: 1px solid rgba(140, 120, 255, 0.28);
}
.cta-feature__ico svg { width: 19px; height: 19px; }
.cta-feature__text { display: grid; gap: 1px; }
.cta-feature__text strong { font-size: 0.92rem; color: #f1eefc; line-height: 1.1; }
.cta-feature__text small { font-size: 0.76rem; color: var(--muted); }

/* CTA trust strip */
.cta-trust {
  grid-area: trust;
  position: relative;
  z-index: 1;
  margin-top: 14px;
  padding-top: 26px;
  border-top: 1px solid rgba(140, 120, 255, 0.16);
}
.cta-trust__label {
  display: block;
  text-align: center;
  margin-bottom: 18px;
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.cta-trust__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.cta-trust__stat {
  display: grid;
  gap: 3px;
  justify-items: center;
  text-align: center;
  position: relative;
}
.cta-trust__stat + .cta-trust__stat::before {
  content: "";
  position: absolute;
  left: -9px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 32px;
  background: rgba(140, 120, 255, 0.16);
}
.cta-trust__stat strong {
  font-family: "Sora", sans-serif;
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cta-trust__stat small { font-size: 0.8rem; color: var(--muted); }

.cta-visual {
  position: relative;
  grid-area: visual;
  min-height: 560px;
  display: grid;
  place-items: center;
}

.cta-art {
  position: relative;
  z-index: 1;
  width: min(150%, 1180px);
  filter: drop-shadow(0 46px 110px rgba(91, 67, 230, 0.45));
}

.cta-art img {
  width: 100%;
  height: auto;
  display: block;
}

/* ============ FOOTER ============ */
.footer {
  border-top: 1px solid rgba(140, 120, 255, 0.2);
  margin-top: 30px;
  padding: 50px 0 24px;
  background: linear-gradient(180deg, transparent, rgba(8, 8, 22, 0.25));
}
.footer-inner { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 1.4fr; gap: 30px; }
.footer-brand p { color: var(--muted); font-size: 14px; margin: 16px 0 18px; max-width: 30ch; }
.footer-brand p { color: var(--muted); font-size: 1.02rem; margin: 16px 0 18px; max-width: 36ch; }
.socials { display: flex; gap: 10px; }
.socials a {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 0;
  color: var(--muted);
  background: transparent;
  border: 0;
  transition: color 0.2s;
}
.socials a:hover { color: var(--text); border-color: var(--stroke-strong); }
.socials svg { width: 18px; height: 18px; }

.footer-col h4 { margin: 0 0 16px; font-size: 1.02rem; letter-spacing: 0.04em; }
.footer-col a { display: block; color: var(--muted); text-decoration: none; font-size: 1rem; margin-bottom: 11px; transition: color 0.2s; }
.footer-col a:hover { color: var(--text); }
.footer-sub p { color: var(--muted); font-size: 0.98rem; margin: 0 0 14px; }
.sub-form { display: flex; gap: 8px; }
.sub-form input {
  flex: 1;
  min-width: 0;
  padding: 11px 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--stroke);
  color: var(--text);
  font: inherit;
  font-size: 14px;
}
.sub-form input::placeholder { color: var(--muted-2); }
.sub-form input:focus { outline: none; border-color: var(--stroke-strong); }
.sub-form .btn { padding: 11px 14px; }

.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 40px; padding-top: 22px; border-top: 1px solid var(--stroke); color: var(--muted-2); font-size: 13px; }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { color: var(--muted-2); text-decoration: none; }
.footer-legal a:hover { color: var(--text); }

.screening-header {
  padding-top: 14px;
}

.screening-header__inner {
  padding: 14px 18px;
  background: rgba(11, 11, 24, 0.86);
  border: 1px solid rgba(140, 120, 255, 0.16);
  border-radius: 22px;
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.36);
}

.screening-hero {
  display: grid;
  gap: 22px;
  padding: 18px 0 10px;
}

.screening-hero__intro {
  max-width: 760px;
}

.screening-hero__intro h1 {
  margin: 16px 0 12px;
  font-size: clamp(2.7rem, 6vw, 4.8rem);
  letter-spacing: -0.03em;
}

.screening-hero__title-line {
  display: inline-block;
  min-height: 1.2em;
}

.screening-hero__typing {
  display: inline-block;
  min-width: 1ch;
  white-space: pre-wrap;
  border-right: 2px solid rgba(185, 164, 255, 0.85);
  box-shadow: 12px 0 28px -18px rgba(185, 164, 255, 0.9);
}

.screening-hero__typing.is-complete {
  border-right-color: transparent;
  box-shadow: none;
}

@keyframes blink-caret {
  0%, 45% {
    border-right-color: rgba(185, 164, 255, 0.9);
  }

  55%, 100% {
    border-right-color: transparent;
  }
}

.screening-hero__typing.is-typing {
  animation: blink-caret 0.8s step-end infinite;
}

.screening-hero__intro p {
  margin: 0;
  max-width: 58ch;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.7vw, 1.16rem);
}

.screening-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
}

.screening-main-card,
.screening-side-card,
.screening-layer-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--stroke-strong);
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(111, 86, 255, 0.18), transparent 40%),
    linear-gradient(180deg, rgba(13, 12, 28, 0.96), rgba(8, 8, 18, 0.98));
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
}

.screening-main-card {
  padding: 26px;
}

.screening-kicker {
  margin: 0 0 8px;
  color: var(--violet-2);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.screening-main-title {
  margin: 0;
  font-size: clamp(1.5rem, 2.6vw, 2.2rem);
  max-width: 20ch;
  letter-spacing: -0.01em;
}

.screening-main-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) 240px;
  gap: 18px;
  align-items: center;
  margin: 24px 0 22px;
}

.screening-score {
  width: 140px;
  height: 140px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 2px solid rgba(185, 164, 255, 0.65);
  background:
    radial-gradient(circle at 50% 30%, rgba(185, 164, 255, 0.15), transparent 52%),
    radial-gradient(circle at 50% 50%, rgba(111, 86, 255, 0.4), transparent 70%),
    linear-gradient(135deg, rgba(185, 164, 255, 0.1), rgba(60, 40, 140, 0.12));
  box-shadow: 
    inset 0 0 0 1px rgba(185, 164, 255, 0.3),
    0 0 2px rgba(111, 86, 255, 0.5),
    0 0 20px rgba(111, 86, 255, 0.45),
    0 0 40px rgba(111, 86, 255, 0.25),
    inset 0 1px 4px rgba(255, 255, 255, 0.15),
    inset 0 -1px 8px rgba(111, 86, 255, 0.2);
  color: var(--text);
  position: relative;
  flex-direction: column;
}

.screening-score span {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 2.75rem;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(180deg, #ffffff, #b9a4ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.screening-score small {
  margin-top: 4px;
  color: rgba(185, 164, 255, 0.8);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
}

.screening-main-row p {
  margin: 0;
  color: var(--muted);
  font-size: 1.06rem;
  max-width: 28ch;
}

.screening-art {
  position: relative;
  min-height: 120px;
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: center;
}

.screening-shield-img {
  width: min(320px, 100%);
  height: auto;
  max-height: 320px;
  object-fit: contain;
  padding: 0;
  opacity: 0.95;
}

.screening-art__glow {
  position: absolute;
  inset: 16% 24% 16% 24%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(111, 86, 255, 0.35), transparent 68%);
  filter: blur(8px);
}



.screening-risks {
  display: grid;
  gap: 12px;
}

.screening-risk-row {
  display: grid;
  grid-template-columns: 38px 130px 1fr 62px;
  gap: 14px;
  align-items: center;
  padding: 13px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(140, 120, 255, 0.12);
}

.screening-risk-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  border: 1px solid rgba(140, 120, 255, 0.18);
  background: rgba(111, 86, 255, 0.12);
  color: var(--violet-2);
}

.screening-risk-icon svg {
  width: 20px;
  height: 20px;
}

.screening-risk-row strong {
  display: block;
  font-size: 1rem;
}

.screening-bar {
  height: 10px;
  border-radius: 999px;
  background: rgba(123, 104, 255, 0.12);
  overflow: hidden;
}

.screening-bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #6f56ff, #36c3ff);
  box-shadow: 0 0 20px rgba(111, 86, 255, 0.42);
  transition: width 0.3s ease;
}

.screening-risk-row b {
  justify-self: end;
  font-size: 0.9rem;
  font-weight: 700;
  white-space: nowrap;
  transition: color 0.2s ease;
}

/* Risk level colors - text only */
.screening-risk-row b.risk-low {
  color: #3ddc97;
}

.screening-risk-row b.risk-medium {
  color: #ffa726;
}

.screening-risk-row b.risk-watch,
.screening-risk-row b.risk-high {
  color: #ff6b6b;
}

.screening-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(140, 120, 255, 0.12);
}

.screening-stat {
  display: flex;
  align-items: center;
  gap: 12px;
}

.screening-stat__icon {
  display: grid;
  place-items: center;
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  border: 1px solid rgba(140, 120, 255, 0.18);
  background: rgba(111, 86, 255, 0.12);
  color: var(--violet-2);
}

.screening-stat__icon svg {
  width: 20px;
  height: 20px;
}

.screening-stat small {
  display: block;
  color: var(--muted-2);
  font-size: 0.82rem;
}

.screening-stat strong {
  display: block;
  margin-top: 2px;
  font-size: 1rem;
}

.screening-stat__icon--ready,
.screening-stat--ready {
  color: var(--green);
}

.screening-side {
  display: grid;
  gap: 14px;
}

.screening-side-card {
  position: relative;
  overflow: hidden;
  padding: 20px;
}

.screening-side-card__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.screening-side-card--media-right {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
  column-gap: 8px;
  align-items: stretch;
  min-height: 248px;
  overflow: visible;
}

.screening-side-card--sanctions {
  background:
    radial-gradient(circle at 84% 82%, rgba(111, 86, 255, 0.2), transparent 26%),
    radial-gradient(circle at 100% 100%, rgba(73, 163, 255, 0.12), transparent 22%),
    linear-gradient(180deg, rgba(13, 12, 28, 0.96), rgba(8, 8, 18, 0.98));
}

.screening-side-card--sanctions .screening-side-card__content {
  justify-content: space-between;
}

.screening-side-card--media-right .screening-side-art {
  align-self: center;
  justify-self: end;
  width: 100%;
}

.screening-side-card__meta {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  width: fit-content;
  margin-top: 14px;
  padding: 8px 12px;
  border-radius: 12px;
  border: 1px solid rgba(140, 120, 255, 0.24);
  background: rgba(111, 86, 255, 0.12);
}

.screening-side-card__meta span {
  color: var(--muted-2);
  font-size: 0.84rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.screening-side-card__meta strong {
  color: #8df2ca;
  font-size: 1.08rem;
  line-height: 1;
}

.screening-side-card__label {
  margin: 0 0 10px;
  color: var(--violet-2);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.screening-side-card h3 {
  margin: 0;
  font-size: 1.56rem;
  line-height: 1.14;
  max-width: 18ch;
}

.screening-side-card__desc {
  margin: 14px 0 0;
  color: var(--muted-2);
  font-size: 1.02rem;
  line-height: 1.5;
  max-width: 26ch;
}

.screening-side-card__points {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.screening-side-card__points li {
  position: relative;
  padding-left: 26px;
  color: #d9d4f5;
  font-size: 1.02rem;
  line-height: 1.4;
}

.screening-side-card__points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42em;
  width: 14px;
  height: 14px;
  border-radius: 5px;
  background: linear-gradient(135deg, #6f56ff, #49a3ff);
  box-shadow: 0 0 0 3px rgba(111, 86, 255, 0.16);
}

.screening-side-art {
  position: relative;
  min-height: 0;
  border-radius: 0;
  border: 0;
  overflow: visible;
  background: transparent;
}

.screening-side-art__img {
  width: min(128%, 340px);
  height: auto;
  max-height: 270px;
  margin: 0 4px -12px auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 18px 40px rgba(0, 0, 0, 0.5));
}

.screening-side-card--lineage {
  position: relative;
  overflow: hidden;
  padding-bottom: 26px;
}

.screening-side-card--lineage .screening-side-card__content {
  position: relative;
  z-index: 2;
}

.screening-side-card--lineage .screening-side-card__content .screening-side-card__meta {
  display: inline-flex;
}

.screening-side-card--lineage .screening-side-card__points {
  max-width: 34ch;
}

.screening-side-card--lineage .screening-side-card__meta--corner {
  display: none;
}

.screening-side-art--lineage {
  display: none;
}

.screening-side-art--lineage .screening-side-art__img {
  width: 100%;
  height: 100%;
  max-height: none;
  margin: 0;
  object-fit: contain;
  object-position: right bottom;
}

.screening-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.screening-tags span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(140, 120, 255, 0.16);
  background: rgba(111, 86, 255, 0.08);
  color: #e3ddff;
  font-size: 0.92rem;
}

.screening-tag::before {
  content: "";
  width: 12px;
  height: 12px;
  flex: 0 0 12px;
  border-radius: 3px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Crect x='3' y='3' width='18' height='18' rx='4' fill='%236f56ff'/%3E%3Cpath d='M7 12h10M12 7v10' stroke='%23c9f7ff' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.screening-layers {
  padding: 18px 0 34px;
}

.screening-layers__head {
  max-width: 68ch;
  margin: 18px 0 22px;
}

.screening-layers__head h2 {
  margin: 16px 0 12px;
  font-size: clamp(2.1rem, 4.4vw, 3.4rem);
  letter-spacing: -0.02em;
}

.screening-layers__head p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.12rem);
  max-width: 56ch;
}

.screening-layers__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.screening-layer-card {
  padding: 22px;
}

.screening-layer-card__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 26px;
  margin-bottom: 16px;
  padding: 0 10px;
  border-radius: 10px;
  background: rgba(111, 86, 255, 0.14);
  border: 1px solid var(--stroke);
  color: var(--violet-3);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.screening-layer-card h3 {
  margin: 0 0 14px;
  font-size: 1.4rem;
}

.screening-layer-card p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 1rem;
}

.screening-placeholder {
  border-radius: 22px;
  border: 1px dashed rgba(140, 120, 255, 0.22);
  background:
    radial-gradient(circle at 50% 20%, rgba(111, 86, 255, 0.18), transparent 45%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  position: relative;
  overflow: hidden;
}

.screening-placeholder::before {
  content: "Image placeholder";
  position: absolute;
  inset: auto 16px 16px 16px;
  color: var(--muted-2);
  font-size: 0.9rem;
  letter-spacing: 0.04em;
}

.screening-placeholder--wide { min-height: 168px; }
.screening-placeholder--chart { min-height: 168px; }
.screening-placeholder--list { min-height: 168px; }

@media (max-width: 1080px) {
  .screening-main-row {
    grid-template-columns: 1fr 1fr;
  }

  .screening-art {
    grid-column: 1 / -1;
    min-height: 110px;
  }

  .screening-layers__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .screening-header__inner {
    padding: 12px 16px;
  }

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

  .screening-main-row {
    grid-template-columns: 1fr;
  }

  .screening-side-card--media-right {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .screening-side-card--media-right .screening-side-art__img {
    width: min(240px, 72%);
    margin: 8px auto 0;
    max-height: 200px;
    transform: none;
  }

  .screening-side-card--lineage {
    padding-bottom: 18px;
  }

  .screening-side-art--lineage {
    position: static;
    margin-top: 14px;
  }

  .screening-side-art--lineage .screening-side-art__img {
    width: 100%;
    max-height: 200px;
    margin: 0 auto;
  }

  .screening-shield-img {
    width: min(170px, 100%);
    max-height: 150px;
  }

  .screening-score {
    width: 120px;
    height: 120px;
  }

  .screening-risks {
    gap: 10px;
  }

  .screening-risk-row {
    grid-template-columns: 38px 1fr auto;
    grid-template-areas:
      "icon label badge"
      "icon bar bar";
    gap: 8px 12px;
  }

  .screening-risk-icon { grid-area: icon; }
  .screening-risk-row strong { grid-area: label; align-self: center; }
  .screening-risk-row .screening-bar { grid-area: bar; }
  .screening-risk-row b { grid-area: badge; justify-self: end; }

  .screening-stats {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

@media (max-width: 560px) {
  .screening-hero__intro h1 {
    font-size: clamp(2.1rem, 11vw, 3.1rem);
  }

  .screening-main-card,
  .screening-side-card,
  .screening-layer-card {
    border-radius: 22px;
  }

  .screening-main-card,
  .screening-side-card,
  .screening-layer-card {
    padding: 18px;
  }

  .screening-tags span {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .screening-placeholder--wide,
  .screening-placeholder--chart,
  .screening-placeholder--list {
    min-height: 140px;
  }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1080px) {
  .nav { gap: 18px; }
  .footer-inner { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-sub { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  .nav { display: none; }
  .header-actions { display: none; }
  .burger { display: flex; }
  .mobile-menu { display: flex; }
  .hero { display: flex; flex-direction: column; gap: 22px; min-height: auto; padding-top: 18px; padding-bottom: 30px; }
  .nav a { font-size: 15px; }
  .hero-copy { display: contents; text-align: left; }
  .badge { order: 1; }
  .hero-title { order: 2; }
  .hero-lead { order: 3; margin: 18px 0 4px; }
  .hero-visual { order: 4; min-height: auto; max-width: 100%; margin: 4px auto; width: 100%; display: flex; align-items: center; justify-content: center; overflow: visible; }
  .hero-actions { order: 5; }
  .social-proof { order: 6; }
  .vault-static { width: min(108%, 460px); margin: 0 auto; transform: none; }
  .vault-image { transform: scale(1.22) translateZ(0); }
  .proof-grid { grid-template-columns: 1fr; }
  .proof-main h3 { max-width: 100%; }
  .proof-score { grid-template-columns: 1fr; }
  .proof-score__ring { width: 120px; height: 120px; }
  .risk-row { grid-template-columns: 1fr; gap: 10px; }
  .risk-row b { justify-self: start; }
  .features-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .feature:not(:last-child)::after { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; }
  .stat:nth-child(odd)::after { display: none; }
  .products-grid { grid-template-columns: 1fr; gap: 8px; }
  .product-card { overflow: visible; }
  .product-art { height: 360px; overflow: visible; }
  .product-art__img,
  .product-art--wallet .product-art__img {
    width: min(138%, 560px);
    max-height: 340px;
    transform: none;
  }
  .product-art--stake .product-art__img,
  .product-art--monitor .product-art__img {
    width: min(198%, 860px);
    max-height: 440px;
    transform: translateY(10px) scale(1.16);
    transform-origin: center bottom;
  }
  .cta-card { grid-template-columns: 1fr; grid-template-areas: "copy" "visual" "trust"; padding: 26px; }
  .cta-visual { order: -1; min-height: 320px; }
  .cta-art { width: min(100%, 520px); }
}

@media (max-width: 560px) {
  .container { width: 92vw; }
  .hero { padding-top: 12px; gap: 24px; }
  .hero-title { font-size: clamp(2.1rem, 11vw, 3rem); }
  .hero-lead { font-size: 1.02rem; max-width: 100%; margin: 18px 0 26px; }
  .social-proof { margin-top: 28px; }
  .social-proof p { font-size: 16px; }
  .section-head h2 { font-size: clamp(1.9rem, 8.5vw, 2.6rem); }
  .section-head p { font-size: 1rem; }
  .section-divider {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 18px 0 8px;
  }

  .section-divider span {
    display: none;
  }

  .section-divider b {
    justify-self: start;
    font-size: 0.78rem;
    letter-spacing: 0.1em;
  }
  .feature p,
  .product-card p,
  .cta-copy p { font-size: 0.98rem; }
  .features-grid { grid-template-columns: 1fr; }
  .feature:not(:last-child)::after { display: none; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat::after { display: none !important; }
  .cta-trust__stats { grid-template-columns: repeat(2, 1fr); gap: 22px 18px; }
  .cta-trust__stat:nth-child(odd)::before { display: none; }
  .hero-visual { min-height: auto; }
  .vault-static { width: min(86%, 320px); }
  .proof { padding: 14px 0 20px; }
  .proof-main { padding: 20px; }
  .proof-head h2 { font-size: clamp(1.8rem, 8vw, 2.5rem); }
  .proof-strip span { width: 100%; text-align: center; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
}

/* ============ SMALL PHONES ============ */
@media (max-width: 430px) {
  .container { width: 90vw; }
  .header-inner { padding: 14px 0; }
  .logo-text { font-size: 16px; }
  .hero-title { font-size: clamp(2rem, 11.5vw, 2.6rem); }
  .badge { margin-bottom: 20px; font-size: 12px; padding: 7px 13px; }
  .btn--lg { padding: 14px 22px; font-size: 14.5px; }

  .screening-hero__intro h1 { font-size: clamp(2rem, 12vw, 2.7rem); }
  .screening-main-card { padding: 18px; }
  .screening-score { width: 104px; height: 104px; }
  .screening-score span { font-size: 2.2rem; }
  .screening-main-row p { font-size: 0.98rem; }
  .screening-shield-img { width: min(180px, 70%); max-height: 180px; }
  .screening-side-card h3 { font-size: 1.32rem; }
  .screening-side-card__desc,
  .screening-side-card__points li { font-size: 0.96rem; }

  .footer-inner { grid-template-columns: 1fr; }
  .footer-legal { flex-direction: column; gap: 8px; }
}


/* ============================================================
   INTERNAL PAGES (blog, docs, about, faq, help, legal)
   ============================================================ */
.page {
  padding: 56px 0 40px;
}

.page-hero {
  padding: 70px 0 30px;
}

.page-hero__inner {
  max-width: 60ch;
}

.page-hero h1 {
  margin: 18px 0 16px;
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  letter-spacing: -0.03em;
}

.page-hero p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
  max-width: 60ch;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  color: var(--muted-2);
}

.breadcrumbs a {
  color: var(--violet-3);
  text-decoration: none;
}

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

/* ---- Blog ---- */
.blog-featured {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 20px;
  margin-bottom: 34px;
}

.blog-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 26px;
  border: 1px solid var(--stroke);
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(111, 86, 255, 0.16), transparent 42%),
    linear-gradient(180deg, rgba(13, 12, 28, 0.94), rgba(8, 8, 18, 0.97));
  text-decoration: none;
  color: inherit;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
  overflow: hidden;
}

.blog-card:hover {
  transform: translateY(-5px);
  border-color: var(--stroke-strong);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.4);
}

.blog-card__thumb {
  height: 200px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(111, 86, 255, 0.5), rgba(54, 195, 255, 0.32));
  position: relative;
  overflow: hidden;
}

.blog-card__thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(circle at 70% 30%, #000, transparent 75%);
}

.blog-card--featured .blog-card__thumb { height: 280px; }

.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
  color: var(--muted-2);
}

.blog-tag {
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  border-radius: 999px;
  border: 1px solid rgba(140, 120, 255, 0.28);
  background: rgba(111, 86, 255, 0.14);
  color: #d9d2ff;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.blog-card h2,
.blog-card h3 {
  margin: 0;
  letter-spacing: -0.01em;
}

.blog-card--featured h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); }
.blog-card h3 { font-size: 1.28rem; }

.blog-card p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.blog-card__more {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--violet-3);
  font-weight: 700;
  transition: gap 0.2s;
}

.blog-card:hover .blog-card__more { gap: 13px; }

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

/* ---- Docs layout ---- */
.docs-layout {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 36px;
  align-items: start;
}

.docs-nav {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 18px;
  border: 1px solid var(--stroke);
  border-radius: 18px;
  background: rgba(13, 12, 28, 0.6);
}

.docs-nav h4 {
  margin: 14px 0 8px;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-2);
}

.docs-nav h4:first-child { margin-top: 0; }

.docs-nav a {
  display: block;
  padding: 7px 12px;
  border-radius: 10px;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.96rem;
  transition: background 0.2s, color 0.2s;
}

.docs-nav a:hover,
.docs-nav a.is-active {
  background: rgba(111, 86, 255, 0.14);
  color: var(--text);
}

/* ---- Prose / article ---- */
.prose {
  max-width: 72ch;
}

.prose h2 {
  margin: 38px 0 14px;
  font-size: 1.8rem;
  scroll-margin-top: 100px;
}

.prose h3 {
  margin: 26px 0 10px;
  font-size: 1.3rem;
}

.prose p,
.prose li {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.prose ul,
.prose ol { padding-left: 22px; margin: 12px 0; }
.prose li { margin-bottom: 8px; }

.prose a { color: var(--violet-3); }

.prose code {
  padding: 2px 7px;
  border-radius: 6px;
  background: rgba(111, 86, 255, 0.16);
  border: 1px solid var(--stroke);
  font-family: "Space Grotesk", monospace;
  font-size: 0.92em;
  color: #dcd5ff;
}

.prose pre {
  margin: 16px 0;
  padding: 18px 20px;
  border-radius: 14px;
  border: 1px solid var(--stroke);
  background: rgba(10, 10, 22, 0.85);
  overflow-x: auto;
}

.prose pre code {
  padding: 0;
  border: 0;
  background: none;
  color: #c9c2ff;
}

.prose blockquote {
  margin: 18px 0;
  padding: 4px 18px;
  border-left: 3px solid var(--violet);
  color: var(--muted);
  font-style: italic;
}

.note-card {
  margin: 20px 0;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid rgba(54, 195, 255, 0.3);
  background: rgba(54, 195, 255, 0.08);
  color: #cfeaff;
  font-size: 1rem;
}

/* ---- FAQ accordion ---- */
.faq-list {
  max-width: 800px;
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--stroke);
  border-radius: 16px;
  background: rgba(13, 12, 28, 0.6);
  overflow: hidden;
}

.faq-item > summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 22px;
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

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

.faq-item > summary::after {
  content: "+";
  font-size: 1.5rem;
  color: var(--violet-3);
  transition: transform 0.2s;
}

.faq-item[open] > summary::after { transform: rotate(45deg); }

.faq-item__body {
  padding: 0 22px 20px;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.65;
}

/* ---- Help / cards grid ---- */
.help-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.help-card {
  display: block;
  padding: 24px;
  border: 1px solid var(--stroke);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(13, 12, 28, 0.9), rgba(8, 8, 18, 0.96));
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s, border-color 0.2s;
}

.help-card:hover { transform: translateY(-4px); border-color: var(--stroke-strong); }

.help-card__ico {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  margin-bottom: 14px;
  background: rgba(111, 86, 255, 0.14);
  border: 1px solid var(--stroke);
  font-size: 22px;
}

.help-card h3 { margin: 0 0 8px; font-size: 1.2rem; }
.help-card p { margin: 0; color: var(--muted); font-size: 1rem; }

/* ---- About values / team ---- */
.value-grid,
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.value-card {
  padding: 24px;
  border: 1px solid var(--stroke);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(13, 12, 28, 0.9), rgba(8, 8, 18, 0.96));
}

.value-card h3 { margin: 0 0 10px; font-size: 1.3rem; }
.value-card p { margin: 0; color: var(--muted); font-size: 1.02rem; }

.team-card {
  padding: 22px;
  border: 1px solid var(--stroke);
  border-radius: 20px;
  text-align: center;
  background: linear-gradient(180deg, rgba(13, 12, 28, 0.9), rgba(8, 8, 18, 0.96));
}

.team-card__avatar {
  width: 78px;
  height: 78px;
  margin: 0 auto 14px;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(135deg, #b9a4ff, #6f56ff);
}

.team-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.team-card h3 { margin: 0 0 4px; font-size: 1.16rem; }
.team-card span { color: var(--muted-2); font-size: 0.94rem; }

.page-cta {
  margin-top: 40px;
  padding: 40px;
  border-radius: 26px;
  border: 1px solid var(--stroke-strong);
  background:
    radial-gradient(circle at 20% 0%, rgba(111, 86, 255, 0.22), transparent 50%),
    linear-gradient(180deg, rgba(14, 12, 30, 0.95), rgba(8, 8, 18, 0.98));
  text-align: center;
}

.page-cta h2 { margin: 0 0 12px; font-size: clamp(1.6rem, 3vw, 2.4rem); }
.page-cta p { margin: 0 auto 22px; color: var(--muted); max-width: 50ch; }

.section-title {
  margin: 40px 0 18px;
  font-size: clamp(1.5rem, 3vw, 2rem);
}

@media (max-width: 900px) {
  .blog-featured { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .docs-layout { grid-template-columns: 1fr; }
  .docs-nav { position: static; flex-direction: row; flex-wrap: wrap; }
  .docs-nav h4 { width: 100%; }
  .help-grid,
  .value-grid,
  .team-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .blog-grid,
  .help-grid,
  .value-grid,
  .team-grid { grid-template-columns: 1fr; }
}

/* =====================================================================
   PREMIUM CABINET — immersive "wow" theme (cabg / cabx)
   ===================================================================== */

.cab-body { background: #04040c; }

/* ---- Ambient aurora ---- */
.cab-aura {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.cab-aura__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.55;
  mix-blend-mode: screen;
  will-change: transform;
}

.cab-aura__blob--a {
  width: 620px; height: 620px;
  top: -180px; left: -120px;
  background: radial-gradient(circle, #7a5cff, transparent 68%);
  animation: auraFloatA 26s ease-in-out infinite;
}

.cab-aura__blob--b {
  width: 560px; height: 560px;
  top: 20%; right: -160px;
  background: radial-gradient(circle, #2f7bff, transparent 68%);
  opacity: 0.42;
  animation: auraFloatB 30s ease-in-out infinite;
}

.cab-aura__blob--c {
  width: 680px; height: 680px;
  bottom: -260px; left: 38%;
  background: radial-gradient(circle, #c66bff, transparent 70%);
  opacity: 0.3;
  animation: auraFloatC 34s ease-in-out infinite;
}

.cab-aura__noise {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

@keyframes auraFloatA {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(70px, 50px) scale(1.12); }
}
@keyframes auraFloatB {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-60px, 70px) scale(1.1); }
}
@keyframes auraFloatC {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, -60px) scale(1.15); }
}

/* ---- Entrance ---- */
.cabx-rise { animation: cabRise 0.7s cubic-bezier(0.22, 1, 0.36, 1) both; }
.cabx-rise:nth-child(2) { animation-delay: 0.06s; }
.cabx-rise:nth-child(3) { animation-delay: 0.12s; }
.cabx-rise:nth-child(4) { animation-delay: 0.18s; }
@keyframes cabRise {
  from { opacity: 0; transform: translateY(22px); filter: blur(6px); }
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}

/* =====================================================================
   GATE (login)
   ===================================================================== */
.cabg { display: grid; place-items: center; padding: clamp(20px, 6vw, 70px) 0; }
.cabg[hidden] { display: none !important; }

.cabg__inner {
  width: min(680px, 94vw);
  text-align: center;
  animation: cabRise 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.cabg__eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--violet-3);
}

.cabg__title {
  margin: 0 0 16px;
  font-size: clamp(2.4rem, 7vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
}

.cabg__sub {
  margin: 0 auto 30px;
  max-width: 46ch;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.12rem);
}

.cabg__actions { display: flex; flex-direction: column; align-items: center; gap: 12px; }

.cabg__cta {
  display: inline-flex; align-items: center; gap: 11px;
  padding: 16px 34px;
  border: 0; border-radius: 16px;
  font: inherit; font-weight: 700; font-size: 1.05rem; color: #fff;
  cursor: pointer;
  background: var(--grad-btn);
  box-shadow: 0 20px 60px -16px rgba(111, 86, 255, 0.9), inset 0 1px 0 rgba(255,255,255,0.25);
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}
.cabg__cta .ico { width: 20px; height: 20px; }
.cabg__cta:hover { transform: translateY(-3px); box-shadow: 0 30px 80px -16px rgba(111, 86, 255, 1); }

.cabg__app {
  border: 1px solid var(--stroke-strong);
  background: rgba(255,255,255,0.04);
  color: var(--text);
  padding: 13px 26px; border-radius: 14px;
  font: inherit; font-weight: 600; cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.cabg__app[hidden] { display: none !important; }
.cabg__app:hover { transform: translateY(-2px); background: rgba(255,255,255,0.07); }

.cabg__meta {
  margin-top: 30px;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 14px;
  color: var(--muted-2); font-size: 0.88rem;
}
.cabg__meta span { display: inline-flex; align-items: center; gap: 7px; }
.cabg__meta-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(61,220,151,0.18); }
.cabg__meta-sep { width: 4px; height: 4px; border-radius: 50%; background: rgba(164,168,207,0.4); }

/* ---- Orb (shared look) ---- */
.cabg__orb {
  position: relative;
  width: clamp(120px, 22vw, 160px);
  height: clamp(120px, 22vw, 160px);
  margin: 0 auto 26px;
  display: grid; place-items: center;
}
.cabg__orb-ring {
  position: absolute; inset: 0; border-radius: 50%;
  background: conic-gradient(from 0deg, transparent, var(--violet-2) 110deg, var(--blue) 220deg, transparent 340deg);
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 4px), #000 calc(100% - 3px));
  mask: radial-gradient(farthest-side, transparent calc(100% - 4px), #000 calc(100% - 3px));
  animation: orbSpin 7s linear infinite;
}
.cabg__orb-ring--2 {
  inset: 14px;
  background: conic-gradient(from 180deg, transparent, var(--violet-3) 140deg, transparent 300deg);
  animation: orbSpin 11s linear infinite reverse;
  opacity: 0.7;
}
.cabg__orb-core {
  width: 58%; height: 58%; border-radius: 50%;
  display: grid; place-items: center;
  color: #efeaff;
  background: radial-gradient(circle at 35% 30%, rgba(160,140,255,0.5), rgba(20,18,46,0.9));
  box-shadow: inset 0 0 30px rgba(111,86,255,0.6), 0 0 50px -6px rgba(111,86,255,0.7);
}
.cabg__orb-core svg { width: 42%; height: 42%; }

@keyframes orbSpin { to { transform: rotate(360deg); } }

/* =====================================================================
   APP (connected) — non-boxy
   ===================================================================== */
.cabx {
  width: min(1080px, 100%);
  margin: 0 auto;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  padding: clamp(6px, 2vw, 14px) 0 0 !important;
}
.cabx[hidden] { display: none !important; }

/* ---- Hero ---- */
.cabx-top {
  display: flex; align-items: center; gap: clamp(16px, 3vw, 28px);
  padding-bottom: 26px;
}

.cabx-orb {
  position: relative;
  width: clamp(72px, 12vw, 96px);
  height: clamp(72px, 12vw, 96px);
  flex-shrink: 0;
  display: grid; place-items: center;
}
.cabx-orb__ring {
  position: absolute; inset: 0; border-radius: 50%;
  background: conic-gradient(from 0deg, transparent, var(--violet-2) 110deg, var(--blue) 230deg, transparent 350deg);
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 3px), #000 calc(100% - 2px));
  mask: radial-gradient(farthest-side, transparent calc(100% - 3px), #000 calc(100% - 2px));
  animation: orbSpin 7s linear infinite;
}
.cabx-orb__core {
  width: 64%; height: 64%; border-radius: 50%;
  display: grid; place-items: center; color: #efeaff;
  background: radial-gradient(circle at 35% 30%, rgba(160,140,255,0.5), rgba(20,18,46,0.92));
  box-shadow: inset 0 0 22px rgba(111,86,255,0.6), 0 0 40px -8px rgba(111,86,255,0.7);
}
.cabx-orb__core svg { width: 44%; height: 44%; }
.cabx-orb__pulse {
  position: absolute; inset: -6px; border-radius: 50%;
  border: 1px solid rgba(111,86,255,0.5);
  animation: orbPulse 2.8s ease-out infinite;
}
@keyframes orbPulse {
  0% { transform: scale(0.9); opacity: 0.7; }
  100% { transform: scale(1.45); opacity: 0; }
}

.cabx-id { min-width: 0; flex: 1; }
.cabx-hello { color: var(--muted); font-size: 0.85rem; letter-spacing: 0.02em; }
.cabx-name {
  margin: 2px 0 8px;
  font-size: clamp(1.6rem, 3.4vw, 2.3rem);
  letter-spacing: -0.01em;
}

.cabx-addr {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 7px 12px; border-radius: 11px;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,0.03);
  color: var(--muted);
  font-family: "Space Grotesk", monospace;
  font-size: 0.9rem; cursor: pointer; max-width: 100%;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}
.cabx-addr:hover { border-color: var(--stroke-strong); color: var(--text); background: rgba(255,255,255,0.06); }
.cabx-addr__text { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.cabx-addr__copy, .cabx-addr__done { width: 16px; height: 16px; flex-shrink: 0; }
.cabx-addr__done { display: none; color: var(--green); }
.cabx-addr.is-copied { border-color: rgba(61,220,151,0.5); color: var(--green); }
.cabx-addr.is-copied .cabx-addr__copy { display: none; }
.cabx-addr.is-copied .cabx-addr__done { display: block; }

.cabx-status { display: flex; align-items: center; gap: 12px; margin-left: auto; align-self: flex-start; }
.cabx-pill {
  padding: 8px 16px; border-radius: 999px;
  font-size: 0.85rem; font-weight: 600; white-space: nowrap;
  color: #ffd9a8;
  background: rgba(255,170,80,0.12);
  border: 1px solid rgba(255,170,80,0.32);
  box-shadow: 0 0 24px -8px rgba(255,170,80,0.5);
}
.cabx-logout {
  width: 40px; height: 40px; flex-shrink: 0;
  display: grid; place-items: center; border-radius: 11px;
  border: 1px solid var(--stroke); background: rgba(255,255,255,0.03);
  color: var(--muted); cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.cabx-logout[hidden] { display: none !important; }
.cabx-logout svg { width: 20px; height: 20px; }
.cabx-logout:hover { color: #ff9a9a; border-color: rgba(255,120,120,0.4); background: rgba(255,120,120,0.08); }

/* Verified state */
.cabx.is-verified .cabx-orb__ring {
  background: conic-gradient(from 0deg, transparent, var(--green) 120deg, #6cf0c0 240deg, transparent 360deg);
}
.cabx.is-verified .cabx-orb__core { box-shadow: inset 0 0 22px rgba(61,220,151,0.55), 0 0 40px -8px rgba(61,220,151,0.7); }
.cabx.is-verified .cabx-orb__pulse { border-color: rgba(61,220,151,0.5); }
.cabx.is-verified .cabx-pill {
  color: #b6ffd9; background: rgba(61,220,151,0.12);
  border-color: rgba(61,220,151,0.4); box-shadow: 0 0 24px -8px rgba(61,220,151,0.55);
}

/* ---- Floating figures ---- */
.cabx-figures {
  display: flex; align-items: stretch; gap: clamp(14px, 3vw, 34px);
  padding: 22px 0;
  border-top: 1px solid rgba(140,120,255,0.12);
  border-bottom: 1px solid rgba(140,120,255,0.12);
}
.cabx-fig { display: flex; flex-direction: column; gap: 6px; }
.cabx-fig span { color: var(--muted-2); font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.12em; }
.cabx-fig strong { font-size: clamp(1rem, 1.8vw, 1.2rem); font-family: "Sora", sans-serif; }
.cabx-fig__sep { width: 1px; align-self: stretch; background: linear-gradient(transparent, rgba(140,120,255,0.25), transparent); }

/* ---- Sliding nav ---- */
.cabx-nav {
  position: relative;
  display: flex; gap: clamp(4px, 2vw, 26px);
  margin: 28px 0 22px;
  overflow-x: auto;
  scrollbar-width: none;
}
.cabx-nav::-webkit-scrollbar { display: none; }
.cabx-link {
  position: relative;
  padding: 10px 2px;
  border: 0; background: transparent;
  color: var(--muted); font: inherit; font-weight: 600; font-size: 1rem;
  white-space: nowrap; cursor: pointer;
  transition: color 0.25s ease;
}
.cabx-link:hover { color: var(--text); }
.cabx-link.is-active { color: #fff; }
.cabx-nav__ink {
  position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  border-radius: 2px;
  background: var(--grad);
  box-shadow: 0 0 14px rgba(111,86,255,0.8);
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1), width 0.35s cubic-bezier(0.22,1,0.36,1);
}
.cabx-nav::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
  background: rgba(140,120,255,0.14);
}

/* ---- Panels ---- */
.cab-panels { margin-top: 6px; }

/* Overview spotlight */
.cabx-spot {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  padding: clamp(26px, 4vw, 44px);
  background:
    linear-gradient(135deg, rgba(111,86,255,0.18), rgba(54,195,255,0.06) 60%, transparent),
    rgba(14,13,34,0.5);
  border: 1px solid rgba(140,120,255,0.18);
}
.cabx-spot__glow {
  position: absolute; width: 360px; height: 360px; border-radius: 50%;
  top: -160px; right: -80px;
  background: radial-gradient(circle, rgba(111,86,255,0.5), transparent 70%);
  filter: blur(20px); pointer-events: none;
}
.cabx-spot__text { position: relative; max-width: 40ch; }
.cabx-spot__tag {
  display: inline-block; margin-bottom: 12px;
  font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--violet-3);
}
.cabx-spot h2 { margin: 0 0 10px; font-size: clamp(1.5rem, 3.2vw, 2.1rem); letter-spacing: -0.01em; }
.cabx-spot p { margin: 0 0 22px; color: var(--muted); font-size: 1.02rem; }

.cabx-cta {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 13px 24px; border: 0; border-radius: 13px;
  font: inherit; font-weight: 700; color: #fff; cursor: pointer;
  background: var(--grad-btn);
  box-shadow: 0 16px 44px -14px rgba(111,86,255,0.85);
  transition: transform 0.18s ease, box-shadow 0.3s ease;
}
.cabx-cta svg { width: 18px; height: 18px; transition: transform 0.25s ease; }
.cabx-cta:hover { transform: translateY(-2px); box-shadow: 0 24px 60px -14px rgba(111,86,255,1); }
.cabx-cta:hover svg { transform: translateX(4px); }
.cabx-cta--lg { padding: 16px 30px; font-size: 1.05rem; }

/* Overview unlocks (borderless rows) */
.cabx-unlocks { list-style: none; margin: 26px 0 0; padding: 0; }
.cabx-unlocks li {
  display: flex; align-items: center; gap: 16px;
  padding: 18px 4px;
  border-bottom: 1px solid rgba(140,120,255,0.1);
}
.cabx-unlocks li:last-child { border-bottom: 0; }
.cabx-unlocks svg {
  width: 26px; height: 26px; flex-shrink: 0; color: var(--violet-3);
}
.cabx-unlocks strong { display: block; font-size: 1.05rem; }
.cabx-unlocks span { color: var(--muted); font-size: 0.92rem; }

/* Verification steps */
.cabx-verify { max-width: 620px; }
.cabx-verify__head h2 { margin: 0 0 8px; font-size: clamp(1.5rem, 3vw, 2rem); }
.cabx-verify__head p { margin: 0 0 28px; color: var(--muted); font-size: 1.02rem; }
.cabx-steps { list-style: none; margin: 0 0 30px; padding: 0; position: relative; }
.cabx-steps::before {
  content: ""; position: absolute; left: 17px; top: 14px; bottom: 14px; width: 2px;
  background: linear-gradient(var(--violet), rgba(111,86,255,0.1));
}
.cabx-steps li { position: relative; display: flex; gap: 18px; padding: 0 0 26px; }
.cabx-steps li:last-child { padding-bottom: 0; }
.cabx-steps__num {
  position: relative; z-index: 1;
  width: 36px; height: 36px; flex-shrink: 0;
  display: grid; place-items: center; border-radius: 50%;
  font-weight: 700; font-family: "Sora", sans-serif;
  color: #efeaff;
  background: radial-gradient(circle at 35% 30%, rgba(160,140,255,0.55), rgba(24,22,52,0.95));
  border: 1px solid rgba(140,120,255,0.4);
  box-shadow: 0 0 24px -6px rgba(111,86,255,0.7);
}
.cabx-steps strong { display: block; font-size: 1.05rem; }
.cabx-steps span { color: var(--muted); font-size: 0.92rem; }
.cabx-fineprint { margin: 18px 0 0; color: var(--muted-2); font-size: 0.86rem; }

/* Locked panels (frosted with ghost figure) */
.cabx-locked {
  position: relative; overflow: hidden;
  border-radius: 24px;
  min-height: 260px;
  display: flex; align-items: center;
  padding: clamp(26px, 4vw, 46px);
  background: rgba(14,13,34,0.45);
  border: 1px solid rgba(140,120,255,0.16);
}
.cabx-locked__ghost {
  position: absolute; right: clamp(-10px, 2vw, 30px); top: 50%;
  transform: translateY(-50%);
  text-align: center; line-height: 1;
  pointer-events: none; user-select: none;
  filter: blur(2px); opacity: 0.16;
}
.cabx-locked__ghost strong {
  display: block;
  font-family: "Sora", sans-serif; font-weight: 800;
  font-size: clamp(6rem, 20vw, 12rem);
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.cabx-locked__ghost em { font-style: normal; letter-spacing: 0.3em; text-transform: uppercase; color: var(--violet-3); font-size: 1rem; }
.cabx-locked__info { position: relative; max-width: 32ch; }
.cabx-locked__badge {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 6px 13px; border-radius: 999px; margin-bottom: 14px;
  font-size: 0.78rem; font-weight: 600; color: #ffd9a8;
  background: rgba(255,170,80,0.12); border: 1px solid rgba(255,170,80,0.3);
}
.cabx-locked__badge svg { width: 15px; height: 15px; }
.cabx-locked__info h3 { margin: 0 0 8px; font-size: clamp(1.3rem, 2.6vw, 1.7rem); }
.cabx-locked__info p { margin: 0 0 22px; color: var(--muted); font-size: 1rem; }

/* Activity timeline */
.cabx-timeline { list-style: none; margin: 0; padding: 8px 0; position: relative; }
.cabx-timeline::before {
  content: ""; position: absolute; left: 6px; top: 18px; bottom: 18px; width: 2px;
  background: linear-gradient(rgba(61,220,151,0.6), rgba(140,120,255,0.15));
}
.cabx-timeline li { position: relative; display: flex; gap: 20px; padding: 0 0 24px; padding-left: 4px; }
.cabx-timeline li:last-child { padding-bottom: 0; }
.cabx-timeline__dot {
  position: relative; z-index: 1; margin-top: 4px;
  width: 12px; height: 12px; flex-shrink: 0; border-radius: 50%;
  background: var(--green); box-shadow: 0 0 0 5px rgba(61,220,151,0.16);
}
.cabx-timeline li.is-muted .cabx-timeline__dot { background: #ffaa50; box-shadow: 0 0 0 5px rgba(255,170,80,0.16); }
.cabx-timeline strong { display: block; font-size: 1.02rem; }
.cabx-timeline em { font-style: normal; color: var(--muted); font-size: 0.9rem; }

/* ---- Cabinet responsive ---- */
@media (max-width: 760px) {
  .cabx-top { flex-wrap: wrap; }
  .cabx-id { order: 3; flex: 1 1 100%; }
  .cabx-status { margin-left: auto; }
  .cabx-figures { flex-wrap: wrap; gap: 16px 22px; }
  .cabx-fig { flex: 1 1 40%; }
  .cabx-fig__sep { display: none; }
  .cabx-locked__ghost { opacity: 0.1; }
}

@media (max-width: 480px) {
  .cabx-name { font-size: 1.5rem; }
  .cabx-fig { flex: 1 1 100%; }
  .cabx-cta, .cabx-cta--lg { width: 100%; justify-content: center; }
  .cabx-spot { padding: 22px; }
  .cabx-locked { padding: 22px; }
}

@media (prefers-reduced-motion: reduce) {
  .cab-aura__blob,
  .cabg__orb-ring, .cabx-orb__ring, .cabx-orb__pulse,
  .cabx-rise, .cabg__inner { animation: none !important; }
}
