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>Forge — Simple pricing for focused teams</title>
  <style>
    :root {
      --ink: #17212b;
      --muted: #657383;
      --line: #dfe5eb;
      --surface: #ffffff;
      --soft: #f5f8fb;
      --accent: #2864d7;
      --accent-dark: #1c4da9;
      --accent-soft: #edf3ff;
      --success: #2c8761;
      --shadow: 0 18px 50px rgba(29, 48, 73, 0.11);
    }

    * {
      box-sizing: border-box;
    }

    html {
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
      color: var(--ink);
      background: var(--soft);
    }

    body {
      margin: 0;
      min-width: 320px;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    .page {
      min-height: 100vh;
      padding: 28px 24px 72px;
      background:
        radial-gradient(circle at 50% -10%, rgba(67, 124, 218, 0.12), transparent 34rem),
        var(--soft);
    }

    .site-header {
      width: min(1120px, 100%);
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 1.1rem;
      font-weight: 750;
      letter-spacing: -0.02em;
    }

    .brand-mark {
      width: 30px;
      height: 30px;
      display: grid;
      place-items: center;
      border-radius: 9px;
      color: #fff;
      background: var(--ink);
      font-size: 0.9rem;
      font-weight: 800;
    }

    .header-link {
      color: var(--muted);
      font-size: 0.9rem;
      font-weight: 600;
    }

    .header-link:hover {
      color: var(--accent);
    }

    .hero {
      max-width: 730px;
      margin: 86px auto 58px;
      text-align: center;
    }

    .eyebrow {
      margin: 0 0 17px;
      color: var(--accent);
      font-size: 0.76rem;
      font-weight: 800;
      letter-spacing: 0.13em;
      text-transform: uppercase;
    }

    h1 {
      margin: 0;
      font-size: clamp(2.35rem, 5vw, 4.35rem);
      line-height: 1.03;
      letter-spacing: -0.065em;
    }

    .hero-copy {
      max-width: 570px;
      margin: 22px auto 0;
      color: var(--muted);
      font-size: 1.08rem;
      line-height: 1.65;
    }

    .pricing-grid {
      width: min(1120px, 100%);
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      align-items: stretch;
      gap: 18px;
    }

    .plan {
      display: flex;
      flex-direction: column;
      min-height: 590px;
      padding: 31px;
      background: var(--surface);
      border: 1px solid var(--line);
      border-radius: 18px;
    }

    .plan.featured {
      position: relative;
      margin-top: -12px;
      margin-bottom: -12px;
      padding: 42px 31px 31px;
      border: 1.5px solid var(--accent);
      box-shadow: var(--shadow);
    }

    .popular-label {
      position: absolute;
      top: 15px;
      left: 31px;
      color: var(--accent);
      font-size: 0.7rem;
      font-weight: 800;
      letter-spacing: 0.1em;
      text-transform: uppercase;
    }

    .plan-name {
      margin: 0;
      font-size: 1.25rem;
      letter-spacing: -0.025em;
    }

    .plan-description {
      min-height: 48px;
      margin: 10px 0 25px;
      color: var(--muted);
      font-size: 0.94rem;
      line-height: 1.55;
    }

    .price {
      display: flex;
      align-items: baseline;
      gap: 6px;
      min-height: 58px;
      margin-bottom: 27px;
    }

    .price-amount {
      font-size: 3.05rem;
      font-weight: 760;
      letter-spacing: -0.07em;
      line-height: 1;
    }

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

    .features {
      display: grid;
      gap: 15px;
      margin: 0 0 30px;
      padding: 24px 0 0;
      border-top: 1px solid var(--line);
      list-style: none;
    }

    .features li {
      position: relative;
      padding-left: 27px;
      color: #40505f;
      font-size: 0.91rem;
      line-height: 1.4;
    }

    .features li::before {
      content: "✓";
      position: absolute;
      left: 0;
      top: 0;
      color: var(--success);
      font-size: 0.92rem;
      font-weight: 800;
    }

    .cta {
      width: 100%;
      margin-top: auto;
      padding: 13px 18px;
      border: 1px solid #c7d0da;
      border-radius: 9px;
      background: #fff;
      color: var(--ink);
      font: inherit;
      font-size: 0.91rem;
      font-weight: 700;
      text-align: center;
      transition: border-color 160ms ease, background 160ms ease, color 160ms ease, transform 160ms ease;
    }

    .cta:hover {
      border-color: var(--ink);
      transform: translateY(-1px);
    }

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

    .featured .cta:hover {
      border-color: var(--accent-dark);
      background: var(--accent-dark);
    }

    .fine-print {
      margin: 31px auto 0;
      color: var(--muted);
      font-size: 0.82rem;
      text-align: center;
    }

    @media (max-width: 800px) {
      .page {
        padding: 22px 18px 50px;
      }

      .hero {
        margin: 67px auto 42px;
      }

      .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
      }

      .plan,
      .plan.featured {
        min-height: auto;
        margin: 0;
        padding: 29px;
      }

      .plan.featured {
        padding-top: 43px;
      }
    }

    @media (max-width: 430px) {
      .site-header {
        align-items: flex-start;
      }

      .header-link {
        font-size: 0.82rem;
      }

      .hero {
        margin-top: 56px;
      }

      .plan,
      .plan.featured {
        padding-right: 23px;
        padding-left: 23px;
      }

      .popular-label {
        left: 23px;
      }
    }
  </style>
</head>
<body>
  <div class="page">
    <header class="site-header">
      <a class="brand" href="#" aria-label="Forge home">
        <span class="brand-mark" aria-hidden="true">F</span>
        <span>Forge</span>
      </a>
      <a class="header-link" href="#">Sign in</a>
    </header>

    <main>
      <section class="hero" aria-labelledby="page-title">
        <p class="eyebrow">Plans that scale with your work</p>
        <h1 id="page-title">Build better software, together.</h1>
        <p class="hero-copy">
          A calm, capable developer workspace for shipping from first commit to production.
          Start free and upgrade when your team is ready.
        </p>
      </section>

      <section class="pricing-grid" aria-label="Pricing plans">
        <article class="plan">
          <h2 class="plan-name">Hobby</h2>
          <p class="plan-description">The essentials for personal projects and experiments.</p>
          <div class="price">
            <span class="price-amount">$0</span>
            <span class="price-period">forever</span>
          </div>
          <ul class="features">
            <li>1 private project</li>
            <li>Unlimited public projects</li>
            <li>Basic code search</li>
            <li>Community support</li>
          </ul>
          <a class="cta" href="#">Start for free</a>
        </article>

        <article class="plan featured">
          <span class="popular-label">For growing builders</span>
          <h2 class="plan-name">Pro</h2>
          <p class="plan-description">More power and privacy for independent developers.</p>
          <div class="price">
            <span class="price-amount">$20</span>
            <span class="price-period">/ month</span>
          </div>
          <ul class="features">
            <li>Unlimited private projects</li>
            <li>Advanced code search</li>
            <li>Preview environments</li>
            <li>Priority support</li>
            <li>Usage insights and analytics</li>
          </ul>
          <a class="cta" href="#">Choose Pro</a>
        </article>

        <article class="plan">
          <h2 class="plan-name">Team</h2>
          <p class="plan-description">A shared foundation for productive engineering teams.</p>
          <div class="price">
            <span class="price-amount">$60</span>
            <span class="price-period">/ seat / month</span>
          </div>
          <ul class="features">
            <li>Everything in Pro</li>
            <li>Unlimited collaborators</li>
            <li>Role-based access controls</li>
            <li>Shared team workspaces</li>
            <li>Dedicated support</li>
          </ul>
          <a class="cta" href="#">Start a team</a>
        </article>
      </section>

      <p class="fine-print">All plans include secure cloud storage and automatic backups.</p>
    </main>
  </div>
</body>
</html>

request envelope — prompt redacted

{
  "model": "openai/gpt-5.6-luna",
  "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": "cb3bc47b-271f-4c9b-a222-cd70fff1d39b"
}
HTML page · pricing-page-saas · Benchmark Prompts