/**
 * Patterns inspired by top consulting & venture-studio sites
 * (McKinsey/Bain: paths + insights; Atomic/Athanor: model + process)
 */

/* Audience paths (McKinsey-style visitor routing) */
.audience-paths {
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--border-subtle);
}

.path-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.75rem;
  border-radius: 1rem;
  border: 1px solid var(--border-subtle);
  background: var(--bg-primary);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.path-card:hover {
  border-color: rgba(34, 211, 238, 0.4);
  box-shadow: 0 12px 32px rgba(26, 35, 50, 0.08);
  transform: translateY(-2px);
}

.path-card__label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-start);
}

.path-card h3 {
  margin-top: 0.75rem;
  font-size: 1.25rem;
  color: var(--text-heading);
}

.path-card p {
  margin-top: 0.5rem;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--text-secondary);
  flex: 1;
}

.path-card--consulting {
  border-top: 3px solid #22d3ee;
}

.path-card--insights {
  border-top: 3px solid #0d9488;
}

.path-card--about {
  border-top: 3px solid #b45309;
}

/* Stats band (Bain-style credibility) */
.stats-band {
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border-subtle);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  text-align: center;
}

@media (max-width: 640px) {
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.stat-item {
  padding: 1.25rem 1rem;
  border-radius: 0.75rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
}

.stat-value {
  display: block;
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1;
  color: var(--text-heading);
}

.stat-label {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.35;
}

/* Process steps (Atomic-style) */
.process-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .process-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.process-step {
  padding: 1.5rem;
  border-radius: 1rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
}

.process-step__num {
  display: block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--accent-start);
}

.process-step h3 {
  margin-top: 0.75rem;
  font-size: 1.125rem;
  color: var(--text-heading);
}

.process-step p {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--text-secondary);
}

/* Featured insight spotlight (McKinsey-style) */
.featured-insight {
  background: linear-gradient(135deg, #eef2f8 0%, var(--bg-primary) 100%);
  border-block: 1px solid var(--border-subtle);
}

.featured-insight__grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .featured-insight__grid {
    grid-template-columns: 1.1fr 1fr;
    gap: 3rem;
  }
}

.featured-insight__eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-start);
}

.featured-insight h2 {
  margin-top: 0.75rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.2;
  color: var(--text-heading);
}

.featured-insight__deck {
  margin-top: 1rem;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-secondary);
  max-width: 36rem;
}

.featured-insight__visual {
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 16px 40px rgba(26, 35, 50, 0.1);
}

.featured-insight__visual img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

/* Quote band */
.quote-band {
  background: var(--bg-secondary);
}

.quote-band__inner {
  max-width: 40rem;
  margin: 0 auto;
  text-align: center;
  border: none;
  padding: 0;
}

.quote-band__inner p {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  line-height: 1.5;
  color: var(--text-heading);
  font-style: italic;
}

.quote-band__inner footer {
  margin-top: 1.25rem;
  font-size: 0.875rem;
  font-style: normal;
  color: var(--text-secondary);
}

/* Three modes (Athanor / studio model on About) */
.studio-modes {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .studio-modes {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
  }
}

.studio-mode {
  padding: 1.75rem;
  border-radius: 1rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-top-width: 3px;
}

.studio-mode--ventures {
  border-top-color: #b45309;
}

.studio-mode--consulting {
  border-top-color: #2563eb;
}

.studio-mode--insights {
  border-top-color: #0d9488;
}

.studio-mode h3 {
  font-size: 1.125rem;
  color: var(--text-heading);
}

.studio-mode p {
  margin-top: 0.65rem;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--text-secondary);
}

.studio-mode a {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent-start);
  text-decoration: none;
}

.studio-mode a:hover {
  text-decoration: underline;
}

/* Consulting outcomes (Bain-style) */
.outcomes-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .outcomes-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.outcome-card {
  padding: 1.5rem;
  border-radius: 0.75rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
}

.outcome-card h3 {
  font-size: 1rem;
  color: var(--text-heading);
}

.outcome-card p {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--text-secondary);
}
