/* Clicky Icky — landing page. Same palette as the app, calmer typography.
 * Deliberately plain: the product's claim is that it does very little and does
 * it locally, so a page that shouts would be arguing against itself. */

:root {
  --bg: #0f172a;
  --bg-alt: #131f38;
  --bg-card: #1e293b;
  --line: #334155;
  --fg: #e2e8f0;
  --fg-dim: #94a3b8;
  --accent: #22d3ee;
  --accent-ink: #062a33;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font: 16px/1.65 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
  -webkit-text-size-adjust: 100%;
}

h1, h2, h3 { line-height: 1.2; margin: 0; }
p { margin: 0; }
a { color: var(--accent); }

/* ---------- hero ---------- */

.hero {
  text-align: center;
  padding: clamp(48px, 9vw, 96px) 20px clamp(40px, 7vw, 72px);
  padding-top: calc(clamp(48px, 9vw, 96px) + env(safe-area-inset-top));
  border-bottom: 1px solid var(--line);
}
.mark { border-radius: 18px; display: block; margin: 0 auto 20px; }
.hero h1 { font-size: clamp(40px, 9vw, 64px); letter-spacing: -.02em; }
.tagline {
  font-size: clamp(18px, 3.4vw, 23px);
  color: var(--fg-dim);
  max-width: 30ch;
  margin: 16px auto 28px;
}

.cta {
  display: inline-block;
  background: var(--accent);
  color: var(--accent-ink);
  font-weight: 700;
  font-size: 18px;
  text-decoration: none;
  padding: 15px 38px;
  border-radius: 12px;
  min-height: 52px;
}
.cta:active { transform: translateY(1px); }
.sub { color: var(--fg-dim); font-size: 14px; margin-top: 14px; }

/* ---------- bands ---------- */

.band {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(40px, 7vw, 72px) 20px;
}
.band.alt { max-width: none; background: var(--bg-alt); }
.band.alt > * { max-width: 760px; margin-inline: auto; }
.band h2 { font-size: clamp(24px, 4.4vw, 32px); margin-bottom: 24px; letter-spacing: -.01em; }
.lead { color: var(--fg-dim); margin-bottom: 20px; max-width: 68ch; }
.lead + .facts { margin-top: 0; }

.cards { display: grid; gap: 14px; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }
.card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px;
}
.card h3 { font-size: 16px; margin-bottom: 8px; }
.card p { color: var(--fg-dim); font-size: 15px; }

.steps { margin: 0; padding-left: 22px; display: grid; gap: 18px; color: var(--fg-dim); }
.steps b { color: var(--fg); }
.steps::marker { color: var(--accent); }

.facts { margin: 0; padding-left: 22px; display: grid; gap: 12px; color: var(--fg-dim); max-width: 68ch; }
.facts b { color: var(--fg); }
.facts li::marker { color: var(--accent); }

.closing { text-align: center; }
.closing h2 { margin-bottom: 24px; }

footer {
  border-top: 1px solid var(--line);
  padding: 28px 20px calc(28px + env(safe-area-inset-bottom));
  text-align: center;
  color: var(--fg-dim);
  font-size: 14px;
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; }
}
