/* Restarto AI corporate site — powered by ForgeOS */
:root {
  --black: #000000;
  --white: #ffffff;
  --gray-50: #fafafa;
  --gray-100: #f5f5f5;
  --gray-200: #e5e5e5;
  --gray-300: #d4d4d4;
  --gray-400: #a3a3a3;
  --gray-500: #737373;
  --gray-600: #525252;
  --gray-700: #404040;
  --gray-800: #262626;
  --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 .page-hero {
  padding-top: calc(72px + 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);
  color: var(--gray-900);
}

.nav.scrolled .logo,
.nav.scrolled .nav-links a:not(.nav-cta) {
  color: var(--gray-900);
}

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

.nav--dark .nav-links a:not(.nav-cta) {
  color: var(--white);
}

.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(--accent);
  color: var(--white);
  opacity: 1;
  transition: transform 0.2s, opacity 0.2s, background 0.2s;
}

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

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

.nav-cta:hover {
  transform: scale(1.03);
  background: #0052cc;
}

.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: 28px;
}

.hero-paths {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 680px;
  width: 100%;
  margin: 0 auto 36px;
}

.hero-path {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.05);
  text-align: left;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, background 0.2s;
}

.hero-path--factory {
  border-color: rgba(255, 200, 87, 0.35);
  background: rgba(255, 200, 87, 0.06);
}

.hero-path:hover {
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.1);
  text-decoration: none;
}

.hero-path--factory:hover {
  border-color: rgba(255, 200, 87, 0.65);
  background: rgba(255, 200, 87, 0.1);
}

.hero-path-label {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--white);
}

.hero-path-highlight {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--accent);
}

.hero-path-desc {
  font-size: 12px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.58);
}

@media (max-width: 520px) {
  .hero-paths {
    grid-template-columns: 1fr;
    max-width: 320px;
  }
}

.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-value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 28px;
}

.license-value {
  padding: 20px 18px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
}

.license-value h3 {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
  color: var(--white);
}

.license-value p {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.58);
  margin: 0;
}

.section--license .license-disclosure {
  max-width: 58ch;
  margin: 0 0 36px;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.5);
}

.section--license .license-disclosure::before {
  content: 'Note · ';
  font-weight: 600;
  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 Restarto AI / 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 evidence dashboard ── */
.proof-dashboard {
  margin-top: 48px;
}

.proof-summary {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.proof-metric {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 24px 20px;
  text-align: center;
}

.proof-metric-value {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 8px;
  color: var(--white);
}

.proof-metric-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.4;
}

.proof-charts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 28px;
}

.proof-chart-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 24px;
}

.proof-chart-card h3 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.85);
}

.grade-bar {
  display: flex;
  height: 14px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  margin-bottom: 16px;
}

.grade-segment {
  display: block;
  height: 100%;
  min-width: 4px;
  transition: width 0.6s var(--ease);
}

.grade-legend {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin: 0;
  padding: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

.grade-legend li {
  display: flex;
  align-items: center;
  gap: 6px;
}

.grade-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.grade-legend strong {
  color: var(--white);
  font-weight: 600;
}

.trust-buckets {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  height: 140px;
  padding-top: 8px;
}

.trust-bucket {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  justify-content: flex-end;
}

.trust-bucket-bar {
  width: 100%;
  max-width: 48px;
  background: linear-gradient(180deg, #6ee7a0 0%, #22c55e 100%);
  border-radius: 8px 8px 4px 4px;
  min-height: 8px;
  transition: height 0.6s var(--ease);
}

.trust-bucket-count {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin: 8px 0 2px;
}

.trust-bucket-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
}

.proof-headtohead {
  margin-bottom: 28px;
}

.proof-headtohead-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.12) 0%, rgba(255, 255, 255, 0.04) 100%);
  border: 1px solid rgba(34, 197, 94, 0.25);
  border-radius: 18px;
  padding: 28px 32px;
}

.proof-headtohead-kicker {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #6ee7a0;
  margin-bottom: 8px;
}

.proof-headtohead-inner h3 {
  font-family: var(--font-serif);
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 400;
  margin-bottom: 8px;
}

.proof-headtohead-summary {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  max-width: 52ch;
  line-height: 1.55;
  margin: 0;
}

.proof-headtohead-scores {
  display: flex;
  gap: 16px;
}

.h2h-score {
  text-align: center;
  padding: 16px 24px;
  border-radius: 14px;
  min-width: 120px;
}

.h2h-score--forge {
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.35);
}

.h2h-score--direct {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.h2h-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 6px;
}

.h2h-value {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 400;
  color: var(--white);
}

.h2h-score--forge .h2h-value { color: #6ee7a0; }

.h2h-sub {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 6px;
  line-height: 1.4;
}

.proof-headtohead-copy { max-width: 52ch; }

.proof-headtohead-link {
  display: inline-block;
  margin-top: 12px;
  font-size: 13px;
  font-weight: 600;
  color: #6ee7a0;
  text-decoration: none;
}

.proof-headtohead-link:hover { text-decoration: underline; }

/* ── Head-to-head benchmark section ── */
.section--h2h {
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}

.h2h-benchmark-loading {
  font-size: 14px;
  color: var(--gray-500);
  margin: 0;
}

.h2h-benchmark { margin-top: 32px; }

.h2h-finding {
  background: linear-gradient(135deg, #fef3c7 0%, #fff 100%);
  border: 1px solid #fcd34d;
  border-left: 4px solid #f59e0b;
  border-radius: 12px;
  padding: 18px 22px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--gray-800);
  margin-bottom: 24px;
}

.h2h-task-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 24px 28px;
  margin-bottom: 20px;
}

.h2h-task-kicker {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--gray-500);
  margin-bottom: 10px;
}

.h2h-task-plain {
  font-size: 17px;
  line-height: 1.5;
  color: var(--gray-900);
  margin: 0 0 12px;
}

.h2h-task-trap {
  font-size: 14px;
  line-height: 1.55;
  color: var(--gray-600);
  margin: 0;
  padding-top: 12px;
  border-top: 1px solid var(--gray-100);
}

.h2h-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  font-size: 13px;
  color: var(--gray-600);
  margin-bottom: 24px;
}

.h2h-meta-row span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.h2h-meta-row span::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.h2h-compare {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 16px;
  align-items: stretch;
  margin-bottom: 24px;
}

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

.h2h-side {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 22px 24px;
}

.h2h-side--direct { border-top: 3px solid #ef4444; }
.h2h-side--forge { border-top: 3px solid #22c55e; }

.h2h-side-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.h2h-side-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-800);
  margin: 0;
  line-height: 1.35;
}

.h2h-verdict {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: 999px;
  white-space: nowrap;
}

.h2h-verdict--pass {
  background: rgba(34, 197, 94, 0.12);
  color: #15803d;
}

.h2h-verdict--fail {
  background: rgba(239, 68, 68, 0.12);
  color: #b91c1c;
}

.h2h-verdict--neutral {
  background: var(--gray-100);
  color: var(--gray-600);
}

.h2h-metric-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}

.h2h-metric {
  background: var(--gray-50);
  border-radius: 10px;
  padding: 12px 14px;
}

.h2h-metric--highlight {
  background: rgba(34, 197, 94, 0.08);
  grid-column: span 2;
}

.h2h-side--direct .h2h-metric--highlight {
  background: rgba(239, 68, 68, 0.06);
}

.h2h-metric-value {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 400;
  color: var(--gray-900);
  margin: 0 0 4px;
  line-height: 1.1;
}

.h2h-metric-label {
  font-size: 11px;
  color: var(--gray-500);
  margin: 0;
  line-height: 1.35;
}

.h2h-claim-tally {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  padding: 0;
  margin: 0 0 12px;
  font-size: 12px;
  color: var(--gray-600);
}

.h2h-claim-tally strong { color: var(--gray-900); }

.h2h-flag {
  font-size: 12px;
  line-height: 1.45;
  padding: 10px 12px;
  border-radius: 8px;
  margin: 0;
}

.h2h-flag--warn {
  background: #fef3c7;
  color: #92400e;
  border: 1px solid #fde68a;
}

.h2h-failure {
  font-size: 12px;
  color: var(--gray-600);
  margin-top: 8px;
}

.h2h-failure summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--gray-700);
}

.h2h-failure code {
  font-size: 11px;
  background: var(--gray-100);
  padding: 2px 6px;
  border-radius: 4px;
}

.h2h-outcome-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

.h2h-outcome-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 16px 18px;
  text-align: center;
}

.h2h-outcome-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gray-500);
  margin: 0 0 6px;
}

.h2h-outcome-value {
  font-family: var(--font-serif);
  font-size: 28px;
  color: var(--gray-900);
  margin: 0;
}

.h2h-reproduce {
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.55;
  margin: 0;
  text-align: center;
}

.proof-evidence-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
  margin-bottom: 28px;
}

/* ── Discipline groups ── */
.proof-disciplines {
  margin-bottom: 28px;
}

.proof-disciplines-head {
  margin-bottom: 20px;
}

.proof-disciplines-head h3 {
  font-family: var(--font-serif);
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 400;
  margin-bottom: 6px;
}

.proof-disciplines-head p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
}

.discipline-bar {
  display: flex;
  height: 16px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  margin-bottom: 14px;
}

.discipline-segment {
  display: block;
  height: 100%;
  min-width: 6px;
  transition: width 0.6s var(--ease);
}

.discipline-legend {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin: 0 0 24px;
  padding: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

.discipline-legend li {
  display: flex;
  align-items: center;
  gap: 6px;
}

.discipline-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.discipline-legend strong {
  color: var(--white);
  font-weight: 600;
}

.discipline-share {
  color: rgba(255, 255, 255, 0.4);
  font-size: 12px;
}

.discipline-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
}

.discipline-card {
  position: relative;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  overflow: hidden;
}

.discipline-card-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--discipline-accent, #6B6253);
}

.discipline-card-body {
  padding: 22px 22px 20px;
}

.discipline-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.discipline-card-head h4 {
  font-size: 17px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
  margin: 0;
}

.discipline-count {
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.75);
}

.discipline-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
  margin: 0 0 16px;
}

.discipline-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 16px;
}

.discipline-stat {
  text-align: center;
  padding: 10px 6px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
}

.discipline-stat-val {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}

.discipline-stat-label {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 2px;
}

.discipline-card .evidence-bars {
  margin-bottom: 12px;
}

.discipline-card .evidence-bar-row {
  color: rgba(255, 255, 255, 0.5);
}

.discipline-card .evidence-bar-track {
  background: rgba(255, 255, 255, 0.1);
}

.discipline-card .evidence-bar-val {
  color: rgba(255, 255, 255, 0.85);
}

.discipline-grades {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.discipline-grade-chip {
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 999px;
  border: 1px solid;
  background: rgba(255, 255, 255, 0.04);
}

.evidence-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 20px;
  color: var(--gray-900);
}

.evidence-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 12px;
}

.evidence-grade {
  font-size: 13px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 8px;
}

.grade-aplus, .grade-a { background: #e8f5e9; color: #2e7d32; }
.grade-b { background: #eef3ee; color: #5e7a5a; }
.grade-c { background: #fff8e7; color: #9a7229; }
.grade-d { background: #fdeee8; color: #b85c3c; }
.grade-f { background: #fde8e8; color: #9e3b2e; }

.evidence-cert {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 8px;
  border-radius: 999px;
}

.cert-prod, .cert-ok { background: #e8f5e9; color: #2e7d32; }
.cert-warn { background: #fff8e7; color: #9a7229; }
.cert-func { background: #eef3ee; color: #5e7a5a; }
.cert-fail { background: #fde8e8; color: #9e3b2e; }
.cert-muted { background: var(--gray-100); color: var(--gray-600); }

.evidence-card h4 {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 4px;
}

.evidence-tier {
  font-size: 12px;
  color: var(--gray-500);
  margin-bottom: 16px;
}

.evidence-bars {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 14px;
}

.evidence-bar-row {
  display: grid;
  grid-template-columns: 42px 1fr 36px;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: var(--gray-500);
}

.evidence-bar-track {
  height: 6px;
  background: var(--gray-100);
  border-radius: 999px;
  overflow: hidden;
}

.evidence-bar-fill {
  height: 100%;
  border-radius: 999px;
  transition: width 0.5s var(--ease);
}

.evidence-bar-fill--trust { background: linear-gradient(90deg, #22c55e, #16a34a); }
.evidence-bar-fill--verify { background: linear-gradient(90deg, #3b82f6, #2563eb); }

.evidence-bar-val {
  font-weight: 700;
  color: var(--gray-800);
  text-align: right;
}

.evidence-meta {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin: 0;
  padding: 12px 0 0;
  border-top: 1px solid var(--gray-100);
  font-size: 12px;
  color: var(--gray-500);
}

.evidence-meta strong {
  color: var(--gray-900);
}

.proof-methodology {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  text-align: center;
  margin: 0;
  line-height: 1.5;
}

/* ── Metric tooltips ── */
.labeled-tip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4px;
  position: relative;
}

.tip-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  padding: 0;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: transparent;
  color: inherit;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  cursor: help;
  opacity: 0.55;
  vertical-align: middle;
  flex-shrink: 0;
  transition: opacity 0.15s, background 0.15s;
}

.tip-trigger:hover,
.tip-trigger:focus-visible {
  opacity: 1;
  outline: none;
  background: rgba(255, 255, 255, 0.12);
}

.section:not(.section--dark) .tip-trigger:hover,
.section:not(.section--dark) .tip-trigger:focus-visible {
  background: rgba(0, 0, 0, 0.06);
}

.tip-popover {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 10px);
  transform: translateX(-50%);
  z-index: 30;
  width: min(260px, 70vw);
  padding: 10px 12px;
  border-radius: 10px;
  background: #1a1a1a;
  color: #f4f4f5;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  letter-spacing: normal;
  text-transform: none;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.12);
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.15s, visibility 0.15s;
}

.tip-popover::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: #1a1a1a;
}

.tip-trigger:hover + .tip-popover,
.tip-trigger:focus-visible + .tip-popover {
  opacity: 1;
  visibility: visible;
}

.proof-chart-card h3 .labeled-tip,
.proof-disciplines-head h3 .labeled-tip {
  justify-content: flex-start;
}

.discipline-stat-label .labeled-tip,
.discipline-stat-label .tip-trigger,
.evidence-bar-row .labeled-tip,
.evidence-bar-row .tip-trigger,
.discipline-grades-label .labeled-tip {
  font-size: inherit;
}

.discipline-grades {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
}

.discipline-grades-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.45);
  margin-right: 2px;
}

.stat-label .labeled-tip {
  justify-content: center;
}

.proof-metric-label .labeled-tip {
  justify-content: center;
}

.h2h-label .labeled-tip,
.proof-headtohead-kicker .labeled-tip {
  justify-content: flex-start;
}

@media (max-width: 480px) {
  .tip-popover {
    left: auto;
    right: 0;
    transform: none;
    width: min(240px, 85vw);
  }

  .tip-popover::after {
    left: auto;
    right: 12px;
    transform: none;
  }
}

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

.proof-gallery-cta {
  margin-top: 48px;
  text-align: center;
}

.proof-factory-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
  margin: 64px 0 48px;
}

.proof-factory-title {
  margin-top: 8px;
}

a.proof-card {
  display: block;
  text-decoration: none;
  color: inherit;
}

.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; }

@media (max-width: 900px) {
  .proof-summary { grid-template-columns: repeat(2, 1fr); }
  .proof-charts { grid-template-columns: 1fr; }
  .proof-headtohead-scores { width: 100%; justify-content: center; }
  .discipline-stats { grid-template-columns: repeat(2, 1fr); }
  .h2h-compare { grid-template-columns: 1fr; }
  .h2h-compare-divider { padding: 4px 0; }
  .h2h-outcome-strip { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .proof-summary { grid-template-columns: 1fr; }
  .proof-headtohead-inner { padding: 20px; }
  .h2h-score { min-width: 100px; padding: 12px 16px; }
  .h2h-metric-grid { grid-template-columns: 1fr; }
  .h2h-metric--highlight { grid-column: span 1; }
}

/* ── Pricing ── */
.pricing-path {
  margin-top: 32px;
}

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

.pricing-path-head {
  margin-bottom: 28px;
}

.pricing-path-title {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3.5vw, 32px);
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.pricing-path-lead {
  font-size: 16px;
  color: var(--gray-600);
  margin: 0;
}

.pricing-blurb {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.45;
  margin: 0 0 16px;
  min-height: 2.9em;
}

.pricing-footnote--simple {
  margin-top: 40px;
  text-align: center;
  max-width: 48ch;
  margin-left: auto;
  margin-right: auto;
}

.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: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  background: var(--white);
}

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

.pricing-card--featured .pricing-blurb {
  color: rgba(255, 255, 255, 0.65);
}

.pricing-tier {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.5;
  margin-bottom: 4px;
}

.pricing-price {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5vw, 48px);
  font-weight: 400;
  letter-spacing: -0.03em;
  margin: 8px 0 12px;
  line-height: 1;
}

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

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

.pricing-features li {
  font-size: 14px;
  padding: 6px 0 6px 18px;
  position: relative;
  color: var(--gray-600);
  border: none;
}

.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent2);
  font-weight: 700;
  font-size: 12px;
}

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

.pricing-card--featured .pricing-features li::before {
  color: #6ee7a0;
}

.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 {
  background: var(--black);
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 100px clamp(24px, 5vw, 48px) clamp(32px, 5vw, 48px);
  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(--accent);
  color: var(--white);
}

.page-hero--compact {
  padding-top: calc(88px + var(--beta-banner-h));
  padding-bottom: clamp(24px, 4vw, 40px);
}

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

/* ── Factory proof dashboard ── */
.proof-factory-page {
  background: var(--gray-50);
  padding: clamp(24px, 4vw, 48px) clamp(20px, 4vw, 48px) clamp(48px, 8vw, 80px);
}

.proof-load {
  text-align: center;
  color: var(--gray-600);
  font-size: 15px;
  padding: 48px 0;
}

.proof-load--error {
  color: #c62828;
}

.proof-kpi-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: var(--max-w);
  margin: 0 auto 32px;
}

.proof-kpi {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  padding: 20px 18px;
}

.proof-kpi--accent {
  border-color: rgba(0, 102, 255, 0.25);
  background: linear-gradient(135deg, #f0f7ff 0%, var(--white) 100%);
}

.proof-kpi-value {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 6px;
}

.proof-kpi-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray-600);
}

.proof-section-head {
  max-width: var(--max-w);
  margin: 0 auto 24px;
}

.proof-section-head h2 {
  font-family: var(--font-serif);
  font-size: clamp(26px, 4vw, 34px);
  font-weight: 400;
  margin-bottom: 8px;
}

.proof-section-lead {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.55;
  max-width: 62ch;
}

.proof-showcase,
.proof-benchmarks {
  max-width: var(--max-w);
  margin: 0 auto 40px;
}

.proof-grid--page {
  margin-top: 0;
}

.proof-card-domain {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
  margin-bottom: 8px;
}

.proof-card-meta {
  display: block;
  font-size: 12px;
  color: var(--gray-600);
  margin-top: 4px;
}

.proof-benchmark-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 20px;
}

.proof-benchmark-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: clamp(20px, 3vw, 28px);
}

.proof-benchmark-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 16px;
}

.proof-benchmark-kicker {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 8px;
}

.proof-benchmark-card h3 {
  font-family: var(--font-serif);
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 400;
  margin-bottom: 8px;
}

.proof-benchmark-task {
  font-size: 14px;
  color: var(--gray-700);
  line-height: 1.55;
  max-width: 58ch;
}

.proof-benchmark-trap {
  font-size: 13px;
  color: var(--gray-600);
  margin-top: 8px;
  max-width: 58ch;
}

.proof-benchmark-scores {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.proof-benchmark-score {
  text-align: center;
  padding: 16px 20px;
  border-radius: 14px;
  min-width: 130px;
}

.proof-benchmark-score--forge {
  background: #e8f5e9;
  border: 1px solid #a5d6a7;
}

.proof-benchmark-score--competitor {
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
}

.proof-benchmark-score-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray-600);
  margin-bottom: 6px;
}

.proof-benchmark-score-value {
  font-family: var(--font-serif);
  font-size: 32px;
  line-height: 1.1;
}

.proof-benchmark-score--forge .proof-benchmark-score-value { color: #2e7d32; }

.proof-benchmark-score-sub {
  font-size: 11px;
  color: var(--gray-600);
  margin-top: 6px;
}

.proof-benchmark-verdict {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 8px;
}

.proof-benchmark-verdict--pass { color: #2e7d32; }
.proof-benchmark-verdict--fail { color: #c62828; }

.proof-benchmark-vs {
  font-size: 13px;
  font-weight: 700;
  color: var(--gray-500);
}

.proof-benchmark-finding {
  font-size: 14px;
  color: var(--gray-700);
  line-height: 1.55;
  margin-bottom: 8px;
}

.proof-benchmark-failure {
  font-size: 13px;
  color: var(--gray-600);
  font-family: ui-monospace, monospace;
  margin-bottom: 12px;
}

.proof-benchmark-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
}

.proof-benchmark-link:hover { text-decoration: underline; }

.proof-challenge-card {
  background: var(--black);
  color: var(--white);
  border-radius: 16px;
  padding: clamp(24px, 4vw, 32px);
}

.proof-challenge-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}

.proof-challenge-inner h3 {
  font-family: var(--font-serif);
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 400;
  margin-bottom: 8px;
}

.proof-challenge-inner .proof-benchmark-task {
  color: rgba(255, 255, 255, 0.72);
}

.proof-challenge-tasks {
  list-style: none;
  margin-top: 16px;
  padding: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.proof-challenge-tasks li {
  padding: 8px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.proof-challenge-modality {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.45);
  margin-left: 6px;
}

.proof-challenge-prize {
  font-family: var(--font-serif);
  font-size: clamp(32px, 5vw, 44px);
  line-height: 1;
}

.proof-challenge-prize-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  margin: 6px 0 16px;
}

.proof-challenge-side {
  text-align: center;
}

.proof-chart-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.proof-chart-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: clamp(20px, 3vw, 28px);
}

.proof-chart-card--wide {
  grid-column: span 2;
}

.proof-chart-card h2 {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 400;
  margin-bottom: 6px;
}

.proof-chart-lead {
  font-size: 13px;
  color: var(--gray-600);
  margin-bottom: 16px;
  line-height: 1.45;
}

.proof-chart-wrap {
  position: relative;
  height: 240px;
}

.proof-chart-wrap--tall {
  height: 320px;
}

.proof-domain-table-wrap {
  max-width: var(--max-w);
  margin: 32px auto 0;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: clamp(20px, 3vw, 28px);
}

.proof-domain-table-wrap h2 {
  font-family: var(--font-serif);
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 400;
  margin-bottom: 16px;
}

.proof-domain-table-scroll {
  overflow-x: auto;
}

.proof-domain-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

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

.proof-domain-table th {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray-600);
}

.proof-domain-table td:last-child,
.proof-domain-table th:last-child {
  text-align: right;
}

.proof-domain-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: middle;
}

.proof-catalog-cta {
  max-width: var(--max-w);
  margin: 32px auto 0;
  text-align: center;
  padding: clamp(32px, 5vw, 48px);
  background: var(--black);
  color: var(--white);
  border-radius: 16px;
}

.proof-catalog-cta h2 {
  font-family: var(--font-serif);
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 400;
  margin-bottom: 10px;
}

.proof-catalog-cta p {
  opacity: 0.7;
  margin-bottom: 20px;
  max-width: 48ch;
  margin-left: auto;
  margin-right: auto;
}

.proof-catalog-cta .btn-primary {
  background: var(--accent);
  color: var(--white);
}

.proof-updated {
  max-width: var(--max-w);
  margin: 24px auto 0;
  text-align: center;
  font-size: 12px;
  color: var(--gray-600);
}

.proof-methodology {
  max-width: var(--max-w);
  margin: 8px auto 0;
  text-align: center;
  font-size: 11px;
  color: var(--gray-400);
  line-height: 1.5;
}

@media (max-width: 900px) {
  .proof-kpi-row { grid-template-columns: repeat(2, 1fr); }
  .proof-chart-grid { grid-template-columns: 1fr; }
  .proof-chart-card--wide { grid-column: span 1; }
}

@media (max-width: 480px) {
  .proof-kpi-row { grid-template-columns: 1fr; }
}

.request-handoff {
  margin-top: 1.5rem;
  padding: 1rem 1.15rem;
  border: 1px solid rgba(255, 90, 31, 0.35);
  border-radius: 12px;
  background: rgba(255, 90, 31, 0.08);
  text-align: left;
  max-width: 36rem;
}
.request-handoff-label {
  margin: 0 0 0.4rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ff5a1f;
}
.request-handoff-product,
.request-handoff-goal,
.request-handoff-est {
  margin: 0.2rem 0;
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--gray-800, #1a1a1a);
}
.request-handoff-next {
  margin: 0.75rem 0 0;
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--gray-600, #555);
}
.request-handoff:empty,
.request-handoff[hidden] {
  display: none;
}

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

.request-section .reveal {
  opacity: 1;
  transform: none;
}

.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-field-label {
  font-size: 14px;
  font-weight: 600;
  display: block;
  margin: 0;
  color: var(--black);
}

.intake-field-optional {
  margin-left: 8px;
  font-size: 12px;
  font-weight: 500;
  color: var(--gray-400);
}

.intake-form input,
.intake-form textarea,
.intake-form select {
  width: 100%;
  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;
  color: var(--gray-900);
}

.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: 20px;
}

.intake-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.intake-attach {
  gap: 10px;
}

.intake-attach-drop {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  margin: 0;
  padding: 28px 24px;
  border: 1.5px dashed var(--gray-300);
  border-radius: 12px;
  background: var(--gray-50);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  text-align: center;
  font-weight: 400;
}

.intake-attach--has-files .intake-attach-drop {
  min-height: 88px;
  padding: 20px 24px;
}

.intake-attach-drop:hover,
.intake-attach-drop:focus-within,
.intake-attach-drop--hover {
  border-color: var(--black);
  border-style: solid;
  background: var(--white);
  box-shadow: 0 0 0 1px var(--black);
}

.intake-attach-drop input[type="file"] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.intake-attach-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  pointer-events: none;
}

.intake-attach-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 2px;
  border-radius: 12px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  color: var(--gray-600);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.intake-attach-drop:hover .intake-attach-icon,
.intake-attach-drop:focus-within .intake-attach-icon,
.intake-attach-drop--hover .intake-attach-icon {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
}

.intake-attach-title {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.35;
  color: var(--gray-800);
}

.intake-attach-browse {
  font-size: 14px;
  line-height: 1.35;
  color: var(--gray-500);
}

.intake-attach-browse-link {
  font-weight: 600;
  color: var(--black);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}

.intake-attach-hint {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
  color: var(--gray-500);
  text-align: center;
}

.intake-attach-list {
  list-style: none;
  margin: 2px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.intake-attach-list:empty {
  display: none;
}

.intake-attach-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--gray-800);
  padding: 10px 12px;
  background: var(--white);
  border-radius: 10px;
  border: 1px solid var(--gray-200);
  max-width: 100%;
}

.intake-attach-file-name {
  flex: 1;
  min-width: 0;
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.intake-attach-file-size {
  flex-shrink: 0;
  font-size: 12px;
  color: var(--gray-500);
}

.intake-attach-file-remove {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 8px;
  background: transparent;
  color: var(--gray-400);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}

.intake-attach-file-remove:hover {
  background: var(--gray-100);
  color: var(--black);
}

/* ── 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;
}

.bake-delivery-preview {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-200);
}

.bake-delivery-title {
  font-size: 15px;
  font-weight: 600;
  margin: 0 0 12px;
}

.bake-delivery-frame-wrap {
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  min-height: 360px;
}

.bake-delivery-frame {
  width: 100%;
  min-height: 360px;
  border: 0;
  display: block;
}

.bake-delivery-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.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-actions {
  margin: 8px 0 4px;
}

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

.bake-panel--complete .bake-actions {
  display: block !important;
  position: sticky;
  bottom: 0;
  z-index: 2;
  background: linear-gradient(to top, var(--white) 70%, rgba(255, 255, 255, 0));
  padding: 12px 0 4px;
  margin-top: 12px;
}

.bake-new-btn {
  width: 100%;
  min-height: 48px;
  font-size: 16px;
  font-weight: 600;
  margin-top: 0;
}

.bake-panel--complete .bake-new-btn {
  background: var(--black);
  color: var(--white);
  border: none;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.bake-panel--complete .bake-stages {
  max-height: 140px;
  overflow: hidden;
  mask-image: linear-gradient(to bottom, #000 60%, transparent);
}

.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;
}

.request-beta-gate {
  padding: 8px 0 4px;
}

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

.request-beta-gate h2 {
  font-size: clamp(22px, 3vw, 28px);
  margin: 0 0 12px;
  line-height: 1.15;
}

.request-beta-lead {
  margin: 0 0 28px;
  color: var(--gray-500);
  font-size: 15px;
  line-height: 1.6;
}

.request-beta-form {
  margin: 0;
  max-width: none;
}

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

  .request-card {
    order: -1;
  }

  .request-aside {
    order: 1;
  }
}

/* ── 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 (progressive — content visible without JS) ── */
.reveal {
  opacity: 1;
  transform: none;
}

html.reveal-js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

html.reveal-js .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-value-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;
  }
  html.reveal-js .reveal { opacity: 1; transform: none; }
}

/* ── Marketplace ── */
.marketplace-main { padding-bottom: 48px; }
.marketplace-explainer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) {
  .marketplace-explainer-grid { grid-template-columns: 1fr; }
}
.marketplace-explainer-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 24px;
}
.marketplace-explainer-card--accent {
  border-color: color-mix(in srgb, var(--accent) 35%, var(--gray-200));
  background: linear-gradient(180deg, #f8fbff 0%, var(--white) 100%);
}
.marketplace-explainer-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.marketplace-explainer-card p {
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.55;
}
.marketplace-spotlight {
  margin-top: 24px;
  border: 1px solid var(--gray-200);
  border-radius: 20px;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 55%, #0f172a 100%);
  color: var(--white);
  overflow: hidden;
}
.marketplace-spotlight-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  padding: 32px;
  align-items: center;
}
@media (max-width: 768px) {
  .marketplace-spotlight-inner { grid-template-columns: 1fr; }
}
.marketplace-spotlight-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #86efac;
  margin-bottom: 12px;
}
.marketplace-spotlight-copy h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 8px;
}
.marketplace-spotlight-copy p {
  color: #cbd5e1;
  max-width: 52ch;
}
.marketplace-spotlight-note {
  font-size: 0.9rem;
  margin-top: 12px;
}
.marketplace-spotlight-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 160px;
}
.marketplace-globe {
  font-size: 96px;
  filter: drop-shadow(0 12px 32px rgba(0, 0, 0, 0.35));
}
.marketplace-search-label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  max-width: 360px;
  margin: 16px 0 24px;
}
.marketplace-search {
  padding: 12px 14px;
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  font: inherit;
}
.marketplace-load {
  color: var(--gray-600);
  font-size: 0.95rem;
}
.marketplace-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 18px;
}
.marketplace-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
}
.marketplace-card--featured {
  border-color: color-mix(in srgb, var(--accent) 40%, var(--gray-200));
}
.marketplace-card h3 {
  font-size: 1.05rem;
  margin-bottom: 6px;
}
.marketplace-card h3 a:hover {
  color: var(--accent);
}
.marketplace-tagline {
  color: var(--gray-600);
  font-size: 0.88rem;
  margin-bottom: 12px;
  flex: 1;
}
.marketplace-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 10px;
}
.marketplace-chip {
  font-size: 11px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 999px;
  background: var(--gray-100);
  color: var(--gray-600);
}
.marketplace-chip--free {
  background: #dcfce7;
  color: #166534;
}
.marketplace-price {
  font-size: 0.82rem;
  color: var(--gray-600);
  margin-bottom: 14px;
}
.marketplace-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.marketplace-actions .btn {
  padding: 10px 16px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.88rem;
}
.marketplace-actions .btn-primary {
  background: var(--accent);
  color: var(--white);
}
.marketplace-actions .btn-secondary {
  border: 1px solid var(--gray-200);
  color: var(--gray-600);
}
