/* ============================================================
   Site Locker - Marketing Site
   Design language: maximalism - loud color, layered shapes,
   oversized type, dense composition. Built on the extension's
   own brand accent (lime #d7ff52) pushed into a much louder
   supporting palette (pink / purple / orange / cyan).
   ============================================================ */

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

:root {
  --bg:        #0d0d10;
  --bg2:       #141417;
  --card:      #18181c;
  --card2:     #1f1f26;
  --border:    rgba(255,255,255,0.09);

  --lime:      #d7ff52;
  --lime-dark: #b8e02f;
  --pink:      #ff3d81;
  --purple:    #8b5cf6;
  --orange:    #ff8a3d;
  --cyan:      #34e4ea;
  --yellow:    #ffd23d;

  --text:      #f5f5f7;
  --text2:     #b5b5c0;
  --text3:     #77777f;

  --radius:    22px;
  --radius-sm: 14px;

  --shadow-hard: 6px 6px 0 rgba(0,0,0,0.9);
  --shadow-hard-lg: 10px 10px 0 rgba(0,0,0,0.9);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
  overflow-x: hidden;
  position: relative;
}

/* background texture: scattered blobs + grid dots, classic maximalist backdrop */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(circle at 12% 18%, rgba(255,61,129,0.18), transparent 32%),
    radial-gradient(circle at 88% 8%, rgba(139,92,246,0.20), transparent 30%),
    radial-gradient(circle at 92% 70%, rgba(52,228,234,0.14), transparent 28%),
    radial-gradient(circle at 8% 78%, rgba(215,255,82,0.12), transparent 30%),
    radial-gradient(circle, rgba(255,255,255,0.045) 1px, transparent 1.6px);
  background-size: auto, auto, auto, auto, 26px 26px;
}

.wrap { position: relative; z-index: 1; }

img { max-width: 100%; display: block; }

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

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

.section { padding: 110px 0; position: relative; }
.section-tight { padding: 70px 0; }

/* ---------- Typography ---------- */

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--card); border: 2px solid var(--border);
  padding: 8px 18px; border-radius: 999px;
  font-size: 12px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase;
  color: var(--lime); box-shadow: var(--shadow-hard);
  margin-bottom: 26px;
}
.eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--lime); animation: pulse 1.6s ease-in-out infinite; }
@keyframes pulse { 0%,100%{opacity:.4} 50%{opacity:1} }

h1, h2, h3 { font-weight: 900; line-height: 1.04; letter-spacing: -0.02em; }

.h-display {
  font-size: clamp(42px, 7vw, 84px);
  margin-bottom: 22px;
}
.h-display .accent-lime   { color: var(--bg); background: var(--lime); padding: 0 14px; border-radius: 12px; box-shadow: var(--shadow-hard-lg); display: inline-block; transform: rotate(-2deg); }
.h-display .accent-pink   { color: var(--bg); background: var(--pink); padding: 0 14px; border-radius: 12px; box-shadow: var(--shadow-hard-lg); display: inline-block; transform: rotate(1.5deg); }
.h-display .accent-outline{ -webkit-text-stroke: 2px var(--lime); color: transparent; }

.h-section { font-size: clamp(32px, 5vw, 52px); margin-bottom: 16px; }

.lede { font-size: 19px; color: var(--text2); line-height: 1.6; max-width: 620px; }

.center { text-align: center; margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-weight: 800; font-size: 15px; letter-spacing: 0.2px;
  padding: 16px 30px; border-radius: 14px; border: 2.5px solid var(--bg);
  cursor: pointer; transition: transform .15s ease, box-shadow .15s ease;
  font-family: inherit;
}
.btn-lime  { background: var(--lime); color: #0d0d10; box-shadow: var(--shadow-hard-lg); }
.btn-lime:hover  { transform: translate(-3px,-3px); box-shadow: 13px 13px 0 rgba(0,0,0,0.9); }
.btn-pink  { background: var(--pink); color: #fff; box-shadow: var(--shadow-hard-lg); }
.btn-pink:hover  { transform: translate(-3px,-3px); box-shadow: 13px 13px 0 rgba(0,0,0,0.9); }
.btn-ghost { background: transparent; color: var(--text); border-color: var(--border); box-shadow: none; }
.btn-ghost:hover { border-color: var(--lime); color: var(--lime); }
.btn-sm { padding: 11px 20px; font-size: 13px; border-radius: 11px; }
.btn:active { transform: translate(0,0) !important; box-shadow: 3px 3px 0 rgba(0,0,0,0.9) !important; }

/* ---------- Nav ---------- */

.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(13,13,16,0.85); backdrop-filter: blur(14px);
  border-bottom: 2px solid var(--border);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 16px 28px; max-width: 1180px; margin: 0 auto; }
.nav-brand { display: flex; align-items: center; gap: 11px; font-weight: 800; font-size: 14px; line-height: 1.2; max-width: 220px; }
.nav-brand img { width: 34px; height: 34px; border-radius: 9px; flex-shrink: 0; }

@media (max-width: 920px) {
  .nav-brand { font-size: 12.5px; max-width: 170px; }
}
.nav-links { display: flex; align-items: center; gap: 30px; font-size: 14px; font-weight: 700; color: var(--text2); }
.nav-links a:hover { color: var(--lime); }
.nav-cta { display:flex; align-items:center; gap: 14px; }
.nav-toggle {
  display: none; background: var(--card); border: 2px solid var(--border); border-radius: 10px;
  color: var(--text); font-size: 18px; width: 40px; height: 40px; cursor: pointer;
}

@media (max-width: 780px) {
  .nav-links {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: flex-start; gap: 4px;
    background: var(--bg2); border-bottom: 2px solid var(--border); padding: 16px 28px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 10px 0; width: 100%; }
  .nav-toggle { display: block; }
}

/* ---------- Marquee ticker ---------- */

.ticker {
  background: var(--lime); color: #0d0d10; overflow: hidden;
  border-top: 3px solid #0d0d10; border-bottom: 3px solid #0d0d10;
  position: relative; z-index: 1;
}
.ticker-track {
  display: flex; white-space: nowrap; width: max-content;
  animation: scrollTicker 24s linear infinite; padding: 11px 0;
}
.ticker-track span {
  font-weight: 900; font-size: 13px; letter-spacing: 1.2px; text-transform: uppercase;
  padding: 0 26px; display: inline-flex; align-items: center; gap: 10px;
}
.ticker-track span::after { content: '\25C6'; margin-left: 26px; opacity: .5; }
@keyframes scrollTicker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Hero ---------- */

.hero { padding: 100px 0 70px; position: relative; }
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: center; }
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; } }

.hero-actions { display: flex; gap: 16px; margin-top: 34px; flex-wrap: wrap; }

.hero-trust { display: flex; gap: 22px; margin-top: 36px; flex-wrap: wrap; }
.hero-trust .item { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700; color: var(--text2); }
.hero-trust .item b { color: var(--lime); }

.hero-visual { position: relative; display: flex; align-items: center; justify-content: center; }
.hero-card {
  background: var(--card); border: 3px solid #0d0d10; border-radius: 28px;
  box-shadow: 14px 14px 0 rgba(215,255,82,0.25), 0 0 0 3px var(--border);
  padding: 40px; width: 100%; max-width: 340px; text-align: center;
  transform: rotate(2deg);
}
.hero-card img { width: 96px; margin: 0 auto 18px; filter: drop-shadow(0 8px 22px rgba(215,255,82,.35)); }
.hero-card .badge { display:inline-block; background: var(--lime); color:#0d0d10; font-weight:900; font-size:10.5px; letter-spacing:1.4px; text-transform:uppercase; padding:5px 13px; border-radius:20px; margin-bottom:18px; }
.hero-card .dots { display:flex; gap:10px; justify-content:center; margin: 20px 0 10px; }
.hero-card .dots div { width: 40px; height: 48px; border-radius: 12px; background: var(--bg); border: 2px solid var(--border); }
.hero-sticker {
  position: absolute; background: var(--pink); color:#fff; font-weight:900; font-size: 12px;
  padding: 10px 16px; border-radius: 50%; width: 92px; height: 92px; display:flex; align-items:center; justify-content:center; text-align:center;
  border: 3px solid #0d0d10; transform: rotate(-14deg); box-shadow: var(--shadow-hard);
  top: -14px; right: -6px; line-height: 1.15;
}
.hero-sticker2 {
  position: absolute; background: var(--cyan); color:#0d0d10; font-weight:900; font-size: 11px;
  padding: 9px 14px; border-radius: 16px; border: 3px solid #0d0d10; box-shadow: var(--shadow-hard);
  bottom: 10px; left: -30px; transform: rotate(6deg);
}

/* ---------- Logo cloud / stats strip ---------- */

.stats-strip { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
@media (max-width: 780px) { .stats-strip { grid-template-columns: repeat(2,1fr); } }
.stat-card {
  background: var(--card); border: 2.5px solid var(--bg); border-radius: var(--radius-sm);
  padding: 24px 18px; text-align: center; box-shadow: var(--shadow-hard);
}
.stat-card .num { font-size: 34px; font-weight: 900; color: var(--lime); }
.stat-card .lbl { font-size: 12px; color: var(--text2); font-weight: 700; margin-top: 4px; }

/* ---------- Feature grid ---------- */

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 50px; }
@media (max-width: 900px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .feature-grid { grid-template-columns: 1fr; } }

.feature-card {
  background: var(--card); border-radius: var(--radius); padding: 28px 24px;
  border: 3px solid #0d0d10; box-shadow: var(--shadow-hard);
  transition: transform .2s ease, box-shadow .2s ease;
  position: relative; overflow: hidden;
}
.feature-card:hover { transform: translateY(-6px) rotate(-0.6deg); box-shadow: 10px 14px 0 rgba(0,0,0,0.85); }
.feature-card .icon {
  width: 54px; height: 54px; border-radius: 15px; display:flex; align-items:center; justify-content:center;
  font-size: 24px; margin-bottom: 18px;
}
.feature-card h3 { font-size: 18px; margin-bottom: 8px; }
.feature-card p { font-size: 13.5px; color: var(--text2); line-height: 1.6; }

.fc-lime .icon  { background: rgba(215,255,82,.16); }
.fc-pink .icon  { background: rgba(255,61,129,.16); }
.fc-purple .icon{ background: rgba(139,92,246,.18); }
.fc-orange .icon{ background: rgba(255,138,61,.18); }
.fc-cyan .icon  { background: rgba(52,228,234,.16); }
.fc-yellow .icon{ background: rgba(255,210,61,.18); }

/* ---------- How it works ---------- */

.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; margin-top: 50px; counter-reset: step; }
@media (max-width: 820px) { .steps { grid-template-columns: 1fr; } }
.step-card { position: relative; background: var(--card2); border-radius: var(--radius); padding: 30px 26px 26px; border: 2px solid var(--border); }
.step-num {
  width: 44px; height: 44px; border-radius: 50%; background: var(--purple); color:#fff;
  display:flex; align-items:center; justify-content:center; font-weight:900; font-size:18px;
  margin-bottom: 18px; box-shadow: var(--shadow-hard);
}
.step-card h3 { font-size: 17px; margin-bottom: 8px; }
.step-card p { font-size: 13.5px; color: var(--text2); line-height: 1.6; }

/* ---------- Pricing ---------- */

.pricing-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; margin-top: 54px; align-items: stretch; }
@media (max-width: 1050px) { .pricing-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 700px)  { .pricing-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .pricing-grid { grid-template-columns: 1fr; } }

.price-card {
  background: var(--card); border-radius: var(--radius); padding: 26px 20px;
  border: 3px solid #0d0d10; box-shadow: var(--shadow-hard);
  display: flex; flex-direction: column; position: relative;
  transition: transform .18s ease;
}
.price-card:hover { transform: translateY(-6px); }
.price-card.featured { background: linear-gradient(160deg, #1f2408, var(--card) 55%); border-color: var(--lime); box-shadow: 6px 6px 0 var(--lime); }
.price-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%) rotate(-3deg);
  background: var(--pink); color: #fff; font-size: 10px; font-weight: 900; letter-spacing: 1px;
  padding: 6px 14px; border-radius: 20px; border: 2px solid #0d0d10; text-transform: uppercase;
  white-space: nowrap;
}
.price-name { font-size: 14px; font-weight: 800; color: var(--text2); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 10px; }
.price-amount { font-size: 30px; font-weight: 900; color: var(--text); margin-bottom: 2px; }
.price-amount span { font-size: 13px; color: var(--text3); font-weight: 700; }
.price-sub { font-size: 11.5px; color: var(--text3); margin-bottom: 20px; }
.price-card .btn { margin-top: auto; width: 100%; }

/* ---------- FAQ ---------- */

.faq-list { max-width: 780px; margin: 50px auto 0; display: flex; flex-direction: column; gap: 14px; }
.faq-item { background: var(--card); border-radius: var(--radius-sm); border: 2px solid var(--border); overflow: hidden; }
.faq-q {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 24px; cursor: pointer; font-weight: 800; font-size: 15px;
}
.faq-q .plus { font-size: 20px; color: var(--lime); transition: transform .2s ease; flex-shrink: 0; }
.faq-item.open .faq-q .plus { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .25s ease; padding: 0 24px; }
.faq-item.open .faq-a { max-height: 300px; padding-bottom: 20px; }
.faq-a p { color: var(--text2); font-size: 13.5px; line-height: 1.7; }

/* ---------- CTA banner ---------- */

.cta-banner {
  background: linear-gradient(120deg, var(--lime), var(--cyan) 120%);
  border-radius: 32px; padding: 64px 40px; text-align: center;
  border: 4px solid #0d0d10; box-shadow: var(--shadow-hard-lg);
  position: relative; overflow: hidden;
}
.cta-banner h2 { color: #0d0d10; font-size: clamp(28px, 4.5vw, 44px); margin-bottom: 14px; }
.cta-banner p { color: #14210a; font-weight: 700; margin-bottom: 30px; font-size: 16px; }
.cta-banner .btn-lime { background:#0d0d10; color: var(--lime); }

/* ---------- Footer ---------- */

.footer { border-top: 2px solid var(--border); padding: 60px 0 34px; margin-top: 40px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 34px; margin-bottom: 40px; }
@media (max-width: 780px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer-brand { display: flex; align-items: center; gap: 10px; font-weight: 900; font-size: 17px; margin-bottom: 12px; }
.footer-brand img { width: 30px; height: 30px; border-radius: 8px; }
.footer p.desc { color: var(--text3); font-size: 13px; line-height: 1.6; max-width: 280px; }
.footer h4 { font-size: 12.5px; text-transform: uppercase; letter-spacing: 1px; color: var(--text3); margin-bottom: 14px; }
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer ul a { font-size: 13.5px; color: var(--text2); font-weight: 600; }
.footer ul a:hover { color: var(--lime); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 12px; color: var(--text3); }

/* ---------- Legal pages (privacy / refund) ---------- */

.legal-header { padding: 70px 0 30px; }
.legal-header .eyebrow { }
.legal-updated { color: var(--text3); font-size: 13px; margin-top: 10px; }

.legal-body { padding-bottom: 90px; }
.legal-body .container { max-width: 860px; }

.legal-card {
  background: var(--card); border: 2px solid var(--border); border-radius: var(--radius);
  padding: 36px 34px; margin-bottom: 24px;
}
.legal-card h2 { font-size: 22px; margin-bottom: 14px; color: var(--lime); }
.legal-card h3 { font-size: 16px; margin: 20px 0 8px; color: var(--text); }
.legal-card p { color: var(--text2); font-size: 14.5px; line-height: 1.8; margin-bottom: 12px; }
.legal-card ul, .legal-card ol { color: var(--text2); font-size: 14.5px; line-height: 1.8; margin: 10px 0 14px 22px; }
.legal-card li { margin-bottom: 8px; }
.legal-card a { color: var(--lime); font-weight: 700; text-decoration: underline; }

.callout {
  border-radius: var(--radius-sm); padding: 20px 22px; margin: 18px 0;
  border: 2.5px solid; font-size: 14px; line-height: 1.7; font-weight: 600;
}
.callout-danger { background: rgba(255,61,129,0.10); border-color: var(--pink); color: #ffd7e6; }
.callout-good   { background: rgba(215,255,82,0.09); border-color: var(--lime); color: #eaffb8; }
.callout-info   { background: rgba(52,228,234,0.09); border-color: var(--cyan); color: #d4f9fb; }

.toc { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 34px; }
.toc a {
  background: var(--card2); border: 1.5px solid var(--border); border-radius: 999px;
  padding: 8px 16px; font-size: 12.5px; font-weight: 700; color: var(--text2);
}
.toc a:hover { border-color: var(--lime); color: var(--lime); }
