{
  "openapi": "3.1.0",
  "info": {
    "title": "SiteQuest Marketing Site",
    "description": "Public-facing marketing website for SiteQuest overlay browser. Static SPA — no REST API is exposed.",
    "contact": {
      "name": "SiteQuest Support",
      "email": "support@sitequest.qzz.io"
    },
    "version": "1.0.0"
  },
  "servers": [
    {
      "url": "https://sitequest.qzz.io",
      "description": "Production"
    }
  ],
  "paths": {
    "/": {
      "get": {
        "summary": "Homepage",
        "description": "Marketing landing page with product information, pricing, and call-to-action for the SiteQuest overlay browser.",
        "operationId": "getHomepage"
      }
    },
    "/pricing": {
      "get": {
        "summary": "Pricing page",
        "description": "Pricing tiers: Free, Plus Lite (earned), Pro subscription.",
        "operationId": "getPricing"
      }
    },
    "/about": {
      "get": {
        "summary": "About page",
        "description": "About SiteQuest and the team.",
        "operationId": "getAbout"
      }
    },
    "/contact": {
      "get": {
        "summary": "Contact page",
        "description": "Contact form and support information.",
        "operationId": "getContact"
      }
    },
    "/blog": {
      "get": {
        "summary": "Blog index",
        "description": "Product updates, tips, and announcements.",
        "operationId": "getBlogIndex"
      }
    },
    "/docs/{path}": {
      "get": {
        "summary": "Documentation pages",
        "description": "Markdown documentation served as a static SPA under /docs/*.",
        "parameters": [
          {
            "name": "path",
            "in": "path",
            "required": true,
            "schema": { "type": "string" }
          }
        ],
        "operationId": "getDocPage"
      }
    }
  }
}
