
.card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 100%;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(18, 19, 24, 0.98), rgba(12, 13, 18, 0.96));
  box-shadow: var(--shadow);
}

.card p,
.card li {
  color: #d7dce0;
}

.card-light {
  background: linear-gradient(180deg, var(--panel-light), var(--panel-light-2));
  border-color: #dadddf;
}

.card-light h1,
.card-light h2,
.card-light h3,
.card-light p,
.card-light li,
.card-light .panel-label,
.card-light .card-meta {
  color: var(--ink);
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 6px 0 0;
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid rgba(173, 178, 182, 0.18);
  border-radius: 999px;
  background: rgba(18, 19, 24, 0.96);
  color: #d7dce0;
  font-size: 0.74rem;
  font-weight: 700;
}

.badge-soft {
  border-color: rgba(200, 184, 141, 0.36);
  background: rgba(200, 184, 141, 0.14);
  color: #f4f1e9;
}

.card-light .badge {
  background: #fff;
  border-color: #dadddf;
  color: var(--ink);
}

.card-light .badge-soft {
  background: #f4f5f2;
  border-color: #dadddf;
}

.hero-panel {
  padding: 32px;
  border-radius: 28px;
}

.evidence-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(50, 82, 133, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(50, 82, 133, 0.08) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.58;
  pointer-events: none;
}

.evidence-card > * {
  position: relative;
  z-index: 1;
}

.evidence-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.evidence-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid #dadddf;
  border-radius: 999px;
  background: #f4f5f2;
  color: #1f2428;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.evidence-status::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #6ecf92;
  box-shadow: 0 0 0 6px rgba(110, 207, 146, 0.12);
}

.hero-proof-grid {
  display: grid;
  gap: 14px;
  margin: 20px 0 22px;
}

.hero-proof-item {
  padding: 18px;
  border: 1px solid #dadddf;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 18px rgba(31, 36, 40, 0.06);
}

.hero-proof-item h3 {
  margin-bottom: 6px;
}

.hero-panel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.hero-panel-actions a {
  color: #5f676b;
  font-weight: 800;
}

.home-shell {
  display: grid;
  gap: 2px;
}

.home-shell .section {
  padding: 34px 0;
}

.home-section-shell {
  padding: 30px;
  border: 1px solid rgba(173, 178, 182, 0.14);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(13, 16, 24, 0.96), rgba(7, 10, 16, 0.98)),
    linear-gradient(90deg, rgba(200, 184, 141, 0.08), transparent 45%);
  box-shadow: 0 22px 44px rgba(2, 8, 18, 0.2);
}

.section-head {
  display: grid;
  gap: 8px;
  margin-bottom: 20px;
}

.section-head-inline {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 18px;
}

.section-link {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(173, 178, 182, 0.22);
  border-radius: 999px;
  color: rgba(238, 240, 242, 0.86);
  font-weight: 700;
  white-space: nowrap;
}

.section-link:hover,
.section-link:focus-visible {
  background: rgba(200, 184, 141, 0.1);
  text-decoration: none;
}

