:root {
  --brand: #f97316;
  --brand-dark: #ea580c;
  --ink: #0f172a;
  --muted: #475569;
  --faint: #94a3b8;
  --line: #e2e8f0;
  --bg: #ffffff;
  --bg-soft: #fff7ed;
  --radius: 16px;
  --max: 1080px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--brand-dark); text-decoration: none; }
a:hover { text-decoration: underline; }
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

/* Nav */
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; max-width: var(--max); margin: 0 auto;
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 20px; color: var(--ink); }
.brand .dot { width: 30px; height: 30px; border-radius: 9px; background: var(--brand); display: grid; place-items: center; color: #fff; font-size: 17px; }
.nav a.link { color: var(--muted); font-weight: 600; margin-left: 22px; }
.nav a.link:hover { color: var(--ink); text-decoration: none; }

/* Hero */
.hero { background: linear-gradient(180deg, var(--bg-soft), #fff); border-bottom: 1px solid var(--line); }
.hero-inner { text-align: center; padding: 64px 24px 72px; max-width: 760px; margin: 0 auto; }
.eyebrow { display: inline-block; background: #fff; border: 1px solid var(--line); color: var(--brand-dark); font-weight: 700; font-size: 13px; padding: 6px 14px; border-radius: 999px; margin-bottom: 20px; }
h1 { font-size: 46px; line-height: 1.08; margin: 0 0 18px; letter-spacing: -0.02em; }
h1 .accent { color: var(--brand); }
.lead { font-size: 19px; color: var(--muted); margin: 0 auto 28px; max-width: 620px; }
.cta-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn { display: inline-block; padding: 14px 24px; border-radius: 12px; font-weight: 700; font-size: 16px; }
.btn-primary { background: var(--brand); color: #fff; }
.btn-primary:hover { background: var(--brand-dark); text-decoration: none; }
.btn-ghost { background: #fff; color: var(--ink); border: 1px solid var(--line); }
.btn-ghost:hover { border-color: var(--faint); text-decoration: none; }
.stores { margin-top: 18px; color: var(--faint); font-size: 14px; font-weight: 600; }

/* Sections */
section { padding: 68px 0; }
.section-title { text-align: center; font-size: 32px; margin: 0 0 8px; letter-spacing: -0.01em; }
.section-sub { text-align: center; color: var(--muted); margin: 0 auto 40px; max-width: 560px; }

/* Features */
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; }
.card .ico { font-size: 26px; }
.card h3 { margin: 12px 0 6px; font-size: 18px; }
.card p { margin: 0; color: var(--muted); font-size: 15px; }

/* Pricing */
.pricing { background: var(--bg-soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: start; }
.price-grid-single { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
.price-card { position: relative; background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 30px 26px; text-align: center; box-shadow: 0 10px 30px rgba(15,23,42,0.05); }
.price-card.featured { border: 2px solid var(--brand); box-shadow: 0 16px 40px rgba(249,115,22,0.16); }
.badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--brand); color: #fff; font-size: 12px; font-weight: 800; padding: 5px 14px; border-radius: 999px; letter-spacing: 0.3px; }
.price { font-size: 42px; font-weight: 800; margin: 10px 0 2px; }
.price span { font-size: 16px; color: var(--faint); font-weight: 600; }
.price-desc { color: var(--muted); font-size: 13.5px; min-height: 40px; margin: 4px 0 0; }
.price-list { list-style: none; padding: 0; margin: 20px 0; text-align: left; }
.price-list li { padding: 8px 0; border-bottom: 1px solid var(--line); color: var(--muted); font-size: 14.5px; }
.price-list li:before { content: "✓"; color: var(--brand); font-weight: 800; margin-right: 10px; }
.note { color: var(--faint); font-size: 13px; margin-top: 14px; }

@media (max-width: 860px) {
  .price-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
}

/* Legal pages */
.legal { max-width: 760px; margin: 0 auto; padding: 56px 24px 80px; }
.legal h1 { font-size: 34px; text-align: left; }
.legal h2 { font-size: 20px; margin-top: 32px; }
.legal p, .legal li { color: var(--muted); }
.legal .updated { color: var(--faint); font-size: 14px; }

/* Footer */
footer { background: var(--ink); color: #cbd5e1; padding: 46px 0; font-size: 14px; }
footer .cols { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 24px; }
footer a { color: #cbd5e1; }
footer a:hover { color: #fff; }
footer .brand { color: #fff; }
footer .brand .dot { background: var(--brand); }
footer .legal-links a { margin-right: 18px; font-weight: 600; }
footer .fine { margin-top: 28px; color: var(--faint); border-top: 1px solid #1e293b; padding-top: 20px; }

@media (max-width: 780px) {
  h1 { font-size: 34px; }
  .grid { grid-template-columns: 1fr; }
  .nav a.link { margin-left: 14px; }
}
