/* CLAWOLF Executive Visual Language — cards & content grids */

.exec-card-grid {
  display: grid;
  gap: var(--exec-space-6);
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

.exec-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: var(--exec-space-8);
  background: var(--exec-bg-elevated);
  border: 1px solid var(--exec-border);
  border-radius: var(--exec-radius-lg);
  box-shadow: var(--exec-shadow-sm);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.exec-card:hover {
  border-color: var(--exec-indigo-400);
  box-shadow: var(--exec-shadow-md);
  transform: translateY(-2px);
}

.exec-card__label {
  font-family: var(--exec-font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--exec-indigo-600);
  margin-bottom: var(--exec-space-3);
}

.exec-card h3 {
  margin: 0 0 var(--exec-space-3);
  font-size: 1.35rem;
  font-weight: 650;
  line-height: 1.25;
  color: var(--exec-navy-900);
}

.exec-card p {
  margin: 0;
  flex: 1;
  font-size: var(--exec-text-base);
  color: var(--exec-ink-muted);
  line-height: var(--exec-leading);
}

.exec-card--arch {
  border-top: 3px solid var(--exec-indigo-500);
}

.exec-card--live {
  border-top: 3px solid var(--exec-cyan-500);
}

/* Legacy Growth Lab card mapping inside exec-content-zone */
.exec-content-zone .grid {
  display: grid;
  gap: var(--exec-space-6);
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

.exec-content-zone .card {
  min-height: 0;
  border: 1px solid var(--exec-border);
  border-radius: var(--exec-radius-lg);
  background: var(--exec-bg-elevated);
  box-shadow: var(--exec-shadow-sm);
  overflow: hidden;
}

.exec-content-zone .card-body {
  padding: var(--exec-space-6);
}

.exec-content-zone .card h3 {
  margin-top: var(--exec-space-4);
  font-size: 1.25rem;
  font-weight: 650;
  line-height: 1.3;
  color: var(--exec-navy-900);
}

.exec-content-zone .card p {
  margin-top: var(--exec-space-3);
  font-size: var(--exec-text-base);
  color: var(--exec-ink-muted);
  line-height: var(--exec-leading);
}

.exec-content-zone .meta {
  font-family: var(--exec-font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--exec-ink-soft);
}

.exec-content-zone .pill {
  border: 1px solid var(--exec-border-strong);
  color: var(--exec-cyan-600);
  background: rgba(0, 184, 212, 0.06);
  border-radius: 999px;
  padding: 0.2rem 0.5rem;
  font-size: 0.7rem;
}

.exec-content-zone .card-media {
  border-bottom: 1px solid var(--exec-border);
  background: var(--exec-bg-subtle);
}

.exec-content-zone .platform-row a {
  font-family: var(--exec-font-mono);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--exec-cyan-600);
  border: 1px solid var(--exec-border);
  border-radius: 999px;
  padding: 0.35rem 0.55rem;
  text-decoration: none;
}

.exec-content-zone .platform-row a:hover {
  border-color: var(--exec-cyan-500);
  color: var(--exec-navy-800);
}

.exec-content-zone .channel-bar {
  border: 1px solid var(--exec-border);
  border-radius: var(--exec-radius-md);
  background: var(--exec-bg-elevated);
  box-shadow: var(--exec-shadow-sm);
  padding: var(--exec-space-4) var(--exec-space-6);
  margin-bottom: var(--exec-space-4);
}

.exec-content-zone .thesis-card {
  border: 1px solid var(--exec-border);
  border-radius: var(--exec-radius-lg);
  background: var(--exec-bg-elevated);
  padding: var(--exec-space-8);
}

.exec-content-zone .thesis-card h2 {
  font-size: 1.5rem;
  color: var(--exec-navy-900);
}

.exec-content-zone .signal-list div {
  border: 1px solid var(--exec-border);
  border-radius: var(--exec-radius-md);
  padding: var(--exec-space-4);
  background: var(--exec-bg-page);
  color: var(--exec-ink-muted);
  font-size: var(--exec-text-base);
}

.exec-content-zone .signal-list strong {
  color: var(--exec-navy-800);
  font-size: 1.0625rem;
}

.exec-content-zone details.card-full-copy summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--exec-cyan-600);
  margin-top: var(--exec-space-3);
}

@media (max-width: 860px) {
  .exec-content-zone .grid {
    grid-template-columns: 1fr;
  }
}

.exec-card-grid--marketplace {
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

.exec-card--marketplace {
  border-top: 3px solid var(--exec-indigo-500);
}

.exec-marketplace-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 3.5rem;
  margin-bottom: var(--exec-space-4);
  padding: var(--exec-space-3);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--exec-navy-800);
  background: var(--exec-bg-subtle);
  border-radius: var(--exec-radius-md);
  text-align: center;
}

.exec-status-badge {
  display: inline-block;
  margin: 0 0 var(--exec-space-3);
  padding: 0.25rem 0.65rem;
  font-family: var(--exec-font-mono);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--exec-indigo-600);
  background: rgba(94, 106, 210, 0.1);
  border-radius: var(--exec-radius-sm);
}

.exec-status-pending {
  font-size: 0.9375rem;
  color: var(--exec-ink-muted);
  font-style: italic;
}

.exec-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  padding: 0.65rem 1rem;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--exec-radius-sm);
  border: 1px solid var(--exec-border-strong);
}

.exec-btn--primary {
  color: #fff;
  background: var(--exec-navy-800);
  border-color: var(--exec-navy-800);
}

.exec-btn--primary:hover {
  background: var(--exec-navy-700);
  color: #fff;
}

.exec-btn--disabled {
  color: var(--exec-ink-soft);
  background: var(--exec-bg-subtle);
  cursor: not-allowed;
}

.exec-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--exec-space-3);
  margin-top: var(--exec-space-6);
}

.exec-inpage-nav {
  margin-bottom: var(--exec-space-8);
  padding: var(--exec-space-4);
  background: var(--exec-bg-elevated);
  border: 1px solid var(--exec-border);
  border-radius: var(--exec-radius-md);
}

.exec-inpage-nav__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.exec-inpage-nav__link {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--exec-cyan-600);
  text-decoration: none;
}

.exec-scope-list {
  margin: var(--exec-space-3) 0;
  padding-left: 1.25rem;
  color: var(--exec-ink-body);
  font-size: var(--exec-text-base);
  line-height: var(--exec-leading);
}

.exec-card__meta {
  font-size: 0.9375rem;
  color: var(--exec-ink-muted);
  line-height: 1.55;
}

.exec-card__sub {
  margin: -0.25rem 0 var(--exec-space-3);
  font-size: 0.9375rem;
  color: var(--exec-ink-soft);
}

.exec-subsection--subordinate {
  opacity: 0.98;
  border-top: 1px solid var(--exec-border);
  padding-top: var(--exec-space-12);
  margin-top: var(--exec-space-12);
}

