:root {
  --bg: #f6f1e7;
  --bg-alt: #efe7d6;
  --ink: #1d1812;
  --muted: #6c6253;
  --card: #fffdf8;
  --line: rgba(29, 24, 18, 0.12);
  --gold: #b0832f;
  --gold-soft: #e8c870;
  --espresso: #17130f;
  --cream: #f3ead8;
  --serif: "Hoefler Text", Georgia, "Times New Roman", ui-serif, serif;
  --sans: -apple-system, system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--gold); text-decoration: none; }
a:hover { text-decoration: underline; }

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

/* Hero */
.hero {
  background: radial-gradient(120% 120% at 30% 20%, #221b14 0%, var(--espresso) 60%);
  color: var(--cream);
  text-align: center;
  padding: 96px 24px 88px;
}
.hero img.app-icon {
  width: 104px; height: 104px;
  border-radius: 24px;
  box-shadow: 0 18px 50px rgba(232, 200, 112, 0.18);
  margin-bottom: 28px;
}
.wordmark {
  font-family: var(--serif);
  font-size: 44px;
  letter-spacing: 0.5px;
  font-weight: 500;
  color: #fff;
}
.tagline {
  color: var(--gold-soft);
  font-size: 15px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 10px;
}
.hero p.lead {
  max-width: 540px;
  margin: 26px auto 0;
  font-size: 19px;
  color: rgba(243, 234, 216, 0.82);
}
.badge {
  display: inline-block;
  margin-top: 34px;
  padding: 11px 20px;
  border: 1px solid rgba(232, 200, 112, 0.45);
  border-radius: 100px;
  color: var(--gold-soft);
  font-size: 13px;
  letter-spacing: 1px;
}

/* Sections */
section { padding: 84px 0; }
.section-title {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 12px;
}
.section-sub {
  text-align: center;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 48px;
}

/* Showcase */
.showcase { background: var(--bg-alt); }
.shots {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  align-items: start;
}
.shots figure { text-align: center; }
.shots img {
  width: 100%;
  border-radius: 22px;
  border: 1px solid var(--line);
  box-shadow: 0 20px 50px rgba(29, 24, 18, 0.16);
  display: block;
}
.shots figcaption { margin-top: 14px; color: var(--muted); font-size: 14px; }
@media (max-width: 760px) {
  .shots { grid-template-columns: repeat(2, 1fr); gap: 22px 18px; }
}
@media (max-width: 420px) {
  .shots { grid-template-columns: 1fr; max-width: 280px; margin: 0 auto; }
}

/* Features */
.features { background: var(--bg); }
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 26px;
}
.card h3 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 8px;
}
.card p { color: var(--muted); font-size: 15px; }
.card .dot {
  width: 30px; height: 30px; border-radius: 9px;
  background: rgba(176, 131, 47, 0.12);
  color: var(--gold);
  display: grid; place-items: center;
  font-size: 16px; margin-bottom: 16px;
}

/* Pricing */
.pricing { background: var(--bg-alt); }
.plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 18px;
  align-items: stretch;
}
.plan {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 30px 26px;
  display: flex; flex-direction: column;
}
.plan.featured { border-color: rgba(176, 131, 47, 0.55); box-shadow: 0 14px 40px rgba(176,131,47,0.10); }
.plan .name { font-family: var(--serif); font-size: 22px; }
.plan .price { font-size: 30px; font-weight: 700; margin: 10px 0 2px; }
.plan .price span { font-size: 15px; font-weight: 400; color: var(--muted); }
.plan ul { list-style: none; margin-top: 18px; }
.plan li { padding: 7px 0; color: var(--ink); font-size: 15px; border-top: 1px solid var(--line); }
.plan li:first-child { border-top: none; }
.note { text-align: center; color: var(--muted); font-size: 14px; margin-top: 30px; }

/* Footer */
footer {
  background: var(--espresso);
  color: rgba(243, 234, 216, 0.7);
  text-align: center;
  padding: 64px 24px;
}
footer .wordmark { font-size: 24px; color: #fff; }
footer p { margin-top: 14px; font-size: 14px; }
footer a { color: var(--gold-soft); }
footer .legal { margin-top: 26px; font-size: 12px; color: rgba(243,234,216,0.4); }

/* Doc pages (privacy) */
.doc { max-width: 760px; margin: 0 auto; padding: 72px 24px 96px; }
.doc h1 { font-family: var(--serif); font-size: 34px; font-weight: 500; margin-bottom: 6px; }
.doc .updated { color: var(--muted); margin-bottom: 36px; }
.doc h2 { font-family: var(--serif); font-size: 21px; font-weight: 500; margin: 34px 0 10px; }
.doc p, .doc li { color: #322a20; }
.doc ul { margin: 8px 0 8px 22px; }
.doc li { padding: 4px 0; }
.doc .back { display: inline-block; margin-bottom: 28px; font-size: 14px; }
