/* ========================================
   Collection Page v2.1 — Unified rhythm

   DESIGN TOKENS:
   Radius:  sm=8px  md=12px  lg=16px
   Callout: always left-bar 3px + tinted bg + radius-md
   Mono:    all data/labels in JetBrains Mono
   Display: all headings in Outfit
   Body:    all prose in DM Sans
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=DM+Sans:ital,wght@0,400;0,500;0,600;0,700;1,400&family=JetBrains+Mono:wght@400;500;600;700&display=swap');

.cl-page {
  /* Palette — aligned with site dark theme */
  --cl-dark: #0c0b0f;
  --cl-dark-mid: #151419;
  --cl-accent: #c9a44a;
  --cl-accent-warm: #c9a44a;
  --cl-text-on-dark: #e8e6e3;
  --cl-text-dim: #9a9590;

  /* Unified radii */
  --cl-r-sm: 8px;
  --cl-r-md: 12px;
  --cl-r-lg: 16px;

  /* Fonts */
  --cl-font-display: 'Outfit', sans-serif;
  --cl-font-body: 'DM Sans', sans-serif;
  --cl-font-mono: 'JetBrains Mono', monospace;

  font-family: var(--cl-font-body);
}

/* ==========================================
   HERO — Dark cinematic
   ========================================== */

.cl-hero {
  position: relative;
  padding: 0;
  background: var(--cl-dark);
  background-size: cover;
  background-position: center;
  overflow: hidden;
  border-bottom: none;
}

/* Gradient scrim over AI background */
.cl-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(12, 11, 15, 0.5) 0%,
    rgba(12, 11, 15, 0.4) 40%,
    rgba(12, 11, 15, 0.7) 100%
  );
  pointer-events: none;
}

.cl-page .cl-hero { margin-top: -1px; }

.cl-hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 40px var(--spacing-lg) 56px;
}

/* Breadcrumbs */
.cl-crumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--cl-text-dim);
  margin-bottom: 28px;
}
.cl-crumbs a { color: var(--cl-text-dim); text-decoration: none; transition: color 0.2s; }
.cl-crumbs a:hover { color: var(--color-primary); }
.cl-crumbs__sep { color: rgba(255,255,255,0.15); font-size: 11px; }

/* Badge */
.cl-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(200, 165, 74, 0.1);
  border: 1px solid rgba(200, 165, 74, 0.2);
  color: var(--cl-accent);
  border-radius: 100px;
  font-family: var(--cl-font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.cl-hero__badge i { width: 14px; height: 14px; }

/* Title */
.cl-hero h1 {
  font-family: var(--cl-font-display);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: #fff;
  margin: 0 0 24px;
  max-width: 720px;
}

/* Meta */
.cl-hero__meta {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 14px;
  color: var(--cl-text-dim);
  flex-wrap: wrap;
}
.cl-hero__meta-item { display: flex; align-items: center; gap: 6px; }
.cl-hero__meta-item i { width: 15px; height: 15px; opacity: 0.6; }
.cl-hero__meta-sep { width: 4px; height: 4px; border-radius: 50%; background: rgba(255,255,255,0.15); }

/* ==========================================
   LAYOUT
   ========================================== */

.cl-layout {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 48px var(--spacing-lg) 64px;
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 48px;
}

/* ==========================================
   TOC — Progress rail
   ========================================== */

.cl-toc {
  position: sticky;
  top: calc(var(--header-height) + 24px);
  align-self: start;
}

.cl-toc__inner {
  background: none;
  border: none;
  box-shadow: none;
  padding: 0;
  position: relative;
}

.cl-toc__inner::before {
  content: '';
  position: absolute;
  left: 5px;
  top: 28px;
  bottom: 8px;
  width: 1.5px;
  background: var(--color-border-light);
}

.cl-toc__label {
  font-family: var(--cl-font-mono);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
  padding: 0 0 12px 20px;
  margin-bottom: 0;
}

.cl-toc__list { list-style: none; padding: 0; margin: 0; }

.cl-toc__link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 5px 8px 5px 20px;
  font-size: 12px;
  font-weight: 500;
  color: var(--color-text-muted);
  text-decoration: none;
  transition: all 0.2s;
  position: relative;
  border: none;
  border-radius: 0;
}

.cl-toc__link::before {
  content: '';
  position: absolute;
  left: 1px;
  top: 50%;
  transform: translateY(-50%);
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--color-bg);
  border: 2px solid var(--color-border);
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 1;
}

.cl-toc__link:hover { color: var(--color-text); background: none; }
.cl-toc__link:hover::before { border-color: var(--color-text-muted); transform: translateY(-50%) scale(1.15); }

.cl-toc__link--active { color: var(--cl-accent); font-weight: 700; background: none; border: none; }
.cl-toc__link--active::before {
  background: var(--cl-accent);
  border-color: var(--cl-accent);
  box-shadow: 0 0 8px rgba(200, 165, 74, 0.4);
  transform: translateY(-50%) scale(1.2);
}

.cl-toc__link i { display: none; }

/* ==========================================
   MAIN
   ========================================== */

.cl-main { min-width: 0; }

/* ==========================================
   CALLOUT — Unified pattern (no border-left!)

   Every highlighted block uses the SAME recipe:
   - border-radius: var(--cl-r-md) = 12px
   - background: horizontal gradient fade (accent→transparent)
   - thin top accent line via ::before pseudo
   - padding: 16px 20px
   ========================================== */

/* ==========================================
   INTRO
   ========================================== */

.cl-intro { margin-bottom: 48px; }

.cl-intro__hook {
  font-family: var(--cl-font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.4;
  margin: 0 0 20px;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
}

.cl-intro__text {
  font-size: 1rem;
  color: var(--color-text-secondary);
  line-height: 1.75;
  margin: 0 0 16px;
}

.cl-intro__what {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
}

.cl-intro__what i {
  display: none;
}

/* ==========================================
   IDEA SECTION
   ========================================== */

.cl-idea {
  margin-bottom: 56px;
  scroll-margin-top: calc(var(--header-height) + 24px);
}

.cl-idea__number {
  font-family: var(--cl-font-display);
  font-size: 4rem;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 2px rgba(200, 165, 74, 0.2);
  line-height: 1;
  margin-bottom: -8px;
  display: block;
  user-select: none;
}

.cl-idea__headline {
  font-family: var(--cl-font-mono);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--cl-accent);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.cl-idea__headline::before {
  content: '';
  width: 16px;
  height: 1.5px;
  background: var(--cl-accent);
}

.cl-idea__title {
  font-family: var(--cl-font-display);
  font-size: 1.65rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--color-text);
  margin: 0 0 6px;
  line-height: 1.2;
}

.cl-idea__oneliner {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  margin: 0 0 16px;
  line-height: 1.5;
}

.cl-idea__angle {
  font-size: 1rem;
  color: var(--color-text-secondary);
  line-height: 1.75;
  margin: 0 0 20px;
}

/* Idea card image */
.cl-idea__img-link {
  display: block;
  margin-bottom: 20px;
  border-radius: var(--cl-r-md);
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s;
}
.cl-idea__img-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px -8px rgba(0, 0, 0, 0.15);
}
.cl-idea__img {
  width: 100%;
  height: auto;
  display: block;
}

/* ==========================================
   CARD — Glass
   Radius: lg (16px) — the only element using lg
   ========================================== */

.cl-card {
  background: rgba(20, 20, 30, 0.92);
  border: 1px solid var(--color-border);
  border-radius: var(--cl-r-lg);
  overflow: hidden;
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.04),
    0 8px 32px -8px rgba(0, 0, 0, 0.06);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.cl-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(200, 165, 74, 0.3) 30%, rgba(200, 165, 74, 0.15) 70%, transparent 100%);
}

.cl-card:hover {
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.04),
    0 16px 48px -12px rgba(0, 0, 0, 0.1),
    0 0 0 1px rgba(200, 165, 74, 0.08);
  transform: translateY(-3px);
}

/* Card header */
.cl-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.cl-card__tags { display: flex; gap: 6px; flex-wrap: wrap; }

.cl-card__tag {
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.cl-card__tag--niche  { background: rgba(96,165,250,0.08); color: #60a5fa; }
.cl-card__tag--model  { background: rgba(200,165,74,0.08); color: #c9a44a; }
.cl-card__tag--label  { background: rgba(52,211,153,0.08); color: #34d399; }
.cl-card__tag--stack  { background: rgba(255, 255, 255, 0.06); color: var(--color-text-muted); font-family: var(--cl-font-mono); font-size: 10px; letter-spacing: 0.02em; }

.cl-card__score {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--cl-font-mono);
  font-size: 11px;
  font-weight: 600;
  color: var(--color-text-muted);
  letter-spacing: 0.02em;
}

.cl-card__score-dot { width: 7px; height: 7px; border-radius: 50%; }
.cl-card__score-dot--success { background: #10b981; box-shadow: 0 0 6px rgba(16,185,129,0.4); }
.cl-card__score-dot--warning { background: #f59e0b; box-shadow: 0 0 6px rgba(245,158,11,0.4); }
.cl-card__score-dot--error   { background: #ef4444; box-shadow: 0 0 6px rgba(239,68,68,0.4); }

/* Card body */
.cl-card__body { padding: 20px; }

/* Two-column: gauge + metrics */
.cl-card__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* --- Left: LTV/CAC visual gauge --- */
.cl-card__gauge {
  padding: 16px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--cl-r-md);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.cl-card__gauge-title {
  font-family: var(--cl-font-mono);
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
  margin-bottom: 14px;
}

.cl-card__bars { display: flex; flex-direction: column; gap: 8px; margin-bottom: 14px; }

.cl-card__bar-row {
  display: grid;
  grid-template-columns: 28px 1fr 56px;
  align-items: center;
  gap: 8px;
}

.cl-card__bar-label {
  font-family: var(--cl-font-mono);
  font-size: 10px;
  font-weight: 700;
  color: var(--color-text-muted);
  letter-spacing: 0.05em;
}

.cl-card__bar-track {
  height: 8px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  overflow: hidden;
}

.cl-card__bar-fill {
  height: 100%;
  border-radius: 4px;
  transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.cl-card__bar-fill--ltv {
  background: linear-gradient(90deg, #10b981, #34d399);
}

.cl-card__bar-fill--cac {
  background: linear-gradient(90deg, #f59e0b, #fbbf24);
}

.cl-card__bar-val {
  font-family: var(--cl-font-mono);
  font-size: 11px;
  font-weight: 600;
  color: var(--color-text-secondary);
  text-align: right;
}

/* Ratio badge */
.cl-card__ratio {
  display: flex;
  align-items: baseline;
  gap: 6px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.cl-card__ratio-num {
  font-family: var(--cl-font-display);
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
}

.cl-card__ratio--good .cl-card__ratio-num { color: #10b981; }
.cl-card__ratio--ok .cl-card__ratio-num { color: #f59e0b; }
.cl-card__ratio--weak .cl-card__ratio-num { color: #ef4444; }

.cl-card__ratio-label {
  font-family: var(--cl-font-mono);
  font-size: 10px;
  font-weight: 600;
  color: var(--color-text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* --- Right: Metrics list --- */
.cl-card__metrics {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.cl-card__metric {
  display: grid;
  grid-template-columns: 20px 1fr auto;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.15s;
}

.cl-card__metric:last-child { border-bottom: none; }
.cl-card__metric:hover { background: rgba(200, 165, 74, 0.04); }

.cl-card__metric--accent {
  background: rgba(251, 191, 36, 0.04);
  border-radius: 0 0 var(--cl-r-md) var(--cl-r-md);
  border-bottom: none;
}

.cl-card__metric-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cl-card__metric-icon i {
  width: 14px;
  height: 14px;
  color: var(--color-text-muted);
  opacity: 0.6;
}

.cl-card__metric-label {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.cl-card__metric-value {
  font-family: var(--cl-font-mono);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-text);
  text-align: right;
}

.cl-card__metric-value small {
  font-weight: 500;
  color: var(--color-text-muted);
  margin-left: 4px;
}

/* "Why picked" callout — gradient fade, no border-left */
.cl-card__pick {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 16px;
  padding: 14px 18px;
  border-radius: var(--cl-r-md);
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.07) 0%, rgba(251, 191, 36, 0.01) 60%, transparent 100%);
  border: 1px solid rgba(251, 191, 36, 0.1);
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  line-height: 1.55;
}
.cl-card__pick i {
  width: 15px;
  height: 15px;
  color: var(--cl-accent-warm);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Card footer — buttons with radius sm (8px) */
.cl-card__footer {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.03);
}

.cl-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--cl-accent);
  color: var(--cl-dark);
  border-radius: var(--cl-r-sm);
  font-family: var(--cl-font-body);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  flex: 1;
  border: none;
}
.cl-card__cta:hover {
  background: #e8c973;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(200, 165, 74, 0.25);
}

.cl-card__cta--secondary {
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-border);
}
.cl-card__cta--secondary:hover {
  background: rgba(200, 165, 74, 0.06);
  border-color: var(--cl-accent);
  color: var(--cl-accent);
  box-shadow: 0 0 0 3px rgba(200, 165, 74, 0.08);
}
.cl-card__cta i { width: 14px; height: 14px; }

/* ==========================================
   COMPARISON TABLE — radius md
   ========================================== */

.cl-comparison {
  margin-bottom: 56px;
  scroll-margin-top: calc(var(--header-height) + 24px);
}

/* Shared section title style */
.cl-comparison__title,
.cl-conclusion__title,
.cl-faq__title {
  font-family: var(--cl-font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--color-text);
  margin: 0 0 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: -0.02em;
}
.cl-comparison__title i,
.cl-conclusion__title i,
.cl-faq__title i {
  width: 20px;
  height: 20px;
  color: var(--cl-accent);
}

.cl-table-wrap {
  overflow-x: auto;
  border-radius: var(--cl-r-md);
  border: 1px solid var(--color-border);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.cl-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}

.cl-table thead { background: var(--cl-dark); }
.cl-table th {
  padding: 12px 16px;
  text-align: left;
  font-family: var(--cl-font-mono);
  font-weight: 600;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--cl-text-dim);
  border-bottom: none;
  white-space: nowrap;
}

.cl-table td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--color-text-secondary);
  font-family: var(--cl-font-mono);
  font-size: 0.8rem;
}
.cl-table tr:last-child td { border-bottom: none; }
.cl-table tbody tr { transition: background 0.15s; }
.cl-table tbody tr:hover td { background: rgba(200, 165, 74, 0.04); }
.cl-table td:first-child {
  font-family: var(--cl-font-body);
  font-weight: 600;
  color: var(--color-text);
  font-size: 0.85rem;
}

/* ==========================================
   CONCLUSION — callout gradient variant
   ========================================== */

.cl-conclusion {
  margin-bottom: 56px;
  scroll-margin-top: calc(var(--header-height) + 24px);
}

.cl-conclusion__text {
  font-size: 1rem;
  color: var(--color-text-secondary);
  line-height: 1.75;
  margin: 0 0 16px;
}

.cl-conclusion__advice {
  padding: 20px 24px;
  border-radius: var(--cl-r-md);
  background: linear-gradient(135deg, rgba(200, 165, 74, 0.08) 0%, rgba(200, 165, 74, 0.03) 50%, transparent 100%);
  border: 1px solid rgba(200, 165, 74, 0.1);
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  line-height: 1.75;
  position: relative;
  overflow: hidden;
}

.cl-conclusion__advice::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--cl-accent), rgba(200, 165, 74, 0.3), transparent);
}

/* ==========================================
   FAQ — radius md, consistent borders
   ========================================== */

.cl-faq {
  margin-bottom: 56px;
  scroll-margin-top: calc(var(--header-height) + 24px);
}

.cl-faq__list { display: flex; flex-direction: column; gap: 6px; }

.cl-faq__item {
  border: 1px solid var(--color-border);
  border-radius: var(--cl-r-md);
  overflow: hidden;
  background: var(--color-bg-white);
  transition: all 0.25s;
}
.cl-faq__item:hover { border-color: rgba(200, 165, 74, 0.2); }
.cl-faq__item--open {
  border-color: rgba(200, 165, 74, 0.25);
  box-shadow: 0 2px 12px rgba(200, 165, 74, 0.06);
}

.cl-faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--cl-font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text);
  text-align: left;
  transition: background 0.15s;
}
.cl-faq__q:hover { background: rgba(255, 255, 255, 0.04); }

.cl-faq__q i {
  width: 16px; height: 16px;
  color: var(--color-text-muted);
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.cl-faq__item--open .cl-faq__q i { transform: rotate(180deg); color: var(--cl-accent); }

.cl-faq__a {
  display: none;
  padding: 0 20px 18px;
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  line-height: 1.75;
}
.cl-faq__item--open .cl-faq__a { display: block; }

/* ==========================================
   CTA SECTION — radius lg (same as card)
   ========================================== */

.cl-cta-section {
  position: relative;
  padding: 48px 40px;
  background: var(--cl-dark);
  border-radius: var(--cl-r-lg);
  text-align: center;
  margin-bottom: 48px;
  overflow: hidden;
}

.cl-cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(200, 165, 74, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 50%, rgba(200, 165, 74, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.cl-cta-section__title {
  position: relative;
  font-family: var(--cl-font-display);
  font-size: 1.75rem;
  font-weight: 800;
  color: white;
  margin: 0 0 8px;
  letter-spacing: -0.03em;
}

.cl-cta-section__sub {
  position: relative;
  font-size: 1rem;
  color: var(--cl-text-dim);
  margin: 0 0 28px;
}

.cl-cta-section__buttons {
  position: relative;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.cl-cta-section__buttons .btn--primary {
  background: var(--cl-accent);
  color: var(--cl-dark);
  border: none;
  font-weight: 700;
  border-radius: var(--cl-r-sm);
}
.cl-cta-section__buttons .btn--primary:hover {
  background: #e8c973;
  box-shadow: 0 0 24px rgba(200, 165, 74, 0.3);
}
.cl-cta-section__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--cl-r-sm);
  font-family: var(--cl-font-body);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s;
}
.cl-cta-section__btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.05);
}

/* ==========================================
   RESPONSIVE
   ========================================== */

@media (max-width: 900px) {
  .cl-layout { grid-template-columns: 1fr; padding: 32px var(--spacing-lg) 48px; }
  .cl-toc { display: none; }
}

@media (max-width: 768px) {
  .cl-hero__inner { padding: 32px var(--spacing-lg) 40px; }
  .cl-hero h1 { font-size: 1.75rem; }
  .cl-idea__number { font-size: 3rem; }

  .cl-card__cols { grid-template-columns: 1fr; }

  .cl-card__footer { flex-direction: column; gap: 8px; align-items: stretch; }
  .cl-cta-section { padding: 32px 24px; }
}

@media (max-width: 480px) {
  .cl-hero h1 { font-size: 1.5rem; }
  .cl-hero__meta { flex-direction: column; align-items: flex-start; gap: 8px; }
  .cl-hero__meta-sep { display: none; }
  .cl-idea__number { font-size: 2.5rem; }
  .cl-idea__title { font-size: 1.35rem; }
  .cl-table { font-size: 0.75rem; }
  .cl-table td, .cl-table th { padding: 10px 12px; }
}
