:root {
  --ink: #1B1F1D;
  --muted: #5C6661;
  --gold: #B05F28;
  --gold-bright: #C8743A;
  --amber: #C8743A;
  --line: #E7E1D8;
  --bg: #FAF7F2;
  --card: #ffffff;
  --shadow: 0 18px 50px rgba(20, 32, 26, 0.13);
}
@media (prefers-color-scheme: dark) {
  :root {
    --ink: #F2EFE9; --muted: #A3AFA9; --gold: #E39A5F; --gold-bright: #E9A36B;
    --line: #24322C; --bg: #0C1512; --card: #15211C;
    --shadow: 0 18px 50px rgba(0, 0, 0, 0.5);
  }
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; background: var(--bg); color: var(--ink);
  font: 17px/1.62 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
.bar {
  display: flex; flex-wrap: wrap; gap: 14px; align-items: center;
  justify-content: space-between; padding: 14px 24px;
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0; background: var(--bg); z-index: 5;
}
.wordmark { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; font-size: 20px; color: var(--ink); text-decoration: none; letter-spacing: -0.03em; }
.wordmark img { border-radius: 7px; }
nav a { color: var(--muted); text-decoration: none; margin-left: 18px; font-size: 15px; font-weight: 500; }
nav a:hover, nav a[aria-current] { color: var(--gold); }
main { max-width: 860px; margin: 0 auto; padding: 8px 24px 12px; }
main.wide { max-width: 1040px; }

/* Hero: the gradient carries the brand. */
.hero {
  position: relative; text-align: center;
  padding: 54px 20px 46px; margin: 22px -8px 8px;
  border-radius: 28px; overflow: hidden;
  background: linear-gradient(135deg, #1B6A4F 0%, #14503C 48%, #0A2A20 100%);
  color: #fff; box-shadow: var(--shadow);
}
.hero.small { padding: 40px 20px; }
.hero.small a { color: #E9A36B; }
.appicon { border-radius: 22px; box-shadow: 0 10px 26px rgba(0,0,0,0.28); margin-bottom: 20px; }
.hero h1 {
  font-size: clamp(30px, 6.2vw, 46px); line-height: 1.08;
  letter-spacing: -0.035em; font-weight: 800; margin: 0 0 16px; color: #fff;
}
.hero h1 em { font-style: normal; color: #E9A36B; }
.hero .lede { font-size: 17px; color: rgba(255,255,255,0.9); max-width: 46ch; margin: 0 auto; }
.cta { margin: 26px 0 0; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.btn {
  display: inline-block; padding: 14px 26px; border-radius: 999px;
  background: #E9A36B; color: #1B1208; font-weight: 800; font-size: 16px;
  text-decoration: none; letter-spacing: -0.01em; box-shadow: 0 10px 24px rgba(200,116,58,0.35);
}
.btn:hover { background: #F2B98A; }
.btn-soon, .btn-soon:hover { background: transparent; color: inherit; box-shadow: none; border: 1.5px solid currentColor; opacity: 0.85; cursor: default; }
.cta-note { font-size: 14px; color: rgba(255,255,255,0.72); }

/* Three claims that set expectations honestly before anyone scrolls. */
.proof { display: grid; gap: 14px; margin: 28px 0 6px; }
@media (min-width: 700px) { .proof { grid-template-columns: repeat(3, 1fr); } }
.stat { background: var(--card); border: 1px solid var(--line); border-radius: 16px; padding: 16px 18px; }
.stat strong { display: block; font-size: 20px; letter-spacing: -0.02em; color: var(--ink); }
.stat span { display: block; font-size: 14px; color: var(--muted); margin-top: 4px; }

/* Real screenshots, straight from the simulator. */
.shots { display: flex; gap: 26px; justify-content: center; flex-wrap: wrap; margin: 44px 0 10px; }
.phone { margin: 0; width: min(240px, 44vw); text-align: center; }
.phone img {
  width: 100%; height: auto; display: block;
  border-radius: 26px; border: 1px solid var(--line); box-shadow: var(--shadow);
}
.phone.lift img { transform: rotate(1.6deg); }
.phone figcaption { margin-top: 12px; font-size: 14px; color: var(--muted); font-weight: 500; }

.section-title { font-size: clamp(22px, 3.6vw, 28px); letter-spacing: -0.025em; margin: 54px 0 8px; text-align: center; }
.section-lede { text-align: center; color: var(--muted); max-width: 56ch; margin: 0 auto 22px; }

.stepgrid { display: grid; gap: 16px; margin: 18px 0 10px; }
@media (min-width: 700px) { .stepgrid { grid-template-columns: repeat(3, 1fr); } }
.stepgrid > div { background: var(--card); border: 1px solid var(--line); border-radius: 18px; padding: 22px 20px; }
.num {
  display: inline-grid; place-items: center; width: 30px; height: 30px;
  border-radius: 10px; background: var(--gold); color: #fff;
  font-weight: 800; font-size: 15px; margin-bottom: 10px;
}
@media (prefers-color-scheme: dark) { .num, .chips li:first-child, .plan .tag { color: #1B1208; } }
.stepgrid h3 { margin: 0 0 6px; font-size: 18px; letter-spacing: -0.01em; }
.stepgrid p { font-size: 15px; color: var(--muted); margin: 0; }

.chips { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.chips li { padding: 8px 14px; border-radius: 999px; background: var(--card); border: 1px solid var(--line); font-size: 14px; font-weight: 600; }
.chips li:first-child { background: var(--gold); color: #fff; border-color: var(--gold); }

.plans { display: grid; gap: 14px; margin: 20px 0 14px; }
@media (min-width: 760px) { .plans { grid-template-columns: repeat(3, 1fr); } }
.plan { position: relative; background: var(--card); border: 1px solid var(--line); border-radius: 18px; padding: 22px 18px 18px; }
.plan.featured { border-color: var(--gold); box-shadow: 0 0 0 2px var(--gold) inset; }
.plan h3 { margin: 0 0 6px; font-size: 17px; }
.plan .tag { position: absolute; top: -11px; left: 16px; margin: 0; padding: 3px 10px; border-radius: 999px; background: var(--gold); color: #fff; font-size: 12px; font-weight: 700; }
.price { font-size: 30px; font-weight: 800; letter-spacing: -0.03em; margin: 4px 0 8px; color: var(--ink); }
.price span { font-size: 14px; font-weight: 600; color: var(--muted); margin-left: 2px; }
.plan p { font-size: 14px; color: var(--muted); margin: 0; }
.plan p.price { font-size: 30px; color: var(--ink); margin: 4px 0 8px; }
.fineprint { font-size: 13px; color: var(--muted); text-align: center; max-width: 64ch; margin: 0 auto; }

.honest ul { list-style: none; padding: 0; margin: 12px 0 0; }
.honest li {
  background: var(--card); border: 1px solid var(--line); border-left: 4px solid var(--amber);
  border-radius: 12px; padding: 14px 16px; margin-bottom: 10px;
  color: var(--muted); font-size: 15px;
}
.honest li strong { color: var(--ink); }

.faq details { background: var(--card); border: 1px solid var(--line); border-radius: 12px; padding: 4px 16px; margin-bottom: 10px; }
.faq summary { cursor: pointer; font-weight: 700; padding: 10px 0; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::before { content: "+"; display: inline-block; width: 22px; color: var(--gold); font-weight: 800; }
.faq details[open] summary::before { content: "\2013"; }
.faq p { color: var(--muted); font-size: 15px; margin: 0 0 12px 22px; }

.cta-band { text-align: center; margin: 54px -8px 20px; padding: 40px 20px; border-radius: 24px;
  background: linear-gradient(135deg, #14503C, #0A2A20); color: #fff; }
.cta-band h2 { margin: 0 0 18px; font-size: clamp(22px, 4vw, 30px); letter-spacing: -0.03em; color: #fff; }
.cta-band p { margin: 0; }
.cta-band .cta-note { display: block; margin-top: 14px; }

h1 { font-size: 32px; line-height: 1.18; letter-spacing: -0.03em; margin: 0 0 16px; }
h2 { font-size: 21px; margin: 32px 0 10px; letter-spacing: -0.015em; }
h3 { font-size: 17px; margin: 24px 0 6px; }
blockquote {
  margin: 18px 0; padding: 12px 18px;
  border-left: 3px solid var(--gold); background: var(--card); color: var(--muted);
}
code { background: var(--card); border: 1px solid var(--line); border-radius: 5px; padding: 1px 5px; font-size: 14px; }
hr { border: 0; border-top: 1px solid var(--line); margin: 30px 0; }
a { color: var(--gold); }
footer {
  max-width: 860px; margin: 0 auto; padding: 30px 24px 60px;
  color: var(--muted); font-size: 14px; border-top: 1px solid var(--line);
}
.footgrid { display: grid; gap: 18px; }
@media (min-width: 700px) { .footgrid { grid-template-columns: 1fr 1.3fr; } }
footer p { margin: 4px 0; }
.wordmark-foot { font-weight: 800; color: var(--ink); }
.disclaimer { font-weight: 700; }
