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-hover: #22263a;
  --border: #2e3348;
  --border-accent: #5b6abf;
  --text: #e8eaf0;
  --text-muted: #8b90a5;
  --accent: #6c7aed;
  --accent-soft: rgba(108, 122, 237, 0.12);
  --accent-glow: rgba(108, 122, 237, 0.35);
  --green: #3ecf8e;
  --radius: 12px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", 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: 64px 24px 80px;
}

/* Header */
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);
  background: var(--accent-soft);
  border: 1px solid rgba(108, 122, 237, 0.25);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 20px;
}

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

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

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

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

.tier:hover {
  border-color: #3d4460;
}

/* Emphasised middle tier */
.tier--pro {
  background: linear-gradient(165deg, #1e2240 0%, #1a1d27 60%);
  border-color: var(--border-accent);
  box-shadow:
    0 0 0 1px rgba(108, 122, 237, 0.15),
    0 8px 40px rgba(0, 0, 0, 0.35),
    0 0 60px var(--accent-glow);
  transform: scale(1.03);
  z-index: 1;
}

.tier--pro:hover {
  border-color: #7b8af5;
}

.tier--pro::before {
  content: "";
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  border-radius: 2px;
}

/* Tier name */
.tier__name {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}

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

/* Price */
.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.04em;
  color: #fff;
  line-height: 1;
}

.tier__price .period {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Positioning */
.tier__tagline {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}

/* Features */
.tier__features {
  list-style: none;
  flex: 1;
  margin-bottom: 32px;
}

.tier__features li {
  position: relative;
  padding: 7px 0 7px 28px;
  font-size: 0.9rem;
  color: var(--text);
}

.tier__features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--accent-soft);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%236c7aed' 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;
}

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

.tier__cta:hover {
  background: var(--surface-hover);
  border-color: #4a5168;
}

.tier__cta--primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  box-shadow: 0 2px 12px rgba(108, 122, 237, 0.4);
}

.tier__cta--primary:hover {
  background: #7b89f5;
  border-color: #7b89f5;
  box-shadow: 0 4px 20px rgba(108, 122, 237, 0.5);
}

/* Footer note */
.footnote {
  text-align: center;
  margin-top: 48px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footnote a {
  color: var(--accent);
  text-decoration: none;
}

.footnote a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 800px) {
  .tiers {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
    gap: 16px;
  }

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

  .page {
    padding: 48px 16px 64px;
  }
}
</style>
</head>
<body>
<div class="page">
  <header>
    <div class="eyebrow">Pricing</div>
    <h1>Ship faster. Pay simply.</h1>
    <p>Choose the plan that matches your workflow. Upgrade or downgrade any time.</p>
  </header>

  <div class="tiers">
    <!-- Hobby -->
    <div class="tier">
      <div class="tier__name">Hobby</div>
      <div class="tier__price">
        <span class="amount">$0</span>
        <span class="period">/ forever</span>
      </div>
      <p class="tier__tagline">For side projects and weekend experiments.</p>
      <ul class="tier__features">
        <li>1 project</li>
        <li>Community support</li>
        <li>1,000 API calls / mo</li>
        <li>Basic analytics</li>
        <li>Public deployments only</li>
      </ul>
      <a href="#" class="tier__cta">Get started</a>
    </div>

    <!-- Pro -->
    <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 independent builders shipping real products.</p>
      <ul class="tier__features">
        <li>Unlimited projects</li>
        <li>Priority email support</li>
        <li>100,000 API calls / mo</li>
        <li>Advanced analytics &amp; logs</li>
        <li>Custom domains</li>
        <li>Preview environments</li>
        <li>CI/CD integrations</li>
      </ul>
      <a href="#" class="tier__cta tier__cta--primary">Start free trial</a>
    </div>

    <!-- Team -->
    <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 squads that need shared context and control.</p>
      <ul class="tier__features">
        <li>Everything in Pro</li>
        <li>Shared workspaces</li>
        <li>SSO &amp; SAML</li>
        <li>Role-based access</li>
        <li>Audit logs</li>
        <li>Dedicated Slack channel</li>
        <li>99.9% uptime SLA</li>
      </ul>
      <a href="#" class="tier__cta">Contact sales</a>
    </div>
  </div>

  <p class="footnote">All plans include a 14-day money-back guarantee. <a href="#">Compare features →</a></p>
</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"
}