.sec-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 64px;
}
.sec-card {
  background: var(--bone);
  padding: 40px;
}
.sec-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--ember);
  font-weight: 600;
  margin-bottom: 14px;
}
/* Card titles are h2 (they sit directly under the page h1; they were h3, which
   skipped a level). Every property that differs between the base h2 and h3 rules
   is set explicitly here, so the rendering is unchanged. */
.sec-card h2,
.sec-card h3 {
  font-size: 26px;
  margin-bottom: 18px;
  line-height: 1.15;
}
.sec-card ul { padding-left: 0; }
.sec-card ul li {
  padding-left: 22px;
  position: relative;
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-soft);
}
.sec-card ul li::before {
  content: '\2192';
  position: absolute;
  left: 0;
  color: var(--ember);
  font-family: var(--font-mono);
  font-weight: 600;
}
.sec-card ul li strong { color: var(--ink); font-weight: 600; }
.sec-card code {
  font-family: var(--font-mono);
  font-size: 12px;
  background: var(--bone-2);
  padding: 1px 6px;
  border-radius: 2px;
  color: var(--ember-deep);
}

.sec-report {
  background: var(--ink);
  color: var(--bone);
  padding: 56px;
  border-radius: var(--radius);
}
.sec-report-inner {
  max-width: 720px;
}
.sec-report .eyebrow { color: rgba(255,255,255,0.72); background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.16); }
/* line-height is stated because the base h3 rule set 1.2 and the base h2 rule
   sets 1.08; pinning it keeps the promoted heading pixel-identical. */
.sec-report h2,
.sec-report h3 { color: var(--bone); font-size: 36px; line-height: 1.2; margin-bottom: 16px; }
.sec-report p { color: rgba(245,241,232,0.78); font-size: 16px; line-height: 1.65; margin-bottom: 14px; }
.sec-report a { color: var(--ember); border-bottom: 1px solid rgba(232,93,43,0.4); }
.sec-report .pgp { font-family: var(--font-mono); font-size: 11px; color: rgba(245,241,232,0.55); letter-spacing: 0.04em; }
.sec-report .pgp code {
  background: rgba(245,241,232,0.06);
  color: var(--bone);
  padding: 2px 6px;
  border-radius: 2px;
  font-size: 11px;
}
.sec-stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.stat {
  background: rgba(245,241,232,0.06);
  padding: 20px 24px;
  border-radius: var(--radius);
  border-left: 2px solid var(--ember);
}
.stat-num {
  font-family: var(--font-display);
  font-size: 36px;
  line-height: 1;
  color: var(--bone);
}
.stat-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245,241,232,0.6);
  margin-top: 6px;
}

@media (max-width: 820px) {
  .sec-grid { grid-template-columns: 1fr; }
  .sec-card { padding: 28px; }
  .sec-report { padding: 32px; }
}
