/* ----------------------------------------------------------
   Section primitives — shared by Pipeline/Immune/Swarm/Scoring/
   OnChainProof/VitalSigns/Pricing
   ---------------------------------------------------------- */
.section {
  max-width: 1320px;
  margin: 0 auto;
  padding: 96px 24px 0;
  position: relative;
  z-index: 1;
}
.section__label {
  font-family: var(--font-mono);
  font-size: 12px; font-weight: 500;
  letter-spacing: var(--track-widest);
  text-transform: uppercase;
  color: var(--cyan);
  text-shadow: var(--text-glow-cyan);
  text-align: center;
  margin: 0;
}
.section__sub {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--fg-2);
  text-align: center;
  margin: 12px 0 0;
  text-transform: none;
  letter-spacing: 0;
}
.section__body { margin-top: 48px; }

/* Glass card */
.gcard {
  background: rgba(10,10,15,0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px;
  position: relative;
  overflow: hidden;
  transition: border-color 200ms, transform 200ms;
}
.gcard:hover { border-color: var(--border-strong); transform: translateY(-2px); }
.gcard--strip { padding-top: 28px; }
.gcard--strip::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 2px;
  background: currentColor;
  box-shadow: 0 0 12px currentColor;
}
.gcard--strip-green { color: var(--green); }
.gcard--strip-cyan  { color: var(--cyan); }
.gcard--strip-amber { color: var(--amber); }

.gcard__icon {
  width: 32px; height: 32px;
  color: var(--green);
  margin-bottom: 16px;
  display: block;
}
.gcard__icon--cyan  { color: var(--cyan); }
.gcard__icon--amber { color: var(--amber); }

.gcard__title {
  font-family: var(--font-mono);
  font-size: 14px; font-weight: 700;
  letter-spacing: var(--track-wider);
  color: var(--green);
  text-transform: uppercase;
  margin: 0 0 10px;
}
.gcard__title--cyan  { color: var(--cyan); text-shadow: var(--text-glow-cyan); }
.gcard__title--amber { color: var(--amber); text-shadow: var(--text-glow-amber); }
.gcard__title--green { color: var(--green); text-shadow: var(--text-glow-green); }

.gcard__body {
  font-family: var(--font-mono);
  font-size: 13px; font-weight: 400;
  color: var(--fg-1);
  line-height: 1.5;
  margin: 0;
  /* restore normal case — card titles carry the uppercase weight */
  text-transform: none;
  letter-spacing: 0;
}

/* Section CTA */
.section__cta { margin-top: 48px; text-align: center; }
