@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ─── Variables ──────────────────────────────────────────────────────────────── */
:root {
  --primary:        #5865F2;
  --primary-dark:   #4752C4;
  --primary-light:  #7983f5;
  --secondary:      #57F287;
  --purple:         #a855f7;
  --danger:         #ED4245;
  --warning:        #FEE75C;
  --gold:           #f59e0b;

  --bg:             #080810;
  --bg2:            #0d0d1e;
  --bg3:            #111128;
  --card:           #0f0f22;
  --card-hover:     #141430;
  --border:         rgba(88, 101, 242, 0.18);
  --border-hover:   rgba(88, 101, 242, 0.5);

  --text:           #e2e2f0;
  --text-muted:     #7a7a9a;
  --text-dim:       #555570;

  --radius:         16px;
  --radius-sm:      10px;
  --radius-lg:      24px;
  --shadow:         0 8px 32px rgba(0,0,0,0.5);
  --shadow-primary: 0 8px 30px rgba(88,101,242,0.35);
}

* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ─── Scroll Progress ─────────────────────────────────────────────────────────── */
.scroll-progress {
  position: fixed; top:0; left:0; height:3px; width:0;
  background: linear-gradient(90deg, var(--primary), var(--purple), var(--secondary));
  z-index: 9999; transition: width 0.1s;
}

/* ─── Navbar ──────────────────────────────────────────────────────────────────── */
nav {
  position: fixed; top:0; left:0; right:0; z-index:500;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 2.5rem;
  background: rgba(8, 8, 16, 0.75);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid transparent;
  transition: all 0.3s;
}
nav.scrolled {
  border-bottom-color: var(--border);
  background: rgba(8, 8, 16, 0.92);
}
.nav-logo {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 1.35rem; font-weight: 800; color: #fff;
  text-decoration: none; letter-spacing: -0.02em;
}
.logo-icon { font-size: 1.4rem; }
.logo-x { color: var(--primary); }
.nav-links {
  display: flex; gap: 2rem; list-style: none;
}
.nav-links a {
  color: var(--text-muted); text-decoration: none;
  font-size: 0.875rem; font-weight: 500; transition: color 0.2s;
}
.nav-links a:hover { color: #fff; }
.nav-right { display: flex; align-items: center; gap: 1rem; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.6rem 1.4rem; border-radius: var(--radius-sm);
  font-weight: 600; font-size: 0.9rem; text-decoration: none;
  transition: all 0.2s; cursor: pointer; border: none; white-space: nowrap;
}
.btn-primary {
  background: var(--primary); color: #fff;
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-primary);
}
.btn-glow {
  box-shadow: 0 0 0 0 rgba(88,101,242,0.5);
  animation: glowPulse 3s ease-in-out infinite;
}
@keyframes glowPulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(88,101,242,0.4); }
  50%      { box-shadow: 0 0 30px 8px rgba(88,101,242,0.25); }
}
.btn-glass {
  background: rgba(255,255,255,0.07);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
}
.btn-glass:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.25);
  transform: translateY(-1px);
}
.btn-xl { padding: 1rem 2.4rem; font-size: 1rem; border-radius: 14px; }
.nav-cta { font-size: 0.85rem; padding: 0.55rem 1.2rem; }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 0.4rem;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--text); border-radius: 2px; transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ─── Sections base ───────────────────────────────────────────────────────────── */
section { padding: 6rem 2rem; }
.container { max-width: 1200px; margin: 0 auto; }
.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }

.section-badge {
  display: inline-block; font-size: 0.75rem; font-weight: 700;
  color: var(--primary-light); text-transform: uppercase; letter-spacing: 0.12em;
  background: rgba(88,101,242,0.12); border: 1px solid rgba(88,101,242,0.25);
  padding: 0.3rem 0.9rem; border-radius: 999px; margin-bottom: 1rem;
}
.danger-badge {
  color: #ff6b7a; background: rgba(237,66,69,0.1);
  border-color: rgba(237,66,69,0.25);
}
.section-title {
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  font-weight: 800; color: #fff; line-height: 1.15;
  letter-spacing: -0.03em; margin-bottom: 1rem;
}
.section-sub {
  font-size: 1.05rem; color: var(--text-muted);
  max-width: 600px; line-height: 1.75;
}
.gradient-text {
  background: linear-gradient(135deg, var(--primary) 0%, var(--purple) 50%, var(--secondary) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.inline-code {
  background: var(--bg3); padding: 0.15rem 0.5rem;
  border-radius: 5px; font-size: 0.88em;
  color: var(--secondary); font-family: monospace;
  border: 1px solid var(--border);
}

/* ─── Animations ──────────────────────────────────────────────────────────────── */
.fade-up { opacity:0; transform:translateY(40px); transition: opacity 0.65s ease, transform 0.65s ease; }
.fade-up.visible { opacity:1; transform:translateY(0); }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-20px)} }
@keyframes float2 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(20px)} }
.shaking { animation: shake 0.4s ease; }
@keyframes shake {
  0%,100%{transform:translateX(0)} 20%,60%{transform:translateX(-6px)} 40%,80%{transform:translateX(6px)}
}

/* ─── HERO ────────────────────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh; display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center; gap: 4rem;
  padding: 8rem 4rem 6rem;
  position: relative; overflow: hidden;
  max-width: 1400px; margin: 0 auto;
}
.hero-orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px); pointer-events: none;
}
.hero-orb-1 {
  width: 700px; height: 700px; top: -200px; left: -200px;
  background: radial-gradient(circle, rgba(88,101,242,0.25) 0%, transparent 70%);
  animation: float 10s ease-in-out infinite;
}
.hero-orb-2 {
  width: 500px; height: 500px; top: 20%; right: -100px;
  background: radial-gradient(circle, rgba(168,85,247,0.2) 0%, transparent 70%);
  animation: float2 14s ease-in-out infinite;
}
.hero-orb-3 {
  width: 400px; height: 400px; bottom: -100px; left: 40%;
  background: radial-gradient(circle, rgba(87,242,135,0.1) 0%, transparent 70%);
  animation: float 8s ease-in-out infinite 2s;
}
.hero-grid-bg {
  position: absolute; inset:0; z-index:0;
  background-image:
    linear-gradient(rgba(88,101,242,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(88,101,242,0.07) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 90% 90% at 50% 30%, black 30%, transparent 100%);
}
.hero-content { position: relative; z-index:1; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.4rem 1rem; background: rgba(88,101,242,0.12);
  border: 1px solid rgba(88,101,242,0.3); border-radius: 999px;
  font-size: 0.78rem; color: #a0aaff; font-weight: 600;
  margin-bottom: 1.75rem; letter-spacing: 0.01em;
}
.pulse-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--secondary); flex-shrink: 0;
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(1.4)} }
.hero h1 {
  font-size: clamp(2.4rem, 4.5vw, 4rem); font-weight: 900;
  line-height: 1.1; color: #fff; letter-spacing: -0.04em;
  margin-bottom: 1.5rem;
}
.hero-sub {
  font-size: 1.1rem; color: var(--text-muted);
  line-height: 1.75; margin-bottom: 2.5rem; max-width: 520px;
}
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3.5rem; }
.hero-stats {
  display: flex; align-items: center; gap: 0;
  flex-wrap: wrap; padding: 1.25rem 1.5rem;
  background: rgba(255,255,255,0.03); border: 1px solid var(--border);
  border-radius: var(--radius); backdrop-filter: blur(10px);
}
.hero-stat { text-align: center; padding: 0 1.5rem; }
.stat-num { font-size: 1.8rem; font-weight: 800; color: #fff; letter-spacing: -0.02em; }
.stat-label { font-size: 0.78rem; color: var(--text-muted); margin-top: 0.2rem; font-weight: 500; }
.hero-stat-sep { width: 1px; height: 40px; background: var(--border); }

/* ─── Discord Mockup ──────────────────────────────────────────────────────────── */
.hero-mockup {
  position: relative; z-index:1;
  background: #1e1f22; border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 30px 80px rgba(0,0,0,0.7);
  overflow: hidden; animation: float 8s ease-in-out infinite 1s;
}
.mockup-bar {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem 1rem; background: #18191c;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.mockup-dot { width: 12px; height: 12px; border-radius: 50%; }
.mockup-dot.red    { background: #FF5F57; }
.mockup-dot.yellow { background: #FFBD2E; }
.mockup-dot.green  { background: #28C840; }
.mockup-title { font-size: 0.78rem; color: var(--text-muted); margin-left: 0.5rem; font-weight: 600; }
.mockup-body { padding: 1.25rem; display: flex; flex-direction: column; gap: 0.75rem; }
.mockup-msg, .mockup-success {
  display: flex; gap: 0.75rem; align-items: flex-start;
}
.mockup-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--purple));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.mockup-content { flex:1; }
.mockup-name {
  font-size: 0.85rem; font-weight: 700; color: #fff;
  margin-bottom: 0.4rem; display: flex; align-items: center; gap: 0.4rem;
}
.mockup-bot-tag {
  font-size: 0.65rem; font-weight: 700;
  background: var(--primary); color: #fff;
  padding: 0.1rem 0.4rem; border-radius: 4px; letter-spacing: 0.05em;
}
.mockup-embed {
  background: #2b2d31; border-radius: 8px;
  display: flex; overflow: hidden;
}
.mockup-embed-stripe { width: 4px; background: var(--primary); flex-shrink:0; }
.mockup-embed-success .mockup-embed-stripe,
.green-stripe { background: var(--secondary); }
.mockup-embed-inner { padding: 0.75rem; flex:1; }
.mockup-embed-title { font-size: 0.82rem; font-weight: 700; color: #fff; margin-bottom: 0.3rem; }
.mockup-embed-desc  { font-size: 0.76rem; color: var(--text-muted); margin-bottom: 0.75rem; }
.mockup-captcha-q {
  font-size: 1.4rem; font-weight: 900; color: #fff;
  text-align: center; padding: 0.75rem;
  background: rgba(88,101,242,0.12); border-radius: 8px;
  border: 1px solid var(--border); margin-bottom: 0.75rem;
  letter-spacing: 0.08em;
}
.mockup-btns { display: grid; grid-template-columns: 1fr 1fr; gap: 0.4rem; margin-bottom: 0.6rem; }
.mockup-btn {
  padding: 0.45rem; border-radius: 6px; border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05); color: #fff; font-size: 0.82rem;
  font-weight: 600; cursor: pointer; transition: all 0.2s;
}
.mockup-btn:hover:not(:disabled) { background: rgba(88,101,242,0.2); border-color: var(--primary); }
.mockup-embed-footer { font-size: 0.65rem; color: var(--text-dim); }

/* ─── Partners ────────────────────────────────────────────────────────────────── */
.partners-section { background: var(--bg2); padding: 5rem 2rem; }
.partners-header { text-align: center; margin-bottom: 3rem; }
.partners-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem; margin-bottom: 2rem;
}
.partner-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2rem 1.5rem;
  text-align: center; transition: all 0.3s; position: relative; overflow: hidden;
}
.partner-card::before {
  content: ''; position: absolute; inset:0;
  background: linear-gradient(135deg, rgba(88,101,242,0.05), rgba(168,85,247,0.05));
  opacity:0; transition: opacity 0.3s;
}
.partner-card:hover::before { opacity:1; }
.partner-card:hover { border-color: rgba(88,101,242,0.4); transform: translateY(-3px); }
.partner-lock { font-size: 1.5rem; margin-bottom: 0.75rem; }
.partner-badge {
  font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--gold); background: rgba(245,158,11,0.1);
  border: 1px solid rgba(245,158,11,0.25); padding: 0.2rem 0.6rem;
  border-radius: 999px; display: inline-block; margin-bottom: 0.75rem;
}
.partner-redacted {
  font-size: 1.3rem; color: var(--text-dim); letter-spacing: 0.08em;
  margin-bottom: 0.5rem; filter: blur(3px);
}
.partner-sub { font-size: 0.78rem; color: var(--text-muted); }
.partners-note {
  text-align: center; color: var(--text-muted);
  font-size: 0.9rem; max-width: 500px; margin: 0 auto;
}

/* ─── CAPTCHA Section ─────────────────────────────────────────────────────────── */
.captcha-section { background: var(--bg); }
.captcha-modes {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem; margin: 3.5rem 0;
}
.captcha-mode-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2rem;
  transition: all 0.3s; cursor: default; position: relative;
}
.captcha-mode-card:hover,
.captcha-mode-card.active-mode {
  border-color: var(--primary);
  background: linear-gradient(135deg, rgba(88,101,242,0.08), rgba(168,85,247,0.06));
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(88,101,242,0.2);
}
.mode-icon { font-size: 2.2rem; margin-bottom: 1rem; }
.captcha-mode-card h3 { font-size: 1.1rem; font-weight: 700; color:#fff; margin-bottom: 0.5rem; }
.captcha-mode-card p  { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 1rem; }
.mode-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 1.25rem; }
.mode-tag {
  font-size: 0.7rem; font-weight: 600; padding: 0.2rem 0.6rem;
  border-radius: 6px; background: rgba(88,101,242,0.12); color: #a0aaff;
  border: 1px solid rgba(88,101,242,0.2);
}
.mode-demo {
  background: rgba(0,0,0,0.25); border-radius: var(--radius-sm);
  padding: 1rem; border: 1px solid rgba(255,255,255,0.05);
}
.demo-q {
  font-size: 1.5rem; font-weight: 900; color:#fff; text-align:center;
  margin-bottom: 0.75rem; letter-spacing: 0.05em;
}
.demo-btns { display: grid; grid-template-columns: 1fr 1fr; gap: 0.4rem; }
.demo-btn {
  padding: 0.4rem; border-radius: 6px;
  background: rgba(255,255,255,0.05); color: var(--text-muted);
  text-align: center; font-size: 0.82rem; font-weight: 600; border: 1px solid var(--border);
}
.demo-btn.demo-correct {
  background: rgba(87,242,135,0.15); color: var(--secondary);
  border-color: rgba(87,242,135,0.4);
}
.demo-code {
  font-size: 1.1rem; font-weight: 800; color:#fff; text-align:center;
  letter-spacing: 0.12em; margin-bottom: 0.75rem; font-family: monospace;
}
.demo-input-fake {
  background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  border-radius: 6px; padding: 0.45rem 0.75rem;
  font-size: 0.8rem; color: var(--text-dim); font-style: italic;
}
.demo-img-captcha {
  border-radius: 8px; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 0.75rem;
}
.demo-img-captcha canvas { display:block; width:100%; height:auto; }

.captcha-config {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem; margin-top: 1rem;
}
.config-item {
  display: flex; gap: 1rem; align-items: flex-start;
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 1.25rem;
  transition: border-color 0.3s;
}
.config-item:hover { border-color: rgba(88,101,242,0.4); }
.config-icon { font-size: 1.4rem; flex-shrink:0; }
.config-item h4 { font-size: 0.9rem; font-weight: 700; color:#fff; margin-bottom: 0.25rem; }
.config-item p  { font-size: 0.8rem; color: var(--text-muted); line-height: 1.5; }
.captcha-cmd {
  margin-top: 2rem; background: rgba(0,0,0,0.4);
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 1rem 1.5rem; overflow-x: auto;
}
.captcha-cmd code {
  font-family: 'JetBrains Mono', 'Fira Code', monospace;
  font-size: 0.82rem; color: var(--primary-light); white-space: nowrap;
}

/* ─── Security Section ────────────────────────────────────────────────────────── */
.security-section { background: var(--bg2); }
.security-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem; margin-top: 3.5rem;
}
.security-card {
  background: var(--card); border-radius: var(--radius);
  padding: 2rem; border: 1px solid var(--border);
  transition: all 0.3s; position: relative; overflow: hidden;
}
.security-card::after {
  content: ''; position: absolute; top:-50%; left:-50%;
  width: 200%; height: 200%; opacity:0; transition: opacity 0.5s;
}
.s-captcha { border-top: 3px solid var(--danger); }
.s-captcha::after { background: radial-gradient(circle, rgba(237,66,69,0.06), transparent 70%); }
.s-raid    { border-top: 3px solid var(--warning); }
.s-raid::after    { background: radial-gradient(circle, rgba(254,231,92,0.06), transparent 70%); }
.s-alts    { border-top: 3px solid var(--primary); }
.s-alts::after    { background: radial-gradient(circle, rgba(88,101,242,0.06), transparent 70%); }
.security-card:hover::after { opacity:1; }
.security-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.s-icon { font-size: 2rem; margin-bottom: 1rem; }
.security-card h3 { font-size: 1.1rem; font-weight: 700; color:#fff; margin-bottom: 0.5rem; }
.security-card p  { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 1.25rem; }
.s-list { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.s-list li { font-size: 0.85rem; color: var(--text-muted); }

/* ─── Feature Tabs ────────────────────────────────────────────────────────────── */
.feature-tabs {
  display: flex; gap: 0.5rem; flex-wrap: wrap;
  margin: 2.5rem 0; justify-content: center;
}
.tab-btn {
  padding: 0.6rem 1.4rem; border-radius: 999px;
  border: 1px solid var(--border); background: transparent;
  color: var(--text-muted); font-size: 0.875rem; font-weight: 600;
  cursor: pointer; transition: all 0.2s;
}
.tab-btn:hover  { color:#fff; border-color: rgba(88,101,242,0.5); }
.tab-btn.active {
  background: var(--primary); color:#fff; border-color: var(--primary);
  box-shadow: 0 4px 15px rgba(88,101,242,0.4);
}
.tab-content { display:none; }
.tab-content.active { display:block; }

/* ─── Features Grid ───────────────────────────────────────────────────────────── */
.features-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}
.feature-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.75rem; transition: all 0.3s;
  position: relative; overflow: hidden;
}
.feature-card::before {
  content:''; position:absolute; inset:0;
  background: linear-gradient(135deg, rgba(88,101,242,0.06), transparent);
  opacity:0; transition: opacity 0.3s;
}
.feature-card:hover { border-color: var(--primary); transform: translateY(-4px); box-shadow: 0 12px 35px rgba(88,101,242,0.18); }
.feature-card:hover::before { opacity:1; }
.feature-icon { font-size: 2.1rem; margin-bottom: 0.9rem; }
.feature-card h3 { font-size: 1.05rem; font-weight: 700; color:#fff; margin-bottom: 0.45rem; }
.feature-card p  { font-size: 0.875rem; color: var(--text-muted); line-height: 1.65; }
.feature-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 1rem; }
.tag {
  font-size: 0.68rem; font-weight: 600; padding: 0.22rem 0.6rem;
  border-radius: 6px; background: rgba(88,101,242,0.12); color: #a0aaff;
  border: 1px solid rgba(88,101,242,0.2);
}

/* ─── Commands ────────────────────────────────────────────────────────────────── */
.commands-section { background: var(--bg2); }
.commands-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem; margin-top: 2.5rem;
}
.cmd-group {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-sm); overflow: hidden; transition: border-color 0.3s;
}
.cmd-group:hover { border-color: rgba(88,101,242,0.4); }
.cmd-group-header {
  padding: 0.85rem 1.1rem; background: rgba(88,101,242,0.08);
  font-weight: 700; font-size: 0.85rem; color:#fff;
  border-bottom: 1px solid var(--border);
}
.cmd-list { padding: 0.5rem; }
.cmd-item {
  padding: 0.4rem 0.6rem; font-size: 0.8rem; color: var(--text-muted);
  border-radius: 5px; transition: all 0.15s;
}
.cmd-item:hover { background: rgba(255,255,255,0.04); color: var(--text); }
.cmd-item code { color: var(--primary-light); font-family: monospace; font-size: 0.82em; }

/* ─── Setup ───────────────────────────────────────────────────────────────────── */
.setup-section { background: var(--bg); }
.steps { display: flex; flex-direction: column; gap: 0; margin-top: 3rem; position: relative; }
.step {
  display: flex; gap: 1.75rem; align-items: flex-start;
  padding-bottom: 2.5rem; position: relative;
}
.step:last-child { padding-bottom: 0; }
.step-connector {
  position: absolute; left: 21px; top: 44px;
  width: 2px; bottom: 0;
  background: linear-gradient(to bottom, var(--primary), transparent);
}
.step:last-child .step-connector { display:none; }
.step-num {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--primary); color:#fff;
  font-weight: 800; font-size: 1.05rem;
  display: flex; align-items: center; justify-content: center; flex-shrink:0;
  box-shadow: 0 0 0 6px rgba(88,101,242,0.15);
  position: relative; z-index:1;
}
.step-final { background: var(--secondary); color: var(--bg); box-shadow: 0 0 0 6px rgba(87,242,135,0.15); }
.step-content { padding-top: 0.5rem; }
.step-content h3 { font-size: 1rem; font-weight: 700; color:#fff; margin-bottom: 0.35rem; }
.step-content p  { font-size: 0.875rem; color: var(--text-muted); line-height: 1.7; }

/* ─── CTA Banner ──────────────────────────────────────────────────────────────── */
.cta-section { background: var(--bg2); }
.cta-banner {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, rgba(88,101,242,0.15) 0%, rgba(168,85,247,0.1) 100%);
  border: 1px solid rgba(88,101,242,0.3); border-radius: 28px;
  padding: 5rem 3rem; text-align: center;
}
.cta-orb {
  position: absolute; border-radius: 50%;
  filter: blur(60px); pointer-events: none;
}
.cta-orb-1 {
  width: 500px; height: 500px; top: -200px; left: -100px;
  background: radial-gradient(circle, rgba(88,101,242,0.3), transparent 70%);
  animation: float 10s ease-in-out infinite;
}
.cta-orb-2 {
  width: 400px; height: 400px; bottom: -150px; right: -50px;
  background: radial-gradient(circle, rgba(168,85,247,0.25), transparent 70%);
  animation: float2 12s ease-in-out infinite;
}
.cta-inner { position: relative; z-index:1; }
.cta-badge {
  display: inline-block; font-size: 0.78rem; font-weight: 600; color: #a0aaff;
  background: rgba(88,101,242,0.1); border: 1px solid rgba(88,101,242,0.25);
  padding: 0.3rem 1rem; border-radius: 999px; margin-bottom: 1.5rem;
}
.cta-banner h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 800; color:#fff;
  line-height: 1.2; letter-spacing: -0.03em; margin-bottom: 1rem;
}
.cta-banner p {
  color: var(--text-muted); max-width: 520px;
  margin: 0 auto 2.5rem; font-size: 1.05rem; line-height: 1.7;
}

/* ─── Footer ──────────────────────────────────────────────────────────────────── */
footer { background: var(--bg); border-top: 1px solid var(--border); padding: 4rem 2rem 2rem; }
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem; margin-bottom: 3rem;
}
.footer-brand p { color: var(--text-muted); font-size: 0.875rem; margin-top: 0.75rem; max-width: 300px; line-height: 1.7; }
.footer-social { margin-top: 1.25rem; }
.social-btn {
  display: inline-block; padding: 0.5rem 1.1rem;
  background: rgba(88,101,242,0.12); border: 1px solid rgba(88,101,242,0.3);
  color: var(--primary-light); border-radius: var(--radius-sm);
  font-size: 0.82rem; font-weight: 600; text-decoration: none;
  transition: all 0.2s;
}
.social-btn:hover { background: rgba(88,101,242,0.25); color:#fff; }
.footer-links h4 { font-size: 0.85rem; font-weight: 700; color:#fff; margin-bottom: 1rem; }
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a { color: var(--text-muted); text-decoration: none; font-size: 0.85rem; transition: color 0.2s; }
.footer-links a:hover { color:#fff; }
.footer-bottom {
  max-width: 1200px; margin: 0 auto; padding-top: 2rem;
  border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { font-size: 0.8rem; color: var(--text-dim); }

/* ─── Legal pages ─────────────────────────────────────────────────────────────── */
.legal-page { padding: 8rem 2rem 5rem; max-width: 860px; margin: 0 auto; }
.legal-page h1 { font-size: 2.2rem; font-weight: 800; color:#fff; margin-bottom: 0.5rem; }
.legal-date    { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 3rem; }
.legal-page h2 {
  font-size: 1.2rem; font-weight: 700; color:#fff;
  margin: 2.5rem 0 0.75rem; border-left: 3px solid var(--primary);
  padding-left: 0.75rem;
}
.legal-page p, .legal-page li { color: var(--text-muted); line-height: 1.8; margin-bottom: 0.75rem; font-size: 0.95rem; }
.legal-page ul  { padding-left: 1.5rem; }
.legal-page a   { color: var(--primary-light); }

/* ─── Scrollbar ───────────────────────────────────────────────────────────────── */
::-webkit-scrollbar       { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }

/* ─── Responsive ──────────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 7rem 2rem 4rem;
    text-align: center;
  }
  .hero-sub, .hero-cta { margin-left: auto; margin-right: auto; }
  .hero-cta { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-mockup { max-width: 500px; margin: 0 auto; }
}
@media (max-width: 768px) {
  nav { padding: 0.9rem 1.25rem; }
  .nav-links {
    display: none; flex-direction: column; gap: 0;
    position: absolute; top: 100%; left:0; right:0;
    background: rgba(8,8,16,0.97); backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border); padding: 1rem 0;
  }
  .nav-links.open { display: flex; }
  .nav-links li a { display:block; padding: 0.75rem 2rem; font-size: 1rem; }
  .hamburger { display: flex; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .captcha-modes { grid-template-columns: 1fr; }
  .security-grid { grid-template-columns: 1fr; }
  section { padding: 4rem 1.25rem; }
  .hero-stats { gap: 0; }
  .hero-stat-sep { height: 30px; }
  .hero-stat { padding: 0 0.75rem; }
  .stat-num { font-size: 1.4rem; }
  .cta-banner { padding: 3rem 1.5rem; }
}
@media (max-width: 480px) {
  .hero-cta { flex-direction: column; align-items: center; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .hero-stats { flex-wrap: wrap; }
  .hero-stat-sep { display: none; }
  .hero-stat { padding: 0.5rem 1rem; }
  .btn-xl { padding: 0.85rem 1.75rem; font-size: 0.95rem; }
}
