/* Marketing site — same palette as packages/design tokens, zero build step. */
:root {
  --bg: #f7f7f8;
  --surface: #ffffff;
  --text: #1b1b20;
  --text-muted: #5c5c66;
  --text-faint: #8f8f9a;
  --accent: #4f46e5;
  --accent-soft: #eef2ff;
  --accent-text: #ffffff;
  --border: #e4e4e9;
  --radius: 10px;
}
@media (prefers-color-scheme: dark) {
  :root {
    --bg: #101013;
    --surface: #1a1a20;
    --text: #ececf1;
    --text-muted: #a2a2ad;
    --text-faint: #6e6e79;
    --accent: #818cf8;
    --accent-soft: #232345;
    --accent-text: #0f0f14;
    --border: #2a2a33;
  }
}

* { box-sizing: border-box; margin: 0; }
body {
  font: 16px/1.6 system-ui, -apple-system, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
}
a { color: var(--accent); text-decoration: none; }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 960px;
  margin: 0 auto;
  padding: 20px 24px;
}
.brand { font-weight: 700; letter-spacing: 0.02em; }
.nav nav { display: flex; gap: 20px; align-items: center; }
.nav a { color: var(--text-muted); font-size: 14px; }
.nav a:hover { color: var(--text); }

.cta,
.cta-small {
  display: inline-block;
  background: var(--accent);
  color: var(--accent-text) !important;
  border-radius: 999px;
  font-weight: 600;
}
.cta { padding: 10px 24px; }
.cta-small { padding: 6px 16px; font-size: 14px; }
.cta:hover, .cta-small:hover { filter: brightness(1.08); }

main { max-width: 960px; margin: 0 auto; padding: 0 24px; }

.hero { text-align: center; padding: 72px 0 48px; }
.hero h1 { font-size: clamp(34px, 6vw, 56px); line-height: 1.12; letter-spacing: -0.02em; }
.hero .sub {
  max-width: 560px;
  margin: 20px auto 0;
  color: var(--text-muted);
  font-size: 18px;
}
.hero-actions { margin-top: 28px; display: flex; flex-direction: column; gap: 12px; align-items: center; }
.hint { color: var(--text-faint); font-size: 13px; }

.hero-shot {
  max-width: 620px;
  margin: 48px auto 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 8px;
  text-align: left;
  box-shadow: 0 12px 40px rgb(0 0 0 / 8%);
}
.shot-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 6px;
  font-size: 14px;
}
.shot-row b { font-weight: 600; }
.shot-row i { color: var(--text-faint); font-style: normal; margin-left: auto; font-size: 12.5px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.shot-row.focus { background: var(--accent-soft); }
.shot-row.bundle b { color: var(--text-muted); }
.dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); flex: none; }

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  padding: 56px 0;
}
.feature {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
}
.feature h3 { font-size: 17px; margin-bottom: 8px; }
.feature p { color: var(--text-muted); font-size: 14.5px; }

.pricing { text-align: center; padding: 40px 0; }
.pricing h2, .faq h2, .early h2 { font-size: 28px; margin-bottom: 20px; }
.price-card {
  max-width: 380px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}
.price { font-size: 18px; }
.price b { font-size: 40px; }
.price-card ul { list-style: none; padding: 16px 0 20px; color: var(--text-muted); font-size: 14.5px; }
.price-card li { padding: 4px 0; }

.faq { max-width: 640px; margin: 0 auto; padding: 40px 0; }
.faq details {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 18px;
  margin-bottom: 10px;
}
.faq summary { cursor: pointer; font-weight: 600; font-size: 15px; }
.faq p { color: var(--text-muted); font-size: 14.5px; padding-top: 10px; }

.early { text-align: center; padding: 40px 0 72px; }
.early p { margin-bottom: 14px; color: var(--text-muted); }

footer {
  border-top: 1px solid var(--border);
  padding: 24px;
  display: flex;
  justify-content: center;
  gap: 24px;
  color: var(--text-faint);
  font-size: 13px;
}
