:root {
  --bg: #f4f1ea;
  --paper: #fffdf8;
  --ink: #161814;
  --muted: #5a5f57;
  --line: #ddd6c8;
  --acc: #1c4a38;
  --acc2: #c9a227;
  --warn: #7a2e1f;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { background: var(--bg); color: var(--ink); }
body {
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
a { color: var(--acc); }
.sans { font-family: ui-sans-serif, system-ui, sans-serif; }
header.top {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 28px; border-bottom: 1px solid var(--line);
  font-family: ui-sans-serif, system-ui, sans-serif;
}
header.top .brand {
  letter-spacing: .16em; font-size: 13px; text-transform: uppercase; font-weight: 700;
  color: var(--ink); text-decoration: none;
  display: flex; align-items: center; gap: 10px;
}
header.top .brand img {
  width: 40px; height: 40px; display: block;
}
header.top nav { display: flex; gap: 18px; font-size: 13px; }
header.top nav a { color: var(--muted); text-decoration: none; }
header.top nav a:hover { color: var(--ink); }
main.wrap { max-width: 980px; margin: 0 auto; padding: 56px 24px 72px; flex: 1; width: 100%; }
h1 { font-size: clamp(34px, 5.4vw, 56px); font-weight: 500; letter-spacing: -.03em; line-height: 1.08; }
.lede { margin-top: 18px; font-size: 20px; color: var(--muted); max-width: 42ch; }
.badge {
  display: inline-block; font-family: ui-sans-serif, system-ui, sans-serif;
  font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  border: 1px solid var(--line); padding: 5px 9px; border-radius: 999px; color: var(--muted);
  margin-bottom: 16px;
}
.grid2 { display: grid; grid-template-columns: 1.1fr .9fr; gap: 22px; margin-top: 40px; }
@media (max-width: 820px) { .grid2 { grid-template-columns: 1fr; } }
.card {
  background: var(--paper); border: 1px solid var(--line); border-radius: 10px; padding: 26px;
}
.card h2 {
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-size: 12px; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 10px;
}
.card p, .card li { color: var(--muted); font-size: 16.5px; line-height: 1.5; }
.card ul { margin: 10px 0 0 18px; }
.cta {
  display: inline-block; margin-top: 18px; background: var(--acc); color: #fff;
  text-decoration: none; padding: 12px 18px; border-radius: 8px;
  font-family: ui-sans-serif, system-ui, sans-serif; font-weight: 650; font-size: 14px;
}
.cta.ghost { background: transparent; color: var(--acc); border: 1px solid var(--acc); margin-left: 8px; }
.store-row {
  display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; align-items: center;
}
.store {
  display: inline-flex; align-items: center; gap: 10px;
  background: #161814; color: #fff; text-decoration: none;
  font-family: ui-sans-serif, system-ui, sans-serif; font-weight: 650; font-size: 15px;
  padding: 8px 16px 8px 12px; border-radius: 8px; line-height: 1.15;
}
.store svg { width: 22px; height: 22px; flex: none; }
.store small {
  display: block; font-weight: 500; font-size: 10px; letter-spacing: .08em;
  text-transform: uppercase; opacity: .65; margin-bottom: 1px;
}
.store:hover { background: #2c2e28; }
.shots { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 18px; }
.shots img {
  width: 100%; border-radius: 14px; border: 1px solid var(--line); background: #111;
}
@media (max-width: 700px) { .shots { grid-template-columns: 1fr; max-width: 280px; } }
footer.foot {
  padding: 22px 24px; font-family: ui-sans-serif, system-ui, sans-serif;
  font-size: 12px; color: var(--muted); display: flex; gap: 16px; flex-wrap: wrap;
  border-top: 1px solid var(--line);
}
footer.foot a { color: var(--muted); }

/* demo phone */
.demo-layout { display: grid; grid-template-columns: 340px 1fr; gap: 36px; align-items: start; }
@media (max-width: 860px) { .demo-layout { grid-template-columns: 1fr; } }
.phone {
  width: 320px; margin: 0 auto; background: #111; border-radius: 36px; padding: 12px;
  box-shadow: 0 20px 50px rgba(0,0,0,.18);
}
.phone-screen {
  background: var(--paper); border-radius: 26px; min-height: 560px; overflow: hidden;
  display: flex; flex-direction: column;
}
.phone-bar {
  font-family: ui-sans-serif, system-ui, sans-serif; font-size: 11px; letter-spacing: .08em;
  text-transform: uppercase; padding: 14px 16px; border-bottom: 1px solid var(--line);
  display: flex; justify-content: space-between; color: var(--muted);
}
.phone-body { padding: 18px 16px 22px; flex: 1; }
.phone-body h3 { font-size: 22px; margin-bottom: 6px; }
.phone-body p { color: var(--muted); font-size: 14px; }
.field { margin-top: 12px; }
.field label {
  display: block; font-family: ui-sans-serif, system-ui, sans-serif;
  font-size: 11px; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px;
}
.field input, .field textarea, .field select {
  width: 100%; border: 1px solid var(--line); border-radius: 8px; padding: 10px 11px;
  font: inherit; background: #fff; color: var(--ink);
}
.chips { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; }
.chip {
  font-family: ui-sans-serif, system-ui, sans-serif; font-size: 12px;
  border: 1px solid var(--line); border-radius: 999px; padding: 6px 10px; cursor: pointer; background: #fff;
}
.chip.on { background: var(--acc); color: #fff; border-color: var(--acc); }
.phone-actions { padding: 12px 16px 18px; }
.btn {
  width: 100%; border: 0; background: var(--acc); color: #fff; padding: 12px;
  border-radius: 10px; font-family: ui-sans-serif, system-ui, sans-serif; font-weight: 650; cursor: pointer;
}
.btn.sec { background: #eeeae2; color: var(--ink); margin-top: 8px; }
.steps { display: flex; gap: 6px; margin: 10px 16px 0; }
.dot { height: 4px; flex: 1; background: var(--line); border-radius: 4px; }
.dot.on { background: var(--acc); }
.note {
  margin-top: 18px; font-size: 14px; color: var(--warn);
  font-family: ui-sans-serif, system-ui, sans-serif;
}
.review-row { display: flex; justify-content: space-between; gap: 12px; padding: 8px 0; border-bottom: 1px solid var(--line); font-size: 14px; }
.review-row span { color: var(--muted); }
.ok-mark { font-size: 42px; line-height: 1; margin: 8px 0 10px; }
