/* ── EXAMPLES PAGE ─────────────────────────────────────────────────────────── */

/* Page wrapper */
.examples-page {
  padding-top: 80px; /* nav height offset */
}

/* ── HEADER ── */
.examples-header {
  padding: 80px 28px 60px;
  text-align: center;
  background: linear-gradient(180deg, rgba(204,255,0,0.04) 0%, transparent 100%);
  border-bottom: 1px solid var(--border);
}
.examples-header-inner {
  max-width: 700px;
  margin: 0 auto;
}
.examples-title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.examples-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.examples-cta {
  display: inline-block;
  background: var(--lime);
  color: #09090E;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  transition: opacity 0.15s;
}
.examples-cta:hover { opacity: 0.85; }

/* ── GRID ── */
.examples-grid-section {
  padding: 64px 28px;
  max-width: 1200px;
  margin: 0 auto;
}
.examples-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* ── CARD ── */
.ex-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Video wrapper — 9:16 aspect ratio */
.ex-video-wrap {
  position: relative;
  aspect-ratio: 9 / 16;
  border-radius: 16px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  cursor: pointer;
}
.ex-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.ex-video-wrap:hover .ex-video {
  transform: scale(1.02);
}

/* Play overlay — shown when paused */
.ex-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.35);
  transition: opacity 0.2s;
}
.ex-video-wrap.playing .ex-overlay {
  opacity: 0;
  pointer-events: none;
}
.ex-play-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(9,9,14,0.75);
  border: 2px solid rgba(204,255,0,0.6);
  color: var(--lime);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.15s, background 0.15s;
}
.ex-play-btn:hover {
  transform: scale(1.1);
  background: rgba(9,9,14,0.9);
}
.ex-play-btn svg {
  width: 22px;
  height: 22px;
  margin-left: 3px; /* optical center for play triangle */
}

/* Niche badge — top-left */
.ex-niche-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #09090E;
  background: var(--lime);
  padding: 3px 8px;
  border-radius: 4px;
}

/* Captions badge — bottom-right */
.ex-captions-badge {
  position: absolute;
  bottom: 12px;
  right: 12px;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--lime);
  background: rgba(9,9,14,0.8);
  padding: 3px 8px;
  border-radius: 4px;
  border: 1px solid rgba(204,255,0,0.3);
}

/* Card meta */
.ex-meta {
  padding: 0 4px;
}
.ex-topic {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
  margin-bottom: 8px;
}
.ex-stats {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.ex-time {
  font-size: 0.72rem;
  color: var(--text-muted);
}
.ex-dur {
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* ── BOTTOM CTA ── */
.examples-bottom-cta {
  padding: 100px 28px;
  text-align: center;
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.examples-bottom-inner {
  max-width: 600px;
  margin: 0 auto;
}
.examples-bottom-cta h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.examples-bottom-cta p {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 36px;
}
.examples-cta-large {
  font-size: 1rem;
  padding: 16px 36px;
  border-radius: 12px;
  display: inline-block;
  background: var(--lime);
  color: #09090E;
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.15s;
  margin-bottom: 16px;
}
.examples-cta-large:hover { opacity: 0.85; }
.examples-cta-secondary {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  text-decoration: none;
  margin-top: 16px;
  transition: color 0.15s;
}
.examples-cta-secondary:hover { color: var(--text); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .examples-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .examples-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .examples-grid-section {
    padding: 40px 16px;
  }
}
@media (max-width: 480px) {
  .examples-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}
