/* pricesage.app — same palette and type as the app. */
:root {
  --bg: #faf6f0;
  --surface: #ffffff;
  --ink: #2a2622;
  --muted: #6b635a;
  --line: #e7dfd4;
  --sage: #4f7a5a;
  --sage-dark: #3c6147;
  --sage-soft: #e5efe6;
  --berry: #b23a48;
  --gold: #c98a1b;
  --gold-soft: #fbeccf;
  --radius: 16px;
}
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0; background: var(--bg); color: var(--ink);
  font: 18px/1.6 'Inter', system-ui, -apple-system, sans-serif;
}
h1, h2, h3 { font-family: 'Fraunces', Georgia, serif; line-height: 1.15; margin: 0 0 .4em; }
a { color: var(--sage-dark); text-underline-offset: 3px; }
.wrap { max-width: 1040px; margin: 0 auto; padding: 0 20px; }
.muted { color: var(--muted); }

.topbar { display: flex; align-items: center; justify-content: space-between; padding-block: 20px; }
.brand { font-family: 'Fraunces', Georgia, serif; font-weight: 700; font-size: 1.6rem; color: var(--sage-dark); text-decoration: none; }
.brand span { color: var(--gold); }
.topbar nav { display: flex; gap: 20px; font-weight: 500; }
.topbar nav a { text-decoration: none; }

.hero { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; padding-block: 40px 72px; }
.hero h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); color: var(--sage-dark); }
.hero h1 em { font-style: normal; color: var(--gold); }
.lede { font-size: 1.2rem; color: var(--muted); max-width: 34em; }
.badge {
  display: inline-block; margin-top: 12px; padding: 10px 18px; border-radius: 999px;
  background: var(--sage-soft); color: var(--sage-dark); font-weight: 600;
}
.cta { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; margin-top: 24px; }
.button {
  display: inline-block; padding: 14px 24px; border-radius: 999px; background: var(--sage); color: #fff;
  font-weight: 600; text-decoration: none;
}
.button:hover { background: var(--sage-dark); }

/* A tiny mock of the app's price alert, so the idea lands in one glance. */
.phone {
  justify-self: center; width: min(320px, 100%); background: var(--surface); border: 1px solid var(--line);
  border-radius: 32px; padding: 20px; box-shadow: 0 24px 60px rgba(42, 38, 34, .12);
}
.alert-card { background: var(--bg); border-radius: var(--radius); padding: 16px; margin-bottom: 12px; }
.alert-card:last-child { margin-bottom: 0; }
.alert-card .who { font-size: .8rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--gold); }
.alert-card strong { display: block; margin: 4px 0; }
.alert-card .price { font-weight: 700; font-size: 1.3rem; color: var(--berry); }
.alert-card s { color: var(--muted); margin-left: 6px; }

section { padding: 64px 0; }
section.alt { background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
section h2 { font-size: clamp(1.8rem, 3.5vw, 2.4rem); text-align: center; }
section > .wrap > .muted { text-align: center; max-width: 36em; margin: 0 auto 40px; }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; counter-reset: step; }
.step { position: relative; padding: 28px 24px; background: var(--bg); border-radius: var(--radius); }
.alt .step { background: var(--bg); }
.step::before {
  counter-increment: step; content: counter(step);
  display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%;
  background: var(--gold); color: #fff; font-weight: 700; margin-bottom: 12px;
}
.step h3 { font-size: 1.25rem; }
.step p { margin: 0; color: var(--muted); }

.features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.feature { display: flex; gap: 16px; padding: 24px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); }
.feature .icon { font-size: 2rem; line-height: 1; }
.feature h3 { font-size: 1.2rem; margin-bottom: .25em; }
.feature p { margin: 0; color: var(--muted); }

.note { max-width: 44em; margin: 0 auto; text-align: center; }

footer { padding: 40px 0 56px; color: var(--muted); font-size: .95rem; }
footer .wrap { display: flex; flex-wrap: wrap; gap: 12px 24px; justify-content: space-between; }
footer nav { display: flex; gap: 20px; }
.disclosure { font-size: .9rem; margin-top: 12px; flex-basis: 100%; }

/* Privacy policy and other text pages */
.doc { max-width: 760px; padding: 24px 20px 72px; }
.doc h1 { color: var(--sage-dark); font-size: 2.4rem; }
.doc h2 { font-size: 1.4rem; margin-top: 2em; text-align: left; }
.doc li { margin: .3em 0; }

@media (max-width: 800px) {
  .hero { grid-template-columns: 1fr; gap: 32px; padding-block: 16px 48px; }
  .steps, .features { grid-template-columns: 1fr; }
  section { padding: 48px 0; }
  .topbar nav a.section-link { display: none; }  /* just Contact on phones */
}
