/* Same palette as src/theme/tokens.ts: cool zinc neutrals, one deep rose accent. */
:root {
  --bg: #fafaf9;
  --surface: #ffffff;
  --surface-muted: #f4f4f3;
  --text: #18181b;
  --muted: #71717a;
  --faint: #a1a1aa;
  --hairline: #e4e4e7;
  --accent: #b23a5c;
  --accent-deep: #8a2c47;
  --accent-soft: #f6e4ea;
  --on-accent: #ffffff;
  color-scheme: light dark;
}
@media (prefers-color-scheme: dark) {
  :root {
    --bg: #111113;
    --surface: #1c1c1f;
    --surface-muted: #232327;
    --text: #f4f4f5;
    --muted: #a1a1aa;
    --faint: #71717a;
    --hairline: #2c2c31;
    --accent: #d9678a;
    --accent-deep: #a94a68;
    --accent-soft: #3a2029;
    --on-accent: #18181b;
  }
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font: 17px/1.6 -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-underline-offset: 3px; }
a:hover { color: var(--accent-deep); }
h1, h2, h3, .brand { font-family: 'Outfit', -apple-system, sans-serif; letter-spacing: -0.01em; line-height: 1.15; }
h1 { font-size: clamp(36px, 7vw, 60px); font-weight: 600; margin: 0 0 16px; }
h2 { font-size: 26px; font-weight: 600; margin: 48px 0 12px; }
h3 { font-size: 19px; font-weight: 600; margin: 28px 0 8px; }
p, ul, ol { margin: 0 0 16px; }
li { margin-bottom: 6px; }

.wrap { max-width: 1040px; margin: 0 auto; padding: 0 20px; }
.narrow { max-width: 720px; }

/* Header and footer */
.top { display: flex; align-items: center; justify-content: space-between; padding-top: 20px; padding-bottom: 20px; gap: 16px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-size: 20px; font-weight: 600; color: var(--text); text-decoration: none; }
.brand img { width: 36px; height: 36px; border-radius: 9px; }
.top nav { display: flex; gap: 20px; font-size: 15px; }
.top nav a { color: var(--muted); text-decoration: none; }
.top nav a:hover, .top nav a[aria-current] { color: var(--text); }
footer { border-top: 1px solid var(--hairline); margin-top: 80px; padding: 28px 0 40px; color: var(--muted); font-size: 14px; }
footer .wrap { display: flex; flex-wrap: wrap; gap: 12px 24px; justify-content: space-between; }
footer nav { display: flex; flex-wrap: wrap; gap: 20px; }
footer a { color: var(--muted); }

/* Landing */
.hero { text-align: center; padding: 56px 0 24px; }
.hero p.lead { font-size: 20px; color: var(--muted); max-width: 560px; margin: 0 auto 28px; }
.pill {
  display: inline-block; padding: 14px 26px; border-radius: 999px; font-weight: 600; text-decoration: none;
  background: var(--accent); color: var(--on-accent); box-shadow: 0 4px 0 var(--accent-deep);
}
.pill:hover { color: var(--on-accent); transform: translateY(1px); box-shadow: 0 3px 0 var(--accent-deep); }
.price { margin-top: 18px; color: var(--muted); font-size: 15px; }
.shots { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 48px 0 16px; }
.shots img { width: 100%; aspect-ratio: 1320 / 2868; object-fit: cover; border-radius: 20px; }
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 48px; }
.card { background: var(--surface); border: 1px solid var(--hairline); border-radius: 16px; padding: 24px; }
.card picture img { width: 120px; height: 120px; object-fit: contain; margin-bottom: 8px; }
.card h3 { margin-top: 0; }
.card p { color: var(--muted); margin: 0; font-size: 16px; }
.promise { text-align: center; margin-top: 64px; }
.promise p { color: var(--muted); max-width: 560px; margin: 0 auto; }

/* Documents */
.doc { padding-top: 24px; }
.doc .meta { color: var(--muted); font-size: 15px; margin-bottom: 32px; }
.doc table { width: 100%; border-collapse: collapse; margin: 0 0 20px; font-size: 15px; }
.doc th, .doc td { text-align: left; vertical-align: top; padding: 10px 12px 10px 0; border-bottom: 1px solid var(--hairline); }
.doc th { font-weight: 600; }
.note { background: var(--accent-soft); border-radius: 12px; padding: 16px 18px; margin: 0 0 20px; }
.faq details { background: var(--surface); border: 1px solid var(--hairline); border-radius: 12px; padding: 14px 18px; margin-bottom: 10px; }
.faq summary { cursor: pointer; font-weight: 600; }
.faq details p { margin: 10px 0 0; color: var(--muted); }

@media (max-width: 760px) {
  .shots { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .shots img { border-radius: 12px; }
  .features { grid-template-columns: 1fr; }
  .top nav { gap: 14px; font-size: 14px; }
  .brand { font-size: 18px; }
  .doc table, .doc thead, .doc tbody, .doc tr, .doc th, .doc td { display: block; }
  .doc thead { display: none; }
  .doc td { border: 0; padding: 2px 0; }
  .doc tr { border-bottom: 1px solid var(--hairline); padding: 10px 0; }
  .doc td:first-child { font-weight: 600; }
}
