﻿:root {
  --poly: #2E5CFF;
  --poly-hover: #4B74FF;
  --poly-deep: #1E4AE0;
  --bg: #0B0F19;
  --surface: rgba(18, 24, 38, 0.88);
  --surface-solid: #121826;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(46, 92, 255, 0.35);
  --text: #ffffff;
  --muted: #9AA3B5;
  --yes: #00C853;
  --no: #FF5252;
  --radius: 16px;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  --glow: 0 10px 40px rgba(46, 92, 255, 0.28);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  min-height: 100vh;
  min-height: 100dvh;
  font-family: Inter, system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: rgba(46, 92, 255, 0.15);
}

img,
video {
  max-width: 100%;
  height: auto;
}

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

.ambient {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(900px 500px at 50% -10%, rgba(46, 92, 255, 0.32), transparent 60%),
    radial-gradient(700px 420px at 90% 20%, rgba(46, 92, 255, 0.14), transparent 55%),
    radial-gradient(600px 400px at 10% 60%, rgba(130, 71, 229, 0.1), transparent 50%),
    linear-gradient(180deg, #070A12 0%, #0B0F19 45%, #080B14 100%);
}

#bg-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.85;
}

.orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.45;
  animation: orbFloat 14s ease-in-out infinite;
}

.orb-a {
  width: min(48vw, 420px);
  height: min(48vw, 420px);
  top: 8%;
  left: -8%;
  background: radial-gradient(circle, rgba(46, 92, 255, 0.55), transparent 70%);
}

.orb-b {
  width: min(40vw, 360px);
  height: min(40vw, 360px);
  top: 40%;
  right: -10%;
  background: radial-gradient(circle, rgba(91, 127, 255, 0.4), transparent 70%);
  animation-delay: -5s;
}

.orb-c {
  width: min(36vw, 300px);
  height: min(36vw, 300px);
  bottom: 5%;
  left: 30%;
  background: radial-gradient(circle, rgba(130, 71, 229, 0.28), transparent 70%);
  animation-delay: -9s;
}

.grid-fade {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(46, 92, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(46, 92, 255, 0.05) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse at 50% 30%, black 10%, transparent 70%);
  animation: gridDrift 28s linear infinite;
  opacity: 0.55;
}

@keyframes orbFloat {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(24px, -30px, 0) scale(1.08); }
}

@keyframes gridDrift {
  from { background-position: 0 0, 0 0; }
  to { background-position: 72px 72px, 72px 72px; }
}

.stars { display: none; }

.header {
  position: sticky;
  top: 0;
  z-index: 40;
  width: 100%;
  padding: 0.75rem 1rem;
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, padding 0.25s ease;
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0.55rem 0.7rem 0.55rem 0.85rem;
  border-radius: 18px;
  border: 1px solid rgba(46, 92, 255, 0.16);
  background:
    linear-gradient(180deg, rgba(18, 24, 38, 0.82), rgba(10, 14, 24, 0.88));
  backdrop-filter: blur(20px) saturate(1.35);
  -webkit-backdrop-filter: blur(20px) saturate(1.35);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

.header-inner::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 140px;
  background: radial-gradient(circle at 20% 50%, rgba(46, 92, 255, 0.22), transparent 70%);
  pointer-events: none;
}

.header-inner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 12%;
  right: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(139, 166, 255, 0.45), transparent);
  pointer-events: none;
}

.header.is-scrolled .header-inner {
  border-color: rgba(46, 92, 255, 0.28);
  background:
    linear-gradient(180deg, rgba(14, 20, 34, 0.92), rgba(8, 12, 22, 0.95));
  box-shadow:
    0 16px 48px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(46, 92, 255, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.header-nav {
  display: none;
  align-items: center;
  gap: 0.2rem;
  padding: 0.2rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(8, 12, 22, 0.45);
}

.header-nav a {
  position: relative;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  padding: 0.45rem 0.85rem;
  border-radius: 9px;
  transition: color 0.15s ease, background 0.15s ease;
}

.header-nav a:hover {
  color: #fff;
  background: rgba(46, 92, 255, 0.12);
}

.header-nav a:focus-visible {
  outline: 2px solid rgba(46, 92, 255, 0.55);
  outline-offset: 2px;
}

.nav-toggle {
  display: inline-grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 11px;
  background: rgba(8, 12, 22, 0.65);
  color: #E8ECF5;
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.nav-toggle:hover,
.nav-toggle[aria-expanded="true"] {
  border-color: rgba(46, 92, 255, 0.4);
  background: rgba(46, 92, 255, 0.12);
  color: #fff;
}

.nav-toggle:focus-visible {
  outline: 2px solid rgba(46, 92, 255, 0.55);
  outline-offset: 2px;
}

.nav-toggle-bars {
  display: grid;
  gap: 4px;
  width: 16px;
}

.nav-toggle-bars i {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
  transform-origin: center;
}

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

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

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

@media (max-width: 767px) {
  .header-inner {
    flex-wrap: wrap;
    overflow: visible;
  }

  .header-nav {
    display: none;
    order: 3;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0.15rem;
    margin-top: 0.15rem;
    padding: 0.35rem;
    border-radius: 14px;
    border-color: rgba(46, 92, 255, 0.22);
    background: rgba(8, 12, 22, 0.96);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  }

  .header-nav.is-open {
    display: flex;
  }

  .header-nav a {
    padding: 0.85rem 0.95rem;
    font-size: 0.95rem;
    min-height: 44px;
  }
}

@media (min-width: 768px) {
  .header-nav { display: flex; }
  .nav-toggle { display: none; }
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  position: relative;
  z-index: 1;
}

.header-status {
  display: none;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(34, 197, 94, 0.28);
  background: rgba(34, 197, 94, 0.08);
  color: #86efac;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.header-status i {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px #22c55e;
  animation: blink 1.5s ease infinite;
}

@media (min-width: 520px) {
  .header-status { display: inline-flex; }
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  transition: opacity 0.15s ease;
}

.logo:hover {
  opacity: 0.92;
}

.logo-icon {
  width: 32px;
  height: 32px;
  display: block;
  flex-shrink: 0;
  filter: drop-shadow(0 0 12px rgba(46, 92, 255, 0.45));
}

.logo-icon svg,
.logo-icon img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 9px;
}

.logo-text {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
}

.logo-text .poly {
  color: #fff;
}

.logo-text .accent {
  background: linear-gradient(90deg, #8ea6ff, #2E5CFF);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-weight: 700;
  border-radius: 12px;
  transition: transform 0.18s ease, filter 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.06);
}

.btn-launch {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #5B7FFF 0%, #2E5CFF 50%, #1E4AE0 100%);
  color: #fff;
  font-size: 0.86rem;
  font-weight: 700;
  padding: 0.58rem 0.95rem;
  border-radius: 11px;
  box-shadow: 0 10px 28px rgba(46, 92, 255, 0.35);
}

.btn-launch:hover {
  background: linear-gradient(135deg, #6B8AFF 0%, #3D6AFF 50%, #2A56F0 100%);
  box-shadow: 0 14px 34px rgba(46, 92, 255, 0.45);
}

.btn-launch .cta-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
  transform: translateX(-120%);
  animation: finalBtnShine 3.6s ease-in-out infinite;
  pointer-events: none;
}

.hero {
  position: relative;
  z-index: 2;
  min-height: calc(100vh - 72px);
  min-height: calc(100dvh - 72px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 1.25rem 3rem;
  max-width: 920px;
  margin: 0 auto;
}

.partner-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  background: rgba(18, 24, 38, 0.9);
  box-shadow: 0 0 0 1px rgba(46, 92, 255, 0.08);
  margin-bottom: 1.75rem;
}

.partner-icon {
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
}

.partner-icon svg {
  display: block;
}

.partner-label {
  color: #A8B8FF;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.hero h1 {
  margin: 0 0 1.1rem;
  font-size: clamp(2.2rem, 5.8vw, 3.9rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: #fff;
}

.hero h1 span {
  background: linear-gradient(90deg, #5B7FFF, #2E5CFF);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.subtitle {
  margin: 0 0 1.75rem;
  max-width: 560px;
  color: var(--muted);
  font-size: clamp(0.95rem, 2vw, 1.08rem);
  line-height: 1.65;
  font-weight: 400;
}

.btn-cta {
  background: linear-gradient(180deg, #4B74FF 0%, #2E5CFF 50%, #1E4AE0 100%);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  padding: 0.95rem 1.6rem;
  border-radius: 14px;
  box-shadow: var(--glow);
  margin-bottom: 3.5rem;
}

.btn-cta span {
  font-weight: 700;
}

.stats {
  display: flex;
  align-items: stretch;
  justify-content: center;
  width: 100%;
  max-width: 640px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--surface);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
  padding: 1.15rem 0.5rem;
}

.stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  padding: 0.25rem 0.75rem;
}

.stat strong {
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 1.1;
}

.stat strong.green {
  color: #22c55e;
}

.stat span {
  color: #9AA3B5;
  font-size: 0.8rem;
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  align-self: stretch;
  background: rgba(255, 255, 255, 0.1);
  margin: 0.15rem 0;
}

.why {
  position: relative;
  z-index: 2;
  max-width: 980px;
  margin: 0 auto;
  padding: 5rem 1.25rem 6rem;
  text-align: center;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(24, 24, 24, 0.85);
  color: #c4c4c4;
  font-size: 0.8rem;
  font-weight: 500;
}

.trust-icon {
  display: grid;
  place-items: center;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.why h2 {
  margin: 0 0 0.9rem;
  font-size: clamp(1.85rem, 4.5vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #fff;
}

.why h2 span {
  color: #2E5CFF;
}

.why-sub {
  margin: 0 auto 2.5rem;
  max-width: 520px;
  color: #9AA3B5;
  font-size: 1rem;
  line-height: 1.6;
}

.compare {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  text-align: left;
}

.compare-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(18, 24, 38, 0.92);
  padding: 1.5rem 1.4rem 1.35rem;
}

.compare-card h3 {
  margin: 0 0 1.15rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
}

.compare-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1.15rem;
}

.compare-head h3 {
  margin: 0;
}

.better-way {
  flex-shrink: 0;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  background: var(--poly);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  margin-top: 1.15rem;
  text-align: left;
}

.feature-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: rgba(18, 24, 38, 0.92);
  padding: 1.15rem 1.1rem 1.2rem;
}

.feature-icon {
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 0.55rem;
  display: grid;
  place-items: center;
  margin-bottom: 0.85rem;
}

.feature-icon.yellow {
  background: rgba(46, 92, 255, 0.12);
  border: 1px solid rgba(46, 92, 255, 0.35);
}

.feature-icon.blue {
  background: rgba(96, 165, 250, 0.1);
  border: 1px solid rgba(96, 165, 250, 0.35);
}

.feature-icon.green {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.35);
}

.feature-icon.pink {
  background: rgba(232, 121, 249, 0.1);
  border: 1px solid rgba(232, 121, 249, 0.35);
}

.feature-card h4 {
  margin: 0 0 0.4rem;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.feature-card p {
  margin: 0;
  color: #9AA3B5;
  font-size: 0.82rem;
  line-height: 1.5;
}

.feature-meta {
  display: inline-flex;
  margin-top: 0.85rem;
  padding: 0.22rem 0.5rem;
  border-radius: 999px;
  border: 1px solid rgba(46, 92, 255, 0.22);
  background: rgba(46, 92, 255, 0.08);
  color: #A8B8FF;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.loaded {
  position: relative;
  z-index: 2;
  max-width: 980px;
  margin: 0 auto;
  padding: 4rem 1.25rem 5.5rem;
  text-align: center;
}

.loaded-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(46, 92, 255, 0.35);
  background: rgba(46, 92, 255, 0.08);
  color: #2E5CFF;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.loaded h2 {
  margin: 0 0 0.9rem;
  font-size: clamp(1.85rem, 4.5vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #fff;
}

.loaded h2 span {
  color: #2E5CFF;
}

.loaded-sub {
  margin: 0 auto 2.5rem;
  max-width: 520px;
  color: #9AA3B5;
  font-size: 1rem;
  line-height: 1.6;
}

.loaded-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
  text-align: left;
}

.loaded-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: rgba(18, 24, 38, 0.92);
  padding: 1.25rem 1.2rem 1.3rem;
}

.loaded-title {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.55rem;
}

.loaded-check {
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.loaded-card h3 {
  margin: 0;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.loaded-card p {
  margin: 0;
  color: #9AA3B5;
  font-size: 0.88rem;
  line-height: 1.55;
}

@media (min-width: 640px) {
  .loaded-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .loaded-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}

.strategy {
  position: relative;
  z-index: 2;
  max-width: 1060px;
  margin: 0 auto;
  padding: 4rem 1.25rem 5.5rem;
  display: grid;
  gap: 2rem;
  align-items: start;
}

.strategy-copy h2 {
  margin: 0 0 0.85rem;
  font-size: clamp(1.9rem, 4.2vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #fff;
}

.strategy-copy h2 span {
  color: #2E5CFF;
}

.strategy-sub {
  margin: 0 0 1.75rem;
  color: #9AA3B5;
  font-size: 1rem;
  line-height: 1.6;
  max-width: 34rem;
}

.strategy-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.1rem;
}

.strategy-list li {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}

.strategy-icon {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(24, 24, 24, 0.95);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.strategy-list strong {
  display: block;
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}

.strategy-list span:last-child {
  color: #9AA3B5;
  font-size: 0.85rem;
  line-height: 1.45;
}

.bot-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(18, 24, 38, 0.95);
  padding: 1.2rem 1.15rem 1.25rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.bot-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1.15rem;
}

.bot-card-title {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
}

.interactive-badge {
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.15);
  color: #22c55e;
  font-size: 0.7rem;
  font-weight: 700;
}

.bot-row.two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.field {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 1rem;
}

.field-label {
  color: #9AA3B5;
  font-size: 0.78rem;
  font-weight: 500;
}

.field-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.field-value {
  font-size: 0.85rem;
  font-weight: 700;
}

.field-value.green { color: #22c55e; }
.field-value.red { color: #ef4444; }
.field-value.gold { color: #2E5CFF; }

.range {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 999px;
  background: #2a2a2a;
  outline: none;
}

.range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #111;
  cursor: pointer;
  box-shadow: 0 0 0 4px rgba(46, 92, 255, 0.08);
}

.range::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #111;
  cursor: pointer;
  box-shadow: 0 0 0 4px rgba(46, 92, 255, 0.08);
}

.range-green::-webkit-slider-thumb { background: #22c55e; }
.range-green::-moz-range-thumb { background: #22c55e; }
.range-red::-webkit-slider-thumb { background: #ef4444; }
.range-red::-moz-range-thumb { background: #ef4444; }
.range-gold::-webkit-slider-thumb { background: #2E5CFF; }
.range-gold::-moz-range-thumb { background: #2E5CFF; }

.money-input,
.plain-input {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  background: #0B0F19;
  padding: 0.65rem 0.75rem;
}

.money-input span {
  color: #9AA3B5;
  font-size: 0.9rem;
}

.money-input input,
.plain-input {
  width: 100%;
  border: none;
  background: transparent;
  color: #fff;
  font-size: 1rem;
  outline: none;
  padding: 0;
}

.plain-input {
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.65rem 0.75rem;
}

.mode-toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.mode-btn {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  background: #0B0F19;
  color: #9AA3B5;
  padding: 0.7rem 0.75rem;
  font-weight: 600;
  font-size: 0.88rem;
}

.mode-btn.active {
  border-color: #2E5CFF;
  color: #2E5CFF;
  background: rgba(46, 92, 255, 0.08);
}

.bot-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 0.25rem 0 1rem;
}

.entry-head {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: #9AA3B5;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

@media (min-width: 900px) {
  .strategy {
    grid-template-columns: 1fr 1.05fr;
    gap: 2.5rem;
    align-items: center;
  }
}

.mirrored {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  padding: 2.5rem 1.25rem 5.5rem;
}

.proof-panel {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(46, 92, 255, 0.22);
  border-radius: 24px;
  background:
    radial-gradient(700px 240px at 20% -20%, rgba(46, 92, 255, 0.2), transparent 55%),
    linear-gradient(180deg, rgba(22, 30, 48, 0.96), rgba(12, 16, 28, 0.98));
  padding: 1.35rem 1.25rem 1.25rem;
  margin-bottom: 2rem;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
}

.proof-panel-glow {
  position: absolute;
  inset: auto -10% -40% 40%;
  width: 280px;
  height: 220px;
  background: radial-gradient(circle, rgba(130, 71, 229, 0.18), transparent 70%);
  pointer-events: none;
  z-index: -1;
}

.proof-panel-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1.2rem;
}

.proof-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(46, 92, 255, 0.3);
  background: rgba(46, 92, 255, 0.1);
  color: #A8B8FF;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.proof-panel-head p {
  margin: 0;
  color: #9AA3B5;
  font-size: 0.85rem;
}

.proof-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.1rem;
}

.proof-stat {
  text-align: left;
  padding: 1rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(8, 12, 22, 0.55);
}

.proof-stat-icon {
  width: 1.85rem;
  height: 1.85rem;
  border-radius: 0.55rem;
  display: grid;
  place-items: center;
  margin-bottom: 0.65rem;
}

.proof-stat-icon.blue {
  color: #8ea6ff;
  background: rgba(46, 92, 255, 0.14);
  border: 1px solid rgba(46, 92, 255, 0.25);
}

.proof-stat-icon.accent {
  color: #a5b4fc;
  background: rgba(99, 102, 241, 0.14);
  border: 1px solid rgba(99, 102, 241, 0.25);
}

.proof-stat-icon.green {
  color: #4ade80;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.22);
}

.proof-stat strong {
  display: block;
  font-size: clamp(1.35rem, 2.8vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 0.2rem;
}

.proof-stat strong.accent { color: #8ea6ff; }
.proof-stat strong.green { color: #4ade80; }

.proof-stat span {
  display: block;
  color: #c4c4c4;
  font-size: 0.84rem;
  margin-bottom: 0.15rem;
}

.proof-stat small {
  color: #6b7280;
  font-size: 0.72rem;
}

.proof-partners {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 1rem;
}

.partner-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: rgba(8, 12, 22, 0.55);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.partner-card:hover {
  border-color: rgba(46, 92, 255, 0.3);
  transform: translateY(-1px);
}

.partner-card > div {
  flex: 1;
  min-width: 0;
}

.partner-card strong {
  display: block;
  color: #fff;
  font-size: 0.9rem;
  margin-bottom: 0.15rem;
}

.partner-card span {
  color: #9AA3B5;
  font-size: 0.78rem;
}

.partner-chip {
  flex-shrink: 0;
  padding: 0.25rem 0.5rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  color: #A8B8FF;
  background: rgba(46, 92, 255, 0.14);
  border: 1px solid rgba(46, 92, 255, 0.25);
}

.partner-chip.poly {
  color: #c4b5fd;
  background: rgba(130, 71, 229, 0.14);
  border-color: rgba(130, 71, 229, 0.28);
}

.mirrored-grid {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

.live-feed {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(46, 92, 255, 0.22);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(22, 30, 48, 0.96), rgba(12, 16, 28, 0.98));
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.28);
}

.live-feed-glow {
  position: absolute;
  inset: -20% auto auto -10%;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.16), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.live-feed-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.9rem 1rem;
  color: #9AA3B5;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(8, 12, 22, 0.35);
}

.live-feed-title {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.latency-pill {
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(34, 197, 94, 0.28);
  background: rgba(34, 197, 94, 0.1);
  color: #4ade80;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0;
}

.live-dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px #22c55e;
  animation: blink 1.6s ease infinite;
}

.live-feed-list {
  position: relative;
  z-index: 1;
  list-style: none;
  margin: 0;
  padding: 0.25rem 0;
}

.live-feed-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin: 0 0.45rem;
  padding: 0.8rem 0.7rem;
  border-radius: 12px;
  border-bottom: none;
  transition: background 0.2s ease;
}

.live-feed-list li:hover {
  background: rgba(46, 92, 255, 0.08);
}

.live-feed-list li:last-child {
  border-bottom: none;
}

.feed-left {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
  flex: 1;
}

.feed-left > div {
  min-width: 0;
}

.feed-avatar {
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(91, 127, 255, 0.3), rgba(46, 92, 255, 0.1));
  border: 1px solid rgba(46, 92, 255, 0.28);
  display: grid;
  place-items: center;
  font-size: 0.68rem;
  font-weight: 800;
  color: #c7d4ff;
  flex-shrink: 0;
}

.feed-left strong {
  display: block;
  color: #fff;
  font-size: 0.88rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.feed-left span {
  color: #9AA3B5;
  font-size: 0.72rem;
}

.feed-right {
  text-align: right;
  flex-shrink: 0;
}

.feed-right em {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.4rem;
  padding: 0.15rem 0.4rem;
  border-radius: 6px;
  font-style: normal;
  font-weight: 800;
  font-size: 0.72rem;
  margin-bottom: 0.2rem;
}

.feed-right em.yes {
  color: #4ade80;
  background: rgba(34, 197, 94, 0.12);
}

.feed-right em.no {
  color: #f87171;
  background: rgba(239, 68, 68, 0.12);
}

.feed-right span {
  display: block;
  color: #9AA3B5;
  font-size: 0.78rem;
}

.mirrored-copy .mirrored-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(46, 92, 255, 0.28);
  background: rgba(46, 92, 255, 0.1);
  color: #A8B8FF;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 0.9rem;
}

.mirrored-eyebrow img {
  border-radius: 4px;
}

.mirrored-copy h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.9rem, 4vw, 2.65rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.15;
  color: #fff;
}

.mirrored-copy h2 span {
  background: linear-gradient(90deg, #8ea6ff, #2E5CFF);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.mirrored-copy p {
  margin: 0 0 0.9rem;
  color: #c4c4c4;
  font-size: 1.02rem;
  line-height: 1.6;
}

.mirrored-copy p.muted {
  color: #9AA3B5;
  font-size: 0.92rem;
  margin-bottom: 1.25rem;
}

.mirrored-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
  margin-bottom: 1.4rem;
}

.mirrored-points div {
  padding: 0.75rem 0.6rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(18, 24, 38, 0.7);
  text-align: center;
}

.mirrored-points strong {
  display: block;
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 0.15rem;
}

.mirrored-points span {
  color: #9AA3B5;
  font-size: 0.72rem;
}

.mirrored-cta {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-width: 220px;
  margin-bottom: 0;
  padding: 0.95rem 1.4rem;
  border-radius: 14px;
  border: none;
  color: #fff;
  font-size: 0.98rem;
  font-weight: 750;
  background: linear-gradient(135deg, #5B7FFF 0%, #2E5CFF 50%, #1E4AE0 100%);
  box-shadow: 0 14px 36px rgba(46, 92, 255, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.mirrored-cta:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow: 0 18px 44px rgba(46, 92, 255, 0.45);
}

.mirrored-cta .cta-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: translateX(-120%);
  animation: finalBtnShine 3.4s ease-in-out infinite;
}

@media (min-width: 700px) {
  .proof-stats {
    grid-template-columns: repeat(4, 1fr);
  }

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

@media (min-width: 900px) {
  .mirrored-grid {
    grid-template-columns: 1.05fr 1fr;
    gap: 2.25rem;
  }
}

.sync-rank {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  padding: 3.5rem 1.25rem 5.5rem;
  text-align: center;
}

.sync-rank-head {
  max-width: 42rem;
  margin: 0 auto 2.25rem;
}

.sync-rank-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(46, 92, 255, 0.35);
  background: rgba(46, 92, 255, 0.1);
  color: #A8B8FF;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.pulse-dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: #2E5CFF;
  box-shadow: 0 0 10px #2E5CFF;
  animation: blink 1.5s ease infinite;
}

.sync-rank h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.9rem, 4.2vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.15;
  color: #fff;
}

.sync-rank h2 span {
  background: linear-gradient(90deg, #8ea6ff, #2E5CFF);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.sync-rank-sub {
  margin: 0 auto 1.15rem;
  max-width: 560px;
  color: #9AA3B5;
  font-size: 1.02rem;
  line-height: 1.6;
}

.sync-rank-meta {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.45rem 0.65rem;
  color: #9AA3B5;
  font-size: 0.82rem;
}

.sync-rank-meta strong {
  color: #fff;
}

.sync-rank-meta .dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
}

.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #4ade80;
  font-weight: 650;
}

.live-pill i {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px #22c55e;
  animation: blink 1.5s ease infinite;
}

.wallet-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 1.75rem;
  text-align: left;
}

.wallet-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(22, 30, 48, 0.96), rgba(12, 16, 28, 0.98));
  padding: 1.25rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.wallet-card-glow {
  position: absolute;
  inset: -30% -20% auto auto;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(46, 92, 255, 0.25), transparent 70%);
  pointer-events: none;
  z-index: -1;
}

.wallet-card:hover {
  transform: translateY(-4px);
  border-color: rgba(46, 92, 255, 0.4);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.32), 0 0 0 1px rgba(46, 92, 255, 0.12);
}

.wallet-card.rank-1 {
  border-color: rgba(46, 92, 255, 0.45);
  box-shadow:
    0 0 0 1px rgba(46, 92, 255, 0.12) inset,
    0 22px 50px rgba(46, 92, 255, 0.14);
}

.wallet-ribbon {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #5B7FFF, #2E5CFF);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  box-shadow: 0 8px 20px rgba(46, 92, 255, 0.35);
}

.wallet-top {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.15rem;
  padding-right: 4.5rem;
}

.wallet-avatar-wrap {
  position: relative;
  width: 3.1rem;
  height: 3.1rem;
  flex-shrink: 0;
  display: grid;
  place-items: center;
}

.wallet-avatar {
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, rgba(91, 127, 255, 0.4), rgba(46, 92, 255, 0.15));
  color: #c7d4ff;
  font-size: 0.72rem;
  font-weight: 800;
  border: 1px solid rgba(46, 92, 255, 0.35);
  z-index: 1;
}

.wallet-avatar.alt {
  background: linear-gradient(145deg, rgba(99, 102, 241, 0.4), rgba(79, 70, 229, 0.15));
  border-color: rgba(129, 140, 248, 0.4);
  color: #c7d2fe;
}

.wallet-avatar.warm {
  background: linear-gradient(145deg, rgba(245, 158, 11, 0.35), rgba(217, 119, 6, 0.12));
  border-color: rgba(245, 158, 11, 0.4);
  color: #fde68a;
}

.score-ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.wallet-rank {
  position: absolute;
  top: -0.15rem;
  left: -0.15rem;
  z-index: 2;
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 50%;
  background: #2E5CFF;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  display: grid;
  place-items: center;
  box-shadow: 0 0 0 2px #0c101c;
}

.wallet-id {
  min-width: 0;
}

.wallet-id strong {
  display: block;
  color: #fff;
  font-size: 0.98rem;
  margin-bottom: 0.35rem;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  letter-spacing: -0.02em;
}

.wallet-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.risk {
  display: inline-flex;
  padding: 0.18rem 0.5rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
}

.risk.low {
  color: #4ade80;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.2);
}

.risk.med {
  color: #fbbf24;
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.2);
}

.score-pill {
  display: inline-flex;
  padding: 0.18rem 0.5rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  color: #A8B8FF;
  background: rgba(46, 92, 255, 0.12);
  border: 1px solid rgba(46, 92, 255, 0.22);
}

.wallet-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
  margin-bottom: 1.1rem;
  padding: 0.85rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(8, 12, 22, 0.55);
}

.wallet-stats span {
  display: block;
  color: #9AA3B5;
  font-size: 0.7rem;
  margin-bottom: 0.25rem;
}

.wallet-stats strong {
  display: block;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.4rem;
}

.wallet-stats strong.green {
  color: #4ade80;
}

.mini-bar {
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.mini-bar i {
  display: block;
  height: 100%;
  width: var(--w, 50%);
  border-radius: inherit;
  background: linear-gradient(90deg, #2E5CFF, #8ea6ff);
}

.btn-copy-wallet {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.78rem 0.85rem;
  border-radius: 12px;
  border: 1px solid rgba(46, 92, 255, 0.45);
  background: rgba(46, 92, 255, 0.12);
  color: #c7d4ff;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-copy-wallet:hover {
  background: rgba(46, 92, 255, 0.22);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(46, 92, 255, 0.2);
}

.sync-rank-cta {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-width: 220px;
  margin-bottom: 0.9rem;
  padding: 0.95rem 1.45rem;
  border-radius: 14px;
  border: none;
  color: #fff;
  font-size: 0.98rem;
  font-weight: 750;
  background: linear-gradient(135deg, #5B7FFF 0%, #2E5CFF 50%, #1E4AE0 100%);
  box-shadow: 0 14px 36px rgba(46, 92, 255, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.sync-rank-cta:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow: 0 18px 44px rgba(46, 92, 255, 0.45);
}

.sync-rank-cta .cta-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: translateX(-120%);
  animation: finalBtnShine 3.4s ease-in-out infinite;
}

.sync-rank-note {
  margin: 0;
  color: #6b7280;
  font-size: 0.82rem;
}

@media (min-width: 768px) {
  .wallet-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    align-items: stretch;
  }

  .wallet-card.rank-1 {
    transform: translateY(-8px);
  }

  .wallet-card.rank-1:hover {
    transform: translateY(-12px);
  }
}

.testimonials {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  padding: 3.5rem 1.25rem 5.5rem;
  text-align: center;
}

.testimonials-head {
  max-width: 40rem;
  margin: 0 auto 2.25rem;
}

.testimonials-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(42, 171, 238, 0.3);
  background: rgba(42, 171, 238, 0.1);
  color: #7dd3fc;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.testimonials h2 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.9rem, 4.2vw, 2.7rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  color: #fff;
  line-height: 1.15;
}

.testimonials h2 span {
  background: linear-gradient(90deg, #8ea6ff, #2E5CFF);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.testimonials-sub {
  margin: 0 auto 1.1rem;
  color: #9AA3B5;
  font-size: 1.02rem;
  line-height: 1.55;
}

.testimonials-rating {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(46, 92, 255, 0.2);
  background: rgba(46, 92, 255, 0.08);
}

.stars-row {
  display: inline-flex;
  gap: 0.12rem;
}

.testimonials-rating strong {
  color: #fff;
  font-size: 0.9rem;
}

.testimonials-rating span {
  color: #9AA3B5;
  font-size: 0.78rem;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  text-align: left;
}

.testimonial-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(22, 30, 48, 0.95), rgba(14, 18, 30, 0.98));
  padding: 1.35rem 1.25rem 1.2rem;
  min-height: 100%;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.testimonial-card-glow {
  position: absolute;
  inset: auto -20% -40% auto;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(46, 92, 255, 0.22), transparent 70%);
  filter: blur(10px);
  pointer-events: none;
  z-index: -1;
  opacity: 0.7;
  transition: opacity 0.25s ease;
}

.testimonial-card.featured {
  border-color: rgba(46, 92, 255, 0.4);
  box-shadow:
    0 0 0 1px rgba(46, 92, 255, 0.12) inset,
    0 22px 50px rgba(46, 92, 255, 0.12);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(46, 92, 255, 0.4);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(46, 92, 255, 0.15);
}

.testimonial-card:hover .testimonial-card-glow {
  opacity: 1;
}

.testimonial-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.35rem;
}

.quote-mark {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.2rem;
  line-height: 0.7;
  color: rgba(46, 92, 255, 0.55);
  font-weight: 700;
}

.testimonial-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  background: rgba(46, 92, 255, 0.16);
  border: 1px solid rgba(46, 92, 255, 0.3);
  color: #A8B8FF;
  font-size: 0.7rem;
  font-weight: 700;
  white-space: nowrap;
}

.testimonial-tag.soft {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
  color: #9AA3B5;
}

.testimonial-card > p {
  margin: 0 0 1.25rem;
  color: #d5dbe8;
  font-size: 0.98rem;
  line-height: 1.65;
  flex: 1;
}

.testimonial-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
}

.testimonial-avatar {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, rgba(91, 127, 255, 0.35), rgba(46, 92, 255, 0.15));
  border: 1px solid rgba(46, 92, 255, 0.4);
  color: #c7d4ff;
  font-size: 0.72rem;
  font-weight: 800;
  flex-shrink: 0;
  box-shadow: 0 0 16px rgba(46, 92, 255, 0.2);
}

.testimonial-avatar.pink {
  background: linear-gradient(145deg, rgba(232, 121, 249, 0.35), rgba(168, 85, 247, 0.15));
  border-color: rgba(232, 121, 249, 0.4);
  color: #f5d0fe;
  box-shadow: 0 0 16px rgba(232, 121, 249, 0.18);
}

.testimonial-avatar.green {
  background: linear-gradient(145deg, rgba(34, 197, 94, 0.3), rgba(16, 185, 129, 0.12));
  border-color: rgba(34, 197, 94, 0.4);
  color: #bbf7d0;
  box-shadow: 0 0 16px rgba(34, 197, 94, 0.16);
}

.testimonial-user strong {
  display: block;
  color: #fff;
  font-size: 0.9rem;
  margin-bottom: 0.15rem;
}

.testimonial-user span {
  color: #9AA3B5;
  font-size: 0.78rem;
}

.verified {
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  color: #A8B8FF;
  font-size: 0.72rem;
  font-weight: 650;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .testimonial-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

  .testimonial-card.featured {
    transform: translateY(-6px);
  }

  .testimonial-card.featured:hover {
    transform: translateY(-10px);
  }
}

.final-cta {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto;
  padding: 2.5rem 1.25rem 3.5rem;
}

.final-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(46, 92, 255, 0.28);
  border-radius: 28px;
  background:
    radial-gradient(600px 280px at 50% -10%, rgba(46, 92, 255, 0.28), transparent 60%),
    radial-gradient(420px 220px at 90% 80%, rgba(130, 71, 229, 0.12), transparent 55%),
    linear-gradient(180deg, rgba(22, 30, 48, 0.95) 0%, rgba(12, 16, 28, 0.98) 100%);
  padding: 2.4rem 1.6rem 1.85rem;
  text-align: center;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 30px 80px rgba(0, 0, 0, 0.45),
    0 0 60px rgba(46, 92, 255, 0.12);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.final-glow {
  position: absolute;
  inset: -40% auto auto 50%;
  width: 70%;
  height: 55%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(46, 92, 255, 0.35), transparent 70%);
  filter: blur(30px);
  pointer-events: none;
  z-index: -1;
  animation: finalPulse 5s ease-in-out infinite;
}

.final-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    transparent 35%,
    rgba(255, 255, 255, 0.06) 48%,
    transparent 62%
  );
  transform: translateX(-120%);
  animation: finalShine 7s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

.final-card > * {
  position: relative;
  z-index: 1;
}

.final-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  margin-bottom: 1.35rem;
}

.final-icon {
  position: relative;
  width: 3.25rem;
  height: 3.25rem;
  margin: 0;
  border-radius: 1rem;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #5B7FFF 0%, #2E5CFF 55%, #1E4AE0 100%);
  box-shadow: 0 12px 32px rgba(46, 92, 255, 0.4);
}

.final-icon-ring {
  position: absolute;
  inset: -6px;
  border-radius: 1.25rem;
  border: 1px solid rgba(46, 92, 255, 0.45);
  animation: finalRing 2.8s ease-out infinite;
}

.final-live {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(34, 197, 94, 0.3);
  background: rgba(34, 197, 94, 0.1);
  color: #4ade80;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.final-live i {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 10px #22c55e;
  animation: blink 1.5s ease infinite;
}

.final-card h2 {
  margin: 0 0 0.75rem;
  color: #fff;
  font-size: clamp(1.75rem, 4vw, 2.45rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.final-card h2 span {
  background: linear-gradient(90deg, #8ea6ff, #2E5CFF);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.final-lead {
  margin: 0 auto 1.35rem !important;
  max-width: 34rem;
  color: #9AA3B5 !important;
  font-size: 1.02rem !important;
  line-height: 1.6 !important;
}

.final-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
  margin-bottom: 1.25rem;
}

.final-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 0.85rem 0.55rem 0.6rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(8, 12, 22, 0.65);
  text-align: left;
  min-width: 148px;
}

.final-chip img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  border-radius: 6px;
  flex-shrink: 0;
}

.final-chip strong {
  display: block;
  color: #fff;
  font-size: 0.82rem;
  line-height: 1.2;
}

.final-chip span {
  color: #9AA3B5;
  font-size: 0.72rem;
}

.final-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem;
  max-width: 420px;
  margin: 0 auto 1.5rem;
  padding: 0.75rem;
  border-radius: 16px;
  border: 1px solid rgba(46, 92, 255, 0.18);
  background: rgba(46, 92, 255, 0.06);
}

.final-metrics div {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.final-metrics strong {
  color: #fff;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.final-metrics span {
  color: #9AA3B5;
  font-size: 0.72rem;
  font-weight: 500;
}

.final-btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-width: 240px;
  margin-bottom: 1.15rem;
  padding: 1rem 1.6rem;
  border-radius: 14px;
  border: none;
  color: #fff;
  font-size: 1.02rem;
  font-weight: 750;
  background: linear-gradient(135deg, #5B7FFF 0%, #2E5CFF 45%, #1E4AE0 100%);
  box-shadow: 0 14px 40px rgba(46, 92, 255, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.final-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
  box-shadow: 0 18px 48px rgba(46, 92, 255, 0.5);
}

.final-btn-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
  transform: translateX(-120%);
  animation: finalBtnShine 3.2s ease-in-out infinite;
}

.final-perks {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.25rem;
}

.final-perks li {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #9AA3B5;
  font-size: 0.8rem;
  font-weight: 500;
}

@keyframes finalPulse {
  0%, 100% { opacity: 0.55; transform: translateX(-50%) scale(1); }
  50% { opacity: 0.9; transform: translateX(-50%) scale(1.08); }
}

@keyframes finalShine {
  0%, 55% { transform: translateX(-120%); }
  75% { transform: translateX(120%); }
  100% { transform: translateX(120%); }
}

@keyframes finalRing {
  0% { transform: scale(0.92); opacity: 0.8; }
  100% { transform: scale(1.25); opacity: 0; }
}

@keyframes finalBtnShine {
  0%, 40% { transform: translateX(-120%); }
  70% { transform: translateX(120%); }
  100% { transform: translateX(120%); }
}

@media (prefers-reduced-motion: reduce) {
  .final-glow,
  .final-shine,
  .final-icon-ring,
  .final-btn-glow {
    animation: none !important;
  }
}

.site-footer {
  position: relative;
  z-index: 2;
  max-width: 1060px;
  margin: 0 auto;
  padding: 1.5rem 1.25rem 4.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.footer-brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}

.footer-mark {
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 0.35rem;
  background: linear-gradient(180deg, #5B7FFF 0%, #2E5CFF 100%);
}

.footer-brand .logo-text {
  font-size: 0.98rem;
  line-height: 1.1;
}

.footer-copy {
  color: #6b7280;
  font-size: 0.78rem;
  line-height: 1.35;
  margin-left: 0;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: #9AA3B5;
  font-size: 0.85rem;
  transition: color 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

.footer-links a:hover {
  color: #fff;
}

.footer-links .external {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.footer-brand-link {
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(18, 24, 38, 0.7);
}

.compare-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.compare-card li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.95rem;
  line-height: 1.4;
}

.compare-card.bad li {
  color: #9AA3B5;
}

.compare-card.good li {
  color: #fff;
}

.compare-card .x,
.compare-card .check {
  flex-shrink: 0;
  margin-top: 0.1rem;
  display: grid;
  place-items: center;
}

@media (min-width: 640px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .compare {
    grid-template-columns: 1fr 1fr;
    gap: 1.15rem;
  }

  .compare-card {
    padding: 1.65rem 1.6rem 1.5rem;
  }
}

@media (min-width: 960px) {
  .feature-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 0.9rem;
  }
}

@media (max-width: 560px) {
  .header {
    padding: 0.55rem 0.65rem;
    padding-top: max(0.55rem, env(safe-area-inset-top));
    padding-left: max(0.65rem, env(safe-area-inset-left));
    padding-right: max(0.65rem, env(safe-area-inset-right));
  }

  .header-inner {
    padding: 0.4rem 0.45rem 0.4rem 0.6rem;
    border-radius: 14px;
    gap: 0.55rem;
  }

  .btn-launch {
    padding: 0.55rem 0.75rem;
    font-size: 0.8rem;
  }

  .btn-launch svg {
    display: none;
  }

  .hero {
    padding: 1.25rem 1rem 2.25rem;
    padding-bottom: max(2.25rem, env(safe-area-inset-bottom));
    justify-content: flex-start;
    padding-top: 2.75rem;
    min-height: auto;
  }

  .hero h1 {
    font-size: clamp(1.85rem, 8.5vw, 2.45rem);
  }

  .partner-badge {
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 0.35rem;
    max-width: 100%;
  }

  .hero-live {
    width: 100%;
    justify-content: center;
  }

  .hero-actions {
    width: 100%;
    flex-direction: column;
  }

  .btn-cta,
  .btn-secondary {
    width: 100%;
    max-width: none;
    min-height: 48px;
  }

  .stats {
    flex-direction: column;
    gap: 0.85rem;
    padding: 1rem;
    width: 100%;
  }

  .stat-divider {
    width: 100%;
    height: 1px;
  }

  .hero-trust {
    gap: 0.45rem 0.65rem;
  }

  .why,
  .loaded,
  .strategy,
  .mirrored,
  .sync-rank,
  .testimonials,
  .final-cta {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .why {
    padding-top: 3rem;
    padding-bottom: 3.5rem;
  }

  .compare-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .bot-row.two {
    grid-template-columns: 1fr;
  }

  .bot-card {
    padding: 1rem 0.9rem 1.1rem;
  }

  .mirrored-points {
    grid-template-columns: 1fr;
  }

  .partner-chip {
    display: none;
  }

  .mirrored-cta,
  .sync-rank-cta,
  .final-btn {
    width: 100%;
    min-width: 0;
  }

  .final-metrics {
    max-width: 100%;
    gap: 0.35rem;
    padding: 0.65rem 0.45rem;
  }

  .final-metrics strong {
    font-size: 0.92rem;
  }

  .final-metrics span {
    font-size: 0.65rem;
  }

  .final-chip {
    flex: 1 1 140px;
    justify-content: flex-start;
    min-width: 0;
  }

  .wallet-top {
    padding-right: 0;
  }

  .wallet-ribbon {
    position: static;
    display: inline-flex;
    margin-bottom: 0.85rem;
  }

  .wallet-stats {
    gap: 0.4rem;
    padding: 0.7rem 0.55rem;
  }

  .wallet-stats span {
    font-size: 0.62rem;
  }

  .wallet-stats strong {
    font-size: 0.85rem;
  }

  .live-feed-list li {
    padding: 0.7rem 0.55rem;
    gap: 0.5rem;
  }

  .feed-left strong {
    font-size: 0.8rem;
  }

  .site-footer {
    padding: 1.25rem 1rem max(4rem, calc(2rem + env(safe-area-inset-bottom)));
    flex-direction: column;
    align-items: flex-start;
  }

  .access-gate {
    padding: 1.25rem 1rem max(2.5rem, env(safe-area-inset-bottom));
  }

  .access-partners {
    flex-wrap: wrap;
    justify-content: center;
  }

  .setup-header {
    flex-direction: column;
  }

  .setup-brand-row {
    width: 100%;
  }

  .setup-progress {
    grid-template-columns: 1fr 1fr;
  }

  .setup-hotkey {
    flex-direction: column;
    align-items: flex-start;
  }

  .setup-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .setup-footer-actions {
    width: 100%;
  }

  .setup-secondary,
  .setup-primary {
    flex: 1;
    justify-content: center;
    min-height: 48px;
  }
}

@media (max-width: 380px) {
  .logo-text {
    font-size: 1.05rem;
  }

  .btn-launch-label {
    font-size: 0.75rem;
  }

  .final-metrics {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .final-metrics div {
    flex-direction: row;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.5rem;
    padding: 0.15rem 0.35rem;
  }

  .setup-prog-label {
    font-size: 0.65rem;
  }

  .access-metrics {
    grid-template-columns: 1fr;
  }
}

@media (hover: none) {
  .wallet-card:hover,
  .testimonial-card:hover,
  .feature-card:hover,
  .compare-card:hover,
  .loaded-card:hover,
  .btn:hover {
    transform: none;
  }
}

.compare-card,
.feature-card,
.loaded-card,
.wallet-card,
.testimonial-card,
.bot-card,
.live-feed,
.proof-panel,
.final-card {
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.compare-card:hover,
.feature-card:hover,
.loaded-card:hover {
  transform: translateY(-3px);
  border-color: rgba(46, 92, 255, 0.35);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28), 0 0 0 1px rgba(46, 92, 255, 0.12);
}

.footer-mark {
  background: linear-gradient(180deg, #4B74FF 0%, #2E5CFF 100%) !important;
}

.range-gold::-webkit-slider-thumb { background: #2E5CFF; }
.range-gold::-moz-range-thumb { background: #2E5CFF; }
.field-value.gold { color: #2E5CFF; }

.mode-btn.active {
  border-color: #2E5CFF !important;
  color: #fff !important;
  background: rgba(46, 92, 255, 0.16) !important;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.footer-mark {
  width: auto !important;
  height: auto !important;
  background: none !important;
  display: grid;
  place-items: center;
  filter: drop-shadow(0 0 10px rgba(46, 92, 255, 0.4));
}

.footer-mark img {
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 6px;
}

.btn-cta span,
.final-btn {
  letter-spacing: -0.01em;
}

.hero h1 {
  text-shadow: 0 0 60px rgba(46, 92, 255, 0.2);
}

.partner-badge,
.stats,
.bot-card,
.live-feed,
.proof-panel,
.final-card {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

@media (prefers-reduced-motion: reduce) {
  .orb,
  .grid-fade,
  .reveal {
    animation: none !important;
    transition: none !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

.brand-logo {
  display: block;
  object-fit: contain;
  flex-shrink: 0;
}

.brand-logo.pm {
  border-radius: 5px;
}

.brand-logo.lg {
  width: 28px;
  height: 28px;
}

.brand-logo.poly.lg {
  width: 30px;
  height: 26px;
}

.brand-logo-wrap {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.65rem;
  background: rgba(130, 71, 229, 0.12);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.partner-card > .brand-logo.pm.lg {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.65rem;
  background: rgba(46, 92, 255, 0.12);
  padding: 0.35rem;
  box-sizing: border-box;
}

.footer-brand-link {
  display: inline-flex;
  align-items: center;
  opacity: 0.9;
  transition: opacity 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

.footer-brand-link:hover {
  opacity: 1;
  border-color: rgba(46, 92, 255, 0.35);
  background: rgba(46, 92, 255, 0.1);
}

.footer-brand-link img {
  display: block;
  height: 18px;
  width: auto;
}

.trust-badge .brand-logo {
  margin-right: 0.1rem;
}

.brand-logo.poly {
  width: auto;
  height: auto;
  max-height: 22px;
}

.brand-logo.poly.lg {
  max-height: 26px;
  width: 28px;
  height: 25px;
}

.brand-logo-wrap.purple {
  background: rgba(130, 71, 229, 0.15);
  border: 1px solid rgba(130, 71, 229, 0.25);
}

.footer-brand-link {
  gap: 0.4rem;
  color: #9AA3B5;
  font-size: 0.85rem;
  font-weight: 500;
}

.footer-polygon {
  display: block;
  width: 22px;
  height: 20px;
}

/* —— Early sections: modern upgrade —— */

.hero {
  max-width: 980px;
  padding: 2.5rem 1.25rem 3.5rem;
  isolation: isolate;
}

.hero-glow {
  position: absolute;
  inset: 0% 5% auto;
  height: 420px;
  background:
    radial-gradient(ellipse at 50% 35%, rgba(46, 92, 255, 0.34), transparent 58%),
    radial-gradient(ellipse at 22% 70%, rgba(130, 71, 229, 0.14), transparent 55%),
    radial-gradient(ellipse at 78% 65%, rgba(34, 197, 94, 0.08), transparent 50%);
  pointer-events: none;
  z-index: -2;
  filter: blur(10px);
  animation: heroGlowPulse 6s ease-in-out infinite;
}

@keyframes heroGlowPulse {
  0%, 100% { opacity: 0.85; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.04); }
}

.hero-rings {
  position: absolute;
  top: 42%;
  left: 50%;
  width: min(560px, 90vw);
  height: min(560px, 90vw);
  transform: translate(-50%, -52%);
  pointer-events: none;
  z-index: -1;
}

.hero-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(46, 92, 255, 0.14);
  box-shadow: inset 0 0 40px rgba(46, 92, 255, 0.04);
}

.hero-ring.r1 {
  inset: 8%;
  animation: heroRingSpin 28s linear infinite;
  border-style: dashed;
  border-color: rgba(46, 92, 255, 0.22);
}

.hero-ring.r2 {
  inset: 20%;
  animation: heroRingSpin 40s linear infinite reverse;
  border-color: rgba(139, 166, 255, 0.12);
}

.hero-ring.r3 {
  inset: 34%;
  border-color: rgba(46, 92, 255, 0.1);
}

.hero-core {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 88px;
  height: 88px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(46, 92, 255, 0.28), transparent 70%);
  filter: blur(2px);
  animation: heroGlowPulse 4.5s ease-in-out infinite;
}

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

.hero-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1.15rem;
  animation: heroRise 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-brand-mark {
  width: 42px;
  height: 42px;
  display: block;
  filter: drop-shadow(0 0 18px rgba(46, 92, 255, 0.55));
}

.hero-brand-mark svg,
.hero-brand-mark img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 12px;
}

.hero-brand-name {
  font-size: clamp(1.55rem, 3.5vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #fff;
  line-height: 1;
}

.hero-brand-name span {
  background: linear-gradient(90deg, #8ea6ff, #2E5CFF);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  margin-bottom: 1.35rem;
  animation: heroRise 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.05s both;
}

.partner-badge {
  margin-bottom: 0;
  padding: 0.4rem 0.8rem;
  background: rgba(14, 20, 34, 0.85);
  border-color: rgba(46, 92, 255, 0.28);
  box-shadow:
    0 0 0 1px rgba(46, 92, 255, 0.06),
    0 12px 32px rgba(0, 0, 0, 0.25);
}

.partner-label {
  color: #A8B8FF;
  font-size: 0.78rem;
  font-weight: 650;
}

.partner-label.soft {
  color: #9AA3B5;
  font-weight: 550;
}

.meta-sep {
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.14);
  margin: 0 0.15rem;
}

.hero-live {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0;
  padding: 0.38rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(34, 197, 94, 0.28);
  background: rgba(34, 197, 94, 0.08);
  color: #86efac;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.hero-live i {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 10px #22c55e;
  animation: blink 1.5s ease infinite;
}

.hero h1 {
  max-width: 16ch;
  margin: 0 auto 1rem;
  font-size: clamp(2.35rem, 6.2vw, 4.15rem);
  text-shadow: 0 0 80px rgba(46, 92, 255, 0.28);
  animation: heroRise 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.1s both;
}

.hero h1 span {
  background: linear-gradient(90deg, #8ea6ff, #2E5CFF 55%, #5B7FFF);
  -webkit-background-clip: text;
  background-clip: text;
}

.subtitle {
  margin: 0 auto 1.85rem;
  max-width: 34rem;
  color: #B4BDCE;
  animation: heroRise 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.16s both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2.25rem;
  animation: heroRise 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.22s both;
}

.btn-cta {
  position: relative;
  overflow: hidden;
  margin-bottom: 0;
  background: linear-gradient(135deg, #5B7FFF 0%, #2E5CFF 50%, #1E4AE0 100%);
  box-shadow: 0 14px 36px rgba(46, 92, 255, 0.35);
}

.btn-cta .cta-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
  transform: translateX(-120%);
  animation: finalBtnShine 3.4s ease-in-out infinite;
  pointer-events: none;
}

.btn-secondary {
  padding: 0.95rem 1.35rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(18, 24, 38, 0.75);
  color: #E8ECF5;
  font-size: 0.95rem;
  font-weight: 650;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.btn-secondary:hover {
  border-color: rgba(46, 92, 255, 0.4);
  background: rgba(46, 92, 255, 0.1);
  color: #fff;
}

.stats {
  position: relative;
  overflow: hidden;
  border-color: rgba(46, 92, 255, 0.2);
  background:
    radial-gradient(420px 120px at 50% -40%, rgba(46, 92, 255, 0.18), transparent 60%),
    linear-gradient(180deg, rgba(22, 30, 48, 0.94), rgba(12, 16, 28, 0.97));
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.32), 0 0 0 1px rgba(46, 92, 255, 0.08);
  max-width: 700px;
  animation: heroRise 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.28s both;
}

.stats::before {
  content: "";
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(139, 166, 255, 0.5), transparent);
}

.stat {
  gap: 0.35rem;
}

.stat-icon {
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 0.45rem;
  display: grid;
  place-items: center;
  margin-bottom: 0.15rem;
  background: rgba(46, 92, 255, 0.12);
  border: 1px solid rgba(46, 92, 255, 0.22);
}

.stat-icon.green {
  background: rgba(34, 197, 94, 0.1);
  border-color: rgba(34, 197, 94, 0.25);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  margin-top: 1.15rem;
  color: #7E8799;
  font-size: 0.78rem;
  font-weight: 550;
  animation: heroRise 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.34s both;
}

.hero-trust .dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
}

@keyframes heroRise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-glow,
  .hero-ring,
  .hero-core,
  .hero-brand,
  .hero-meta,
  .hero h1,
  .subtitle,
  .hero-actions,
  .stats,
  .hero-trust {
    animation: none !important;
  }
}

.why-head {
  max-width: 42rem;
  margin: 0 auto 2.5rem;
}

.why-head .why-sub {
  margin-bottom: 0;
}

.why h2 span {
  background: linear-gradient(90deg, #8ea6ff, #2E5CFF);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.trust-badge {
  border-color: rgba(46, 92, 255, 0.18);
  background: rgba(14, 20, 34, 0.88);
  color: #C8D0E0;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

.compare-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border-radius: 20px;
  border-color: rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(22, 30, 48, 0.95), rgba(12, 16, 28, 0.98));
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
}

.compare-card-glow {
  position: absolute;
  inset: auto -20% -45% 30%;
  width: 220px;
  height: 180px;
  pointer-events: none;
  z-index: -1;
}

.compare-card.bad .compare-card-glow {
  background: radial-gradient(circle, rgba(239, 68, 68, 0.16), transparent 70%);
}

.compare-card.good .compare-card-glow {
  background: radial-gradient(circle, rgba(46, 92, 255, 0.22), transparent 70%);
}

.compare-card.good {
  border-color: rgba(46, 92, 255, 0.28);
}

.compare-label {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0.55rem;
  padding: 0.22rem 0.55rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.bad-label {
  color: #fca5a5;
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.28);
}

.good-label {
  color: #A8B8FF;
  background: rgba(46, 92, 255, 0.12);
  border: 1px solid rgba(46, 92, 255, 0.28);
}

.compare-head .compare-label {
  margin-bottom: 0.4rem;
}

.better-way {
  background: linear-gradient(135deg, #5B7FFF, #2E5CFF);
  box-shadow: 0 6px 18px rgba(46, 92, 255, 0.35);
}

.feature-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  border-color: rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(22, 30, 48, 0.94), rgba(12, 16, 28, 0.98));
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(46, 92, 255, 0.45), transparent);
  opacity: 0.7;
}

.loaded-head {
  max-width: 42rem;
  margin: 0 auto 2.5rem;
}

.loaded-head .loaded-sub {
  margin-bottom: 0;
}

.loaded-badge {
  border-color: rgba(46, 92, 255, 0.35);
  background: rgba(46, 92, 255, 0.1);
  color: #A8B8FF;
}

.loaded h2 span {
  background: linear-gradient(90deg, #8ea6ff, #2E5CFF);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.loaded-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border-radius: 18px;
  border-color: rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(22, 30, 48, 0.95), rgba(12, 16, 28, 0.98));
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.24);
  padding: 1.35rem 1.25rem 1.4rem;
}

.loaded-card-glow {
  position: absolute;
  inset: auto -25% -50% 40%;
  width: 180px;
  height: 140px;
  background: radial-gradient(circle, rgba(46, 92, 255, 0.2), transparent 70%);
  pointer-events: none;
  z-index: -1;
}

.loaded-card:nth-child(2) .loaded-card-glow,
.loaded-card:nth-child(5) .loaded-card-glow {
  background: radial-gradient(circle, rgba(34, 197, 94, 0.14), transparent 70%);
}

.loaded-card:nth-child(3) .loaded-card-glow,
.loaded-card:nth-child(6) .loaded-card-glow {
  background: radial-gradient(circle, rgba(130, 71, 229, 0.16), transparent 70%);
}

.loaded-check {
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 0.45rem;
  background: rgba(46, 92, 255, 0.12);
  border: 1px solid rgba(46, 92, 255, 0.28);
}

.strategy-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 1rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(46, 92, 255, 0.35);
  background: rgba(46, 92, 255, 0.1);
  color: #A8B8FF;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.strategy-copy h2 span {
  background: linear-gradient(90deg, #8ea6ff, #2E5CFF);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.strategy-icon {
  border-color: rgba(46, 92, 255, 0.28);
  background: rgba(46, 92, 255, 0.1);
  box-shadow: 0 0 20px rgba(46, 92, 255, 0.12);
}

.strategy-list li {
  padding: 0.85rem 0.9rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(14, 20, 34, 0.55);
  transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.strategy-list li:hover {
  border-color: rgba(46, 92, 255, 0.28);
  background: rgba(46, 92, 255, 0.06);
  transform: translateX(2px);
}

.bot-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border-radius: 22px;
  border-color: rgba(46, 92, 255, 0.24);
  background:
    radial-gradient(520px 200px at 15% -10%, rgba(46, 92, 255, 0.18), transparent 55%),
    linear-gradient(180deg, rgba(22, 30, 48, 0.97), rgba(12, 16, 28, 0.99));
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(46, 92, 255, 0.08);
  padding: 1.35rem 1.25rem 1.4rem;
}

.bot-card-glow {
  position: absolute;
  inset: auto -15% -35% 45%;
  width: 260px;
  height: 200px;
  background: radial-gradient(circle, rgba(130, 71, 229, 0.18), transparent 70%);
  pointer-events: none;
  z-index: -1;
}

.interactive-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border: 1px solid rgba(34, 197, 94, 0.3);
  background: rgba(34, 197, 94, 0.12);
}

.interactive-badge i {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px #22c55e;
  animation: blink 1.5s ease infinite;
}

.money-input,
.plain-input {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(8, 12, 22, 0.75);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.money-input:focus-within,
.plain-input:focus {
  border-color: rgba(46, 92, 255, 0.45);
  box-shadow: 0 0 0 3px rgba(46, 92, 255, 0.12);
}

.mode-btn {
  background: rgba(8, 12, 22, 0.75);
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.range {
  background: rgba(255, 255, 255, 0.08);
}

/* —— Access gate —— */

.access-gate {
  position: relative;
  z-index: 2;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: calc(100dvh - 88px);
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 1.5rem 1.25rem 3rem;
  overflow: hidden;
}

body.view-access #landing {
  display: none;
}

body.view-access .access-gate {
  display: flex;
}

body.view-access .header-nav {
  visibility: hidden;
  pointer-events: none;
}

body.view-access .nav-toggle {
  visibility: hidden;
  pointer-events: none;
}

.access-scene {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.access-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
}

.access-orb.a {
  width: 420px;
  height: 420px;
  top: -8%;
  left: 50%;
  transform: translateX(-55%);
  background: radial-gradient(circle, rgba(46, 92, 255, 0.35), transparent 70%);
  animation: heroGlowPulse 6s ease-in-out infinite;
}

.access-orb.b {
  width: 280px;
  height: 280px;
  bottom: 5%;
  right: 12%;
  background: radial-gradient(circle, rgba(130, 71, 229, 0.22), transparent 70%);
  animation: heroGlowPulse 7.5s ease-in-out infinite reverse;
}

.access-ring {
  position: absolute;
  top: 48%;
  left: 50%;
  border-radius: 50%;
  border: 1px solid rgba(46, 92, 255, 0.16);
  transform: translate(-50%, -50%);
}

.access-ring.r1 {
  width: min(640px, 88vw);
  height: min(640px, 88vw);
  border-style: dashed;
  animation: heroRingSpin 36s linear infinite;
}

.access-ring.r2 {
  width: min(420px, 62vw);
  height: min(420px, 62vw);
  border-color: rgba(139, 166, 255, 0.12);
  animation: heroRingSpin 48s linear infinite reverse;
}

.access-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(46, 92, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(46, 92, 255, 0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at 50% 45%, black 20%, transparent 70%);
  opacity: 0.55;
}

.access-shell {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 520px;
  display: flex;
  flex-direction: column;
}

.access-back {
  align-self: center;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1.1rem;
  padding: 0.35rem 0.85rem 0.35rem 0.35rem;
  border: 1px solid rgba(46, 92, 255, 0.22);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(22, 30, 48, 0.88), rgba(12, 16, 28, 0.92));
  color: #C8D0E0;
  box-shadow:
    0 10px 28px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  cursor: pointer;
  transition:
    color 0.18s ease,
    border-color 0.18s ease,
    background 0.18s ease,
    transform 0.18s ease,
    box-shadow 0.18s ease;
}

.access-back-icon {
  width: 1.85rem;
  height: 1.85rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(46, 92, 255, 0.16);
  border: 1px solid rgba(46, 92, 255, 0.3);
  color: #A8B8FF;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.access-back-icon svg {
  display: block;
}

.access-back-text {
  display: flex;
  align-items: center;
  line-height: 1;
  padding-right: 0.35rem;
}

.access-back-text strong {
  color: #fff;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.access-back:hover {
  border-color: rgba(46, 92, 255, 0.45);
  background:
    linear-gradient(180deg, rgba(46, 92, 255, 0.16), rgba(18, 24, 38, 0.95));
  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.32),
    0 0 0 1px rgba(46, 92, 255, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transform: translateX(-3px);
}

.access-back:hover .access-back-icon {
  transform: translateX(-2px);
  background: rgba(46, 92, 255, 0.28);
  border-color: rgba(46, 92, 255, 0.5);
  color: #fff;
}

.access-back:focus-visible {
  outline: 2px solid rgba(46, 92, 255, 0.55);
  outline-offset: 3px;
}

.access-back:active {
  transform: translateX(-1px) scale(0.98);
}

.access-card {
  width: 100%;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(46, 92, 255, 0.3);
  border-radius: 28px;
  background:
    radial-gradient(520px 240px at 50% -15%, rgba(46, 92, 255, 0.3), transparent 60%),
    radial-gradient(360px 180px at 95% 100%, rgba(130, 71, 229, 0.14), transparent 55%),
    linear-gradient(180deg, rgba(22, 30, 48, 0.97), rgba(10, 14, 24, 0.99));
  padding: 1.65rem 1.4rem 1.5rem;
  text-align: center;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 32px 80px rgba(0, 0, 0, 0.48),
    0 0 60px rgba(46, 92, 255, 0.14);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  animation: heroRise 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.access-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(139, 166, 255, 0.55), transparent);
  z-index: 2;
}

.access-glow {
  position: absolute;
  inset: -30% auto auto 50%;
  width: 70%;
  height: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(46, 92, 255, 0.34), transparent 70%);
  filter: blur(28px);
  pointer-events: none;
  z-index: -1;
  animation: finalPulse 5s ease-in-out infinite;
}

.access-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 35%, rgba(255, 255, 255, 0.05) 48%, transparent 62%);
  transform: translateX(-120%);
  animation: finalShine 7s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

.access-card > * {
  position: relative;
  z-index: 1;
}

.access-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.15rem;
  text-align: left;
}

.access-brand-mark {
  width: 2.55rem;
  height: 2.55rem;
  flex-shrink: 0;
  filter: drop-shadow(0 0 16px rgba(46, 92, 255, 0.45));
}

.access-brand-mark svg,
.access-brand-mark img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 10px;
}

.access-brand strong {
  display: block;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.access-brand strong span {
  background: linear-gradient(90deg, #8ea6ff, #2E5CFF);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.access-brand em {
  display: block;
  margin-top: 0.15rem;
  color: #7E8799;
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.access-steps {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.35rem;
  margin-bottom: 1.35rem;
  padding: 0.55rem 0.65rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(8, 12, 22, 0.55);
}

.access-step {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #6b7280;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.access-step span {
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.62rem;
}

.access-step.active {
  color: #A8B8FF;
}

.access-step.active span {
  border-color: rgba(46, 92, 255, 0.5);
  background: rgba(46, 92, 255, 0.18);
  color: #fff;
  box-shadow: 0 0 12px rgba(46, 92, 255, 0.35);
}

.access-step.done {
  color: #86efac;
}

.access-step.done span {
  border-color: rgba(34, 197, 94, 0.45);
  background: rgba(34, 197, 94, 0.16);
  color: #86efac;
}

.access-step-line {
  flex: 1;
  height: 1px;
  min-width: 0.5rem;
  background: rgba(255, 255, 255, 0.08);
}

.access-step-line.on {
  background: linear-gradient(90deg, rgba(34, 197, 94, 0.5), rgba(46, 92, 255, 0.5));
}

.access-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  margin-bottom: 1.1rem;
}

.access-icon {
  position: relative;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 1rem;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #5B7FFF 0%, #2E5CFF 55%, #1E4AE0 100%);
  box-shadow: 0 12px 32px rgba(46, 92, 255, 0.4);
}

.access-icon.success {
  background: linear-gradient(145deg, #4ade80 0%, #22c55e 55%, #16a34a 100%);
  box-shadow: 0 12px 32px rgba(34, 197, 94, 0.35);
}

.access-icon-ring {
  position: absolute;
  inset: -6px;
  border-radius: 1.25rem;
  border: 1px solid rgba(46, 92, 255, 0.45);
  animation: finalRing 2.8s ease-out infinite;
}

.access-icon.success .access-icon-ring {
  border-color: rgba(34, 197, 94, 0.45);
}

.access-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(46, 92, 255, 0.3);
  background: rgba(46, 92, 255, 0.1);
  color: #A8B8FF;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.access-badge.live {
  border-color: rgba(34, 197, 94, 0.3);
  background: rgba(34, 197, 94, 0.1);
  color: #4ade80;
}

.access-badge i {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 8px currentColor;
  animation: blink 1.5s ease infinite;
}

.access-gate h2 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.55rem, 4vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.2;
  color: #fff;
}

.access-gate h2 span {
  background: linear-gradient(90deg, #8ea6ff, #2E5CFF);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.access-lead {
  margin: 0 auto 1.2rem;
  max-width: 28rem;
  color: #9AA3B5;
  font-size: 0.92rem;
  line-height: 1.6;
}

.access-partners {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem;
  margin-bottom: 1.35rem;
}

.access-partner {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(46, 92, 255, 0.22);
  background: rgba(46, 92, 255, 0.08);
  color: #C8D0E0;
  font-size: 0.72rem;
  font-weight: 650;
}

.access-partner.soft {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: #9AA3B5;
}

.access-partner img {
  display: block;
  object-fit: contain;
}

.access-form {
  text-align: left;
  margin: 0 auto 0.25rem;
  max-width: 100%;
}

.access-field {
  display: grid;
  gap: 0.45rem;
}

.access-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.access-label {
  color: #9AA3B5;
  font-size: 0.78rem;
  font-weight: 600;
}

.access-hint {
  color: #6b7280;
  font-size: 0.68rem;
  font-weight: 550;
}

.access-input-wrap {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.2rem 0.7rem 0.2rem 0.95rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(8, 12, 22, 0.85);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.access-input-wrap:focus-within {
  border-color: rgba(46, 92, 255, 0.55);
  box-shadow: 0 0 0 3px rgba(46, 92, 255, 0.16), 0 0 24px rgba(46, 92, 255, 0.12);
}

.access-input-wrap.is-error {
  border-color: rgba(239, 68, 68, 0.55);
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.12);
  animation: accessShake 0.4s ease;
}

@keyframes accessShake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-5px); }
  75% { transform: translateX(5px); }
}

.access-input-wrap input {
  flex: 1;
  min-width: 0;
  border: none;
  background: transparent;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  padding: 0.9rem 0;
  outline: none;
  font-variant-numeric: tabular-nums;
}

.access-input-wrap input::placeholder {
  color: #4b5563;
  letter-spacing: 0.28em;
  font-weight: 600;
}

.access-toggle {
  position: relative;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.04);
  color: #A8B8FF;
  cursor: pointer;
  transition: color 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

.access-toggle svg {
  display: block;
  grid-area: 1 / 1;
  pointer-events: none;
}

.access-toggle .icon-hide {
  opacity: 0;
  visibility: hidden;
}

.access-toggle.is-on .icon-show {
  opacity: 0;
  visibility: hidden;
}

.access-toggle.is-on .icon-hide {
  opacity: 1;
  visibility: visible;
}

.access-toggle:hover {
  color: #fff;
  border-color: rgba(46, 92, 255, 0.4);
  background: rgba(46, 92, 255, 0.14);
}

.access-toggle:focus-visible {
  outline: 2px solid rgba(46, 92, 255, 0.55);
  outline-offset: 2px;
}

.access-lock-icon {
  flex-shrink: 0;
}

.access-error {
  margin: 0.7rem 0 0;
  color: #fca5a5;
  font-size: 0.82rem;
  font-weight: 550;
}

.access-submit {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  max-width: none;
  margin: 1.1rem auto 0;
  padding: 1rem 1.4rem;
  border: none;
  border-radius: 14px;
  color: #fff;
  font-size: 0.98rem;
  font-weight: 750;
  background: linear-gradient(135deg, #5B7FFF 0%, #2E5CFF 50%, #1E4AE0 100%);
  box-shadow: 0 14px 36px rgba(46, 92, 255, 0.38);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.access-unlocked .access-submit {
  margin-top: 0.35rem;
  text-decoration: none;
}

.access-submit:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow: 0 18px 44px rgba(46, 92, 255, 0.48);
}

.access-submit:disabled {
  opacity: 0.7;
  cursor: wait;
  transform: none;
}

.access-submit .cta-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
  transform: translateX(-120%);
  animation: finalBtnShine 3.4s ease-in-out infinite;
  pointer-events: none;
}

.access-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-top: 1.25rem;
  padding-top: 1.15rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.access-trust > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  padding: 0.65rem 0.35rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(8, 12, 22, 0.4);
  color: #9AA3B5;
  font-size: 0.68rem;
  font-weight: 600;
}

.access-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.55rem;
  margin: 0 0 1.15rem;
}

.access-metrics > div {
  padding: 0.85rem 0.5rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(8, 12, 22, 0.5);
}

.access-metrics strong {
  display: block;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 0.15rem;
}

.access-metrics span {
  color: #7E8799;
  font-size: 0.68rem;
  font-weight: 600;
}

.access-unlocked {
  animation: heroRise 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@media (min-width: 560px) {
  .access-card {
    padding: 1.85rem 1.75rem 1.65rem;
  }
}

@media (max-width: 420px) {
  .access-step {
    font-size: 0;
    gap: 0;
  }

  .access-step span {
    font-size: 0.62rem;
  }

  .access-trust {
    grid-template-columns: 1fr;
  }

  .access-trust > div {
    flex-direction: row;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .access-orb,
  .access-ring,
  .access-shine,
  .access-card {
    animation: none !important;
  }
}

/* —— Setup wizard (post-unlock) —— */

body.view-setup .access-back,
body.view-setup #access-card {
  display: none;
}

body.view-setup .access-shell {
  max-width: 920px;
}

body.view-setup .access-gate {
  min-height: calc(100dvh - 72px);
  padding: 1.25rem 1rem 2rem;
  justify-content: flex-start;
}

.setup-panel {
  width: 100%;
  animation: heroRise 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.setup-frame {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(46, 92, 255, 0.34);
  border-radius: 26px;
  background:
    radial-gradient(820px 320px at 8% -15%, rgba(46, 92, 255, 0.28), transparent 55%),
    radial-gradient(520px 260px at 100% 0%, rgba(130, 71, 229, 0.12), transparent 50%),
    linear-gradient(180deg, rgba(18, 24, 40, 0.98), rgba(8, 12, 22, 0.99));
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 32px 80px rgba(0, 0, 0, 0.5),
    0 0 60px rgba(46, 92, 255, 0.14);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.setup-frame-glow {
  position: absolute;
  inset: -20% 20% auto;
  height: 220px;
  background: radial-gradient(circle, rgba(46, 92, 255, 0.28), transparent 70%);
  filter: blur(30px);
  pointer-events: none;
  z-index: 0;
  animation: finalPulse 5s ease-in-out infinite;
}

.setup-frame-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(46, 92, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(46, 92, 255, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.45), transparent 55%);
  pointer-events: none;
  z-index: 0;
  opacity: 0.7;
}

.setup-frame::before {
  content: "";
  position: absolute;
  top: 0;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(139, 166, 255, 0.55), transparent);
  pointer-events: none;
  z-index: 2;
}

.setup-header,
.setup-progress,
.setup-body,
.setup-footer {
  position: relative;
  z-index: 1;
}

.setup-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem 1.45rem 1.1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.setup-brand-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.55rem;
}

.setup-brand-mark {
  display: grid;
  place-items: center;
  filter: drop-shadow(0 0 12px rgba(46, 92, 255, 0.45));
}

.setup-brand-mark svg,
.setup-brand-mark img {
  display: block;
  border-radius: 7px;
}

.setup-eyebrow {
  margin: 0;
  color: #A8B8FF;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.setup-live {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(34, 197, 94, 0.3);
  background: rgba(34, 197, 94, 0.1);
  color: #4ade80;
  font-size: 0.68rem;
  font-weight: 700;
}

.setup-live i {
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px #22c55e;
  animation: blink 1.5s ease infinite;
}

.setup-title {
  margin: 0;
  color: #fff;
  font-size: clamp(1.55rem, 3.5vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  line-height: 1.1;
}

.setup-title span {
  background: linear-gradient(90deg, #8ea6ff, #2E5CFF);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.setup-exit {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(8, 12, 22, 0.55);
  color: #9AA3B5;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
  transition: color 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

.setup-exit:hover {
  color: #fff;
  border-color: rgba(46, 92, 255, 0.35);
  background: rgba(46, 92, 255, 0.12);
}

.setup-progress {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.45rem;
  padding: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(6, 10, 18, 0.55);
}

.setup-prog {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  padding: 0.8rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  background: rgba(14, 20, 34, 0.55);
  color: #6b7280;
  font-size: 0.72rem;
  font-weight: 650;
  text-align: left;
  cursor: pointer;
  transition: color 0.15s ease, background 0.15s ease, border-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.setup-prog-index {
  color: inherit;
  opacity: 0.7;
  font-variant-numeric: tabular-nums;
  font-size: 0.68rem;
  letter-spacing: 0.04em;
}

.setup-prog-check {
  display: none;
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 50%;
  place-items: center;
  background: rgba(34, 197, 94, 0.16);
  border: 1px solid rgba(34, 197, 94, 0.35);
  color: #4ade80;
  font-size: 0.62rem;
  font-style: normal;
  font-weight: 800;
}

.setup-prog.done .setup-prog-check {
  display: grid;
}

.setup-prog-label {
  color: inherit;
  line-height: 1.3;
}

.setup-prog.active {
  color: #fff;
  border-color: rgba(46, 92, 255, 0.4);
  background:
    linear-gradient(180deg, rgba(46, 92, 255, 0.18), rgba(18, 24, 38, 0.85));
  box-shadow: 0 10px 28px rgba(46, 92, 255, 0.16);
  transform: translateY(-1px);
}

.setup-prog.active .setup-prog-index {
  color: #A8B8FF;
  opacity: 1;
}

.setup-prog.done {
  color: #9AA3B5;
  border-color: rgba(34, 197, 94, 0.18);
}

.setup-prog:hover {
  color: #E8ECF5;
  border-color: rgba(46, 92, 255, 0.28);
}

.setup-body {
  padding: 1.15rem 1.2rem 1.05rem;
}

.setup-stage {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(46, 92, 255, 0.2);
  border-radius: 18px;
  background:
    radial-gradient(520px 180px at 0% 0%, rgba(46, 92, 255, 0.12), transparent 55%),
    rgba(8, 12, 22, 0.55);
  padding: 1.25rem 1.2rem 1.2rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.setup-step[hidden] {
  display: none !important;
}

.setup-step-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.setup-step-tag {
  display: inline-flex;
  margin-bottom: 0.75rem;
  padding: 0.3rem 0.6rem;
  border: 1px solid rgba(46, 92, 255, 0.35);
  border-radius: 8px;
  background: rgba(46, 92, 255, 0.1);
  color: #A8B8FF;
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.setup-step-top .setup-step-tag {
  margin-bottom: 0;
}

.setup-step-meta {
  color: #7E8799;
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.setup-step h3 {
  margin: 0 0 0.55rem;
  color: #fff;
  font-size: clamp(1.35rem, 3vw, 1.9rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.setup-copy {
  margin: 0 0 1.15rem;
  max-width: 40rem;
  color: #9AA3B5;
  font-size: 0.95rem;
  line-height: 1.6;
}

.setup-copy strong {
  color: #E8ECF5;
  font-weight: 700;
}

.setup-howto {
  list-style: none;
  margin: 0 0 1.15rem;
  padding: 0;
  display: grid;
  gap: 0.55rem;
  text-align: left;
  counter-reset: howto;
}

.setup-howto li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 0.75rem 0.9rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(8, 12, 22, 0.5);
  color: #9AA3B5;
  font-size: 0.88rem;
  line-height: 1.45;
  counter-increment: howto;
}

.setup-howto li::before {
  content: counter(howto);
  flex-shrink: 0;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(46, 92, 255, 0.18);
  border: 1px solid rgba(46, 92, 255, 0.35);
  color: #A8B8FF;
  font-size: 0.7rem;
  font-weight: 800;
}

.setup-howto strong {
  color: #fff;
  font-weight: 700;
}

.setup-status-card {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 1.1rem;
  border-radius: 14px;
  border: 1px solid rgba(34, 197, 94, 0.28);
  background: rgba(34, 197, 94, 0.08);
  text-align: left;
}

.setup-status-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  display: grid;
  place-items: center;
  color: #4ade80;
  background: rgba(34, 197, 94, 0.14);
  border: 1px solid rgba(34, 197, 94, 0.3);
  flex-shrink: 0;
}

.setup-status-card strong {
  display: block;
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 0.15rem;
}

.setup-status-card span {
  color: #86efac;
  font-size: 0.8rem;
}

.setup-hotkey {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(46, 92, 255, 0.28);
  background: rgba(46, 92, 255, 0.08);
  color: #C8D0E0;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.setup-keys-group {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.setup-keys-divider {
  width: 1px;
  height: 1.4rem;
  background: rgba(255, 255, 255, 0.14);
}

.setup-keys {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  flex-wrap: wrap;
  padding: 0.25rem 0.35rem;
  border-radius: 10px;
  transition: background 0.15s ease;
}

.setup-keys.is-active {
  background: rgba(46, 92, 255, 0.16);
  box-shadow: 0 0 0 1px rgba(46, 92, 255, 0.25);
}

.setup-keys em {
  font-style: normal;
  color: #7E8799;
  font-weight: 650;
  margin-right: 0.25rem;
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.72rem;
}

.setup-keys.is-active em {
  color: #A8B8FF;
}

.setup-keys kbd {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.4rem;
  padding: 0.35rem 0.55rem;
  border-radius: 7px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: #fff;
  color: #0B0F19;
  font-family: inherit;
  font-size: 0.72rem;
  font-weight: 800;
  box-shadow: 0 2px 0 rgba(46, 92, 255, 0.35);
}

.setup-keys > span {
  color: #7E8799;
}

.setup-drag-zone {
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  gap: 0.85rem;
  min-height: 230px;
  padding: 2rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(46, 92, 255, 0.28);
  background:
    linear-gradient(rgba(46, 92, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(46, 92, 255, 0.07) 1px, transparent 1px),
    radial-gradient(circle at 50% 40%, rgba(46, 92, 255, 0.14), transparent 55%),
    rgba(6, 10, 18, 0.9);
  background-size: 28px 28px, 28px 28px, auto, auto;
  box-shadow: inset 0 0 40px rgba(46, 92, 255, 0.06);
}

.setup-scan {
  position: absolute;
  left: 0;
  right: 0;
  height: 40%;
  top: -40%;
  background: linear-gradient(180deg, transparent, rgba(91, 127, 255, 0.12), transparent);
  animation: setupScan 4.5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes setupScan {
  0% { top: -40%; }
  100% { top: 110%; }
}

.setup-bookmark-btn {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.9rem 1.55rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: linear-gradient(135deg, #5B7FFF 0%, #2E5CFF 55%, #1E4AE0 100%);
  color: #fff;
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  text-decoration: none;
  box-shadow:
    0 12px 32px rgba(46, 92, 255, 0.42),
    4px 4px 0 rgba(30, 74, 224, 0.55);
  cursor: grab;
  user-select: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}

/* "+" is visual only — link text stays "PolySync" so the bookmarks bar uses that name */
.setup-bookmark-btn::before {
  content: "+";
  font-weight: 800;
}

.setup-primary {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.9rem 1.3rem;
  border: none;
  border-radius: 12px;
  background: #fff;
  color: #0B0F19;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  cursor: pointer;
  box-shadow:
    0 10px 28px rgba(0, 0, 0, 0.25),
    0 4px 0 #2E5CFF;
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}

.setup-primary .cta-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(46, 92, 255, 0.18), transparent);
  transform: translateX(-120%);
  animation: finalBtnShine 3.4s ease-in-out infinite;
  pointer-events: none;
}

.setup-bookmark-btn:hover {
  filter: brightness(1.06);
  transform: translateY(-2px);
  box-shadow:
    0 14px 34px rgba(46, 92, 255, 0.48),
    5px 5px 0 rgba(30, 74, 224, 0.55);
}

.setup-bookmark-btn:active {
  cursor: grabbing;
  transform: translateY(1px);
  box-shadow:
    0 6px 18px rgba(46, 92, 255, 0.35),
    2px 2px 0 rgba(30, 74, 224, 0.55);
}

.setup-drag-zone.is-drag .setup-drag-hint {
  color: #86efac;
}

.setup-drag-hint {
  margin: 0;
  color: #7E8799;
  font-size: 0.82rem;
  font-weight: 550;
}

.setup-market-preview {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: rgba(8, 12, 22, 0.55);
  overflow: hidden;
}

.setup-market-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  text-align: left;
}

.setup-market-row > div {
  flex: 1;
  min-width: 0;
}

.setup-market-row strong {
  display: block;
  color: #fff;
  font-size: 0.95rem;
}

.setup-market-row span {
  color: #9AA3B5;
  font-size: 0.78rem;
}

.setup-live-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(34, 197, 94, 0.3);
  background: rgba(34, 197, 94, 0.1);
  color: #4ade80;
  font-size: 0.7rem;
  font-weight: 700;
}

.setup-live-pill i {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px #22c55e;
  animation: blink 1.5s ease infinite;
}

.setup-market-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.setup-market-grid > div {
  padding: 1rem;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  text-align: left;
}

.setup-market-grid > div:last-child {
  border-right: none;
}

.setup-market-grid strong {
  display: block;
  color: #fff;
  font-size: 0.88rem;
  margin-bottom: 0.2rem;
}

.setup-market-grid span {
  color: #7E8799;
  font-size: 0.75rem;
}

.setup-connect-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.setup-connect-card {
  padding: 1.1rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(46, 92, 255, 0.2);
  background: rgba(46, 92, 255, 0.06);
  text-align: left;
}

.setup-connect-card span {
  display: block;
  color: #8ea6ff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  margin-bottom: 0.45rem;
}

.setup-connect-card strong {
  display: block;
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.setup-connect-card em {
  color: #9AA3B5;
  font-size: 0.78rem;
  font-style: normal;
}

.setup-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.35rem 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(8, 12, 22, 0.4);
}

.setup-footer-note {
  margin: 0;
  flex: 1;
  min-width: 12rem;
  color: #7E8799;
  font-size: 0.82rem;
  line-height: 1.45;
  text-align: left;
}

.setup-footer-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.setup-secondary {
  padding: 0.8rem 1.1rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(18, 24, 38, 0.8);
  color: #C8D0E0;
  font-size: 0.88rem;
  font-weight: 650;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.setup-secondary:hover {
  border-color: rgba(46, 92, 255, 0.35);
  background: rgba(46, 92, 255, 0.1);
  color: #fff;
}

.setup-primary:hover {
  transform: translateY(-2px);
  filter: brightness(1.03);
  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.3),
    0 5px 0 #2E5CFF;
}

.setup-primary:active {
  transform: translateY(1px);
  box-shadow:
    0 6px 16px rgba(0, 0, 0, 0.22),
    0 2px 0 #2E5CFF;
}

@media (max-width: 820px) {
  .setup-progress {
    grid-template-columns: 1fr 1fr;
  }

  .setup-market-grid,
  .setup-connect-grid {
    grid-template-columns: 1fr;
  }

  .setup-market-grid > div {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .setup-market-grid > div:last-child {
    border-bottom: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .setup-scan,
  .setup-frame-glow,
  .setup-primary .cta-shine {
    animation: none !important;
  }
}
