/* ── Examples Page ── */

.examples-hero {
  padding: 6rem 2rem 5rem;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.examples-hero-inner {
  max-width: 1120px;
  margin: 0 auto;
}
.examples-headline {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
  color: var(--text);
  margin-bottom: 1.25rem;
}
.examples-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 54ch;
  line-height: 1.65;
}

.examples-grid-section {
  padding: 5rem 2rem;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}
.examples-grid-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  align-items: start;
}

/* ── Card ── */
.example-card {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.example-card:hover {
  box-shadow: 0 6px 24px rgba(26,25,23,0.12);
  transform: translateY(-2px);
}

.ec-thumbnail {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #1a1917;
}
.ec-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.example-card:hover .ec-thumbnail img {
  transform: scale(1.03);
}
.ec-tag {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: var(--accent);
  color: #fff;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.55rem;
  border-radius: 4px;
  z-index: 2;
}
.ec-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,25,23,0.72);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.example-card:hover .ec-overlay { opacity: 1; }
.ec-generate-btn {
  background: var(--accent);
  color: #fff;
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  padding: 0.65rem 1.25rem;
  border-radius: 8px;
  letter-spacing: 0.01em;
  transition: background 0.2s;
}
.ec-generate-btn:hover { background: #b05808; }

/* ── Card Body ── */
.ec-body { padding: 1.4rem 1.5rem 1.5rem; }
.ec-industry {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.ec-title {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 0.35rem;
}
.ec-sub {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 0.65rem;
  font-style: italic;
}
.ec-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.ec-meta {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  color: var(--text-muted);
  opacity: 0.8;
  font-weight: 500;
}
.ec-meta-dot { opacity: 0.4; }

/* ── CTA Section ── */
.examples-cta {
  padding: 7rem 2rem;
  background: var(--text);
  position: relative;
  overflow: hidden;
}
.examples-cta::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201,100,10,0.2) 0%, transparent 70%);
  pointer-events: none;
}
.examples-cta-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.cta-headline {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 0.9rem;
}
.cta-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 2.25rem;
}
.cta-button {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  padding: 0.85rem 2rem;
  border-radius: 10px;
  letter-spacing: -0.01em;
  transition: background 0.2s;
}
.cta-button:hover { background: #b05808; }

/* ── Responsive ── */
@media (max-width: 960px) {
  .examples-grid-inner { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .examples-grid-inner { grid-template-columns: 1fr; }
  .examples-hero { padding: 4rem 1.5rem 3rem; }
  .examples-grid-section { padding: 3.5rem 1.5rem; }
  .examples-cta { padding: 5rem 1.5rem; }
}