    :root { --primary: #6B21A8; --primary-dark: #4A0E72; --bg: #FAF7F2; --surface: #FFFFFF; --text: #0F0F12; --muted: #6B7280; --border: #E5E0D8; }
    * { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; background: var(--bg); color: var(--text); line-height: 1.7; }
    .container { max-width: 860px; margin: 0 auto; padding: 48px 24px; }
    .nav { margin-bottom: 24px; font-size: 0.875rem; }
    .nav a { margin-right: 16px; color: var(--primary); text-decoration: none; }
    .nav a:hover { text-decoration: underline; }
    h1 { font-size: 2.25rem; margin-bottom: 8px; letter-spacing: -0.02em; }
    .lede { color: var(--muted); margin-bottom: 32px; font-size: 1.05rem; }
    h2 { font-size: 1.35rem; margin-top: 48px; margin-bottom: 12px; color: var(--primary); letter-spacing: -0.01em; }
    h3 { font-size: 1.1rem; margin-top: 24px; margin-bottom: 6px; }
    p, li { margin-bottom: 12px; }
    ul { padding-left: 24px; }
    a { color: var(--primary); }

    .tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 24px 0 8px; }
    @media (max-width: 760px) { .tiers { grid-template-columns: 1fr; } }
    .tier { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 22px 22px 26px; display: flex; flex-direction: column; }
    .tier.featured { border-color: var(--primary); box-shadow: 0 6px 24px rgba(107, 33, 168, 0.10); position: relative; }
    .tier.featured::before { content: "Recommended"; position: absolute; top: -12px; left: 22px; background: var(--primary); color: #fff; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; padding: 4px 10px; border-radius: 999px; }
    .tier-name { font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); margin-bottom: 6px; }
    .tier-price { font-size: 2rem; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 2px; }
    .tier-price .per { font-size: 0.95rem; font-weight: 400; color: var(--muted); }
    .tier-marketed { color: var(--muted); font-size: 0.9rem; margin-bottom: 14px; font-style: italic; }
    .tier ul { padding-left: 18px; margin-top: 6px; }
    .tier ul li { font-size: 0.95rem; margin-bottom: 8px; }
    .tier ul li strong { color: var(--text); }

    .addons { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 0; margin: 16px 0 24px; overflow: hidden; }
    .addons table { width: 100%; border-collapse: collapse; font-size: 0.95rem; }
    .addons th, .addons td { padding: 12px 18px; text-align: left; border-bottom: 1px solid var(--border); }
    .addons th { background: var(--bg); font-weight: 600; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.04em; color: var(--muted); }
    .addons tr:last-child td { border-bottom: none; }
    .addons td.price { text-align: right; font-weight: 600; white-space: nowrap; }

    details { background: var(--surface); border: 1px solid var(--border); border-radius: 10px; padding: 14px 18px; margin-bottom: 8px; }
    details summary { font-weight: 600; cursor: pointer; list-style: none; }
    details summary::-webkit-details-marker { display: none; }
    details summary::after { content: "+"; float: right; color: var(--primary); font-weight: 700; font-size: 1.2rem; line-height: 1; }
    details[open] summary::after { content: "\2212"; }
    details[open] summary { margin-bottom: 10px; }
    details p { margin-bottom: 0; color: #2A2A30; font-size: 0.97rem; }

    .callout { background: var(--surface); border-left: 4px solid var(--primary); border-radius: 8px; padding: 16px 20px; margin: 24px 0; }
    .cta-row { background: var(--primary); color: #fff; border-radius: 14px; padding: 28px 30px; margin: 32px 0 0; }
    .cta-row h2 { color: #fff; margin-top: 0; }
    .cta-row p { color: rgba(255,255,255,0.92); margin-bottom: 10px; }
    .cta-row a { color: #fff; font-weight: 600; text-decoration: underline; }

    .footer { margin-top: 64px; padding-top: 24px; border-top: 1px solid var(--border); color: var(--muted); font-size: 0.875rem; }
    .footer a { color: var(--muted); margin-right: 16px; }
  

/* utility (extracted from inline style=) */
.mt-8 { margin-top: 8px; }
.mt-0 { margin-top: 0; }
.addons th.ta-right { text-align: right; } /* beats '.addons th { text-align:left }' specificity */
.enterprise-note { font-size: 0.92rem; color: var(--muted); }
.pricing-note { margin-top: 12px; font-size: 0.82rem; }
