/* ============================================================
   styles-examples.css — Public Sample Plans feature
   Extends styles.css (must be loaded after it)
   ============================================================ */

/* ── Gallery page hero ── */
.ex-gallery-hero {
  padding: 72px 0 48px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.ex-gallery-hero .section-eyebrow { margin-bottom: 20px; }
.ex-gallery-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.08;
  color: var(--text);
  margin-bottom: 18px;
}
.ex-gallery-hero-sub {
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── Gallery section wrapper ── */
.ex-gallery-section {
  padding: 56px 0 80px;
}

/* ── Gallery grid ── */
.ex-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 640px) {
  .ex-gallery-grid { grid-template-columns: 1fr; }
}

/* ── Gallery card ── */
.ex-gallery-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.18s, transform 0.14s, box-shadow 0.18s;
}
.ex-gallery-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

/* ── Thumb gradients ── */
.ex-gallery-thumb {
  height: 200px;
  flex-shrink: 0;
  display: flex;
  align-items: flex-end;
  padding: 20px;
  position: relative;
  overflow: hidden;
}
/* Inline SVG scene art layered over the genre gradient */
.ex-thumb-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.ex-gallery-thumb-label { position: relative; z-index: 2; }
.ex-gallery-thumb.brainrot {
  background: linear-gradient(135deg, #7c3aed 0%, #db2777 40%, #f59e0b 100%);
}
.ex-gallery-thumb.social {
  background: linear-gradient(135deg, #0891b2 0%, #10b981 50%, #84cc16 100%);
}
.ex-gallery-thumb.simulator {
  background: linear-gradient(135deg, #1e40af 0%, #7c3aed 40%, #06b6d4 100%);
}
.ex-gallery-thumb.horror {
  background: linear-gradient(135deg, #1a1a2e 0%, #7f1d1d 50%, #1c1c1c 100%);
}
.ex-gallery-thumb.tycoon {
  background: linear-gradient(135deg, #92400e 0%, #f59e0b 50%, #fbbf24 100%);
}
.ex-gallery-thumb.obby {
  background: linear-gradient(135deg, #db2777 0%, #f97316 50%, #facc15 100%);
}
.ex-gallery-thumb.battlegrounds {
  background: linear-gradient(135deg, #7f1d1d 0%, #dc2626 45%, #f97316 100%);
}
.ex-gallery-thumb.pets {
  background: linear-gradient(135deg, #7c3aed 0%, #ec4899 50%, #38bdf8 100%);
}
.ex-gallery-thumb.towerdef {
  background: linear-gradient(135deg, #1e3a8a 0%, #475569 50%, #94a3b8 100%);
}
.ex-gallery-thumb.survival {
  background: linear-gradient(135deg, #0c4a6e 0%, #0891b2 55%, #a5f3fc 100%);
}
.ex-gallery-thumb.story {
  background: linear-gradient(135deg, #312e81 0%, #6d28d9 50%, #f59e0b 100%);
}
.ex-gallery-thumb.anime {
  background: linear-gradient(135deg, #4f46e5 0%, #d946ef 50%, #fb7185 100%);
}

.ex-gallery-thumb-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.7);
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 4px 10px;
  border-radius: 20px;
  backdrop-filter: blur(4px);
}

/* ── Card body ── */
.ex-gallery-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.ex-gallery-card-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin: 0;
  letter-spacing: -0.02em;
}
.ex-gallery-card-desc {
  font-size: 13.5px;
  color: var(--text-dim);
  line-height: 1.6;
  margin: 0;
}

/* ── Tag pills ── */
.ex-gallery-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.ex-tag {
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  white-space: nowrap;
}
.ex-tag-genre {
  background: var(--emerald-dim);
  color: var(--emerald-bright);
  border: 1px solid var(--emerald-line);
}
.ex-tag-risk-high {
  background: rgba(251,113,133,0.15);
  color: var(--rose);
  border: 1px solid rgba(251,113,133,0.25);
}
.ex-tag-risk-med {
  background: rgba(245,158,11,0.12);
  color: var(--amber);
  border: 1px solid rgba(245,158,11,0.25);
}
.ex-tag-risk-low {
  background: var(--emerald-dim);
  color: var(--emerald-bright);
  border: 1px solid var(--emerald-line);
}

/* ── Signal row ── */
.ex-gallery-signals {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
}
.ex-signal {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--text-muted);
}
.ex-signal-name { white-space: nowrap; }
.ex-signal-badge {
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
  white-space: nowrap;
}
.ex-signal-badge.good {
  background: var(--emerald-dim);
  color: var(--emerald-bright);
  border: 1px solid var(--emerald-line);
}
.ex-signal-badge.ok {
  background: rgba(245,158,11,0.12);
  color: var(--amber);
  border: 1px solid rgba(245,158,11,0.25);
}
.ex-signal-badge.risk {
  background: rgba(251,113,133,0.15);
  color: var(--rose);
  border: 1px solid rgba(251,113,133,0.25);
}
.ex-signal-badge.neutral {
  background: rgba(255,255,255,0.06);
  color: var(--text-dim);
  border: 1px solid var(--border);
}

/* ── Gallery card CTA link ── */
.ex-gallery-card-cta {
  display: block;
  margin-top: auto;
  text-align: center;
  padding: 11px 20px;
  border-radius: 10px;
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: none;
  background: rgba(16,185,129,0.1);
  border: 1px solid rgba(16,185,129,0.25);
  color: var(--emerald-bright);
  transition: background 0.16s, border-color 0.16s, transform 0.1s;
}
.ex-gallery-card-cta:hover {
  background: rgba(16,185,129,0.18);
  border-color: rgba(16,185,129,0.45);
  transform: translateY(-1px);
}

/* ── Gallery page CTA section ── */
.ex-gallery-cta-section {
  padding: 72px 0 96px;
  text-align: center;
  border-top: 1px solid var(--border);
}
.ex-gallery-cta-section h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  color: var(--text);
  margin-bottom: 12px;
}
.ex-gallery-cta-section p {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 32px;
}
.ex-gallery-cta-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* ────────────────────────────────────────────────────────────
   INDIVIDUAL PLAN PAGE STYLES
   ──────────────────────────────────────────────────────────── */

/* ── Plan hero ── */
.ex-plan-hero {
  padding: 48px 0 40px;
  border-bottom: 1px solid var(--border);
}
.ex-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.ex-breadcrumb a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.15s;
}
.ex-breadcrumb a:hover { color: var(--emerald-bright); }
.ex-breadcrumb-sep { color: var(--text-muted); opacity: 0.5; }

.ex-plan-hero-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--text);
  margin: 0 0 16px;
  line-height: 1.1;
}
.ex-plan-hero-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.ex-sample-badge {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: 20px;
  background: rgba(245,158,11,0.12);
  border: 1px solid rgba(245,158,11,0.25);
  color: #fbbf24;
}
.ex-plan-hero-btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* ── Sample notice banner ── */
.ex-sample-notice {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(245,158,11,0.08);
  border: 1px solid rgba(245,158,11,0.2);
  color: #fbbf24;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 12.5px;
  line-height: 1.55;
  margin-bottom: 0;
}
.ex-sample-notice svg { flex-shrink: 0; margin-top: 1px; }

/* ── Sticky section tabs ── */
.ex-tabs {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(10,13,12,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.ex-tabs-inner {
  display: flex;
  flex-direction: row;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 0 32px;
}
.ex-tabs-inner::-webkit-scrollbar { display: none; }
@media (max-width: 768px) {
  .ex-tabs-inner { padding: 0 16px; }
}
.ex-tab-link {
  display: inline-block;
  padding: 14px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: color 0.15s, border-color 0.15s;
  flex-shrink: 0;
}
.ex-tab-link:hover { color: var(--text); }
.ex-tab-link.active,
.ex-tab-link.is-active {
  color: var(--emerald-bright);
  border-bottom-color: var(--emerald-bright);
}

/* ── Content wrapper ── */
.ex-plan-content {
  padding: 0 0 80px;
}

/* ── Generator section ── */
.ex-gen-section {
  padding: 56px 0 0;
  /* Offset for sticky tabs bar so anchor links don't hide headings */
  scroll-margin-top: 60px;
}
.ex-gen-section + .ex-gen-section {
  border-top: 1px solid var(--border);
}

.ex-gen-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}
.ex-gen-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
  background: var(--emerald-dim);
  color: var(--emerald-bright);
  border: 1px solid var(--emerald-line);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  line-height: 1;
}
.ex-gen-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.ex-gen-icon.emerald { background: linear-gradient(135deg, rgba(16,185,129,0.2), rgba(16,185,129,0.06)); border: 1px solid var(--emerald-line); color: var(--emerald-bright); }
.ex-gen-icon.cyan { background: linear-gradient(135deg, rgba(34,211,238,0.15), rgba(34,211,238,0.04)); border: 1px solid rgba(34,211,238,0.2); color: var(--cyan); }
.ex-gen-icon.violet { background: linear-gradient(135deg, rgba(139,92,246,0.18), rgba(139,92,246,0.05)); border: 1px solid rgba(139,92,246,0.2); color: #a78bfa; }
.ex-gen-icon.amber { background: linear-gradient(135deg, rgba(245,158,11,0.18), rgba(245,158,11,0.05)); border: 1px solid rgba(245,158,11,0.2); color: var(--amber); }
.ex-gen-icon.rose { background: linear-gradient(135deg, rgba(251,113,133,0.18), rgba(251,113,133,0.05)); border: 1px solid rgba(251,113,133,0.2); color: var(--rose); }

.ex-gen-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 3px;
  letter-spacing: -0.02em;
}
.ex-gen-sub {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
}

/* ── Card ── */
.ex-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  overflow: hidden;
}
.ex-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 18px;
}
.ex-card-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 3px;
}
.ex-card-sub {
  font-size: 12px;
  color: var(--text-muted);
  margin: 0;
}
.ex-card-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

/* ── Split grid ── */
.ex-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 900px) {
  .ex-split { grid-template-columns: 1fr; }
}

/* ── Content outbox ── */
.ex-outbox {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 14px;
  color: var(--text);
  line-height: 1.65;
}
.ex-pitch {
  font-style: italic;
  color: var(--text-dim);
}
.ex-pitch::before { content: '\201C'; }
.ex-pitch::after  { content: '\201D'; }

/* ── Core loop ── */
.ex-core-loop {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ex-core-loop li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.55;
}
.ex-core-loop-num {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--emerald-dim);
  border: 1px solid var(--emerald-line);
  color: var(--emerald-bright);
  font-size: 10px;
  font-weight: 700;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.ex-core-loop li strong { color: var(--text); font-weight: 600; }

/* ── Launch Readiness ── */
.ex-lr-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.ex-lr-row {
  border-radius: 8px;
  border: 1px solid;
  overflow: hidden;
}
.ex-lr-row.good {
  background: rgba(16,185,129,0.05);
  border-color: rgba(16,185,129,0.15);
}
.ex-lr-row.ok {
  background: rgba(245,158,11,0.06);
  border-color: rgba(245,158,11,0.18);
}
.ex-lr-row.risk {
  background: rgba(251,113,133,0.06);
  border-color: rgba(251,113,133,0.18);
}
.ex-lr-head {
  padding: 8px 12px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.ex-lr-left { flex: 1; min-width: 0; }
.ex-lr-label {
  font-size: 12px;
  font-weight: 600;
  color: #e8e8e8;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ex-lr-source {
  font-size: 10px;
  color: var(--text-muted);
  margin-top: 1px;
}
.ex-lr-right {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.ex-lr-badge {
  font-size: 10.5px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 20px;
  white-space: nowrap;
}
.ex-lr-badge.good {
  background: rgba(16,185,129,0.15);
  color: var(--emerald-bright);
  border: 1px solid rgba(16,185,129,0.25);
}
.ex-lr-badge.ok {
  background: rgba(245,158,11,0.15);
  color: #fbbf24;
  border: 1px solid rgba(245,158,11,0.25);
}
.ex-lr-badge.risk {
  background: rgba(251,113,133,0.15);
  color: var(--rose);
  border: 1px solid rgba(251,113,133,0.25);
}
.ex-lr-bar {
  width: 48px;
  height: 3px;
  background: rgba(255,255,255,0.07);
  border-radius: 2px;
  overflow: hidden;
  flex-shrink: 0;
}
.ex-lr-bar-fill {
  height: 100%;
  border-radius: 2px;
}
.ex-lr-bar-fill.good { background: var(--emerald-bright); }
.ex-lr-bar-fill.ok   { background: #fbbf24; }
.ex-lr-bar-fill.risk { background: var(--rose); }

.ex-lr-disclaimer {
  font-size: 10px;
  color: var(--text-muted);
  padding-top: 10px;
  border-top: 1px solid var(--border);
  text-align: center;
  margin-top: 8px;
  line-height: 1.5;
}

/* ── Gamepass table ── */
.ex-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.ex-table th {
  text-align: left;
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 8px 12px;
  border-bottom: 1px solid var(--border);
  font-weight: 600;
  white-space: nowrap;
}
.ex-table td {
  padding: 10px 12px;
  color: var(--text);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  line-height: 1.45;
  vertical-align: top;
}
.ex-table td.ex-td-muted { color: var(--text-dim); font-size: 12.5px; }
.ex-table tr:last-child td { border-bottom: none; }
.ex-price-badge {
  display: inline-block;
  background: rgba(16,185,129,0.12);
  color: var(--emerald-bright);
  border: 1px solid var(--emerald-line);
  padding: 2px 8px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 12px;
  white-space: nowrap;
}

/* ── Checklist ── */
.ex-phase { margin-bottom: 24px; }
.ex-phase:last-child { margin-bottom: 0; }
.ex-phase-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.ex-task-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.ex-task {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.5;
}
.ex-task-check {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  background: rgba(16,185,129,0.1);
  border: 1px solid var(--emerald-line);
  flex-shrink: 0;
  margin-top: 2px;
  display: grid;
  place-items: center;
  color: var(--emerald-bright);
}

/* ── Promo script cards ── */
.ex-promo-card {
  background: var(--panel-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 16px;
}
.ex-promo-card:last-child { margin-bottom: 0; }
.ex-promo-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}
.ex-promo-beat {
  margin-bottom: 8px;
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--text-dim);
}
.ex-promo-beat:last-child { margin-bottom: 0; }
.ex-promo-beat .beat-label {
  font-weight: 700;
  margin-right: 4px;
}
.ex-promo-beat .visual { color: #a5b4fc; }
.ex-promo-beat .vo { color: var(--text); }
.ex-promo-beat .text-os { color: var(--emerald-bright); }

/* ── Update roadmap timeline ── */
.ex-weeks {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  padding-left: 28px;
}
.ex-weeks::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: var(--border);
}
.ex-week {
  position: relative;
  padding-bottom: 24px;
}
.ex-week:last-child { padding-bottom: 0; }
.ex-week::before {
  content: '';
  position: absolute;
  left: -22px;
  top: 5px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--emerald-bright);
  border: 2px solid var(--bg);
  box-shadow: 0 0 0 1px var(--emerald-line);
}
.ex-week-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.ex-week-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}
.ex-week-items {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.ex-week-items li {
  font-size: 12.5px;
  color: var(--text-dim);
  padding-left: 14px;
  position: relative;
  line-height: 1.5;
}
.ex-week-items li::before {
  content: '·';
  position: absolute;
  left: 4px;
  color: var(--emerald-dim);
  font-size: 16px;
  line-height: 1.1;
}

/* ── Game page description ── */
.ex-game-desc {
  background: var(--panel-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 22px 24px;
  font-size: 13.5px;
  line-height: 1.8;
  color: var(--text);
  white-space: pre-wrap;
  font-family: inherit;
}

/* ── Clone risk ── */
.ex-clone {
  border-radius: 12px;
  padding: 22px;
}
.ex-clone.high {
  background: rgba(251,113,133,0.06);
  border: 1px solid rgba(251,113,133,0.18);
}
.ex-clone.medium {
  background: rgba(245,158,11,0.06);
  border: 1px solid rgba(245,158,11,0.18);
}
.ex-clone.low {
  background: rgba(16,185,129,0.06);
  border: 1px solid rgba(16,185,129,0.18);
}
.ex-clone-head {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}
.ex-clone-badge {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 20px;
  white-space: nowrap;
}
.ex-clone-badge.high {
  background: rgba(251,113,133,0.15);
  color: var(--rose);
  border: 1px solid rgba(251,113,133,0.25);
}
.ex-clone-badge.medium {
  background: rgba(245,158,11,0.15);
  color: #fbbf24;
  border: 1px solid rgba(245,158,11,0.25);
}
.ex-clone-badge.low {
  background: rgba(16,185,129,0.15);
  color: var(--emerald-bright);
  border: 1px solid var(--emerald-line);
}
.ex-clone-summary {
  font-size: 13.5px;
  color: var(--text);
  font-weight: 600;
  line-height: 1.45;
}
.ex-clone-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.ex-clone-block {}
.ex-clone-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 5px;
}
.ex-clone-text {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.6;
}

/* ── Title ideas ── */
.ex-title-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ex-title-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 14px;
  background: var(--panel-2);
  border-radius: 10px;
  border: 1px solid var(--border);
  transition: border-color 0.15s;
}
.ex-title-item:hover { border-color: var(--border-strong); }
.ex-title-rank {
  background: var(--emerald-dim);
  font-size: 11px;
  font-weight: 700;
  color: var(--emerald-bright);
  padding: 3px 7px;
  border-radius: 6px;
  flex-shrink: 0;
  margin-top: 2px;
  border: 1px solid var(--emerald-line);
}
.ex-title-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}
.ex-title-why {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ── Thumbnail grid ── */
.ex-thumb-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
@media (max-width: 800px) {
  .ex-thumb-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .ex-thumb-grid { grid-template-columns: 1fr; }
}
.ex-thumb-item {
  background: var(--panel-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 16px;
}
.ex-thumb-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.ex-thumb-value {
  font-size: 13px;
  color: var(--text);
  line-height: 1.5;
}
.ex-thumb-item.full-width {
  grid-column: 1 / -1;
}
.ex-mood-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 2px;
}
.ex-mood-tag {
  font-size: 11px;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 20px;
  background: rgba(139,92,246,0.12);
  color: #a78bfa;
  border: 1px solid rgba(139,92,246,0.22);
}

/* ── Monetization strategy outbox ── */
.ex-monet-strategy {
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px 18px;
  font-size: 13.5px;
  color: var(--text-dim);
  line-height: 1.7;
  margin-bottom: 20px;
}

/* ── First Ten Minutes list ── */
.ex-first10-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ex-first10-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.55;
}
.ex-first10-time {
  font-size: 11px;
  font-weight: 700;
  color: var(--emerald-bright);
  background: var(--emerald-dim);
  border: 1px solid var(--emerald-line);
  padding: 3px 8px;
  border-radius: 6px;
  white-space: nowrap;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── Bottom CTA ── */
.ex-bottom-cta {
  padding: 80px 0;
  text-align: center;
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.ex-bottom-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(16,185,129,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.ex-bottom-cta h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.15;
}
.ex-bottom-cta p {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto 32px;
  line-height: 1.65;
}
.ex-cta-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* ── Shared button styles used on example pages ── */
.ex-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.16s, border-color 0.16s, transform 0.1s;
  border: 1px solid transparent;
  cursor: pointer;
}
.ex-btn:hover { transform: translateY(-1px); }
.ex-btn-emerald {
  background: rgba(16,185,129,0.12);
  border-color: rgba(16,185,129,0.3);
  color: var(--emerald-bright);
}
.ex-btn-emerald:hover {
  background: rgba(16,185,129,0.2);
  border-color: rgba(16,185,129,0.5);
}
.ex-btn-neutral {
  background: rgba(255,255,255,0.05);
  border-color: var(--border);
  color: var(--text);
}
.ex-btn-neutral:hover { background: rgba(255,255,255,0.09); }
.ex-btn-cyan {
  background: rgba(34,211,238,0.1);
  border-color: rgba(34,211,238,0.25);
  color: var(--cyan);
}
.ex-btn-cyan:hover {
  background: rgba(34,211,238,0.18);
  border-color: rgba(34,211,238,0.45);
}

/* ── Utility ── */
.ex-label-sm {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.ex-mt8  { margin-top:  8px; }
.ex-mt12 { margin-top: 12px; }
.ex-mt16 { margin-top: 16px; }
.ex-mt20 { margin-top: 20px; }
.ex-mb16 { margin-bottom: 16px; }

/* .ex-tab-link.active and .ex-tab-link.is-active are consolidated above */
