/* MakeLogo — light theme. Cosmetic polish pass comes later; this is clean + credible. */
:root {
  --bg: #ffffff;
  --bg-soft: #f7f7fb;
  --bg-tint: #f2f1ff;
  --ink: #16162a;
  --muted: #5c5c78;
  --border: #e7e7f0;
  --accent: #5b4fe0;
  --accent-ink: #4a3fd0;
  --accent-soft: #efedff;
  --ok: #1a9d6b;
  --radius: 14px;
  --maxw: 1080px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--accent-ink); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; }
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* header */
.site-header {
  position: sticky; top: 0; z-index: 10;
  background: rgba(255,255,255,0.85);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--border);
}
.site-header .container { display: flex; align-items: center; gap: 24px; height: 64px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; font-size: 20px; letter-spacing: -0.02em; color: var(--ink); }
.brand:hover { text-decoration: none; }
.brand .mark {
  width: 30px; height: 30px; border-radius: 8px;
  background: linear-gradient(135deg, var(--accent), #8b7bff);
  color: #fff; display: grid; place-items: center; font-weight: 800; font-size: 17px;
}
.brand .accent { color: var(--accent); }
.site-header nav { margin-left: auto; display: flex; align-items: center; gap: 22px; }
.site-header nav a { color: var(--muted); font-weight: 600; font-size: 15px; }
.site-header nav a:hover { color: var(--ink); text-decoration: none; }

/* buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 12px 20px; border-radius: 10px; font-weight: 700; font-size: 15px;
  border: 1px solid transparent; cursor: pointer; transition: transform .04s ease, background .15s ease;
  font-family: inherit;
}
.btn:hover { text-decoration: none; }
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-ink); color: #fff; }
.btn-google { background: #fff; color: var(--ink); border-color: var(--border); box-shadow: 0 1px 2px rgba(20,20,40,.05); }
.btn-google:hover { background: var(--bg-soft); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--border); }
.btn-lg { padding: 15px 26px; font-size: 16px; }
.gicon { width: 18px; height: 18px; display: block; }

/* hero */
.hero { padding: 84px 0 64px; text-align: center; }
.eyebrow {
  display: inline-block; font-size: 13px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--accent-ink); background: var(--accent-soft); padding: 6px 12px; border-radius: 999px; margin-bottom: 22px;
}
.hero h1 { font-size: clamp(34px, 6vw, 56px); line-height: 1.05; letter-spacing: -0.03em; margin: 0 auto 20px; max-width: 14ch; text-wrap: balance; }
.hero p.lead { font-size: clamp(17px, 2.4vw, 21px); color: var(--muted); max-width: 56ch; margin: 0 auto 32px; }
.hero .cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero .fineprint { margin-top: 18px; font-size: 14px; color: var(--muted); }

/* sections */
section { padding: 64px 0; }
.section-soft { background: var(--bg-soft); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
h2.section-title { font-size: clamp(26px, 4vw, 36px); letter-spacing: -0.02em; text-align: center; margin: 0 0 12px; text-wrap: balance; }
.section-sub { text-align: center; color: var(--muted); max-width: 52ch; margin: 0 auto 44px; }

.grid { display: grid; gap: 22px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 820px) { .grid-3 { grid-template-columns: 1fr; } }
.card {
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px; text-align: left;
}
.card .num { width: 34px; height: 34px; border-radius: 9px; background: var(--accent-soft); color: var(--accent-ink);
  display: grid; place-items: center; font-weight: 800; margin-bottom: 16px; }
.card h3 { margin: 0 0 8px; font-size: 19px; letter-spacing: -0.01em; }
.card p { margin: 0; color: var(--muted); font-size: 15.5px; }

/* pricing */
.pricing { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; max-width: 760px; margin: 0 auto; }
@media (max-width: 720px) { .pricing { grid-template-columns: 1fr; } }
.plan { border: 1px solid var(--border); border-radius: var(--radius); padding: 30px; background: var(--bg); }
.plan.featured { border-color: var(--accent); box-shadow: 0 8px 30px rgba(91,79,224,.12); }
.plan h3 { margin: 0 0 4px; font-size: 20px; }
.plan .price { font-size: 34px; font-weight: 800; letter-spacing: -0.02em; margin: 12px 0 4px; }
.plan .price small { font-size: 15px; font-weight: 600; color: var(--muted); }
.plan ul { list-style: none; padding: 0; margin: 18px 0 24px; }
.plan li { padding: 7px 0 7px 26px; position: relative; color: var(--muted); font-size: 15.5px; }
.plan li::before { content: "✓"; position: absolute; left: 0; color: var(--ok); font-weight: 800; }
.plan .btn { width: 100%; }

/* footer */
.site-footer { border-top: 1px solid var(--border); background: var(--bg-soft); padding: 40px 0; }
.site-footer .container { display: flex; flex-wrap: wrap; gap: 16px 28px; align-items: center; justify-content: space-between; }
.site-footer .links { display: flex; flex-wrap: wrap; gap: 18px; }
.site-footer a { color: var(--muted); font-size: 14.5px; font-weight: 600; }
.site-footer a:hover { color: var(--ink); text-decoration: none; }
.site-footer .copy { color: var(--muted); font-size: 14px; }

/* legal / content pages */
.doc { max-width: 760px; margin: 0 auto; padding: 56px 24px 72px; }
.doc h1 { font-size: clamp(28px, 5vw, 38px); letter-spacing: -0.02em; margin: 0 0 6px; }
.doc .updated { color: var(--muted); font-size: 14px; margin-bottom: 36px; }
.doc h2 { font-size: 21px; letter-spacing: -0.01em; margin: 34px 0 10px; }
.doc p, .doc li { color: #2c2c40; font-size: 16px; }
.doc ul { padding-left: 22px; }
.doc .todo { background: #fff7e6; border: 1px solid #ffe0a3; color: #8a5a00; padding: 3px 8px; border-radius: 6px; font-size: 14px; font-weight: 600; }
.back { display: inline-block; margin-bottom: 24px; color: var(--muted); font-weight: 600; font-size: 14px; }

/* app (gated) */
.app-shell { min-height: 70vh; display: grid; place-items: center; text-align: center; padding: 60px 24px; }
.app-shell .inner { max-width: 480px; }
.app-shell h1 { font-size: 30px; letter-spacing: -0.02em; margin: 0 0 12px; }
.app-shell p { color: var(--muted); margin: 0 0 24px; }
.avatar { width: 56px; height: 56px; border-radius: 50%; margin: 0 auto 18px; background: var(--accent-soft); color: var(--accent-ink);
  display: grid; place-items: center; font-weight: 800; font-size: 22px; overflow: hidden; }
.avatar img { width: 100%; height: 100%; object-fit: cover; }
.muted-note { font-size: 13.5px; color: var(--muted); margin-top: 28px; }
