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>DevTool Pro - Pricing</title>
    <style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            min-height: 100vh;
            padding: 40px 20px;
            color: #333;
        }

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

        .header {
            text-align: center;
            margin-bottom: 60px;
        }

        .header h1 {
            font-size: 2.5em;
            margin-bottom: 10px;
            color: #1a202c;
        }

        .header p {
            font-size: 1.1em;
            color: #666;
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-bottom: 40px;
        }

        .pricing-card {
            background: white;
            border-radius: 12px;
            padding: 40px 30px;
            display: flex;
            flex-direction: column;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .pricing-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
        }

        .pricing-card.featured {
            transform: scale(1.05);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
            border: 2px solid #5b4eff;
        }

        .pricing-card.featured:hover {
            transform: scale(1.05) translateY(-5px);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
        }

        .tier-name {
            font-size: 1.5em;
            font-weight: 600;
            color: #1a202c;
            margin-bottom: 10px;
        }

        .tier-description {
            font-size: 0.9em;
            color: #999;
            margin-bottom: 25px;
            min-height: 40px;
            display: flex;
            align-items: center;
        }

        .pricing {
            margin-bottom: 30px;
        }

        .price {
            font-size: 2.5em;
            font-weight: 700;
            color: #1a202c;
            line-height: 1;
        }

        .price-currency {
            font-size: 0.6em;
            vertical-align: super;
        }

        .price-period {
            font-size: 0.5em;
            color: #999;
            display: block;
            margin-top: 5px;
        }

        .price-label {
            font-size: 0.9em;
            color: #666;
            margin-top: 8px;
        }

        .features {
            flex: 1;
            margin-bottom: 30px;
        }

        .feature-list {
            list-style: none;
        }

        .feature-list li {
            padding: 12px 0;
            border-bottom: 1px solid #f0f0f0;
            font-size: 0.95em;
            color: #555;
            display: flex;
            align-items: center;
        }

        .feature-list li:last-child {
            border-bottom: none;
        }

        .feature-list li:before {
            content: "✓";
            display: inline-block;
            width: 20px;
            height: 20px;
            background: #5b4eff;
            color: white;
            border-radius: 50%;
            text-align: center;
            line-height: 20px;
            font-size: 0.8em;
            margin-right: 12px;
            flex-shrink: 0;
        }

        .cta-button {
            padding: 14px 24px;
            border: none;
            border-radius: 8px;
            font-size: 0.95em;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: center;
            text-decoration: none;
            display: inline-block;
        }

        .cta-button.primary {
            background: #5b4eff;
            color: white;
        }

        .cta-button.primary:hover {
            background: #4c3dd9;
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(91, 78, 255, 0.3);
        }

        .cta-button.secondary {
            background: #f0f0f0;
            color: #1a202c;
            border: 2px solid #e0e0e0;
        }

        .cta-button.secondary:hover {
            background: #e8e8e8;
            border-color: #d0d0d0;
            transform: translateY(-2px);
        }

        .cta-button.tertiary {
            background: white;
            color: #5b4eff;
            border: 2px solid #5b4eff;
        }

        .cta-button.tertiary:hover {
            background: #f8f7ff;
            transform: translateY(-2px);
        }

        @media (max-width: 900px) {
            .pricing-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .pricing-card.featured {
                transform: scale(1);
            }

            .pricing-card.featured:hover {
                transform: translateY(-5px);
            }

            .header h1 {
                font-size: 2em;
            }

            .header {
                margin-bottom: 40px;
            }
        }

        @media (max-width: 600px) {
            body {
                padding: 20px 15px;
            }

            .header h1 {
                font-size: 1.8em;
            }

            .header p {
                font-size: 0.95em;
            }

            .pricing-card {
                padding: 30px 20px;
            }

            .price {
                font-size: 2em;
            }

            .tier-name {
                font-size: 1.3em;
            }
        }
    </style>
</head>
<body>
    <div class="container">
        <div class="header">
            <h1>Simple, Transparent Pricing</h1>
            <p>Choose the plan that fits your development needs</p>
        </div>

        <div class="pricing-grid">
            <!-- Hobby Tier -->
            <div class="pricing-card">
                <h2 class="tier-name">Hobby</h2>
                <p class="tier-description">Perfect for learning and side projects</p>
                
                <div class="pricing">
                    <div class="price">
                        <span class="price-currency">$</span>0<span class="price-period">/month</span>
                    </div>
                    <p class="price-label">Free forever</p>
                </div>

                <ul class="feature-list">
                    <li>Up to 5 projects</li>
                    <li>Community support</li>
                    <li>1 GB storage</li>
                    <li>Public deployments</li>
                    <li>Core features</li>
                </ul>

                <button class="cta-button secondary">Get Started</button>
            </div>

            <!-- Pro Tier (Featured) -->
            <div class="pricing-card featured">
                <h2 class="tier-name">Pro</h2>
                <p class="tier-description">For professional developers and small teams</p>
                
                <div class="pricing">
                    <div class="price">
                        <span class="price-currency">$</span>20<span class="price-period">/month</span>
                    </div>
                    <p class="price-label">Billed monthly</p>
                </div>

                <ul class="feature-list">
                    <li>Unlimited projects</li>
                    <li>Priority email support</li>
                    <li>100 GB storage</li>
                    <li>Private deployments</li>
                    <li>Advanced analytics</li>
                    <li>Custom domains</li>
                </ul>

                <button class="cta-button primary">Start Free Trial</button>
            </div>

            <!-- Team Tier -->
            <div class="pricing-card">
                <h2 class="tier-name">Team</h2>
                <p class="tier-description">For growing teams and enterprises</p>
                
                <div class="pricing">
                    <div class="price">
                        <span class="price-currency">$</span>60<span class="price-period">/seat/mo</span>
                    </div>
                    <p class="price-label">Billed annually, minimum 3 seats</p>
                </div>

                <ul class="feature-list">
                    <li>Unlimited everything</li>
                    <li>24/7 phone support</li>
                    <li>Unlimited storage</li>
                    <li>Team collaboration tools</li>
                    <li>Advanced security</li>
                    <li>SSO & SAML</li>
                    <li>Custom integrations</li>
                </ul>

                <button class="cta-button tertiary">Contact Sales</button>
            </div>
        </div>
    </div>
</body>
</html>
```

request envelope — prompt redacted

{
  "model": "anthropic/claude-haiku-4.5",
  "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": "189809da-2d08-4d08-bf2e-58338b3d0f1a"
}