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

  :root {
    --blue: #4B7BF5;
    --blue-light: #6B96FF;
    --purple: #8B5CF6;
    --grad: linear-gradient(135deg, #4B7BF5 0%, #8B5CF6 100%);
    --grad-btn: linear-gradient(135deg, #5585FF 0%, #7C4DFF 100%);
    --ink: #FFFFFF;
    --ink2: rgba(255,255,255,0.7);
    --ink3: rgba(255,255,255,0.4);
    --bg: #0A0A0F;
    --bg2: #0F0F18;
    --bg3: #13131F;
    --card: rgba(255,255,255,0.05);
    --card-border: rgba(255,255,255,0.08);
    --radius: 20px;
    --font: 'Inter', -apple-system, system-ui, sans-serif;
  }

  html { scroll-behavior: smooth; }
  body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--ink);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px 48px;
    background: rgba(10,10,15,0.75);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--card-border);
  }
  .nav-logo {
    display: flex; align-items: center; gap: 10px;
    font-weight: 800; font-size: 17px; letter-spacing: -0.3px; color: var(--ink);
    text-decoration: none;
  }
  .logo-icon {
    width: 32px; height: 32px; border-radius: 8px;
    background: var(--grad);
    display: flex; align-items: center; justify-content: center;
    font-size: 16px;
  }
  .nav-cta {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--grad-btn); color: #fff;
    padding: 10px 20px; border-radius: 100px;
    font-size: 14px; font-weight: 600; text-decoration: none;
    box-shadow: 0 4px 20px rgba(75,123,245,0.35);
    transition: opacity 0.2s, transform 0.15s;
  }
  .nav-cta:hover { opacity: 0.9; transform: translateY(-1px); }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    padding: 120px 24px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .hero-glow-1 {
    position: absolute; top: -100px; left: 50%;
    transform: translateX(-50%);
    width: 700px; height: 500px;
    background: radial-gradient(ellipse, rgba(75,123,245,0.18) 0%, transparent 70%);
    pointer-events: none;
  }
  .hero-glow-2 {
    position: absolute; top: 0; left: 50%;
    transform: translateX(-50%);
    width: 400px; height: 300px;
    background: radial-gradient(ellipse, rgba(139,92,246,0.12) 0%, transparent 70%);
    pointer-events: none;
  }
  .hero-badge {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(75,123,245,0.15); color: var(--blue-light);
    border: 1px solid rgba(75,123,245,0.25);
    padding: 6px 14px; border-radius: 100px;
    font-size: 13px; font-weight: 600; letter-spacing: 0.2px;
    margin-bottom: 28px; position: relative;
  }
  .badge-dot { width: 6px; height: 6px; background: var(--blue); border-radius: 50%; animation: pulse 2s infinite; }
  @keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.3)} }

  h1 {
    font-size: clamp(44px, 7vw, 88px);
    font-weight: 900;
    line-height: 1.0;
    letter-spacing: -3px;
    max-width: 820px;
    color: var(--ink);
    position: relative;
  }
  h1 em {
    font-style: normal;
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .hero-sub {
    font-size: clamp(17px, 2vw, 20px);
    color: var(--ink2);
    max-width: 480px;
    line-height: 1.6;
    margin: 24px auto 40px;
    font-weight: 400;
    position: relative;
  }
  .hero-actions {
    display: flex; align-items: center; gap: 16px; flex-wrap: wrap; justify-content: center;
    margin-bottom: 56px; position: relative;
  }
  .btn-primary {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--grad-btn); color: #fff;
    padding: 16px 28px; border-radius: 100px;
    font-size: 16px; font-weight: 700; text-decoration: none;
    box-shadow: 0 8px 32px rgba(75,123,245,0.4);
    transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
  }
  .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 40px rgba(75,123,245,0.5); }
  .btn-primary svg { width: 20px; height: 20px; }
  .hero-note { font-size: 13px; color: var(--ink3); position: relative; }

  /* ── STORAGE WIDGET ── */
  .storage-widget {
    width: 100%; max-width: 460px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 24px;
    padding: 28px;
    backdrop-filter: blur(12px);
    position: relative;
    text-align: left;
  }
  .sw-label { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
  .sw-title { font-size: 14px; font-weight: 600; color: var(--ink); }
  .sw-freed {
    font-size: 12px; font-weight: 700;
    color: #34D399;
    background: rgba(52,211,153,0.12);
    padding: 3px 10px; border-radius: 100px;
    opacity: 0; transition: opacity 0.5s 2.5s;
  }
  .sw-freed.visible { opacity: 1; }

  .sw-big { display: flex; flex-direction: column; align-items: center; margin-bottom: 20px; }
  .sw-big-num { font-size: 52px; font-weight: 900; letter-spacing: -2px; line-height: 1; }
  .sw-big-num span { font-size: 22px; font-weight: 600; opacity: 0.6; margin-left: 2px; }
  .sw-big-lbl { font-size: 13px; color: var(--ink3); margin-top: 4px; }

  .sw-bar-track { height: 8px; background: rgba(255,255,255,0.08); border-radius: 100px; overflow: hidden; }
  .sw-bar-used {
    height: 100%; border-radius: 100px;
    background: linear-gradient(90deg, #4B7BF5, #8B5CF6);
    width: 87%;
    transition: width 2s cubic-bezier(0.4,0,0.2,1);
  }
  .sw-bar-used.cleaned { width: 34%; }

  .sw-row { display: flex; justify-content: space-between; align-items: center; margin-top: 10px; }
  .sw-row-lbl { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--ink3); }
  .sw-row-dot { width: 6px; height: 6px; border-radius: 50%; }
  .sw-row-val { font-size: 12px; font-weight: 600; color: var(--ink2); }

  .sw-numbers {
    display: flex; justify-content: space-between;
    margin-top: 18px; padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,0.07);
  }
  .sw-num { text-align: center; }
  .sw-num-val { display: block; font-size: 22px; font-weight: 800; letter-spacing: -0.5px; color: var(--ink); }
  .sw-num-val.blue { background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
  .sw-num-lbl { display: block; font-size: 11px; color: var(--ink3); margin-top: 2px; }

  /* ── TRUSTED ── */
  .trusted {
    display: flex; align-items: center; justify-content: center; gap: 32px;
    padding: 16px 24px 72px; flex-wrap: wrap;
  }
  .trusted-item { font-size: 14px; font-weight: 500; color: var(--ink3); display: flex; align-items: center; gap: 6px; }
  .trusted-item strong { color: var(--ink); }
  .trusted-sep { width: 4px; height: 4px; background: rgba(255,255,255,0.15); border-radius: 50%; }

  /* ── SECTIONS ── */
  section { padding: 100px 24px; }
  .container { max-width: 1100px; margin: 0 auto; }
  .section-eyebrow {
    font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
    background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    margin-bottom: 14px; display: inline-block;
  }
  h2 {
    font-size: clamp(32px, 4vw, 54px);
    font-weight: 900; letter-spacing: -2px; line-height: 1.05;
    color: var(--ink); max-width: 620px;
  }
  h2 em { font-style: normal; background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
  .section-sub { font-size: 17px; color: var(--ink2); line-height: 1.65; max-width: 500px; margin-top: 16px; }

  /* ── FEATURES ── */
  .features-bg { background: var(--bg2); }
  .features-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 56px;
  }
  .feature-card {
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    padding: 28px;
    transition: background 0.2s, transform 0.2s, border-color 0.2s;
  }
  .feature-card:hover {
    background: rgba(75,123,245,0.08);
    border-color: rgba(75,123,245,0.25);
    transform: translateY(-2px);
  }
  .feature-icon {
    width: 48px; height: 48px;
    background: rgba(75,123,245,0.15);
    border: 1px solid rgba(75,123,245,0.2);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 18px; font-size: 22px;
  }
  .feature-card h3 { font-size: 17px; font-weight: 700; letter-spacing: -0.3px; margin-bottom: 8px; color: var(--ink); }
  .feature-card p { font-size: 14px; color: var(--ink2); line-height: 1.6; }

  /* ── HOW IT WORKS ── */
  .how-bg { background: var(--bg3); }
  .how-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; margin-top: 0; }
  .steps { display: flex; flex-direction: column; gap: 0; margin-top: 40px; }
  .step { display: flex; gap: 20px; padding: 24px 0; border-bottom: 1px solid var(--card-border); }
  .step:last-child { border-bottom: none; }
  .step-num {
    width: 36px; height: 36px; flex-shrink: 0;
    background: var(--grad); color: #fff;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 14px; font-weight: 800;
  }
  .step-text h4 { font-size: 16px; font-weight: 700; margin-bottom: 4px; color: var(--ink); }
  .step-text p { font-size: 14px; color: var(--ink2); line-height: 1.6; }

  /* Phone mockup */
  .phone-wrap { display: flex; justify-content: center; align-items: center; position: relative; }
  .phone-glow-wrap {
    position: absolute; inset: -60px;
    background: radial-gradient(ellipse, rgba(75,123,245,0.15) 0%, transparent 70%);
    pointer-events: none;
  }
  .phone {
    width: 220px; height: 440px;
    background: #0A0A12;
    border-radius: 40px;
    position: relative;
    box-shadow: 0 40px 80px rgba(0,0,0,0.6), 0 0 0 1.5px rgba(255,255,255,0.1);
    overflow: hidden; flex-shrink: 0;
  }
  .phone::before {
    content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
    width: 80px; height: 24px; background: #0A0A12; border-radius: 0 0 16px 16px; z-index: 10;
  }
  .phone-screen {
    position: absolute; inset: 8px;
    background: linear-gradient(160deg, #0D0D1A 0%, #111128 100%);
    border-radius: 34px; overflow: hidden; padding: 40px 14px 14px;
    display: flex; flex-direction: column; gap: 8px;
  }
  .p-big {
    text-align: center; padding: 8px 0 14px;
    border-bottom: 1px solid rgba(255,255,255,0.06); margin-bottom: 4px;
  }
  .p-big-num { font-size: 28px; font-weight: 900; letter-spacing: -1px; color: #fff; }
  .p-big-num sub { font-size: 12px; font-weight: 600; opacity: 0.6; }
  .p-big-lbl { font-size: 10px; color: rgba(255,255,255,0.4); margin-top: 1px; }
  .p-bar-track { height: 6px; background: rgba(255,255,255,0.08); border-radius: 100px; margin: 0 0 10px; overflow: hidden; }
  .p-bar-fill { height: 100%; width: 55%; background: linear-gradient(90deg, #4B7BF5, #8B5CF6); border-radius: 100px; }
  .p-row { background: rgba(255,255,255,0.04); border-radius: 10px; padding: 8px 10px; display: flex; align-items: center; gap: 8px; }
  .p-check { width: 18px; height: 18px; border-radius: 6px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
  .p-check.blue { background: rgba(75,123,245,0.3); }
  .p-check.green { background: rgba(52,211,153,0.3); }
  .p-check.purple { background: rgba(139,92,246,0.3); }
  .p-check::after { content: '✓'; font-size: 10px; color: #fff; font-weight: 700; }
  .p-row-text { flex: 1; }
  .p-row-name { font-size: 10px; font-weight: 600; color: rgba(255,255,255,0.85); }
  .p-row-size { font-size: 9px; color: rgba(255,255,255,0.35); }
  .p-row-mb { font-size: 9px; font-weight: 700; }
  .p-row-mb.blue { color: #4B7BF5; }
  .p-row-mb.green { color: #34D399; }
  .p-row-mb.purple { color: #8B5CF6; }
  .phone-bar {
    position: absolute; bottom: 18px; left: 14px; right: 14px;
    height: 42px; background: var(--grad-btn);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 20px rgba(75,123,245,0.5);
  }
  .phone-bar-text { font-size: 12px; font-weight: 700; color: #fff; }

  /* ── SCREENSHOTS ── */
  .screenshots-bg { background: var(--bg2); }
  .screenshots-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 48px;
  }
  .screenshot-card {
    border-radius: 20px; overflow: hidden;
    background: var(--card); border: 1px solid var(--card-border);
    aspect-ratio: 9/17;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    position: relative;
  }
  .ss-img {
    width: 100%; height: 100%; object-fit: cover;
    border-radius: 20px;
  }
  .screenshot-label {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 20px 14px 14px;
    background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 100%);
    border-radius: 0 0 20px 20px;
  }
  .screenshot-label h4 { font-size: 13px; font-weight: 800; letter-spacing: -0.2px; color: #fff; }
  .screenshot-label p { font-size: 11px; color: rgba(255,255,255,0.6); font-style: italic; margin-top: 1px; }

  /* ── REVIEWS ── */
  .reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 48px; }
  .review-card {
    background: var(--card); border: 1px solid var(--card-border);
    border-radius: var(--radius); padding: 24px;
    transition: border-color 0.2s;
  }
  .review-card:hover { border-color: rgba(75,123,245,0.25); }
  .stars { display: flex; gap: 3px; margin-bottom: 14px; }
  .star { font-size: 14px; color: #FBBF24; }
  .review-card blockquote { font-size: 15px; color: var(--ink2); line-height: 1.65; font-style: italic; margin-bottom: 18px; quotes: none; }
  .reviewer { font-size: 13px; color: var(--ink3); font-weight: 500; }

  /* ── CTA ── */
  .cta-section {
    text-align: center; position: relative; overflow: hidden;
    background: var(--bg); padding: 120px 24px;
  }
  .cta-glow {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
    width: 600px; height: 400px;
    background: radial-gradient(ellipse, rgba(75,123,245,0.15) 0%, transparent 70%);
    pointer-events: none;
  }
  .cta-section h2 { margin: 0 auto; text-align: center; }
  .cta-sub { font-size: 18px; color: var(--ink2); margin: 16px auto 40px; max-width: 400px; }
  .appstore-btn {
    display: inline-flex; align-items: center; gap: 12px;
    background: var(--grad-btn); color: #fff;
    padding: 16px 30px; border-radius: 18px;
    text-decoration: none; position: relative;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 8px 40px rgba(75,123,245,0.4);
  }
  .appstore-btn:hover { transform: translateY(-3px); box-shadow: 0 16px 56px rgba(75,123,245,0.5); }
  .appstore-btn-text { text-align: left; }
  .appstore-btn-text span { display: block; font-size: 11px; font-weight: 500; opacity: 0.8; letter-spacing: 0.3px; }
  .appstore-btn-text strong { display: block; font-size: 19px; font-weight: 800; letter-spacing: -0.4px; }
  .cta-note { font-size: 13px; color: var(--ink3); margin-top: 18px; position: relative; }

  /* ── FOOTER ── */
  footer { padding: 40px 24px; border-top: 1px solid var(--card-border); }
  .footer-inner {
    display: flex; align-items: center; justify-content: space-between;
    max-width: 1100px; margin: 0 auto; flex-wrap: wrap; gap: 16px;
  }
  .footer-logo { font-weight: 800; font-size: 15px; color: var(--ink); }
  .footer-links { display: flex; gap: 24px; }
  .footer-links a { font-size: 13px; color: var(--ink3); text-decoration: none; transition: color 0.2s; }
  .footer-links a:hover { color: var(--blue-light); }
  .footer-copy { font-size: 13px; color: var(--ink3); }

  /* ── ANIMATIONS ── */
  .fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.65s, transform 0.65s; }
  .fade-up.in { opacity: 1; transform: translateY(0); }

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    nav { padding: 14px 20px; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .reviews-grid { grid-template-columns: repeat(2, 1fr); }
    .how-inner { grid-template-columns: 1fr; gap: 40px; }
    .phone-wrap { order: -1; }
    .screenshots-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 600px) {
    nav { padding: 12px 16px; }
    .features-grid { grid-template-columns: 1fr; }
    .reviews-grid { grid-template-columns: 1fr; }
    .screenshots-grid { grid-template-columns: repeat(2, 1fr); }
    h1 { letter-spacing: -2px; }
    h2 { letter-spacing: -1.5px; }
    .trusted { gap: 16px; }
    .trusted-sep { display: none; }
    .footer-inner { justify-content: center; text-align: center; }
  }
  @media (prefers-reduced-motion: reduce) {
    .sw-bar-used, .fade-up { transition: none; }
    .badge-dot { animation: none; }
  }
  
  /* ==========================================================
   Privacy Policy page — additions only.
   Reuses existing tokens (--card, --card-border, --radius,
   --ink, --ink2, --ink3, --blue, --purple, --grad, --bg, --bg2)
   and existing nav/footer classes as-is. Append below the
   existing rules in style.css.
   ========================================================== */

/* Hero — same fixed-nav clearance pattern as .hero, but shorter
   and left-aligned since this is a document page, not a pitch. */
.legal-hero {
  padding: 140px 24px 20px;
  max-width: 760px;
  margin: 0 auto;
  text-align: left;
}
.legal-title {
  font-size: clamp(34px, 5vw, 48px);
  font-weight: 900;
  letter-spacing: -1.5px;
  line-height: 1.05;
  color: var(--ink);
}
.legal-lead {
  font-size: 16.5px;
  color: var(--ink2);
  line-height: 1.6;
  max-width: 560px;
  margin: 18px 0 0;
}
.legal-updated {
  font-size: 13px;
  color: var(--ink3);
  margin-top: 14px;
}

/* Body — stacked cards, reusing .feature-card's visual language
   (same background/border/radius tokens) at full width. */
.legal-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 8px 24px 100px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.legal-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 28px 30px;
}
.legal-card.legal-highlight {
  background: linear-gradient(180deg, rgba(75,123,245,0.10), rgba(139,92,246,0.05));
  border: 1px solid rgba(139,92,246,0.3);
}
.legal-card-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.3px;
  color: var(--ink);
  margin-bottom: 12px;
}
.legal-num {
  font-size: 12px;
  font-weight: 700;
  color: var(--ink3);
  letter-spacing: 0.04em;
}
.legal-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  margin: 20px 0 8px;
}
.legal-card p {
  font-size: 14.8px;
  color: var(--ink2);
  line-height: 1.6;
  margin: 0 0 12px;
}
.legal-card p:last-child { margin-bottom: 0; }
.legal-card ul {
  margin: 0 0 12px;
  padding-left: 20px;
  font-size: 14.8px;
  color: var(--ink2);
  line-height: 1.6;
}
.legal-card li { margin-bottom: 6px; }
.legal-card li:last-child { margin-bottom: 0; }
.legal-card code {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 1px 6px;
  border-radius: 5px;
  font-size: 13px;
}

/* Small scope pills, e.g. "Scope: gmail.modify" — same visual
   language as .hero-badge, just static (no pulse dot). */
.legal-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0 4px;
}
.legal-pill {
  display: inline-flex;
  align-items: center;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--blue-light);
  background: rgba(75,123,245,0.15);
  border: 1px solid rgba(75,123,245,0.25);
  padding: 5px 12px;
  border-radius: 100px;
}

/* Inline callout box inside a card */
.legal-note {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  background: rgba(255,255,255,0.035);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 14px 16px;
  margin-top: 16px;
}
.legal-note p { margin: 0; font-size: 13.8px; }

@media (max-width: 560px) {
  .legal-card { padding: 22px 20px; }
  .legal-hero { padding-top: 110px; }
}