/* ============================================================
   Cape — Design System
   ============================================================ */

:root {
  --bg: #F9F8F6;
  --card: #F1EDE8;
  --border: rgba(26, 26, 26, 0.07);
  --border-strong: rgba(26, 26, 26, 0.14);
  --joined: #DEDAD4;
  --text: #1A1A1A;
  --text-2: #4A4A4A;
  --meta: #7A7570;
  --cta: #EE7643;
  --cta-press: #D8612F;
  --active: #333333;
  --sage: #9DAE8B;
  --sky: #A6BFCC;
  --lavender: #B8ADC9;
  --tag-terracotta: #FAD7C5;
  --tag-sage: #C9D2BD;
  --tag-sky: #D1DDE3;
  --tag-lavender: #DAD3E2;
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Geist', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 32px;
}

section { padding: 128px 0; }

h1, h2, h3, h4 { margin: 0; color: var(--text); }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* ---------- Type roles ---------- */
.eyebrow {
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-weight: 500;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--meta);
  margin-bottom: 16px;
}

.hero-display {
  font-family: 'Geist', sans-serif;
  font-weight: 600;
  font-size: 80px;
  line-height: 1.0;
  letter-spacing: -0.04em;
  color: var(--text);
}

.h1 {
  font-size: 48px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.h2 {
  font-size: 32px;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.h3 {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.lead {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.005em;
  color: var(--text-2);
  max-width: 65ch;
}

.body { font-size: 16px; line-height: 1.6; color: var(--text-2); max-width: 65ch; }

.meta {
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.02em;
  color: var(--meta);
  line-height: 1.4;
}

.pull-quote {
  font-size: 32px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.02em;
  font-style: italic;
  color: var(--text);
  max-width: 720px;
}

.stat-number {
  font-size: 96px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.05em;
  color: var(--cta);
}

.accent { color: var(--cta); }
.italic-display { font-style: italic; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 18px;
  border-radius: 8px;
  font-family: 'Geist', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1;
  border: 0;
  transition: background-color 200ms ease, color 200ms ease;
  white-space: nowrap;
}

.btn-primary { background: var(--cta); color: #FBF8F2; }
.btn-primary:hover { background: var(--cta-press); }

.btn:disabled,
.btn[disabled] {
  cursor: not-allowed;
  opacity: 0.7;
}
.btn.is-loading {
  background: var(--cta-press);
  animation: btn-pulse 0.9s ease-in-out infinite;
}
@keyframes btn-pulse {
  0%, 100% { opacity: 0.85; }
  50%      { opacity: 1; }
}

.btn-ghost { background: transparent; color: var(--text-2); padding: 0 12px; }
.btn-ghost:hover { color: var(--text); }

.btn-row { display: inline-flex; gap: 12px; flex-wrap: wrap; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(249, 248, 246, 0.85);
  backdrop-filter: saturate(180%) blur(8px);
  -webkit-backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.02em;
}

.logo-mark {
  width: 28px;
  height: 28px;
  display: inline-block;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
  transition: color 200ms ease;
}
.nav-link:hover { color: var(--text); }
.nav-link.active { color: var(--text); }

/* ---------- Hero (home) ---------- */
.hero {
  padding: 128px 0 96px;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 640px) 1fr;
  gap: 64px;
  align-items: center;
}

.hero-eyebrow { margin-bottom: 16px; }
.hero-headline { margin-bottom: 24px; }
.hero-sub { margin-bottom: 48px; }

.hero-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  max-width: 560px;
}

/* ---------- Subpage hero ---------- */
.subhero {
  padding: 128px 0 96px;
}
.subhero .eyebrow { margin-bottom: 16px; }
.subhero h1 { margin-bottom: 24px; }
.subhero .lead { margin-bottom: 48px; }

.subhero-display {
  font-size: 64px;
  font-weight: 600;
  line-height: 1.0;
  letter-spacing: -0.04em;
  color: var(--text);
}

.subhero-narrow .container { max-width: 800px; }

/* ---------- Body section (generic) ---------- */
.section-head { margin-bottom: 64px; max-width: 720px; }
.section-head .h1 { margin-bottom: 24px; }
.section-head .eyebrow { margin-bottom: 16px; }

.section-tight { padding: 96px 0; }
.section-divider { border-top: 1px solid var(--border); }

/* ---------- The shift ---------- */
.shift { padding: 96px 0; }
.shift-header { margin-bottom: 24px; }
.shift-body { margin-bottom: 48px; }
.shift-quote { border-top: 1px solid var(--border); padding-top: 48px; }

/* ---------- Social proof ---------- */
.proof { padding: 96px 0; border-top: 1px solid var(--border); }
.trust-line { color: var(--meta); margin-bottom: 32px; }

.logo-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
  column-gap: 24px;
  row-gap: 32px;
  align-items: center;
  justify-items: center;
  padding: 40px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 96px;
}

.logo-cell {
  font-family: 'Geist', sans-serif;
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.02em;
  color: var(--text-2);
  opacity: 0.85;
}

.logo-img {
  height: 48px;
  width: 100%;
  max-width: 100%;
  object-fit: contain;
  object-position: center;
  opacity: 1;
  display: block;
}

.trust-line-lg {
  text-align: center;
  font-size: 18px;
  line-height: 1.5;
  color: var(--text-2);
  font-family: 'Geist', sans-serif;
  font-weight: 400;
  letter-spacing: -0.005em;
  max-width: 640px;
  margin: 0 auto 40px;
  text-transform: none;
}

.stat-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  align-items: center;
  padding: 64px 0;
}

.stat-row .body { color: var(--text); font-size: 20px; line-height: 1.4; max-width: 32ch; }

.featured-quote {
  margin-top: 96px;
  background: var(--card);
  border-radius: 12px;
  border: 1px solid var(--border);
  padding: 64px;
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 32px;
  align-items: start;
}

.avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: var(--joined);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 24px;
  color: var(--text-2);
  flex-shrink: 0;
  object-fit: cover;
}

.quote-text {
  font-size: 32px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 24px;
}

.quote-attr { font-size: 14px; color: var(--text-2); }
.quote-attr strong { font-weight: 500; color: var(--text); }

/* ---------- Card grids ---------- */
.three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.two-col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

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

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
}

.card .h3 { margin-bottom: 8px; }
.card .meta { margin-bottom: 16px; }
.card .step-label {
  font-family: 'Geist Mono', monospace;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cta);
  margin-bottom: 16px;
}
.card .body { color: var(--text-2); }

/* ---------- Wedge & hosted ---------- */
.wedge { border-top: 1px solid var(--border); }
.wedge-head { margin-bottom: 64px; max-width: 720px; }
.wedge-head .eyebrow { color: var(--cta); }
.wedge-head .h1 { margin-bottom: 24px; }

.example-events {
  margin-top: 48px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 6px;
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--tag-terracotta);
  color: #6E2810;
}

.pill-sage { background: var(--tag-sage); color: #354023; }
.pill-sky { background: var(--tag-sky); color: #1C3540; }
.pill-lav { background: var(--tag-lavender); color: #3A2D50; }

.hosted { border-top: 1px solid var(--border); }
.hosted-head { margin-bottom: 64px; max-width: 720px; }
.hosted-head .h1 { margin-bottom: 24px; }

.pull-line {
  margin-top: 64px;
  padding: 48px;
  background: var(--card);
  border-radius: 12px;
  border: 1px solid var(--border);
  font-size: 32px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.02em;
  max-width: 920px;
}

/* ---------- What Cape Does ---------- */
.what { border-top: 1px solid var(--border); }
.what-head { margin-bottom: 64px; max-width: 720px; }
.what-head .h1 { margin-bottom: 24px; }

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

.cap {
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--bg);
}

.cap-icon { width: 24px; height: 24px; color: var(--text); margin-bottom: 16px; }
.cap .h3 { margin-bottom: 8px; }
.cap .body { font-size: 15px; }

.chat-input {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  max-width: 720px;
}

.chat-input-header { display: flex; align-items: center; gap: 8px; margin-bottom: 24px; }
.chat-input-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--cta); }
.chat-prompts { display: flex; flex-direction: column; gap: 12px; }

.prompt {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 15px;
  color: var(--text);
  font-style: italic;
  display: flex;
  align-items: center;
  gap: 12px;
}

.prompt-arrow { width: 16px; height: 16px; color: var(--meta); flex-shrink: 0; }

/* ---------- Integrations ---------- */
.integrations { border-top: 1px solid var(--border); padding: 96px 0; }
.integrations-head { margin-bottom: 48px; max-width: 720px; }

/* ---------- Who Cape is for / personas ---------- */
.for { border-top: 1px solid var(--border); }
.for-head { margin-bottom: 64px; }
.for-head .h1 { margin-bottom: 0; }

.persona-card {
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--card);
  display: flex;
  flex-direction: column;
}

.persona-icon { width: 32px; height: 32px; margin-bottom: 24px; color: var(--cta); }

.persona-card h3 { margin-bottom: 12px; }

.persona-hook {
  font-style: italic;
  color: var(--text);
  font-weight: 500;
  margin-bottom: 24px;
  flex: 1;
  display: flex;
  align-items: center;
  min-height: 56px;
}

.persona-body { margin-bottom: 24px; color: var(--text-2); font-size: 15px; }

.persona-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  transition: color 200ms ease;
}

.persona-link:hover { color: var(--cta); }

/* ---------- More customer love ---------- */
.love { border-top: 1px solid var(--border); }
.love-head { margin-bottom: 64px; max-width: 720px; }

.love-card {
  padding: 32px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
}

.love-quote {
  font-size: 18px;
  line-height: 1.5;
  color: var(--text);
  margin-bottom: 32px;
  font-weight: 500;
  flex: 1;
}

.love-attr { display: flex; align-items: center; gap: 12px; }

.avatar-sm {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--joined);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 14px;
  color: var(--text-2);
  flex-shrink: 0;
  object-fit: cover;
}

.love-name { font-size: 14px; font-weight: 500; color: var(--text); line-height: 1.3; }
.love-role { font-size: 13px; color: var(--meta); line-height: 1.3; }

/* ---------- Final CTA ---------- */
.final {
  border-top: 1px solid var(--border);
  text-align: center;
}

.final .h1 { margin-bottom: 48px; }
.final .btn-row { justify-content: center; }

/* ---------- Footer ---------- */
footer {
  border-top: 1px solid var(--border);
  padding: 48px 0;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-nav a {
  font-size: 13px;
  color: var(--text-2);
  transition: color 200ms ease;
}
.footer-nav a:hover { color: var(--text); }

.footer-meta { font-size: 13px; color: var(--meta); }

/* ---------- Conferences page: 5-step workflow ---------- */
.workflow {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.workflow-step {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  padding: 48px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  align-items: center;
}

.workflow-step:nth-child(even) {
  grid-template-areas: "mock copy";
}
.workflow-step:nth-child(even) .workflow-step-copy { grid-area: copy; }
.workflow-step:nth-child(even) .workflow-step-mock { grid-area: mock; }

.workflow-step-num {
  font-family: 'Geist Mono', monospace;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cta);
  margin-bottom: 16px;
}

.workflow-step-copy h3 { margin-bottom: 12px; }
.workflow-step-copy .body { margin-top: 12px; }

.workflow-step-mock {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  overflow: hidden;
}

.mock-row {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 10px 12px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 13px;
}

.mock-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--joined);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 500;
  color: var(--text-2);
}

.mock-label { font-weight: 500; color: var(--text); }
.mock-sub { font-size: 11px; color: var(--meta); font-family: 'Geist Mono', monospace; }
.mock-tag {
  font-family: 'Geist Mono', monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 4px;
  background: var(--tag-sage);
  color: #354023;
}
.mock-tag.cold { background: var(--joined); color: var(--text-2); }
.mock-tag.warm { background: var(--tag-terracotta); color: #6E2810; }

.mock-line {
  height: 8px;
  background: var(--joined);
  border-radius: 4px;
}

.mock-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
}

.mock-progress {
  flex: 1;
  height: 4px;
  background: var(--joined);
  border-radius: 2px;
  overflow: hidden;
}
.mock-progress-fill {
  height: 100%;
  background: var(--cta);
  width: 68%;
}

.mock-message {
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 12px;
  color: var(--text-2);
  line-height: 1.5;
  font-style: italic;
  background: var(--bg);
}

/* ---------- Comparison table ---------- */
.compare {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
}

.compare-table thead th {
  text-align: left;
  font-family: 'Geist Mono', monospace;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--meta);
  padding: 24px 32px;
  border-bottom: 1px solid var(--border);
}

.compare-table thead th:last-child {
  color: var(--text);
}

.compare-table td {
  padding: 20px 32px;
  border-bottom: 1px solid var(--border);
  font-size: 16px;
  vertical-align: top;
  width: 50%;
}

.compare-table tr:last-child td { border-bottom: 0; }

.compare-table td:first-child {
  color: var(--text-2);
  text-decoration: line-through;
  text-decoration-color: rgba(26, 26, 26, 0.3);
}

.compare-table td:last-child {
  color: var(--text);
  font-weight: 500;
  background: rgba(238, 118, 67, 0.04);
}

/* ---------- Waitlist modal ---------- */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(26, 26, 26, 0.4);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
  z-index: 100;
  padding: 24px;
}
.modal-overlay.open { display: flex; }

.modal {
  background: var(--bg);
  border-radius: 12px;
  border: 1px solid var(--border);
  max-width: 480px;
  width: 100%;
  padding: 48px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: transparent;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-2);
  transition: background 200ms ease;
}
.modal-close:hover { background: var(--card); color: var(--text); }

.modal-header { margin-bottom: 32px; }
.modal-title { font-size: 28px; font-weight: 600; letter-spacing: -0.02em; margin-bottom: 8px; }
.modal-sub { color: var(--text-2); font-size: 15px; }

form { display: flex; flex-direction: column; gap: 20px; }

.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-size: 13px; font-weight: 500; color: var(--text-2); }
.field input, .field select {
  height: 44px;
  background: var(--bg);
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  padding: 0 14px;
  font-family: 'Geist', sans-serif;
  font-size: 15px;
  color: var(--text);
  transition: border-color 200ms ease;
}
.field input:focus, .field select:focus { outline: none; border-color: var(--text); }

.form-actions { margin-top: 8px; }
.form-actions .btn { width: 100%; }

.success { display: none; text-align: left; }
.success.open { display: block; }
.success-title { font-size: 24px; font-weight: 600; letter-spacing: -0.02em; margin-bottom: 12px; }
.success-body { color: var(--text-2); margin-bottom: 32px; }
.success-cta { font-size: 14px; color: var(--text-2); }
.success-cta a { color: var(--cta); font-weight: 500; }

/* ---------- Hero graph animation ---------- */
.graph-link { stroke: rgba(26, 26, 26, 0.12); stroke-width: 1.2; fill: none; }
.graph-link.strong { stroke: var(--cta); stroke-width: 2; }
.graph-node-bg { fill: var(--bg); stroke: rgba(26, 26, 26, 0.12); stroke-width: 1; }
.graph-node-center { fill: var(--text); stroke: var(--text); }
.graph-label { font-family: 'Geist Mono', monospace; font-size: 10px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; fill: var(--text-2); }
.graph-label-center { fill: #FBF8F2; font-family: 'Geist', sans-serif; font-weight: 500; letter-spacing: -0.01em; }

@keyframes pulse-strong {
  0%, 100% { stroke-opacity: 0.25; }
  40%, 60% { stroke-opacity: 1; }
}
.graph-link.strong { animation: pulse-strong 4s ease-in-out infinite; }

@keyframes node-glow {
  0%, 100% { r: 6; opacity: 0.4; }
  40%, 60% { r: 10; opacity: 1; }
}
.glow-dot { fill: var(--cta); animation: node-glow 4s ease-in-out infinite; }

@media (prefers-reduced-motion: reduce) {
  .graph-link.strong, .glow-dot { animation: none; }
}

/* ---------- Conferences "Why this matters" visual ---------- */
.why-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}

.why-visual { display: flex; flex-direction: column; }

.sheet-mock {
  background: var(--bg);
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  overflow: hidden;
}

.sheet-title {
  background: var(--card);
  border-bottom: 1px solid var(--border);
  padding: 12px 14px;
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  color: var(--meta);
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 8px;
}
.sheet-title svg { color: var(--cta); flex-shrink: 0; }

.sheet-row {
  display: grid;
  grid-template-columns: 32px 1.3fr 1fr 1.2fr;
  border-bottom: 1px solid var(--border);
  font-family: 'Geist Mono', monospace;
  font-size: 12px;
  color: var(--text-2);
}
.sheet-row:last-child { border-bottom: 0; }

.sheet-row > span {
  padding: 9px 10px;
  border-right: 1px solid var(--border);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sheet-row > span:last-child { border-right: 0; }

.sheet-header { background: var(--card); }
.sheet-header > span {
  text-align: left;
  color: var(--meta);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 10px;
}
.sheet-header > span:first-child { text-align: center; }

.cell-num {
  text-align: center;
  color: var(--meta);
  background: var(--card);
}

.cell-highlight {
  background: rgba(238, 118, 67, 0.14);
  color: var(--cta);
  font-weight: 500;
}

.cell-faded { color: var(--meta); opacity: 0.6; }

.cell-empty {
  text-align: center;
  color: var(--meta);
  font-style: italic;
}

.sheet-strike {
  background: rgba(26, 26, 26, 0.025);
}
.sheet-strike > span:not(.cell-num) {
  text-decoration: line-through;
  text-decoration-color: rgba(26, 26, 26, 0.4);
  color: var(--meta);
}

/* ---------- Partnerships "Focus on relationships" visual ---------- */
.partner-board {
  background: var(--bg);
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.partner-row {
  display: grid;
  grid-template-columns: 14px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 12px 14px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
}

.partner-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin: 2px;
}

.partner-dot.good { background: #6F9D62; }
.partner-dot.warn { background: var(--cta); }
.partner-dot.bad  { background: #B5ADA5; }

.partner-name {
  font-weight: 500;
  font-size: 14px;
  color: var(--text);
  line-height: 1.3;
}

.partner-meta {
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  color: var(--meta);
  line-height: 1.3;
  margin-top: 3px;
  letter-spacing: 0.02em;
}

.partner-score {
  font-family: 'Geist Mono', monospace;
  font-size: 14px;
  font-weight: 500;
}

.partner-score.good { color: #4A6E40; }
.partner-score.warn { color: var(--cta-press); }
.partner-score.bad  { color: var(--meta); }

/* ---------- Event Marketers "Fill every room" visual ---------- */
.event-board {
  background: var(--bg);
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  overflow: hidden;
}

.event-board-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: var(--card);
  border-bottom: 1px solid var(--border);
}

.event-name {
  font-weight: 500;
  font-size: 13px;
  color: var(--text);
  letter-spacing: -0.005em;
}

.event-meta-pill {
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  color: var(--cta);
  letter-spacing: 0.04em;
  font-weight: 500;
}

.event-row {
  display: grid;
  grid-template-columns: 14px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 11px 18px;
  border-bottom: 1px solid var(--border);
}
.event-row:last-child { border-bottom: 0; }

.event-name-cell {
  font-weight: 500;
  font-size: 13px;
  color: var(--text);
  line-height: 1.3;
}

.event-sub-cell {
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  color: var(--meta);
  line-height: 1.3;
  margin-top: 2px;
  letter-spacing: 0.02em;
}

.event-via {
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  color: var(--text-2);
  padding: 4px 10px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 6px;
  white-space: nowrap;
  font-weight: 500;
}
.event-via.declined { color: var(--meta); opacity: 0.55; border-style: dashed; }

/* ---------- Founder-led GTM "Time math" visual ---------- */
.math-board {
  background: var(--bg);
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  padding: 28px;
}

.math-header {
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  color: var(--meta);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.math-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-family: 'Geist Mono', monospace;
  font-size: 13px;
}

.math-label { color: var(--text-2); }
.math-value { font-weight: 500; color: var(--text); white-space: nowrap; }

.math-subtotal {
  border-top: 1px solid var(--text);
  border-bottom: 0;
  padding-top: 14px;
  margin-top: 6px;
}
.math-subtotal .math-label,
.math-subtotal .math-value {
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.02em;
}

.math-multiply {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 18px 0 14px;
  font-family: 'Geist Mono', monospace;
  font-size: 14px;
  color: var(--text);
}
.math-multiply-x { font-size: 18px; color: var(--meta); }
.math-multiply-text { font-weight: 500; }

.math-total {
  padding-top: 20px;
  border-top: 2px solid var(--text);
}
.math-total-label {
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  color: var(--meta);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.math-total-value {
  font-size: 56px;
  font-weight: 600;
  letter-spacing: -0.04em;
  color: var(--cta);
  line-height: 1;
}
.math-tagline {
  margin-top: 12px;
  font-style: italic;
  color: var(--text);
  font-size: 14px;
}

/* ---------- Conferences hero visual ---------- */
.conf-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
}

.conf-mock {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
}

.conf-mock h4 {
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--meta);
  margin-bottom: 16px;
}

/* ============================================================
   Homepage v2 — Draftboard-inspired visual sections
   ============================================================ */

/* ---------- Hero product card ---------- */
.hero-product-card {
  background: var(--bg);
  border: 1px solid var(--border-strong);
  border-radius: 16px;
  padding: 28px;
  width: 100%;
  max-width: 520px;
}

.hero-product-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.hero-product-target {
  display: flex;
  align-items: center;
  gap: 12px;
}

.target-logo {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--text);
  color: #FBF8F2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.02em;
}

.target-name { font-weight: 600; font-size: 16px; line-height: 1.2; }
.target-sub { font-family: 'Geist Mono', monospace; font-size: 10px; color: var(--meta); letter-spacing: 0.06em; text-transform: uppercase; line-height: 1.2; margin-top: 4px; }

.paths-meta {
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  color: var(--cta);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
}

.path-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 8px;
  padding: 16px 0;
}

.path-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-width: 0;
  text-align: center;
}

.path-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 14px;
  flex-shrink: 0;
}

.path-avatar.you {
  background: var(--text);
  color: #FBF8F2;
}

.path-name {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
  color: var(--text);
}

.path-role {
  font-size: 10px;
  color: var(--meta);
  line-height: 1.2;
  font-family: 'Geist Mono', monospace;
  letter-spacing: 0.04em;
}

.path-arrow {
  color: var(--cta);
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}

.match-score-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.match-score-label {
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  color: var(--meta);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.match-score-value {
  font-weight: 600;
  font-size: 22px;
  color: var(--cta);
  letter-spacing: -0.02em;
}

.path-reasons { padding-top: 16px; }

.path-reasons-title {
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  color: var(--meta);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.path-reasons ul { margin: 0; padding: 0; list-style: none; }

.path-reasons li {
  font-size: 13px;
  color: var(--text-2);
  margin-bottom: 6px;
  padding-left: 14px;
  position: relative;
}

.path-reasons li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--cta);
}

.intro-cta {
  margin-top: 20px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* ---------- Two-side problem visualization ---------- */
.two-side {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 64px;
}

.side-mock {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
}

.side-mock-label {
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  color: var(--meta);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.email-composer {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px;
  font-size: 13px;
  line-height: 1.55;
  margin-bottom: 16px;
  flex: 1;
}

.email-composer-prompt {
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  color: var(--meta);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.email-composer-prompt span { color: var(--cta); text-transform: none; letter-spacing: 0; font-family: 'Geist', sans-serif; font-size: 13px; }

.email-composer-output {
  color: var(--text);
  font-family: 'Geist', sans-serif;
  font-size: 13px;
  line-height: 1.55;
}

.email-composer-cursor {
  display: inline-block;
  width: 7px;
  height: 14px;
  background: var(--cta);
  vertical-align: -2px;
  margin-left: 2px;
  animation: blink 1s ease-in-out infinite;
}

@keyframes blink {
  0%, 49% { opacity: 1; }
  50%, 100% { opacity: 0; }
}

.compose-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  color: var(--meta);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.compose-button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: var(--text);
  color: #FBF8F2;
  border-radius: 6px;
  font-family: 'Geist', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

/* ---------- Line chart ---------- */
.chart-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.chart-svg {
  display: block;
  width: 100%;
  height: auto;
  flex: 1;
}

.chart-caption {
  margin-top: 12px;
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  color: var(--meta);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.chart-headline {
  font-size: 14px;
  color: var(--text);
  letter-spacing: -0.01em;
  font-family: 'Geist', sans-serif;
  text-transform: none;
  font-weight: 500;
  margin-bottom: 4px;
}

/* ---------- Response-rate bars ---------- */
.bars-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  margin-top: 24px;
}

.bars-title {
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  color: var(--meta);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.bars-compare {
  display: grid;
  grid-template-columns: 100px 1fr 80px;
  gap: 16px;
  align-items: center;
  padding: 12px 0;
}

.bars-compare + .bars-compare { border-top: 1px solid var(--border); }

.bars-compare-label {
  font-family: 'Geist Mono', monospace;
  font-size: 12px;
  color: var(--text);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.bars-track {
  height: 14px;
  background: var(--joined);
  border-radius: 7px;
  overflow: hidden;
}

.bars-fill { height: 100%; border-radius: 7px; }
.bars-fill.cold { width: 3%; background: var(--text-2); }
.bars-fill.warm { width: 100%; background: var(--cta); }

.bars-value {
  font-family: 'Geist Mono', monospace;
  font-size: 14px;
  font-weight: 500;
  text-align: right;
  color: var(--text);
}

/* ---------- Mini UI mock inside card grid ---------- */
.mini-mock {
  margin-top: 24px;
  padding: 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mini-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
}

.mini-avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 500;
  flex-shrink: 0;
}

.mini-name { font-weight: 500; color: var(--text); line-height: 1.2; }
.mini-meta {
  color: var(--meta);
  font-family: 'Geist Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.04em;
  margin-left: auto;
  text-transform: uppercase;
}

.mini-info { display: flex; flex-direction: column; min-width: 0; }
.mini-sub {
  font-size: 11px;
  color: var(--meta);
  line-height: 1.2;
  margin-top: 2px;
  font-family: 'Geist Mono', monospace;
}

/* ---------- Avatar color variants ---------- */
.av-1 { background: var(--tag-terracotta); color: #6E2810; }
.av-2 { background: var(--tag-sage); color: #354023; }
.av-3 { background: var(--tag-sky); color: #1C3540; }
.av-4 { background: var(--tag-lavender); color: #3A2D50; }
.av-5 { background: var(--joined); color: var(--text-2); }

/* ---------- Persona snapshot ---------- */
.persona-snapshot {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 24px;
}

.persona-snapshot-title {
  font-family: 'Geist Mono', monospace;
  font-size: 10px;
  color: var(--meta);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

/* ---------- Customer love stat ---------- */
.love-stat {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.love-stat-number {
  font-size: 36px;
  font-weight: 600;
  letter-spacing: -0.04em;
  color: var(--cta);
  line-height: 1;
}

.love-stat-label {
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  color: var(--meta);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.3;
}

/* ---------- Capability card v2 ---------- */
.cap-grid-v2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}

.cap-v2 {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--card);
}

.cap-v2-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.cap-v2-icon-wrap {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--bg);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cta);
  flex-shrink: 0;
}

.cap-v2-icon { width: 20px; height: 20px; }

.cap-v2 .body { margin-bottom: 16px; }

/* ---------- Hero meta line below CTA ---------- */
.hero-cta-meta {
  margin-top: 24px;
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  color: var(--meta);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ---------- Big stat row (34x) ---------- */
.stat-callout {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 48px;
  margin: 64px 0 0;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: center;
}

.stat-callout-left { display: flex; flex-direction: column; }
.stat-callout-num {
  font-size: 120px;
  font-weight: 600;
  letter-spacing: -0.05em;
  color: var(--cta);
  line-height: 1;
}
.stat-callout-cap {
  margin-top: 16px;
  font-size: 18px;
  color: var(--text);
  line-height: 1.4;
  font-weight: 500;
  max-width: 32ch;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .container { padding: 0 24px; }
  section { padding: 80px 0; }
  .hero { padding: 80px 0 64px; }
  .subhero { padding: 80px 0 64px; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { max-width: 400px; margin: 0; }
  .hero-display { font-size: 44px; }
  .subhero-display { font-size: 40px; }
  .h1 { font-size: 32px; }
  .h2 { font-size: 24px; }
  .lead, .hero-sub { font-size: 17px; }
  .stat-number { font-size: 64px; }
  .pull-quote { font-size: 24px; }
  .quote-text { font-size: 22px; }
  .featured-quote { grid-template-columns: 1fr; padding: 32px; gap: 24px; }
  .avatar { width: 64px; height: 64px; font-size: 18px; }
  .three-col, .two-col, .four-step { grid-template-columns: 1fr; }
  .capability-grid { grid-template-columns: 1fr; }
  .pull-line { font-size: 22px; padding: 32px; }
  .stat-row { grid-template-columns: 1fr; gap: 16px; }
  .logo-strip { column-gap: 16px; row-gap: 24px; padding: 32px 0; grid-template-columns: repeat(auto-fit, minmax(70px, 1fr)); }
  .logo-cell { font-size: 16px; }
  .logo-img { height: 36px; }
  .card { padding: 24px; }
  .nav-links { display: none; }
  .modal { padding: 32px; }
  .workflow-step {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px;
  }
  .workflow-step:nth-child(even) .workflow-step-copy,
  .workflow-step:nth-child(even) .workflow-step-mock {
    grid-area: auto;
  }
  .compare-table td, .compare-table thead th { padding: 16px 20px; font-size: 14px; }

  /* Homepage v2 mobile */
  .two-side { grid-template-columns: 1fr; gap: 16px; }
  .hero-product-card { max-width: 100%; padding: 20px; }
  .path-flow { gap: 4px; }
  .path-avatar { width: 36px; height: 36px; font-size: 12px; }
  .path-arrow { width: 12px; height: 12px; }
  .bars-compare { grid-template-columns: 70px 1fr 50px; gap: 8px; }
  .cap-grid-v2 { grid-template-columns: 1fr; }
  .stat-callout { grid-template-columns: 1fr; padding: 32px; gap: 24px; }
  .stat-callout-num { font-size: 80px; }
  .why-grid { grid-template-columns: 1fr; gap: 32px; }
  .sheet-row { grid-template-columns: 28px 1.4fr 1fr 1.2fr; font-size: 11px; }
  .sheet-row > span { padding: 8px; }
}
