/* Skeletor VPN — shared stylesheet */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:      #0a0a0f;
  --bg2:     #0f0f1a;
  --bg3:     #13131f;
  --accent:  #7c3aed;
  --accent2: #a855f7;
  --glow:    #7c3aed66;
  --text:    #e2e8f0;
  --muted:   #94a3b8;
  --border:  #1e1b4b;
  --green:   #22c55e;
  --cyan:    #06b6d4;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 2px; }

/* ── HEADER ── */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  padding: 16px 32px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(10,10,15,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: padding 0.3s;
}
header.scrolled { padding: 10px 32px; }

.logo {
  font-size: 1.25rem; font-weight: 700; letter-spacing: -0.5px;
  background: linear-gradient(135deg, #a855f7, #6366f1);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  text-decoration: none;
}
.logo span { -webkit-text-fill-color: var(--text); }

.nav-right { display: flex; align-items: center; gap: 24px; }
.nav-link { color: var(--muted); text-decoration: none; font-size: 0.9rem; transition: color 0.2s; }
.nav-link:hover { color: var(--text); }
@media (max-width: 640px) { .nav-link { display: none; } }

.btn-nav {
  background: var(--accent); color: #fff; border: none; cursor: pointer;
  padding: 9px 20px; border-radius: 8px;
  font-size: 0.9rem; font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}
.btn-nav:hover { background: var(--accent2); box-shadow: 0 0 20px var(--glow); }

/* ── SHARED LAYOUT ── */
section { padding: 100px 0; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.bg2 { background: var(--bg2); }

.eyebrow {
  text-align: center; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase; color: var(--cyan);
  margin-bottom: 14px;
}
.s-title {
  text-align: center; font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800; letter-spacing: -1px; margin-bottom: 14px;
}
.s-sub { text-align: center; color: var(--muted); max-width: 500px; margin: 0 auto 64px; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, var(--accent), #4f46e5);
  color: #fff; text-decoration: none;
  padding: 15px 32px; border-radius: 12px;
  font-size: 1rem; font-weight: 700;
  box-shadow: 0 4px 30px var(--glow);
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative; overflow: hidden;
  border: none; cursor: pointer;
}
.btn-primary::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,0.12));
  transform: translateX(-100%); transition: transform 0.4s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 40px var(--glow); }
.btn-primary:hover::after { transform: translateX(100%); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid rgba(124,58,237,0.4); color: var(--muted);
  text-decoration: none; padding: 15px 28px; border-radius: 12px;
  font-size: 1rem; font-weight: 600;
  transition: border-color 0.25s, color 0.25s, background 0.25s;
}
.btn-outline:hover { border-color: var(--accent2); color: var(--text); background: rgba(124,58,237,0.08); }

.btn-cta {
  display: block; width: 100%; padding: 16px;
  background: linear-gradient(135deg, var(--accent), #4f46e5);
  color: #fff; text-decoration: none; border-radius: 12px;
  font-size: 1rem; font-weight: 700; text-align: center;
  box-shadow: 0 4px 28px var(--glow);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 40px var(--glow); }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  min-height: 65vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: 140px 24px 80px;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, #3b0764 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 80% 80%, #1e1b4b 0%, transparent 60%);
}
.page-hero-inner { position: relative; z-index: 2; max-width: 760px; margin: 0 auto; }
.page-hero h1 {
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  font-weight: 900; letter-spacing: -1.5px; line-height: 1.1;
  margin-bottom: 20px;
}
.page-hero h1 .grad {
  background: linear-gradient(135deg, var(--accent2), var(--cyan));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.page-hero .hero-desc {
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  color: var(--muted); max-width: 580px; margin: 0 auto 36px;
}
.page-hero .hero-actions {
  display: flex; gap: 14px; flex-wrap: wrap; justify-content: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(10,10,15,0.7); border: 1px solid rgba(124,58,237,0.35);
  border-radius: 100px; padding: 6px 16px;
  font-size: 0.78rem; font-weight: 600; color: var(--accent2);
  margin-bottom: 28px;
}

/* ── BREADCRUMB ── */
.breadcrumb {
  font-size: 0.78rem; color: var(--muted);
  margin-bottom: 20px;
}
.breadcrumb a { color: var(--accent2); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb .sep { margin: 0 6px; opacity: 0.4; }

/* ── STATUS BADGE ── */
.status-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(10,10,15,0.7); border: 1px solid rgba(34,197,94,0.35);
  border-radius: 100px; padding: 6px 16px;
  font-size: 0.78rem; font-weight: 600; color: #86efac;
  margin-bottom: 32px;
  animation: fadeInDown 0.8s ease both;
}
.status-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--green); box-shadow: 0 0 10px var(--green);
  animation: blink 2s infinite;
}

/* ── FEATURE CARDS ── */
.features-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.f-card {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: 16px; padding: 28px;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.f-card:hover {
  border-color: var(--accent); transform: translateY(-5px);
  box-shadow: 0 8px 40px rgba(124,58,237,0.15);
}
.f-icon {
  width: 50px; height: 50px; border-radius: 12px;
  background: rgba(124,58,237,0.12); border: 1px solid rgba(124,58,237,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 16px;
  transition: background 0.3s;
}
.f-card:hover .f-icon { background: rgba(124,58,237,0.22); }
.f-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.f-card p  { font-size: 0.875rem; color: var(--muted); line-height: 1.75; }

/* ── STEPS ── */
.steps-wrap {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px; position: relative;
}
.steps-line {
  position: absolute; top: 35px; left: 15%; right: 15%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), var(--cyan), transparent);
  opacity: 0.35;
}
@media (max-width: 640px) { .steps-line { display: none; } }
.step { text-align: center; }
.step-circle {
  width: 72px; height: 72px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #4f46e5);
  box-shadow: 0 0 28px rgba(124,58,237,0.45);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; font-size: 1.5rem; font-weight: 900;
  position: relative; z-index: 1;
}
.step h3 { font-weight: 700; margin-bottom: 8px; }
.step p   { font-size: 0.875rem; color: var(--muted); }

/* ── PRICING ── */
.price-center { display: flex; justify-content: center; }
.price-card {
  background: var(--bg3); border-radius: 24px; padding: 48px 40px;
  max-width: 460px; width: 100%; text-align: center;
  position: relative; overflow: hidden;
  box-shadow: 0 0 0 1px rgba(168,85,247,0.4), 0 0 80px rgba(124,58,237,0.1);
}
.price-card::before {
  content: ''; position: absolute; top: -60px; left: 50%; transform: translateX(-50%);
  width: 240px; height: 240px; border-radius: 50%;
  background: radial-gradient(circle, rgba(124,58,237,0.2) 0%, transparent 70%);
  pointer-events: none;
}
.price-badge {
  display: inline-block; background: rgba(124,58,237,0.15);
  border: 1px solid rgba(124,58,237,0.4); color: var(--accent2);
  font-size: 0.75rem; font-weight: 700;
  padding: 5px 14px; border-radius: 100px; margin-bottom: 24px;
}
.price-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--muted); margin-bottom: 12px; }
.price-amount {
  font-size: 4rem; font-weight: 900; letter-spacing: -3px; line-height: 1;
  background: linear-gradient(135deg, var(--accent2), var(--cyan));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.price-amount sup { font-size: 1.5rem; vertical-align: super; }
.price-period { color: var(--muted); font-size: 0.88rem; margin-top: 6px; }
.price-alt    { color: var(--muted); font-size: 0.82rem; margin: 8px 0 32px; }
.price-list   { list-style: none; text-align: left; margin-bottom: 36px; }
.price-list li {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 0; border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 0.9rem;
}
.price-list li:last-child { border: none; }
.pi { color: var(--green); }

/* ── FAQ ── */
.faq-wrap { max-width: 680px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(255,255,255,0.06); }
.faq-q {
  width: 100%; background: none; border: none; cursor: pointer;
  color: var(--text); text-align: left;
  padding: 22px 0; font-size: 0.95rem; font-weight: 600;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-family: inherit;
}
.faq-icon { color: var(--accent2); font-size: 1.2rem; transition: transform 0.3s; flex-shrink: 0; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  color: var(--muted); font-size: 0.9rem; line-height: 1.8;
  transition: max-height 0.4s ease, padding 0.4s;
}
.faq-item.open .faq-a { max-height: 400px; padding-bottom: 20px; }

/* ── CTA BAND ── */
.cta-band {
  background: linear-gradient(135deg, rgba(124,58,237,0.18), rgba(6,182,212,0.1));
  border: 1px solid rgba(124,58,237,0.25);
  border-radius: 24px; padding: 64px 40px; text-align: center;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; top: -80px; left: 50%; transform: translateX(-50%);
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(124,58,237,0.15) 0%, transparent 70%);
}
.cta-band h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 800; margin-bottom: 12px; }
.cta-band p  { color: var(--muted); margin-bottom: 36px; }

/* ── TRUST BADGES ── */
.trust-row {
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: center;
  margin-top: 40px;
}
.trust-badge {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px; padding: 10px 16px;
  font-size: 0.82rem; color: var(--muted);
}
.trust-badge strong { color: var(--text); }

/* ── TAG ROW ── */
.tag-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.tag {
  background: rgba(6,182,212,0.1); border: 1px solid rgba(6,182,212,0.3);
  color: var(--cyan); border-radius: 6px;
  padding: 4px 12px; font-size: 0.78rem; font-weight: 600;
}

/* ── PROSE / ARTICLE ── */
.prose { max-width: 720px; margin: 0 auto; }
.prose h2 { font-size: 1.6rem; font-weight: 800; margin: 48px 0 16px; letter-spacing: -0.5px; }
.prose h3 { font-size: 1.15rem; font-weight: 700; margin: 32px 0 10px; color: var(--accent2); }
.prose p  { color: var(--muted); line-height: 1.9; margin-bottom: 20px; }
.prose ul, .prose ol { color: var(--muted); padding-left: 20px; margin-bottom: 20px; }
.prose ul li, .prose ol li { margin-bottom: 8px; line-height: 1.8; }
.prose strong { color: var(--text); }
.prose a { color: var(--accent2); text-decoration: none; }
.prose a:hover { text-decoration: underline; }
.prose .highlight-box {
  background: rgba(124,58,237,0.08); border-left: 3px solid var(--accent2);
  border-radius: 0 10px 10px 0; padding: 16px 20px; margin: 24px 0;
  color: var(--text); font-size: 0.9rem;
}

/* ── BLOG GRID ── */
.blog-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.blog-card {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: 16px; padding: 28px;
  text-decoration: none; color: inherit;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  display: flex; flex-direction: column;
}
.blog-card:hover {
  border-color: var(--accent); transform: translateY(-4px);
  box-shadow: 0 8px 40px rgba(124,58,237,0.15);
}
.blog-tag {
  display: inline-block;
  background: rgba(6,182,212,0.1); border: 1px solid rgba(6,182,212,0.3);
  color: var(--cyan); border-radius: 6px;
  padding: 3px 10px; font-size: 0.72rem; font-weight: 600;
  margin-bottom: 14px; align-self: flex-start;
}
.blog-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; line-height: 1.45; }
.blog-card p  { font-size: 0.875rem; color: var(--muted); line-height: 1.7; flex: 1; }
.blog-read-more { margin-top: 20px; font-size: 0.82rem; font-weight: 600; color: var(--accent2); }
.blog-meta { font-size: 0.75rem; color: var(--muted); margin-bottom: 8px; opacity: 0.7; }

/* ── SCROLL REVEAL ── */
.reveal       { opacity:0; transform:translateY(36px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-left  { opacity:0; transform:translateX(-40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-right { opacity:0; transform:translateX(40px);  transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.on, .reveal-left.on, .reveal-right.on { opacity:1; transform:none; }

/* ── ANIMATIONS ── */
@keyframes blink       { 0%,100%{opacity:1} 50%{opacity:0.3} }
@keyframes fadeInDown  { from{opacity:0;transform:translateY(-20px)} to{opacity:1;transform:none} }
@keyframes fadeInUp    { from{opacity:0;transform:translateY(28px)}  to{opacity:1;transform:none} }
@keyframes fadeIn      { from{opacity:0} to{opacity:1} }
@keyframes scrollBounce{ 0%,100%{transform:rotate(45deg) translate(0,0)} 50%{transform:rotate(45deg) translate(4px,4px)} }

/* ── FOOTER ── */
footer {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 60px 24px 40px;
  color: var(--muted);
}
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-logo {
  font-size: 1.1rem; font-weight: 800; margin-bottom: 12px;
  background: linear-gradient(135deg, #a855f7, #06b6d4);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.footer-brand p { font-size: 0.82rem; color: var(--muted); line-height: 1.75; max-width: 240px; margin-top: 8px; }
.footer-brand .tg-link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 16px; color: var(--accent2); text-decoration: none;
  font-size: 0.85rem; font-weight: 600;
}
.footer-brand .tg-link:hover { text-decoration: underline; }
.footer-col h4 {
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.5px; color: var(--text); margin-bottom: 16px;
}
.footer-col a {
  display: block; color: var(--muted); text-decoration: none;
  margin-bottom: 10px; font-size: 0.85rem; transition: color 0.2s;
}
.footer-col a:hover { color: var(--accent2); }
.footer-bottom {
  max-width: 1100px; margin: 40px auto 0;
  padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.04);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
  font-size: 0.75rem; color: var(--muted); opacity: 0.6;
}
.footer-bottom a { color: var(--muted); text-decoration: none; }
.footer-bottom a:hover { color: var(--accent2); opacity: 1; }

/* ── MEDIA QUERIES ── */
@media (max-width: 900px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  header { padding: 14px 18px; }
  section { padding: 72px 0; }
  .price-card { padding: 36px 20px; }
  .cta-band { padding: 48px 24px; }
  .page-hero { padding: 120px 24px 60px; min-height: 55vh; }
  .footer-inner { grid-template-columns: 1fr; }
}
