:root {
  --bg: #f7f8fb; --card: #ffffff; --ink: #1a1c23; --muted: #6b7280;
  --line: #e5e7eb; --brand: #2563eb; --brand2: #10b981; --brand-ink: #ffffff;
  --ok: #059669; --warn: #b45309; --danger: #dc2626; --radius: 12px;
}
* { box-sizing: border-box; }
body {
  margin: 0; background: var(--bg); color: var(--ink);
  font: 15px/1.55 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; }
.nav {
  display: flex; align-items: center; gap: 18px; padding: 14px 24px;
  background: var(--card); border-bottom: 1px solid var(--line);
}
.nav .brand { font-weight: 700; font-size: 18px; color: var(--ink); display: inline-flex; align-items: center; }
.nav .brand:hover { text-decoration: none; }
.brand-icon { width: 26px; height: 26px; margin-right: 9px; border-radius: 7px; }
.brand-daily { color: var(--brand2); }
.nav .spacer { flex: 1; }
.wrap { max-width: 920px; margin: 32px auto; padding: 0 20px; }
.wrap.narrow { max-width: 480px; }
.card {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 24px; margin-bottom: 20px;
}
h1 { font-size: 26px; margin: 0 0 6px; }
h2 { font-size: 19px; margin: 0 0 14px; }
.muted { color: var(--muted); }
.pill { display: inline-block; padding: 3px 10px; border-radius: 999px;
  font-size: 12px; font-weight: 600; }
.pill.ok { background: #ecfdf5; color: var(--ok); }
.pill.warn { background: #fffbeb; color: var(--warn); }
label { display: block; font-weight: 600; margin: 16px 0 4px; }
label .help { display: block; font-weight: 400; color: var(--muted); font-size: 13px; }
input[type=text], input[type=email], input[type=password], textarea, select {
  width: 100%; padding: 10px 12px; border: 1px solid var(--line);
  border-radius: 8px; font: inherit; background: #fff;
}
textarea { min-height: 70px; resize: vertical; }
.checks { display: flex; flex-wrap: wrap; gap: 8px 16px; margin-top: 6px; }
.checks label { display: flex; align-items: center; gap: 6px; font-weight: 400; margin: 0; }
.btn {
  display: inline-block; background: var(--brand); color: var(--brand-ink);
  border: none; padding: 11px 18px; border-radius: 8px; font: inherit;
  font-weight: 600; cursor: pointer;
}
.btn:hover { filter: brightness(1.07); text-decoration: none; }
.btn.secondary { background: #fff; color: var(--ink); border: 1px solid var(--line); }
.btn.small { padding: 6px 12px; font-size: 13px; }
.error { background: #fef2f2; color: var(--danger); border: 1px solid #fecaca;
  padding: 10px 14px; border-radius: 8px; margin: 12px 0; }
table { width: 100%; border-collapse: collapse; }
th, td { text-align: left; padding: 9px 10px; border-bottom: 1px solid var(--line); font-size: 14px; }
th { color: var(--muted); font-weight: 600; }
.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 14px; }
.plan { border: 1px solid var(--line); border-radius: var(--radius); padding: 18px; text-align: center; }
.plan .price { font-size: 30px; font-weight: 700; margin: 6px 0; }
.plan .deliver { color: var(--ok); font-weight: 600; }
.stat { display: flex; gap: 26px; flex-wrap: wrap; }
.stat .n { font-size: 24px; font-weight: 700; }
.hero { text-align: center; padding: 40px 0; }
.hero h1 { font-size: 34px; }

/* ---- Landing page ---- */
.section { padding: 64px 20px; }
.section .inner { max-width: 1040px; margin: 0 auto; }
.section.tint { background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.lp-hero {
  background: linear-gradient(160deg, #eff6ff 0%, #ecfdf5 55%, #f7f8fb 100%);
  padding: 72px 20px 60px; text-align: center;
}
.lp-hero h1 { font-size: 44px; line-height: 1.1; max-width: 820px; margin: 0 auto 18px; letter-spacing: -0.5px; }
.lp-hero p.sub { font-size: 19px; color: #4b5563; max-width: 640px; margin: 0 auto 12px; }
.lp-hero .promo { color: var(--brand); font-weight: 700; font-size: 18px; margin: 18px 0 26px; }
.cta-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn.lg { padding: 14px 26px; font-size: 16px; }
.eyebrow { text-transform: uppercase; letter-spacing: 2px; font-size: 12px; font-weight: 700; color: var(--brand); }
.section h2.big { font-size: 30px; text-align: center; margin: 8px 0 8px; }
.section p.lead { text-align: center; color: var(--muted); max-width: 620px; margin: 0 auto 40px; font-size: 17px; }
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.step { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; }
.step .num { width: 34px; height: 34px; border-radius: 50%; background: var(--brand); color: #fff; font-weight: 700; display: flex; align-items: center; justify-content: center; margin-bottom: 12px; }
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; }
.feature { padding: 20px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--card); }
.feature .ic { font-size: 24px; }
.feature h3 { margin: 8px 0 6px; font-size: 17px; }
.feature p { margin: 0; color: var(--muted); font-size: 14px; }
/* Pricing */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; align-items: stretch; }
.price-card { background: var(--card); border: 1px solid var(--line); border-radius: 16px; padding: 28px; display: flex; flex-direction: column; position: relative; }
.price-card.featured { border: 2px solid var(--brand); box-shadow: 0 12px 30px rgba(79,70,229,0.12); }
.price-card .badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--brand); color: #fff; font-size: 12px; font-weight: 700; padding: 4px 12px; border-radius: 999px; white-space: nowrap; }
.price-card .tier { font-size: 18px; font-weight: 700; }
.price-card .amt { font-size: 40px; font-weight: 800; margin: 8px 0 2px; }
.price-card .amt span { font-size: 15px; font-weight: 500; color: var(--muted); }
.price-card .deliver { color: var(--ok); font-weight: 700; margin: 10px 0; }
.price-card ul { list-style: none; padding: 0; margin: 14px 0 22px; text-align: left; }
.price-card li { padding: 6px 0 6px 26px; position: relative; font-size: 14px; }
.price-card li:before { content: "✓"; position: absolute; left: 0; color: var(--ok); font-weight: 700; }
.price-card .btn { margin-top: auto; text-align: center; }
.footer { background: #10121a; color: #9aa1ad; padding: 40px 20px; text-align: center; font-size: 14px; }
.footer a { color: #c7cbd3; }
@media (max-width: 600px) { .lp-hero h1 { font-size: 32px; } .section { padding: 44px 16px; } }
