:root {
  --ink: #0F172A;
  --body: #334155;
  --muted: #64748b;
  --bg: #ffffff;
  --soft: #f4f9f8;
  --line: #e2e8f0;
  --accent: #0cb8a4;
  --accent-2: #0aa392;
  --accent-ink: #0b8578;
  --accent-soft: #e6f7f4;
  --good: #0aa392;
  --font: "Plus Jakarta Sans", "Segoe UI", system-ui, -apple-system, sans-serif;
  --display: "Fraunces", Georgia, serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--body);
  background: var(--bg);
  font-family: var(--font);
  font-size: 16.5px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
.wrap { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }

/* ---------- nav ---------- */
.top {
  position: sticky; top: 0; z-index: 10;
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.bar { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 14px 0; }
.brand {
  display: inline-flex; align-items: center; gap: 11px;
  color: var(--ink); text-decoration: none;
  font-weight: 800; font-size: 1.02rem; letter-spacing: .16em;
}
.brand-mark { height: 26px; width: auto; display: block; }
.brand .dot { display: none; }
.brand-tag {
  font-size: .68rem; font-weight: 600; letter-spacing: .09em;
  text-transform: uppercase; color: var(--muted);
}
nav { display: flex; gap: 22px; align-items: center; flex-wrap: wrap; }
nav a { color: var(--muted); text-decoration: none; font-size: .93rem; font-weight: 500; }
nav a:hover { color: var(--ink); }
nav a.active { color: var(--ink); font-weight: 650; }
.nav-cta {
  background: var(--accent); color: #fff !important;
  padding: 8px 16px; border-radius: 8px; font-weight: 600 !important;
}
.nav-cta:hover { background: var(--accent-2); }

/* ---------- hero ---------- */
.hero {
  padding: 84px 0 72px;
  background:
    radial-gradient(1100px 420px at 78% -10%, var(--accent-soft), transparent 65%),
    linear-gradient(180deg, #fbfcfe 0%, var(--bg) 100%);
}
.eyebrow {
  display: inline-block;
  text-transform: uppercase; letter-spacing: .1em;
  font-size: .74rem; font-weight: 700; color: var(--accent-ink);
  background: var(--accent-soft);
  padding: 5px 12px; border-radius: 999px;
  margin: 0 0 18px;
}
h1, h2, h3 { color: var(--ink); line-height: 1.15; letter-spacing: -0.02em; margin: 0 0 16px; }
h1, h2 { font-family: var(--display); font-weight: 600; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.2rem, 4.6vw, 3.35rem); font-weight: 600; max-width: 21ch; }
h2 { font-size: clamp(1.5rem, 2.6vw, 2rem); font-weight: 600; }
h3 { font-size: 1.18rem; font-weight: 700; }
.lede { font-size: 1.16rem; max-width: 62ch; color: var(--body); }
.cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin: 28px 0 18px; }
.btn {
  display: inline-block;
  background: var(--accent); color: #fff;
  text-decoration: none;
  padding: 13px 22px; border-radius: 9px;
  font-weight: 650; font-size: .98rem;
  box-shadow: 0 1px 2px rgba(14,19,32,.12);
  transition: background .15s ease, transform .1s ease;
}
.btn:hover { background: var(--accent-2); transform: translateY(-1px); }
.btn.ghost {
  background: #fff; color: var(--ink);
  border: 1px solid var(--line); box-shadow: none;
}
.btn.ghost:hover { border-color: var(--accent); color: var(--accent-ink); background: #fff; }
.btn.subscribe { background: var(--ink); }
.btn.subscribe:hover { background: #1e2c49; }
.fine { color: var(--muted); font-size: .85rem; max-width: 78ch; }

/* ---------- sections ---------- */
section { padding: 64px 0; }
section.alt { background: var(--soft); border-block: 1px solid var(--line); }
.section-head { max-width: 66ch; margin-bottom: 34px; }
.section-head .kicker {
  text-transform: uppercase; letter-spacing: .1em; font-size: .74rem;
  font-weight: 700; color: var(--accent-ink); margin: 0 0 8px;
}

/* ---------- pillar / feature cards ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: 8px 0; }
.cards.two { grid-template-columns: repeat(2, 1fr); }
.card {
  display: flex; flex-direction: column;
  background: #fff;
  border: 1px solid var(--line); border-radius: 14px;
  padding: 26px 26px 24px;
  text-decoration: none; color: inherit;
  transition: border-color .15s ease, box-shadow .15s ease, transform .12s ease;
}
a.card:hover, .card.hover:hover {
  border-color: var(--accent);
  box-shadow: 0 10px 30px rgba(24,40,90,.08);
  transform: translateY(-2px);
}
.card .meta {
  font-size: .82rem; color: var(--accent-ink); font-weight: 700;
  text-transform: uppercase; letter-spacing: .06em; margin: 0 0 10px;
}
.card p { margin: 0 0 16px; flex: 1; }
.card .go { font-weight: 650; color: var(--accent-ink); font-size: .95rem; }

/* ---------- pricing ---------- */
.pricing { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; margin: 8px 0; }
.price-card {
  background: #fff; border: 1px solid var(--line); border-radius: 16px;
  padding: 30px; display: flex; flex-direction: column;
  box-shadow: 0 1px 3px rgba(14,19,32,.05);
}
.price-card.featured { border-color: var(--accent); box-shadow: 0 12px 34px rgba(24,40,90,.10); }
.price-card .plan { font-weight: 750; color: var(--ink); font-size: 1.15rem; margin: 0 0 4px; }
.price-card .for { color: var(--muted); font-size: .9rem; margin: 0 0 18px; }
.price { color: var(--ink); font-weight: 800; font-size: 2.3rem; letter-spacing: -0.03em; margin: 0; }
.price small { font-size: 1rem; font-weight: 600; color: var(--muted); letter-spacing: 0; }
.price-note { color: var(--muted); font-size: .85rem; margin: 4px 0 20px; }
ul.checks { list-style: none; padding: 0; margin: 0 0 24px; }
ul.checks li { padding-left: 26px; position: relative; margin: 0 0 10px; }
ul.checks li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  color: var(--good); font-weight: 800;
}
.price-card .cta-row { margin: auto 0 0; }

/* ---------- add-on table ---------- */
.addons { width: 100%; border-collapse: collapse; background: #fff; border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
.addons th, .addons td { text-align: left; padding: 14px 18px; border-bottom: 1px solid var(--line); font-size: .95rem; vertical-align: top; }
.addons th { background: var(--soft); color: var(--ink); font-size: .82rem; text-transform: uppercase; letter-spacing: .06em; }
.addons tr:last-child td { border-bottom: 0; }
.addons .sku { font-weight: 650; color: var(--ink); white-space: nowrap; }
.addons .p { font-weight: 700; color: var(--ink); white-space: nowrap; }
.addons a.buy { color: var(--accent-ink); font-weight: 650; text-decoration: none; white-space: nowrap; }
.addons a.buy:hover { text-decoration: underline; }
.table-scroll { overflow-x: auto; border-radius: 12px; }

/* ---------- trust strip ---------- */
.trust { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.trust div { border-left: 3px solid var(--accent); padding-left: 14px; }
.trust strong { display: block; color: var(--ink); font-size: 1.02rem; }
.trust span { color: var(--muted); font-size: .88rem; }

/* ---------- faq / article ---------- */
details { border-bottom: 1px solid var(--line); padding: 14px 0; }
summary { cursor: pointer; font-weight: 650; color: var(--ink); }
details p { margin: 10px 0 0; max-width: 72ch; }
.article h1 { max-width: 30ch; }
.article p, .article li { max-width: 72ch; }
.article h3 { margin: 30px 0 8px; }
ul.no { padding-left: 1.1rem; }
ul.no li { margin: 0 0 10px; max-width: 72ch; }

/* ---------- footer ---------- */
footer { padding: 44px 0 56px; color: var(--muted); font-size: .88rem; border-top: 1px solid var(--line); background: var(--soft); }
footer a { color: var(--accent-ink); text-decoration: none; }
footer a:hover { text-decoration: underline; }
footer .cols { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 32px; margin-bottom: 24px; }
footer h4 { color: var(--ink); font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; margin: 0 0 12px; }
footer ul { list-style: none; padding: 0; margin: 0; }
footer li { margin: 0 0 8px; }
footer .legal { border-top: 1px solid var(--line); padding-top: 20px; font-size: .8rem; }

@media (max-width: 920px) {
  .cards, .cards.two { grid-template-columns: 1fr; }
  .pricing { grid-template-columns: 1fr; }
  .trust { grid-template-columns: repeat(2, 1fr); }
  footer .cols { grid-template-columns: 1fr; }
  h1 { max-width: none; }
}
@media (max-width: 640px) {
  nav { gap: 14px; }
  nav a:not(.nav-cta) { font-size: .88rem; }
  .hero { padding: 56px 0 48px; }
  .trust { grid-template-columns: 1fr; }
}
