/*
  BEM naming convention used in this file:
  .block
  .block__element
  .block--modifier
  Utility state classes use the `is-` prefix.
*/
:root {
  --blue: #2563EB; --blue-light: #EFF6FF; --blue-mid: #BFDBFE; --blue-dark: #1D4ED8;
  --text: #111827; --text-muted: #6B7280; --border: #E5E7EB; --row-alt: #F9FAFB;
  --green: #059669; --green-light: #ECFDF5;
  --amber: #D97706; --amber-light: #FFFBEB;
  --purple: #7C3AED; --purple-light: #F5F3FF;
  --font: system-ui, 'Segoe UI', 'Inter', -apple-system, sans-serif;
  --wa-bg: #ECE5DD; --wa-bubble-in: #FFFFFF; --wa-bubble-out: #DCF8C6;
  --wa-action: #00A884; --wa-dark-green: #075E54; --wa-teal: #128C7E;
  --wa-bright-green: #25D366; --wa-text: #111B21; --wa-text-muted: #667781;
  --wa-divider: #E9EDEF; --wa-input-bg: #F0F2F5;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: var(--font); color: var(--text); background: #F3F4F6; min-width: 1440px; }

/* ==========================================================================
   Site Header
   BEM block: .site-header
   ========================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--wa-dark-green);
  color: white;
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
}
.site-header__top {
  display: flex; align-items: center; gap: 20px;
  padding: 14px 32px 10px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.site-header__logo { font-size: 22px; font-weight: 800; letter-spacing: -0.5px; }
.site-header__logo span { color: var(--wa-bright-green); }
.site-header__subtitle { font-size: 13px; opacity: 0.75; }
.site-header__legends { display: flex; gap: 10px; margin-left: auto; align-items: center; }
.phase-badge {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 4px 12px; border-radius: 20px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.02em;
}
.phase-badge.p1 { background: var(--blue); color: white; }
.phase-badge.p2 { background: var(--green); color: white; }
.phase-badge.p3 { background: var(--purple); color: white; }
.site-header__nav {
  display: flex; align-items: center; gap: 4px;
  padding: 8px 32px;
  background: rgba(0,0,0,0.2);
}
.site-header__nav-label { font-size: 11px; font-weight: 700; opacity: 0.6; text-transform: uppercase; letter-spacing: 0.1em; margin-right: 8px; }
.site-header__nav-link {
  padding: 5px 13px; border-radius: 6px;
  font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.85);
  cursor: pointer; text-decoration: none; transition: all 0.15s;
  border: 1px solid rgba(255,255,255,0.2);
}
.site-header__nav-link:hover { background: rgba(255,255,255,0.2); color: white; }

/* ==========================================================================
   Journey Board Layout
   BEM block: .journey-board
   ========================================================================== */
.journey-board { padding: 32px; max-width: 1800px; margin: 0 auto; }

/* ==========================================================================
   Flow Card
   BEM block: .flow
   ========================================================================== */
.flow {
  margin-bottom: 32px; border: 1px solid var(--border);
  border-radius: 16px; overflow: hidden;
  transition: all 0.2s; background: white;
}
.flow.highlighted {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
  background: #FAFCFF;
}
.flow__header {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 24px; background: var(--row-alt);
  border-bottom: 1px solid var(--border); cursor: pointer;
  user-select: none;
}
.flow__header:hover { background: #F1F5F9; }
.flow__id { font-family: monospace; font-weight: 700; font-size: 17px; color: var(--blue); }
.flow__title { font-weight: 700; font-size: 15px; }
.flow__description { color: var(--text-muted); font-size: 13px; flex: 1; }
.flow__toggle { font-size: 11px; color: var(--text-muted); opacity: 0.6; margin-left: auto; flex-shrink: 0; }

/* ==========================================================================
   Swimlane Grid
   BEM block: .swimlane
   ========================================================================== */
.swimlane { overflow-x: auto; }
.swimlane__grid {
  display: grid;
  min-width: max-content;
  width: 100%;
}
/* rows within grid use display:contents trick */
.swimlane__row { display: contents; }
.swimlane__label {
  padding: 14px 16px; background: var(--row-alt);
  border-right: 2px solid var(--border);
  border-bottom: 1px solid var(--border);
  font-size: 10px; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--text-muted);
  position: sticky; left: 0; z-index: 2;
  display: flex; align-items: flex-start;
  min-width: 130px; max-width: 130px;
  writing-mode: horizontal-tb;
}
.swimlane__cell {
  padding: 14px 12px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  min-width: 200px; min-height: 100px;
  display: flex; flex-direction: column;
  align-items: center; gap: 8px;
  vertical-align: top;
}
.swimlane__cell:last-child { border-right: none; }
.swimlane__row:last-child .swimlane__label,
.swimlane__row:last-child .swimlane__cell { border-bottom: none; }

/* Sub-flow separator */
.subflow__header {
  padding: 8px 16px; background: #F8F9FF;
  border-bottom: 1px solid var(--border);
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--blue);
  display: flex; align-items: center; gap: 8px;
}
.subflow__header.dotted { border-top: 2px dashed var(--border); }

/* ==========================================================================
   Customer Step
   BEM block: .customer-step
   ========================================================================== */
.customer-step {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  text-align: center;
}
.customer-step__icon { font-size: 26px; }
.customer-step__text { font-size: 12px; color: var(--text); line-height: 1.4; font-weight: 500; }
.customer-step__note { font-size: 11px; color: var(--text-muted); }

/* ==========================================================================
   WhatsApp Preview
   BEM block: .whatsapp-preview
   ========================================================================== */
.whatsapp-preview {
  width: 240px; min-width: 220px; background: var(--wa-bg);
  border-radius: 12px; padding: 10px;
  display: flex; flex-direction: column; gap: 6px;
  min-height: 80px;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.06);
}
.whatsapp-preview__row { display: flex; }
.whatsapp-preview__row.out { justify-content: flex-end; }
.whatsapp-preview__row.in { justify-content: flex-start; }
.whatsapp-preview__bubble {
  max-width: 88%; padding: 7px 10px 18px;
  border-radius: 8px; font-size: 12px;
  position: relative; line-height: 1.4;
  color: var(--wa-text);
}
.whatsapp-preview__bubble.out { background: var(--wa-bubble-out); border-radius: 8px 0 8px 8px; }
.whatsapp-preview__bubble.in { background: var(--wa-bubble-in); border-radius: 0 8px 8px 8px; box-shadow: 0 1px 2px rgba(0,0,0,0.1); }
.whatsapp-preview__timestamp { position: absolute; bottom: 4px; right: 7px; font-size: 10px; color: var(--wa-text-muted); white-space: nowrap; }
.whatsapp-preview__button-message { background: var(--wa-bubble-in); border-radius: 8px; overflow: hidden; box-shadow: 0 1px 2px rgba(0,0,0,0.1); font-size: 12px; width: 100%; }
.whatsapp-preview__button-body { padding: 8px 10px 18px; position: relative; line-height: 1.4; color: var(--wa-text); }
.whatsapp-preview__divider { height: 1px; background: var(--wa-divider); }
.whatsapp-preview__interactive-button { padding: 8px 10px; text-align: center; color: var(--wa-action); font-size: 13px; font-weight: 500; cursor: pointer; border-top: 1px solid var(--wa-divider); }
.whatsapp-preview__interactive-button:first-of-type { border-top: none; }
.whatsapp-preview__list-message { background: var(--wa-bubble-in); border-radius: 8px; overflow: hidden; box-shadow: 0 1px 2px rgba(0,0,0,0.1); font-size: 12px; width: 100%; }
.whatsapp-preview__list-body { padding: 8px 10px 18px; position: relative; line-height: 1.5; color: var(--wa-text); }
.whatsapp-preview__list-body small { font-size: 11px; color: var(--wa-text-muted); }
.whatsapp-preview__list-cta { padding: 9px; text-align: center; color: var(--wa-action); font-size: 13px; font-weight: 500; border-top: 1px solid var(--wa-divider); display: flex; align-items: center; justify-content: center; gap: 6px; }
.whatsapp-preview__template { background: var(--wa-bubble-in); border-radius: 8px; overflow: hidden; box-shadow: 0 1px 2px rgba(0,0,0,0.1); font-size: 12px; width: 100%; }
.whatsapp-preview__template-header { background: #d9fdd3; padding: 10px; font-weight: 600; font-size: 13px; color: var(--wa-text); }
.whatsapp-preview__template-body { padding: 8px 10px 18px; position: relative; line-height: 1.5; color: var(--wa-text); }
.whatsapp-preview__template-footer { padding: 4px 10px 8px; color: var(--wa-text-muted); font-size: 11px; border-bottom: 1px solid var(--wa-divider); }
.whatsapp-preview__product-card { background: var(--wa-bubble-in); border-radius: 8px; overflow: hidden; box-shadow: 0 1px 2px rgba(0,0,0,0.1); font-size: 12px; width: 100%; }
.whatsapp-preview__product-image { height: 72px; background: linear-gradient(135deg, #fef3c7, #fde68a); display: flex; align-items: center; justify-content: center; font-size: 30px; }
.whatsapp-preview__product-info { padding: 8px 10px; }
.whatsapp-preview__product-name { font-weight: 600; font-size: 12px; margin-bottom: 2px; color: var(--wa-text); }
.whatsapp-preview__product-price { color: var(--wa-action); font-weight: 600; font-size: 12px; margin-bottom: 6px; }
.whatsapp-preview__product-button { background: var(--wa-action); color: white; border-radius: 4px; padding: 5px 8px; text-align: center; font-size: 11px; font-weight: 500; }
.whatsapp-preview__empty { color: var(--wa-text-muted); font-size: 11px; font-style: italic; text-align: center; padding: 8px; }
/* WA status bar */
.whatsapp-preview__status-bar { background: var(--wa-dark-green); padding: 6px 10px; border-radius: 8px 8px 0 0; display: flex; align-items: center; gap: 6px; }
.whatsapp-preview__status-avatar { width: 28px; height: 28px; background: var(--wa-bright-green); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; }
.whatsapp-preview__status-name { color: white; font-size: 12px; font-weight: 600; }
.whatsapp-preview__status-subtitle { color: rgba(255,255,255,0.7); font-size: 10px; }
.whatsapp-preview.with-bar { padding: 0; border-radius: 12px; overflow: hidden; }
.whatsapp-preview.with-bar .whatsapp-preview__chat-area { padding: 8px; display: flex; flex-direction: column; gap: 6px; background: var(--wa-bg); }

/* ==========================================================================
   AI Card
   BEM block: .ai-card
   ========================================================================== */
.ai-card {
  background: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%);
  border-radius: 12px; padding: 14px 16px;
  text-align: center; color: white; min-width: 150px;
  box-shadow: 0 4px 12px rgba(49,46,129,0.35);
}
.ai-card__icon { font-size: 24px; margin-bottom: 6px; }
.ai-card__label { font-size: 12px; font-weight: 700; letter-spacing: 0.02em; margin-bottom: 4px; }
.ai-card__description { font-size: 11px; opacity: 0.75; line-height: 1.4; }
.ai-card__badge { display: inline-block; background: rgba(255,255,255,0.15); border-radius: 4px; padding: 2px 7px; font-size: 10px; font-weight: 600; margin-top: 5px; }

/* ==========================================================================
   API Card
   BEM block: .api-card
   ========================================================================== */
.api-card {
  background: #0F172A; border-radius: 8px; padding: 10px 12px;
  font-family: 'Courier New', monospace; min-width: 160px;
  border: 1px solid #1E293B;
}
.api-card__method {
  display: inline-block; padding: 2px 7px; border-radius: 4px;
  font-size: 10px; font-weight: 800; letter-spacing: 0.05em;
  text-transform: uppercase; margin-right: 6px;
  background: lightgreen;
}
.api-card__method.get { background: #1D4ED8; color: white; }
.api-card__method.post { background: #059669; color: white; }
.api-card__method.put { background: #D97706; color: white; }
.api-card__method.delete { background: #DC2626; color: white; }
.api-card__path { color: #93C5FD; font-size: 11px; font-weight: 600; word-break: break-all; }
.api-card__description { color: #64748B; font-size: 10px; margin-top: 5px; font-family: var(--font); }
.api-stack { display: flex; flex-direction: column; gap: 6px; width: 100%; }

/* ==========================================================================
   Mini Program Card
   BEM block: .mini-program-card
   ========================================================================== */
.mini-program-card {
  width: 150px; border-radius: 12px; overflow: hidden;
  border: 2px solid #334155;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  background: white; font-size: 11px;
  flex-shrink: 0;
}
.mini-program-card__bar {
  background: var(--wa-dark-green); color: rgba(255,255,255,0.9);
  font-size: 9px; text-align: center; padding: 5px 6px;
  font-weight: 500; letter-spacing: 0.02em;
}
.mini-program-card__content { padding: 8px; display: flex; flex-direction: column; gap: 4px; }
.mini-program-card__title { font-size: 12px; font-weight: 700; color: var(--text); border-bottom: 1px solid var(--border); padding-bottom: 4px; margin-bottom: 2px; }
.mini-program-card__item { font-size: 10px; color: var(--text-muted); padding: 2px 0; border-bottom: 1px solid #F3F4F6; }
.mini-program-card__item-row { display: flex; justify-content: space-between; font-size: 10px; color: var(--text-muted); padding: 2px 0; }
.mini-program-card__button { background: var(--wa-action); color: white; border-radius: 6px; padding: 5px; text-align: center; font-size: 10px; font-weight: 600; margin-top: 4px; }
.mini-program-card__button.secondary { background: var(--blue-mid); color: var(--blue-dark); }
.mini-program-card__total { font-size: 11px; font-weight: 700; color: var(--text); margin-top: 2px; }
.mini-program-card__badge { background: var(--green-light); color: var(--green); border-radius: 4px; padding: 2px 5px; font-size: 9px; font-weight: 600; text-align: center; }
.swimlane__empty { color: var(--text-muted); font-size: 12px; font-style: italic; text-align: center; padding: 20px 10px; }

/* ==========================================================================
   Integration Banner
   BEM block: .integration-banner
   ========================================================================== */
.integration-banner {
  background: #0F172A; border-radius: 10px;
  padding: 12px 24px; margin-bottom: 28px;
  display: flex; align-items: center; gap: 14px;
  flex-wrap: wrap;
}
.integration-banner__label {
  font-size: 10px; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.12em; color: #64748B; white-space: nowrap;
}
.integration-banner__arrow { color: #334155; font-size: 14px; }
.integration-banner__pill {
  display: inline-block; background: #1E293B;
  border: 1px solid #334155; border-radius: 20px;
  padding: 4px 12px; font-size: 11px; font-weight: 600;
  font-family: 'Courier New', monospace;
  color: #4ADE80;
}
.integration-banner__pill.blue { color: #93C5FD; }
.integration-banner__pill.amber { color: #FCD34D; }
.integration-banner__pill.purple { color: #C4B5FD; }

/* ── STEP CONNECTOR ── */
.step-arrow { display: flex; align-items: center; color: var(--text-muted); font-size: 18px; padding: 0 4px; }

/* ── DASH SEPARATOR ── */
.swimlane__dash { color: var(--text-muted); font-size: 20px; opacity: 0.35; }

/* ── PATH LABEL ── */
.path-badge {
  display: inline-block; padding: 3px 10px;
  border-radius: 12px; font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  margin-bottom: 4px;
}
.path-badge.reactive { background: var(--blue-light); color: var(--blue-dark); }
.path-badge.proactive { background: var(--green-light); color: var(--green); }

/* ==========================================================================
   Mini Program Modal
   BEM block: .mini-program-modal
   ========================================================================== */
.mini-program-modal__backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}
.mini-program-modal__backdrop.open { display: flex; }
.mini-program-modal {
  background: #F5F5F5;
  border-radius: 32px;
  overflow: hidden;
  width: 340px;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 32px 80px rgba(0,0,0,0.45), 0 0 0 1px rgba(255,255,255,0.1);
  animation: modalSlideUp 0.35s cubic-bezier(0.34, 1.0, 0.64, 1);
}
@keyframes modalSlideUp {
  from { transform: translateY(40px) scale(0.97); opacity: 0; }
  to   { transform: translateY(0)    scale(1);    opacity: 1; }
}
/* Phone chrome */
.mini-program-modal__phone-chrome {
  background: #111;
  padding: 10px 10px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.mini-program-modal__notch {
  width: 90px; height: 20px;
  background: #111;
  border-radius: 0 0 12px 12px;
  display: flex; align-items: center; justify-content: center; gap: 6px;
}
.mini-program-modal__notch-dot { width: 7px; height: 7px; border-radius: 50%; background: #1A1A1A; border: 1px solid #2A2A2A; }
/* WA bar inside modal */
.mini-program-modal__wa-bar {
  background: var(--wa-dark-green);
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.mini-program-modal__close {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: none;
  color: #fff;
  font-size: 13px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.mini-program-modal__url {
  flex: 1;
  background: rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 4px 10px;
  font-size: 10px;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}
/* Modal content */
.mini-program-modal__content {
  background: #fff;
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.mini-program-modal__app-header {
  padding: 14px 16px 10px;
  border-bottom: 1px solid #EBEBEB;
  display: flex;
  align-items: center;
  gap: 10px;
}
.mini-program-modal__app-logo {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: linear-gradient(135deg, #075E54, #25D366);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.mini-program-modal__app-title { font-size: 14px; font-weight: 700; color: #111; }
.mini-program-modal__app-subtitle { font-size: 11px; color: #888; }
.mini-program-modal__body {
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.mini-program-modal__section {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #EBEBEB;
  overflow: hidden;
}
.mini-program-modal__section-title {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #888;
  padding: 10px 14px 6px;
  border-bottom: 1px solid #F5F5F5;
}
.mini-program-modal__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 14px;
  border-bottom: 1px solid #F5F5F5;
  font-size: 13px;
}
.mini-program-modal__row:last-child { border-bottom: none; }
.mini-program-modal__row-label { color: #555; }
.mini-program-modal__row-value { font-weight: 600; color: #111; }
.mini-program-modal__row.total .mini-program-modal__row-label { font-weight: 700; font-size: 14px; color: #111; }
.mini-program-modal__row.total .mini-program-modal__row-value { font-weight: 800; font-size: 15px; color: #075E54; }
.mini-program-modal__item-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-bottom: 1px solid #F5F5F5;
}
.mini-program-modal__item-row:last-child { border-bottom: none; }
.mini-program-modal__item-image {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.mini-program-modal__item-name { font-size: 13px; font-weight: 600; color: #111; }
.mini-program-modal__item-description { font-size: 11px; color: #888; }
.mini-program-modal__item-price { font-size: 13px; font-weight: 700; color: #075E54; margin-left: auto; }
.mini-program-modal__payment-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border-bottom: 1px solid #F5F5F5;
  cursor: pointer;
}
.mini-program-modal__payment-option:last-child { border-bottom: none; }
.mini-program-modal__payment-option.sel { background: #F0FDF4; }
.mini-program-modal__payment-icon { font-size: 22px; }
.mini-program-modal__payment-name { font-size: 13px; font-weight: 600; color: #111; }
.mini-program-modal__payment-subtitle { font-size: 11px; color: #888; }
.mini-program-modal__radio { width: 18px; height: 18px; border-radius: 50%; border: 2px solid #DDD; margin-left: auto; display: flex; align-items: center; justify-content: center; }
.mini-program-modal__payment-option.sel .mini-program-modal__radio { border-color: #25D366; background: #25D366; }
.mini-program-modal__payment-option.sel .mini-program-modal__radio::after { content:''; width:8px; height:8px; background:#fff; border-radius:50%; }
.mini-program-modal__success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 28px 20px;
}
.mini-program-modal__success-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  display: flex; align-items: center; justify-content: center;
  font-size: 30px;
  margin-bottom: 16px;
  box-shadow: 0 4px 16px rgba(37,211,102,0.3);
}
.mini-program-modal__success-title { font-size: 18px; font-weight: 800; color: #111; margin-bottom: 6px; }
.mini-program-modal__success-subtitle { font-size: 12px; color: #777; line-height: 1.5; margin-bottom: 16px; }
.mini-program-modal__order-id { background: #F0FDF4; border: 1px solid #BBF7D0; border-radius: 8px; padding: 10px 16px; font-family: monospace; font-size: 14px; font-weight: 700; color: #075E54; width: 100%; text-align: center; margin-bottom: 12px; }
.mini-program-modal__footer {
  background: #fff;
  border-top: 1px solid #EBEBEB;
  padding: 12px 14px;
  flex-shrink: 0;
}
.mini-program-modal__footer-button {
  width: 100%;
  background: linear-gradient(135deg, #075E54, #25D366);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 13px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
}
/* Mini frame preview button */
.mini-program-card__preview-button {
  margin-top: 6px;
  width: 100%;
  background: transparent;
  border: 1.5px solid #334155;
  border-radius: 6px;
  padding: 5px 8px;
  font-size: 10px;
  font-weight: 700;
  color: #334155;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  transition: all 0.15s;
  font-family: inherit;
}
.mini-program-card__preview-button:hover {
  background: #075E54;
  border-color: #075E54;
  color: white;
}

/* ========================================
   API JSON SAMPLE
======================================== */

.api-card__json {
  margin-top: 10px;
  padding: 10px 12px;
  max-height: 220px;
  overflow: auto;
  background: #020617;
  border: 1px solid #1E293B;
  border-radius: 8px;
  color: #D1FAE5;
  font-size: 10px;
  line-height: 1.5;
  white-space: pre;
}

.api-card__json code {
  font-family: 'Courier New', monospace;
}
