/* ═══════════════════════════════════════════════════
   GetHumanized — Bypass Landing Pages Shared CSS
   ════════════════════════════════════════════════════ */

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

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

:root {
  --bg:          #07091a;
  --bg2:         #0d1025;
  --surface:     rgba(255,255,255,0.04);
  --surface-h:   rgba(255,255,255,0.07);
  --border:      rgba(255,255,255,0.08);
  --border-h:    rgba(124,58,237,0.45);
  --purple:      #7c3aed;
  --purple-l:    #9d6ffc;
  --purple-glow: rgba(124,58,237,0.25);
  --pink:        #db2777;
  --text:        #e2e8f0;
  --text-muted:  #64748b;
  --text-dim:    #94a3b8;
  --green:       #22c55e;
  --yellow:      #eab308;
  --red:         #ef4444;
  --radius:      14px;
  --radius-sm:   8px;
  --font:        'Inter', system-ui, sans-serif;
  --shadow:      0 4px 24px rgba(0,0,0,0.5);
  --shadow-lg:   0 8px 48px rgba(0,0,0,0.6);
}

body { font-family: var(--font); background: var(--bg); color: var(--text); min-height: 100vh; overflow-x: hidden; line-height: 1.6; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-thumb { background: rgba(124,58,237,0.35); border-radius: 99px; }

/* ── Nav ────────────────────────────────────────────────────── */
.navbar { position: sticky; top: 0; z-index: 100; background: rgba(7,9,26,0.9); backdrop-filter: blur(20px); border-bottom: 1px solid var(--border); }
.nav-inner { max-width: 1100px; margin: 0 auto; padding: 0 24px; height: 60px; display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; gap: 8px; }
.logo-icon { color: var(--purple-l); font-size: 18px; animation: spin-slow 6s linear infinite; }
@keyframes spin-slow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.logo-text { font-size: 17px; font-weight: 700; }
.badge { font-size: 9px; font-weight: 700; letter-spacing: .8px; padding: 2px 6px; border-radius: 99px; background: var(--purple-glow); border: 1px solid rgba(124,58,237,.4); color: var(--purple-l); }
.nav-links { display: flex; align-items: center; gap: 20px; }
.nav-link { font-size: 14px; font-weight: 500; color: var(--text-dim); transition: color .2s; }
.nav-link:hover { color: var(--text); }
.btn-nav { font-size: 13px; font-weight: 600; padding: 7px 16px; border-radius: 99px; background: var(--purple); color: #fff; transition: opacity .2s, transform .2s; }
.btn-nav:hover { opacity: .88; transform: translateY(-1px); }

/* ── Hamburger ────────────────────────────────────────────── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px; height: 36px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  padding: 6px;
  z-index: 200;
}
.nav-hamburger span {
  display: block; height: 2px; border-radius: 99px;
  background: var(--text-dim); transition: all .25s;
}
.nav-open .nav-hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-open .nav-hamburger span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-open .nav-hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 720px) {
  .nav-hamburger { display: flex; }
  .nav-links {
    display: none;
    position: fixed;
    top: 60px; left: 0; right: 0;
    background: rgba(7,9,26,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: stretch;
    padding: 16px 20px 24px;
    gap: 4px;
    border-bottom: 1px solid var(--border);
    z-index: 150;
  }
  .nav-open .nav-links { display: flex; }
  .nav-link { padding: 12px 4px; font-size: 16px; border-bottom: 1px solid var(--border); }
  .btn-nav { margin-top: 8px; text-align: center; padding: 12px; font-size: 15px; border-radius: 10px; }
}

/* ── Hero ────────────────────────────────────────────────────── */
.bypass-hero { position: relative; text-align: center; padding: 80px 24px 60px; overflow: hidden; }
.bypass-hero::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle, rgba(255,255,255,0.15) 1px, transparent 1px); background-size: 50px 50px; opacity: 0.2; animation: star-drift 20s linear infinite; pointer-events: none; }
@keyframes star-drift { from { background-position: 0 0; } to { background-position: 50px 50px; } }
.hero-glow { position: absolute; top: -60px; left: 50%; transform: translateX(-50%); width: 700px; height: 320px; background: radial-gradient(ellipse at center, rgba(124,58,237,0.28) 0%, transparent 70%); pointer-events: none; }
.hero-eyebrow { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--purple-l); margin-bottom: 16px; position: relative; }
.bypass-hero h1 { font-size: clamp(32px, 5vw, 56px); font-weight: 800; letter-spacing: -1.5px; line-height: 1.1; margin-bottom: 20px; position: relative; }
.gradient-text { background: linear-gradient(135deg, var(--purple-l), var(--pink)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.bypass-hero p.hero-sub { font-size: clamp(15px, 2vw, 18px); color: var(--text-dim); max-width: 580px; margin: 0 auto 32px; line-height: 1.65; position: relative; }
.hero-stats { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; position: relative; margin-bottom: 40px; }
.hero-stat { text-align: center; }
.hero-stat-num { font-size: 28px; font-weight: 800; color: var(--purple-l); }
.hero-stat-label { font-size: 12px; color: var(--text-muted); margin-top: 2px; }

/* ── Bypass Tool Embed ───────────────────────────────────────── */
.tool-embed { max-width: 760px; margin: 0 auto 80px; padding: 0 24px; }
.embed-card { background: var(--bg2); border: 1px solid var(--border); border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-lg), 0 0 0 1px rgba(124,58,237,0.08); }
.embed-header { padding: 16px 20px; border-bottom: 1px solid var(--border); background: rgba(255,255,255,0.02); display: flex; align-items: center; gap: 8px; }
.embed-dot { width: 8px; height: 8px; border-radius: 50%; }
.embed-dot-r { background: #ef4444; } .embed-dot-y { background: #f59e0b; } .embed-dot-g { background: #22c55e; }
.embed-title { font-size: 13px; font-weight: 600; color: var(--text-dim); margin-left: 6px; text-transform: uppercase; letter-spacing: .5px; }
.embed-body { padding: 20px; }
.embed-textarea { width: 100%; min-height: 160px; padding: 14px; background: rgba(255,255,255,0.03); border: 1px solid var(--border); border-radius: var(--radius-sm); color: var(--text); font-family: var(--font); font-size: 14px; line-height: 1.7; resize: vertical; outline: none; caret-color: var(--purple-l); transition: border-color .2s; }
.embed-textarea:focus { border-color: var(--border-h); }
.embed-textarea::placeholder { color: var(--text-muted); }
.embed-footer { padding: 14px 20px; border-top: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.embed-hint { font-size: 12px; color: var(--text-muted); }
.btn-humanize-embed { display: flex; align-items: center; gap: 8px; padding: 11px 24px; border-radius: 99px; background: linear-gradient(135deg, var(--purple), #9333ea); color: #fff; font-size: 14px; font-weight: 700; border: none; cursor: pointer; transition: opacity .2s, transform .2s; box-shadow: 0 4px 20px var(--purple-glow); }
.btn-humanize-embed:hover { opacity: .9; transform: translateY(-1px); }
.embed-note { text-align: center; font-size: 12px; color: var(--text-muted); margin-top: 10px; }
.embed-note a { color: var(--purple-l); }

/* ── Section shared ──────────────────────────────────────────── */
.section { max-width: 900px; margin: 0 auto; padding: 60px 24px; }
.section-eyebrow { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--purple-l); margin-bottom: 10px; }
.section h2 { font-size: clamp(22px, 3vw, 32px); font-weight: 800; letter-spacing: -.5px; margin-bottom: 14px; }
.section p { color: var(--text-dim); font-size: 15px; line-height: 1.75; margin-bottom: 14px; }
.section p:last-child { margin-bottom: 0; }
.section-divider { border: none; border-top: 1px solid var(--border); max-width: 900px; margin: 0 24px; }

/* ── How it works ────────────────────────────────────────────── */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); gap: 20px; margin-top: 32px; }
.step { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; }
.step-num { width: 36px; height: 36px; border-radius: 99px; background: linear-gradient(135deg, var(--purple), #9333ea); color: #fff; font-size: 15px; font-weight: 800; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.step h3 { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.step p { font-size: 13px; color: var(--text-dim); }

/* ── Score demo ──────────────────────────────────────────────── */
.score-demo { display: grid; grid-template-columns: 1fr auto 1fr; gap: 20px; align-items: center; margin-top: 32px; }
.score-box { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; text-align: center; }
.score-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .8px; color: var(--text-muted); margin-bottom: 8px; }
.score-big { font-size: 52px; font-weight: 900; }
.score-big.bad  { color: var(--red); }
.score-big.good { color: var(--green); }
.score-sub { font-size: 12px; color: var(--text-muted); margin-top: 4px; }
.score-arrow { font-size: 32px; color: var(--purple-l); text-align: center; }
@media (max-width: 600px) { .score-demo { grid-template-columns: 1fr; } .score-arrow { transform: rotate(90deg); } }

/* ── Features grid ───────────────────────────────────────────── */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 16px; margin-top: 28px; }
.feat-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; }
.feat-icon { font-size: 24px; margin-bottom: 10px; }
.feat-card h3 { font-size: 14px; font-weight: 700; margin-bottom: 6px; }
.feat-card p { font-size: 13px; color: var(--text-dim); }

/* ── FAQ ─────────────────────────────────────────────────────── */
.faq-list { margin-top: 28px; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; }
.faq-q { padding: 16px 20px; font-size: 15px; font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 12px; transition: background .2s; }
.faq-q:hover { background: var(--surface-h); }
.faq-q::after { content: '+'; font-size: 20px; font-weight: 300; color: var(--text-muted); flex-shrink: 0; transition: transform .25s; }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; font-size: 14px; color: var(--text-dim); line-height: 1.7; transition: max-height .3s ease, padding .3s ease; }
.faq-item.open .faq-a { max-height: 300px; padding: 0 20px 16px; }

/* ── CTA Banner ──────────────────────────────────────────────── */
.cta-section { max-width: 900px; margin: 0 auto; padding: 20px 24px 80px; }
.cta-card { background: linear-gradient(135deg, rgba(124,58,237,0.15) 0%, rgba(219,39,119,0.08) 100%); border: 1px solid rgba(124,58,237,0.3); border-radius: 20px; padding: 48px 32px; text-align: center; position: relative; overflow: hidden; }
.cta-card::before { content: ''; position: absolute; top: -40%; left: 50%; transform: translateX(-50%); width: 500px; height: 250px; background: radial-gradient(ellipse, rgba(124,58,237,0.2) 0%, transparent 70%); pointer-events: none; }
.cta-card h2 { font-size: clamp(22px, 3vw, 32px); font-weight: 800; margin-bottom: 12px; position: relative; }
.cta-card p { color: var(--text-dim); font-size: 15px; margin-bottom: 28px; position: relative; }
.cta-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; position: relative; }
.btn-cta-primary { padding: 13px 28px; border-radius: 99px; background: linear-gradient(135deg, var(--purple), #9333ea); color: #fff; font-size: 15px; font-weight: 700; box-shadow: 0 4px 20px var(--purple-glow); transition: opacity .2s, transform .2s; }
.btn-cta-primary:hover { opacity: .9; transform: translateY(-1px); }
.btn-cta-secondary { padding: 13px 28px; border-radius: 99px; border: 1px solid var(--border); color: var(--text-dim); font-size: 15px; font-weight: 600; transition: all .2s; }
.btn-cta-secondary:hover { border-color: var(--border-h); color: var(--text); }
.cta-note { font-size: 12px; color: var(--text-muted); margin-top: 14px; position: relative; }

/* ── Footer ─────────────────────────────────────────────────── */
.footer { border-top: 1px solid var(--border); padding: 28px 24px; }
.footer-inner { max-width: 900px; margin: 0 auto; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px; }
.footer-brand { display: flex; align-items: center; gap: 8px; font-weight: 700; font-size: 15px; }
.footer-links { display: flex; gap: 22px; }
.footer-links a { font-size: 13px; color: var(--text-muted); transition: color .2s; }
.footer-links a:hover { color: var(--text); }
.footer-copy { font-size: 12px; color: var(--text-muted); width: 100%; text-align: center; padding-top: 8px; border-top: 1px solid var(--border); margin-top: 8px; }

@media (max-width: 600px) {
  .footer-inner { flex-direction: column; align-items: center; text-align: center; gap: 14px; }
  .footer-brand { justify-content: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; gap: 12px 18px; }
}

/* ── Why Switch Section ──────────────────────────────────────── */
.why-switch-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
}
@media (max-width: 768px) { .why-switch-grid { grid-template-columns: 1fr; } }
.switch-card {
  background: linear-gradient(135deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
  border: 1px solid var(--border); border-radius: 20px; padding: 32px;
  position: relative; overflow: hidden;
}
.switch-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(124,58,237,0.5), transparent);
}
.sc-icon { font-size: 28px; margin-bottom: 16px; }
.switch-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 12px; color: #fff; }
.switch-card p { font-size: 14px; color: var(--text-dim); line-height: 1.7; margin: 0; }
.switch-card p strong { color: #fff; }

/* ── Visual Proof Section ──────────────────────────────────────── */
.proof-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px;
}
@media (max-width: 800px) { .proof-grid { grid-template-columns: 1fr; } }

.proof-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 20px; padding: 32px;
  box-shadow: 0 20px 40px -20px rgba(0,0,0,0.5);
}
.proof-card-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 32px; padding-bottom: 24px; border-bottom: 1px solid var(--border-h);
}
.pc-badge {
  font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px;
  padding: 6px 14px; border-radius: 99px;
}
.pc-badge.highlight { background: rgba(147, 51, 234, 0.15); color: #c084fc; border: 1px solid rgba(147, 51, 234, 0.3); }
.pc-badge.highlight-blue { background: rgba(59, 130, 246, 0.15); color: #60a5fa; border: 1px solid rgba(59, 130, 246, 0.3); }

.pc-score-val { font-size: 32px; font-weight: 800; color: #fff; letter-spacing: -1px; }
.pc-score { font-size: 14px; font-weight: 600; color: #10b981; display: flex; align-items: baseline; gap: 8px; }

.proof-body { display: flex; flex-direction: column; gap: 12px; }
.pb-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 20px; border-radius: 12px; font-size: 15px; font-weight: 600;
}
.pb-row.pb-bad { background: rgba(239, 68, 68, 0.05); color: var(--text-dim); border: 1px solid rgba(239, 68, 68, 0.2); }
.pb-row.pb-bad strong { color: #f87171; }
.pb-row.pb-good { background: rgba(16, 185, 129, 0.05); color: var(--text); border: 1px solid rgba(16, 185, 129, 0.2); }
.pb-row.pb-good strong { color: #34d399; }
.pb-arrow { text-align: center; color: var(--border-h); font-size: 20px; margin: -4px 0; }
