:root {
  --purple: #7c4dff;
  --pink: #ff4fa3;
  --blue: #3fa9ff;
  --green: #2be3a5;
  --yellow: #ffd23f;
  --orange: #ff6b4a;
  --ink-950: #0a0a12;
  --ink-900: #101018;
  --ink-800: #16162a;
  --line: rgba(255, 255, 255, 0.08);
  --text: #f5f5fa;
  --sub: rgba(245, 245, 250, 0.6);
  --sub-dim: rgba(245, 245, 250, 0.4);
  --radius: 16px;
  --max: 1120px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  background: var(--ink-950);
  color: var(--text);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

/* background glow blobs, same trick as the extension popup */
.glow {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.glow::before, .glow::after {
  content: "";
  position: absolute;
  width: 46vw;
  height: 46vw;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.28;
}
.glow::before {
  top: -14vw; right: -10vw;
  background: radial-gradient(circle, var(--purple), transparent 70%);
}
.glow::after {
  bottom: -18vw; left: -12vw;
  background: radial-gradient(circle, var(--pink), transparent 70%);
}

/* nav */
header.site {
  position: sticky; top: 0; z-index: 10;
  backdrop-filter: blur(14px);
  background: rgba(10, 10, 18, 0.72);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 0;
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 16px; }
.brand img { width: 30px; height: 30px; border-radius: 8px; }
.nav-links { display: flex; align-items: center; gap: 30px; font-size: 14px; color: var(--sub); font-weight: 500; white-space: nowrap; }
.nav-links a:hover { color: var(--text); }
@media (max-width: 760px) {
  .nav-links { display: none; }
  .nav .btn { padding: 9px 14px; font-size: 13px; }
}
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: 14px;
  padding: 10px 18px; border-radius: 10px;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn-primary {
  background: linear-gradient(135deg, var(--purple), var(--pink));
  color: #fff;
  box-shadow: 0 8px 24px rgba(124, 77, 255, 0.35);
}
.btn-primary:hover { filter: brightness(1.08); }
.btn-ghost { border-color: var(--line); color: var(--text); }
.btn-ghost:hover { background: rgba(255,255,255,0.06); }

/* hero */
.hero { position: relative; z-index: 1; padding: 88px 0 40px; text-align: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12.5px; font-weight: 600; letter-spacing: 0.02em;
  color: #d9c9ff; background: rgba(124, 77, 255, 0.14);
  border: 1px solid rgba(124, 77, 255, 0.3);
  padding: 7px 14px; border-radius: 999px; margin-bottom: 22px;
}
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); }
h1.headline {
  font-size: clamp(34px, 5.4vw, 60px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
  font-weight: 800;
}
h1.headline .grad {
  background: linear-gradient(135deg, var(--purple), var(--pink));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.sub {
  font-size: clamp(15px, 2vw, 19px);
  color: var(--sub);
  max-width: 620px;
  margin: 0 auto 34px;
}
.cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 20px; }
.cta-row .btn { font-size: 15.5px; padding: 13px 24px; }
.trust {
  display: flex; gap: 24px; justify-content: center; flex-wrap: wrap;
  font-size: 13px; color: var(--sub-dim); margin-top: 26px;
}
.trust span { display: inline-flex; align-items: center; gap: 6px; }

/* hero screenshot */
.hero-shot {
  position: relative; z-index: 1;
  max-width: 980px; margin: 56px auto 0;
  border-radius: 18px; overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 60px 120px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.03);
}

/* sections */
section { position: relative; z-index: 1; padding: 96px 0; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.section-tag { color: var(--purple); font-weight: 700; font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 10px; }
.section-head h2 { font-size: clamp(26px, 3.6vw, 38px); margin: 0 0 12px; letter-spacing: -0.01em; }
.section-head p { color: var(--sub); font-size: 16px; margin: 0; }

/* feature grid */
.features {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
@media (max-width: 900px) { .features { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .features { grid-template-columns: 1fr; } }
.card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  transition: border-color 0.2s, transform 0.2s;
}
.card:hover { border-color: rgba(124,77,255,0.4); transform: translateY(-2px); }
.card .ic {
  width: 42px; height: 42px; border-radius: 11px;
  display: grid; place-items: center; margin-bottom: 16px;
  background: linear-gradient(135deg, rgba(124,77,255,0.22), rgba(255,79,163,0.14));
  color: var(--purple);
}
.card h3 { font-size: 16.5px; margin: 0 0 8px; }
.card p { font-size: 14px; color: var(--sub); margin: 0; line-height: 1.6; }

/* steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; counter-reset: step; }
@media (max-width: 800px) { .steps { grid-template-columns: 1fr; } }
.step { position: relative; padding-left: 4px; }
.step .num {
  width: 40px; height: 40px; border-radius: 12px;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  color: #fff; font-weight: 800; font-size: 16px;
  display: grid; place-items: center; margin-bottom: 18px;
}
.step h3 { font-size: 17px; margin: 0 0 8px; }
.step p { color: var(--sub); font-size: 14.5px; margin: 0; line-height: 1.65; }

/* gallery */
.gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 760px) { .gallery { grid-template-columns: 1fr; } }
.shot {
  border-radius: 14px; overflow: hidden; border: 1px solid var(--line);
  background: var(--ink-800);
}
.shot img { display: block; width: 100%; }
.shot .cap { padding: 14px 18px; font-size: 13.5px; color: var(--sub); border-top: 1px solid var(--line); }

/* privacy strip */
.privacy-strip {
  background: linear-gradient(135deg, rgba(124,77,255,0.12), rgba(255,79,163,0.08));
  border: 1px solid rgba(124,77,255,0.25);
  border-radius: 22px;
  padding: 48px;
  display: flex; align-items: center; gap: 36px; justify-content: space-between;
  flex-wrap: wrap;
}
.privacy-strip .txt { max-width: 560px; }
.privacy-strip h2 { font-size: 24px; margin: 0 0 10px; }
.privacy-strip p { color: var(--sub); margin: 0; font-size: 15px; line-height: 1.6; }

/* footer */
footer.site {
  position: relative; z-index: 1;
  border-top: 1px solid var(--line);
  padding: 40px 0;
}
.foot-row {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
  font-size: 13.5px; color: var(--sub-dim);
}
.foot-links { display: flex; gap: 22px; }
.foot-links a:hover { color: var(--text); }

/* privacy policy page */
.policy { position: relative; z-index: 1; padding: 64px 0 100px; }
.policy .lead { color: var(--sub); font-size: 15.5px; margin-bottom: 36px; }
.policy h1 { font-size: clamp(28px, 4vw, 40px); margin: 0 0 8px; }
.policy .updated { color: var(--sub-dim); font-size: 13.5px; margin-bottom: 40px; }
.policy h2 { font-size: 20px; margin: 44px 0 14px; letter-spacing: -0.01em; }
.policy p { color: rgba(245,245,250,0.82); font-size: 15px; line-height: 1.75; margin: 0 0 14px; }
.policy ul { color: rgba(245,245,250,0.82); font-size: 15px; line-height: 1.75; padding-left: 20px; margin: 0 0 14px; }
.policy li { margin-bottom: 6px; }
.ptable { width: 100%; border-collapse: collapse; margin: 18px 0 28px; font-size: 14px; }
.ptable th, .ptable td { text-align: left; padding: 12px 14px; border-bottom: 1px solid var(--line); vertical-align: top; }
.ptable th { color: var(--sub); font-weight: 600; font-size: 12.5px; text-transform: uppercase; letter-spacing: 0.04em; }
.ptable td { color: rgba(245,245,250,0.85); }
.ptable code { background: rgba(255,255,255,0.06); padding: 2px 6px; border-radius: 5px; font-size: 13px; }
.callout {
  border: 1px solid rgba(43,227,165,0.3);
  background: rgba(43,227,165,0.08);
  border-radius: 12px; padding: 18px 20px; margin: 24px 0;
  font-size: 14.5px; color: rgba(245,245,250,0.9);
}
