pricing-page-saas
the brief, redacted

Build a complete three-tier pricing page as one self-contained HTML document. Tests layout, typographic hierarchy, and restraint under a familiar brief.

504 chars · 76 words · fingerprint a8a380793653

raw output — byte exact

```html
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>CodeCraft - Pricing</title>
    <style>
        :root {
            --primary-color: #4f46e5;
            --border-color: #e5e7eb;
            --text-light: #6b7280;
            --text-dark: #111827;
            --background: #ffffff;
            --accent-bg: #f9fafb;
            --shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
            --hover-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            --focus-ring: 0 0 0 3px rgba(79, 70, 229, 0.2);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            color: var(--text-dark);
            line-height: 1.6;
            background-color: var(--background);
            padding: 2rem;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
        }

        header {
            text-align: center;
            margin-bottom: 3rem;
        }

        h1 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .subtitle {
            font-size: 1.2rem;
            color: var(--text-light);
            max-width: 600px;
            margin: 0 auto;
        }

        .pricing-grid {
            display: flex;
            gap: 1.5rem;
            flex-wrap: wrap;
            justify-content: center;
            margin-top: 2rem;
        }

        .tier {
            flex: 1;
            min-width: 280px;
            max-width: 380px;
            border: 1px solid var(--border-color);
            border-radius: 0.5rem;
            padding: 1.5rem;
            transition: all 0.2s ease;
            display: flex;
            flex-direction: column;
        }

        .tier:hover {
            box-shadow: var(--hover-shadow);
            transform: translateY(-4px);
        }

        .tier.pro {
            border-color: var(--primary-color);
            position: relative;
            z-index: 1;
            transform: scale(1.02);
        }

        .tier.pro:hover {
            transform: scale(1.02) translateY(-4px);
        }

        .tier-header {
            margin-bottom: 1.5rem;
        }

        .tier-name {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .tier-price {
            font-size: 2.25rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .tier-price span {
            font-size: 1rem;
            font-weight: normal;
        }

        .tier-description {
            color: var(--text-light);
            margin-bottom: 1.5rem;
        }

        .features {
            list-style: none;
            margin-bottom: 1.5rem;
            flex-grow: 1;
        }

        .features li {
            padding: 0.5rem 0;
            border-bottom: 1px solid var(--border-color);
            color: var(--text-light);
        }

        .features li::before {
            content: "✓";
            color: var(--primary-color);
            margin-right: 0.5rem;
            font-weight: bold;
        }

        .cta-button {
            display: block;
            width: 100%;
            padding: 0.75rem;
            text-align: center;
            background-color: var(--primary-color);
            color: white;
            border: none;
            border-radius: 0.375rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .cta-button:hover {
            background-color: #4338ca;
        }

        .tier.pro .cta-button {
            background-color: white;
            color: var(--primary-color);
            border: 1px solid var(--primary-color);
        }

        .tier.pro .cta-button:hover {
            background-color: var(--accent-bg);
        }

        @media (max-width: 768px) {
            .pricing-grid {
                flex-direction: column;
            }

            .tier {
                max-width: 100%;
                transform: none;
            }

            .tier.pro {
                transform: none;
            }
        }
    </style>
</head>
<body>
    <div class="container">
        <header>
            <h1>Simple, transparent pricing</h1>
            <p class="subtitle">Choose the right plan for your development workflow. All plans include a 14-day free trial.</p>
        </header>

        <div class="pricing-grid">
            <!-- Hobby Tier -->
            <div class="tier">
                <div class="tier-header">
                    <h2 class="tier-name">Hobby</h2>
                    <div class="tier-price">$0 <span>/forever</span></div>
                    <p class="tier-description">Perfect for personal projects and learning.</p>
                </div>
                <ul class="features">
                    <li>Unlimited public repositories</li>
                    <li>Basic CI/CD pipelines</li>
                    <li>1GB build minutes per month</li>
                    <li>Community support</li>
                    <li>Up to 3 collaborators</li>
                </ul>
                <button class="cta-button">Get Started</button>
            </div>

            <!-- Pro Tier -->
            <div class="tier pro">
                <div class="tier-header">
                    <h2 class="tier-name">Pro</h2>
                    <div class="tier-price">$20 <span>/month</span></div>
                    <p class="tier-description">For professional developers and freelancers.</p>
                </div>
                <ul class="features">
                    <li>Everything in Hobby, plus:</li>
                    <li>Unlimited private repositories</li>
                    <li>10GB build minutes per month</li>
                    <li>Advanced CI/CD with caching</li>
                    <li>Priority support</li>
                    <li>Up to 10 collaborators</li>
                </ul>
                <button class="cta-button">Start Free Trial</button>
            </div>

            <!-- Team Tier -->
            <div class="tier">
                <div class="tier-header">
                    <h2 class="tier-name">Team</h2>
                    <div class="tier-price">$60 <span>/seat/month</span></div>
                    <p class="tier-description">For growing teams and organizations.</p>
                </div>
                <ul class="features">
                    <li>Everything in Pro, plus:</li>
                    <li>Team analytics and reporting</li>
                    <li>Unlimited build minutes</li>
                    <li>SSO and advanced permissions</li>
                    <li>Dedicated account manager</li>
                    <li>Custom integration support</li>
                </ul>
                <button class="cta-button">Contact Sales</button>
            </div>
        </div>
    </div>
</body>
</html>
```

request envelope — prompt redacted

{
  "model": "alibaba/qwen-3-235b",
  "system": "Respond with a single complete, self-contained HTML document and nothing else. No markdown fences, no explanation. Inline all CSS and JavaScript. Do not reference any external resource — no CDN scripts, no external stylesheets, no remote fonts or images. The document must render correctly offline.",
  "messages": [
    {
      "role": "user",
      "content": "«REDACTED — 81 words, 504 chars»"
    }
  ],
  "maxOutputTokens": 32000,
  "gatewayStringId": "dfb92529-6711-4845-b6bc-0818572a0de8"
}