/* ============================================================
   Use Case subpage shared styles
   ============================================================ */

/* ── Hero badge + actions ──────────────────────────────────── */
.uc-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-2);
  border: 1px solid var(--border-2);
  border-radius: 100px;
  padding: 5px 14px;
  margin-bottom: 28px;
  background: var(--surface);
}
.uc-hero-dot {
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}
.uc-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 32px;
}

/* ── Terminal in use-case pages ─────────────────────────────── */
.uc-terminal-wrap {
  max-width: 760px;
  margin: 0 auto;
}
.uc-terminal {
  font-family: var(--font-mono);
  font-size: 13px;
  line-height: 1.65;
}
.uc-terminal .feat-terminal-body {
  padding: 20px 20px 24px;
  min-height: 280px;
}

/* ── Use-case value props (alternating sections) ────────────── */
.uc-value {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.uc-value-reverse {
  direction: rtl;
}
.uc-value-reverse > * {
  direction: ltr;
}
.uc-value-copy h2 {
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 16px;
}
.uc-value-copy p {
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 24px;
}
.uc-value-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.uc-value-bullets li {
  font-size: 15px;
  color: var(--text-2);
  padding-left: 20px;
  position: relative;
}
.uc-value-bullets li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 600;
}

/* ── Example output cards ──────────────────────────────────── */
.uc-examples-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}
.uc-example-card {
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
}
.uc-example-card h3 {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-2);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}
.uc-example-card pre {
  font-family: var(--font-mono);
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-2);
  white-space: pre-wrap;
}
.uc-example-header {
  margin-bottom: 14px;
}
.uc-example-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand);
}
.uc-example-body p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 8px;
}
.uc-example-body p:last-child {
  margin-bottom: 0;
}
.uc-example-body strong {
  color: var(--text-1);
  font-weight: 600;
}
.uc-example-body ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.uc-example-body li {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.65;
  padding-left: 20px;
  position: relative;
}
.uc-example-body li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--brand);
  font-weight: 600;
}
.uc-example-body li strong {
  color: var(--text-1);
}
.uc-example-body em {
  color: var(--text-3);
  font-style: italic;
}

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 768px) {
  .uc-value { grid-template-columns: 1fr; gap: 32px; }
  .uc-value-reverse { direction: ltr; }
  .uc-hero-actions { flex-direction: column; }
  .uc-hero-actions .btn { width: 100%; justify-content: center; }
  .uc-example-card { padding: 20px 24px; }
}
