@import url('https://fonts.googleapis.com/css2?family=Source+Serif+Pro:wght@400;500;600&display=swap');

:root {
  --cream: #faf9f7;
  --ink: #2d2926;
  --ink-soft: #5c554c;
  --ink-faint: #8a8378;
  --coral: #cc785c;
  --coral-deep: #b86343;
  --line: #e8e3db;
  --serif: "Source Serif Pro", Georgia, "Times New Roman", serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --max-content: 64ch;
  --max-wide: 80ch;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0;
}

h1 { font-size: clamp(2.25rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2rem); }
h3 { font-size: 1.25rem; }

p { margin: 0; max-width: var(--max-content); }
a { color: var(--coral); text-decoration: underline; text-underline-offset: 3px; }
a:hover { color: var(--coral-deep); }

.container {
  max-width: var(--max-wide);
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 48px 0; }
@media (min-width: 720px) { section { padding: 96px 0; } }

.hero h1 { margin-bottom: 24px; }
.hero p.subtitle { color: var(--ink-soft); font-size: 1.1875rem; max-width: 56ch; }

.cta-row { margin-top: 40px; }

.cta {
  display: inline-block;
  background: var(--coral);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 500;
  padding: 14px 28px;
  border: none;
  border-radius: 6px;
  text-decoration: none;
  cursor: pointer;
}
.cta:hover { background: var(--coral-deep); color: var(--cream); }

.price { color: var(--coral); font-family: var(--serif); font-size: 1.875rem; font-weight: 500; }

.muted { color: var(--ink-soft); font-size: 0.875rem; }
.faint { color: var(--ink-faint); font-size: 0.875rem; }
.notice {
  background: rgba(204, 120, 92, 0.08);
  border-left: 3px solid var(--coral);
  padding: 16px 20px;
  margin-top: 24px;
  max-width: var(--max-content);
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.card {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 32px;
  background: rgba(255, 255, 255, 0.4);
}

.bullets { list-style: none; padding: 0; margin: 0; }
.bullets li {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  max-width: var(--max-content);
}
.bullets li:last-child { border-bottom: none; }
.bullets li::before {
  content: "·";
  color: var(--coral);
  font-weight: 600;
  margin-right: 12px;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 720px) { .grid-2 { grid-template-columns: 1fr 1fr; gap: 48px; } }

.pricing-card {
  display: inline-block;
  min-width: 280px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.5);
}
.pricing-card .line { display: flex; justify-content: space-between; align-items: baseline; padding: 8px 0; }
.pricing-card .line + .line { border-top: 1px solid var(--line); }

.faq h2 { margin-bottom: 24px; }
.faq .q { font-weight: 500; margin-bottom: 8px; }

footer {
  border-top: 1px solid var(--line);
  padding: 32px 0;
  color: var(--ink-soft);
  font-size: 0.875rem;
}
footer a { color: var(--ink-soft); }

/* Welcome / setup form */
.setup-form { max-width: 56ch; }
.setup-form label { display: block; margin-top: 20px; font-size: 0.875rem; color: var(--ink-soft); }
.setup-form input[type="text"],
.setup-form input[type="url"],
.setup-form input[type="number"],
.setup-form input[type="email"],
.setup-form textarea {
  width: 100%;
  font: inherit;
  padding: 10px 14px;
  margin-top: 6px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--cream);
  color: var(--ink);
}
.setup-form textarea { min-height: 80px; resize: vertical; }
.setup-form .url-display {
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 0.875rem;
  padding: 12px 14px;
  background: rgba(204, 120, 92, 0.08);
  border-radius: 6px;
  word-break: break-all;
  margin-top: 8px;
}
.setup-form .step { margin: 32px 0; padding-bottom: 32px; border-bottom: 1px solid var(--line); }
.setup-form .step:last-child { border-bottom: none; }
.setup-form .step-num {
  display: inline-block; width: 28px; height: 28px;
  border-radius: 999px;
  background: var(--coral); color: var(--cream);
  font-family: var(--serif); font-weight: 600;
  text-align: center; line-height: 28px;
  margin-right: 12px;
}
