/* ============================================================
   ScrollShot — Landing Page Styles
   Design system: Clean professional light mode (Indigo + Slate)
   ============================================================ */

:root {
  /* Color palette (matches extension theme.css) */
  --bg: #ffffff;
  --bg-soft: #f8fafc;
  --bg-tint: #f1f5f9;
  --border: #e2e8f0;
  --border-hover: #cbd5e1;

  --accent: #4f46e5;
  --accent-hover: #4338ca;
  --accent-grad: linear-gradient(135deg, #4f46e5 0%, #6366f1 100%);
  --accent-glow: rgba(79, 70, 229, 0.28);
  --sky: #0ea5e9;
  --sky-hover: #0284c7;
  --violet: #8b5cf6;
  --emerald: #10b981;
  --amber: #f59e0b;
  --rose: #f43f5e;

  --text: #0f172a;
  --text-2: #334155;
  --text-3: #64748b;

  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.06), 0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 8px 24px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 24px 60px rgba(15, 23, 42, 0.12);
  --shadow-glow: 0 10px 40px var(--accent-glow);

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --container: 1140px;
  --nav-h: 72px;
}

/* ---------- Reset & base ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 12px); }

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }
kbd {
  font-family: inherit;
  font-size: 0.8em;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: 6px;
  background: var(--bg-tint);
  border: 1px solid var(--border);
  border-bottom-width: 2px;
  color: var(--text-2);
  white-space: nowrap;
}

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container.narrow { max-width: 860px; }

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 2000;
  background: var(--accent);
  color: #fff;
  padding: 10px 18px;
  border-radius: 0 0 10px 0;
  font-weight: 600;
}
.skip-link:focus { left: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.2;
  border-radius: 12px;
  padding: 14px 26px;
  border: 1px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
  white-space: nowrap;
  text-align: center;
}
.btn:active { transform: translateY(1px); }

.btn-sm { padding: 10px 18px; font-size: 14px; border-radius: 10px; }
.btn-lg { padding: 16px 32px; font-size: 17px; border-radius: 14px; }

.btn-primary {
  background: var(--accent-grad);
  color: #fff;
  box-shadow: 0 8px 22px rgba(79, 70, 229, 0.32);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(79, 70, 229, 0.42); }

.btn-ghost {
  background: var(--bg);
  color: var(--text-2);
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
}
.btn-ghost:hover { border-color: var(--border-hover); color: var(--accent); transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-ghost-light {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.22);
}
.btn-ghost-light:hover { background: rgba(255, 255, 255, 0.16); transform: translateY(-2px); }

/* ---------- Badges & eyebrow ---------- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--border);
  color: var(--text-2);
  font-size: 13.5px;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(8px);
}
.badge-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--emerald);
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.5);
  animation: pulse-dot 2.2s infinite;
}
.badge-light { background: rgba(255, 255, 255, 0.12); border-color: rgba(255, 255, 255, 0.25); color: #fff; }

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.eyebrow-light { color: #a5b4fc; }

.gradient-text {
  background: var(--accent-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand { display: inline-flex; align-items: center; gap: 11px; font-weight: 800; font-size: 20px; letter-spacing: -0.3px; }
.brand-logo { border-radius: 9px; box-shadow: 0 4px 12px rgba(79, 70, 229, 0.22); }
.brand-name { background: var(--accent-grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

.nav-menu { display: flex; align-items: center; gap: 6px; }
.nav-link {
  padding: 9px 14px;
  border-radius: 9px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-2);
  transition: color 0.15s ease, background 0.15s ease;
}
.nav-link:hover { color: var(--accent); background: var(--bg-soft); }
.nav-cta { flex-shrink: 0; }
.nav-cta-mobile { display: none; }

/* Mobile hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--bg);
}
.nav-toggle-bar { display: block; width: 100%; height: 2px; background: var(--text); border-radius: 2px; transition: transform 0.25s ease, opacity 0.25s ease; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 84px 0 60px; background: radial-gradient(1200px 500px at 20% -10%, rgba(99, 102, 241, 0.10), transparent 60%), radial-gradient(900px 480px at 90% 0%, rgba(14, 165, 233, 0.10), transparent 55%); overflow: hidden; }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.5; pointer-events: none; }
.hero-glow-1 { width: 480px; height: 480px; top: -180px; right: -120px; background: rgba(99, 102, 241, 0.35); }
.hero-glow-2 { width: 380px; height: 380px; bottom: -160px; left: -120px; background: rgba(14, 165, 233, 0.28); }

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.hero-copy .badge { margin-bottom: 26px; }
.hero h1 { font-size: clamp(2.3rem, 5vw, 3.6rem); line-height: 1.12; letter-spacing: -0.03em; font-weight: 800; margin-bottom: 22px; }
.hero-sub { font-size: clamp(1.05rem, 1.6vw, 1.2rem); color: var(--text-2); max-width: 560px; margin-bottom: 34px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 34px; }

.hero-meta { display: flex; flex-wrap: wrap; gap: 12px 26px; }
.hero-meta li { display: inline-flex; align-items: center; gap: 9px; color: var(--text-3); font-size: 14.5px; font-weight: 500; }
.hero-meta svg { color: var(--accent); flex-shrink: 0; }

/* Browser mockup */
.hero-visual { position: relative; }
.browser-card {
  border-radius: 18px;
  background: var(--bg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transform: perspective(1400px) rotateY(-4deg) rotateX(1.5deg);
  transition: transform 0.4s ease;
}
.hero-visual:hover .browser-card { transform: perspective(1400px) rotateY(0deg) rotateX(0deg); }
.browser-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 13px 16px;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border);
}
.browser-dot { width: 12px; height: 12px; border-radius: 50%; }
.browser-dot-red { background: #f87171; }
.browser-dot-yellow { background: #fbbf24; }
.browser-dot-green { background: #34d399; }
.browser-url {
  margin-left: 10px;
  flex: 1;
  font-size: 12.5px;
  color: var(--text-3);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 7px;
  padding: 5px 12px;
  max-width: 60%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.browser-body { padding: 22px; background: linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%); }
.mini-hero {
  background: var(--accent-grad);
  border-radius: 12px;
  padding: 18px;
  color: #fff;
  margin-bottom: 18px;
}
.mini-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.2);
  padding: 3px 9px;
  border-radius: 999px;
  margin-bottom: 10px;
}
.mini-title { display: block; font-size: 17px; font-weight: 700; margin-bottom: 6px; }
.mini-desc { display: block; font-size: 12.5px; line-height: 1.5; opacity: 0.92; }
.mini-rows { display: flex; flex-direction: column; gap: 10px; margin-bottom: 18px; }
.mini-row { height: 12px; border-radius: 6px; background: linear-gradient(90deg, #e2e8f0, #eef2f7); }
.mini-cta { display: flex; gap: 8px; }
.mini-btn {
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 8px;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text-2);
}
.mini-btn-active { background: var(--accent); border-color: var(--accent); color: #fff; }

.float-chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-2);
  box-shadow: var(--shadow-md);
  animation: float 5s ease-in-out infinite;
}
.float-chip svg { color: var(--accent); }
.float-chip-1 { top: -18px; left: -26px; }
.float-chip-2 { bottom: -16px; right: -18px; animation-delay: 2.4s; }
.float-chip-2 svg { color: var(--emerald); }

/* Stats strip */
.stats {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 70px;
  padding: 30px 36px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(10px);
}
.stat { text-align: center; }
.stat-value { display: block; font-size: clamp(1.6rem, 2.6vw, 2.2rem); font-weight: 800; letter-spacing: -0.02em; background: var(--accent-grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.stat-label { color: var(--text-3); font-size: 14px; font-weight: 500; }

/* ---------- Sections ---------- */
.section { padding: 96px 0; }
.section-tint { background: var(--bg-soft); }
.section-dark { background: #0f172a; color: #fff; }

.section-head { text-align: center; max-width: 680px; margin: 0 auto 58px; }
.section-head h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); line-height: 1.18; letter-spacing: -0.025em; font-weight: 800; margin-bottom: 16px; }
.section-sub { color: var(--text-3); font-size: 1.08rem; }

/* ---------- Features ---------- */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.feature-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--border-hover); }
.feature-icon {
  width: 54px; height: 54px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.feature-icon-indigo { color: var(--accent); background: rgba(79, 70, 229, 0.1); }
.feature-icon-sky { color: var(--sky); background: rgba(14, 165, 233, 0.1); }
.feature-icon-violet { color: var(--violet); background: rgba(139, 92, 246, 0.12); }
.feature-icon-emerald { color: var(--emerald); background: rgba(16, 185, 129, 0.1); }
.feature-icon-amber { color: var(--amber); background: rgba(245, 158, 11, 0.12); }
.feature-icon-rose { color: var(--rose); background: rgba(244, 63, 94, 0.1); }

.feature-card h3 { font-size: 1.16rem; font-weight: 700; letter-spacing: -0.01em; margin-bottom: 10px; }
.feature-card p { color: var(--text-3); font-size: 15px; }

/* ---------- Reliability tick strip ---------- */
.tick-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.tick-item { display: flex; gap: 14px; align-items: flex-start; }
.tick-item svg { color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.tick-item h3 { font-size: 1.02rem; font-weight: 700; margin-bottom: 5px; }
.tick-item p { font-size: 14px; color: var(--text-3); }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; counter-reset: step; }
.step {
  position: relative;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  text-align: center;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.step:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.step-number {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--accent-grad);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 16px rgba(79, 70, 229, 0.4);
}
.step-icon {
  width: 60px; height: 60px;
  margin: 0 auto 18px;
  border-radius: 16px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
}
.step h3 { font-size: 1.14rem; font-weight: 700; margin-bottom: 10px; }
.step p { color: var(--text-3); font-size: 15px; }

/* ---------- Shortcuts ---------- */
.shortcut-list { display: flex; flex-direction: column; gap: 16px; }
.shortcut-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 20px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px 26px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.shortcut-row:hover { border-color: var(--border-hover); box-shadow: var(--shadow-md); }
.shortcut-keys { display: flex; align-items: center; gap: 6px; }
.shortcut-name { font-weight: 600; color: var(--text); }
.shortcut-mac { color: var(--text-3); font-size: 14px; }

/* ---------- Use cases ---------- */
.use-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.use-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.use-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.use-emoji { font-size: 30px; margin-bottom: 14px; }
.use-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.use-card p { font-size: 14.5px; color: var(--text-3); }

/* ---------- Privacy (dark) ---------- */
.privacy-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: center; }
.privacy-copy h2 { font-size: clamp(1.8rem, 3.2vw, 2.5rem); line-height: 1.16; letter-spacing: -0.025em; margin-bottom: 18px; }
.privacy-copy > p { color: #cbd5e1; margin-bottom: 26px; font-size: 1.05rem; max-width: 520px; }
.privacy-copy > p strong { color: #fff; }
.privacy-list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 30px; }
.privacy-list li { display: flex; align-items: center; gap: 12px; color: #e2e8f0; font-size: 15.5px; font-weight: 500; }
.privacy-list svg { color: #34d399; flex-shrink: 0; }

.privacy-card {
  position: relative;
  text-align: center;
  background: linear-gradient(160deg, rgba(79, 70, 229, 0.28), rgba(14, 165, 233, 0.16));
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-xl);
  padding: 48px 36px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  overflow: hidden;
}
.shield {
  width: 120px; height: 120px;
  margin: 0 auto 22px;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex; align-items: center; justify-content: center;
  color: #34d399;
}
.privacy-card-title { display: block; font-size: 1.3rem; font-weight: 700; margin-bottom: 6px; }
.privacy-card-sub { color: #94a3b8; margin-bottom: 22px; }
.privacy-badges { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; }
.privacy-badge {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 600;
  color: #e2e8f0;
}

/* ---------- FAQ ---------- */
.faq-list { display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow 0.2s ease;
}
.faq-item[open] { box-shadow: var(--shadow-md); border-color: rgba(79, 70, 229, 0.4); }
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 26px;
  font-weight: 600;
  font-size: 1.02rem;
  cursor: pointer;
  list-style: none;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-chevron { display: inline-flex; color: var(--text-3); transition: transform 0.25s ease; flex-shrink: 0; }
.faq-item[open] .faq-chevron { transform: rotate(180deg); color: var(--accent); }
.faq-answer { padding: 0 26px 22px; color: var(--text-3); font-size: 15.5px; }

/* ---------- CTA ---------- */
.section-cta { padding: 40px 0 96px; }
.cta-card {
  position: relative;
  text-align: center;
  background: var(--accent-grad);
  border-radius: var(--radius-xl);
  padding: 70px 40px;
  color: #fff;
  overflow: hidden;
}
.cta-glow { position: absolute; width: 420px; height: 420px; border-radius: 50%; background: rgba(255, 255, 255, 0.14); filter: blur(70px); top: -160px; left: -100px; pointer-events: none; }
.cta-card .badge { margin-bottom: 24px; }
.cta-card h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); font-weight: 800; letter-spacing: -0.025em; margin-bottom: 14px; }
.cta-card p { font-size: 1.1rem; opacity: 0.92; margin-bottom: 32px; }
.cta-card .btn-primary { background: #fff; color: var(--accent); box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18); }
.cta-card .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 44px rgba(0, 0, 0, 0.25); }

/* ---------- Footer ---------- */
.site-footer { background: #0b1120; color: #cbd5e1; padding: 72px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 56px;
}
.footer-brand .brand-name { -webkit-text-fill-color: #fff; background: none; }
.footer-brand p { margin-top: 16px; color: #94a3b8; font-size: 15px; max-width: 300px; }
.footer-col h4 { color: #fff; font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col a { color: #94a3b8; font-size: 15px; transition: color 0.15s ease; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #64748b;
  font-size: 14px;
  flex-wrap: wrap;
}

/* ---------- Animations ---------- */
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes pulse-dot { 0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.5); } 70% { box-shadow: 0 0 0 9px rgba(16, 185, 129, 0); } 100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); } }

/* ---------- Reveal on scroll (progressive enhancement) ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .float-chip { animation: none; }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
  .hero-inner { gap: 40px; }
  .features-grid, .steps, .use-grid { grid-template-columns: repeat(2, 1fr); }
  .tick-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  .hero-copy .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-meta { justify-content: center; }
  .hero-visual { max-width: 520px; margin: 0 auto; width: 100%; }
  .privacy-grid { grid-template-columns: 1fr; gap: 44px; }
  .privacy-copy { text-align: center; }
  .privacy-copy > p { margin-left: auto; margin-right: auto; }
  .privacy-list { align-items: center; }
}

@media (max-width: 760px) {
  /* Mobile nav */
  .nav-toggle { display: flex; }
  .nav-cta { display: none; }
  .nav-menu {
    position: absolute;
    top: var(--nav-h);
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--border);
    padding: 12px 20px 20px;
    box-shadow: var(--shadow-md);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }
  .nav-menu.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-menu .nav-link { padding: 12px 14px; font-size: 16px; }
  .nav-cta-mobile { display: block; margin-top: 10px; }
  .nav-cta-mobile .btn { width: 100%; }

  .section { padding: 72px 0; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 24px 16px; padding: 26px 20px; margin-top: 56px; }
  .float-chip-1 { left: -8px; }
  .float-chip-2 { right: -8px; }
}

@media (max-width: 560px) {
  .container { padding: 0 20px; }
  .features-grid, .steps, .use-grid { grid-template-columns: 1fr; }
  .tick-grid { grid-template-columns: 1fr; }
  .shortcut-row { grid-template-columns: 1fr; gap: 10px; }
  .shortcut-mac { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero { padding: 56px 0 48px; }
  .btn-lg { width: 100%; }
  .hero-actions .btn-lg { width: 100%; }
  .cta-card { padding: 52px 24px; }
}
