﻿/* TalkBot, showcase, callflow, video, audio, and hero-specific styles */

/* ─────────── Video Showcase ─────────── */
.vshow {
  position: relative; border-radius: 16px; overflow: hidden;
  border: 1px solid var(--line); background: var(--bg-card);
  isolation: isolate;
  aspect-ratio: 16/9;
}
.vshow.tall { aspect-ratio: 4/5; }
.vshow.square { aspect-ratio: 1/1; }
.vshow video {
  position: absolute; inset: 0;
  width: 100%; height: 100%; display: block;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.02);
  z-index: 2;
}
.vshow::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 3;
  background: linear-gradient(180deg, transparent 40%, color-mix(in oklch, var(--bg) 60%, transparent) 100%);
}

/* Premium fallback ─ animated, never empty */
.vshow-fallback {
  position: absolute; inset: 0; z-index: 1;
  overflow: hidden;
  background: var(--bg-elev);
}
.vshow.has-video .vshow-fallback { opacity: 0; pointer-events: none; transition: opacity .4s; }
.vshow-fallback-grad {
  position: absolute; inset: -10%;
  background:
    radial-gradient(ellipse 60% 50% at 25% 30%, color-mix(in oklch, var(--accent) 55%, transparent) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 75% 70%, color-mix(in oklch, var(--accent-2) 50%, transparent) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 50% 100%, color-mix(in oklch, var(--accent) 25%, transparent) 0%, transparent 70%);
  filter: blur(28px) saturate(1.2);
  animation: vshow-drift 14s ease-in-out infinite;
}
@keyframes vshow-drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(3%, -2%) scale(1.06); }
  66%      { transform: translate(-2%, 3%) scale(1.04); }
}
.vshow.no-ambience .vshow-fallback-grad { animation: none; }

.vshow-fallback-orbs { position: absolute; inset: 0; pointer-events: none; }
.vshow-fallback-orbs span {
  position: absolute; width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,0.55);
  box-shadow: 0 0 14px rgba(255,255,255,0.7);
  animation: vshow-orb 7s ease-in-out infinite;
}
.vshow-fallback-orbs span:nth-child(1) { left: 20%; top: 28%; animation-delay: 0s; }
.vshow-fallback-orbs span:nth-child(2) { left: 70%; top: 60%; animation-delay: 1.2s; width:4px; height:4px; }
.vshow-fallback-orbs span:nth-child(3) { left: 45%; top: 80%; animation-delay: 2.4s; width:3px; height:3px; }
@keyframes vshow-orb {
  0%, 100% { opacity: 0.3; transform: translateY(0); }
  50%      { opacity: 1;   transform: translateY(-8px); }
}
.vshow.no-ambience .vshow-fallback-orbs span { animation: none; }

.vshow-fallback-bars {
  position: absolute; left: 50%; bottom: 16%; transform: translateX(-50%);
  display: flex; gap: 3px; align-items: flex-end; height: 36px; width: 60%; max-width: 280px;
  opacity: 0.85;
}
.vshow-fallback-bars span {
  flex: 1; height: 30%;
  background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(255,255,255,0.55));
  border-radius: 2px;
  animation: vshow-bar 1.4s ease-in-out infinite;
  transform-origin: bottom;
}
@keyframes vshow-bar {
  0%, 100% { transform: scaleY(0.4); }
  50%      { transform: scaleY(1); }
}
.vshow.no-ambience .vshow-fallback-bars span { animation: none; transform: scaleY(0.6); }

.vshow-fallback-content {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 24px; gap: 10px;
}
.vshow-fallback-chip {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 0.08em;
  padding: 5px 10px; border-radius: 999px;
  background: rgba(0,0,0,0.45); color: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.12);
}
.vshow-fallback-dot {
  width: 5px; height: 5px; border-radius: 50%; background: var(--accent);
  box-shadow: 0 0 0 3px color-mix(in oklch, var(--accent) 30%, transparent);
  animation: pulse 2s ease-in-out infinite;
}
.vshow-fallback-title {
  color: #fff;
  font-family: 'Instrument Serif', serif;
  font-size: clamp(18px, 2.2vw, 26px);
  letter-spacing: -0.01em;
  text-shadow: 0 1px 12px rgba(0,0,0,0.35);
}
.vshow-fallback-hint {
  font-size: 11px; letter-spacing: 0.05em;
  color: rgba(255,255,255,0.7);
}
.vshow-fallback-hint .mono {
  background: rgba(0,0,0,0.4); padding: 3px 8px; border-radius: 5px;
  border: 1px solid rgba(255,255,255,0.08);
}

/* tall + square aspect tweaks for the fallback */
.vshow.tall .vshow-fallback-bars,
.vshow.square .vshow-fallback-bars { width: 70%; bottom: 12%; }

.vshow-caption {
  position: absolute; left: 14px; bottom: 12px; z-index: 4;
  display: inline-flex; align-items: center; gap: 6px;
  font-family: 'JetBrains Mono', monospace; font-size: 10.5px;
  color: #fff;
  background: rgba(14, 17, 22, 0.55); backdrop-filter: blur(8px);
  padding: 5px 10px; border-radius: 999px;
  letter-spacing: 0.05em;
  border: 1px solid rgba(255,255,255,0.08);
}
.vshow-caption-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: oklch(0.78 0.16 25);
  box-shadow: 0 0 0 3px rgba(255,80,80,0.3);
  animation: pulse 1.5s ease-in-out infinite;
}

/* ─────────── Feature blocks ─────────── */
.feat {
  display: grid; grid-template-columns: 1fr 1fr; gap: 36px; align-items: center;
}
.feat.flip { grid-template-columns: 1fr 1fr; }
.feat.flip .feat-media { order: 2; }
@media (max-width: 900px) {
  .feat, .feat.flip { grid-template-columns: 1fr; gap: 24px; }
  .feat.flip .feat-media { order: 0; }
}
.feat-media { position: relative; }
.feat-eyebrow { margin-bottom: 16px; }
.feat-title {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.05; letter-spacing: -0.015em;
  margin: 0 0 14px;
}
.feat-title em { font-style: italic; color: var(--accent); }
.feat-body { color: var(--ink-2); font-size: 16px; line-height: 1.6; margin: 0 0 18px; max-width: 52ch; }
.feat-list { list-style: none; padding: 0; margin: 0 0 22px; display: flex; flex-direction: column; gap: 8px; }
.feat-list li { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; color: var(--ink-2); }
.feat-list svg { width: 16px; height: 16px; color: var(--accent); flex-shrink: 0; margin-top: 3px; }

/* ─────────── Audio sample player ─────────── */
.audio-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 800px) { .audio-grid { grid-template-columns: 1fr; } }
.audio-card {
  border: 1px solid var(--line); border-radius: 14px;
  background: var(--bg-card); padding: 20px;
  display: flex; flex-direction: column; gap: 14px;
  transition: border-color 0.2s ease;
}
.audio-card:hover { border-color: var(--line-strong); }
.audio-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; }
.audio-tag {
  font-family: 'JetBrains Mono', monospace; font-size: 10px;
  color: var(--ink-3); letter-spacing: 0.06em; text-transform: uppercase;
  padding: 3px 8px; border: 1px solid var(--line); border-radius: 999px;
}
.audio-title { font-size: 16px; font-weight: 600; margin: 0; letter-spacing: -0.01em; }
.audio-meta { font-size: 12px; color: var(--ink-3); margin-top: 2px; }
.audio-player {
  display: flex; align-items: center; gap: 14px;
  padding: 12px; border-radius: 10px;
  background: var(--bg-elev); border: 1px solid var(--line);
}
.audio-play-btn {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--accent); color: var(--accent-ink);
  border: none; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; cursor: pointer;
  transition: transform 0.15s ease;
}
.audio-play-btn:hover { transform: scale(1.06); }
.audio-bars { flex: 1; display: flex; gap: 2px; align-items: center; height: 32px; }
.audio-bars .b { flex: 1; background: var(--line-strong); border-radius: 1px; transition: background 0.2s; }
.audio-bars.playing .b { background: var(--accent); animation: bar-pulse 0.8s infinite ease-in-out; }
.audio-bars.playing .b:nth-child(2n) { animation-delay: 0.1s; }
.audio-bars.playing .b:nth-child(3n) { animation-delay: 0.2s; }
.audio-bars.playing .b:nth-child(5n) { animation-delay: 0.3s; }
@keyframes bar-pulse {
  0%, 100% { transform: scaleY(0.4); }
  50% { transform: scaleY(1); }
}
.audio-time { font-family: 'JetBrains Mono', monospace; font-size: 12px; color: var(--ink-3); flex-shrink: 0; }
.audio-transcript {
  font-size: 13px; color: var(--ink-2); line-height: 1.55;
  padding: 12px 14px; background: var(--bg-elev); border-radius: 8px; border-left: 2px solid var(--accent);
}
.audio-transcript .dev { font-family: 'Tiro Devanagari Hindi', 'Noto Sans Devanagari', sans-serif; }
.audio-transcript .who { color: var(--ink-3); font-family: 'JetBrains Mono', monospace; font-size: 11px; margin-right: 8px; }

/* ─────────── Service tile (Managed Growth) ─────────── */
.svc {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
  margin-top: 16px;
}
@media (max-width: 700px) { .svc { grid-template-columns: 1fr; } }
.svc-tile {
  border: 1px solid var(--line); border-radius: 12px;
  background: var(--bg-elev); padding: 16px;
  display: flex; flex-direction: column; gap: 8px;
}
.svc-tile-num { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--ink-3); letter-spacing: 0.06em; }
.svc-tile-title { font-size: 18px; font-weight: 600; letter-spacing: -0.01em; margin: 0; }
.svc-tile-body { font-size: 13px; color: var(--ink-2); margin: 0; line-height: 1.5; }

/* ─────────── Phone-shaped video frame ─────────── */
.phone-frame {
  width: 280px; max-width: 100%; margin: 0 auto;
  border-radius: 36px; padding: 12px;
  background: linear-gradient(180deg, oklch(0.30 0.014 260), oklch(0.16 0.012 260));
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.6), inset 0 1px 0 rgba(255,255,255,0.06);
  border: 1px solid var(--line-strong);
}
.phone-frame .vshow { border-radius: 26px; aspect-ratio: 9/19; }
.phone-frame .vshow video { aspect-ratio: 9/19; }


/* ─────────── Showcase (dashboard mock) ─────────── */
.showcase {
  display: flex; flex-direction: column;
  font-size: 14px;
}
.sc-topbar {
  display: flex; align-items: center; gap: 16px;
  padding: 12px 18px;
  border-bottom: 1px solid var(--line);
  background: color-mix(in oklch, var(--bg-elev) 80%, transparent);
}
.sc-dots { display: flex; gap: 6px; }
.sc-dots span { width: 10px; height: 10px; border-radius: 50%; background: var(--line-strong); }
.sc-dots span:nth-child(1) { background: oklch(0.72 0.16 30); }
.sc-dots span:nth-child(2) { background: oklch(0.82 0.14 90); }
.sc-dots span:nth-child(3) { background: oklch(0.72 0.16 150); }
.sc-url { font-size: 12px; color: var(--ink-2); flex: 1; }
.sc-status { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--ink-2); }
.dot-live { width: 7px; height: 7px; border-radius: 50%; background: oklch(0.7 0.18 25); box-shadow: 0 0 0 4px color-mix(in oklch, oklch(0.7 0.18 25) 25%, transparent); animation: pulse 1.6s infinite; }

.sc-body {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  min-height: 480px;
}
@media (max-width: 880px) { .sc-body { grid-template-columns: 1fr; } }

.sc-left { padding: 20px; border-right: 1px solid var(--line); }
@media (max-width: 880px) { .sc-left { border-right: none; border-bottom: 1px solid var(--line); } }

.sc-call { display: flex; flex-direction: column; gap: 16px; }
.sc-call-head { display: flex; justify-content: space-between; align-items: flex-start; }
.sc-label { font-size: 11px; color: var(--ink-3); letter-spacing: 0.06em; margin-bottom: 6px; }
.sc-num { font-size: 20px; font-weight: 500; letter-spacing: -0.01em; }

.sc-agent { display: flex; align-items: center; gap: 10px; }
.ag-avatar {
  width: 36px; height: 36px; border-radius: 10px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: var(--accent-ink);
  display: flex; align-items: center; justify-content: center;
}
.ag-name { font-size: 13px; font-weight: 500; }
.ag-meta { font-size: 11px; }

.sc-wave {
  background: var(--bg-elev); border: 1px solid var(--line);
  border-radius: 10px; padding: 12px;
}

.sc-transcript { display: flex; flex-direction: column; gap: 10px; }
.tr-line { display: flex; gap: 12px; align-items: flex-start; padding: 10px 12px; border-radius: 10px; background: var(--bg-elev); border: 1px solid var(--line); font-size: 14px; }
.tr-line.ai { background: color-mix(in oklch, var(--accent) 7%, var(--bg-elev)); border-color: color-mix(in oklch, var(--accent) 25%, var(--line)); }
.tr-who { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--ink-3); text-transform: uppercase; letter-spacing: 0.04em; min-width: 50px; padding-top: 2px; }
.tr-text { color: var(--ink); line-height: 1.5; }
.tr-line.dev .tr-text, .tr-text.dev { font-family: 'Tiro Devanagari Hindi', 'Noto Sans Devanagari', 'Geist', sans-serif; font-size: 15px; }

.typing-dots { display: inline-flex; gap: 4px; padding-top: 8px; }
.typing-dots span {
  width: 5px; height: 5px; border-radius: 50%; background: var(--ink-3);
  animation: typing 1.4s infinite ease-in-out;
}
.typing-dots span:nth-child(2) { animation-delay: 0.2s; }
.typing-dots span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typing { 0%, 60%, 100% { opacity: 0.3; transform: translateY(0); } 30% { opacity: 1; transform: translateY(-3px); } }

/* Right column */
.sc-right { padding: 20px; display: flex; flex-direction: column; gap: 14px; }
.sc-stat-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.sc-stat {
  border: 1px solid var(--line); border-radius: 10px;
  padding: 14px; background: var(--bg-elev);
}
.sc-stat.hl { border-color: color-mix(in oklch, var(--accent) 50%, var(--line)); background: color-mix(in oklch, var(--accent) 6%, var(--bg-elev)); }
.sc-stat-label { font-size: 11px; color: var(--ink-3); margin-bottom: 6px; }
.sc-stat-value { font-family: 'Instrument Serif', serif; font-size: 28px; line-height: 1; letter-spacing: -0.02em; }
.sc-stat-trend { font-size: 11px; color: var(--ink-3); margin-top: 4px; }
.sc-stat.hl .sc-stat-trend { color: var(--accent); }

.sc-recent { border: 1px solid var(--line); border-radius: 10px; background: var(--bg-elev); padding: 12px; flex: 1; }
.sc-section-label { font-size: 10px; color: var(--ink-3); margin-bottom: 8px; padding: 0 4px; }
.sc-recent-row {
  display: grid;
  grid-template-columns: auto 1.1fr 1.4fr auto auto;
  gap: 10px; align-items: center;
  padding: 8px 6px; border-top: 1px dashed var(--line);
  font-size: 13px;
}
.sc-recent-row:first-of-type { border-top: none; }
.sc-flag { font-size: 14px; }
.sc-name { font-weight: 500; }
.sc-intent { font-size: 12px; }
.sc-status-dot { width: 7px; height: 7px; border-radius: 50%; }
.sc-status-dot.ok { background: oklch(0.72 0.16 150); }
.sc-status-dot.warn { background: oklch(0.78 0.15 70); }
.sc-t { font-size: 11px; }

/* ─────────── Call Flow ─────────── */
.callflow {
  border: 1px solid var(--line); border-radius: 14px;
  background: var(--bg-card); padding: 36px 24px;
  overflow-x: auto;
}
.cf-track {
  display: grid;
  grid-template-columns: repeat(6, minmax(140px, 1fr)) ;
  align-items: start;
  position: relative;
  min-width: 900px;
  gap: 0;
}
.cf-track > * { position: relative; }
.cf-node {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 8px;
  transition: transform 0.4s cubic-bezier(0.2,0.7,0.2,1);
}
.cf-node-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--bg-elev); border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-2);
  transition: all 0.4s cubic-bezier(0.2,0.7,0.2,1);
}
.cf-node.passed .cf-node-icon { color: var(--accent); border-color: color-mix(in oklch, var(--accent) 40%, var(--line)); }
.cf-node.active .cf-node-icon {
  color: var(--accent-ink); background: var(--accent);
  border-color: var(--accent);
  transform: scale(1.12);
  box-shadow: 0 0 0 6px color-mix(in oklch, var(--accent) 20%, transparent), 0 8px 22px -6px var(--accent);
}
.cf-node-label { font-size: 14px; font-weight: 500; }
.cf-node-detail { font-size: 11px; color: var(--ink-3); letter-spacing: 0.02em; }
.cf-conn {
  height: 2px; background: var(--line);
  align-self: center; margin-top: 26px; position: relative;
  overflow: hidden;
  /* sit between nodes */
  transform: translateX(0);
}
.cf-conn-fill {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transform: scaleX(0); transform-origin: left;
  transition: transform 1.4s cubic-bezier(0.4, 0.1, 0.2, 1);
}
.cf-conn.passed .cf-conn-fill { transform: scaleX(1); }

/* ─────────── Use cases ─────────── */
.use-card {
  border: 1px solid var(--line); border-radius: 14px;
  background: var(--bg-card); padding: 22px;
  display: flex; flex-direction: column; gap: 12px;
  transition: all 0.2s ease;
}
.use-card:hover { border-color: var(--line-strong); transform: translateY(-2px); box-shadow: var(--shadow-card); }
.use-icon {
  width: 36px; height: 36px; border-radius: 9px;
  background: color-mix(in oklch, var(--accent) 14%, var(--bg-elev));
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
}
.use-title { font-size: 16px; font-weight: 600; margin: 0; letter-spacing: -0.01em; }
.use-body { font-size: 14px; color: var(--ink-2); line-height: 1.55; margin: 0; }
.use-snippet {
  margin-top: 4px;
  font-size: 12px; color: var(--ink-3);
  font-family: 'JetBrains Mono', monospace;
  padding: 8px 10px; border: 1px dashed var(--line); border-radius: 8px;
  background: var(--bg-elev);
}
.use-snippet .dev { font-family: 'Tiro Devanagari Hindi', 'Noto Sans Devanagari', sans-serif; color: var(--ink-2); }

/* ─────────── How it works ─────────── */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; counter-reset: step; }
@media (max-width: 800px) { .steps { grid-template-columns: 1fr; } }
.step {
  border: 1px solid var(--line); border-radius: 14px;
  background: var(--bg-card); padding: 28px 24px;
  position: relative; counter-increment: step;
}
.step-num {
  font-family: 'Instrument Serif', serif;
  font-size: 56px; line-height: 1; color: var(--ink-3);
  letter-spacing: -0.03em;
  margin-bottom: 12px;
  opacity: 0.7;
}
.step h3 { margin: 0 0 8px; font-size: 18px; letter-spacing: -0.01em; }
.step p { margin: 0; color: var(--ink-2); font-size: 14px; line-height: 1.55; }
.step-code {
  margin-top: 14px; font-size: 12px;
  font-family: 'JetBrains Mono', monospace;
  background: var(--code-bg); border: 1px solid var(--line);
  border-radius: 8px; padding: 10px 12px;
  color: var(--ink-2);
}
.step-code .c-comment { color: var(--ink-3); }
.step-code .c-key { color: var(--accent); }

/* ─────────── Pilot sprint ─────────── */
.sprint {
  border: 1px solid var(--line); border-radius: 16px;
  background: linear-gradient(180deg, var(--bg-card), var(--bg-elev));
  padding: 32px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
}
@media (max-width: 800px) { .sprint { grid-template-columns: 1fr; } }
.sprint-head .eyebrow { margin-bottom: 16px; }
.sprint-targets { display: flex; flex-direction: column; gap: 10px; }
.sprint-target {
  display: grid; grid-template-columns: auto 1fr auto; gap: 14px; align-items: center;
  padding: 14px 16px; border: 1px solid var(--line);
  border-radius: 10px; background: var(--bg-card);
}
.st-icon {
  width: 28px; height: 28px; border-radius: 7px;
  background: color-mix(in oklch, var(--accent) 14%, var(--bg-elev));
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-family: 'JetBrains Mono', monospace; font-size: 12px;
}
.st-label { font-size: 14px; }
.st-value { font-family: 'Instrument Serif', serif; font-size: 20px; letter-spacing: -0.01em; }
.st-value .muted { font-family: 'JetBrains Mono', monospace; font-size: 12px; }

/* ─────────── Open source / self-host ─────────── */
.os-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 28px; align-items: stretch; }
@media (max-width: 900px) { .os-grid { grid-template-columns: 1fr; } }
.terminal {
  border: 1px solid var(--line); border-radius: 14px;
  background: oklch(0.16 0.012 260);
  color: oklch(0.92 0.005 80);
  font-family: 'JetBrains Mono', monospace; font-size: 13px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.terminal-bar {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px;
  background: oklch(0.20 0.014 260);
  border-bottom: 1px solid oklch(0.28 0.014 260);
}
.terminal-bar .sc-dots span { background: oklch(0.40 0.02 260); }
.terminal-bar .sc-dots span:nth-child(1) { background: oklch(0.72 0.16 30); }
.terminal-bar .sc-dots span:nth-child(2) { background: oklch(0.82 0.14 90); }
.terminal-bar .sc-dots span:nth-child(3) { background: oklch(0.72 0.16 150); }
.terminal-title { color: oklch(0.62 0.012 260); font-size: 12px; }
.terminal-body { padding: 18px 18px; line-height: 1.65; }
.t-prompt { color: oklch(0.78 0.16 70); }
.t-cmd { color: oklch(0.92 0.005 80); }
.t-out { color: oklch(0.66 0.012 260); }
.t-ok { color: oklch(0.78 0.14 150); }

/* ─────────── Founder block ─────────── */
.founder {
  border: 1px solid var(--line); border-radius: 16px;
  background: var(--bg-card); padding: 36px;
  display: grid; grid-template-columns: auto 1fr auto; gap: 28px; align-items: center;
}
@media (max-width: 800px) { .founder { grid-template-columns: 1fr; text-align: left; } }
.founder-photo {
  width: 88px; height: 88px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Instrument Serif', serif; font-size: 36px;
  color: var(--accent-ink);
}
.founder h3 { margin: 0 0 4px; font-family: 'Instrument Serif', serif; font-size: 28px; letter-spacing: -0.01em; }
.founder-role { font-size: 13px; color: var(--ink-3); font-family: 'JetBrains Mono', monospace; margin-bottom: 10px; }
.founder p { margin: 0; color: var(--ink-2); font-size: 15px; line-height: 1.55; max-width: 60ch; }
.founder-cta { display: flex; flex-direction: column; gap: 8px; }

/* ─────────── Final CTA ─────────── */
.final-cta {
  border: 1px solid var(--line); border-radius: 20px;
  padding: 64px 48px;
  text-align: center;
  background:
    radial-gradient(ellipse at 50% 0%, color-mix(in oklch, var(--accent) 18%, transparent) 0%, transparent 60%),
    var(--bg-card);
  position: relative; overflow: hidden;
}
.final-cta::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, var(--grid) 1px, transparent 1px),
    linear-gradient(to bottom, var(--grid) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, transparent 30%, #000 100%);
  -webkit-mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, transparent 30%, #000 100%);
  opacity: 0.4;
  pointer-events: none;
}
.final-cta > * { position: relative; }
.final-cta h2 {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.05; letter-spacing: -0.02em;
  margin: 12px 0 16px;
  text-wrap: balance;
}
.final-cta p { color: var(--ink-2); margin: 0 auto 28px; max-width: 52ch; font-size: 17px; }
.final-cta .hero-cta { justify-content: center; }
