/* ForgAI Corporate — Jobs/Musk simplicity */
:root {
  --black: #000000;
  --white: #ffffff;
  --gray-50: #fafafa;
  --gray-100: #f5f5f5;
  --gray-200: #e5e5e5;
  --gray-400: #a3a3a3;
  --gray-600: #525252;
  --gray-900: #171717;
  --accent: #0066ff;
  --font-display: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --font-serif: 'Iowan Old Style', 'New York', Georgia, 'Times New Roman', serif;
  --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
  --max-w: 1120px;
  --beta-banner-h: 44px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-display);
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.5;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ── Beta countdown banner ── */
.beta-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 110;
  height: var(--beta-banner-h);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  padding: 0 16px;
  background: linear-gradient(90deg, #0a0a0a 0%, #1a1a2e 50%, #0a0a0a 100%);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 13px;
}

.beta-banner-pill {
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 11px;
  color: #fbbf24;
}

.beta-banner-countdown {
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.beta-banner-cta {
  font-weight: 600;
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.beta-banner-cta:hover {
  opacity: 0.85;
}

.beta-banner--closed {
  background: #3f1d1d;
}

.beta-banner--closed .beta-banner-pill {
  color: #fca5a5;
}

.has-beta-banner .nav {
  top: var(--beta-banner-h);
}

.has-beta-banner .hero {
  padding-top: calc(120px + var(--beta-banner-h));
}

.has-beta-banner .page-simple {
  padding-top: calc(120px + var(--beta-banner-h));
}

.has-beta-banner .nav.scrolled,
.has-beta-banner .nav--solid {
  top: var(--beta-banner-h);
}

/* ── Nav ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(20px, 4vw, 48px);
  height: 52px;
  transition: background 0.4s var(--ease), backdrop-filter 0.4s;
}

.nav.scrolled {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--gray-200);
}

.nav--dark { color: var(--white); }
.nav--dark.scrolled { color: var(--gray-900); }

.logo {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.logo span { font-weight: 400; opacity: 0.7; }

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 32px);
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  opacity: 0.85;
  transition: opacity 0.2s;
}

.nav-links a:hover { opacity: 1; }

.nav-cta {
  font-size: 14px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 980px;
  background: var(--white);
  color: var(--black);
  transition: transform 0.2s, opacity 0.2s;
}

.nav--dark .nav-cta {
  background: var(--white);
  color: var(--black);
}

.nav.scrolled .nav-cta {
  background: var(--black);
  color: var(--white);
}

.nav-cta:hover { transform: scale(1.03); }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 24px;
  height: 18px;
  position: relative;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 100%;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.3s;
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: '';
  position: absolute;
  left: 0;
}

.menu-toggle span::before { top: 0; }
.menu-toggle span::after { bottom: 0; }

/* ── Hero ── */
.hero {
  min-height: 100vh;
  min-height: 100dvh;
  background: var(--black);
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 120px clamp(24px, 5vw, 48px) 80px;
  position: relative;
}

.hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 102, 255, 0.15) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  pointer-events: none;
}

.hero-eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.5;
  margin-bottom: 24px;
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(40px, 8vw, 88px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.03em;
  max-width: 14ch;
  margin-bottom: 28px;
}

.hero-sub {
  font-size: clamp(17px, 2.5vw, 22px);
  font-weight: 400;
  opacity: 0.65;
  max-width: 48ch;
  line-height: 1.5;
  margin-bottom: 48px;
}

.hero-emphasis {
  font-size: clamp(18px, 2.8vw, 24px);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--white);
  max-width: 36ch;
  line-height: 1.35;
  margin: -12px auto 20px;
  padding: 0 12px;
}

.hero-emphasis::after {
  content: '';
  display: block;
  width: 48px;
  height: 2px;
  background: var(--accent);
  margin: 16px auto 0;
  border-radius: 1px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 980px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.2s var(--ease), background 0.2s;
}

.btn:hover { transform: scale(1.03); }

.btn-primary {
  background: var(--white);
  color: var(--black);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  opacity: 0.4;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.7; }
}

/* ── Sections ── */
.section {
  padding: clamp(80px, 12vw, 140px) clamp(24px, 5vw, 48px);
}

.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.section-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 16px;
}

.section h2 {
  font-family: var(--font-serif);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.section-lead {
  font-size: clamp(17px, 2vw, 20px);
  color: var(--gray-600);
  max-width: 60ch;
  line-height: 1.6;
  margin-bottom: 48px;
}

.section--gray { background: var(--gray-50); }
.section--dark {
  background: var(--black);
  color: var(--white);
}

.section--dark .section-label { color: rgba(255,255,255,0.4); }
.section--dark .section-lead { color: rgba(255,255,255,0.6); }

/* ── Any outcome banner ── */
.universe-banner {
  padding: clamp(64px, 10vw, 96px) clamp(24px, 5vw, 48px);
  background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
  border-bottom: 1px solid var(--gray-200);
  text-align: center;
}

.universe-kicker {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.universe-banner h2 {
  font-family: var(--font-serif);
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.universe-banner h2 em {
  font-style: normal;
  color: var(--black);
  background: linear-gradient(transparent 62%, rgba(0, 102, 255, 0.18) 62%);
  padding: 0 4px;
}

.universe-lead {
  font-size: clamp(17px, 2vw, 20px);
  color: var(--gray-600);
  line-height: 1.65;
  max-width: 62ch;
  margin: 0 auto 48px;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  text-align: left;
  max-width: var(--max-w);
  margin: 0 auto;
}

.audience-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 20px;
  padding: 32px 28px;
}

.audience-card--accent {
  border-color: var(--black);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.audience-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 12px;
}

.audience-card h3 {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.audience-card > p {
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 20px;
}

.audience-examples {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.audience-examples li {
  font-size: 14px;
  color: var(--gray-600);
  padding-left: 18px;
  position: relative;
}

.audience-examples li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.universe-foot {
  margin-top: 40px;
  font-size: 17px;
  font-weight: 600;
  color: var(--gray-900);
}

.universe-foot a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ── Model license ── */
.section--license {
  background: var(--black);
  color: var(--white);
}

.section--license .section-label { color: rgba(255, 255, 255, 0.45); }
.section--license .section-lead { color: rgba(255, 255, 255, 0.65); }

.license-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.license-card {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 32px 28px;
  background: rgba(255, 255, 255, 0.03);
}

.license-card--featured {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.06);
}

.license-for {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 12px;
}

.license-card h3 {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.license-price {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  color: var(--white);
}

.license-price strong {
  font-size: 36px;
}

.license-price span {
  font-size: 16px;
  opacity: 0.55;
  font-family: var(--font-display);
}

.license-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.license-features li {
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
  padding-left: 22px;
  position: relative;
}

.license-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.license-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.btn--dark {
  background: var(--white);
  color: var(--black);
}

.btn--outline-dark {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.btn--outline-dark:hover {
  background: rgba(255, 255, 255, 0.08);
}

/* ── Three steps ── */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 4vw, 48px);
  margin-top: 64px;
}

.step-num {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 12px;
}

.step h3 {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.step p {
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ── Why ForgAI / FAQ ── */
.compare-callout {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: stretch;
  margin-bottom: 40px;
}

.compare-col {
  padding: 28px 24px;
  border-radius: 16px;
  border: 1px solid var(--gray-200);
  background: var(--white);
}

.compare-col--accent {
  border-color: var(--black);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.compare-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 8px;
}

.compare-stat {
  font-family: var(--font-serif);
  font-size: 28px;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.compare-detail {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.6;
}

.compare-divider {
  display: flex;
  align-items: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-400);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  overflow: hidden;
  background: var(--white);
  margin-bottom: 32px;
}

.faq-item {
  border-bottom: 1px solid var(--gray-200);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item summary {
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  font-size: 20px;
  font-weight: 400;
  color: var(--gray-400);
  flex-shrink: 0;
  transition: transform 0.2s;
}

.faq-item[open] summary::after {
  content: '−';
}

.faq-item summary:hover {
  background: var(--gray-50);
}

.faq-item p {
  padding: 0 24px 20px;
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.65;
  max-width: 72ch;
}

.faq-item p strong {
  color: var(--gray-900);
  font-weight: 600;
}

.compare-proof-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

.compare-proof-note {
  font-size: 14px;
  color: var(--gray-400);
}

.section--dark .step p { color: rgba(255,255,255,0.55); }

/* ── Stats ── */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 64px;
  padding-top: 64px;
  border-top: 1px solid var(--gray-200);
}

.stat-value {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  color: var(--gray-600);
}

/* ── Proof ── */
.proof-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.proof-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 24px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}

.proof-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.proof-card h4 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 8px;
}

.proof-card p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.5;
  margin-bottom: 16px;
}

.proof-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 980px;
  background: var(--gray-100);
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.proof-badge--cert { background: #e8f5e9; color: #2e7d32; }

/* ── Pricing ── */
.pricing-group {
  margin-top: 56px;
}

.pricing-group--license {
  margin-top: 72px;
  padding-top: 56px;
  border-top: 1px solid var(--gray-200);
}

.pricing-group-title {
  font-family: var(--font-serif);
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.pricing-group-lead {
  font-size: 17px;
  color: var(--gray-600);
  line-height: 1.55;
  margin-bottom: 32px;
  max-width: 58ch;
}

.pricing-subtitle {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin: 40px 0 20px;
}

.pricing-footnote {
  margin-top: 24px;
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.6;
  max-width: 62ch;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.pricing-grid--2 {
  grid-template-columns: repeat(2, 1fr);
}

.pricing-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.pricing-grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

.pricing-basis {
  margin: 0 0 48px;
  padding: 28px 32px;
  border-radius: 16px;
  border: 1px solid var(--gray-200);
  background: var(--gray-50);
}

.pricing-basis-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.pricing-basis p {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.65;
  max-width: 72ch;
  margin-bottom: 20px;
}

.pricing-basis strong {
  color: var(--gray-900);
  font-weight: 600;
}

.credit-table-wrap {
  overflow-x: auto;
}

.credit-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  min-width: 520px;
}

.credit-table th,
.credit-table td {
  text-align: left;
  padding: 12px 16px;
  border-bottom: 1px solid var(--gray-200);
}

.credit-table th {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-400);
}

.credit-table td {
  color: var(--gray-600);
}

.credit-table td:first-child {
  color: var(--gray-900);
  font-weight: 600;
}

.credit-hint {
  display: block;
  font-weight: 500;
  font-size: 12px;
  color: var(--gray-400);
  margin-top: 2px;
}

.pricing-inline-note {
  margin-top: 20px;
  font-size: 15px;
  color: var(--gray-600);
}

.pricing-inline-note a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.pricing-footnote a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.pricing-callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 8px;
  padding: 28px 32px;
  border-radius: 20px;
  border: 1px solid var(--gray-200);
  background: var(--gray-50);
}

.pricing-callout-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.pricing-callout h3 {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.pricing-callout p {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.55;
  max-width: 52ch;
}

.pricing-card--license {
  border-color: var(--black);
  background: var(--gray-50);
}

.pricing-card {
  border: 1px solid var(--gray-200);
  border-radius: 20px;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
}

.pricing-card--featured {
  border-color: var(--black);
  background: var(--black);
  color: var(--white);
}

.pricing-tier {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.5;
  margin-bottom: 8px;
}

.pricing-card h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 8px;
}

.pricing-price {
  font-family: var(--font-serif);
  font-size: 42px;
  font-weight: 400;
  letter-spacing: -0.03em;
  margin: 16px 0;
  line-height: 1;
}

.pricing-price small {
  font-size: 18px;
  font-family: var(--font-display);
  font-weight: 500;
  opacity: 0.55;
  letter-spacing: 0;
}

.pricing-features {
  list-style: none;
  margin: 24px 0 32px;
  flex: 1;
}

.pricing-features li {
  font-size: 15px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  color: var(--gray-600);
}

.pricing-card--featured .pricing-features li {
  border-color: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
}

.pricing-card .btn {
  width: 100%;
}

.pricing-card--featured .btn-primary {
  background: var(--white);
  color: var(--black);
}

.pricing-card:not(.pricing-card--featured) .btn-primary {
  background: var(--black);
  color: var(--white);
}

/* ── Start section ── */
.start-section {
  text-align: center;
}

.start-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 8px;
}

.start-note {
  margin-top: 24px;
  font-size: 14px;
  color: var(--gray-600);
  font-variant-numeric: tabular-nums;
}

/* ── Beta form (legacy — request page only) ── */
.beta-section {
  text-align: center;
}

.beta-form {
  max-width: 520px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
}

.beta-form label {
  font-size: 14px;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.label-hint {
  font-weight: 500;
  color: var(--gray-400);
  font-size: 12px;
}

.beta-form input,
.beta-form textarea,
.beta-form select {
  padding: 14px 16px;
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  font: inherit;
  font-size: 16px;
  background: var(--white);
  transition: border-color 0.2s;
}

.beta-form input:focus,
.beta-form textarea:focus,
.beta-form select:focus {
  outline: none;
  border-color: var(--black);
}

.beta-form textarea { min-height: 120px; resize: vertical; }

.form-status {
  padding: 14px 18px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  display: none;
}

.form-status.show { display: block; }
.form-status.success { background: #e8f5e9; color: #2e7d32; }
.form-status.error { background: #fce4ec; color: #c62828; }
.form-status.pending { background: var(--gray-100); color: var(--gray-600); }

/* ── Request outcome page ── */
.page-hero {
  min-height: 42vh;
  min-height: 42dvh;
  background: var(--black);
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px clamp(24px, 5vw, 48px) 64px;
  position: relative;
}

.page-hero .hero-glow {
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 102, 255, 0.12) 0%, transparent 70%);
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.page-hero .hero-eyebrow { opacity: 0.5; margin-bottom: 16px; }
.page-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.03em;
  max-width: 16ch;
  margin-bottom: 16px;
}

.page-hero .hero-sub {
  font-size: clamp(16px, 2vw, 19px);
  opacity: 0.65;
  max-width: 52ch;
  line-height: 1.55;
}

.page-hero .hero-sub a {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 3px;
  opacity: 1;
}

.nav--solid {
  color: var(--gray-900);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--gray-200);
}

.nav--solid .nav-cta {
  background: var(--black);
  color: var(--white);
}

.request-section {
  padding: clamp(48px, 8vw, 80px) clamp(24px, 5vw, 48px);
  background: var(--gray-50);
}

.request-layout {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}

.request-aside h2 {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.request-aside > p {
  color: var(--gray-600);
  font-size: 16px;
  line-height: 1.65;
  margin-bottom: 32px;
}

.process-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.process-steps li {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 16px;
  align-items: start;
}

.process-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}

.process-steps h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.process-steps p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.55;
}

.request-trust {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--gray-200);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.trust-pill {
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 980px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  color: var(--gray-600);
}

.factory-stats {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--gray-200);
}

.factory-stats-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 16px;
}

.factory-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 20px;
  margin: 0;
}

.factory-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.factory-stat dt {
  font-size: 12px;
  font-weight: 500;
  color: var(--gray-500);
  line-height: 1.35;
}

.factory-stat dd {
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--black);
  margin: 0;
  font-variant-numeric: tabular-nums;
}

.factory-stats-note {
  margin: 16px 0 0;
  font-size: 11px;
  color: var(--gray-400);
  line-height: 1.45;
}

.request-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 20px;
  padding: clamp(28px, 4vw, 36px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.request-card h2 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
}

.request-card > p {
  font-size: 14px;
  color: var(--gray-600);
  margin-bottom: 24px;
  line-height: 1.55;
}

.intake-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.intake-form label {
  font-size: 14px;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.intake-form label.optional span {
  font-weight: 500;
  color: var(--gray-400);
}

.intake-form input,
.intake-form textarea,
.intake-form select {
  padding: 14px 16px;
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  font: inherit;
  font-size: 16px;
  background: var(--white);
  transition: border-color 0.2s;
}

.intake-form input:focus,
.intake-form textarea:focus,
.intake-form select:focus {
  outline: none;
  border-color: var(--black);
}

.intake-form textarea { min-height: 140px; resize: vertical; }

.intake-form .btn-primary {
  width: 100%;
  margin-top: 8px;
  background: var(--black);
  color: var(--white);
  border: none;
  cursor: pointer;
}

.intake-form .btn-primary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.intake-form--minimal textarea {
  min-height: 200px;
  font-size: 17px;
  line-height: 1.55;
}

.intake-form-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ── Watch it bake progress ── */
.bake-panel {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 4px;
}

.bake-panel[hidden] {
  display: none !important;
}

.bake-panel--active .bake-progress-bar {
  animation: bake-pulse 2s ease-in-out infinite;
}

@keyframes bake-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.85; }
}

.bake-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 4px;
}

.bake-title {
  font-family: var(--font-serif);
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.bake-eta {
  font-size: 14px;
  color: var(--gray-600);
}

.bake-eta strong {
  font-weight: 700;
  color: var(--black);
  font-variant-numeric: tabular-nums;
}

.bake-progress-wrap {
  height: 8px;
  background: var(--gray-100);
  border-radius: 999px;
  overflow: hidden;
}

.bake-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #111 0%, #444 100%);
  border-radius: 999px;
  transition: width 0.35s ease;
}

.bake-status-text {
  font-size: 15px;
  font-weight: 600;
  color: var(--black);
}

.bake-stages {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 4px 0 0;
  padding: 0;
}

.bake-stage {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--gray-400);
  transition: color 0.25s ease;
}

.bake-stage-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid var(--gray-200);
  flex-shrink: 0;
  position: relative;
}

.bake-stage.active {
  color: var(--black);
  font-weight: 600;
}

.bake-stage.active .bake-stage-icon {
  border-color: var(--black);
  background: var(--black);
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.08);
}

.bake-stage.done {
  color: var(--gray-600);
}

.bake-stage.done .bake-stage-icon {
  border-color: #2e7d32;
  background: #2e7d32;
}

.bake-stage.done .bake-stage-icon::after {
  content: '';
  position: absolute;
  left: 4px;
  top: 1px;
  width: 5px;
  height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.bake-email-note {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.55;
  padding: 12px 14px;
  background: var(--gray-50);
  border-radius: 12px;
  border: 1px solid var(--gray-200);
}

.bake-panel--complete .bake-email-note {
  background: #e8f5e9;
  border-color: #c8e6c9;
  color: #1b5e20;
}

.bake-panel--error .bake-status-text {
  color: #c62828;
}

.bake-disclosure {
  font-size: 12px;
  color: var(--gray-400);
  line-height: 1.5;
  margin: 0;
}

.request-card--locked {
  pointer-events: none;
}

.request-card--locked .bake-panel,
.request-card--locked #forge-intake-new {
  pointer-events: auto;
}

.request-card--complete .intake-form-body {
  display: none !important;
}

.bake-new-btn {
  width: 100%;
  margin-top: 4px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.request-note {
  margin-top: 16px;
  font-size: 13px;
  color: var(--gray-400);
  line-height: 1.55;
}

@media (max-width: 900px) {
  .request-layout { grid-template-columns: 1fr; }
}

/* ── Footer ── */
.footer {
  padding: 64px clamp(24px, 5vw, 48px) 32px;
  border-top: 1px solid var(--gray-200);
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--gray-600);
  margin-top: 12px;
  max-width: 32ch;
  line-height: 1.6;
}

.footer-col h5 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  font-size: 14px;
  color: var(--gray-600);
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--black); }

.footer-humanity {
  max-width: var(--max-w);
  margin: 40px auto 0;
  padding: 20px 24px;
  border-top: 1px solid var(--gray-200);
  text-align: center;
}

.footer-humanity p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--gray-600);
  max-width: 56ch;
  margin-inline: auto;
}

.footer-humanity strong {
  color: var(--black);
  font-weight: 600;
}

.footer-humanity a {
  color: inherit;
  text-decoration: none;
}

.footer-humanity a:hover {
  text-decoration: underline;
}

.footer-bottom {
  max-width: var(--max-w);
  margin: 48px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--gray-200);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--gray-400);
}

.footer--compact {
  padding-top: 0;
}

.footer--compact .footer-humanity {
  margin-top: 0;
  border-top: none;
}

/* ── Simple pages (legal, humanity) ── */
.page-simple {
  max-width: 720px;
  margin: 0 auto;
  padding: 120px 24px 80px;
}

.page-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 12px;
}

.page-simple h1 {
  font-family: var(--font-serif);
  font-size: clamp(32px, 5vw, 42px);
  line-height: 1.1;
  margin-bottom: 20px;
}

.page-lead {
  font-size: 18px;
  color: var(--gray-600);
  line-height: 1.65;
  margin-bottom: 40px;
  max-width: 52ch;
}

.contact-block {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  overflow: hidden;
  max-width: 420px;
}

.contact-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 24px 28px;
  border-bottom: 1px solid var(--gray-200);
}

.contact-row:last-child {
  border-bottom: none;
}

.contact-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-400);
}

.contact-row a {
  font-size: 20px;
  font-weight: 500;
  color: var(--black);
  transition: opacity 0.2s;
}

.contact-row a:hover {
  opacity: 0.65;
}

.page-back {
  margin-top: 48px;
  font-size: 14px;
}

.page-back a {
  color: var(--gray-600);
}

.page-back a:hover {
  color: var(--black);
}

/* ── Reveal animation ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .pricing-grid,
  .pricing-grid--4,
  .pricing-grid--3 { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid--2 { grid-template-columns: 1fr; }
  .audience-grid { grid-template-columns: 1fr; }
  .license-grid { grid-template-columns: 1fr; }
  .compare-callout { grid-template-columns: 1fr; }
  .compare-divider { justify-content: center; padding: 8px 0; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: var(--black);
    color: var(--white);
    justify-content: center;
    align-items: center;
    gap: 32px;
    font-size: 24px;
  }
  .menu-toggle { display: block; }
  .steps { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid,
  .pricing-grid--4,
  .pricing-grid--3,
  .pricing-grid--2 { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .stats { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
