/* =========================================================
   Anti Spy — Spyware Detector | Brand Website
   Design tokens
   ========================================================= */
:root{
  --bg: #060907;
  --bg-soft: #0B120E;
  --surface: #101A14;
  --surface-2: #142019;
  --border: rgba(66, 255, 143, 0.14);
  --border-strong: rgba(66, 255, 143, 0.32);

  --green-900: #0A2E1B;
  --green-700: #14803E;
  --green-500: #22C55E;
  --green-400: #3DE07E;
  --green-300: #7CF2A9;
  --neon: #39FF88;

  --text-hi: #EAF7EE;
  --text: #C7D9CD;
  --text-mute: #7E9689;
  --text-faint: #4C6156;

  --danger: #FF5D5D;
  --amber: #FFC24B;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;

  --font-display: "Space Grotesk", "Segoe UI", sans-serif;
  --font-body: "Inter", "Segoe UI", sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;

  --shadow-glow: 0 0 0 1px var(--border), 0 20px 60px -20px rgba(34,197,94,0.35);
  --max: 1180px;
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  background:
    radial-gradient(ellipse 900px 500px at 12% -10%, rgba(34,197,94,0.10), transparent 60%),
    radial-gradient(ellipse 700px 500px at 100% 0%, rgba(34,197,94,0.06), transparent 55%),
    var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ list-style:none; margin:0; padding:0; }
h1,h2,h3,h4{ font-family:var(--font-display); color:var(--text-hi); margin:0 0 .5em; letter-spacing:-0.01em; }
p{ margin:0 0 1em; }
.container{ max-width:var(--max); margin:0 auto; padding:0 24px; }
.mono{ font-family:var(--font-mono); letter-spacing:.02em; }

::selection{ background:var(--green-500); color:#04140A; }

:focus-visible{
  outline:2px solid var(--neon);
  outline-offset:3px;
  border-radius:4px;
}

@media (prefers-reduced-motion: reduce){
  *{ animation-duration:0.001ms !important; animation-iteration-count:1 !important; transition-duration:0.001ms !important; scroll-behavior:auto !important; }
}

/* =========================================================
   Buttons
   ========================================================= */
.btn{
  display:inline-flex; align-items:center; gap:10px;
  font-family:var(--font-display); font-weight:600; font-size:.95rem;
  padding:13px 24px; border-radius:100px; cursor:pointer;
  justify-content:center;
  border:1px solid transparent; transition:transform .15s ease, box-shadow .15s ease, background .15s ease;
  white-space:nowrap;
}
.btn:active{ transform:translateY(1px); }
.btn-primary{
  background: linear-gradient(180deg, var(--green-400), var(--green-700));
  color:#04150B;
  box-shadow: 0 1px 0 rgba(255,255,255,0.25) inset, 0 12px 30px -10px rgba(34,197,94,0.55);
}
.btn-primary:hover{ box-shadow: 0 1px 0 rgba(255,255,255,0.3) inset, 0 16px 36px -8px rgba(34,197,94,0.75); }
.btn-ghost{
  background:transparent; color:var(--text-hi); border-color:var(--border-strong);
}
.btn-ghost:hover{ border-color:var(--neon); color:var(--neon); }
.btn-sm{ padding:9px 18px; font-size:.85rem; }
.btn svg{ width:16px; height:16px; }

/* =========================================================
   Nav
   ========================================================= */
.nav{
  position:sticky; top:0; z-index:50;
  background:rgba(6,9,7,0.78); backdrop-filter:blur(14px);
  border-bottom:1px solid var(--border);
}
.nav-inner{ display:flex; align-items:center; justify-content:space-between; padding:16px 24px; }
.brand{ display:flex; align-items:center; gap:10px; font-family:var(--font-display); font-weight:700; font-size:1.1rem; color:var(--text-hi); line-height:1.15; }
.brand-mark{ width:32px; height:32px; }
.brand-mark-img{ width:36px; height:36px; border-radius:10px; object-fit:cover; flex:0 0 auto; box-shadow:0 0 0 1px var(--border-strong); }
.brand-sub{ display:block; font-family:var(--font-mono); font-weight:400; font-size:.62rem; letter-spacing:.03em; color:var(--text-mute); }
@media (max-width:520px){ .brand{ font-size:.98rem; } .brand-sub{ font-size:.56rem; } }
.nav-links{ display:flex; align-items:center; gap:32px; }
.nav-links a{ font-size:.92rem; color:var(--text-mute); transition:color .15s; position:relative; }
.nav-links a:hover, .nav-links a.active{ color:var(--text-hi); }
.nav-links a.active::after{
  content:""; position:absolute; left:0; right:0; bottom:-18px; height:2px; background:var(--neon);
}
.nav-cta{ display:flex; align-items:center; gap:14px; }
.nav-toggle{ display:none; background:none; border:1px solid var(--border-strong); border-radius:8px; padding:8px; color:var(--text-hi); }

@media (max-width: 860px){
  .nav-links{
    position:fixed; inset:64px 0 auto 0; flex-direction:column; align-items:flex-start; gap:0;
    background:var(--bg-soft); border-bottom:1px solid var(--border);
    padding:8px 24px 20px; transform:translateY(-8px); opacity:0; pointer-events:none; transition:all .2s ease;
  }
  .nav-links.open{ transform:translateY(0); opacity:1; pointer-events:auto; }
  .nav-links a{ padding:12px 0; width:100%; border-bottom:1px solid var(--border); }
  .nav-links a.active::after{ display:none; }
  .nav-toggle{ display:block; }
  .nav-cta .btn-ghost{ display:none; }
}

/* Mobile tap-target & sizing cleanup */
@media (max-width: 640px){
  .container{ padding:0 18px; }
  .nav-inner{ padding:13px 18px; }
  .btn{ padding:11px 18px; font-size:.86rem; }
  .btn-sm{ padding:8px 14px; font-size:.78rem; }
  .nav-cta{ gap:10px; }
  section{ padding:56px 0; }
  .hero{ padding:44px 0 28px; }
  .hero-actions{ gap:10px; }
  .hero-actions .btn{ flex:1 1 100%; justify-content:center; }
  .hero-stats{ gap:22px; }
  .cta-band{ padding:30px 22px; flex-direction:column; align-items:stretch; text-align:center; }
  .cta-band .btn{ width:100%; justify-content:center; }
  .step, .feature-card, .review-card, .info-card{ padding:18px; }
  .phone-shot{ width:168px; }
  .section-head{ margin-bottom:34px; }
}

/* =========================================================
   Hero + Radar signature element
   ========================================================= */
.hero{ padding:72px 0 40px; position:relative; overflow:hidden; }
.hero-grid{ display:grid; grid-template-columns:1.05fr .95fr; gap:56px; align-items:center; }
@media (max-width: 940px){ .hero-grid{ grid-template-columns:1fr; } }

.eyebrow{
  display:inline-flex; align-items:center; gap:8px;
  font-family:var(--font-mono); font-size:.78rem; color:var(--green-300);
  background:rgba(34,197,94,0.08); border:1px solid var(--border-strong);
  padding:6px 14px; border-radius:100px; margin-bottom:22px;
}
.eyebrow .dot{ width:6px; height:6px; border-radius:50%; background:var(--neon); box-shadow:0 0 8px var(--neon); animation:blink 1.8s infinite; }
@keyframes blink{ 0%,100%{opacity:1;} 50%{opacity:.25;} }

.hero h1{ font-size:clamp(2.2rem, 4.2vw, 3.4rem); line-height:1.08; }
.hero h1 .accent{ color:var(--green-400); }
.hero-sub{ font-size:1.08rem; color:var(--text-mute); max-width:520px; margin-bottom:30px; }
.hero-actions{ display:flex; flex-wrap:wrap; gap:14px; margin-bottom:34px; }

.hero-stats{ display:flex; gap:34px; flex-wrap:wrap; }
.hero-stats div strong{ display:block; font-family:var(--font-display); font-size:1.5rem; color:var(--text-hi); }
.hero-stats div span{ font-size:.8rem; color:var(--text-faint); }

/* Radar visual */
.radar-wrap{ position:relative; display:flex; align-items:center; justify-content:center; }
.radar{ position:relative; width:min(420px, 88vw); aspect-ratio:1; border-radius:50%; }
.radar-ring{
  position:absolute; inset:0; border-radius:50%;
  border:1px solid var(--border);
}
.radar-ring:nth-child(2){ inset:16%; }
.radar-ring:nth-child(3){ inset:32%; }
.radar-ring:nth-child(4){ inset:48%; }
.radar-cross{ position:absolute; inset:0; }
.radar-cross::before,.radar-cross::after{
  content:""; position:absolute; background:var(--border);
}
.radar-cross::before{ left:0; right:0; top:50%; height:1px; }
.radar-cross::after{ top:0; bottom:0; left:50%; width:1px; }
.radar-sweep{
  position:absolute; inset:0; border-radius:50%;
  background: conic-gradient(from 0deg, rgba(57,255,136,0.55), transparent 26%);
  animation: sweep 4s linear infinite;
  mix-blend-mode: screen;
}
@keyframes sweep{ to{ transform:rotate(360deg); } }
.radar-core{
  position:absolute; left:50%; top:50%; width:14px; height:14px; margin:-7px;
  background:var(--neon); border-radius:50%; box-shadow:0 0 24px 6px rgba(57,255,136,0.55);
}
.radar-blip{ position:absolute; width:9px; height:9px; border-radius:50%; background:var(--green-300); box-shadow:0 0 10px var(--green-400); animation:pulse 2.4s ease-in-out infinite; }
.radar-blip::after{
  content:""; position:absolute; inset:-14px; border:1px solid var(--green-400); border-radius:50%; opacity:.5;
  animation:ring 2.4s ease-out infinite;
}
@keyframes pulse{ 0%,100%{ transform:scale(1);} 50%{ transform:scale(1.3);} }
@keyframes ring{ from{ transform:scale(.3); opacity:.7;} to{ transform:scale(1.6); opacity:0;} }
.radar-label{
  position:absolute; font-family:var(--font-mono); font-size:.68rem; color:var(--text-mute);
  background:var(--surface); border:1px solid var(--border); padding:3px 8px; border-radius:6px; white-space:nowrap;
}
.radar-frame{
  position:absolute; inset:-6%; border:1px dashed var(--border); border-radius:28px; pointer-events:none;
}
.radar-legend{ position:absolute; bottom:-6px; left:50%; transform:translateX(-50%); font-family:var(--font-mono); font-size:.72rem; color:var(--text-faint); text-align:center; }

/* =========================================================
   Marquee / trust strip
   ========================================================= */
.trust-strip{ border-top:1px solid var(--border); border-bottom:1px solid var(--border); padding:20px 0; background:var(--bg-soft); }
.trust-inner{ display:flex; flex-wrap:wrap; gap:18px 40px; align-items:center; justify-content:center; font-family:var(--font-mono); font-size:.78rem; color:var(--text-mute); }
.trust-inner span{ display:flex; align-items:center; gap:8px; }
.trust-inner svg{ width:16px; height:16px; color:var(--green-400); }

/* =========================================================
   Sections
   ========================================================= */
section{ padding:88px 0; }
.section-head{ max-width:640px; margin:0 auto 52px; text-align:center; }
.section-head .eyebrow{ margin-bottom:16px; }
.section-head h2{ font-size:clamp(1.7rem, 3vw, 2.4rem); }
.section-head p{ color:var(--text-mute); }

/* Feature grid */
.feature-grid{ display:grid; grid-template-columns:repeat(3, 1fr); gap:22px; }
@media (max-width: 940px){ .feature-grid{ grid-template-columns:repeat(2,1fr); } }
@media (max-width: 640px){ .feature-grid{ grid-template-columns:1fr; } }
.feature-card{
  background:linear-gradient(180deg, var(--surface), var(--bg-soft));
  border:1px solid var(--border); border-radius:var(--radius-md); padding:26px;
  transition:border-color .2s, transform .2s;
}
.feature-card:hover{ border-color:var(--border-strong); transform:translateY(-3px); }
.feature-icon{
  width:42px; height:42px; border-radius:10px; display:flex; align-items:center; justify-content:center;
  background:rgba(34,197,94,0.1); border:1px solid var(--border-strong); color:var(--green-400); margin-bottom:16px;
}
.feature-icon svg{ width:22px; height:22px; }
.feature-card h3{ font-size:1.05rem; margin-bottom:8px; }
.feature-card p{ font-size:.92rem; color:var(--text-mute); margin:0; }

/* Screenshot showcase */
.showcase{ background:var(--bg-soft); border-top:1px solid var(--border); border-bottom:1px solid var(--border); }
.shot-row{ display:flex; gap:20px; overflow-x:auto; padding:10px 4px 24px; scroll-snap-type:x mandatory; }
.shot-row::-webkit-scrollbar{ height:6px; }
.shot-row::-webkit-scrollbar-thumb{ background:var(--border-strong); border-radius:10px; }
.phone-shot{
  scroll-snap-align:start; flex:0 0 auto; width:220px; aspect-ratio:9/19.5;
  border-radius:26px; border:1px solid var(--border-strong); background:var(--surface-2);
  overflow:hidden; position:relative; box-shadow:var(--shadow-glow);
}
.phone-shot img{ width:100%; height:100%; object-fit:cover; display:block; }
.shot-placeholder{
  position:absolute; inset:0; display:flex; align-items:center; justify-content:center; text-align:center; padding:16px;
  font-family:var(--font-mono); font-size:.72rem; color:var(--text-faint); border:1px dashed var(--border-strong); margin:8px; border-radius:18px;
}
/* Scan-line sweep signature, echoed from the hero radar, replayed on the screenshots */
.phone-shot::after{
  content:""; position:absolute; left:0; right:0; height:38%;
  background:linear-gradient(180deg, transparent, rgba(57,255,136,0.22), transparent);
  animation: scanline 5.5s ease-in-out infinite;
  pointer-events:none;
}
.phone-shot:nth-child(2)::after{ animation-delay:.6s; }
.phone-shot:nth-child(3)::after{ animation-delay:1.2s; }
.phone-shot:nth-child(4)::after{ animation-delay:1.8s; }
.phone-shot:nth-child(5)::after{ animation-delay:2.4s; }
.phone-shot:nth-child(6)::after{ animation-delay:3s; }
.phone-shot:nth-child(7)::after{ animation-delay:3.6s; }
@keyframes scanline{ 0%{ top:-40%; } 100%{ top:100%; } }

/* Video / promo */
.promo{ display:grid; grid-template-columns:1fr 1fr; gap:48px; align-items:center; }
@media (max-width: 860px){ .promo{ grid-template-columns:1fr; } }
.video-frame{
  aspect-ratio:9/16; max-width:320px; margin:0 auto; border-radius:var(--radius-lg); border:1px solid var(--border-strong);
  background:var(--surface); display:flex; align-items:center; justify-content:center; overflow:hidden;
  box-shadow:var(--shadow-glow); position:relative;
}
.video-frame video{ width:100%; height:100%; object-fit:cover; }
.video-frame iframe{ width:100%; height:100%; border:0; }
.play-btn{
  width:64px; height:64px; border-radius:50%; background:rgba(34,197,94,0.15); border:1px solid var(--border-strong);
  display:flex; align-items:center; justify-content:center; color:var(--neon);
}
.play-btn svg{ width:24px; height:24px; margin-left:3px; }

/* Stat / how it works */
.steps{ display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
@media (max-width: 860px){ .steps{ grid-template-columns:repeat(2,1fr); } }
@media (max-width: 520px){ .steps{ grid-template-columns:1fr; } }
.step{ border:1px solid var(--border); border-radius:var(--radius-md); padding:22px; background:var(--surface); }
.step .num{ font-family:var(--font-mono); color:var(--green-400); font-size:.8rem; margin-bottom:10px; display:block; }
.step h3{ font-size:1rem; margin-bottom:6px; }
.step p{ font-size:.88rem; color:var(--text-mute); margin:0; }

/* Reviews — horizontal scroll like the screenshot showcase */
.review-row{ display:flex; gap:18px; overflow-x:auto; padding:6px 4px 22px; scroll-snap-type:x mandatory; }
.review-row::-webkit-scrollbar{ height:6px; }
.review-row::-webkit-scrollbar-thumb{ background:var(--border-strong); border-radius:10px; }
.review-card{
  scroll-snap-align:start; flex:0 0 auto; width:280px;
  border:1px solid var(--border); background:var(--surface); border-radius:var(--radius-md); padding:22px;
}
.stars{ color:var(--amber); letter-spacing:2px; margin-bottom:10px; font-size:.9rem; }
.review-card p{ font-size:.92rem; color:var(--text); }
.review-name{ font-family:var(--font-mono); font-size:.78rem; color:var(--text-faint); }
.scroll-hint{ text-align:center; font-family:var(--font-mono); font-size:.72rem; color:var(--text-faint); margin-top:-8px; }
@media (min-width:860px){ .scroll-hint{ display:none; } }

/* CTA band */
.cta-band{
  border:1px solid var(--border-strong); border-radius:var(--radius-lg);
  background: radial-gradient(ellipse at top left, rgba(34,197,94,0.14), transparent 60%), var(--surface);
  padding:56px; display:flex; align-items:center; justify-content:space-between; gap:30px; flex-wrap:wrap;
}
.cta-band h2{ margin-bottom:8px; }
.cta-band p{ color:var(--text-mute); margin:0; }

/* Simple content pages */
.page-hero{ padding:64px 0 24px; border-bottom:1px solid var(--border); }
.page-hero h1{ font-size:clamp(1.9rem,3.4vw,2.6rem); }
.page-hero p{ color:var(--text-mute); max-width:640px; }
.content-block{ max-width:820px; }
.content-block h2{ font-size:1.3rem; margin-top:2.2em; }
.content-block h3{ font-size:1.05rem; margin-top:1.6em; color:var(--text-hi); }
.content-block p, .content-block li{ color:var(--text); font-size:.98rem; }
.content-block ul{ padding-left:1.2em; list-style:disc; margin-bottom:1em; }
.content-block li{ margin-bottom:.4em; }
.updated-badge{ font-family:var(--font-mono); font-size:.78rem; color:var(--text-faint); }

/* Contact */
.contact-grid{ display:grid; grid-template-columns:1fr 1fr; gap:48px; }
@media (max-width: 860px){ .contact-grid{ grid-template-columns:1fr; } }
.info-card{ border:1px solid var(--border); background:var(--surface); border-radius:var(--radius-md); padding:22px; display:flex; gap:14px; align-items:flex-start; margin-bottom:16px; }
.info-card .feature-icon{ margin-bottom:0; flex:0 0 auto; }
.info-card h3{ font-size:.98rem; margin-bottom:4px; }
.info-card p{ margin:0; font-size:.9rem; color:var(--text-mute); }

.form{ display:flex; flex-direction:column; gap:16px; }
.field label{ display:block; font-size:.82rem; color:var(--text-mute); margin-bottom:7px; font-family:var(--font-mono); }
.field input, .field textarea{
  width:100%; background:var(--surface); border:1px solid var(--border-strong); border-radius:var(--radius-sm);
  padding:12px 14px; color:var(--text-hi); font-family:var(--font-body); font-size:.95rem;
}
.field input:focus, .field textarea:focus{ outline:none; border-color:var(--neon); box-shadow:0 0 0 3px rgba(57,255,136,0.15); }
.field textarea{ resize:vertical; min-height:120px; }

/* FAQ (long-tail keyword content) */
.faq{ max-width:760px; margin:0 auto; }
.faq details{
  border:1px solid var(--border); border-radius:var(--radius-md); background:var(--surface);
  padding:18px 20px; margin-bottom:12px;
}
.faq summary{
  cursor:pointer; font-family:var(--font-display); font-weight:600; color:var(--text-hi); font-size:1rem;
  list-style:none; display:flex; align-items:center; justify-content:space-between; gap:14px;
}
.faq summary::-webkit-details-marker{ display:none; }
.faq summary::after{ content:"+"; font-size:1.3rem; color:var(--green-400); flex:0 0 auto; }
.faq details[open] summary::after{ content:"\2013"; }
.faq p{ margin:12px 0 0; color:var(--text-mute); font-size:.94rem; }

/* =========================================================
   Footer
   ========================================================= */
.footer{ border-top:1px solid var(--border); padding:56px 0 28px; background:var(--bg-soft); }
.footer-top{ display:grid; grid-template-columns:1.4fr repeat(3, 1fr); gap:40px; margin-bottom:44px; }
@media (max-width: 780px){ .footer-top{ grid-template-columns:1fr 1fr; } }
@media (max-width: 480px){ .footer-top{ grid-template-columns:1fr; } }
.footer-brand p{ color:var(--text-mute); font-size:.9rem; max-width:280px; }
.footer-col h4{ font-family:var(--font-mono); font-size:.78rem; color:var(--text-faint); text-transform:uppercase; letter-spacing:.06em; margin-bottom:14px; }
.footer-col a{ display:block; font-size:.9rem; color:var(--text-mute); padding:6px 0; transition:color .15s; }
.footer-col a:hover{ color:var(--neon); }
.footer-bottom{ display:flex; justify-content:space-between; flex-wrap:wrap; gap:12px; border-top:1px solid var(--border); padding-top:22px; font-size:.8rem; color:var(--text-faint); font-family:var(--font-mono); }
