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

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Pricing — Forge</title>
<style>
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --bg: #0f1117;
    --surface: #1a1d27;
    --surface-elevated: #22263a;
    --border: #2e3348;
    --border-emphasis: #4a5168;
    --text: #e8eaf0;
    --text-muted: #8b90a5;
    --text-subtle: #5c6178;
    --accent: #6c8cff;
    --accent-hover: #8aa4ff;
    --accent-soft: rgba(108, 140, 255, 0.12);
    --accent-border: rgba(108, 140, 255, 0.35);
    --check: #5bdb9c;
    --radius: 12px;
    --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  }

  html { font-size: 16px; }

  body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    min-height: 100vh;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
  }

  .page {
    max-width: 1100px;
    margin: 0 auto;
    padding: 72px 24px 96px;
  }

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

  header .eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
  }

  header h1 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.2;
    margin-bottom: 12px;
  }

  header p {
    font-size: 1.0625rem;
    color: var(--text-muted);
    max-width: 480px;
    margin: 0 auto;
  }

  .tiers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: stretch;
  }

  .tier {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: border-color 0.2s ease, transform 0.2s ease;
  }

  .tier:hover {
    border-color: var(--border-emphasis);
  }

  .tier--pro {
    background: var(--surface-elevated);
    border-color: var(--accent-border);
    box-shadow:
      0 0 0 1px var(--accent-soft),
      0 24px 48px -12px rgba(0, 0, 0, 0.45);
    transform: scale(1.03);
    z-index: 1;
  }

  .tier--pro:hover {
    border-color: var(--accent);
  }

  .tier-name {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 12px;
  }

  .tier--pro .tier-name {
    color: var(--accent);
  }

  .tier-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 8px;
  }

  .tier-price .amount {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1;
  }

  .tier-price .period {
    font-size: 0.9375rem;
    color: var(--text-muted);
  }

  .tier-tagline {
    font-size: 0.9375rem;
    color: var(--text-muted);
    margin-bottom: 28px;
    min-height: 1.55em;
  }

  .tier-features {
    list-style: none;
    flex: 1;
    margin-bottom: 32px;
  }

  .tier-features li {
    position: relative;
    padding: 8px 0 8px 28px;
    font-size: 0.9375rem;
    color: var(--text);
    border-top: 1px solid transparent;
  }

  .tier-features li + li {
    border-top-color: var(--border);
  }

  .tier-features li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background: var(--accent-soft);
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%235bdb9c' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 8.5l2.5 2.5L12 5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 16px;
  }

  .tier-cta {
    display: block;
    width: 100%;
    padding: 12px 20px;
    font-size: 0.9375rem;
    font-weight: 600;
    font-family: inherit;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
    border: 1px solid var(--border-emphasis);
    background: transparent;
    color: var(--text);
  }

  .tier-cta:hover {
    background: var(--surface-elevated);
    border-color: var(--text-muted);
  }

  .tier-cta--primary {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
  }

  .tier-cta--primary:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
    color: #fff;
  }

  footer.note {
    text-align: center;
    margin-top: 48px;
    font-size: 0.8125rem;
    color: var(--text-subtle);
  }

  @media (max-width: 800px) {
    .page { padding: 48px 16px 72px; }

    .tiers {
      grid-template-columns: 1fr;
      max-width: 400px;
      margin: 0 auto;
      gap: 16px;
    }

    .tier--pro {
      transform: none;
      order: -1;
    }

    .tier-tagline { min-height: 0; }
  }
</style>
</head>
<body>
  <div class="page">
    <header>
      <span class="eyebrow">Pricing</span>
      <h1>Ship faster with the right plan</h1>
      <p>Simple, transparent pricing for solo hackers and growing engineering teams.</p>
    </header>

    <div class="tiers">
      <div class="tier">
        <div class="tier-name">Hobby</div>
        <div class="tier-price">
          <span class="amount">$0</span>
          <span class="period">/mo</span>
        </div>
        <p class="tier-tagline">For side projects and weekend experiments.</p>
        <ul class="tier-features">
          <li>Unlimited public repos</li>
          <li>1 concurrent build</li>
          <li>Community support</li>
          <li>Basic CI pipelines</li>
          <li>500 build minutes / mo</li>
        </ul>
        <a href="#" class="tier-cta">Get started</a>
      </div>

      <div class="tier tier--pro">
        <div class="tier-name">Pro</div>
        <div class="tier-price">
          <span class="amount">$20</span>
          <span class="period">/mo</span>
        </div>
        <p class="tier-tagline">For professional developers who ship daily.</p>
        <ul class="tier-features">
          <li>Everything in Hobby</li>
          <li>Unlimited private repos</li>
          <li>5 concurrent builds</li>
          <li>Priority email support</li>
          <li>Advanced caching &amp; matrices</li>
          <li>10,000 build minutes / mo</li>
          <li>Deploy previews</li>
        </ul>
        <a href="#" class="tier-cta tier-cta--primary">Start free trial</a>
      </div>

      <div class="tier">
        <div class="tier-name">Team</div>
        <div class="tier-price">
          <span class="amount">$60</span>
          <span class="period">/seat/mo</span>
        </div>
        <p class="tier-tagline">For teams that need control, audit, and scale.</p>
        <ul class="tier-features">
          <li>Everything in Pro</li>
          <li>Shared team workspaces</li>
          <li>SSO &amp; SAML</li>
          <li>Role-based access control</li>
          <li>Audit logs &amp; compliance exports</li>
          <li>Unlimited build minutes</li>
          <li>Dedicated success manager</li>
        </ul>
        <a href="#" class="tier-cta">Contact sales</a>
      </div>
    </div>

    <footer class="note">
      All plans include a 14-day Pro trial. No credit card required.
    </footer>
  </div>
</body>
</html>

request envelope — prompt redacted

{
  "model": "xai/grok-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": "79967a98-155d-437c-bc43-1a033488fd6d"
}