/* Overture marketing site — cream, ink, coral. Serif display, sans body, one accent. */
:root {
  --bg: #faf8f4; --surface: #ffffff; --ink: #1a1a1a; --muted: #6d6a66; --line: #e6e1d9; --line-strong: #cfc8bd;
  --accent: #ff5a36; --accent-ink: #ffffff; --accent-soft: #ffe9e2; --sage: #2f7a4f; --sage-soft: #e6f2ea;
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, "Times New Roman", serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --radius: 14px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--bg); color: var(--ink); font: 17px/1.6 var(--sans); -webkit-font-smoothing: antialiased; }
a { color: inherit; }
img { max-width: 100%; height: auto; display: block; }
.wrap { max-width: 1080px; margin: 0 auto; padding: 0 24px; }
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; letter-spacing: -0.01em; margin: 0; }
h1 { font-size: clamp(40px, 6vw, 66px); line-height: 1.04; }
h2 { font-size: clamp(30px, 3.8vw, 42px); line-height: 1.12; margin-bottom: 14px; }
h3 { font-size: 23px; margin-bottom: 6px; }
p { margin: 0 0 14px; }
.muted { color: var(--muted); }
.small { font-size: 14px; }
.eyebrow { font-family: var(--sans); font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; }
.num { color: var(--sage); font-family: var(--serif); font-size: 40px; line-height: 1; }
.btn { display: inline-block; padding: 14px 22px; border-radius: 9px; font: inherit; font-weight: 600; text-decoration: none; border: 1.5px solid var(--accent); background: var(--accent); color: var(--accent-ink); cursor: pointer; transition: transform .12s ease, box-shadow .12s ease; }
.btn:hover { transform: translateY(-1px); box-shadow: 0 8px 20px rgba(255, 90, 54, .25); }
.btn.alt { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn.alt:hover { box-shadow: none; background: #fff; }
.btn.small { padding: 10px 16px; font-size: 15px; }
.btn:disabled { opacity: .55; cursor: default; transform: none; box-shadow: none; }

/* nav */
header.top { position: sticky; top: 0; z-index: 20; background: rgba(250, 248, 244, .92); backdrop-filter: blur(8px); border-bottom: 1px solid var(--line); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 66px; }
.brand { font-family: var(--serif); font-size: 25px; text-decoration: none; }
.links { display: flex; align-items: center; gap: 4px; }
.links > a, .dd > a { padding: 8px 12px; text-decoration: none; color: var(--ink); font-size: 15px; border-radius: 8px; }
.links > a:hover, .dd:hover > a { background: #fff; }
.links .btn { margin-left: 8px; }
.dd { position: relative; }
.dd-menu { position: absolute; top: 100%; left: 0; min-width: 280px; background: var(--surface); border: 1px solid var(--line); border-radius: 12px; padding: 8px; box-shadow: 0 20px 50px rgba(26, 26, 26, .12); display: none; }
.dd:hover .dd-menu, .dd:focus-within .dd-menu { display: block; }
.dd-menu a { display: block; padding: 10px 12px; border-radius: 8px; text-decoration: none; }
.dd-menu a:hover { background: var(--bg); }
.dd-menu b { display: block; font-size: 15px; }
.dd-menu span { display: block; font-size: 13px; color: var(--muted); }
.menu { display: none; font: inherit; border: 1px solid var(--line-strong); background: #fff; border-radius: 8px; padding: 8px 12px; }

/* sections */
section { padding: 72px 0; }
section + section { border-top: 1px solid var(--line); }
.hero { padding: 72px 0 64px; display: grid; grid-template-columns: 1.05fr 1fr; gap: 48px; align-items: center; }
.hero .lede { font-size: 20px; color: var(--muted); max-width: 540px; margin: 22px 0 28px; }
.actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.fine { margin-top: 14px; }
.grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: center; }
.grid3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 28px; }
.grid4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 28px; }
.card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; }
.card.accent { border-color: var(--accent); background: var(--accent-soft); }
.card.sage { border-color: var(--sage); background: var(--sage-soft); }
.step .n { font-family: var(--serif); font-size: 44px; color: var(--accent); line-height: 1; margin-bottom: 10px; }
.shot { border: 1px solid var(--line); border-radius: var(--radius); background: #fff; padding: 8px; box-shadow: 0 30px 80px rgba(26, 26, 26, .10); }
.shot img { border-radius: 8px; }
.chips { display: flex; gap: 6px; flex-wrap: wrap; margin: 8px 0; }
.chips span { font-size: 12px; padding: 3px 9px; border-radius: 999px; background: var(--bg); border: 1px solid var(--line); color: var(--muted); }
.chips span.reward { background: var(--sage-soft); color: var(--sage); border-color: transparent; }
.check { list-style: none; padding: 0; margin: 12px 0 0; }
.check li { padding-left: 26px; position: relative; margin: 8px 0; }
.check li::before { content: "✓"; position: absolute; left: 0; color: var(--sage); font-weight: 700; }

/* demos */
.demo-frame { position: relative; background: #f1efe9; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; aspect-ratio: 4 / 3; box-shadow: 0 30px 80px rgba(26, 26, 26, .10); }
.demo-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; background: #fff; }
.demo-frame .run { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; background: linear-gradient(180deg, #f7f4ee, #ece7de); }
.demo-frame .run p { margin: 0; }
.demo-frame.on .run { display: none; }
.demo-frame.hero-demo { aspect-ratio: 5 / 4; }

/* pricing */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 28px; }
.plan { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 24px; position: relative; }
.plan .price { font-family: var(--serif); font-size: 46px; margin: 8px 0 0; }
.plan .price small { font-family: var(--sans); font-size: 15px; color: var(--muted); }
.plan ul { padding-left: 18px; margin: 14px 0 20px; color: var(--muted); font-size: 15px; }
.plan.featured { border-color: var(--accent); box-shadow: inset 0 0 0 1px var(--accent); }
.plan.featured::after { content: "Most stores"; position: absolute; top: -12px; right: 18px; background: var(--accent); color: #fff; font-size: 12px; font-weight: 700; padding: 3px 10px; border-radius: 999px; }
.plan.suggested { outline: 3px solid var(--sage); outline-offset: 2px; }
.slider { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 24px; margin-top: 28px; display: grid; grid-template-columns: 1fr auto; gap: 18px; align-items: center; }
.slider input[type=range] { width: 100%; accent-color: var(--accent); }
.slider output { font-family: var(--serif); font-size: 26px; white-space: nowrap; }

/* compare */
table.cmp { width: 100%; border-collapse: collapse; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; font-size: 15px; }
table.cmp th, table.cmp td { text-align: left; padding: 12px 14px; border-top: 1px solid var(--line); vertical-align: top; }
table.cmp th { background: var(--bg); font-weight: 600; border-top: 0; }
table.cmp td.us { background: var(--sage-soft); }
table.cmp .y { color: var(--sage); font-weight: 700; }
table.cmp .n { color: var(--muted); }
.tablewrap { overflow-x: auto; margin-top: 24px; }

/* misc */
.faq dt { font-weight: 600; margin-top: 18px; }
.faq dd { margin: 4px 0 0; color: var(--muted); }
.swatches { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; margin-top: 20px; }
.swatch { border-radius: 12px; padding: 16px; border: 1px solid var(--line); }
.swatch b { display: block; font-family: var(--serif); font-weight: 500; font-size: 18px; }
.swatch i { display: inline-block; width: 100%; height: 34px; border-radius: 8px; margin-top: 10px; }
.cta-band { border-top: 1px solid var(--line); background: var(--surface); text-align: center; padding: 72px 0; }
.cta-band p { max-width: 520px; margin: 0 auto 22px; }
footer { border-top: 1px solid var(--line); padding: 40px 0 56px; font-size: 14px; }
.foot { display: grid; grid-template-columns: 1.2fr 2fr; gap: 32px; }
.foot .cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.foot .cols a { display: block; color: var(--muted); text-decoration: none; margin-top: 8px; }
.foot .cols b { display: block; margin-bottom: 4px; }

/* legal */
.legal { max-width: 760px; padding: 40px 0 72px; }
.legal h1 { font-size: 40px; margin-bottom: 8px; }
.legal h2 { font-size: 24px; margin: 36px 0 10px; }
.legal p, .legal li { color: #333; }
.legal table { border-collapse: collapse; width: 100%; font-size: 15px; }
.legal th, .legal td { text-align: left; padding: 8px 10px; border-top: 1px solid var(--line); vertical-align: top; }
.legal th { color: var(--muted); font-weight: 600; font-size: 13px; border-top: 0; }
.placeholder { background: #fff3c4; padding: 0 4px; border-radius: 3px; }
.page-head { padding: 64px 0 24px; max-width: 760px; }
.page-head .lede { font-size: 20px; color: var(--muted); margin-top: 16px; }
.prose { max-width: 760px; }
.prose h2 { font-size: 28px; margin-top: 36px; }
.prose h3 { margin-top: 24px; }
.prose ol, .prose ul { padding-left: 22px; }
.prose li { margin: 6px 0; }
code { font-family: ui-monospace, Menlo, Consolas, monospace; font-size: 14px; background: #f1efe9; padding: 2px 6px; border-radius: 5px; }

@media (max-width: 900px) {
  .hero, .grid2 { grid-template-columns: 1fr; gap: 28px; }
  .grid3, .grid4, .plans, .swatches { grid-template-columns: 1fr; }
  .foot { grid-template-columns: 1fr; }
  .foot .cols { grid-template-columns: 1fr 1fr; }
  .menu { display: inline-block; }
  .links { display: none; position: absolute; left: 0; right: 0; top: 66px; flex-direction: column; align-items: stretch; background: var(--bg); border-bottom: 1px solid var(--line); padding: 10px 16px 18px; }
  .links.open { display: flex; }
  .dd-menu { position: static; display: block; box-shadow: none; border: 0; padding: 0 0 6px 12px; min-width: 0; }
  .links .btn { margin: 10px 12px 0; text-align: center; }
  section { padding: 48px 0; }
  .hero { padding: 40px 0 32px; }
  .slider { grid-template-columns: 1fr; }
}
