:root {
      --bg: #f8f7f3; --surface: #ffffff; --surface-2: #f0eee8;
      --text: #1b1a17; --muted: #5c5950; --border: #dedad0;
      --accent: #1d5c4b; --accent-hover: #164a3c; --accent-ink: #ffffff; --accent-soft: #e2efe9;
      --focus: #2563eb; --code-bg: #eeebe3;
      --shadow: 0 1px 2px rgba(27,26,23,.06), 0 8px 24px rgba(27,26,23,.05);
      --radius: 12px;
      --font: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
      --mono: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
      color-scheme: light;
    }
    @media (prefers-color-scheme: dark) {
      :root:not([data-theme="light"]) {
        --bg: #131311; --surface: #1b1a18; --surface-2: #23221f;
        --text: #ecebe6; --muted: #a8a59b; --border: #34322c;
        --accent: #7fc9ae; --accent-hover: #9ad8c1; --accent-ink: #0c1f19; --accent-soft: #1b2e27;
        --focus: #8ab4ff; --code-bg: #2a2925; --shadow: 0 1px 2px rgba(0,0,0,.3);
        color-scheme: dark;
      }
    }
    :root[data-theme="dark"] {
      --bg: #131311; --surface: #1b1a18; --surface-2: #23221f;
      --text: #ecebe6; --muted: #a8a59b; --border: #34322c;
      --accent: #7fc9ae; --accent-hover: #9ad8c1; --accent-ink: #0c1f19; --accent-soft: #1b2e27;
      --focus: #8ab4ff; --code-bg: #2a2925; --shadow: 0 1px 2px rgba(0,0,0,.3);
      color-scheme: dark;
    }
    *, *::before, *::after { box-sizing: border-box; }
    html { -webkit-text-size-adjust: 100%; }
    body { margin: 0; background: var(--bg); color: var(--text); font: 16px/1.6 var(--font); }
    a { color: var(--accent); }
    a:hover { color: var(--accent-hover); }
    :focus-visible { outline: 3px solid var(--focus); outline-offset: 2px; border-radius: 4px; }
    .skip-link { position: absolute; left: -9999px; }
    .skip-link:focus { left: 16px; top: 8px; background: var(--surface); padding: 8px 12px; z-index: 10; }
    .wrap { max-width: 960px; margin: 0 auto; padding: 0 16px; }
    .site-header { border-bottom: 1px solid var(--border); background: var(--surface); }
    .site-header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 12px; min-height: 60px; flex-wrap: wrap; }
    .brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; color: var(--text); text-decoration: none; }
    .brand svg { width: 28px; height: 28px; }
    .nav { display: flex; gap: 14px; flex-wrap: wrap; font-size: 15px; }
    .nav a { color: var(--muted); text-decoration: none; }
    .nav a:hover { color: var(--text); }
    section { padding: 40px 0; }
    section + section { border-top: 1px solid var(--border); }
    .eyebrow { color: var(--accent); font-weight: 600; font-size: 14px; margin: 0 0 8px; letter-spacing: .02em; }
    h1 { font-size: clamp(28px, 6vw, 42px); line-height: 1.15; margin: 0 0 14px; }
    h2 { font-size: clamp(22px, 4.5vw, 28px); line-height: 1.25; margin: 0 0 16px; }
    h3 { font-size: 18px; margin: 0 0 8px; }
    .lede { font-size: 18px; color: var(--muted); max-width: 680px; margin: 0 0 22px; }
    .btn { display: inline-block; background: var(--accent); color: var(--accent-ink); padding: 12px 18px; border-radius: 10px; font-weight: 600; text-decoration: none; }
    .btn:hover { background: var(--accent-hover); color: var(--accent-ink); }
    .btn.secondary { background: transparent; color: var(--accent); border: 1.5px solid var(--accent); }
    .btn.secondary:hover { background: var(--accent-soft); color: var(--accent); }
    .actions { display: flex; gap: 10px; flex-wrap: wrap; }
    .promise { display: flex; flex-wrap: wrap; gap: 8px 18px; margin: 20px 0 0; padding: 0; list-style: none; color: var(--muted); font-size: 15px; }
    .promise li::before { content: "✓ "; color: var(--accent); font-weight: 700; }
    .grid { display: grid; gap: 14px; grid-template-columns: 1fr; }
    @media (min-width: 700px) { .grid.two { grid-template-columns: 1fr 1fr; } .grid.three { grid-template-columns: repeat(3, 1fr); } }
    .card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 18px; box-shadow: var(--shadow); }
    .card p { margin: 0 0 8px; }
    .card p:last-child { margin-bottom: 0; }
    .muted { color: var(--muted); }
    .small { font-size: 14px; }
    pre { background: var(--code-bg); border-radius: 8px; padding: 12px; overflow-x: auto; font: 13px/1.5 var(--mono); white-space: pre-wrap; word-break: break-word; margin: 8px 0 0; }
    .tabs { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 12px; }
    .tabs button { font: inherit; font-size: 14px; border: 1px solid var(--border); background: var(--surface); color: var(--text); padding: 7px 12px; border-radius: 999px; cursor: pointer; }
    .tabs button[aria-selected="true"] { background: var(--accent); color: var(--accent-ink); border-color: var(--accent); }
    .tier { display: flex; flex-direction: column; }
    .tier .price { font-size: 30px; font-weight: 700; margin: 4px 0 2px; }
    .tier ul { padding-left: 20px; margin: 10px 0 16px; }
    .tier li { margin-bottom: 4px; }
    .tier .btn { margin-top: auto; text-align: center; }
    .tier.featured { border: 2px solid var(--accent); }
    .badge { display: inline-block; background: var(--accent-soft); color: var(--accent); font-size: 13px; font-weight: 600; padding: 2px 10px; border-radius: 999px; }
    ol.steps { list-style: none; counter-reset: s; padding: 0; margin: 0; display: grid; gap: 12px; }
    @media (min-width: 700px) { ol.steps { grid-template-columns: repeat(4, 1fr); } }
    ol.steps li { counter-increment: s; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 16px; }
    ol.steps li::before { content: counter(s); display: inline-grid; place-items: center; width: 28px; height: 28px; border-radius: 50%; background: var(--accent); color: var(--accent-ink); font-weight: 700; margin-bottom: 8px; }
    .not-included { background: var(--surface-2); border-radius: var(--radius); padding: 16px 18px; margin-top: 16px; }
    .not-included ul { margin: 6px 0 0; padding-left: 20px; }
    details { background: var(--surface); border: 1px solid var(--border); border-radius: 10px; padding: 12px 16px; margin-bottom: 8px; }
    summary { cursor: pointer; font-weight: 600; }
    details p { margin: 10px 0 0; color: var(--muted); }
    .cta { background: var(--accent-soft); border-radius: var(--radius); padding: 22px 18px; }
    footer { border-top: 1px solid var(--border); padding: 24px 0 40px; color: var(--muted); font-size: 14px; }
    footer p { margin: 4px 0; }
  
.mt12{margin-top:12px}
.mt10{margin-top:10px}
.caption-note{text-align:left;caption-side:bottom;padding-top:6px}
