/* Enlyst Practice 01 — bridges sky-site pages to shared motion + Framework chrome */
@import url('../ds/motion_tokens.css');

html[data-division="enlyst"] {
  --accent: var(--hr-blue, #2D5BE3);
  --glow-color-rgb: 45, 91, 227;
}

/* Framework ribbon — Framework governs implementation; Enlystnow names the board only */
.enlyst-gov {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 95;
  height: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  padding: 0 1rem;
  background: #060D20;
  border-bottom: 1px solid rgba(196, 162, 74, 0.28);
  font-family: var(--font-mono, 'DM Mono', monospace);
  font-size: 0.625rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
.enlyst-gov a {
  color: #C4A24A;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease;
}
.enlyst-gov a:hover { color: #fff; }
.enlyst-gov .gov-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #C4A24A;
  opacity: 0.55;
}
.enlyst-gov .gov-mark {
  color: rgba(255, 255, 255, 0.35);
}

/* Push existing fixed chrome below governance ribbon */
body.has-enlyst-gov .topbar { top: 1.75rem; }
body.has-enlyst-gov .nav { top: calc(2.25rem + 1.75rem); }
body.has-enlyst-gov .drawer { top: calc(2.25rem + 4.5rem + 1.75rem); }
body.has-enlyst-gov {
  /* keep scroll anchors clear of stacked chrome */
  scroll-padding-top: 7rem;
}

/* Practice pill — Framework affiliation */
.practice-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(196, 162, 74, 0.35);
  background: rgba(196, 162, 74, 0.08);
  font-family: var(--font-mono, 'DM Mono', monospace);
  font-size: 0.625rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #C4A24A;
}
.practice-pill i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #2D5BE3;
  box-shadow: var(--glow-soft, 0 0 12px rgba(45, 91, 227, 0.4));
}

/* Motion: reveal uses DS easing when available */
.rv {
  transition-timing-function: var(--ease-emphasize, cubic-bezier(0.16, 1, 0.3, 1));
}
@media (prefers-reduced-motion: reduce) {
  .practice-pill i { box-shadow: none; }
}
