/* ShootLink landing — Geist, ink #181818 / muted #6A6A6A, accent #2D5BE3, bg #F3F2EF. */
* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --ink: #181818; --muted: #6A6A6A; --accent: #2D5BE3;
  --bg: #F3F2EF; --surface: #FFFFFF; --line: rgba(24,24,24,0.08);
}
body {
  font-family: 'Geist', -apple-system, 'Helvetica Neue', sans-serif;
  font-size: 16px; line-height: 1.65; color: var(--ink); background: var(--bg);
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

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

header.site { padding: 40px 0; }
header.site .wrap { display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; gap: 10px; color: var(--ink); font-weight: 700; letter-spacing: -0.2px; }
.logo:hover { text-decoration: none; }

.hero { padding: 96px 0 80px; }
.hero h1 { font-size: 44px; font-weight: 700; letter-spacing: -1px; line-height: 1.15; max-width: 640px; }
.hero p.lede { margin-top: 24px; font-size: 18px; color: var(--muted); max-width: 560px; }
.hero .badges { margin-top: 48px; display: flex; gap: 16px; flex-wrap: wrap; }
.store-badge {
  display: inline-flex; align-items: center; gap: 10px; padding: 12px 24px;
  background: var(--ink); color: #fff; border-radius: 14px; font-size: 14px; font-weight: 500;
}
.store-badge:hover { text-decoration: none; opacity: 0.9; }
.store-badge.soon { background: transparent; color: var(--muted); box-shadow: inset 0 0 0 1px var(--line); }

.features { padding: 40px 0 96px; }
.feature { padding: 40px 0; border-top: 1px solid var(--line); }
.feature h2 { font-size: 18px; font-weight: 600; letter-spacing: -0.2px; }
.feature p { margin-top: 12px; color: var(--muted); font-size: 15px; max-width: 560px; }

footer.site { padding: 48px 0 64px; border-top: 1px solid var(--line); }
footer.site .wrap { display: flex; flex-wrap: wrap; gap: 12px 28px; font-size: 13px; color: var(--muted); }
footer.site a { color: var(--muted); }

/* legal pages */
article.legal { padding: 24px 0 96px; }
article.legal h1 { font-size: 28px; font-weight: 700; letter-spacing: -0.5px; margin-bottom: 8px; }
article.legal .updated { font-size: 13px; color: var(--muted); margin-bottom: 48px; }
article.legal h2 { font-size: 17px; font-weight: 600; margin: 40px 0 12px; }
article.legal p, article.legal li { font-size: 15px; color: #3A3A38; margin-bottom: 12px; }
article.legal ul { padding-left: 24px; margin-bottom: 16px; }
article.legal strong { color: var(--ink); }

/* deletion form */
form.delete { max-width: 420px; }
form.delete label { display: block; font-size: 13px; font-weight: 500; color: var(--muted); margin: 20px 0 8px; }
form.delete input, form.delete textarea {
  width: 100%; padding: 12px 14px; font: inherit; font-size: 14px;
  border: 1px solid var(--line); border-radius: 10px; background: var(--surface); outline: none;
}
form.delete button {
  margin-top: 24px; padding: 12px 28px; font: inherit; font-size: 14px; font-weight: 500;
  color: #fff; background: var(--accent); border: none; border-radius: 12px; cursor: pointer;
}
form.delete .result { margin-top: 16px; font-size: 14px; }
