/* ============================================
   Pitch page — page-specific styles
   ============================================ */

.pitch-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 100px;
  padding-bottom: 20px;
  position: relative;
  overflow: hidden;
}

.pitch-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 60%, var(--humanoid-bg) 0%, transparent 55%),
    radial-gradient(ellipse at 50% 40%, var(--human-bg) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.pitch-hero .container {
  position: relative;
  z-index: 1;
}

.pitch-hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin-bottom: 12px;
  color: var(--human);
}

.pitch-hero h1 .human {
  color: var(--human);
  font-style: italic;
}

.pitch-hero h1 .humanoid-text {
  color: var(--humanoid);
}

.pitch-hero .pitch-subtitle {
  font-family: var(--font-mono);
  font-size: 1.5rem;
  color: var(--text-muted);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.pitch-hero .pitch-tagline {
  width: 900px;
  max-width: 100%;
  margin: 28px auto 0;
  font-family: var(--font-mono);
  font-size: 1.5rem;
  font-weight: 400;
  font-style: normal;
  line-height: 1.8;
  color: var(--text);
  background: rgba(28, 27, 24, 0.03);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px 32px;
  min-height: calc(3 * 1.5rem * 1.8 + 48px);
  text-align: left;
  position: relative;
}

/* typewriter cursor — blinks at the end of the final line */
.pitch-hero .pitch-tagline::after {
  content: '▊';
  display: inline-block;
  color: var(--human);
  margin-left: 4px;
  animation: cursorBlink 1s step-end infinite;
  vertical-align: baseline;
  font-size: 1.3rem;
  line-height: 1;
}

/* cursor fades out when typing is done */
.pitch-hero .pitch-tagline.done::after {
  animation: cursorFadeOut 0.6s ease forwards;
}

@keyframes cursorFadeOut {
  to {
    opacity: 0;
  }
}

@keyframes cursorBlink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

.pitch-hero .pitch-tagline strong {
  font-weight: 500;
  color: var(--text);
}

.pitch-hero .pitch-tagline em {
  font-style: italic;
  color: var(--text-muted);
  font-size: 0.9em;
}

/* Smaller abstract button */
.pitch-hero .btn-group .btn {
  font-size: 0.9rem;
  padding: 10px 18px;
}

/* Beyond hero — AI simulation banner */
.beyond-hero {
  padding-top: 60px;
  padding-bottom: 60px;
}

.beyond-hero h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: -0.015em;
  color: var(--text);
  margin: 0;
}

.beyond-hero .pitch-tagline {
  font-size: 1.3rem;
  width: 800px;
  min-height: 0;
}

.beyond-hero .pitch-tagline strong {
  font-weight: 500;
}

.beyond-hero .pitch-tagline em {
  font-style: italic;
  color: var(--text-muted);
  font-size: 0.95em;
}

.beyond-hero::after {
  background:
    radial-gradient(ellipse at 50% 65%, var(--humanoid-bg) 0%, transparent 55%),
    radial-gradient(ellipse at 50% 35%, rgba(28, 27, 24, 0.06) 0%, transparent 60%);
}

/* CTA button */
.sim-cta {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--human);
  background: rgba(44, 82, 130, 0.08);
  border: 1px solid var(--human);
  border-radius: 6px;
  padding: 14px 28px;
  text-decoration: none;
  transition: background var(--speed), color var(--speed), transform var(--speed);
}

.sim-cta:hover,
.sim-cta:focus {
  background: var(--human);
  color: var(--bg-deep);
  transform: translateY(-2px);
}

/* Pitch body — reading layout */
.pitch-body {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px 60px;
  text-align: left;
}

.pitch-body .pitch-section {
  margin-top: 0;
  padding: 0;
  scroll-margin-top: 70px;
}

.pitch-body .pitch-section:first-child {
  margin-top: 0;
}

.pitch-body .pitch-section h2 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 560;
  letter-spacing: -0.015em;
  color: var(--text);
  margin-bottom: 20px;
  position: relative;
}

.pitch-body .pitch-section h2::before {
  content: '// ';
  color: var(--human);
  font-weight: 400;
}

.pitch-body .pitch-section h3 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 560;
  color: var(--text);
  margin: 28px 0 12px;
}

.pitch-body .pitch-section p {
  font-size: 1.3125rem;
  line-height: 1.85;
  color: var(--text);
  margin-bottom: 18px;
}

/* Character summaries compact */
.pitch-body .pitch-char-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin: 24px 0;
}

.pitch-body .pitch-char-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 14px 16px;
  transition: border-color var(--speed);
}

.pitch-body .pitch-char-item:hover {
  border-color: var(--humanoid);
}

.pitch-body .pitch-char-item .char-name {
  font-weight: 600;
  font-size: 1.425rem;
}

.pitch-body .pitch-char-item .char-role {
  font-family: var(--font-mono);
  font-size: 1.125rem;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  margin-top: 2px;
}

.pitch-body .pitch-char-item .char-allegiance {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.975rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 3px;
  margin-top: 6px;
}

.pitch-body .pitch-char-item .char-allegiance.single-sex {
  background: rgba(44, 82, 130, 0.1);
  color: var(--human);
}

.pitch-body .pitch-char-item .char-allegiance.diversity {
  background: rgba(140, 70, 50, 0.1);
  color: var(--humanoid);
}

.pitch-body .pitch-char-item .char-allegiance.swing {
  background: rgba(100, 100, 100, 0.1);
  color: var(--text-muted);
}

.pitch-body .pitch-char-item .char-driver {
  font-size: 1.275rem;
  color: var(--text-dim);
  margin-top: 6px;
  font-style: italic;
  line-height: 1.45;
}

/* Bullet lists */
.pitch-body .pitch-section ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.pitch-body .pitch-section ul li {
  position: relative;
  padding: 10px 0 10px 24px;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-dim);
  border-bottom: 1px solid var(--border);
}

.pitch-body .pitch-section ul li:last-child {
  border-bottom: none;
}

.pitch-body .pitch-section ul li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--humanoid);
  font-weight: 400;
}

.pitch-body .pitch-section ul li strong {
  color: var(--text);
}

/* Profile table */
.pitch-body .pitch-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 1.125rem;
}

.pitch-body .pitch-table th,
.pitch-body .pitch-table td {
  padding: 10px 12px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  color: var(--text-dim);
  line-height: 1.5;
}

.pitch-body .pitch-table th {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  background: var(--bg-surface);
}

.pitch-body .pitch-table td:first-child {
  font-weight: 600;
  color: var(--text);
}

.pitch-body .pitch-table tr:hover td {
  background: var(--white-dim);
}

/* Pitch note */
.pitch-body .pitch-section .pitch-note {
  font-family: var(--font-mono);
  font-size: 1.2rem;
  color: var(--text-muted);
  margin: 20px 0;
  padding: 12px;
  border-left: 3px solid var(--border);
  line-height: 1.5;
}

/* Central Questions grid */
.pitch-body .pitch-questions-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
  margin: 24px 0;
}

.pitch-body .pitch-question-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 12px 16px;
  transition: border-color var(--speed);
}

.pitch-body .pitch-question-item:hover {
  border-color: var(--human);
}

.pitch-body .pitch-question-item strong {
  display: block;
  font-size: 1.425rem;
  color: var(--text);
  margin-bottom: 4px;
}

.pitch-body .pitch-question-item span {
  display: block;
  font-size: 1.275rem;
  color: var(--text-dim);
  line-height: 1.5;
}

/* Tagline block */
.pitch-tagline-block {
  text-align: center;
  padding: 48px 0 24px;
}

.pitch-tagline-block .tagline {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--text);
}

.pitch-tagline-block .tagline-source {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-style: normal;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-top: 8px;
}

/* ============================================
   Voice Cards — three-narrator pitch layout
   ============================================ */

.voice-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin: 28px 0;
}

.voice-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px 32px;
  transition: border-color var(--speed);
  position: relative;
}

.voice-card:hover {
  border-color: var(--human);
}

.voice-card.humanoid-card:hover {
  border-color: var(--humanoid);
}

.voice-card .voice-icon {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.voice-card .voice-name {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 560;
  color: var(--text);
  margin-bottom: 2px;
}

.voice-card .voice-role {
  font-family: var(--font-mono);
  font-size: 0.95rem;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.voice-card .voice-desc {
  font-size: 1.3125rem;
  line-height: 1.7;
  color: var(--text-dim);
}

.voice-card .voice-quote {
  margin-top: 16px;
  padding: 16px 20px;
  background: var(--bg-surface);
  border-left: 3px solid var(--human);
  border-radius: 4px;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.6;
}

.voice-card .voice-quote.humanoid-em {
  border-left-color: var(--humanoid);
  font-size: 1.5rem;
}

.voice-card .voice-quote.neutral-em {
  border-left-color: var(--text-muted);
}