/* ═══════════════════════════════════════════════════════════════
   Now — Timeless Focus · landing page
   Palette mirrors the extension: ink #0d0d1a, accent #e94560
═══════════════════════════════════════════════════════════════ */

:root {
  --ink:    #0d0d1a;
  --ink-2:  #12192b;
  --accent: #e94560;
  --text:   #eaeaea;
  --muted:  #8888aa;
  --line:   #232342;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: linear-gradient(160deg, #0d0d1a 0%, #12192b 55%, #0a1f3a 100%);
  background-attachment: fixed;
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

.wrap { max-width: 760px; margin: 0 auto; padding: 0 24px; }

/* ── Header ─────────────────────────────────────────────────── */
header.site {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  max-width: 760px;
  margin: 0 auto;
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 700; letter-spacing: 0.5px; }
.brand .dot {
  width: 14px; height: 14px; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #e94560, #a82d41);
  box-shadow: 0 0 14px rgba(233, 69, 96, 0.5);
}
header.site nav a { color: var(--muted); font-size: 14px; margin-left: 22px; }

/* ── Hero ───────────────────────────────────────────────────── */
.hero { text-align: center; padding: 64px 0 40px; }
.hero h1 { font-size: 46px; font-weight: 800; letter-spacing: -1px; line-height: 1.1; }
.hero .tag { color: var(--accent); font-weight: 600; letter-spacing: 2px; text-transform: uppercase; font-size: 13px; margin-bottom: 18px; }
.hero p.lead { font-size: 19px; color: #c7c7da; margin: 18px auto 0; max-width: 560px; }

.cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 34px; }
.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: #f25972; text-decoration: none; }
.btn-ghost { background: transparent; border-color: rgba(255,255,255,0.18); color: var(--text); }
.btn-ghost:hover { border-color: rgba(255,255,255,0.4); text-decoration: none; }

/* ── Sections ───────────────────────────────────────────────── */
section.block { padding: 40px 0; border-top: 1px solid var(--line); }
section.block h2 { font-size: 26px; font-weight: 700; margin-bottom: 8px; }
section.block .sub { color: var(--muted); margin-bottom: 28px; }

.steps { display: grid; gap: 18px; }
@media (min-width: 620px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px 20px;
}
.step .n { color: var(--accent); font-weight: 800; font-size: 13px; letter-spacing: 1px; }
.step h3 { font-size: 17px; margin: 8px 0 6px; }
.step p { font-size: 14px; color: var(--muted); }

/* ── Screenshots ────────────────────────────────────────────── */
.shots { display: grid; gap: 16px; }
@media (min-width: 620px) { .shots { grid-template-columns: repeat(3, 1fr); } }
.shot {
  aspect-ratio: 16 / 10;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}
.shot img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ── Plans ──────────────────────────────────────────────────── */
.plans { display: grid; gap: 18px; }
@media (min-width: 620px) { .plans { grid-template-columns: 1fr 1fr; } }
.plan {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 26px 24px;
}
.plan.premium { border-color: rgba(233,69,96,0.45); }
.plan h3 { font-size: 18px; margin-bottom: 4px; }
.plan .price { font-size: 13px; color: var(--accent); font-weight: 600; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 16px; }
.plan ul { list-style: none; }
.plan li { font-size: 14px; color: #c7c7da; padding: 6px 0 6px 24px; position: relative; }
.plan li::before { content: '·'; color: var(--accent); position: absolute; left: 8px; font-weight: 800; }

/* ── Waitlist ───────────────────────────────────────────────── */
.waitlist { text-align: center; }
.waitlist form {
  display: flex;
  gap: 10px;
  max-width: 440px;
  margin: 22px auto 0;
  flex-wrap: wrap;
  justify-content: center;
}
.waitlist input[type=email] {
  flex: 1 1 240px;
  padding: 13px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.04);
  color: var(--text);
  font-size: 15px;
}
.waitlist input[type=email]::placeholder { color: #55557a; }
.waitlist .note { font-size: 12px; color: var(--muted); margin-top: 14px; }
.form-success {
  max-width: 440px;
  margin: 22px auto 0;
  padding: 14px 18px;
  border: 1px solid rgba(233, 69, 96, 0.45);
  border-radius: 12px;
  background: rgba(233, 69, 96, 0.07);
  color: #f0d9de;
  font-size: 15px;
  font-weight: 600;
}

/* ── FAQ ────────────────────────────────────────────────────── */
.faq-item { border-top: 1px solid var(--line); padding: 18px 0; }
.faq-item:first-of-type { border-top: none; padding-top: 0; }
.faq-item h3 { font-size: 16px; margin-bottom: 6px; }
.faq-item p { font-size: 14px; color: #c7c7da; }

/* ── Footer ─────────────────────────────────────────────────── */
footer.site {
  border-top: 1px solid var(--line);
  padding: 28px 24px 48px;
  text-align: center;
  color: var(--muted);
  font-size: 13px;
}
footer.site a { color: var(--muted); margin: 0 10px; }


/* ── Privacy page ───────────────────────────────────────────── */
.doc { padding: 48px 0; }
.doc h1 { font-size: 30px; margin-bottom: 6px; }
.doc h2 { font-size: 18px; margin: 28px 0 8px; }
.doc p, .doc li { color: #c7c7da; margin-bottom: 10px; font-size: 15px; }
.doc ul { padding-left: 22px; }
.doc .updated { color: var(--muted); font-size: 13px; margin-bottom: 8px; }
