/* Examples gallery page styles */

.examples-hero {
  padding: 120px 48px 64px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.examples-hero .section-eyebrow { margin-bottom: 20px; }
.examples-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 20px;
}
.examples-hero p {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Loading state */
.loading-state {
  text-align: center;
  padding: 80px 48px;
}
.loading-spinner {
  width: 48px;
  height: 48px;
  border: 3px solid var(--border);
  border-top-color: var(--accent);
  border-radius: 50%;
  margin: 0 auto 24px;
  animation: spin 0.9s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.loading-state p { color: var(--text-muted); font-size: 15px; }

.error-state {
  text-align: center;
  padding: 60px 48px;
  color: var(--accent);
  font-size: 15px;
}

/* Concepts grid */
.concepts-section {
  padding: 0 48px 96px;
  max-width: 1200px;
  margin: 0 auto;
}
.concepts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

/* Channel card */
.channel-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s;
  animation: fadeUp 0.5s ease-out both;
}
.channel-card:hover { border-color: var(--accent); }

.card-header {
  background: var(--surface-2);
  border-bottom: 1px solid var(--border);
  padding: 24px 28px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.card-emoji { font-size: 32px; line-height: 1; flex-shrink: 0; }
.card-header-meta { flex: 1; min-width: 0; }
.card-niche-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  padding: 3px 8px;
  border-radius: 4px;
  margin-bottom: 8px;
}
.card-channel-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
  line-height: 1.2;
}
.card-tagline { font-size: 13px; color: var(--text-muted); line-height: 1.5; }

/* Thumbnail mockup */
.card-thumbnail {
  position: relative;
  aspect-ratio: 16/9;
  background: var(--surface-2);
  overflow: hidden;
  flex-shrink: 0;
}
.thumb-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.thumb-gradient { position: absolute; inset: 0; }
.thumb-title-overlay {
  position: relative;
  z-index: 2;
  padding: 16px 20px;
  font-family: var(--font-display);
  font-size: clamp(13px, 2vw, 17px);
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
  text-shadow: 0 2px 12px rgba(0,0,0,0.8);
  max-width: 80%;
  text-align: center;
}
.thumb-play-btn {
  position: absolute;
  bottom: 12px;
  right: 12px;
  z-index: 3;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(4px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.25);
}
.thumb-play-btn svg { width: 14px; height: 14px; }

/* Revenue strip */
.card-revenue-strip {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--border);
}
.revenue-item {
  flex: 1;
  padding: 16px 20px;
  border-right: 1px solid var(--border);
}
.revenue-item:last-child { border-right: none; }
.revenue-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 4px;
}
.revenue-value {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
}
.revenue-value.green { color: #28C840; }

/* Card body */
.card-body {
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
}
.card-video-title {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 18px;
}
.field-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 6px;
}
.video-title-text {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.4;
}
.card-hook { border-left: 2px solid var(--accent); padding-left: 16px; }
.hook-text { font-size: 14px; color: var(--text-muted); line-height: 1.6; font-style: italic; }

/* Collapsible */
.collapsible { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.collapsible-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  background: var(--bg);
  cursor: pointer;
  list-style: none;
  user-select: none;
  gap: 12px;
}
.collapsible-trigger::-webkit-details-marker { display: none; }
.collapsible-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  font-family: var(--font-display);
}
.collapsible-chevron { color: var(--text-dim); transition: transform 0.2s; flex-shrink: 0; }
details[open] .collapsible-chevron { transform: rotate(180deg); }
.collapsible-content {
  padding: 16px 18px;
  border-top: 1px solid var(--border);
  background: var(--surface-2);
}
.script-text {
  font-size: 13px;
  line-height: 1.75;
  color: var(--text-muted);
  white-space: pre-wrap;
  word-break: break-word;
}
.broll-text {
  font-size: 13px;
  line-height: 1.75;
  color: var(--text-muted);
  font-family: 'DM Mono', 'Cascadia Code', monospace;
  white-space: pre-wrap;
}

/* Cadence */
.cadence-row { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--text-muted); }
.cadence-icon {
  width: 32px;
  height: 32px;
  background: var(--accent-dim);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}

/* Bottom CTA */
.examples-cta {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 80px 48px;
  text-align: center;
}
.examples-cta-inner { max-width: 600px; margin: 0 auto; }
.examples-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 16px;
}
.examples-cta p { font-size: 16px; color: var(--text-muted); line-height: 1.7; margin-bottom: 32px; }
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  border-radius: var(--radius);
  padding: 16px 32px;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  transition: opacity 0.2s, transform 0.1s;
}
.cta-btn:hover { opacity: 0.9; }
.cta-btn:active { transform: scale(0.97); }

/* Responsive */
@media (max-width: 900px) {
  .concepts-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .examples-hero { padding: 100px 24px 48px; }
  .concepts-section { padding: 0 24px 64px; }
  .examples-cta { padding: 60px 24px; }
  .card-revenue-strip { flex-wrap: wrap; }
  .revenue-item { flex: 1 1 50%; }
}
@media (max-width: 480px) {
  .card-header { flex-direction: column; }
}

/* Card animation stagger */
.channel-card:nth-child(1) { animation-delay: 0.05s; }
.channel-card:nth-child(2) { animation-delay: 0.10s; }
.channel-card:nth-child(3) { animation-delay: 0.15s; }
.channel-card:nth-child(4) { animation-delay: 0.20s; }
.channel-card:nth-child(5) { animation-delay: 0.25s; }
.channel-card:nth-child(6) { animation-delay: 0.30s; }
