/* MyFollowers & Unfollowers Check — Light 2026 */
:root {
  --bg: #FFFFFF;
  --bg-tint: #F8F7FF;
  --surface: #FFFFFF;
  --primary: #A855F7;
  --secondary: #EC4899;
  --gradient: linear-gradient(135deg, #A855F7, #EC4899);
  --gradient-soft: linear-gradient(135deg, #F5F0FF, #FDF2F8);
  --text: #0F0F1A;
  --text-2: #6B7280;
  --text-muted: #9CA3AF;
  --border: rgba(168, 85, 247, 0.12);
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  --shadow-hover: 0 8px 32px rgba(168, 85, 247, 0.15);
  --radius-card: 16px;
  --radius-btn: 12px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: opacity .2s ease, color .2s ease; }
a:hover { opacity: .85; }
ul { list-style: none; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  position: relative;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.01em;
}
.brand img { width: 32px; height: 32px; border-radius: 8px; }
.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav-links a {
  color: var(--text-2);
  font-size: 15px;
  font-weight: 500;
}
.nav-links a:hover { color: var(--text); opacity: 1; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--gradient);
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  box-shadow: 0 4px 16px rgba(168, 85, 247, 0.25);
  transition: transform .2s ease, box-shadow .2s ease;
  border: none;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(168, 85, 247, 0.35); opacity: 1; color: #fff !important; }
a.btn, a.btn:visited, a.btn:link { color: #ffffff !important; text-decoration: none; }

.menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  cursor: pointer;
  padding: 8px 10px;
  border-radius: 10px;
}
.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  margin: 4px 0;
  border-radius: 2px;
}

/* Hero */
.hero {
  padding: 80px 0 100px;
  background: var(--gradient-soft);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.hero::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  top: -200px;
  left: -100px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.15), transparent 60%);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  bottom: -200px;
  right: -100px;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.15), transparent 60%);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }

.hero-icon {
  width: 200px;
  height: 200px;
  margin: 0 auto 36px;
  border-radius: 44px;
  box-shadow: 0 30px 80px rgba(168, 85, 247, 0.35), 0 10px 30px rgba(236, 72, 153, 0.25);
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 20px;
  box-shadow: var(--shadow);
}
.badge-pill .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gradient);
}

h1 {
  font-size: clamp(36px, 5.2vw, 60px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-weight: 800;
  margin-bottom: 20px;
}
.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero p.lead {
  font-size: 19px;
  color: var(--text-2);
  max-width: 640px;
  margin: 0 auto 36px;
}

.hero-cta { display: inline-flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

.hero-trust {
  margin-top: 28px;
  font-size: 14px;
  color: var(--text-muted);
}
.hero-trust .stars { color: #F59E0B; letter-spacing: 1px; margin-right: 8px; }

/* App Store badge */
.appstore {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  background: #0F0F1A;
  color: #fff;
  border-radius: 12px;
  font-weight: 600;
  box-shadow: 0 4px 16px rgba(15, 15, 26, 0.15);
  transition: transform .2s ease;
}
.appstore:hover { transform: translateY(-2px); color: #fff; opacity: 1; }
.appstore svg { width: 26px; height: 26px; }
.appstore .sm { display: block; font-size: 11px; font-weight: 400; opacity: .8; line-height: 1; margin-bottom: 2px; }
.appstore .lg { display: block; font-size: 17px; font-weight: 700; line-height: 1; }

/* Section */
section { padding: 80px 0; }
section.tint { background: var(--bg-tint); }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section-head h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  letter-spacing: -0.02em;
  font-weight: 800;
  margin-bottom: 14px;
  line-height: 1.15;
}
.section-head p { color: var(--text-2); font-size: 17px; }
.eyebrow {
  display: inline-block;
  padding: 5px 12px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

/* Features */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 28px;
  box-shadow: var(--shadow);
  transition: transform .25s ease, box-shadow .25s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.card .icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--gradient-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--primary);
}
.card .icon-wrap svg { width: 24px; height: 24px; stroke: currentColor; }
.card h3 { font-size: 19px; font-weight: 700; margin-bottom: 8px; letter-spacing: -0.01em; }
.card p { color: var(--text-2); font-size: 15px; }

/* Pricing */
.grid-pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 980px;
  margin: 0 auto;
}
.price-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 32px 28px;
  text-align: left;
  position: relative;
  box-shadow: var(--shadow);
  transition: transform .25s ease, box-shadow .25s ease;
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.price-card.best {
  border: 2px solid transparent;
  background: linear-gradient(#fff, #fff) padding-box,
              var(--gradient) border-box;
  transform: scale(1.03);
}
.price-card.best:hover { transform: scale(1.03) translateY(-4px); }
.price-card .tag {
  position: absolute;
  top: -12px;
  right: 24px;
  padding: 4px 12px;
  background: var(--gradient);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .05em;
  border-radius: 999px;
  text-transform: uppercase;
}
.price-card h3 { font-size: 18px; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.price-card .price {
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-top: 8px;
}
.price-card .price .cycle {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-2);
}
.price-card .desc { color: var(--text-2); font-size: 14px; margin-bottom: 4px; }
.price-card ul { list-style: none; margin: 24px 0 8px; }
.price-card li {
  display: flex; gap: 10px; align-items: flex-start;
  padding: 7px 0;
  color: var(--text);
  font-size: 14.5px;
}
.price-card li::before {
  content: "";
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  background: var(--gradient-soft);
  border-radius: 50%;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23A855F7' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='3,8.5 6.5,12 13,5'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px;
  margin-top: 2px;
}
.pricing-note {
  text-align: center;
  color: var(--text-2);
  font-size: 14px;
  margin-top: 32px;
}

/* Steps */
.grid-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.step {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  position: relative;
}
.step .num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--gradient);
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 18px;
  box-shadow: 0 6px 16px rgba(168, 85, 247, 0.3);
}
.step h3 { font-size: 19px; font-weight: 700; margin-bottom: 8px; }
.step p { color: var(--text-2); font-size: 15px; }

/* CTA */
.cta-section {
  padding: 100px 0;
  text-align: center;
  background: var(--gradient-soft);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(168, 85, 247, 0.12), transparent 60%);
  pointer-events: none;
}
.cta-section .container { position: relative; }
.cta-section h2 {
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.cta-section p { color: var(--text-2); font-size: 18px; margin-bottom: 32px; max-width: 560px; margin-left: auto; margin-right: auto; }

/* Footer */
footer {
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 48px 0 36px;
  color: var(--text-2);
}
.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
}
.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-links a { color: var(--text-2); font-size: 14.5px; }
.footer-links a:hover { color: var(--primary); opacity: 1; }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
}
.footer-bottom p + p { margin-top: 6px; }

/* Blog */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 0;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .25s ease, box-shadow .25s ease;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.blog-thumb {
  aspect-ratio: 16 / 9;
  background: var(--gradient-soft);
  position: relative;
  overflow: hidden;
}
.blog-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(168,85,247,.25), rgba(236,72,153,.25));
}
.blog-body { padding: 24px; }
.blog-body h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.blog-body p { color: var(--text-2); font-size: 14.5px; }
.blog-body .meta { font-size: 12px; color: var(--text-muted); margin-bottom: 8px; text-transform: uppercase; letter-spacing: .06em; font-weight: 600; }
.coming-soon {
  text-align: center;
  margin-top: 48px;
  padding: 32px;
  background: var(--gradient-soft);
  border-radius: var(--radius-card);
  color: var(--text-2);
  border: 1px solid var(--border);
}

/* Article (privacy/terms/support) */
.article {
  max-width: 820px;
  margin: 0 auto;
  padding: 72px 24px;
}
.article h1 {
  font-size: clamp(32px, 4vw, 44px);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.article .updated { color: var(--text-muted); margin-bottom: 32px; font-size: 14px; }
.article h2 {
  font-size: 22px;
  font-weight: 700;
  margin: 40px 0 14px;
  letter-spacing: -0.01em;
  color: var(--text);
}
.article h3 { font-size: 17px; font-weight: 700; margin: 24px 0 10px; color: var(--text); }
.article p { color: var(--text-2); margin-bottom: 14px; font-size: 16px; }
.article ul { color: var(--text-2); margin: 0 0 16px 22px; list-style: disc; }
.article ul li { margin-bottom: 8px; }
.article a { color: var(--primary); font-weight: 500; }
.article strong { color: var(--text); }

/* FAQ */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  margin-bottom: 12px;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: box-shadow .2s ease;
}
.faq-item[open] { box-shadow: var(--shadow-hover); }
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 24px;
  font-weight: 600;
  font-size: 16px;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  color: var(--primary);
  font-size: 26px;
  font-weight: 300;
  line-height: 1;
  transition: transform .2s ease;
}
.faq-item[open] summary::after { content: "–"; }
.faq-item .answer {
  padding: 0 24px 22px;
  color: var(--text-2);
  font-size: 15px;
  line-height: 1.7;
}

/* Contact */
.contact-box {
  max-width: 560px;
  margin: 48px auto 0;
  text-align: center;
  padding: 40px;
  background: var(--gradient-soft);
  border-radius: var(--radius-card);
  border: 1px solid var(--border);
}
.contact-box h3 { font-size: 22px; font-weight: 700; margin-bottom: 10px; }
.contact-box p { color: var(--text-2); margin-bottom: 18px; }
.contact-box a { font-weight: 600; font-size: 17px; }

/* Responsive */
@media (max-width: 900px) {
  .grid-3, .grid-pricing, .grid-steps, .blog-grid {
    grid-template-columns: 1fr;
  }
  .price-card.best { transform: none; }
  .price-card.best:hover { transform: translateY(-4px); }
}

@media (max-width: 720px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 20px 24px;
    gap: 16px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
  }
  .menu-toggle { display: block; }
  .hero { padding: 60px 0 80px; }
  .hero-icon { width: 150px; height: 150px; border-radius: 34px; }
  section { padding: 60px 0; }
  .cta-section { padding: 72px 0; }
  h1 { font-size: 38px; }
  .footer-top { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0s !important;
    transition-duration: 0s !important;
    scroll-behavior: auto;
  }
}
