.dd-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  gap: 16px;
}
.dd-crumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #9da4ae;
  font-weight: 500;
}
.dd-crumb .sep { color: #d2d6db; }
.dd-crumb .current { color: #1f2a37; font-weight: 600; }

@keyframes ddFade {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.page {
  padding: 26px 30px 48px;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  animation: ddFade .5s ease both;
}

/* ═══════════════════════════════════════════════════════
   UNIFIED HERO + SIGNAL BLOCK
   Single cohesive container — headline → score → signals
   ═══════════════════════════════════════════════════════ */
.dd-intel {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(17,25,39,0.04);
  overflow: hidden;
  position: relative;
}
.dd-intel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1100px 380px at 85% -10%, rgba(165,180,252,0.16), transparent 60%),
    radial-gradient(800px 400px at -10% 0%, rgba(74,222,128,0.07), transparent 55%);
  pointer-events: none;
}

/* Upper region: headline + score */
.dd-intel-upper {
  position: relative;
  padding: 52px 64px 44px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
}
.dd-intel-left { max-width: 620px; flex: 0 1 auto; }
.dd-intel-right { flex-shrink: 0; }
.dd-intel-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  color: #6c737f;
  padding: 6px 12px;
  background: #f3f4f6;
  border-radius: 999px;
  margin-bottom: 24px;
}
.dd-intel-eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 3px rgba(74,222,128,0.18);
}
.dd-intel-prop {
  font-size: 13px; color: #6c737f; font-weight: 500;
  margin-bottom: 16px;
}
.dd-intel-prop strong { color: #1f2a37; font-weight: 600; }

.dd-intel-headline {
  font-family: Georgia, serif;
  font-size: 40px;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.9px;
  color: #111927;
  margin: 0 0 18px;
}
.dd-intel-summary {
  font-size: 15px;
  line-height: 1.6;
  color: #4d5761;
  max-width: 560px;
  margin: 0;
}

/* Score */
.dd-score {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
}
.dd-score-ring {
  position: relative;
  width: 260px; height: 260px;
  display: flex; align-items: center; justify-content: center;
}
.dd-score-ring svg { position: absolute; inset: 0; transform: rotate(-90deg); }
.dd-score-inner {
  text-align: center;
  position: relative;
  z-index: 1;
  width: 170px;
}
.dd-score-num {
  font-family: Georgia, serif;
  font-size: 80px;
  font-weight: 800;
  color: #111927;
  line-height: 1;
  letter-spacing: -2.8px;
}
.dd-score-out {
  font-size: 12px; color: #9da4ae; font-weight: 500;
  margin-top: 6px;
}
.dd-score-conclusion {
  font-size: 11px;
  font-weight: 700;
  color: #4d5761;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  white-space: nowrap;
}

/* Divider band — connects score to signals */
.dd-intel-divider {
  position: relative;
  padding: 0 48px;
  display: flex;
  align-items: center;
  gap: 14px;
  height: 48px;
  border-top: 1px solid #f3f4f6;
  background: #fafbfc;
}
.dd-intel-divider-lbl {
  font-size: 10px;
  font-weight: 700;
  color: #4d5761;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}
.dd-intel-divider-rule {
  flex: 1;
  height: 1px;
  background: #e5e7eb;
}
.dd-intel-divider-hint {
  font-size: 11.5px;
  color: #6c737f;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.dd-intel-divider-hint svg {
  opacity: 0.7;
}

/* Signal strip (inside intel block) */
.dd-signals-wrap {
  position: relative;
  padding: 18px 24px 28px;
  background: #fafbfc;
}
.dd-signals {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
}
.dd-signal {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 14px 13px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  position: relative;
  min-height: 112px;
}
.dd-signal:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(17,25,39,0.06);
  border-color: #d2d6db;
}
.dd-signal.active {
  border-color: #1f2a37;
  box-shadow: 0 6px 14px rgba(17,25,39,0.08);
  transform: translateY(-2px);
}
.dd-signal-name {
  font-size: 11px;
  font-weight: 600;
  color: #6c737f;
  margin-bottom: 10px;
  line-height: 1.3;
  min-height: 28px;
}
.dd-signal-status {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 700;
  color: #111927;
  margin-bottom: 8px;
}
.dd-signal-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.dot-high { background: #4ade80; box-shadow: 0 0 0 3px rgba(74,222,128,0.18);}
.dot-med  { background: #f59e0b; box-shadow: 0 0 0 3px rgba(245,158,11,0.15);}
.dot-low  { background: #a5b4fc; box-shadow: 0 0 0 3px rgba(165,180,252,0.22);}
.dd-signal-micro {
  font-size: 10.5px;
  color: #9da4ae;
  font-weight: 500;
  line-height: 1.4;
  margin-top: auto;
}

/* ═══════════════════════════════════════════════════════
   GENERIC SECTIONS (downstream)
   ═══════════════════════════════════════════════════════ */
.dd-section { margin-top: 36px; }
.dd-section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 14px;
  gap: 16px;
}
.dd-section-title {
  font-family: Georgia, serif;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.4px;
  color: #111927;
  margin: 0;
}
.dd-section-sub { font-size: 12px; color: #9da4ae; font-weight: 500; }

/* ——— Why This Score Exists (static cards, no dropdown) ——— */
.dd-drivers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.dd-driver {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 22px 24px;
  box-shadow: 0 4px 12px rgba(17,25,39,0.04);
  display: flex;
  flex-direction: column;
}
.dd-driver-drivers-lbl {
  font-size: 9.5px;
  font-weight: 700;
  color: #9da4ae;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 10px;
}
.dd-driver-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 18px;
}
.dd-driver-chip {
  font-size: 10.5px;
  font-weight: 600;
  color: #4d5761;
  padding: 4px 9px;
  background: #f9fafb;
  border: 1px solid #f3f4f6;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.dd-driver-chip .sigdot { width: 5px; height: 5px; border-radius: 50%; }
.dd-driver-title {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.2px;
  color: #111927;
  margin: 0 0 10px;
}
.dd-driver-body {
  font-size: 13px;
  line-height: 1.65;
  color: #4d5761;
  margin: 0;
}

/* ——— Market snapshot (quiet) ——— */
.dd-snapshot {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 18px 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  box-shadow: 0 4px 12px rgba(17,25,39,0.04);
}
.dd-stat {
  padding: 0 20px;
  border-right: 1px solid #f3f4f6;
}
.dd-stat:first-child { padding-left: 0; }
.dd-stat:last-child { border-right: none; padding-right: 0; }
.dd-stat-label {
  font-size: 10px;
  font-weight: 600;
  color: #9da4ae;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}
.dd-stat-value {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #111927;
  letter-spacing: -0.3px;
  line-height: 1;
  margin-bottom: 4px;
}
.dd-stat-trend {
  font-size: 11px;
  font-weight: 500;
  color: #9da4ae;
}
