/* One stylesheet for the marketing pages. They are plain HTML on purpose: a
   crawler — Google's or an AI assistant's — gets the whole page without
   running any JavaScript. */
:root {
  --bg: #ffffff;
  --fg: #0f172a;
  --muted: #64748b;
  --line: #e2e8f0;
  --card: #ffffff;
  --soft: #f8fafc;
  --brand: #10b981;
  --brand-dark: #059669;
}
@media (prefers-color-scheme: dark) {
  :root {
    --bg: #020617;
    --fg: #f1f5f9;
    --muted: #94a3b8;
    --line: #1e293b;
    --card: #0b1220;
    --soft: #0b1220;
  }
}
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
.wrap { max-width: 1080px; margin: 0 auto; padding: 0 20px; }
.skip { position: absolute; left: -9999px; }
.skip:focus { left: 16px; top: 12px; background: var(--brand); color: #fff; padding: 8px 14px; border-radius: 10px; z-index: 50; }

header.top {
  position: sticky; top: 0; z-index: 20;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.top .wrap { height: 64px; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.brand { display: flex; align-items: center; gap: 8px; font-weight: 800; }
.brand img { height: 28px; width: auto; }
.brand small { color: var(--brand); font-size: 10px; font-weight: 700; }
nav.top-nav { display: flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; }
nav.top-nav a { padding: 8px 10px; color: var(--muted); border-radius: 10px; white-space: nowrap; }
nav.top-nav a:hover { color: var(--brand); }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 20px; border-radius: 12px; font-weight: 700; font-size: 14px;
  border: 1px solid transparent; cursor: pointer;
}
.btn-primary { background: var(--brand); color: #fff; }
.btn-primary:hover { background: var(--brand-dark); }
.btn-ghost { border-color: var(--line); color: var(--fg); }
.btn-ghost:hover { border-color: var(--brand); }
nav.top-nav .btn { padding: 9px 16px; font-size: 13px; }

.hero { text-align: center; padding: 64px 0 40px; }
.pill {
  display: inline-flex; align-items: center; gap: 6px; padding: 5px 12px; border-radius: 999px;
  background: color-mix(in srgb, var(--brand) 12%, transparent);
  border: 1px solid color-mix(in srgb, var(--brand) 25%, transparent);
  color: var(--brand); font-size: 11px; font-weight: 800;
}
h1 { font-size: clamp(30px, 6vw, 52px); line-height: 1.1; font-weight: 800; margin: 18px 0 0; letter-spacing: -0.02em; }
h1 .accent { color: var(--brand); }
.lede { color: var(--muted); max-width: 640px; margin: 16px auto 0; font-size: clamp(15px, 2.2vw, 17px); }
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 28px; }
.fineprint { color: var(--muted); font-size: 12px; margin-top: 16px; }

section { padding: 40px 0; }
h2 { font-size: clamp(20px, 3.4vw, 28px); font-weight: 800; letter-spacing: -0.01em; margin: 0 0 6px; }
h3 { font-size: 15px; font-weight: 800; margin: 12px 0 6px; }
.section-lede { color: var(--muted); margin: 0 0 24px; font-size: 14px; }

.grid { display: grid; gap: 16px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .grid.two { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .grid.three { grid-template-columns: repeat(3, 1fr); } }
.card { border: 1px solid var(--line); background: var(--card); border-radius: 18px; padding: 22px; }
.card p { color: var(--muted); font-size: 13.5px; margin: 0; }
.icon { width: 38px; height: 38px; border-radius: 12px; display: flex; align-items: center; justify-content: center;
  background: color-mix(in srgb, var(--brand) 12%, transparent); color: var(--brand); }
.icon svg { width: 19px; height: 19px; }

.panel { border: 1px solid var(--line); border-radius: 24px; padding: 28px; background: var(--soft); }
ul.ticks { list-style: none; padding: 0; margin: 16px 0 0; display: grid; gap: 10px; }
@media (min-width: 640px) { ul.ticks.two { grid-template-columns: 1fr 1fr; } }
ul.ticks li { display: flex; gap: 9px; align-items: flex-start; font-size: 13.5px; color: var(--fg); }
ul.ticks li::before { content: "✓"; color: var(--brand); font-weight: 800; }

.price-grid { display: grid; gap: 18px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .price-grid { grid-template-columns: 1fr 1fr; } }
.plan { border: 1px solid var(--line); border-radius: 24px; padding: 28px; background: var(--card); position: relative; }
.plan.best { border-color: var(--brand); background: color-mix(in srgb, var(--brand) 6%, var(--card)); }
.tag { position: absolute; top: -12px; left: 24px; background: var(--brand); color: #fff;
  font-size: 11px; font-weight: 800; padding: 4px 10px; border-radius: 999px; }
.plan .name { font-weight: 800; font-size: 15px; }
.plan .tagline { color: var(--muted); font-size: 12px; }
.amount { font-size: 40px; font-weight: 800; letter-spacing: -0.02em; margin-top: 14px; display: block; }
.amount span { font-size: 13px; font-weight: 700; color: var(--muted); }
.plan .note { color: var(--muted); font-size: 12px; margin-top: 4px; }
.plan .btn { width: 100%; margin-top: 22px; }

.addon { display: flex; flex-wrap: wrap; gap: 18px; align-items: center; }
.addon .grow { flex: 1 1 240px; }
.addon .amount { margin: 0; font-size: 30px; }

details { border: 1px solid var(--line); border-radius: 14px; padding: 14px 18px; background: var(--card); }
details + details { margin-top: 10px; }
summary { font-weight: 700; font-size: 14px; cursor: pointer; }
details p { color: var(--muted); font-size: 13.5px; margin: 10px 0 0; }

.contact { border: 1px solid var(--line); border-radius: 24px; padding: 26px; background: var(--soft);
  display: flex; flex-wrap: wrap; gap: 16px; align-items: center; justify-content: space-between; }
.contact .who { font-size: 13.5px; color: var(--muted); }
.contact strong { color: var(--fg); }
.contact-links { display: flex; flex-wrap: wrap; gap: 10px; }

footer { border-top: 1px solid var(--line); margin-top: 48px; padding: 36px 0 44px; }
footer .cols { display: grid; gap: 22px; grid-template-columns: 1fr; font-size: 13px; }
@media (min-width: 720px) { footer .cols { grid-template-columns: 2fr 1fr 1fr; } }
footer .muted, footer a { color: var(--muted); }
footer a:hover { color: var(--brand); }
footer .head { font-weight: 800; color: var(--fg); margin-bottom: 8px; }
footer .stack { display: flex; flex-direction: column; gap: 7px; }

/* A 390px header has room for the logo, one link and the button — no more. */
@media (max-width: 640px) {
  .brand small { display: none; }
  nav.top-nav a.hide-sm { display: none; }
  .top .wrap { padding: 0 14px; }
}
