:root {
  --discovery-surface: linear-gradient(135deg, rgba(224, 242, 254, 0.9), rgba(237, 233, 254, 0.9));
  --discovery-surface-alt: linear-gradient(135deg, rgba(254, 249, 195, 0.95), rgba(254, 243, 199, 0.95));
}

.discovery-band,
.discovery-panel {
  border: 1px solid var(--border);
  border-radius: 24px;
  background: var(--discovery-surface);
  box-shadow: 0 18px 36px rgba(2, 8, 23, 0.08);
}

.discovery-band {
  padding: 28px;
  margin: 28px 0;
}

.discovery-panel {
  padding: 32px;
  margin: 40px 0;
}

.discovery-panel.discovery-panel-alt {
  background: var(--discovery-surface-alt);
}

.discovery-shell {
  display: grid;
  gap: 24px;
}

@media (min-width: 860px) {
  .discovery-shell.discovery-shell-split {
    grid-template-columns: minmax(0, 1.3fr) minmax(260px, 0.9fr);
    align-items: start;
  }
}

.discovery-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border: 1px solid rgba(14, 165, 233, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: #075985;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.discovery-panel h2,
.discovery-band h2,
.discovery-panel h3,
.discovery-band h3 {
  margin-top: 0;
}

.discovery-copy {
  color: var(--muted);
  line-height: 1.8;
}

.discovery-list {
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.8;
}

.discovery-list li + li {
  margin-top: 8px;
}

.discovery-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.discovery-facts {
  display: grid;
  gap: 12px;
}

.discovery-fact {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(2, 8, 23, 0.08);
}

.discovery-fact strong {
  display: block;
  color: var(--ink);
  margin-bottom: 4px;
}

.discovery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.discovery-card {
  display: block;
  text-decoration: none;
  color: inherit;
  padding: 20px;
  border-radius: 20px;
  border: 1px solid rgba(2, 8, 23, 0.1);
  background: #fff;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.discovery-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(2, 8, 23, 0.1);
  border-color: rgba(79, 70, 229, 0.28);
}

.discovery-card h3,
.discovery-card h4 {
  margin: 10px 0 8px;
  color: var(--ink);
}

.discovery-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.discovery-meta {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(224, 242, 254, 0.9);
  color: #0369a1;
  font-size: 12px;
  font-weight: 700;
}

.discovery-inline-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.discovery-inline-links a {
  color: var(--brand-2);
  font-weight: 700;
  text-decoration: none;
}

.discovery-inline-links a:hover {
  text-decoration: underline;
}

.support-note {
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(2, 8, 23, 0.08);
  color: var(--muted);
  line-height: 1.7;
}

.support-columns {
  display: grid;
  gap: 18px;
}

@media (min-width: 900px) {
  .support-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
