/* Praxis — Rubedo accent
   Corporate consciousness training platform
   Local styles: all shared components come from core.css */
:root {
  --platform-accent: var(--hh-accent);
  --platform-accent-shadow: var(--hh-accent-dark);
}

/* Hero watermark — Praxis logo, massively inflated, ultra-faint */
.hh-hero-section.hh-section--accent-bg {
  position: relative;
}

.hh-hero-section.hh-section--accent-bg::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -20%;
  transform: translateY(-50%);
  width: 90%;
  height: 160%;
  background: url('/assets/logo-praxis.svg') no-repeat center / contain;
  filter: brightness(10);
  opacity: 0.04;
  pointer-events: none;
}

/* Praxis feature number — large serif numerals for corporate methodology feel */
.praxis-step-num {
  font-family: var(--hh-font-serif);
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1;
  color: var(--hh-accent);
  opacity: 0.35;
  margin-bottom: 0.75rem;
}

/* Praxis metric strip — key numbers in a horizontal row */
.praxis-metrics {
  display: flex;
  gap: 3rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--hh-border-light);
}

.praxis-metric {
  display: flex;
  flex-direction: column;
}

.praxis-metric__value {
  font-family: var(--hh-font-serif);
  font-size: 2rem;
  font-weight: 500;
  color: var(--hh-accent);
  line-height: 1.1;
}

.praxis-metric__label {
  font-family: var(--hh-font-sans);
  font-size: var(--hh-fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--hh-text-muted-dark);
  margin-top: 0.25rem;
}

@media (max-width: 1024px) {
  .praxis-metrics {
    flex-wrap: wrap;
    gap: 1.5rem 2.5rem;
    width: 100%;
  }
  .praxis-metric__value {
    font-size: 2.5rem;
  }
  .praxis-metric__label {
    font-size: 0.75rem;
    margin-top: 0.35rem;
  }
  .hh-hero-section.hh-section--accent-bg::after {
    right: -40%;
    width: 120%;
    opacity: 0.03;
  }
}

@media (max-width: 480px) {
  .hh-hero-section.hh-section--accent-bg::after {
    right: -10%;
    width: 80%;
    opacity: 0.035;
  }
}
